
    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_149e88e426429880558ad593.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.952148;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_fe29c3940d695cf6905d856b.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.762000;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_fd9a305c7f187d34053b60fc.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.744000;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_a1cf4f2f6c0dfa21379e8b1f.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.931000;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_24acd65c4d868ca9c9516e44.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.700000;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_b34362dc6dcf30249fcf4faa.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.951000;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_02bdcb8354fece199f39a731.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.938000;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_af3da69cab4b519bb2338498.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.901855;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_25f7bb4671c86edb8ca3eb48.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.893555;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_8eda340cadeb62220ec57e0d.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.705078;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_adce708c8092035e53187ded.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.677246;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_7390d4103aa0f974aff5e435.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.881836;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_3a97a45eb464205f5c1e7f1b.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.904297;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_d25de44ec0535e083873c815.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.700000;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_c0713b23c95cdad938455f79.woff2')format("woff");}.fff{font-family:fff;line-height:0.952148;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_49d627d564ec45648d387138.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.893555;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_08d12c5c22b40cc5b0b11220.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.901855;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_566e1bd496eb05da03b0dee7.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.968750;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,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);}
.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:-13.200000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:13.125000px;}
.v1{vertical-align:19.800000px;}
.v5{vertical-align:28.784400px;}
.v4{vertical-align:33.750000px;}
.v6{vertical-align:57.569400px;}
.ls47{letter-spacing:-10.845000px;}
.ls4d{letter-spacing:-10.215000px;}
.ls4a{letter-spacing:-9.990000px;}
.ls48{letter-spacing:-9.180000px;}
.ls4c{letter-spacing:-8.325000px;}
.ls4f{letter-spacing:-4.995000px;}
.ls4b{letter-spacing:-4.185000px;}
.ls7{letter-spacing:0.000000px;}
.ls32{letter-spacing:0.007200px;}
.ls34{letter-spacing:0.009600px;}
.ls31{letter-spacing:0.010200px;}
.ls15{letter-spacing:0.011400px;}
.ls1f{letter-spacing:0.016800px;}
.ls1c{letter-spacing:0.017400px;}
.ls1e{letter-spacing:0.025800px;}
.ls43{letter-spacing:0.060000px;}
.lsa{letter-spacing:0.066000px;}
.ls2d{letter-spacing:0.085800px;}
.ls5{letter-spacing:0.090000px;}
.ls27{letter-spacing:0.098400px;}
.ls1b{letter-spacing:0.123600px;}
.ls9{letter-spacing:0.132000px;}
.ls1a{letter-spacing:0.198000px;}
.ls30{letter-spacing:0.214500px;}
.ls4e{letter-spacing:0.240000px;}
.lsb{letter-spacing:0.264000px;}
.ls6{letter-spacing:0.270000px;}
.ls29{letter-spacing:0.330000px;}
.ls35{letter-spacing:0.360000px;}
.ls37{letter-spacing:0.364200px;}
.lsc{letter-spacing:0.396000px;}
.ls46{letter-spacing:0.420000px;}
.ls2f{letter-spacing:0.461700px;}
.ls2{letter-spacing:0.462000px;}
.lsd{letter-spacing:0.528000px;}
.ls12{letter-spacing:0.540000px;}
.ls41{letter-spacing:0.585000px;}
.lse{letter-spacing:0.594000px;}
.ls42{letter-spacing:0.598200px;}
.ls40{letter-spacing:0.600000px;}
.ls3f{letter-spacing:0.607800px;}
.ls2e{letter-spacing:0.660000px;}
.lsf{letter-spacing:0.726000px;}
.ls2c{letter-spacing:0.792000px;}
.ls3c{letter-spacing:0.810000px;}
.ls3b{letter-spacing:0.827400px;}
.ls3d{letter-spacing:0.829200px;}
.ls39{letter-spacing:0.830400px;}
.ls3a{letter-spacing:0.840000px;}
.ls11{letter-spacing:0.858000px;}
.ls14{letter-spacing:0.924000px;}
.ls2b{letter-spacing:0.990000px;}
.ls2a{letter-spacing:1.056000px;}
.ls3e{letter-spacing:1.080000px;}
.ls24{letter-spacing:1.254000px;}
.ls25{letter-spacing:1.320000px;}
.ls13{letter-spacing:1.452000px;}
.ls10{letter-spacing:1.518000px;}
.ls28{letter-spacing:1.716000px;}
.ls38{letter-spacing:1.938000px;}
.ls26{letter-spacing:2.112000px;}
.ls4{letter-spacing:2.112947px;}
.ls33{letter-spacing:5.109600px;}
.ls49{letter-spacing:6.420000px;}
.ls44{letter-spacing:7.511400px;}
.ls36{letter-spacing:7.864200px;}
.ls45{letter-spacing:7.893600px;}
.ls20{letter-spacing:8.250000px;}
.ls1d{letter-spacing:8.275800px;}
.ls1{letter-spacing:10.656000px;}
.ls3{letter-spacing:12.510000px;}
.ls19{letter-spacing:12.540000px;}
.ls23{letter-spacing:13.500000px;}
.ls18{letter-spacing:16.302000px;}
.ls16{letter-spacing:19.990500px;}
.ls17{letter-spacing:77.391000px;}
.ls22{letter-spacing:259.652400px;}
.ls21{letter-spacing:261.132600px;}
.ls8{letter-spacing:1341.729600px;}
.ls0{letter-spacing:1890.921600px;}
.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;}
}
.wsd{word-spacing:-18.216000px;}
.ws7{word-spacing:-16.698000px;}
.ws4{word-spacing:-16.500000px;}
.ws1f{word-spacing:-15.420000px;}
.ws1{word-spacing:-15.000000px;}
.ws1a{word-spacing:-12.060000px;}
.ws1c{word-spacing:-11.835000px;}
.ws2{word-spacing:-11.250000px;}
.ws14{word-spacing:-10.939500px;}
.ws13{word-spacing:-10.810800px;}
.ws5{word-spacing:-10.725000px;}
.ws0{word-spacing:-9.324000px;}
.ws18{word-spacing:-7.065000px;}
.ws1e{word-spacing:-6.255000px;}
.ws6{word-spacing:-0.066000px;}
.ws3{word-spacing:0.000000px;}
.ws19{word-spacing:6.210000px;}
.ws16{word-spacing:7.110000px;}
.ws17{word-spacing:8.730000px;}
.ws1b{word-spacing:9.765000px;}
.ws1d{word-spacing:9.810000px;}
.ws15{word-spacing:10.440000px;}
.wsb{word-spacing:51.643800px;}
.ws11{word-spacing:73.346400px;}
.ws10{word-spacing:76.639800px;}
.wsc{word-spacing:79.086600px;}
.wsf{word-spacing:95.012400px;}
.ws12{word-spacing:228.649200px;}
.wsa{word-spacing:234.322200px;}
.ws8{word-spacing:246.152400px;}
.ws9{word-spacing:247.632600px;}
.wse{word-spacing:435.261000px;}
._39{margin-left:-1870.438200px;}
._e{margin-left:-17.534400px;}
._11{margin-left:-16.500000px;}
._7{margin-left:-13.646400px;}
._1{margin-left:-10.662600px;}
._6{margin-left:-9.324000px;}
._14{margin-left:-8.040600px;}
._3a{margin-left:-6.996000px;}
._3b{margin-left:-5.940000px;}
._12{margin-left:-2.472316px;}
._f{margin-left:-1.056000px;}
._3{width:1.386000px;}
._9{width:2.394000px;}
._4{width:3.402000px;}
._5{width:4.914000px;}
._8{width:6.221842px;}
._10{width:7.224316px;}
._a{width:8.250000px;}
._b{width:9.306000px;}
._2{width:11.676000px;}
._0{width:13.344000px;}
._3d{width:28.308316px;}
._3c{width:29.607000px;}
._c{width:44.989200px;}
._1e{width:69.608400px;}
._21{width:72.372000px;}
._20{width:79.089600px;}
._30{width:80.462400px;}
._1f{width:88.356000px;}
._35{width:91.098000px;}
._19{width:99.294000px;}
._1a{width:104.935800px;}
._25{width:106.365600px;}
._26{width:109.903800px;}
._29{width:115.825200px;}
._34{width:118.098600px;}
._23{width:121.119000px;}
._2f{width:125.451600px;}
._24{width:126.886200px;}
._27{width:128.985600px;}
._22{width:135.363600px;}
._18{width:138.919200px;}
._17{width:143.858400px;}
._15{width:145.322400px;}
._2a{width:146.586000px;}
._28{width:148.110600px;}
._36{width:158.137800px;}
._32{width:166.677000px;}
._33{width:168.112200px;}
._31{width:171.108000px;}
._2b{width:176.351400px;}
._1b{width:185.690400px;}
._2c{width:189.850200px;}
._1d{width:195.601800px;}
._16{width:197.584200px;}
._1c{width:223.948200px;}
._37{width:247.360200px;}
._2d{width:339.012000px;}
._38{width:350.947200px;}
._2e{width:526.005000px;}
._13{width:753.540000px;}
._d{width:1157.565600px;}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(35,31,32);}
.fs3{font-size:27.000000px;}
.fs0{font-size:36.000000px;}
.fs5{font-size:42.000000px;}
.fse{font-size:42.750000px;}
.fsd{font-size:42.900000px;}
.fs6{font-size:45.000000px;}
.fs4{font-size:48.000000px;}
.fsb{font-size:51.000000px;}
.fs9{font-size:54.000000px;}
.fsa{font-size:57.000000px;}
.fs1{font-size:60.000000px;}
.fsc{font-size:66.000000px;}
.fs8{font-size:72.000000px;}
.fs7{font-size:90.000000px;}
.fs2{font-size:139.800000px;}
.y0{bottom:0.000000px;}
.y81{bottom:3.703350px;}
.y80{bottom:14.999850px;}
.y157{bottom:85.038900px;}
.y147{bottom:85.039050px;}
.y1{bottom:85.039350px;}
.y34{bottom:85.039500px;}
.y100{bottom:85.039650px;}
.ydb{bottom:85.039800px;}
.y11{bottom:119.055150px;}
.y162{bottom:119.234700px;}
.y53{bottom:119.521800px;}
.yda{bottom:119.526600px;}
.y8f{bottom:119.619300px;}
.y71{bottom:119.796150px;}
.y75{bottom:119.852550px;}
.ya7{bottom:119.860950px;}
.yff{bottom:119.964750px;}
.y10{bottom:131.055150px;}
.y133{bottom:131.734800px;}
.ybb{bottom:134.909850px;}
.y74{bottom:135.839550px;}
.y161{bottom:136.823700px;}
.yd9{bottom:137.123100px;}
.y8e{bottom:137.215800px;}
.y70{bottom:137.392650px;}
.ya6{bottom:137.457600px;}
.yfe{bottom:137.561250px;}
.y156{bottom:140.717700px;}
.y132{bottom:149.331300px;}
.yf{bottom:149.433000px;}
.yc5{bottom:149.629050px;}
.yba{bottom:152.506350px;}
.y160{bottom:154.412700px;}
.yd8{bottom:154.719600px;}
.y8d{bottom:154.812300px;}
.y6f{bottom:154.989150px;}
.ya5{bottom:155.054100px;}
.yfd{bottom:155.157750px;}
.y183{bottom:156.008100px;}
.y155{bottom:158.314200px;}
.y146{bottom:160.864200px;}
.y131{bottom:166.927800px;}
.yc4{bottom:167.225550px;}
.ye{bottom:167.811000px;}
.yb9{bottom:170.102850px;}
.yd7{bottom:172.316100px;}
.y8c{bottom:172.408800px;}
.y6e{bottom:172.585650px;}
.yfc{bottom:172.754250px;}
.y182{bottom:173.604600px;}
.y154{bottom:175.910700px;}
.y145{bottom:178.460700px;}
.ya4{bottom:181.447800px;}
.yd{bottom:184.062900px;}
.yc3{bottom:184.822050px;}
.yd6{bottom:189.912600px;}
.y8b{bottom:190.005300px;}
.y6d{bottom:190.182150px;}
.yfb{bottom:190.350750px;}
.y181{bottom:191.201100px;}
.y130{bottom:193.321650px;}
.y153{bottom:193.507200px;}
.yc{bottom:195.243900px;}
.y144{bottom:196.057200px;}
.yb8{bottom:196.496550px;}
.ya3{bottom:199.044300px;}
.yc2{bottom:202.418550px;}
.yb{bottom:206.424900px;}
.y15f{bottom:207.198600px;}
.yd5{bottom:207.509100px;}
.y8a{bottom:207.601800px;}
.y6c{bottom:207.778650px;}
.yfa{bottom:207.947250px;}
.y124{bottom:208.942050px;}
.y152{bottom:211.103700px;}
.yb7{bottom:214.093050px;}
.ya2{bottom:216.640800px;}
.y180{bottom:217.594950px;}
.yc1{bottom:220.015050px;}
.y143{bottom:222.450900px;}
.ya{bottom:223.983900px;}
.yd4{bottom:225.105600px;}
.y89{bottom:225.198300px;}
.y6b{bottom:225.375150px;}
.yf9{bottom:225.543750px;}
.y151{bottom:228.700200px;}
.yb6{bottom:231.689550px;}
.ya1{bottom:234.237300px;}
.y122{bottom:234.374100px;}
.y9{bottom:235.164900px;}
.y17f{bottom:235.191450px;}
.yc0{bottom:237.611550px;}
.y142{bottom:240.047400px;}
.y121{bottom:241.570350px;}
.y88{bottom:242.794800px;}
.y6a{bottom:242.971650px;}
.yf8{bottom:243.140250px;}
.y150{bottom:246.296700px;}
.y8{bottom:246.345900px;}
.y123{bottom:248.766600px;}
.yb5{bottom:249.286200px;}
.yd3{bottom:251.499450px;}
.ya0{bottom:251.833800px;}
.y17e{bottom:252.787950px;}
.y141{bottom:257.643900px;}
.y87{bottom:260.391300px;}
.y69{bottom:260.568150px;}
.y12f{bottom:263.702100px;}
.ybf{bottom:264.005400px;}
.y33{bottom:266.440350px;}
.yb4{bottom:266.882550px;}
.y9f{bottom:269.430300px;}
.yf7{bottom:269.534100px;}
.y17d{bottom:270.384450px;}
.y14f{bottom:272.690550px;}
.y68{bottom:278.164650px;}
.y1a5{bottom:280.509000px;}
.y120{bottom:281.155050px;}
.y140{bottom:284.037750px;}
.yb3{bottom:284.479050px;}
.y86{bottom:286.785150px;}
.y9e{bottom:287.026800px;}
.yf6{bottom:287.130600px;}
.y32{bottom:287.227500px;}
.y17c{bottom:287.980950px;}
.y14e{bottom:290.287050px;}
.y67{bottom:295.761150px;}
.y1a4{bottom:298.324500px;}
.ybe{bottom:299.196450px;}
.y31{bottom:300.021000px;}
.y13f{bottom:301.634250px;}
.yb2{bottom:302.075550px;}
.y85{bottom:304.381650px;}
.y9d{bottom:304.623300px;}
.yf5{bottom:304.727100px;}
.y14d{bottom:307.883550px;}
.y30{bottom:312.814500px;}
.yd2{bottom:312.823650px;}
.y66{bottom:313.357650px;}
.y1a3{bottom:316.140000px;}
.y13e{bottom:319.230750px;}
.y84{bottom:321.978150px;}
.y9c{bottom:322.219800px;}
.y17b{bottom:323.172000px;}
.y14c{bottom:325.480050px;}
.y2f{bottom:325.608000px;}
.y65{bottom:330.954150px;}
.yf4{bottom:331.120950px;}
.y11f{bottom:332.331300px;}
.y1a2{bottom:333.955500px;}
.y13d{bottom:336.827250px;}
.yd1{bottom:338.255700px;}
.y2e{bottom:338.401500px;}
.y83{bottom:339.574650px;}
.y9b{bottom:339.816300px;}
.y64{bottom:348.550650px;}
.y11e{bottom:349.927800px;}
.y2d{bottom:351.195000px;}
.y1a1{bottom:351.771000px;}
.y14b{bottom:351.873900px;}
.ycf{bottom:352.648200px;}
.y13c{bottom:354.423750px;}
.yb1{bottom:356.009850px;}
.y82{bottom:357.171150px;}
.y9a{bottom:357.412800px;}
.y2c{bottom:363.988500px;}
.yd0{bottom:367.040700px;}
.y11d{bottom:367.524300px;}
.y1a0{bottom:369.586500px;}
.y13b{bottom:372.020250px;}
.yb0{bottom:372.937950px;}
.y99{bottom:375.009300px;}
.yf3{bottom:375.109350px;}
.y52{bottom:375.720000px;}
.y17a{bottom:375.957900px;}
.y2b{bottom:376.782000px;}
.ybd{bottom:378.374250px;}
.y11c{bottom:385.120800px;}
.y19f{bottom:387.402000px;}
.y2a{bottom:389.575500px;}
.y13a{bottom:389.616750px;}
.yaf{bottom:389.866050px;}
.y7e{bottom:392.362350px;}
.y7f{bottom:392.362500px;}
.y98{bottom:392.605800px;}
.yf2{bottom:392.706000px;}
.y51{bottom:393.316500px;}
.y179{bottom:393.554400px;}
.yce{bottom:399.429000px;}
.y63{bottom:401.336400px;}
.y29{bottom:402.369000px;}
.y11b{bottom:402.717300px;}
.y19e{bottom:405.217500px;}
.yae{bottom:406.794300px;}
.y139{bottom:407.213250px;}
.y50{bottom:410.913000px;}
.y178{bottom:411.150900px;}
.y28{bottom:415.162500px;}
.y62{bottom:417.323400px;}
.y12e{bottom:418.264050px;}
.y97{bottom:418.999650px;}
.y11a{bottom:420.313800px;}
.y14a{bottom:422.254200px;}
.y19d{bottom:423.033000px;}
.yad{bottom:423.722400px;}
.y138{bottom:424.809750px;}
.y15e{bottom:426.151050px;}
.yf1{bottom:427.897050px;}
.y27{bottom:427.956000px;}
.y4f{bottom:428.509500px;}
.y177{bottom:428.747400px;}
.y12d{bottom:435.860550px;}
.y96{bottom:436.596150px;}
.y119{bottom:437.910300px;}
.yac{bottom:440.650500px;}
.y19c{bottom:440.848500px;}
.y137{bottom:442.406250px;}
.y15d{bottom:443.740050px;}
.y4e{bottom:446.106000px;}
.y176{bottom:446.343900px;}
.ycd{bottom:450.605250px;}
.y7d{bottom:451.957050px;}
.y12c{bottom:453.457050px;}
.y95{bottom:454.192650px;}
.y118{bottom:455.506800px;}
.y26{bottom:456.736950px;}
.yab{bottom:457.578750px;}
.y19b{bottom:458.664000px;}
.y136{bottom:460.002750px;}
.y15c{bottom:461.329050px;}
.y4d{bottom:463.702500px;}
.y175{bottom:463.940250px;}
.ycc{bottom:468.201750px;}
.y7c{bottom:469.553400px;}
.y12b{bottom:471.053400px;}
.y94{bottom:471.789150px;}
.y117{bottom:473.103300px;}
.y19a{bottom:476.479500px;}
.y25{bottom:477.524100px;}
.y15b{bottom:478.918050px;}
.y4c{bottom:481.299000px;}
.y174{bottom:481.536900px;}
.yaa{bottom:483.010800px;}
.ycb{bottom:485.798250px;}
.y7b{bottom:487.149900px;}
.y12a{bottom:488.650050px;}
.y93{bottom:489.385650px;}
.y24{bottom:490.317600px;}
.y199{bottom:494.295000px;}
.y15a{bottom:496.507050px;}
.yf0{bottom:498.656250px;}
.y4b{bottom:498.895500px;}
.y173{bottom:499.133400px;}
.y23{bottom:503.111100px;}
.y7a{bottom:504.746550px;}
.y129{bottom:506.246550px;}
.y92{bottom:506.982150px;}
.y198{bottom:512.110500px;}
.y135{bottom:512.788500px;}
.ya9{bottom:515.399100px;}
.yef{bottom:515.584500px;}
.y22{bottom:515.904600px;}
.y4a{bottom:516.492000px;}
.y172{bottom:516.729900px;}
.y79{bottom:522.342900px;}
.y128{bottom:523.843050px;}
.y116{bottom:527.037450px;}
.y21{bottom:528.698100px;}
.y134{bottom:528.775500px;}
.y197{bottom:529.926000px;}
.yee{bottom:532.512600px;}
.y171{bottom:534.326400px;}
.yca{bottom:539.732400px;}
.y78{bottom:539.939550px;}
.y127{bottom:541.439550px;}
.y20{bottom:541.491600px;}
.y49{bottom:542.885850px;}
.y115{bottom:543.965700px;}
.y196{bottom:547.741500px;}
.y159{bottom:549.292800px;}
.y170{bottom:551.922750px;}
.y1f{bottom:554.285100px;}
.yed{bottom:557.944650px;}
.y91{bottom:559.767900px;}
.y48{bottom:560.482350px;}
.y114{bottom:560.893800px;}
.yc9{bottom:565.164600px;}
.y195{bottom:565.557000px;}
.y1e{bottom:567.078600px;}
.y126{bottom:567.833250px;}
.y16f{bottom:569.519400px;}
.y90{bottom:575.754900px;}
.y113{bottom:577.822050px;}
.y47{bottom:578.078850px;}
.y1d{bottom:579.872100px;}
.y194{bottom:583.372500px;}
.y16e{bottom:587.115900px;}
.yec{bottom:590.333100px;}
.y1c{bottom:592.665600px;}
.y77{bottom:592.725300px;}
.ya8{bottom:592.967400px;}
.y112{bottom:594.750150px;}
.y46{bottom:595.675350px;}
.yc8{bottom:597.552900px;}
.y193{bottom:601.188000px;}
.y16d{bottom:604.712400px;}
.y1b{bottom:605.459100px;}
.yeb{bottom:606.319950px;}
.y76{bottom:608.712300px;}
.y111{bottom:611.678250px;}
.y45{bottom:613.271850px;}
.y192{bottom:619.003500px;}
.y73{bottom:622.069200px;}
.y16c{bottom:622.308900px;}
.y110{bottom:628.606350px;}
.y44{bottom:630.868350px;}
.y191{bottom:636.819000px;}
.y125{bottom:638.213700px;}
.y72{bottom:639.665700px;}
.y10f{bottom:645.534600px;}
.y190{bottom:654.634500px;}
.y43{bottom:657.262200px;}
.yea{bottom:657.496350px;}
.y16b{bottom:657.499950px;}
.y10e{bottom:662.462700px;}
.y61{bottom:666.293250px;}
.y18f{bottom:672.450000px;}
.y42{bottom:674.858700px;}
.ye9{bottom:675.092850px;}
.y16a{bottom:675.096450px;}
.yc7{bottom:675.121200px;}
.y10d{bottom:679.390800px;}
.ybc{bottom:681.846000px;}
.y60{bottom:683.889750px;}
.y18e{bottom:690.265500px;}
.y1a{bottom:690.536100px;}
.yc6{bottom:691.108200px;}
.y41{bottom:692.455200px;}
.ye8{bottom:692.689200px;}
.y169{bottom:692.692950px;}
.y10c{bottom:696.319050px;}
.y5f{bottom:701.486250px;}
.y19{bottom:706.523100px;}
.y18d{bottom:708.081000px;}
.y40{bottom:710.051700px;}
.ye7{bottom:710.285850px;}
.y10b{bottom:713.247150px;}
.y5e{bottom:719.082750px;}
.y18c{bottom:725.896500px;}
.y3f{bottom:727.648200px;}
.ye6{bottom:727.882350px;}
.y168{bottom:727.884150px;}
.y10a{bottom:730.175250px;}
.y18{bottom:731.307450px;}
.y18b{bottom:743.712000px;}
.y3e{bottom:745.244700px;}
.y5d{bottom:745.476600px;}
.y109{bottom:747.103500px;}
.y17{bottom:748.903950px;}
.ye5{bottom:754.276050px;}
.y18a{bottom:761.527500px;}
.y3d{bottom:762.841200px;}
.y5c{bottom:763.073100px;}
.y108{bottom:764.031600px;}
.ye4{bottom:771.872550px;}
.y189{bottom:779.343000px;}
.y3c{bottom:780.437700px;}
.y5b{bottom:780.669600px;}
.y167{bottom:780.670050px;}
.y107{bottom:780.959700px;}
.y16{bottom:783.508350px;}
.ye3{bottom:789.469050px;}
.y188{bottom:797.158500px;}
.y106{bottom:797.887950px;}
.y3b{bottom:798.034200px;}
.y5a{bottom:798.266100px;}
.y166{bottom:798.266400px;}
.y15{bottom:805.108200px;}
.ye2{bottom:807.065700px;}
.y105{bottom:814.816050px;}
.y187{bottom:814.974000px;}
.y3a{bottom:815.630700px;}
.y59{bottom:815.862600px;}
.y165{bottom:815.862900px;}
.ye1{bottom:824.662200px;}
.y14{bottom:830.960250px;}
.y186{bottom:832.789650px;}
.y39{bottom:833.227350px;}
.y58{bottom:833.459100px;}
.y164{bottom:833.459400px;}
.y103{bottom:840.248250px;}
.ye0{bottom:842.258550px;}
.y102{bottom:847.444500px;}
.y185{bottom:850.605150px;}
.y38{bottom:850.823700px;}
.y57{bottom:851.055600px;}
.y163{bottom:851.055900px;}
.y104{bottom:854.640600px;}
.y13{bottom:856.460250px;}
.y56{bottom:868.652100px;}
.ydf{bottom:868.652400px;}
.y12{bottom:881.960250px;}
.y37{bottom:886.014900px;}
.y184{bottom:886.015350px;}
.y55{bottom:886.248600px;}
.yde{bottom:886.248900px;}
.y101{bottom:887.029050px;}
.y5{bottom:920.367150px;}
.y149{bottom:931.877700px;}
.y36{bottom:931.878150px;}
.ydd{bottom:931.878450px;}
.y158{bottom:931.885200px;}
.y4{bottom:939.027750px;}
.y3{bottom:945.477750px;}
.y148{bottom:949.474200px;}
.y54{bottom:949.474500px;}
.y35{bottom:949.474650px;}
.ydc{bottom:949.474950px;}
.y2{bottom:953.272050px;}
.y7{bottom:957.890700px;}
.y6{bottom:971.390700px;}
.h4{height:19.602000px;}
.hd{height:30.827637px;}
.h6{height:31.206000px;}
.hc{height:33.002930px;}
.h7{height:33.435000px;}
.h5{height:35.328000px;}
.h14{height:37.403320px;}
.h11{height:39.000000px;}
.hb{height:39.603516px;}
.ha{height:41.103516px;}
.h2{height:44.003906px;}
.he{height:45.213867px;}
.h18{height:45.246094px;}
.h1a{height:45.826172px;}
.h13{height:46.535156px;}
.hf{height:48.404297px;}
.h1b{height:49.570312px;}
.h19{height:51.262193px;}
.h10{height:51.262793px;}
.h9{height:52.804688px;}
.h8{height:62.490234px;}
.h15{height:66.187720px;}
.h17{height:66.188320px;}
.h12{height:77.739258px;}
.h16{height:94.972720px;}
.h3{height:104.850000px;}
.h0{height:1020.472500px;}
.h1{height:1020.750000px;}
.w2{width:79.498500px;}
.w0{width:722.835000px;}
.w1{width:723.000000px;}
.x0{left:0.000000px;}
.x12{left:3.328050px;}
.x13{left:37.035750px;}
.xb{left:110.551200px;}
.x1{left:113.476500px;}
.x18{left:122.840700px;}
.x1d{left:125.401500px;}
.x2a{left:126.716550px;}
.x19{left:130.087500px;}
.x17{left:132.213600px;}
.xc{left:136.063050px;}
.x4{left:138.988350px;}
.x32{left:149.618250px;}
.x31{left:155.196900px;}
.x7{left:169.842000px;}
.x5{left:173.632800px;}
.x6{left:179.257800px;}
.xf{left:194.263950px;}
.xd{left:195.590550px;}
.x1e{left:206.220450px;}
.x30{left:221.901750px;}
.x20{left:225.748650px;}
.x10{left:229.606350px;}
.x2b{left:238.253400px;}
.x1f{left:239.870100px;}
.x2f{left:243.530550px;}
.x22{left:293.069100px;}
.x15{left:295.927800px;}
.xe{left:302.097450px;}
.x21{left:307.587150px;}
.x2c{left:308.591100px;}
.x16{left:319.737600px;}
.x11{left:323.104500px;}
.x24{left:351.177300px;}
.x23{left:360.736650px;}
.x9{left:366.350100px;}
.xa{left:380.219250px;}
.x14{left:402.604500px;}
.x26{left:404.326950px;}
.x25{left:413.886300px;}
.x2e{left:421.620150px;}
.x2d{left:436.138350px;}
.x3{left:441.045750px;}
.x28{left:457.476450px;}
.x27{left:467.387700px;}
.x2{left:521.280900px;}
.x8{left:540.227850px;}
.x1b{left:563.800500px;}
.x1c{left:565.571700px;}
.x1a{left:566.630100px;}
.x29{left:569.445750px;}
@media print{
.v2{vertical-align:-11.733333pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:11.666667pt;}
.v1{vertical-align:17.600000pt;}
.v5{vertical-align:25.586133pt;}
.v4{vertical-align:30.000000pt;}
.v6{vertical-align:51.172800pt;}
.ls47{letter-spacing:-9.640000pt;}
.ls4d{letter-spacing:-9.080000pt;}
.ls4a{letter-spacing:-8.880000pt;}
.ls48{letter-spacing:-8.160000pt;}
.ls4c{letter-spacing:-7.400000pt;}
.ls4f{letter-spacing:-4.440000pt;}
.ls4b{letter-spacing:-3.720000pt;}
.ls7{letter-spacing:0.000000pt;}
.ls32{letter-spacing:0.006400pt;}
.ls34{letter-spacing:0.008533pt;}
.ls31{letter-spacing:0.009067pt;}
.ls15{letter-spacing:0.010133pt;}
.ls1f{letter-spacing:0.014933pt;}
.ls1c{letter-spacing:0.015467pt;}
.ls1e{letter-spacing:0.022933pt;}
.ls43{letter-spacing:0.053333pt;}
.lsa{letter-spacing:0.058667pt;}
.ls2d{letter-spacing:0.076267pt;}
.ls5{letter-spacing:0.080000pt;}
.ls27{letter-spacing:0.087467pt;}
.ls1b{letter-spacing:0.109867pt;}
.ls9{letter-spacing:0.117333pt;}
.ls1a{letter-spacing:0.176000pt;}
.ls30{letter-spacing:0.190667pt;}
.ls4e{letter-spacing:0.213333pt;}
.lsb{letter-spacing:0.234667pt;}
.ls6{letter-spacing:0.240000pt;}
.ls29{letter-spacing:0.293333pt;}
.ls35{letter-spacing:0.320000pt;}
.ls37{letter-spacing:0.323733pt;}
.lsc{letter-spacing:0.352000pt;}
.ls46{letter-spacing:0.373333pt;}
.ls2f{letter-spacing:0.410400pt;}
.ls2{letter-spacing:0.410667pt;}
.lsd{letter-spacing:0.469333pt;}
.ls12{letter-spacing:0.480000pt;}
.ls41{letter-spacing:0.520000pt;}
.lse{letter-spacing:0.528000pt;}
.ls42{letter-spacing:0.531733pt;}
.ls40{letter-spacing:0.533333pt;}
.ls3f{letter-spacing:0.540267pt;}
.ls2e{letter-spacing:0.586667pt;}
.lsf{letter-spacing:0.645333pt;}
.ls2c{letter-spacing:0.704000pt;}
.ls3c{letter-spacing:0.720000pt;}
.ls3b{letter-spacing:0.735467pt;}
.ls3d{letter-spacing:0.737067pt;}
.ls39{letter-spacing:0.738133pt;}
.ls3a{letter-spacing:0.746667pt;}
.ls11{letter-spacing:0.762667pt;}
.ls14{letter-spacing:0.821333pt;}
.ls2b{letter-spacing:0.880000pt;}
.ls2a{letter-spacing:0.938667pt;}
.ls3e{letter-spacing:0.960000pt;}
.ls24{letter-spacing:1.114667pt;}
.ls25{letter-spacing:1.173333pt;}
.ls13{letter-spacing:1.290667pt;}
.ls10{letter-spacing:1.349333pt;}
.ls28{letter-spacing:1.525333pt;}
.ls38{letter-spacing:1.722667pt;}
.ls26{letter-spacing:1.877333pt;}
.ls4{letter-spacing:1.878175pt;}
.ls33{letter-spacing:4.541867pt;}
.ls49{letter-spacing:5.706667pt;}
.ls44{letter-spacing:6.676800pt;}
.ls36{letter-spacing:6.990400pt;}
.ls45{letter-spacing:7.016533pt;}
.ls20{letter-spacing:7.333333pt;}
.ls1d{letter-spacing:7.356267pt;}
.ls1{letter-spacing:9.472000pt;}
.ls3{letter-spacing:11.120000pt;}
.ls19{letter-spacing:11.146667pt;}
.ls23{letter-spacing:12.000000pt;}
.ls18{letter-spacing:14.490667pt;}
.ls16{letter-spacing:17.769333pt;}
.ls17{letter-spacing:68.792000pt;}
.ls22{letter-spacing:230.802133pt;}
.ls21{letter-spacing:232.117867pt;}
.ls8{letter-spacing:1192.648533pt;}
.ls0{letter-spacing:1680.819200pt;}
.wsd{word-spacing:-16.192000pt;}
.ws7{word-spacing:-14.842667pt;}
.ws4{word-spacing:-14.666667pt;}
.ws1f{word-spacing:-13.706667pt;}
.ws1{word-spacing:-13.333333pt;}
.ws1a{word-spacing:-10.720000pt;}
.ws1c{word-spacing:-10.520000pt;}
.ws2{word-spacing:-10.000000pt;}
.ws14{word-spacing:-9.724000pt;}
.ws13{word-spacing:-9.609600pt;}
.ws5{word-spacing:-9.533333pt;}
.ws0{word-spacing:-8.288000pt;}
.ws18{word-spacing:-6.280000pt;}
.ws1e{word-spacing:-5.560000pt;}
.ws6{word-spacing:-0.058667pt;}
.ws3{word-spacing:0.000000pt;}
.ws19{word-spacing:5.520000pt;}
.ws16{word-spacing:6.320000pt;}
.ws17{word-spacing:7.760000pt;}
.ws1b{word-spacing:8.680000pt;}
.ws1d{word-spacing:8.720000pt;}
.ws15{word-spacing:9.280000pt;}
.wsb{word-spacing:45.905600pt;}
.ws11{word-spacing:65.196800pt;}
.ws10{word-spacing:68.124267pt;}
.wsc{word-spacing:70.299200pt;}
.wsf{word-spacing:84.455467pt;}
.ws12{word-spacing:203.243733pt;}
.wsa{word-spacing:208.286400pt;}
.ws8{word-spacing:218.802133pt;}
.ws9{word-spacing:220.117867pt;}
.wse{word-spacing:386.898667pt;}
._39{margin-left:-1662.611733pt;}
._e{margin-left:-15.586133pt;}
._11{margin-left:-14.666667pt;}
._7{margin-left:-12.130133pt;}
._1{margin-left:-9.477867pt;}
._6{margin-left:-8.288000pt;}
._14{margin-left:-7.147200pt;}
._3a{margin-left:-6.218667pt;}
._3b{margin-left:-5.280000pt;}
._12{margin-left:-2.197614pt;}
._f{margin-left:-0.938667pt;}
._3{width:1.232000pt;}
._9{width:2.128000pt;}
._4{width:3.024000pt;}
._5{width:4.368000pt;}
._8{width:5.530526pt;}
._10{width:6.421614pt;}
._a{width:7.333333pt;}
._b{width:8.272000pt;}
._2{width:10.378667pt;}
._0{width:11.861333pt;}
._3d{width:25.162947pt;}
._3c{width:26.317333pt;}
._c{width:39.990400pt;}
._1e{width:61.874133pt;}
._21{width:64.330667pt;}
._20{width:70.301867pt;}
._30{width:71.522133pt;}
._1f{width:78.538667pt;}
._35{width:80.976000pt;}
._19{width:88.261333pt;}
._1a{width:93.276267pt;}
._25{width:94.547200pt;}
._26{width:97.692267pt;}
._29{width:102.955733pt;}
._34{width:104.976533pt;}
._23{width:107.661333pt;}
._2f{width:111.512533pt;}
._24{width:112.787733pt;}
._27{width:114.653867pt;}
._22{width:120.323200pt;}
._18{width:123.483733pt;}
._17{width:127.874133pt;}
._15{width:129.175467pt;}
._2a{width:130.298667pt;}
._28{width:131.653867pt;}
._36{width:140.566933pt;}
._32{width:148.157333pt;}
._33{width:149.433067pt;}
._31{width:152.096000pt;}
._2b{width:156.756800pt;}
._1b{width:165.058133pt;}
._2c{width:168.755733pt;}
._1d{width:173.868267pt;}
._16{width:175.630400pt;}
._1c{width:199.065067pt;}
._37{width:219.875733pt;}
._2d{width:301.344000pt;}
._38{width:311.953067pt;}
._2e{width:467.560000pt;}
._13{width:669.813333pt;}
._d{width:1028.947200pt;}
.fs3{font-size:24.000000pt;}
.fs0{font-size:32.000000pt;}
.fs5{font-size:37.333333pt;}
.fse{font-size:38.000000pt;}
.fsd{font-size:38.133333pt;}
.fs6{font-size:40.000000pt;}
.fs4{font-size:42.666667pt;}
.fsb{font-size:45.333333pt;}
.fs9{font-size:48.000000pt;}
.fsa{font-size:50.666667pt;}
.fs1{font-size:53.333333pt;}
.fsc{font-size:58.666667pt;}
.fs8{font-size:64.000000pt;}
.fs7{font-size:80.000000pt;}
.fs2{font-size:124.266667pt;}
.y0{bottom:0.000000pt;}
.y81{bottom:3.291867pt;}
.y80{bottom:13.333200pt;}
.y157{bottom:75.590133pt;}
.y147{bottom:75.590267pt;}
.y1{bottom:75.590533pt;}
.y34{bottom:75.590667pt;}
.y100{bottom:75.590800pt;}
.ydb{bottom:75.590933pt;}
.y11{bottom:105.826800pt;}
.y162{bottom:105.986400pt;}
.y53{bottom:106.241600pt;}
.yda{bottom:106.245867pt;}
.y8f{bottom:106.328267pt;}
.y71{bottom:106.485467pt;}
.y75{bottom:106.535600pt;}
.ya7{bottom:106.543067pt;}
.yff{bottom:106.635333pt;}
.y10{bottom:116.493467pt;}
.y133{bottom:117.097600pt;}
.ybb{bottom:119.919867pt;}
.y74{bottom:120.746267pt;}
.y161{bottom:121.621067pt;}
.yd9{bottom:121.887200pt;}
.y8e{bottom:121.969600pt;}
.y70{bottom:122.126800pt;}
.ya6{bottom:122.184533pt;}
.yfe{bottom:122.276667pt;}
.y156{bottom:125.082400pt;}
.y132{bottom:132.738933pt;}
.yf{bottom:132.829333pt;}
.yc5{bottom:133.003600pt;}
.yba{bottom:135.561200pt;}
.y160{bottom:137.255733pt;}
.yd8{bottom:137.528533pt;}
.y8d{bottom:137.610933pt;}
.y6f{bottom:137.768133pt;}
.ya5{bottom:137.825867pt;}
.yfd{bottom:137.918000pt;}
.y183{bottom:138.673867pt;}
.y155{bottom:140.723733pt;}
.y146{bottom:142.990400pt;}
.y131{bottom:148.380267pt;}
.yc4{bottom:148.644933pt;}
.ye{bottom:149.165333pt;}
.yb9{bottom:151.202533pt;}
.yd7{bottom:153.169867pt;}
.y8c{bottom:153.252267pt;}
.y6e{bottom:153.409467pt;}
.yfc{bottom:153.559333pt;}
.y182{bottom:154.315200pt;}
.y154{bottom:156.365067pt;}
.y145{bottom:158.631733pt;}
.ya4{bottom:161.286933pt;}
.yd{bottom:163.611467pt;}
.yc3{bottom:164.286267pt;}
.yd6{bottom:168.811200pt;}
.y8b{bottom:168.893600pt;}
.y6d{bottom:169.050800pt;}
.yfb{bottom:169.200667pt;}
.y181{bottom:169.956533pt;}
.y130{bottom:171.841467pt;}
.y153{bottom:172.006400pt;}
.yc{bottom:173.550133pt;}
.y144{bottom:174.273067pt;}
.yb8{bottom:174.663600pt;}
.ya3{bottom:176.928267pt;}
.yc2{bottom:179.927600pt;}
.yb{bottom:183.488800pt;}
.y15f{bottom:184.176533pt;}
.yd5{bottom:184.452533pt;}
.y8a{bottom:184.534933pt;}
.y6c{bottom:184.692133pt;}
.yfa{bottom:184.842000pt;}
.y124{bottom:185.726267pt;}
.y152{bottom:187.647733pt;}
.yb7{bottom:190.304933pt;}
.ya2{bottom:192.569600pt;}
.y180{bottom:193.417733pt;}
.yc1{bottom:195.568933pt;}
.y143{bottom:197.734133pt;}
.ya{bottom:199.096800pt;}
.yd4{bottom:200.093867pt;}
.y89{bottom:200.176267pt;}
.y6b{bottom:200.333467pt;}
.yf9{bottom:200.483333pt;}
.y151{bottom:203.289067pt;}
.yb6{bottom:205.946267pt;}
.ya1{bottom:208.210933pt;}
.y122{bottom:208.332533pt;}
.y9{bottom:209.035467pt;}
.y17f{bottom:209.059067pt;}
.yc0{bottom:211.210267pt;}
.y142{bottom:213.375467pt;}
.y121{bottom:214.729200pt;}
.y88{bottom:215.817600pt;}
.y6a{bottom:215.974800pt;}
.yf8{bottom:216.124667pt;}
.y150{bottom:218.930400pt;}
.y8{bottom:218.974133pt;}
.y123{bottom:221.125867pt;}
.yb5{bottom:221.587733pt;}
.yd3{bottom:223.555067pt;}
.ya0{bottom:223.852267pt;}
.y17e{bottom:224.700400pt;}
.y141{bottom:229.016800pt;}
.y87{bottom:231.458933pt;}
.y69{bottom:231.616133pt;}
.y12f{bottom:234.401867pt;}
.ybf{bottom:234.671467pt;}
.y33{bottom:236.835867pt;}
.yb4{bottom:237.228933pt;}
.y9f{bottom:239.493600pt;}
.yf7{bottom:239.585867pt;}
.y17d{bottom:240.341733pt;}
.y14f{bottom:242.391600pt;}
.y68{bottom:247.257467pt;}
.y1a5{bottom:249.341333pt;}
.y120{bottom:249.915600pt;}
.y140{bottom:252.478000pt;}
.yb3{bottom:252.870267pt;}
.y86{bottom:254.920133pt;}
.y9e{bottom:255.134933pt;}
.yf6{bottom:255.227200pt;}
.y32{bottom:255.313333pt;}
.y17c{bottom:255.983067pt;}
.y14e{bottom:258.032933pt;}
.y67{bottom:262.898800pt;}
.y1a4{bottom:265.177333pt;}
.ybe{bottom:265.952400pt;}
.y31{bottom:266.685333pt;}
.y13f{bottom:268.119333pt;}
.yb2{bottom:268.511600pt;}
.y85{bottom:270.561467pt;}
.y9d{bottom:270.776267pt;}
.yf5{bottom:270.868533pt;}
.y14d{bottom:273.674267pt;}
.y30{bottom:278.057333pt;}
.yd2{bottom:278.065467pt;}
.y66{bottom:278.540133pt;}
.y1a3{bottom:281.013333pt;}
.y13e{bottom:283.760667pt;}
.y84{bottom:286.202800pt;}
.y9c{bottom:286.417600pt;}
.y17b{bottom:287.264000pt;}
.y14c{bottom:289.315600pt;}
.y2f{bottom:289.429333pt;}
.y65{bottom:294.181467pt;}
.yf4{bottom:294.329733pt;}
.y11f{bottom:295.405600pt;}
.y1a2{bottom:296.849333pt;}
.y13d{bottom:299.402000pt;}
.yd1{bottom:300.671733pt;}
.y2e{bottom:300.801333pt;}
.y83{bottom:301.844133pt;}
.y9b{bottom:302.058933pt;}
.y64{bottom:309.822800pt;}
.y11e{bottom:311.046933pt;}
.y2d{bottom:312.173333pt;}
.y1a1{bottom:312.685333pt;}
.y14b{bottom:312.776800pt;}
.ycf{bottom:313.465067pt;}
.y13c{bottom:315.043333pt;}
.yb1{bottom:316.453200pt;}
.y82{bottom:317.485467pt;}
.y9a{bottom:317.700267pt;}
.y2c{bottom:323.545333pt;}
.yd0{bottom:326.258400pt;}
.y11d{bottom:326.688267pt;}
.y1a0{bottom:328.521333pt;}
.y13b{bottom:330.684667pt;}
.yb0{bottom:331.500400pt;}
.y99{bottom:333.341600pt;}
.yf3{bottom:333.430533pt;}
.y52{bottom:333.973333pt;}
.y17a{bottom:334.184800pt;}
.y2b{bottom:334.917333pt;}
.ybd{bottom:336.332667pt;}
.y11c{bottom:342.329600pt;}
.y19f{bottom:344.357333pt;}
.y2a{bottom:346.289333pt;}
.y13a{bottom:346.326000pt;}
.yaf{bottom:346.547600pt;}
.y7e{bottom:348.766533pt;}
.y7f{bottom:348.766667pt;}
.y98{bottom:348.982933pt;}
.yf2{bottom:349.072000pt;}
.y51{bottom:349.614667pt;}
.y179{bottom:349.826133pt;}
.yce{bottom:355.048000pt;}
.y63{bottom:356.743467pt;}
.y29{bottom:357.661333pt;}
.y11b{bottom:357.970933pt;}
.y19e{bottom:360.193333pt;}
.yae{bottom:361.594933pt;}
.y139{bottom:361.967333pt;}
.y50{bottom:365.256000pt;}
.y178{bottom:365.467467pt;}
.y28{bottom:369.033333pt;}
.y62{bottom:370.954133pt;}
.y12e{bottom:371.790267pt;}
.y97{bottom:372.444133pt;}
.y11a{bottom:373.612267pt;}
.y14a{bottom:375.337067pt;}
.y19d{bottom:376.029333pt;}
.yad{bottom:376.642133pt;}
.y138{bottom:377.608667pt;}
.y15e{bottom:378.800933pt;}
.yf1{bottom:380.352933pt;}
.y27{bottom:380.405333pt;}
.y4f{bottom:380.897333pt;}
.y177{bottom:381.108800pt;}
.y12d{bottom:387.431600pt;}
.y96{bottom:388.085467pt;}
.y119{bottom:389.253600pt;}
.yac{bottom:391.689333pt;}
.y19c{bottom:391.865333pt;}
.y137{bottom:393.250000pt;}
.y15d{bottom:394.435600pt;}
.y4e{bottom:396.538667pt;}
.y176{bottom:396.750133pt;}
.ycd{bottom:400.538000pt;}
.y7d{bottom:401.739600pt;}
.y12c{bottom:403.072933pt;}
.y95{bottom:403.726800pt;}
.y118{bottom:404.894933pt;}
.y26{bottom:405.988400pt;}
.yab{bottom:406.736667pt;}
.y19b{bottom:407.701333pt;}
.y136{bottom:408.891333pt;}
.y15c{bottom:410.070267pt;}
.y4d{bottom:412.180000pt;}
.y175{bottom:412.391333pt;}
.ycc{bottom:416.179333pt;}
.y7c{bottom:417.380800pt;}
.y12b{bottom:418.714133pt;}
.y94{bottom:419.368133pt;}
.y117{bottom:420.536267pt;}
.y19a{bottom:423.537333pt;}
.y25{bottom:424.465867pt;}
.y15b{bottom:425.704933pt;}
.y4c{bottom:427.821333pt;}
.y174{bottom:428.032800pt;}
.yaa{bottom:429.342933pt;}
.ycb{bottom:431.820667pt;}
.y7b{bottom:433.022133pt;}
.y12a{bottom:434.355600pt;}
.y93{bottom:435.009467pt;}
.y24{bottom:435.837867pt;}
.y199{bottom:439.373333pt;}
.y15a{bottom:441.339600pt;}
.yf0{bottom:443.250000pt;}
.y4b{bottom:443.462667pt;}
.y173{bottom:443.674133pt;}
.y23{bottom:447.209867pt;}
.y7a{bottom:448.663600pt;}
.y129{bottom:449.996933pt;}
.y92{bottom:450.650800pt;}
.y198{bottom:455.209333pt;}
.y135{bottom:455.812000pt;}
.ya9{bottom:458.132533pt;}
.yef{bottom:458.297333pt;}
.y22{bottom:458.581867pt;}
.y4a{bottom:459.104000pt;}
.y172{bottom:459.315467pt;}
.y79{bottom:464.304800pt;}
.y128{bottom:465.638267pt;}
.y116{bottom:468.477733pt;}
.y21{bottom:469.953867pt;}
.y134{bottom:470.022667pt;}
.y197{bottom:471.045333pt;}
.yee{bottom:473.344533pt;}
.y171{bottom:474.956800pt;}
.yca{bottom:479.762133pt;}
.y78{bottom:479.946267pt;}
.y127{bottom:481.279600pt;}
.y20{bottom:481.325867pt;}
.y49{bottom:482.565200pt;}
.y115{bottom:483.525067pt;}
.y196{bottom:486.881333pt;}
.y159{bottom:488.260267pt;}
.y170{bottom:490.598000pt;}
.y1f{bottom:492.697867pt;}
.yed{bottom:495.950800pt;}
.y91{bottom:497.571467pt;}
.y48{bottom:498.206533pt;}
.y114{bottom:498.572267pt;}
.yc9{bottom:502.368533pt;}
.y195{bottom:502.717333pt;}
.y1e{bottom:504.069867pt;}
.y126{bottom:504.740667pt;}
.y16f{bottom:506.239467pt;}
.y90{bottom:511.782133pt;}
.y113{bottom:513.619600pt;}
.y47{bottom:513.847867pt;}
.y1d{bottom:515.441867pt;}
.y194{bottom:518.553333pt;}
.y16e{bottom:521.880800pt;}
.yec{bottom:524.740533pt;}
.y1c{bottom:526.813867pt;}
.y77{bottom:526.866933pt;}
.ya8{bottom:527.082133pt;}
.y112{bottom:528.666800pt;}
.y46{bottom:529.489200pt;}
.yc8{bottom:531.158133pt;}
.y193{bottom:534.389333pt;}
.y16d{bottom:537.522133pt;}
.y1b{bottom:538.185867pt;}
.yeb{bottom:538.951067pt;}
.y76{bottom:541.077600pt;}
.y111{bottom:543.714000pt;}
.y45{bottom:545.130533pt;}
.y192{bottom:550.225333pt;}
.y73{bottom:552.950400pt;}
.y16c{bottom:553.163467pt;}
.y110{bottom:558.761200pt;}
.y44{bottom:560.771867pt;}
.y191{bottom:566.061333pt;}
.y125{bottom:567.301067pt;}
.y72{bottom:568.591733pt;}
.y10f{bottom:573.808533pt;}
.y190{bottom:581.897333pt;}
.y43{bottom:584.233067pt;}
.yea{bottom:584.441200pt;}
.y16b{bottom:584.444400pt;}
.y10e{bottom:588.855733pt;}
.y61{bottom:592.260667pt;}
.y18f{bottom:597.733333pt;}
.y42{bottom:599.874400pt;}
.ye9{bottom:600.082533pt;}
.y16a{bottom:600.085733pt;}
.yc7{bottom:600.107733pt;}
.y10d{bottom:603.902933pt;}
.ybc{bottom:606.085333pt;}
.y60{bottom:607.902000pt;}
.y18e{bottom:613.569333pt;}
.y1a{bottom:613.809867pt;}
.yc6{bottom:614.318400pt;}
.y41{bottom:615.515733pt;}
.ye8{bottom:615.723733pt;}
.y169{bottom:615.727067pt;}
.y10c{bottom:618.950267pt;}
.y5f{bottom:623.543333pt;}
.y19{bottom:628.020533pt;}
.y18d{bottom:629.405333pt;}
.y40{bottom:631.157067pt;}
.ye7{bottom:631.365200pt;}
.y10b{bottom:633.997467pt;}
.y5e{bottom:639.184667pt;}
.y18c{bottom:645.241333pt;}
.y3f{bottom:646.798400pt;}
.ye6{bottom:647.006533pt;}
.y168{bottom:647.008133pt;}
.y10a{bottom:649.044667pt;}
.y18{bottom:650.051067pt;}
.y18b{bottom:661.077333pt;}
.y3e{bottom:662.439733pt;}
.y5d{bottom:662.645867pt;}
.y109{bottom:664.092000pt;}
.y17{bottom:665.692400pt;}
.ye5{bottom:670.467600pt;}
.y18a{bottom:676.913333pt;}
.y3d{bottom:678.081067pt;}
.y5c{bottom:678.287200pt;}
.y108{bottom:679.139200pt;}
.ye4{bottom:686.108933pt;}
.y189{bottom:692.749333pt;}
.y3c{bottom:693.722400pt;}
.y5b{bottom:693.928533pt;}
.y167{bottom:693.928933pt;}
.y107{bottom:694.186400pt;}
.y16{bottom:696.451867pt;}
.ye3{bottom:701.750267pt;}
.y188{bottom:708.585333pt;}
.y106{bottom:709.233733pt;}
.y3b{bottom:709.363733pt;}
.y5a{bottom:709.569867pt;}
.y166{bottom:709.570133pt;}
.y15{bottom:715.651733pt;}
.ye2{bottom:717.391733pt;}
.y105{bottom:724.280933pt;}
.y187{bottom:724.421333pt;}
.y3a{bottom:725.005067pt;}
.y59{bottom:725.211200pt;}
.y165{bottom:725.211467pt;}
.ye1{bottom:733.033067pt;}
.y14{bottom:738.631333pt;}
.y186{bottom:740.257467pt;}
.y39{bottom:740.646533pt;}
.y58{bottom:740.852533pt;}
.y164{bottom:740.852800pt;}
.y103{bottom:746.887333pt;}
.ye0{bottom:748.674267pt;}
.y102{bottom:753.284000pt;}
.y185{bottom:756.093467pt;}
.y38{bottom:756.287733pt;}
.y57{bottom:756.493867pt;}
.y163{bottom:756.494133pt;}
.y104{bottom:759.680533pt;}
.y13{bottom:761.298000pt;}
.y56{bottom:772.135200pt;}
.ydf{bottom:772.135467pt;}
.y12{bottom:783.964667pt;}
.y37{bottom:787.568800pt;}
.y184{bottom:787.569200pt;}
.y55{bottom:787.776533pt;}
.yde{bottom:787.776800pt;}
.y101{bottom:788.470267pt;}
.y5{bottom:818.104133pt;}
.y149{bottom:828.335733pt;}
.y36{bottom:828.336133pt;}
.ydd{bottom:828.336400pt;}
.y158{bottom:828.342400pt;}
.y4{bottom:834.691333pt;}
.y3{bottom:840.424667pt;}
.y148{bottom:843.977067pt;}
.y54{bottom:843.977333pt;}
.y35{bottom:843.977467pt;}
.ydc{bottom:843.977733pt;}
.y2{bottom:847.352933pt;}
.y7{bottom:851.458400pt;}
.y6{bottom:863.458400pt;}
.h4{height:17.424000pt;}
.hd{height:27.402344pt;}
.h6{height:27.738667pt;}
.hc{height:29.335938pt;}
.h7{height:29.720000pt;}
.h5{height:31.402667pt;}
.h14{height:33.247396pt;}
.h11{height:34.666667pt;}
.hb{height:35.203125pt;}
.ha{height:36.536458pt;}
.h2{height:39.114583pt;}
.he{height:40.190104pt;}
.h18{height:40.218750pt;}
.h1a{height:40.734375pt;}
.h13{height:41.364583pt;}
.hf{height:43.026042pt;}
.h1b{height:44.062500pt;}
.h19{height:45.566394pt;}
.h10{height:45.566927pt;}
.h9{height:46.937500pt;}
.h8{height:55.546875pt;}
.h15{height:58.833529pt;}
.h17{height:58.834063pt;}
.h12{height:69.101562pt;}
.h16{height:84.420196pt;}
.h3{height:93.200000pt;}
.h0{height:907.086667pt;}
.h1{height:907.333333pt;}
.w2{width:70.665333pt;}
.w0{width:642.520000pt;}
.w1{width:642.666667pt;}
.x0{left:0.000000pt;}
.x12{left:2.958267pt;}
.x13{left:32.920667pt;}
.xb{left:98.267733pt;}
.x1{left:100.868000pt;}
.x18{left:109.191733pt;}
.x1d{left:111.468000pt;}
.x2a{left:112.636933pt;}
.x19{left:115.633333pt;}
.x17{left:117.523200pt;}
.xc{left:120.944933pt;}
.x4{left:123.545200pt;}
.x32{left:132.994000pt;}
.x31{left:137.952800pt;}
.x7{left:150.970667pt;}
.x5{left:154.340267pt;}
.x6{left:159.340267pt;}
.xf{left:172.679067pt;}
.xd{left:173.858267pt;}
.x1e{left:183.307067pt;}
.x30{left:197.246000pt;}
.x20{left:200.665467pt;}
.x10{left:204.094533pt;}
.x2b{left:211.780800pt;}
.x1f{left:213.217867pt;}
.x2f{left:216.471600pt;}
.x22{left:260.505867pt;}
.x15{left:263.046933pt;}
.xe{left:268.531067pt;}
.x21{left:273.410800pt;}
.x2c{left:274.303200pt;}
.x16{left:284.211200pt;}
.x11{left:287.204000pt;}
.x24{left:312.157600pt;}
.x23{left:320.654800pt;}
.x9{left:325.644533pt;}
.xa{left:337.972667pt;}
.x14{left:357.870667pt;}
.x26{left:359.401733pt;}
.x25{left:367.898933pt;}
.x2e{left:374.773467pt;}
.x2d{left:387.678533pt;}
.x3{left:392.040667pt;}
.x28{left:406.645733pt;}
.x27{left:415.455733pt;}
.x2{left:463.360800pt;}
.x8{left:480.202533pt;}
.x1b{left:501.156000pt;}
.x1c{left:502.730400pt;}
.x1a{left:503.671200pt;}
.x29{left:506.174000pt;}
}




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