
    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_7f2f5c2b58eef40d21cdfe85.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_cf23fbc9a61a1b2609ad3e37.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_e2620f569c5fd1185697a393.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.080566;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_c4d5190d1efb619377a69711.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.097168;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_a08ef5c3799ad5c7673a3dd6.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.435059;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_e8e69bd06aa1cb7b6254aca4.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_777902a6faae3e631be2c851.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.080566;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_5d3f10fd19bef8bddb8e9ee0.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_79c716053b4aa601fe3e465e.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.097168;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_19e1e90bcfb6ff7653f00cac.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.745117;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_a197e91f73408726dbd3d19a.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_c478f1d3a8cd18c1583a2f60.woff2')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_7cef3cf00110982c84bb8065.woff2')format("woff");}.ffd{font-family:ffd;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:ffe;src:url('chunks/assets/font_23bf351766a47a4a05e8866a.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.435059;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_f27a6ad3afc4f96d6aa2defc.woff2')format("woff");}.fff{font-family:fff;line-height:0.937988;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_722903ab461a6a12e7cd1623.woff2')format("woff");}.ff10{font-family:ff10;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:ff11;src:url('chunks/assets/font_597f6fbec1ee65aea9d1cf56.woff2')format("woff");}.ff11{font-family:ff11;line-height:1.372070;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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);}
.v4{vertical-align:-109.440000px;}
.v1{vertical-align:-82.800000px;}
.v3{vertical-align:-30.240000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:30.240000px;}
.ls28{letter-spacing:-1.800000px;}
.ls31{letter-spacing:-1.098000px;}
.ls1d{letter-spacing:-0.900000px;}
.ls16{letter-spacing:-0.690000px;}
.ls57{letter-spacing:-0.428400px;}
.ls17{letter-spacing:-0.360000px;}
.ls18{letter-spacing:-0.350400px;}
.lsb{letter-spacing:-0.341400px;}
.lsc{letter-spacing:-0.180000px;}
.ls43{letter-spacing:-0.161400px;}
.ls39{letter-spacing:-0.093000px;}
.ls29{letter-spacing:-0.072000px;}
.lsa{letter-spacing:-0.028080px;}
.ls55{letter-spacing:-0.009360px;}
.ls2{letter-spacing:0.000000px;}
.lse{letter-spacing:0.008640px;}
.ls6{letter-spacing:0.028080px;}
.ls1b{letter-spacing:0.057600px;}
.ls47{letter-spacing:0.099600px;}
.ls1{letter-spacing:0.180000px;}
.ls3{letter-spacing:0.259800px;}
.ls22{letter-spacing:0.321600px;}
.ls27{letter-spacing:0.326880px;}
.ls1c{letter-spacing:0.336000px;}
.ls7{letter-spacing:0.360000px;}
.ls4c{letter-spacing:0.398400px;}
.ls0{letter-spacing:0.496080px;}
.ls53{letter-spacing:0.504000px;}
.ls21{letter-spacing:0.540000px;}
.ls3f{letter-spacing:1.260000px;}
.ls26{letter-spacing:1.980000px;}
.ls45{letter-spacing:2.700000px;}
.ls42{letter-spacing:3.420000px;}
.ls4d{letter-spacing:4.140000px;}
.ls3b{letter-spacing:6.300000px;}
.ls49{letter-spacing:6.480000px;}
.ls40{letter-spacing:7.020000px;}
.ls19{letter-spacing:7.740000px;}
.ls4f{letter-spacing:8.580000px;}
.ls4e{letter-spacing:8.640000px;}
.ls56{letter-spacing:9.900000px;}
.ls9{letter-spacing:10.620000px;}
.ls1a{letter-spacing:11.141280px;}
.ls3a{letter-spacing:11.340000px;}
.ls33{letter-spacing:13.500000px;}
.ls1f{letter-spacing:14.741280px;}
.ls46{letter-spacing:15.660000px;}
.ls3c{letter-spacing:17.100000px;}
.ls34{letter-spacing:17.621280px;}
.ls24{letter-spacing:19.061280px;}
.ls2d{letter-spacing:19.260000px;}
.ls3e{letter-spacing:19.380000px;}
.ls2e{letter-spacing:19.980000px;}
.ls2f{letter-spacing:20.700000px;}
.lsd{letter-spacing:21.221280px;}
.ls32{letter-spacing:21.365280px;}
.ls30{letter-spacing:21.420000px;}
.ls11{letter-spacing:22.860000px;}
.ls52{letter-spacing:24.300000px;}
.ls54{letter-spacing:25.740000px;}
.ls14{letter-spacing:28.620000px;}
.ls15{letter-spacing:28.800000px;}
.ls38{letter-spacing:29.340000px;}
.ls8{letter-spacing:30.060000px;}
.ls1e{letter-spacing:31.500000px;}
.ls23{letter-spacing:32.940000px;}
.ls44{letter-spacing:34.380000px;}
.ls4a{letter-spacing:35.100000px;}
.lsf{letter-spacing:35.820000px;}
.ls10{letter-spacing:36.540000px;}
.ls2c{letter-spacing:39.221280px;}
.ls3d{letter-spacing:40.860000px;}
.ls41{letter-spacing:41.580000px;}
.ls2b{letter-spacing:46.620000px;}
.ls25{letter-spacing:46.800000px;}
.ls13{letter-spacing:47.340000px;}
.ls4b{letter-spacing:50.940000px;}
.ls50{letter-spacing:52.380000px;}
.ls20{letter-spacing:53.820000px;}
.ls51{letter-spacing:56.700000px;}
.ls37{letter-spacing:56.880000px;}
.ls12{letter-spacing:58.140000px;}
.ls48{letter-spacing:58.860000px;}
.ls35{letter-spacing:59.580000px;}
.ls2a{letter-spacing:75.420000px;}
.ls36{letter-spacing:191.484000px;}
.ls4{letter-spacing:362.136000px;}
.ls5{letter-spacing:550.056000px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws11{word-spacing:-21.458400px;}
.ws6{word-spacing:-21.420000px;}
.ws9{word-spacing:-21.088080px;}
.ws7{word-spacing:-21.068640px;}
.ws3{word-spacing:-21.060000px;}
.ws12{word-spacing:-21.050640px;}
.ws4{word-spacing:-21.031920px;}
.wse{word-spacing:-20.988000px;}
.wsf{word-spacing:-20.967000px;}
.ws10{word-spacing:-20.898600px;}
.wsa{word-spacing:-20.880000px;}
.ws5{word-spacing:-20.718600px;}
.wsc{word-spacing:-20.709600px;}
.wsb{word-spacing:-20.700000px;}
.ws8{word-spacing:-20.370000px;}
.wsd{word-spacing:-19.260000px;}
.ws2{word-spacing:-18.000000px;}
.ws0{word-spacing:-14.940000px;}
.ws1{word-spacing:0.000000px;}
._2d{margin-left:-22.338720px;}
._3f{margin-left:-20.178720px;}
._30{margin-left:-3.258240px;}
._7{margin-left:-2.174160px;}
._0{margin-left:-1.010880px;}
._5{width:1.166160px;}
._8{width:2.239680px;}
._27{width:3.544800px;}
._24{width:4.713600px;}
._23{width:5.880720px;}
._25{width:7.382640px;}
._12{width:8.424000px;}
._3c{width:9.519120px;}
._10{width:10.695600px;}
._11{width:11.793600px;}
._26{width:12.888720px;}
._17{width:14.236560px;}
._18{width:15.736800px;}
._d{width:17.717760px;}
._e{width:18.815040px;}
._13{width:19.845600px;}
._1c{width:22.314720px;}
._1d{width:23.347680px;}
._43{width:24.360720px;}
._21{width:25.524720px;}
._22{width:26.577360px;}
._f{width:28.495200px;}
._9{width:29.652480px;}
._3a{width:30.900000px;}
._29{width:32.263920px;}
._2c{width:33.265920px;}
._4{width:34.344000px;}
._3{width:35.352000px;}
._1a{width:36.378240px;}
._19{width:37.452240px;}
._3b{width:38.750400px;}
._b{width:40.687920px;}
._a{width:41.935440px;}
._28{width:43.089840px;}
._36{width:44.348400px;}
._20{width:46.365600px;}
._16{width:47.764080px;}
._3e{width:49.248240px;}
._2b{width:50.343360px;}
._1b{width:51.807600px;}
._c{width:52.902720px;}
._2a{width:54.249840px;}
._39{width:56.151840px;}
._1f{width:57.272160px;}
._1e{width:58.664640px;}
._14{width:60.197040px;}
._15{width:61.527840px;}
._44{width:62.552880px;}
._45{width:64.132800px;}
._33{width:65.362800px;}
._1{width:66.456000px;}
._2{width:67.610880px;}
._3d{width:68.821200px;}
._31{width:74.740080px;}
._32{width:75.799920px;}
._40{width:83.397600px;}
._41{width:84.488400px;}
._49{width:86.261760px;}
._48{width:92.495520px;}
._37{width:96.167520px;}
._38{width:97.737840px;}
._46{width:119.165040px;}
._47{width:120.198960px;}
._2e{width:124.927920px;}
._2f{width:126.852000px;}
._42{width:137.479680px;}
._34{width:184.232880px;}
._35{width:185.566800px;}
._6{width:846.156000px;}
.fc9{color:transparent;}
.fc8{color:rgb(36,64,97);}
.fc6{color:rgb(255,0,0);}
.fc5{color:rgb(31,73,125);}
.fc4{color:rgb(0,32,96);}
.fc2{color:rgb(0,0,255);}
.fc7{color:rgb(51,51,51);}
.fc3{color:rgb(255,255,255);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(0,0,10);}
.fs3{font-size:48.240000px;}
.fs7{font-size:54.000000px;}
.fs4{font-size:59.760000px;}
.fs8{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.fs5{font-size:77.760000px;}
.fs2{font-size:84.240000px;}
.fs0{font-size:120.240000px;}
.fs6{font-size:216.000000px;}
.y0{bottom:0.000000px;}
.y14{bottom:2.700000px;}
.y5e{bottom:3.960000px;}
.y12{bottom:4.140000px;}
.y5f{bottom:4.320000px;}
.y1c{bottom:4.500000px;}
.y17a{bottom:5.220000px;}
.y19{bottom:7.020000px;}
.y17c{bottom:8.640000px;}
.y24{bottom:10.080000px;}
.y23{bottom:11.880000px;}
.y26{bottom:14.040000px;}
.y176{bottom:17.280000px;}
.y11{bottom:24.840000px;}
.y1b{bottom:25.200000px;}
.y41{bottom:25.740000px;}
.y179{bottom:29.340000px;}
.y22{bottom:34.380000px;}
.y40{bottom:40.860000px;}
.y175{bottom:41.400000px;}
.y10{bottom:45.540000px;}
.y178{bottom:53.100000px;}
.y21{bottom:56.700000px;}
.y174{bottom:65.205000px;}
.y3f{bottom:74.556000px;}
.y61{bottom:77.220000px;}
.y177{bottom:77.265000px;}
.y20{bottom:79.245000px;}
.y16f{bottom:105.300000px;}
.yb0{bottom:105.480000px;}
.y101{bottom:109.080000px;}
.y139{bottom:115.020000px;}
.y7f{bottom:117.540000px;}
.yaf{bottom:129.600000px;}
.y16e{bottom:133.020000px;}
.y100{bottom:136.800000px;}
.y138{bottom:142.920000px;}
.y124{bottom:151.410000px;}
.y7e{bottom:153.750000px;}
.ydb{bottom:158.610000px;}
.y16d{bottom:160.770000px;}
.yff{bottom:164.550000px;}
.y137{bottom:170.670000px;}
.yae{bottom:177.510000px;}
.yda{bottom:186.330000px;}
.y123{bottom:187.230000px;}
.y16c{bottom:188.490000px;}
.y7d{bottom:189.930000px;}
.yfe{bottom:192.450000px;}
.y136{bottom:198.390000px;}
.yad{bottom:201.990000px;}
.y149{bottom:209.370000px;}
.yd9{bottom:214.050000px;}
.y16b{bottom:216.390000px;}
.yfd{bottom:220.170000px;}
.y122{bottom:223.410000px;}
.y7c{bottom:226.290000px;}
.y8d{bottom:233.850000px;}
.yd8{bottom:241.950000px;}
.y16a{bottom:244.110000px;}
.y5c{bottom:244.290000px;}
.y148{bottom:245.190000px;}
.yfc{bottom:247.890000px;}
.yac{bottom:250.410000px;}
.y121{bottom:251.490000px;}
.y135{bottom:254.010000px;}
.y7b{bottom:262.470000px;}
.yd7{bottom:269.670000px;}
.y169{bottom:271.830000px;}
.y1f{bottom:273.090000px;}
.yab{bottom:274.530000px;}
.yfb{bottom:275.790000px;}
.y120{bottom:279.390000px;}
.y5b{bottom:280.650000px;}
.y147{bottom:281.370000px;}
.y134{bottom:281.730000px;}
.yd6{bottom:297.030000px;}
.yaa{bottom:298.290000px;}
.y7a{bottom:298.650000px;}
.yfa{bottom:303.510000px;}
.y8c{bottom:306.210000px;}
.y17b{bottom:306.570000px;}
.y11f{bottom:307.110000px;}
.y168{bottom:308.730000px;}
.y133{bottom:309.090000px;}
.y146{bottom:309.450000px;}
.y5a{bottom:316.830000px;}
.ya9{bottom:322.770000px;}
.yd5{bottom:325.290000px;}
.yf9{bottom:331.230000px;}
.y79{bottom:334.830000px;}
.y173{bottom:335.010000px;}
.y167{bottom:336.450000px;}
.y132{bottom:337.350000px;}
.ya8{bottom:346.890000px;}
.y59{bottom:353.010000px;}
.yf8{bottom:358.950000px;}
.y11e{bottom:362.730000px;}
.y131{bottom:365.070000px;}
.y78{bottom:371.010000px;}
.y166{bottom:373.170000px;}
.y8b{bottom:378.570000px;}
.yd4{bottom:380.730000px;}
.yf7{bottom:386.850000px;}
.y58{bottom:389.190000px;}
.y11d{bottom:390.450000px;}
.y130{bottom:392.835000px;}
.ya7{bottom:394.995000px;}
.y165{bottom:400.935000px;}
.y14b{bottom:407.055000px;}
.y77{bottom:407.415000px;}
.yd3{bottom:408.495000px;}
.yf6{bottom:414.615000px;}
.y11c{bottom:418.215000px;}
.ya6{bottom:419.475000px;}
.y12f{bottom:420.555000px;}
.y57{bottom:425.595000px;}
.yd2{bottom:436.035000px;}
.y164{bottom:437.835000px;}
.y172{bottom:441.255000px;}
.yf5{bottom:442.335000px;}
.y95{bottom:443.235000px;}
.y76{bottom:443.595000px;}
.y11b{bottom:445.935000px;}
.y12e{bottom:448.455000px;}
.y56{bottom:461.775000px;}
.yd1{bottom:464.115000px;}
.y163{bottom:465.555000px;}
.ya5{bottom:467.715000px;}
.y171{bottom:468.975000px;}
.yf4{bottom:470.235000px;}
.y11a{bottom:473.835000px;}
.y12d{bottom:476.175000px;}
.y8a{bottom:479.415000px;}
.y75{bottom:479.775000px;}
.ya4{bottom:491.835000px;}
.yc6{bottom:496.695000px;}
.y55{bottom:497.955000px;}
.y119{bottom:501.555000px;}
.y162{bottom:502.275000px;}
.y12c{bottom:503.895000px;}
.y89{bottom:515.595000px;}
.y74{bottom:515.955000px;}
.yd0{bottom:519.735000px;}
.y170{bottom:524.415000px;}
.yf3{bottom:525.675000px;}
.y118{bottom:529.275000px;}
.y161{bottom:529.995000px;}
.y145{bottom:531.435000px;}
.y12b{bottom:531.795000px;}
.yc5{bottom:532.515000px;}
.y54{bottom:534.135000px;}
.ya3{bottom:540.255000px;}
.ycf{bottom:547.455000px;}
.y14a{bottom:551.955000px;}
.y73{bottom:552.315000px;}
.yf2{bottom:553.395000px;}
.y117{bottom:556.995000px;}
.y3e{bottom:557.715000px;}
.y144{bottom:559.515000px;}
.y1e{bottom:562.935000px;}
.ya2{bottom:564.375000px;}
.y160{bottom:566.895000px;}
.y12a{bottom:567.975000px;}
.yc4{bottom:568.875000px;}
.y53{bottom:570.315000px;}
.yce{bottom:575.175000px;}
.yf1{bottom:581.295000px;}
.y1d{bottom:583.635000px;}
.y116{bottom:584.895000px;}
.y143{bottom:587.235000px;}
.y72{bottom:588.135000px;}
.y88{bottom:588.495000px;}
.y15f{bottom:594.615000px;}
.yc3{bottom:596.955000px;}
.y3d{bottom:599.115000px;}
.ycd{bottom:602.895000px;}
.y129{bottom:603.795000px;}
.y1a{bottom:604.365000px;}
.y52{bottom:606.675000px;}
.yf0{bottom:609.015000px;}
.ye1{bottom:611.355000px;}
.ya1{bottom:612.255000px;}
.y115{bottom:612.615000px;}
.y142{bottom:614.955000px;}
.y3c{bottom:619.845000px;}
.y71{bottom:624.315000px;}
.yc2{bottom:624.675000px;}
.ycc{bottom:630.795000px;}
.y15e{bottom:631.335000px;}
.y87{bottom:632.235000px;}
.ya0{bottom:636.735000px;}
.ye0{bottom:639.255000px;}
.y128{bottom:639.975000px;}
.y114{bottom:640.335000px;}
.y51{bottom:642.885000px;}
.y94{bottom:648.825000px;}
.y3b{bottom:649.545000px;}
.yc1{bottom:652.425000px;}
.y18{bottom:654.045000px;}
.ycb{bottom:658.545000px;}
.y15d{bottom:659.265000px;}
.y97{bottom:660.525000px;}
.y70{bottom:660.885000px;}
.yef{bottom:664.485000px;}
.ydf{bottom:667.005000px;}
.y113{bottom:667.905000px;}
.y127{bottom:668.265000px;}
.y141{bottom:670.605000px;}
.y93{bottom:672.945000px;}
.y50{bottom:678.705000px;}
.y3a{bottom:679.245000px;}
.yc0{bottom:680.325000px;}
.y17{bottom:680.865000px;}
.y9f{bottom:685.005000px;}
.yca{bottom:686.265000px;}
.y15c{bottom:686.625000px;}
.yee{bottom:692.385000px;}
.yde{bottom:694.725000px;}
.y17e{bottom:695.625000px;}
.y112{bottom:695.985000px;}
.y6f{bottom:697.245000px;}
.y140{bottom:698.325000px;}
.y86{bottom:704.805000px;}
.ybf{bottom:708.045000px;}
.y39{bottom:708.945000px;}
.y9e{bottom:709.305000px;}
.yc9{bottom:713.985000px;}
.y15b{bottom:714.165000px;}
.y4f{bottom:714.885000px;}
.yed{bottom:720.105000px;}
.y92{bottom:721.365000px;}
.ydd{bottom:722.445000px;}
.y17d{bottom:723.345000px;}
.y111{bottom:723.705000px;}
.y13f{bottom:726.225000px;}
.y16{bottom:730.545000px;}
.yc7{bottom:733.065000px;}
.y6e{bottom:733.425000px;}
.ybe{bottom:735.765000px;}
.yc8{bottom:741.885000px;}
.y15a{bottom:742.425000px;}
.y91{bottom:745.485000px;}
.y38{bottom:746.025000px;}
.yec{bottom:747.825000px;}
.ydc{bottom:750.345000px;}
.y4e{bottom:751.245000px;}
.y110{bottom:751.425000px;}
.y15{bottom:753.045000px;}
.y13e{bottom:753.945000px;}
.y9d{bottom:757.545000px;}
.ybd{bottom:763.665000px;}
.y6d{bottom:769.245000px;}
.y85{bottom:769.605000px;}
.y159{bottom:770.325000px;}
.y10f{bottom:779.325000px;}
.y9c{bottom:781.665000px;}
.y13{bottom:782.025000px;}
.yeb{bottom:784.185000px;}
.y4d{bottom:787.425000px;}
.ybc{bottom:791.385000px;}
.y90{bottom:793.725000px;}
.y158{bottom:798.045000px;}
.yf{bottom:804.525000px;}
.y6c{bottom:805.425000px;}
.y84{bottom:805.785000px;}
.y10e{bottom:807.045000px;}
.y13d{bottom:809.385000px;}
.y37{bottom:809.745000px;}
.y8f{bottom:817.845000px;}
.ybb{bottom:819.105000px;}
.yea{bottom:820.005000px;}
.y4c{bottom:823.605000px;}
.y157{bottom:825.765000px;}
.y9b{bottom:829.545000px;}
.y36{bottom:830.445000px;}
.y10d{bottom:834.765000px;}
.y13c{bottom:837.285000px;}
.y8e{bottom:841.785000px;}
.y6b{bottom:842.145000px;}
.yba{bottom:846.825000px;}
.y35{bottom:850.785000px;}
.y156{bottom:853.665000px;}
.y9a{bottom:854.205000px;}
.ye9{bottom:856.185000px;}
.y4b{bottom:859.785000px;}
.y10c{bottom:862.665000px;}
.y34{bottom:871.530000px;}
.y13b{bottom:873.465000px;}
.yb9{bottom:874.725000px;}
.ye{bottom:875.310000px;}
.y83{bottom:877.965000px;}
.y6a{bottom:878.325000px;}
.y155{bottom:881.385000px;}
.ye8{bottom:884.265000px;}
.y10b{bottom:890.430000px;}
.y33{bottom:892.230000px;}
.yd{bottom:896.190000px;}
.yb8{bottom:902.490000px;}
.y154{bottom:909.150000px;}
.y13a{bottom:909.330000px;}
.ye7{bottom:912.210000px;}
.y32{bottom:912.930000px;}
.y69{bottom:914.190000px;}
.y96{bottom:914.550000px;}
.y10a{bottom:918.150000px;}
.yc{bottom:920.130000px;}
.y4a{bottom:932.370000px;}
.y153{bottom:936.870000px;}
.yb7{bottom:938.310000px;}
.ye6{bottom:939.930000px;}
.yb{bottom:940.470000px;}
.y109{bottom:945.870000px;}
.y82{bottom:950.370000px;}
.y68{bottom:950.730000px;}
.y31{bottom:954.690000px;}
.ya{bottom:961.530000px;}
.y152{bottom:964.770000px;}
.ye5{bottom:967.650000px;}
.y49{bottom:968.550000px;}
.y126{bottom:973.410000px;}
.y108{bottom:973.770000px;}
.yb6{bottom:974.850000px;}
.y30{bottom:975.390000px;}
.y9{bottom:982.230000px;}
.y99{bottom:986.550000px;}
.y67{bottom:986.910000px;}
.y151{bottom:992.490000px;}
.ye4{bottom:995.370000px;}
.y2f{bottom:996.090000px;}
.yb5{bottom:999.150000px;}
.y107{bottom:1001.130000px;}
.y125{bottom:1001.490000px;}
.y8{bottom:1002.930000px;}
.y48{bottom:1004.730000px;}
.y2e{bottom:1016.790000px;}
.y150{bottom:1020.210000px;}
.ye3{bottom:1022.910000px;}
.y66{bottom:1023.270000px;}
.y7{bottom:1023.630000px;}
.y106{bottom:1029.210000px;}
.y2d{bottom:1037.490000px;}
.y47{bottom:1041.090000px;}
.y6{bottom:1044.330000px;}
.yb4{bottom:1047.390000px;}
.y14f{bottom:1047.930000px;}
.y105{bottom:1056.930000px;}
.y2c{bottom:1058.190000px;}
.y98{bottom:1059.090000px;}
.y65{bottom:1059.450000px;}
.y5{bottom:1065.030000px;}
.yb3{bottom:1071.510000px;}
.y14e{bottom:1075.830000px;}
.y46{bottom:1077.270000px;}
.y2b{bottom:1078.890000px;}
.y104{bottom:1084.830000px;}
.y4{bottom:1085.730000px;}
.ye2{bottom:1095.270000px;}
.y64{bottom:1095.630000px;}
.y2a{bottom:1099.590000px;}
.y14d{bottom:1103.550000px;}
.y3{bottom:1106.430000px;}
.y103{bottom:1112.550000px;}
.y45{bottom:1113.450000px;}
.yb2{bottom:1119.750000px;}
.y29{bottom:1120.290000px;}
.y2{bottom:1127.130000px;}
.y14c{bottom:1131.270000px;}
.y63{bottom:1131.450000px;}
.y81{bottom:1131.810000px;}
.y102{bottom:1140.300000px;}
.y28{bottom:1141.020000px;}
.yb1{bottom:1143.900000px;}
.y44{bottom:1149.660000px;}
.y1{bottom:1150.020000px;}
.y27{bottom:1161.720000px;}
.y25{bottom:1163.700000px;}
.y80{bottom:1167.840000px;}
.y62{bottom:1168.200000px;}
.y43{bottom:1185.840000px;}
.y60{bottom:1191.780000px;}
.y5d{bottom:1216.620000px;}
.y42{bottom:1222.200000px;}
.h8{height:13.500000px;}
.hb{height:17.820000px;}
.h19{height:20.520000px;}
.h9{height:20.700000px;}
.h25{height:27.720000px;}
.h11{height:34.200000px;}
.ha{height:41.400000px;}
.h1f{height:52.971680px;}
.h16{height:52.998047px;}
.h14{height:53.460000px;}
.h15{height:54.421875px;}
.h20{height:54.658125px;}
.hc{height:58.651172px;}
.h6{height:62.100000px;}
.h7{height:62.261719px;}
.hf{height:67.242656px;}
.h1a{height:68.084282px;}
.h22{height:69.432187px;}
.h3{height:70.664062px;}
.h4{height:72.562500px;}
.h5{height:72.846211px;}
.h18{height:74.244727px;}
.hd{height:74.953125px;}
.h10{height:78.367500px;}
.h1b{height:82.635820px;}
.h17{height:82.676953px;}
.h1e{height:83.238047px;}
.h23{height:84.034336px;}
.h1d{height:84.661875px;}
.h12{height:84.898125px;}
.h1c{height:86.585445px;}
.h21{height:87.695156px;}
.h24{height:96.696000px;}
.he{height:105.156000px;}
.h2{height:121.179375px;}
.h13{height:211.992188px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.wa{width:38.160000px;}
.w5{width:138.276000px;}
.wb{width:194.610000px;}
.wc{width:194.655000px;}
.w6{width:223.410000px;}
.w7{width:240.195000px;}
.w4{width:305.670000px;}
.w8{width:401.475000px;}
.w3{width:659.085000px;}
.w9{width:854.099985px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x7{left:4.140000px;}
.xe{left:8.100000px;}
.x3a{left:9.540000px;}
.x14{left:10.800000px;}
.x3e{left:20.385000px;}
.x3b{left:29.700000px;}
.x3f{left:31.905000px;}
.x42{left:35.490000px;}
.x40{left:36.945000px;}
.x43{left:43.590000px;}
.x46{left:50.040000px;}
.x39{left:56.160000px;}
.x3c{left:61.776000px;}
.x1d{left:63.899987px;}
.x41{left:69.345000px;}
.xa{left:71.814000px;}
.x12{left:76.680000px;}
.x47{left:85.859987px;}
.x27{left:90.935987px;}
.x45{left:97.230000px;}
.xc{left:106.415987px;}
.xd{left:111.096000px;}
.x1c{left:115.776000px;}
.x6{left:117.036000px;}
.x10{left:137.730000px;}
.x31{left:144.035987px;}
.x9{left:152.814000px;}
.x1a{left:159.509987px;}
.x18{left:163.469987px;}
.x1f{left:168.869987px;}
.x2d{left:170.129987px;}
.x15{left:172.829987px;}
.x20{left:187.229987px;}
.x2e{left:197.129987px;}
.x37{left:202.709987px;}
.x2f{left:212.429987px;}
.x2a{left:223.229987px;}
.x32{left:236.729987px;}
.x30{left:239.429987px;}
.x38{left:243.749987px;}
.x1e{left:248.969987px;}
.x3d{left:251.490000px;}
.x3{left:274.349987px;}
.x19{left:275.429987px;}
.x8{left:282.459000px;}
.x33{left:301.934987px;}
.x24{left:305.354987px;}
.x36{left:308.054987px;}
.x16{left:314.714987px;}
.xb{left:328.179000px;}
.x28{left:332.894987px;}
.x1b{left:334.874987px;}
.x21{left:350.174985px;}
.x35{left:376.094987px;}
.x2c{left:389.414987px;}
.x17{left:394.814987px;}
.x2b{left:398.954987px;}
.x4{left:400.574987px;}
.xf{left:416.775000px;}
.x5{left:445.214987px;}
.x2{left:446.474987px;}
.x26{left:458.204987px;}
.x25{left:517.784987px;}
.x11{left:555.045000px;}
.x13{left:619.305000px;}
.x44{left:642.390000px;}
.x1{left:786.749987px;}
.x34{left:808.349987px;}
.x23{left:818.999987px;}
.x29{left:829.439987px;}
.x22{left:854.820000px;}
@media print{
.v4{vertical-align:-97.280000pt;}
.v1{vertical-align:-73.600000pt;}
.v3{vertical-align:-26.880000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:26.880000pt;}
.ls28{letter-spacing:-1.600000pt;}
.ls31{letter-spacing:-0.976000pt;}
.ls1d{letter-spacing:-0.800000pt;}
.ls16{letter-spacing:-0.613333pt;}
.ls57{letter-spacing:-0.380800pt;}
.ls17{letter-spacing:-0.320000pt;}
.ls18{letter-spacing:-0.311467pt;}
.lsb{letter-spacing:-0.303467pt;}
.lsc{letter-spacing:-0.160000pt;}
.ls43{letter-spacing:-0.143467pt;}
.ls39{letter-spacing:-0.082667pt;}
.ls29{letter-spacing:-0.064000pt;}
.lsa{letter-spacing:-0.024960pt;}
.ls55{letter-spacing:-0.008320pt;}
.ls2{letter-spacing:0.000000pt;}
.lse{letter-spacing:0.007680pt;}
.ls6{letter-spacing:0.024960pt;}
.ls1b{letter-spacing:0.051200pt;}
.ls47{letter-spacing:0.088533pt;}
.ls1{letter-spacing:0.160000pt;}
.ls3{letter-spacing:0.230933pt;}
.ls22{letter-spacing:0.285867pt;}
.ls27{letter-spacing:0.290560pt;}
.ls1c{letter-spacing:0.298667pt;}
.ls7{letter-spacing:0.320000pt;}
.ls4c{letter-spacing:0.354133pt;}
.ls0{letter-spacing:0.440960pt;}
.ls53{letter-spacing:0.448000pt;}
.ls21{letter-spacing:0.480000pt;}
.ls3f{letter-spacing:1.120000pt;}
.ls26{letter-spacing:1.760000pt;}
.ls45{letter-spacing:2.400000pt;}
.ls42{letter-spacing:3.040000pt;}
.ls4d{letter-spacing:3.680000pt;}
.ls3b{letter-spacing:5.600000pt;}
.ls49{letter-spacing:5.760000pt;}
.ls40{letter-spacing:6.240000pt;}
.ls19{letter-spacing:6.880000pt;}
.ls4f{letter-spacing:7.626667pt;}
.ls4e{letter-spacing:7.680000pt;}
.ls56{letter-spacing:8.800000pt;}
.ls9{letter-spacing:9.440000pt;}
.ls1a{letter-spacing:9.903360pt;}
.ls3a{letter-spacing:10.080000pt;}
.ls33{letter-spacing:12.000000pt;}
.ls1f{letter-spacing:13.103360pt;}
.ls46{letter-spacing:13.920000pt;}
.ls3c{letter-spacing:15.200000pt;}
.ls34{letter-spacing:15.663360pt;}
.ls24{letter-spacing:16.943360pt;}
.ls2d{letter-spacing:17.120000pt;}
.ls3e{letter-spacing:17.226667pt;}
.ls2e{letter-spacing:17.760000pt;}
.ls2f{letter-spacing:18.400000pt;}
.lsd{letter-spacing:18.863360pt;}
.ls32{letter-spacing:18.991360pt;}
.ls30{letter-spacing:19.040000pt;}
.ls11{letter-spacing:20.320000pt;}
.ls52{letter-spacing:21.600000pt;}
.ls54{letter-spacing:22.880000pt;}
.ls14{letter-spacing:25.440000pt;}
.ls15{letter-spacing:25.600000pt;}
.ls38{letter-spacing:26.080000pt;}
.ls8{letter-spacing:26.720000pt;}
.ls1e{letter-spacing:28.000000pt;}
.ls23{letter-spacing:29.280000pt;}
.ls44{letter-spacing:30.560000pt;}
.ls4a{letter-spacing:31.200000pt;}
.lsf{letter-spacing:31.840000pt;}
.ls10{letter-spacing:32.480000pt;}
.ls2c{letter-spacing:34.863360pt;}
.ls3d{letter-spacing:36.320000pt;}
.ls41{letter-spacing:36.960000pt;}
.ls2b{letter-spacing:41.440000pt;}
.ls25{letter-spacing:41.600000pt;}
.ls13{letter-spacing:42.080000pt;}
.ls4b{letter-spacing:45.280000pt;}
.ls50{letter-spacing:46.560000pt;}
.ls20{letter-spacing:47.840000pt;}
.ls51{letter-spacing:50.400000pt;}
.ls37{letter-spacing:50.560000pt;}
.ls12{letter-spacing:51.680000pt;}
.ls48{letter-spacing:52.320000pt;}
.ls35{letter-spacing:52.960000pt;}
.ls2a{letter-spacing:67.040000pt;}
.ls36{letter-spacing:170.208000pt;}
.ls4{letter-spacing:321.898667pt;}
.ls5{letter-spacing:488.938667pt;}
.ws11{word-spacing:-19.074133pt;}
.ws6{word-spacing:-19.040000pt;}
.ws9{word-spacing:-18.744960pt;}
.ws7{word-spacing:-18.727680pt;}
.ws3{word-spacing:-18.720000pt;}
.ws12{word-spacing:-18.711680pt;}
.ws4{word-spacing:-18.695040pt;}
.wse{word-spacing:-18.656000pt;}
.wsf{word-spacing:-18.637333pt;}
.ws10{word-spacing:-18.576533pt;}
.wsa{word-spacing:-18.560000pt;}
.ws5{word-spacing:-18.416533pt;}
.wsc{word-spacing:-18.408533pt;}
.wsb{word-spacing:-18.400000pt;}
.ws8{word-spacing:-18.106667pt;}
.wsd{word-spacing:-17.120000pt;}
.ws2{word-spacing:-16.000000pt;}
.ws0{word-spacing:-13.280000pt;}
.ws1{word-spacing:0.000000pt;}
._2d{margin-left:-19.856640pt;}
._3f{margin-left:-17.936640pt;}
._30{margin-left:-2.896213pt;}
._7{margin-left:-1.932587pt;}
._0{margin-left:-0.898560pt;}
._5{width:1.036587pt;}
._8{width:1.990827pt;}
._27{width:3.150933pt;}
._24{width:4.189867pt;}
._23{width:5.227307pt;}
._25{width:6.562347pt;}
._12{width:7.488000pt;}
._3c{width:8.461440pt;}
._10{width:9.507200pt;}
._11{width:10.483200pt;}
._26{width:11.456640pt;}
._17{width:12.654720pt;}
._18{width:13.988267pt;}
._d{width:15.749120pt;}
._e{width:16.724480pt;}
._13{width:17.640533pt;}
._1c{width:19.835307pt;}
._1d{width:20.753493pt;}
._43{width:21.653973pt;}
._21{width:22.688640pt;}
._22{width:23.624320pt;}
._f{width:25.329067pt;}
._9{width:26.357760pt;}
._3a{width:27.466667pt;}
._29{width:28.679040pt;}
._2c{width:29.569707pt;}
._4{width:30.528000pt;}
._3{width:31.424000pt;}
._1a{width:32.336213pt;}
._19{width:33.290880pt;}
._3b{width:34.444800pt;}
._b{width:36.167040pt;}
._a{width:37.275947pt;}
._28{width:38.302080pt;}
._36{width:39.420800pt;}
._20{width:41.213867pt;}
._16{width:42.456960pt;}
._3e{width:43.776213pt;}
._2b{width:44.749653pt;}
._1b{width:46.051200pt;}
._c{width:47.024640pt;}
._2a{width:48.222080pt;}
._39{width:49.912747pt;}
._1f{width:50.908587pt;}
._1e{width:52.146347pt;}
._14{width:53.508480pt;}
._15{width:54.691413pt;}
._44{width:55.602560pt;}
._45{width:57.006933pt;}
._33{width:58.100267pt;}
._1{width:59.072000pt;}
._2{width:60.098560pt;}
._3d{width:61.174400pt;}
._31{width:66.435627pt;}
._32{width:67.377707pt;}
._40{width:74.131200pt;}
._41{width:75.100800pt;}
._49{width:76.677120pt;}
._48{width:82.218240pt;}
._37{width:85.482240pt;}
._38{width:86.878080pt;}
._46{width:105.924480pt;}
._47{width:106.843520pt;}
._2e{width:111.047040pt;}
._2f{width:112.757333pt;}
._42{width:122.204160pt;}
._34{width:163.762560pt;}
._35{width:164.948267pt;}
._6{width:752.138667pt;}
.fs3{font-size:42.880000pt;}
.fs7{font-size:48.000000pt;}
.fs4{font-size:53.120000pt;}
.fs8{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.fs5{font-size:69.120000pt;}
.fs2{font-size:74.880000pt;}
.fs0{font-size:106.880000pt;}
.fs6{font-size:192.000000pt;}
.y0{bottom:0.000000pt;}
.y14{bottom:2.400000pt;}
.y5e{bottom:3.520000pt;}
.y12{bottom:3.680000pt;}
.y5f{bottom:3.840000pt;}
.y1c{bottom:4.000000pt;}
.y17a{bottom:4.640000pt;}
.y19{bottom:6.240000pt;}
.y17c{bottom:7.680000pt;}
.y24{bottom:8.960000pt;}
.y23{bottom:10.560000pt;}
.y26{bottom:12.480000pt;}
.y176{bottom:15.360000pt;}
.y11{bottom:22.080000pt;}
.y1b{bottom:22.400000pt;}
.y41{bottom:22.880000pt;}
.y179{bottom:26.080000pt;}
.y22{bottom:30.560000pt;}
.y40{bottom:36.320000pt;}
.y175{bottom:36.800000pt;}
.y10{bottom:40.480000pt;}
.y178{bottom:47.200000pt;}
.y21{bottom:50.400000pt;}
.y174{bottom:57.960000pt;}
.y3f{bottom:66.272000pt;}
.y61{bottom:68.640000pt;}
.y177{bottom:68.680000pt;}
.y20{bottom:70.440000pt;}
.y16f{bottom:93.600000pt;}
.yb0{bottom:93.760000pt;}
.y101{bottom:96.960000pt;}
.y139{bottom:102.240000pt;}
.y7f{bottom:104.480000pt;}
.yaf{bottom:115.200000pt;}
.y16e{bottom:118.240000pt;}
.y100{bottom:121.600000pt;}
.y138{bottom:127.040000pt;}
.y124{bottom:134.586667pt;}
.y7e{bottom:136.666667pt;}
.ydb{bottom:140.986667pt;}
.y16d{bottom:142.906667pt;}
.yff{bottom:146.266667pt;}
.y137{bottom:151.706667pt;}
.yae{bottom:157.786667pt;}
.yda{bottom:165.626667pt;}
.y123{bottom:166.426667pt;}
.y16c{bottom:167.546667pt;}
.y7d{bottom:168.826667pt;}
.yfe{bottom:171.066667pt;}
.y136{bottom:176.346667pt;}
.yad{bottom:179.546667pt;}
.y149{bottom:186.106667pt;}
.yd9{bottom:190.266667pt;}
.y16b{bottom:192.346667pt;}
.yfd{bottom:195.706667pt;}
.y122{bottom:198.586667pt;}
.y7c{bottom:201.146667pt;}
.y8d{bottom:207.866667pt;}
.yd8{bottom:215.066667pt;}
.y16a{bottom:216.986667pt;}
.y5c{bottom:217.146667pt;}
.y148{bottom:217.946667pt;}
.yfc{bottom:220.346667pt;}
.yac{bottom:222.586667pt;}
.y121{bottom:223.546667pt;}
.y135{bottom:225.786667pt;}
.y7b{bottom:233.306667pt;}
.yd7{bottom:239.706667pt;}
.y169{bottom:241.626667pt;}
.y1f{bottom:242.746667pt;}
.yab{bottom:244.026667pt;}
.yfb{bottom:245.146667pt;}
.y120{bottom:248.346667pt;}
.y5b{bottom:249.466667pt;}
.y147{bottom:250.106667pt;}
.y134{bottom:250.426667pt;}
.yd6{bottom:264.026667pt;}
.yaa{bottom:265.146667pt;}
.y7a{bottom:265.466667pt;}
.yfa{bottom:269.786667pt;}
.y8c{bottom:272.186667pt;}
.y17b{bottom:272.506667pt;}
.y11f{bottom:272.986667pt;}
.y168{bottom:274.426667pt;}
.y133{bottom:274.746667pt;}
.y146{bottom:275.066667pt;}
.y5a{bottom:281.626667pt;}
.ya9{bottom:286.906667pt;}
.yd5{bottom:289.146667pt;}
.yf9{bottom:294.426667pt;}
.y79{bottom:297.626667pt;}
.y173{bottom:297.786667pt;}
.y167{bottom:299.066667pt;}
.y132{bottom:299.866667pt;}
.ya8{bottom:308.346667pt;}
.y59{bottom:313.786667pt;}
.yf8{bottom:319.066667pt;}
.y11e{bottom:322.426667pt;}
.y131{bottom:324.506667pt;}
.y78{bottom:329.786667pt;}
.y166{bottom:331.706667pt;}
.y8b{bottom:336.506667pt;}
.yd4{bottom:338.426667pt;}
.yf7{bottom:343.866667pt;}
.y58{bottom:345.946667pt;}
.y11d{bottom:347.066667pt;}
.y130{bottom:349.186667pt;}
.ya7{bottom:351.106667pt;}
.y165{bottom:356.386667pt;}
.y14b{bottom:361.826667pt;}
.y77{bottom:362.146667pt;}
.yd3{bottom:363.106667pt;}
.yf6{bottom:368.546667pt;}
.y11c{bottom:371.746667pt;}
.ya6{bottom:372.866667pt;}
.y12f{bottom:373.826667pt;}
.y57{bottom:378.306667pt;}
.yd2{bottom:387.586667pt;}
.y164{bottom:389.186667pt;}
.y172{bottom:392.226667pt;}
.yf5{bottom:393.186667pt;}
.y95{bottom:393.986667pt;}
.y76{bottom:394.306667pt;}
.y11b{bottom:396.386667pt;}
.y12e{bottom:398.626667pt;}
.y56{bottom:410.466667pt;}
.yd1{bottom:412.546667pt;}
.y163{bottom:413.826667pt;}
.ya5{bottom:415.746667pt;}
.y171{bottom:416.866667pt;}
.yf4{bottom:417.986667pt;}
.y11a{bottom:421.186667pt;}
.y12d{bottom:423.266667pt;}
.y8a{bottom:426.146667pt;}
.y75{bottom:426.466667pt;}
.ya4{bottom:437.186667pt;}
.yc6{bottom:441.506667pt;}
.y55{bottom:442.626667pt;}
.y119{bottom:445.826667pt;}
.y162{bottom:446.466667pt;}
.y12c{bottom:447.906667pt;}
.y89{bottom:458.306667pt;}
.y74{bottom:458.626667pt;}
.yd0{bottom:461.986667pt;}
.y170{bottom:466.146667pt;}
.yf3{bottom:467.266667pt;}
.y118{bottom:470.466667pt;}
.y161{bottom:471.106667pt;}
.y145{bottom:472.386667pt;}
.y12b{bottom:472.706667pt;}
.yc5{bottom:473.346667pt;}
.y54{bottom:474.786667pt;}
.ya3{bottom:480.226667pt;}
.ycf{bottom:486.626667pt;}
.y14a{bottom:490.626667pt;}
.y73{bottom:490.946667pt;}
.yf2{bottom:491.906667pt;}
.y117{bottom:495.106667pt;}
.y3e{bottom:495.746667pt;}
.y144{bottom:497.346667pt;}
.y1e{bottom:500.386667pt;}
.ya2{bottom:501.666667pt;}
.y160{bottom:503.906667pt;}
.y12a{bottom:504.866667pt;}
.yc4{bottom:505.666667pt;}
.y53{bottom:506.946667pt;}
.yce{bottom:511.266667pt;}
.yf1{bottom:516.706667pt;}
.y1d{bottom:518.786667pt;}
.y116{bottom:519.906667pt;}
.y143{bottom:521.986667pt;}
.y72{bottom:522.786667pt;}
.y88{bottom:523.106667pt;}
.y15f{bottom:528.546667pt;}
.yc3{bottom:530.626667pt;}
.y3d{bottom:532.546667pt;}
.ycd{bottom:535.906667pt;}
.y129{bottom:536.706667pt;}
.y1a{bottom:537.213333pt;}
.y52{bottom:539.266667pt;}
.yf0{bottom:541.346667pt;}
.ye1{bottom:543.426667pt;}
.ya1{bottom:544.226667pt;}
.y115{bottom:544.546667pt;}
.y142{bottom:546.626667pt;}
.y3c{bottom:550.973333pt;}
.y71{bottom:554.946667pt;}
.yc2{bottom:555.266667pt;}
.ycc{bottom:560.706667pt;}
.y15e{bottom:561.186667pt;}
.y87{bottom:561.986667pt;}
.ya0{bottom:565.986667pt;}
.ye0{bottom:568.226667pt;}
.y128{bottom:568.866667pt;}
.y114{bottom:569.186667pt;}
.y51{bottom:571.453333pt;}
.y94{bottom:576.733333pt;}
.y3b{bottom:577.373333pt;}
.yc1{bottom:579.933333pt;}
.y18{bottom:581.373333pt;}
.ycb{bottom:585.373333pt;}
.y15d{bottom:586.013333pt;}
.y97{bottom:587.133333pt;}
.y70{bottom:587.453333pt;}
.yef{bottom:590.653333pt;}
.ydf{bottom:592.893333pt;}
.y113{bottom:593.693333pt;}
.y127{bottom:594.013333pt;}
.y141{bottom:596.093333pt;}
.y93{bottom:598.173333pt;}
.y50{bottom:603.293333pt;}
.y3a{bottom:603.773333pt;}
.yc0{bottom:604.733333pt;}
.y17{bottom:605.213333pt;}
.y9f{bottom:608.893333pt;}
.yca{bottom:610.013333pt;}
.y15c{bottom:610.333333pt;}
.yee{bottom:615.453333pt;}
.yde{bottom:617.533333pt;}
.y17e{bottom:618.333333pt;}
.y112{bottom:618.653333pt;}
.y6f{bottom:619.773333pt;}
.y140{bottom:620.733333pt;}
.y86{bottom:626.493333pt;}
.ybf{bottom:629.373333pt;}
.y39{bottom:630.173333pt;}
.y9e{bottom:630.493333pt;}
.yc9{bottom:634.653333pt;}
.y15b{bottom:634.813333pt;}
.y4f{bottom:635.453333pt;}
.yed{bottom:640.093333pt;}
.y92{bottom:641.213333pt;}
.ydd{bottom:642.173333pt;}
.y17d{bottom:642.973333pt;}
.y111{bottom:643.293333pt;}
.y13f{bottom:645.533333pt;}
.y16{bottom:649.373333pt;}
.yc7{bottom:651.613333pt;}
.y6e{bottom:651.933333pt;}
.ybe{bottom:654.013333pt;}
.yc8{bottom:659.453333pt;}
.y15a{bottom:659.933333pt;}
.y91{bottom:662.653333pt;}
.y38{bottom:663.133333pt;}
.yec{bottom:664.733333pt;}
.ydc{bottom:666.973333pt;}
.y4e{bottom:667.773333pt;}
.y110{bottom:667.933333pt;}
.y15{bottom:669.373333pt;}
.y13e{bottom:670.173333pt;}
.y9d{bottom:673.373333pt;}
.ybd{bottom:678.813333pt;}
.y6d{bottom:683.773333pt;}
.y85{bottom:684.093333pt;}
.y159{bottom:684.733333pt;}
.y10f{bottom:692.733333pt;}
.y9c{bottom:694.813333pt;}
.y13{bottom:695.133333pt;}
.yeb{bottom:697.053333pt;}
.y4d{bottom:699.933333pt;}
.ybc{bottom:703.453333pt;}
.y90{bottom:705.533333pt;}
.y158{bottom:709.373333pt;}
.yf{bottom:715.133333pt;}
.y6c{bottom:715.933333pt;}
.y84{bottom:716.253333pt;}
.y10e{bottom:717.373333pt;}
.y13d{bottom:719.453333pt;}
.y37{bottom:719.773333pt;}
.y8f{bottom:726.973333pt;}
.ybb{bottom:728.093333pt;}
.yea{bottom:728.893333pt;}
.y4c{bottom:732.093333pt;}
.y157{bottom:734.013333pt;}
.y9b{bottom:737.373333pt;}
.y36{bottom:738.173333pt;}
.y10d{bottom:742.013333pt;}
.y13c{bottom:744.253333pt;}
.y8e{bottom:748.253333pt;}
.y6b{bottom:748.573333pt;}
.yba{bottom:752.733333pt;}
.y35{bottom:756.253333pt;}
.y156{bottom:758.813333pt;}
.y9a{bottom:759.293333pt;}
.ye9{bottom:761.053333pt;}
.y4b{bottom:764.253333pt;}
.y10c{bottom:766.813333pt;}
.y34{bottom:774.693333pt;}
.y13b{bottom:776.413333pt;}
.yb9{bottom:777.533333pt;}
.ye{bottom:778.053333pt;}
.y83{bottom:780.413333pt;}
.y6a{bottom:780.733333pt;}
.y155{bottom:783.453333pt;}
.ye8{bottom:786.013333pt;}
.y10b{bottom:791.493333pt;}
.y33{bottom:793.093333pt;}
.yd{bottom:796.613333pt;}
.yb8{bottom:802.213333pt;}
.y154{bottom:808.133333pt;}
.y13a{bottom:808.293333pt;}
.ye7{bottom:810.853333pt;}
.y32{bottom:811.493333pt;}
.y69{bottom:812.613333pt;}
.y96{bottom:812.933333pt;}
.y10a{bottom:816.133333pt;}
.yc{bottom:817.893333pt;}
.y4a{bottom:828.773333pt;}
.y153{bottom:832.773333pt;}
.yb7{bottom:834.053333pt;}
.ye6{bottom:835.493333pt;}
.yb{bottom:835.973333pt;}
.y109{bottom:840.773333pt;}
.y82{bottom:844.773333pt;}
.y68{bottom:845.093333pt;}
.y31{bottom:848.613333pt;}
.ya{bottom:854.693333pt;}
.y152{bottom:857.573333pt;}
.ye5{bottom:860.133333pt;}
.y49{bottom:860.933333pt;}
.y126{bottom:865.253333pt;}
.y108{bottom:865.573333pt;}
.yb6{bottom:866.533333pt;}
.y30{bottom:867.013333pt;}
.y9{bottom:873.093333pt;}
.y99{bottom:876.933333pt;}
.y67{bottom:877.253333pt;}
.y151{bottom:882.213333pt;}
.ye4{bottom:884.773333pt;}
.y2f{bottom:885.413333pt;}
.yb5{bottom:888.133333pt;}
.y107{bottom:889.893333pt;}
.y125{bottom:890.213333pt;}
.y8{bottom:891.493333pt;}
.y48{bottom:893.093333pt;}
.y2e{bottom:903.813333pt;}
.y150{bottom:906.853333pt;}
.ye3{bottom:909.253333pt;}
.y66{bottom:909.573333pt;}
.y7{bottom:909.893333pt;}
.y106{bottom:914.853333pt;}
.y2d{bottom:922.213333pt;}
.y47{bottom:925.413333pt;}
.y6{bottom:928.293333pt;}
.yb4{bottom:931.013333pt;}
.y14f{bottom:931.493333pt;}
.y105{bottom:939.493333pt;}
.y2c{bottom:940.613333pt;}
.y98{bottom:941.413333pt;}
.y65{bottom:941.733333pt;}
.y5{bottom:946.693333pt;}
.yb3{bottom:952.453333pt;}
.y14e{bottom:956.293333pt;}
.y46{bottom:957.573333pt;}
.y2b{bottom:959.013333pt;}
.y104{bottom:964.293333pt;}
.y4{bottom:965.093333pt;}
.ye2{bottom:973.573333pt;}
.y64{bottom:973.893333pt;}
.y2a{bottom:977.413333pt;}
.y14d{bottom:980.933333pt;}
.y3{bottom:983.493333pt;}
.y103{bottom:988.933333pt;}
.y45{bottom:989.733333pt;}
.yb2{bottom:995.333333pt;}
.y29{bottom:995.813333pt;}
.y2{bottom:1001.893333pt;}
.y14c{bottom:1005.573333pt;}
.y63{bottom:1005.733333pt;}
.y81{bottom:1006.053333pt;}
.y102{bottom:1013.600000pt;}
.y28{bottom:1014.240000pt;}
.yb1{bottom:1016.800000pt;}
.y44{bottom:1021.920000pt;}
.y1{bottom:1022.240000pt;}
.y27{bottom:1032.640000pt;}
.y25{bottom:1034.400000pt;}
.y80{bottom:1038.080000pt;}
.y62{bottom:1038.400000pt;}
.y43{bottom:1054.080000pt;}
.y60{bottom:1059.360000pt;}
.y5d{bottom:1081.440000pt;}
.y42{bottom:1086.400000pt;}
.h8{height:12.000000pt;}
.hb{height:15.840000pt;}
.h19{height:18.240000pt;}
.h9{height:18.400000pt;}
.h25{height:24.640000pt;}
.h11{height:30.400000pt;}
.ha{height:36.800000pt;}
.h1f{height:47.085938pt;}
.h16{height:47.109375pt;}
.h14{height:47.520000pt;}
.h15{height:48.375000pt;}
.h20{height:48.585000pt;}
.hc{height:52.134375pt;}
.h6{height:55.200000pt;}
.h7{height:55.343750pt;}
.hf{height:59.771250pt;}
.h1a{height:60.519362pt;}
.h22{height:61.717500pt;}
.h3{height:62.812500pt;}
.h4{height:64.500000pt;}
.h5{height:64.752187pt;}
.h18{height:65.995312pt;}
.hd{height:66.625000pt;}
.h10{height:69.660000pt;}
.h1b{height:73.454062pt;}
.h17{height:73.490625pt;}
.h1e{height:73.989375pt;}
.h23{height:74.697187pt;}
.h1d{height:75.255000pt;}
.h12{height:75.465000pt;}
.h1c{height:76.964840pt;}
.h21{height:77.951250pt;}
.h24{height:85.952000pt;}
.he{height:93.472000pt;}
.h2{height:107.715000pt;}
.h13{height:188.437500pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.wa{width:33.920000pt;}
.w5{width:122.912000pt;}
.wb{width:172.986667pt;}
.wc{width:173.026667pt;}
.w6{width:198.586667pt;}
.w7{width:213.506667pt;}
.w4{width:271.706667pt;}
.w8{width:356.866667pt;}
.w3{width:585.853333pt;}
.w9{width:759.199987pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x7{left:3.680000pt;}
.xe{left:7.200000pt;}
.x3a{left:8.480000pt;}
.x14{left:9.600000pt;}
.x3e{left:18.120000pt;}
.x3b{left:26.400000pt;}
.x3f{left:28.360000pt;}
.x42{left:31.546667pt;}
.x40{left:32.840000pt;}
.x43{left:38.746667pt;}
.x46{left:44.480000pt;}
.x39{left:49.920000pt;}
.x3c{left:54.912000pt;}
.x1d{left:56.799988pt;}
.x41{left:61.640000pt;}
.xa{left:63.834667pt;}
.x12{left:68.160000pt;}
.x47{left:76.319988pt;}
.x27{left:80.831988pt;}
.x45{left:86.426667pt;}
.xc{left:94.591988pt;}
.xd{left:98.752000pt;}
.x1c{left:102.912000pt;}
.x6{left:104.032000pt;}
.x10{left:122.426667pt;}
.x31{left:128.031988pt;}
.x9{left:135.834667pt;}
.x1a{left:141.786655pt;}
.x18{left:145.306655pt;}
.x1f{left:150.106655pt;}
.x2d{left:151.226655pt;}
.x15{left:153.626655pt;}
.x20{left:166.426655pt;}
.x2e{left:175.226655pt;}
.x37{left:180.186655pt;}
.x2f{left:188.826655pt;}
.x2a{left:198.426655pt;}
.x32{left:210.426655pt;}
.x30{left:212.826655pt;}
.x38{left:216.666655pt;}
.x1e{left:221.306655pt;}
.x3d{left:223.546667pt;}
.x3{left:243.866655pt;}
.x19{left:244.826655pt;}
.x8{left:251.074667pt;}
.x33{left:268.386655pt;}
.x24{left:271.426655pt;}
.x36{left:273.826655pt;}
.x16{left:279.746655pt;}
.xb{left:291.714667pt;}
.x28{left:295.906655pt;}
.x1b{left:297.666655pt;}
.x21{left:311.266653pt;}
.x35{left:334.306655pt;}
.x2c{left:346.146655pt;}
.x17{left:350.946655pt;}
.x2b{left:354.626655pt;}
.x4{left:356.066655pt;}
.xf{left:370.466667pt;}
.x5{left:395.746655pt;}
.x2{left:396.866655pt;}
.x26{left:407.293322pt;}
.x25{left:460.253322pt;}
.x11{left:493.373333pt;}
.x13{left:550.493333pt;}
.x44{left:571.013333pt;}
.x1{left:699.333322pt;}
.x34{left:718.533322pt;}
.x23{left:727.999988pt;}
.x29{left:737.279988pt;}
.x22{left:759.840000pt;}
}




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