
    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_203480bf9b4bf741170562c8.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.938965;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_fd223ac23f43acae3b5c76f3.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.718262;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_7516a9c5171856e47c39b096.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_7b7ce6676d31ceb5f369c406.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.666504;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_9a76a5ed29ca0398e6da00f3.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_84ad2b0537805d49ab0c8bcd.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_24538adaad2d7caf0801d6f9.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_28677fc18444adc00308ae07.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.112305;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_3418642e0e89975f9a1037a8.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_7ccbea1335ce39dbcdc3b3a4.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_326c68d75ad793c0080dd666.woff2')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_6f95dec984ccb0fedb5d21ae.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_87a2e092160ce442a4dced17.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.097656;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_85de7955c954285f1aa7472d.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.941406;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_83a083e6b4318659ca0e8da1.woff2')format("woff");}.fff{font-family:fff;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url('chunks/assets/font_6dc513d72f0cf406e772a13f.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m3{transform:matrix(0.000000,-0.249778,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.249778,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.249778,0.250000,0.000000,0,0);}
.m5{transform:matrix(0.000000,-0.249778,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.249778,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.249778,0.250000,0.000000,0,0);}
.m4{transform:matrix(0.000000,0.249778,-0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,0.249778,-0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,0.249778,-0.250000,0.000000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.250222,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250222,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250222,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.250222,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250222,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250222,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);}
.v2{vertical-align:-27.360000px;}
.ve{vertical-align:-23.760000px;}
.vb{vertical-align:-14.400000px;}
.v6{vertical-align:-11.520000px;}
.v8{vertical-align:-5.760000px;}
.va{vertical-align:-2.880000px;}
.v0{vertical-align:0.000000px;}
.v5{vertical-align:3.600000px;}
.vc{vertical-align:5.760000px;}
.v9{vertical-align:14.400000px;}
.vd{vertical-align:23.760000px;}
.vf{vertical-align:25.403996px;}
.v1{vertical-align:27.360000px;}
.v7{vertical-align:30.420000px;}
.v4{vertical-align:32.580000px;}
.v3{vertical-align:42.480000px;}
.ls34{letter-spacing:-4.320000px;}
.ls35{letter-spacing:-3.600000px;}
.ls37{letter-spacing:-2.880000px;}
.ls25{letter-spacing:-1.512000px;}
.ls9{letter-spacing:-0.864000px;}
.ls30{letter-spacing:-0.792000px;}
.ls7{letter-spacing:-0.720000px;}
.lsd{letter-spacing:-0.504000px;}
.ls5{letter-spacing:-0.432000px;}
.ls13{letter-spacing:-0.360000px;}
.ls14{letter-spacing:-0.288000px;}
.ls8{letter-spacing:-0.216000px;}
.ls33{letter-spacing:-0.178800px;}
.ls4{letter-spacing:-0.144000px;}
.ls10{letter-spacing:-0.109200px;}
.ls6{letter-spacing:-0.072000px;}
.ls3c{letter-spacing:-0.014824px;}
.lsa{letter-spacing:-0.009600px;}
.ls3{letter-spacing:0.000000px;}
.ls3d{letter-spacing:0.003506px;}
.ls11{letter-spacing:0.072000px;}
.ls2{letter-spacing:0.144000px;}
.ls17{letter-spacing:0.152400px;}
.lse{letter-spacing:0.180000px;}
.ls3b{letter-spacing:0.186892px;}
.ls3a{letter-spacing:0.210515px;}
.ls1b{letter-spacing:0.216000px;}
.ls31{letter-spacing:0.262200px;}
.ls1{letter-spacing:0.288000px;}
.lsc{letter-spacing:0.305400px;}
.lsb{letter-spacing:0.341400px;}
.lsf{letter-spacing:0.360000px;}
.ls15{letter-spacing:0.432000px;}
.ls12{letter-spacing:0.540000px;}
.ls24{letter-spacing:0.576000px;}
.ls32{letter-spacing:0.630720px;}
.ls2c{letter-spacing:0.648000px;}
.ls0{letter-spacing:0.683040px;}
.ls16{letter-spacing:0.720000px;}
.ls2f{letter-spacing:0.792000px;}
.ls1a{letter-spacing:0.864000px;}
.ls23{letter-spacing:0.936000px;}
.ls1f{letter-spacing:1.080000px;}
.ls22{letter-spacing:1.440000px;}
.ls2a{letter-spacing:1.656000px;}
.ls21{letter-spacing:1.728000px;}
.ls1e{letter-spacing:2.088000px;}
.ls2b{letter-spacing:2.160000px;}
.ls39{letter-spacing:2.880000px;}
.ls19{letter-spacing:3.600000px;}
.ls38{letter-spacing:5.040000px;}
.ls18{letter-spacing:6.480000px;}
.ls2e{letter-spacing:8.040000px;}
.ls2d{letter-spacing:8.640000px;}
.ls1c{letter-spacing:12.682800px;}
.ls29{letter-spacing:16.416000px;}
.ls36{letter-spacing:18.720000px;}
.ls26{letter-spacing:19.800000px;}
.ls27{letter-spacing:19.836000px;}
.ls28{letter-spacing:36.385200px;}
.ls1d{letter-spacing:121.428000px;}
.ls20{letter-spacing:330.581520px;}
.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;}
}
.ws3e{word-spacing:-72.000000px;}
.ws28{word-spacing:-26.621280px;}
.ws23{word-spacing:-23.760120px;}
.ws22{word-spacing:-23.418720px;}
.ws21{word-spacing:-23.409120px;}
.ws1{word-spacing:-20.304000px;}
.ws0{word-spacing:-20.160000px;}
.ws4{word-spacing:-20.016000px;}
.ws3{word-spacing:-19.944000px;}
.ws2{word-spacing:-19.872000px;}
.ws7{word-spacing:-19.800000px;}
.ws5{word-spacing:-19.584000px;}
.ws6{word-spacing:-19.296000px;}
.ws8{word-spacing:-19.152000px;}
.ws37{word-spacing:-18.936000px;}
.ws32{word-spacing:-18.864000px;}
.ws40{word-spacing:-18.792000px;}
.ws30{word-spacing:-18.720000px;}
.ws42{word-spacing:-18.676920px;}
.ws3d{word-spacing:-18.648000px;}
.ws38{word-spacing:-18.576000px;}
.ws29{word-spacing:-18.305520px;}
.ws33{word-spacing:-18.216000px;}
.ws26{word-spacing:-18.144000px;}
.ws2a{word-spacing:-18.072000px;}
.ws24{word-spacing:-18.000000px;}
.ws25{word-spacing:-17.856000px;}
.ws3f{word-spacing:-17.784000px;}
.ws2f{word-spacing:-17.712000px;}
.ws27{word-spacing:-17.496000px;}
.ws41{word-spacing:-17.208000px;}
.ws45{word-spacing:-16.704000px;}
.ws39{word-spacing:-16.488000px;}
.ws46{word-spacing:-16.416000px;}
.ws3a{word-spacing:-15.840000px;}
.ws3b{word-spacing:-15.552000px;}
.ws2b{word-spacing:-14.220000px;}
.ws2c{word-spacing:-12.420000px;}
.ws31{word-spacing:-12.212400px;}
.ws2e{word-spacing:-12.060000px;}
.ws2d{word-spacing:-11.700000px;}
.ws44{word-spacing:-11.609280px;}
.ws43{word-spacing:-11.430480px;}
.ws35{word-spacing:-11.246400px;}
.ws36{word-spacing:-9.187200px;}
.ws49{word-spacing:-7.629410px;}
.ws3c{word-spacing:-3.960000px;}
.ws19{word-spacing:-1.584000px;}
.ws20{word-spacing:-1.578000px;}
.ws18{word-spacing:-1.296000px;}
.wsd{word-spacing:-1.152000px;}
.ws11{word-spacing:-1.014000px;}
.ws1f{word-spacing:-1.008000px;}
.ws16{word-spacing:-0.864000px;}
.ws10{word-spacing:-0.858000px;}
.ws17{word-spacing:-0.648000px;}
.wsf{word-spacing:-0.576000px;}
.ws1d{word-spacing:-0.570000px;}
.ws12{word-spacing:-0.432000px;}
.ws9{word-spacing:-0.336960px;}
.ws14{word-spacing:-0.288000px;}
.wsa{word-spacing:-0.144000px;}
.wsc{word-spacing:0.000000px;}
.wse{word-spacing:0.138000px;}
.wsb{word-spacing:0.144000px;}
.ws1b{word-spacing:0.216000px;}
.ws1c{word-spacing:0.360000px;}
.ws13{word-spacing:0.432000px;}
.ws1e{word-spacing:0.576000px;}
.ws15{word-spacing:0.720000px;}
.ws1a{word-spacing:0.798000px;}
.ws34{word-spacing:6.696000px;}
.ws48{word-spacing:147.004355px;}
.ws47{word-spacing:161.186188px;}
._b{margin-left:-5.256000px;}
._c{margin-left:-3.528000px;}
._3{margin-left:-2.410800px;}
._0{margin-left:-1.152000px;}
._1{width:1.050000px;}
._2{width:2.440800px;}
._4{width:3.531600px;}
._8{width:4.836000px;}
._7{width:6.336000px;}
._14{width:7.488000px;}
._d{width:8.784000px;}
._e{width:10.272000px;}
._16{width:11.280000px;}
._9{width:12.288000px;}
._a{width:13.632000px;}
._21{width:14.734800px;}
._10{width:15.768000px;}
._17{width:16.836000px;}
._12{width:19.596000px;}
._13{width:21.384000px;}
._6{width:22.884000px;}
._5{width:23.988000px;}
._f{width:25.020000px;}
._22{width:26.352000px;}
._1c{width:28.224000px;}
._1a{width:29.664000px;}
._11{width:31.536000px;}
._1e{width:32.760000px;}
._1d{width:33.798000px;}
._18{width:34.860000px;}
._15{width:36.072000px;}
._24{width:60.696000px;}
._25{width:62.064000px;}
._23{width:75.168000px;}
._2a{width:104.978480px;}
._20{width:111.168000px;}
._29{width:189.398263px;}
._1f{width:194.376000px;}
._27{width:846.156000px;}
._26{width:847.740000px;}
._28{width:849.756000px;}
._1b{width:1215.549840px;}
._19{width:1376.940000px;}
._2b{width:1969.476000px;}
.fc4{color:transparent;}
.fc3{color:rgb(28,29,30);}
.fc2{color:rgb(77,81,86);}
.fc1{color:rgb(5,99,193);}
.fc0{color:rgb(0,0,0);}
.fse{font-size:27.431306px;}
.fs8{font-size:41.760000px;}
.fsb{font-size:42.661520px;}
.fsa{font-size:42.699392px;}
.fsd{font-size:46.722910px;}
.fs6{font-size:48.240000px;}
.fs9{font-size:50.276627px;}
.fs7{font-size:51.120000px;}
.fs5{font-size:56.880000px;}
.fs3{font-size:59.760000px;}
.fsc{font-size:61.970046px;}
.fsf{font-size:62.533183px;}
.fs2{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.fs0{font-size:84.240000px;}
.fs10{font-size:90.907451px;}
.fs4{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.y171{bottom:2.530923px;}
.y149{bottom:4.140000px;}
.y143{bottom:4.320000px;}
.y152{bottom:11.546363px;}
.y147{bottom:14.940000px;}
.y160{bottom:22.847012px;}
.y14f{bottom:35.293481px;}
.y16d{bottom:44.942667px;}
.y153{bottom:48.877139px;}
.y15c{bottom:54.593546px;}
.y161{bottom:57.004996px;}
.y2f{bottom:57.600000px;}
.y16c{bottom:59.289528px;}
.y15b{bottom:68.938715px;}
.y16b{bottom:73.634697px;}
.y19{bottom:78.300000px;}
.y15a{bottom:83.285576px;}
.y16a{bottom:87.984943px;}
.y162{bottom:91.284822px;}
.y170{bottom:96.239718px;}
.y159{bottom:97.635821px;}
.y169{bottom:102.331803px;}
.y154{bottom:109.950295px;}
.y158{bottom:111.980990px;}
.y168{bottom:118.966581px;}
.y163{bottom:125.439422px;}
.y157{bottom:128.615767px;}
.y138{bottom:131.760000px;}
.y8d{bottom:135.000000px;}
.yc1{bottom:139.140000px;}
.ycf{bottom:142.920000px;}
.ye7{bottom:143.460000px;}
.y16e{bottom:144.358731px;}
.yfd{bottom:145.260000px;}
.y70{bottom:149.760000px;}
.y95{bottom:150.840000px;}
.y109{bottom:151.380000px;}
.y137{bottom:153.000000px;}
.yab{bottom:155.880000px;}
.y150{bottom:156.805200px;}
.y164{bottom:159.724324px;}
.y174{bottom:162.000000px;}
.y5c{bottom:162.360000px;}
.y6d{bottom:166.860000px;}
.y155{bottom:171.023450px;}
.y8c{bottom:176.430000px;}
.y173{bottom:178.410000px;}
.yc0{bottom:180.570000px;}
.ye6{bottom:184.890000px;}
.yfc{bottom:186.690000px;}
.y18{bottom:188.820000px;}
.y108{bottom:189.390000px;}
.yb5{bottom:191.550000px;}
.y82{bottom:192.270000px;}
.y165{bottom:194.004150px;}
.y136{bottom:194.430000px;}
.yce{bottom:196.590000px;}
.yaa{bottom:197.310000px;}
.y6f{bottom:202.350000px;}
.y5b{bottom:203.790000px;}
.y6c{bottom:208.290000px;}
.y17{bottom:209.340000px;}
.y11e{bottom:211.530000px;}
.y15d{bottom:215.207991px;}
.y8b{bottom:217.830000px;}
.y44{bottom:219.090000px;}
.ybf{bottom:221.970000px;}
.y2e{bottom:223.230000px;}
.ye5{bottom:226.290000px;}
.yfb{bottom:228.090000px;}
.y166{bottom:228.162134px;}
.y16{bottom:230.040000px;}
.y156{bottom:232.096606px;}
.yb4{bottom:232.950000px;}
.y81{bottom:233.670000px;}
.y135{bottom:235.830000px;}
.y107{bottom:236.190000px;}
.ycd{bottom:237.990000px;}
.ya9{bottom:238.710000px;}
.y172{bottom:238.828360px;}
.y5a{bottom:245.190000px;}
.y6b{bottom:249.690000px;}
.y15{bottom:250.740000px;}
.y11d{bottom:252.930000px;}
.y15e{bottom:253.808121px;}
.y8a{bottom:259.230000px;}
.y43{bottom:260.490000px;}
.y167{bottom:262.443652px;}
.y2d{bottom:264.630000px;}
.ye4{bottom:267.690000px;}
.yfa{bottom:269.490000px;}
.y14{bottom:271.440000px;}
.ybe{bottom:272.370000px;}
.yb3{bottom:274.170000px;}
.y80{bottom:275.070000px;}
.y134{bottom:277.230000px;}
.y16f{bottom:277.423413px;}
.ycc{bottom:279.390000px;}
.ya8{bottom:280.110000px;}
.y59{bottom:286.590000px;}
.y151{bottom:289.869882px;}
.y6a{bottom:291.090000px;}
.y13{bottom:292.140000px;}
.y11c{bottom:294.330000px;}
.y89{bottom:300.630000px;}
.y42{bottom:301.890000px;}
.y2c{bottom:306.030000px;}
.ye3{bottom:309.090000px;}
.yf9{bottom:310.890000px;}
.y106{bottom:312.150000px;}
.y12{bottom:312.840000px;}
.ybd{bottom:313.770000px;}
.yb2{bottom:315.570000px;}
.yd1{bottom:316.110000px;}
.y7f{bottom:316.470000px;}
.y133{bottom:318.630000px;}
.ycb{bottom:320.790000px;}
.ya7{bottom:321.510000px;}
.y58{bottom:327.990000px;}
.y69{bottom:332.490000px;}
.y11{bottom:333.540000px;}
.y88{bottom:342.030000px;}
.y41{bottom:343.290000px;}
.y11b{bottom:343.650000px;}
.y2b{bottom:347.430000px;}
.y105{bottom:350.130000px;}
.ye2{bottom:350.490000px;}
.yf8{bottom:352.110000px;}
.y10{bottom:354.240000px;}
.ybc{bottom:355.170000px;}
.yb1{bottom:356.970000px;}
.y7e{bottom:357.870000px;}
.y132{bottom:360.030000px;}
.yd0{bottom:361.650000px;}
.yca{bottom:362.190000px;}
.ya6{bottom:362.910000px;}
.y57{bottom:369.390000px;}
.y68{bottom:373.890000px;}
.y40{bottom:384.690000px;}
.y87{bottom:387.030000px;}
.y2a{bottom:388.830000px;}
.ye1{bottom:391.890000px;}
.yf7{bottom:393.510000px;}
.yf{bottom:396.000000px;}
.ybb{bottom:396.570000px;}
.y104{bottom:397.110000px;}
.yb0{bottom:398.730000px;}
.y7d{bottom:399.270000px;}
.y131{bottom:401.430000px;}
.ya5{bottom:404.310000px;}
.y11a{bottom:404.490000px;}
.y56{bottom:410.790000px;}
.yc9{bottom:412.590000px;}
.y67{bottom:415.335000px;}
.ye{bottom:416.700000px;}
.y3f{bottom:426.135000px;}
.y29{bottom:430.275000px;}
.ye0{bottom:433.155000px;}
.yf6{bottom:434.955000px;}
.y103{bottom:435.135000px;}
.y141{bottom:436.575000px;}
.yd{bottom:437.400000px;}
.yba{bottom:438.015000px;}
.y7c{bottom:440.715000px;}
.yaf{bottom:440.895000px;}
.y130{bottom:442.875000px;}
.ya4{bottom:445.755000px;}
.y55{bottom:452.235000px;}
.yc8{bottom:454.035000px;}
.y66{bottom:456.735000px;}
.yc{bottom:458.100000px;}
.y119{bottom:459.435000px;}
.y3e{bottom:467.535000px;}
.y28{bottom:471.675000px;}
.y102{bottom:472.935000px;}
.y140{bottom:473.655000px;}
.yf5{bottom:476.355000px;}
.yb9{bottom:479.415000px;}
.y7b{bottom:482.115000px;}
.yae{bottom:483.195000px;}
.y12f{bottom:484.275000px;}
.ydf{bottom:484.995000px;}
.ya3{bottom:487.155000px;}
.yb{bottom:492.299850px;}
.y54{bottom:493.635000px;}
.yc7{bottom:495.435000px;}
.y65{bottom:498.135000px;}
.y118{bottom:500.835000px;}
.y3d{bottom:508.935000px;}
.y101{bottom:510.915000px;}
.y27{bottom:513.075000px;}
.yf4{bottom:519.015000px;}
.yb8{bottom:520.815000px;}
.y7a{bottom:523.515000px;}
.yad{bottom:524.235000px;}
.y12e{bottom:525.675000px;}
.ya{bottom:526.679850px;}
.ya2{bottom:528.555000px;}
.yde{bottom:529.095000px;}
.yac{bottom:533.235000px;}
.y53{bottom:535.035000px;}
.yc6{bottom:536.655000px;}
.y64{bottom:539.535000px;}
.y117{bottom:542.235000px;}
.y100{bottom:548.895000px;}
.y3c{bottom:550.335000px;}
.y26{bottom:554.475000px;}
.y9{bottom:561.059850px;}
.yf3{bottom:561.855000px;}
.yb7{bottom:563.475000px;}
.y79{bottom:564.915000px;}
.y12d{bottom:567.075000px;}
.ya1{bottom:569.955000px;}
.ydd{bottom:571.935000px;}
.y52{bottom:576.435000px;}
.yc5{bottom:578.055000px;}
.y63{bottom:580.935000px;}
.y8{bottom:583.199850px;}
.y116{bottom:583.455000px;}
.yff{bottom:586.875000px;}
.y3b{bottom:591.735000px;}
.y25{bottom:595.875000px;}
.yf2{bottom:603.255000px;}
.y78{bottom:606.315000px;}
.y12c{bottom:608.475000px;}
.y94{bottom:609.915000px;}
.ya0{bottom:611.355000px;}
.ydc{bottom:613.155000px;}
.y51{bottom:617.655000px;}
.y7{bottom:617.759850px;}
.yc4{bottom:619.455000px;}
.y62{bottom:622.155000px;}
.y14d{bottom:622.695000px;}
.y115{bottom:624.855000px;}
.y3a{bottom:633.135000px;}
.yfe{bottom:635.115000px;}
.y24{bottom:637.275000px;}
.y14c{bottom:643.575000px;}
.yf1{bottom:645.915000px;}
.y77{bottom:647.715000px;}
.y12b{bottom:649.875000px;}
.y6{bottom:652.095000px;}
.y9f{bottom:652.755000px;}
.ydb{bottom:654.555000px;}
.y50{bottom:659.085000px;}
.yc3{bottom:660.885000px;}
.y93{bottom:662.505000px;}
.y61{bottom:663.585000px;}
.y14b{bottom:664.305000px;}
.y114{bottom:666.285000px;}
.y39{bottom:674.565000px;}
.y23{bottom:678.705000px;}
.y5{bottom:686.430000px;}
.yf0{bottom:688.785000px;}
.y76{bottom:689.145000px;}
.y12a{bottom:691.305000px;}
.y9e{bottom:694.185000px;}
.yda{bottom:695.985000px;}
.y4f{bottom:700.485000px;}
.y14a{bottom:701.205000px;}
.yc2{bottom:703.545000px;}
.y60{bottom:704.985000px;}
.y113{bottom:715.605000px;}
.y22{bottom:720.105000px;}
.y4{bottom:720.765000px;}
.y92{bottom:723.345000px;}
.y38{bottom:723.705000px;}
.y75{bottom:730.545000px;}
.yef{bottom:731.445000px;}
.y129{bottom:732.705000px;}
.yb6{bottom:734.145000px;}
.y9d{bottom:735.585000px;}
.yd9{bottom:737.385000px;}
.y4e{bottom:741.885000px;}
.y5f{bottom:746.385000px;}
.y14e{bottom:749.185322px;}
.y17a{bottom:749.625000px;}
.y3{bottom:755.100000px;}
.y15f{bottom:761.321297px;}
.y21{bottom:761.505000px;}
.y91{bottom:764.745000px;}
.y112{bottom:769.425000px;}
.y179{bottom:770.505000px;}
.y74{bottom:771.945000px;}
.y128{bottom:774.105000px;}
.yee{bottom:774.285000px;}
.y9c{bottom:776.805000px;}
.yd8{bottom:778.785000px;}
.y4d{bottom:783.285000px;}
.y37{bottom:784.545000px;}
.y5e{bottom:787.785000px;}
.y178{bottom:791.205000px;}
.y177{bottom:795.705000px;}
.y20{bottom:802.905000px;}
.y90{bottom:807.405000px;}
.y176{bottom:812.085000px;}
.y73{bottom:813.345000px;}
.y17b{bottom:814.065000px;}
.y127{bottom:815.505000px;}
.yed{bottom:815.685000px;}
.y9b{bottom:818.205000px;}
.yd7{bottom:820.185000px;}
.y2{bottom:823.860000px;}
.y4c{bottom:824.685000px;}
.y36{bottom:825.945000px;}
.y5d{bottom:829.185000px;}
.y111{bottom:845.385000px;}
.y8f{bottom:850.245000px;}
.y1f{bottom:852.045000px;}
.y72{bottom:854.745000px;}
.y126{bottom:856.905000px;}
.yec{bottom:857.085000px;}
.y9a{bottom:859.965000px;}
.yd6{bottom:861.585000px;}
.y35{bottom:867.345000px;}
.y4b{bottom:870.585000px;}
.y13f{bottom:890.925000px;}
.y110{bottom:892.185000px;}
.y1{bottom:892.440000px;}
.y8e{bottom:895.245000px;}
.y86{bottom:896.145000px;}
.y97{bottom:897.945000px;}
.y125{bottom:898.305000px;}
.yeb{bottom:898.485000px;}
.y99{bottom:899.385000px;}
.y71{bottom:899.745000px;}
.yd5{bottom:903.030000px;}
.y96{bottom:906.990000px;}
.y1e{bottom:908.790000px;}
.y4a{bottom:912.030000px;}
.y98{bottom:917.970000px;}
.y10f{bottom:930.210000px;}
.y13e{bottom:932.370000px;}
.y85{bottom:937.590000px;}
.y124{bottom:939.750000px;}
.yea{bottom:939.930000px;}
.yd4{bottom:944.430000px;}
.y34{bottom:950.190000px;}
.y120{bottom:953.250000px;}
.y49{bottom:953.430000px;}
.y146{bottom:954.690000px;}
.y1d{bottom:958.650000px;}
.y10e{bottom:968.190000px;}
.y13d{bottom:973.770000px;}
.y148{bottom:975.930000px;}
.y84{bottom:978.990000px;}
.y123{bottom:981.150000px;}
.ye9{bottom:981.330000px;}
.yd3{bottom:985.830000px;}
.y33{bottom:991.590000px;}
.y11f{bottom:994.650000px;}
.y48{bottom:994.830000px;}
.y145{bottom:997.350000px;}
.y10d{bottom:1006.170000px;}
.y1c{bottom:1010.130000px;}
.y13c{bottom:1015.170000px;}
.y144{bottom:1018.770000px;}
.y32{bottom:1020.570000px;}
.ye8{bottom:1022.370000px;}
.y122{bottom:1022.550000px;}
.y83{bottom:1023.990000px;}
.yd2{bottom:1027.230000px;}
.y47{bottom:1036.230000px;}
.y142{bottom:1040.190000px;}
.y10c{bottom:1044.150000px;}
.y13b{bottom:1056.930000px;}
.y31{bottom:1063.950000px;}
.y1b{bottom:1067.550000px;}
.y13a{bottom:1077.270000px;}
.y46{bottom:1077.630000px;}
.y10b{bottom:1081.950000px;}
.y6e{bottom:1084.470000px;}
.y175{bottom:1098.330000px;}
.y121{bottom:1113.090000px;}
.y30{bottom:1113.270000px;}
.y1a{bottom:1115.790000px;}
.y139{bottom:1118.670000px;}
.y45{bottom:1119.030000px;}
.y10a{bottom:1119.930000px;}
.h1a{height:20.520000px;}
.h18{height:20.700000px;}
.h19{height:41.940000px;}
.h1e{height:44.494632px;}
.h1d{height:44.534132px;}
.h13{height:44.829844px;}
.he{height:47.344922px;}
.h17{height:48.418594px;}
.h20{height:48.730535px;}
.h5{height:52.417969px;}
.h1c{height:52.436950px;}
.h4{height:52.452525px;}
.h3{height:52.453125px;}
.h24{height:54.007222px;}
.h21{height:54.013991px;}
.h9{height:58.651172px;}
.h2{height:61.370156px;}
.h1f{height:64.632821px;}
.h22{height:65.220156px;}
.h8{height:69.086250px;}
.hb{height:70.628906px;}
.h6{height:70.664062px;}
.h10{height:72.562500px;}
.hc{height:74.704922px;}
.hd{height:74.884922px;}
.hf{height:84.898125px;}
.h11{height:87.309844px;}
.h7{height:87.859687px;}
.h15{height:90.189844px;}
.h23{height:94.813631px;}
.ha{height:99.874688px;}
.h14{height:101.084063px;}
.h12{height:102.200625px;}
.h16{height:106.664062px;}
.h1b{height:314.754358px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w6{width:105.696000px;}
.w4{width:106.020000px;}
.w5{width:126.936000px;}
.w3{width:158.790000px;}
.w8{width:438.024965px;}
.w7{width:445.752214px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1a{left:7.740000px;}
.x17{left:9.750000px;}
.x20{left:17.640000px;}
.x19{left:24.480000px;}
.x1e{left:25.920000px;}
.x1d{left:30.600000px;}
.x15{left:33.480000px;}
.x32{left:41.066279px;}
.x1f{left:42.510000px;}
.x1b{left:44.820000px;}
.x2e{left:50.851062px;}
.x1c{left:53.130000px;}
.x21{left:55.290000px;}
.x2d{left:57.837775px;}
.x25{left:68.618837px;}
.x13{left:79.380000px;}
.x24{left:87.041748px;}
.x3{left:127.620000px;}
.x5{left:131.256000px;}
.x8{left:148.896000px;}
.x1{left:168.478800px;}
.x2f{left:171.564496px;}
.x6{left:174.090000px;}
.x2a{left:179.291734px;}
.x9{left:180.749987px;}
.x33{left:183.127718px;}
.x7{left:187.230000px;}
.x28{left:194.538868px;}
.x12{left:196.770000px;}
.xe{left:202.169987px;}
.x31{left:222.647937px;}
.x27{left:230.375164px;}
.xa{left:241.049987px;}
.xc{left:263.189987px;}
.xb{left:266.789987px;}
.x2{left:277.740000px;}
.xf{left:295.814987px;}
.x14{left:356.295000px;}
.x2c{left:358.837499px;}
.x29{left:390.984861px;}
.x30{left:392.788335px;}
.x26{left:400.515571px;}
.x2b{left:414.748131px;}
.x23{left:423.462361px;}
.x10{left:446.474987px;}
.x16{left:463.035000px;}
.x18{left:590.685000px;}
.xd{left:747.509987px;}
.x4{left:756.510000px;}
.x34{left:765.509987px;}
.x35{left:831.929987px;}
.x36{left:853.199987px;}
.x37{left:856.799987px;}
.x11{left:961.199987px;}
.x22{left:964.259987px;}
@media print{
.v2{vertical-align:-24.320000pt;}
.ve{vertical-align:-21.120000pt;}
.vb{vertical-align:-12.800000pt;}
.v6{vertical-align:-10.240000pt;}
.v8{vertical-align:-5.120000pt;}
.va{vertical-align:-2.560000pt;}
.v0{vertical-align:0.000000pt;}
.v5{vertical-align:3.200000pt;}
.vc{vertical-align:5.120000pt;}
.v9{vertical-align:12.800000pt;}
.vd{vertical-align:21.120000pt;}
.vf{vertical-align:22.581330pt;}
.v1{vertical-align:24.320000pt;}
.v7{vertical-align:27.040000pt;}
.v4{vertical-align:28.960000pt;}
.v3{vertical-align:37.760000pt;}
.ls34{letter-spacing:-3.840000pt;}
.ls35{letter-spacing:-3.200000pt;}
.ls37{letter-spacing:-2.560000pt;}
.ls25{letter-spacing:-1.344000pt;}
.ls9{letter-spacing:-0.768000pt;}
.ls30{letter-spacing:-0.704000pt;}
.ls7{letter-spacing:-0.640000pt;}
.lsd{letter-spacing:-0.448000pt;}
.ls5{letter-spacing:-0.384000pt;}
.ls13{letter-spacing:-0.320000pt;}
.ls14{letter-spacing:-0.256000pt;}
.ls8{letter-spacing:-0.192000pt;}
.ls33{letter-spacing:-0.158933pt;}
.ls4{letter-spacing:-0.128000pt;}
.ls10{letter-spacing:-0.097067pt;}
.ls6{letter-spacing:-0.064000pt;}
.ls3c{letter-spacing:-0.013177pt;}
.lsa{letter-spacing:-0.008533pt;}
.ls3{letter-spacing:0.000000pt;}
.ls3d{letter-spacing:0.003117pt;}
.ls11{letter-spacing:0.064000pt;}
.ls2{letter-spacing:0.128000pt;}
.ls17{letter-spacing:0.135467pt;}
.lse{letter-spacing:0.160000pt;}
.ls3b{letter-spacing:0.166126pt;}
.ls3a{letter-spacing:0.187125pt;}
.ls1b{letter-spacing:0.192000pt;}
.ls31{letter-spacing:0.233067pt;}
.ls1{letter-spacing:0.256000pt;}
.lsc{letter-spacing:0.271467pt;}
.lsb{letter-spacing:0.303467pt;}
.lsf{letter-spacing:0.320000pt;}
.ls15{letter-spacing:0.384000pt;}
.ls12{letter-spacing:0.480000pt;}
.ls24{letter-spacing:0.512000pt;}
.ls32{letter-spacing:0.560640pt;}
.ls2c{letter-spacing:0.576000pt;}
.ls0{letter-spacing:0.607147pt;}
.ls16{letter-spacing:0.640000pt;}
.ls2f{letter-spacing:0.704000pt;}
.ls1a{letter-spacing:0.768000pt;}
.ls23{letter-spacing:0.832000pt;}
.ls1f{letter-spacing:0.960000pt;}
.ls22{letter-spacing:1.280000pt;}
.ls2a{letter-spacing:1.472000pt;}
.ls21{letter-spacing:1.536000pt;}
.ls1e{letter-spacing:1.856000pt;}
.ls2b{letter-spacing:1.920000pt;}
.ls39{letter-spacing:2.560000pt;}
.ls19{letter-spacing:3.200000pt;}
.ls38{letter-spacing:4.480000pt;}
.ls18{letter-spacing:5.760000pt;}
.ls2e{letter-spacing:7.146667pt;}
.ls2d{letter-spacing:7.680000pt;}
.ls1c{letter-spacing:11.273600pt;}
.ls29{letter-spacing:14.592000pt;}
.ls36{letter-spacing:16.640000pt;}
.ls26{letter-spacing:17.600000pt;}
.ls27{letter-spacing:17.632000pt;}
.ls28{letter-spacing:32.342400pt;}
.ls1d{letter-spacing:107.936000pt;}
.ls20{letter-spacing:293.850240pt;}
.ws3e{word-spacing:-64.000000pt;}
.ws28{word-spacing:-23.663360pt;}
.ws23{word-spacing:-21.120107pt;}
.ws22{word-spacing:-20.816640pt;}
.ws21{word-spacing:-20.808107pt;}
.ws1{word-spacing:-18.048000pt;}
.ws0{word-spacing:-17.920000pt;}
.ws4{word-spacing:-17.792000pt;}
.ws3{word-spacing:-17.728000pt;}
.ws2{word-spacing:-17.664000pt;}
.ws7{word-spacing:-17.600000pt;}
.ws5{word-spacing:-17.408000pt;}
.ws6{word-spacing:-17.152000pt;}
.ws8{word-spacing:-17.024000pt;}
.ws37{word-spacing:-16.832000pt;}
.ws32{word-spacing:-16.768000pt;}
.ws40{word-spacing:-16.704000pt;}
.ws30{word-spacing:-16.640000pt;}
.ws42{word-spacing:-16.601707pt;}
.ws3d{word-spacing:-16.576000pt;}
.ws38{word-spacing:-16.512000pt;}
.ws29{word-spacing:-16.271573pt;}
.ws33{word-spacing:-16.192000pt;}
.ws26{word-spacing:-16.128000pt;}
.ws2a{word-spacing:-16.064000pt;}
.ws24{word-spacing:-16.000000pt;}
.ws25{word-spacing:-15.872000pt;}
.ws3f{word-spacing:-15.808000pt;}
.ws2f{word-spacing:-15.744000pt;}
.ws27{word-spacing:-15.552000pt;}
.ws41{word-spacing:-15.296000pt;}
.ws45{word-spacing:-14.848000pt;}
.ws39{word-spacing:-14.656000pt;}
.ws46{word-spacing:-14.592000pt;}
.ws3a{word-spacing:-14.080000pt;}
.ws3b{word-spacing:-13.824000pt;}
.ws2b{word-spacing:-12.640000pt;}
.ws2c{word-spacing:-11.040000pt;}
.ws31{word-spacing:-10.855467pt;}
.ws2e{word-spacing:-10.720000pt;}
.ws2d{word-spacing:-10.400000pt;}
.ws44{word-spacing:-10.319360pt;}
.ws43{word-spacing:-10.160427pt;}
.ws35{word-spacing:-9.996800pt;}
.ws36{word-spacing:-8.166400pt;}
.ws49{word-spacing:-6.781697pt;}
.ws3c{word-spacing:-3.520000pt;}
.ws19{word-spacing:-1.408000pt;}
.ws20{word-spacing:-1.402667pt;}
.ws18{word-spacing:-1.152000pt;}
.wsd{word-spacing:-1.024000pt;}
.ws11{word-spacing:-0.901333pt;}
.ws1f{word-spacing:-0.896000pt;}
.ws16{word-spacing:-0.768000pt;}
.ws10{word-spacing:-0.762667pt;}
.ws17{word-spacing:-0.576000pt;}
.wsf{word-spacing:-0.512000pt;}
.ws1d{word-spacing:-0.506667pt;}
.ws12{word-spacing:-0.384000pt;}
.ws9{word-spacing:-0.299520pt;}
.ws14{word-spacing:-0.256000pt;}
.wsa{word-spacing:-0.128000pt;}
.wsc{word-spacing:0.000000pt;}
.wse{word-spacing:0.122667pt;}
.wsb{word-spacing:0.128000pt;}
.ws1b{word-spacing:0.192000pt;}
.ws1c{word-spacing:0.320000pt;}
.ws13{word-spacing:0.384000pt;}
.ws1e{word-spacing:0.512000pt;}
.ws15{word-spacing:0.640000pt;}
.ws1a{word-spacing:0.709333pt;}
.ws34{word-spacing:5.952000pt;}
.ws48{word-spacing:130.670537pt;}
.ws47{word-spacing:143.276611pt;}
._b{margin-left:-4.672000pt;}
._c{margin-left:-3.136000pt;}
._3{margin-left:-2.142933pt;}
._0{margin-left:-1.024000pt;}
._1{width:0.933333pt;}
._2{width:2.169600pt;}
._4{width:3.139200pt;}
._8{width:4.298667pt;}
._7{width:5.632000pt;}
._14{width:6.656000pt;}
._d{width:7.808000pt;}
._e{width:9.130667pt;}
._16{width:10.026667pt;}
._9{width:10.922667pt;}
._a{width:12.117333pt;}
._21{width:13.097600pt;}
._10{width:14.016000pt;}
._17{width:14.965333pt;}
._12{width:17.418667pt;}
._13{width:19.008000pt;}
._6{width:20.341333pt;}
._5{width:21.322667pt;}
._f{width:22.240000pt;}
._22{width:23.424000pt;}
._1c{width:25.088000pt;}
._1a{width:26.368000pt;}
._11{width:28.032000pt;}
._1e{width:29.120000pt;}
._1d{width:30.042667pt;}
._18{width:30.986667pt;}
._15{width:32.064000pt;}
._24{width:53.952000pt;}
._25{width:55.168000pt;}
._23{width:66.816000pt;}
._2a{width:93.314204pt;}
._20{width:98.816000pt;}
._29{width:168.354011pt;}
._1f{width:172.778667pt;}
._27{width:752.138667pt;}
._26{width:753.546667pt;}
._28{width:755.338667pt;}
._1b{width:1080.488747pt;}
._19{width:1223.946667pt;}
._2b{width:1750.645333pt;}
.fse{font-size:24.383384pt;}
.fs8{font-size:37.120000pt;}
.fsb{font-size:37.921351pt;}
.fsa{font-size:37.955015pt;}
.fsd{font-size:41.531476pt;}
.fs6{font-size:42.880000pt;}
.fs9{font-size:44.690335pt;}
.fs7{font-size:45.440000pt;}
.fs5{font-size:50.560000pt;}
.fs3{font-size:53.120000pt;}
.fsc{font-size:55.084485pt;}
.fsf{font-size:55.585052pt;}
.fs2{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.fs0{font-size:74.880000pt;}
.fs10{font-size:80.806623pt;}
.fs4{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.y171{bottom:2.249709pt;}
.y149{bottom:3.680000pt;}
.y143{bottom:3.840000pt;}
.y152{bottom:10.263434pt;}
.y147{bottom:13.280000pt;}
.y160{bottom:20.308455pt;}
.y14f{bottom:31.371983pt;}
.y16d{bottom:39.949038pt;}
.y153{bottom:43.446346pt;}
.y15c{bottom:48.527596pt;}
.y161{bottom:50.671108pt;}
.y2f{bottom:51.200000pt;}
.y16c{bottom:52.701803pt;}
.y15b{bottom:61.278857pt;}
.y16b{bottom:65.453064pt;}
.y19{bottom:69.600000pt;}
.y15a{bottom:74.031623pt;}
.y16a{bottom:78.208838pt;}
.y162{bottom:81.142064pt;}
.y170{bottom:85.546416pt;}
.y159{bottom:86.787396pt;}
.y169{bottom:90.961603pt;}
.y154{bottom:97.733595pt;}
.y158{bottom:99.538658pt;}
.y168{bottom:105.748072pt;}
.y163{bottom:111.501708pt;}
.y157{bottom:114.325126pt;}
.y138{bottom:117.120000pt;}
.y8d{bottom:120.000000pt;}
.yc1{bottom:123.680000pt;}
.ycf{bottom:127.040000pt;}
.ye7{bottom:127.520000pt;}
.y16e{bottom:128.318872pt;}
.yfd{bottom:129.120000pt;}
.y70{bottom:133.120000pt;}
.y95{bottom:134.080000pt;}
.y109{bottom:134.560000pt;}
.y137{bottom:136.000000pt;}
.yab{bottom:138.560000pt;}
.y150{bottom:139.382400pt;}
.y164{bottom:141.977177pt;}
.y174{bottom:144.000000pt;}
.y5c{bottom:144.320000pt;}
.y6d{bottom:148.320000pt;}
.y155{bottom:152.020845pt;}
.y8c{bottom:156.826667pt;}
.y173{bottom:158.586667pt;}
.yc0{bottom:160.506667pt;}
.ye6{bottom:164.346667pt;}
.yfc{bottom:165.946667pt;}
.y18{bottom:167.840000pt;}
.y108{bottom:168.346667pt;}
.yb5{bottom:170.266667pt;}
.y82{bottom:170.906667pt;}
.y165{bottom:172.448133pt;}
.y136{bottom:172.826667pt;}
.yce{bottom:174.746667pt;}
.yaa{bottom:175.386667pt;}
.y6f{bottom:179.866667pt;}
.y5b{bottom:181.146667pt;}
.y6c{bottom:185.146667pt;}
.y17{bottom:186.080000pt;}
.y11e{bottom:188.026667pt;}
.y15d{bottom:191.295992pt;}
.y8b{bottom:193.626667pt;}
.y44{bottom:194.746667pt;}
.ybf{bottom:197.306667pt;}
.y2e{bottom:198.426667pt;}
.ye5{bottom:201.146667pt;}
.yfb{bottom:202.746667pt;}
.y166{bottom:202.810786pt;}
.y16{bottom:204.480000pt;}
.y156{bottom:206.308094pt;}
.yb4{bottom:207.066667pt;}
.y81{bottom:207.706667pt;}
.y135{bottom:209.626667pt;}
.y107{bottom:209.946667pt;}
.ycd{bottom:211.546667pt;}
.ya9{bottom:212.186667pt;}
.y172{bottom:212.291876pt;}
.y5a{bottom:217.946667pt;}
.y6b{bottom:221.946667pt;}
.y15{bottom:222.880000pt;}
.y11d{bottom:224.826667pt;}
.y15e{bottom:225.607219pt;}
.y8a{bottom:230.426667pt;}
.y43{bottom:231.546667pt;}
.y167{bottom:233.283246pt;}
.y2d{bottom:235.226667pt;}
.ye4{bottom:237.946667pt;}
.yfa{bottom:239.546667pt;}
.y14{bottom:241.280000pt;}
.ybe{bottom:242.106667pt;}
.yb3{bottom:243.706667pt;}
.y80{bottom:244.506667pt;}
.y134{bottom:246.426667pt;}
.y16f{bottom:246.598589pt;}
.ycc{bottom:248.346667pt;}
.ya8{bottom:248.986667pt;}
.y59{bottom:254.746667pt;}
.y151{bottom:257.662117pt;}
.y6a{bottom:258.746667pt;}
.y13{bottom:259.680000pt;}
.y11c{bottom:261.626667pt;}
.y89{bottom:267.226667pt;}
.y42{bottom:268.346667pt;}
.y2c{bottom:272.026667pt;}
.ye3{bottom:274.746667pt;}
.yf9{bottom:276.346667pt;}
.y106{bottom:277.466667pt;}
.y12{bottom:278.080000pt;}
.ybd{bottom:278.906667pt;}
.yb2{bottom:280.506667pt;}
.yd1{bottom:280.986667pt;}
.y7f{bottom:281.306667pt;}
.y133{bottom:283.226667pt;}
.ycb{bottom:285.146667pt;}
.ya7{bottom:285.786667pt;}
.y58{bottom:291.546667pt;}
.y69{bottom:295.546667pt;}
.y11{bottom:296.480000pt;}
.y88{bottom:304.026667pt;}
.y41{bottom:305.146667pt;}
.y11b{bottom:305.466667pt;}
.y2b{bottom:308.826667pt;}
.y105{bottom:311.226667pt;}
.ye2{bottom:311.546667pt;}
.yf8{bottom:312.986667pt;}
.y10{bottom:314.880000pt;}
.ybc{bottom:315.706667pt;}
.yb1{bottom:317.306667pt;}
.y7e{bottom:318.106667pt;}
.y132{bottom:320.026667pt;}
.yd0{bottom:321.466667pt;}
.yca{bottom:321.946667pt;}
.ya6{bottom:322.586667pt;}
.y57{bottom:328.346667pt;}
.y68{bottom:332.346667pt;}
.y40{bottom:341.946667pt;}
.y87{bottom:344.026667pt;}
.y2a{bottom:345.626667pt;}
.ye1{bottom:348.346667pt;}
.yf7{bottom:349.786667pt;}
.yf{bottom:352.000000pt;}
.ybb{bottom:352.506667pt;}
.y104{bottom:352.986667pt;}
.yb0{bottom:354.426667pt;}
.y7d{bottom:354.906667pt;}
.y131{bottom:356.826667pt;}
.ya5{bottom:359.386667pt;}
.y11a{bottom:359.546667pt;}
.y56{bottom:365.146667pt;}
.yc9{bottom:366.746667pt;}
.y67{bottom:369.186667pt;}
.ye{bottom:370.400000pt;}
.y3f{bottom:378.786667pt;}
.y29{bottom:382.466667pt;}
.ye0{bottom:385.026667pt;}
.yf6{bottom:386.626667pt;}
.y103{bottom:386.786667pt;}
.y141{bottom:388.066667pt;}
.yd{bottom:388.800000pt;}
.yba{bottom:389.346667pt;}
.y7c{bottom:391.746667pt;}
.yaf{bottom:391.906667pt;}
.y130{bottom:393.666667pt;}
.ya4{bottom:396.226667pt;}
.y55{bottom:401.986667pt;}
.yc8{bottom:403.586667pt;}
.y66{bottom:405.986667pt;}
.yc{bottom:407.200000pt;}
.y119{bottom:408.386667pt;}
.y3e{bottom:415.586667pt;}
.y28{bottom:419.266667pt;}
.y102{bottom:420.386667pt;}
.y140{bottom:421.026667pt;}
.yf5{bottom:423.426667pt;}
.yb9{bottom:426.146667pt;}
.y7b{bottom:428.546667pt;}
.yae{bottom:429.506667pt;}
.y12f{bottom:430.466667pt;}
.ydf{bottom:431.106667pt;}
.ya3{bottom:433.026667pt;}
.yb{bottom:437.599867pt;}
.y54{bottom:438.786667pt;}
.yc7{bottom:440.386667pt;}
.y65{bottom:442.786667pt;}
.y118{bottom:445.186667pt;}
.y3d{bottom:452.386667pt;}
.y101{bottom:454.146667pt;}
.y27{bottom:456.066667pt;}
.yf4{bottom:461.346667pt;}
.yb8{bottom:462.946667pt;}
.y7a{bottom:465.346667pt;}
.yad{bottom:465.986667pt;}
.y12e{bottom:467.266667pt;}
.ya{bottom:468.159867pt;}
.ya2{bottom:469.826667pt;}
.yde{bottom:470.306667pt;}
.yac{bottom:473.986667pt;}
.y53{bottom:475.586667pt;}
.yc6{bottom:477.026667pt;}
.y64{bottom:479.586667pt;}
.y117{bottom:481.986667pt;}
.y100{bottom:487.906667pt;}
.y3c{bottom:489.186667pt;}
.y26{bottom:492.866667pt;}
.y9{bottom:498.719867pt;}
.yf3{bottom:499.426667pt;}
.yb7{bottom:500.866667pt;}
.y79{bottom:502.146667pt;}
.y12d{bottom:504.066667pt;}
.ya1{bottom:506.626667pt;}
.ydd{bottom:508.386667pt;}
.y52{bottom:512.386667pt;}
.yc5{bottom:513.826667pt;}
.y63{bottom:516.386667pt;}
.y8{bottom:518.399867pt;}
.y116{bottom:518.626667pt;}
.yff{bottom:521.666667pt;}
.y3b{bottom:525.986667pt;}
.y25{bottom:529.666667pt;}
.yf2{bottom:536.226667pt;}
.y78{bottom:538.946667pt;}
.y12c{bottom:540.866667pt;}
.y94{bottom:542.146667pt;}
.ya0{bottom:543.426667pt;}
.ydc{bottom:545.026667pt;}
.y51{bottom:549.026667pt;}
.y7{bottom:549.119867pt;}
.yc4{bottom:550.626667pt;}
.y62{bottom:553.026667pt;}
.y14d{bottom:553.506667pt;}
.y115{bottom:555.426667pt;}
.y3a{bottom:562.786667pt;}
.yfe{bottom:564.546667pt;}
.y24{bottom:566.466667pt;}
.y14c{bottom:572.066667pt;}
.yf1{bottom:574.146667pt;}
.y77{bottom:575.746667pt;}
.y12b{bottom:577.666667pt;}
.y6{bottom:579.640000pt;}
.y9f{bottom:580.226667pt;}
.ydb{bottom:581.826667pt;}
.y50{bottom:585.853333pt;}
.yc3{bottom:587.453333pt;}
.y93{bottom:588.893333pt;}
.y61{bottom:589.853333pt;}
.y14b{bottom:590.493333pt;}
.y114{bottom:592.253333pt;}
.y39{bottom:599.613333pt;}
.y23{bottom:603.293333pt;}
.y5{bottom:610.160000pt;}
.yf0{bottom:612.253333pt;}
.y76{bottom:612.573333pt;}
.y12a{bottom:614.493333pt;}
.y9e{bottom:617.053333pt;}
.yda{bottom:618.653333pt;}
.y4f{bottom:622.653333pt;}
.y14a{bottom:623.293333pt;}
.yc2{bottom:625.373333pt;}
.y60{bottom:626.653333pt;}
.y113{bottom:636.093333pt;}
.y22{bottom:640.093333pt;}
.y4{bottom:640.680000pt;}
.y92{bottom:642.973333pt;}
.y38{bottom:643.293333pt;}
.y75{bottom:649.373333pt;}
.yef{bottom:650.173333pt;}
.y129{bottom:651.293333pt;}
.yb6{bottom:652.573333pt;}
.y9d{bottom:653.853333pt;}
.yd9{bottom:655.453333pt;}
.y4e{bottom:659.453333pt;}
.y5f{bottom:663.453333pt;}
.y14e{bottom:665.942508pt;}
.y17a{bottom:666.333333pt;}
.y3{bottom:671.200000pt;}
.y15f{bottom:676.730042pt;}
.y21{bottom:676.893333pt;}
.y91{bottom:679.773333pt;}
.y112{bottom:683.933333pt;}
.y179{bottom:684.893333pt;}
.y74{bottom:686.173333pt;}
.y128{bottom:688.093333pt;}
.yee{bottom:688.253333pt;}
.y9c{bottom:690.493333pt;}
.yd8{bottom:692.253333pt;}
.y4d{bottom:696.253333pt;}
.y37{bottom:697.373333pt;}
.y5e{bottom:700.253333pt;}
.y178{bottom:703.293333pt;}
.y177{bottom:707.293333pt;}
.y20{bottom:713.693333pt;}
.y90{bottom:717.693333pt;}
.y176{bottom:721.853333pt;}
.y73{bottom:722.973333pt;}
.y17b{bottom:723.613333pt;}
.y127{bottom:724.893333pt;}
.yed{bottom:725.053333pt;}
.y9b{bottom:727.293333pt;}
.yd7{bottom:729.053333pt;}
.y2{bottom:732.320000pt;}
.y4c{bottom:733.053333pt;}
.y36{bottom:734.173333pt;}
.y5d{bottom:737.053333pt;}
.y111{bottom:751.453333pt;}
.y8f{bottom:755.773333pt;}
.y1f{bottom:757.373333pt;}
.y72{bottom:759.773333pt;}
.y126{bottom:761.693333pt;}
.yec{bottom:761.853333pt;}
.y9a{bottom:764.413333pt;}
.yd6{bottom:765.853333pt;}
.y35{bottom:770.973333pt;}
.y4b{bottom:773.853333pt;}
.y13f{bottom:791.933333pt;}
.y110{bottom:793.053333pt;}
.y1{bottom:793.280000pt;}
.y8e{bottom:795.773333pt;}
.y86{bottom:796.573333pt;}
.y97{bottom:798.173333pt;}
.y125{bottom:798.493333pt;}
.yeb{bottom:798.653333pt;}
.y99{bottom:799.453333pt;}
.y71{bottom:799.773333pt;}
.yd5{bottom:802.693333pt;}
.y96{bottom:806.213333pt;}
.y1e{bottom:807.813333pt;}
.y4a{bottom:810.693333pt;}
.y98{bottom:815.973333pt;}
.y10f{bottom:826.853333pt;}
.y13e{bottom:828.773333pt;}
.y85{bottom:833.413333pt;}
.y124{bottom:835.333333pt;}
.yea{bottom:835.493333pt;}
.yd4{bottom:839.493333pt;}
.y34{bottom:844.613333pt;}
.y120{bottom:847.333333pt;}
.y49{bottom:847.493333pt;}
.y146{bottom:848.613333pt;}
.y1d{bottom:852.133333pt;}
.y10e{bottom:860.613333pt;}
.y13d{bottom:865.573333pt;}
.y148{bottom:867.493333pt;}
.y84{bottom:870.213333pt;}
.y123{bottom:872.133333pt;}
.ye9{bottom:872.293333pt;}
.yd3{bottom:876.293333pt;}
.y33{bottom:881.413333pt;}
.y11f{bottom:884.133333pt;}
.y48{bottom:884.293333pt;}
.y145{bottom:886.533333pt;}
.y10d{bottom:894.373333pt;}
.y1c{bottom:897.893333pt;}
.y13c{bottom:902.373333pt;}
.y144{bottom:905.573333pt;}
.y32{bottom:907.173333pt;}
.ye8{bottom:908.773333pt;}
.y122{bottom:908.933333pt;}
.y83{bottom:910.213333pt;}
.yd2{bottom:913.093333pt;}
.y47{bottom:921.093333pt;}
.y142{bottom:924.613333pt;}
.y10c{bottom:928.133333pt;}
.y13b{bottom:939.493333pt;}
.y31{bottom:945.733333pt;}
.y1b{bottom:948.933333pt;}
.y13a{bottom:957.573333pt;}
.y46{bottom:957.893333pt;}
.y10b{bottom:961.733333pt;}
.y6e{bottom:963.973333pt;}
.y175{bottom:976.293333pt;}
.y121{bottom:989.413333pt;}
.y30{bottom:989.573333pt;}
.y1a{bottom:991.813333pt;}
.y139{bottom:994.373333pt;}
.y45{bottom:994.693333pt;}
.y10a{bottom:995.493333pt;}
.h1a{height:18.240000pt;}
.h18{height:18.400000pt;}
.h19{height:37.280000pt;}
.h1e{height:39.550784pt;}
.h1d{height:39.585895pt;}
.h13{height:39.848750pt;}
.he{height:42.084375pt;}
.h17{height:43.038750pt;}
.h20{height:43.316031pt;}
.h5{height:46.593750pt;}
.h1c{height:46.610622pt;}
.h4{height:46.624467pt;}
.h3{height:46.625000pt;}
.h24{height:48.006420pt;}
.h21{height:48.012437pt;}
.h9{height:52.134375pt;}
.h2{height:54.551250pt;}
.h1f{height:57.451397pt;}
.h22{height:57.973472pt;}
.h8{height:61.410000pt;}
.hb{height:62.781250pt;}
.h6{height:62.812500pt;}
.h10{height:64.500000pt;}
.hc{height:66.404375pt;}
.hd{height:66.564375pt;}
.hf{height:75.465000pt;}
.h11{height:77.608750pt;}
.h7{height:78.097500pt;}
.h15{height:80.168750pt;}
.h23{height:84.278783pt;}
.ha{height:88.777500pt;}
.h14{height:89.852500pt;}
.h12{height:90.845000pt;}
.h16{height:94.812500pt;}
.h1b{height:279.781652pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w6{width:93.952000pt;}
.w4{width:94.240000pt;}
.w5{width:112.832000pt;}
.w3{width:141.146667pt;}
.w8{width:389.355525pt;}
.w7{width:396.224190pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1a{left:6.880000pt;}
.x17{left:8.666667pt;}
.x20{left:15.680000pt;}
.x19{left:21.760000pt;}
.x1e{left:23.040000pt;}
.x1d{left:27.200000pt;}
.x15{left:29.760000pt;}
.x32{left:36.503359pt;}
.x1f{left:37.786667pt;}
.x1b{left:39.840000pt;}
.x2e{left:45.200944pt;}
.x1c{left:47.226667pt;}
.x21{left:49.146667pt;}
.x2d{left:51.411355pt;}
.x25{left:60.994522pt;}
.x13{left:70.560000pt;}
.x24{left:77.370443pt;}
.x3{left:113.440000pt;}
.x5{left:116.672000pt;}
.x8{left:132.352000pt;}
.x1{left:149.758933pt;}
.x2f{left:152.501774pt;}
.x6{left:154.746667pt;}
.x2a{left:159.370431pt;}
.x9{left:160.666655pt;}
.x33{left:162.780194pt;}
.x7{left:166.426667pt;}
.x28{left:172.923438pt;}
.x12{left:174.906667pt;}
.xe{left:179.706655pt;}
.x31{left:197.909278pt;}
.x27{left:204.777923pt;}
.xa{left:214.266655pt;}
.xc{left:233.946655pt;}
.xb{left:237.146655pt;}
.x2{left:246.880000pt;}
.xf{left:262.946655pt;}
.x14{left:316.706667pt;}
.x2c{left:318.966666pt;}
.x29{left:347.542099pt;}
.x30{left:349.145187pt;}
.x26{left:356.013841pt;}
.x2b{left:368.665006pt;}
.x23{left:376.410987pt;}
.x10{left:396.866655pt;}
.x16{left:411.586667pt;}
.x18{left:525.053333pt;}
.xd{left:664.453322pt;}
.x4{left:672.453333pt;}
.x34{left:680.453322pt;}
.x35{left:739.493322pt;}
.x36{left:758.399988pt;}
.x37{left:761.599988pt;}
.x11{left:854.399988pt;}
.x22{left:857.119988pt;}
}




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