
    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_aca3b782264241a2e67fd5a2.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_c2efb02bdd91ab5a0e6a673a.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.887207;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_32e38a817be408077b46d8d7.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_3f887896a3e229072f6d6a27.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.111133;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_160e7ad9be533cd7c40814f9.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.125533;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_9beb788c2d92343ad5e5629d.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.967000;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_0cd32743fcea5510fcf028d7.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.963000;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_04a46cd2c249a28bb1eff7e8.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.025000;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_b8611f89fdc8909d30e7224c.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.964000;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_a61c17a617695dd28c96a028.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.967000;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_46442c707c7b09cf82e5e8b4.woff2')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_01f53fd1ba1304909e779815.woff2')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_b7faf1daef1075699c91a83d.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.961000;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_41535789ede2307cefa053ad.woff2')format("woff");}.ffe{font-family:ffe;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;}
.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);}
.v0{vertical-align:0.000000px;}
.lsc{letter-spacing:-0.420840px;}
.ls46{letter-spacing:-0.390600px;}
.ls42{letter-spacing:-0.360720px;}
.lsa{letter-spacing:-0.312480px;}
.ls1c{letter-spacing:-0.300600px;}
.ls1d{letter-spacing:-0.240480px;}
.lsd{letter-spacing:-0.180360px;}
.ls6{letter-spacing:-0.120240px;}
.lse{letter-spacing:-0.060120px;}
.ls7{letter-spacing:0.000000px;}
.ls35{letter-spacing:0.009000px;}
.lsb{letter-spacing:0.060120px;}
.ls43{letter-spacing:0.065880px;}
.ls9{letter-spacing:0.078120px;}
.ls0{letter-spacing:0.120240px;}
.ls44{letter-spacing:0.131760px;}
.ls45{letter-spacing:0.156240px;}
.ls1{letter-spacing:0.180360px;}
.ls40{letter-spacing:0.186372px;}
.ls8{letter-spacing:0.197640px;}
.ls3f{letter-spacing:0.204408px;}
.ls1e{letter-spacing:0.300600px;}
.ls25{letter-spacing:0.480960px;}
.ls31{letter-spacing:0.541080px;}
.ls24{letter-spacing:0.661320px;}
.ls2f{letter-spacing:1.563120px;}
.ls10{letter-spacing:2.645280px;}
.ls19{letter-spacing:3.006000px;}
.ls26{letter-spacing:3.366720px;}
.ls27{letter-spacing:3.727440px;}
.ls2c{letter-spacing:4.088160px;}
.ls3c{letter-spacing:4.809600px;}
.ls12{letter-spacing:5.170320px;}
.ls18{letter-spacing:5.531040px;}
.ls1f{letter-spacing:5.891760px;}
.ls2e{letter-spacing:6.252480px;}
.ls3d{letter-spacing:6.613200px;}
.ls23{letter-spacing:6.973920px;}
.ls39{letter-spacing:7.334640px;}
.ls21{letter-spacing:8.416800px;}
.ls4{letter-spacing:9.498960px;}
.ls15{letter-spacing:10.581120px;}
.ls5{letter-spacing:12.005964px;}
.ls30{letter-spacing:12.384720px;}
.ls32{letter-spacing:13.106160px;}
.ls38{letter-spacing:13.466880px;}
.ls1a{letter-spacing:13.815576px;}
.ls1b{letter-spacing:13.827600px;}
.ls2d{letter-spacing:14.188320px;}
.ls3{letter-spacing:14.549040px;}
.ls29{letter-spacing:15.270480px;}
.ls2b{letter-spacing:16.352640px;}
.ls11{letter-spacing:16.713360px;}
.ls37{letter-spacing:17.074080px;}
.ls3b{letter-spacing:17.434800px;}
.ls17{letter-spacing:18.156240px;}
.ls16{letter-spacing:18.516960px;}
.ls13{letter-spacing:19.238400px;}
.ls3a{letter-spacing:19.959840px;}
.ls2a{letter-spacing:21.402720px;}
.ls2{letter-spacing:23.927760px;}
.ls34{letter-spacing:26.452800px;}
.ls20{letter-spacing:45.510840px;}
.lsf{letter-spacing:62.103960px;}
.ls3e{letter-spacing:65.350440px;}
.ls28{letter-spacing:83.025720px;}
.ls14{letter-spacing:86.272200px;}
.ls36{letter-spacing:125.049600px;}
.ls33{letter-spacing:165.029400px;}
.ls22{letter-spacing:366.611760px;}
.ls41{letter-spacing:848.954520px;}
.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;}
}
.ws4{word-spacing:-21.170520px;}
.ws5{word-spacing:-21.092400px;}
.ws6{word-spacing:-20.779920px;}
.ws17{word-spacing:-16.352640px;}
.ws18{word-spacing:-16.292520px;}
.ws1b{word-spacing:-16.232400px;}
.ws1f{word-spacing:-16.172280px;}
.ws15{word-spacing:-16.112160px;}
.wsd{word-spacing:-16.052040px;}
.ws20{word-spacing:-15.991920px;}
.ws22{word-spacing:-15.931800px;}
.ws21{word-spacing:-15.811560px;}
.ws1a{word-spacing:-14.789520px;}
.ws16{word-spacing:-14.729400px;}
.wsb{word-spacing:-14.669280px;}
.ws3{word-spacing:-14.609160px;}
.ws9{word-spacing:-14.549040px;}
.wsc{word-spacing:-14.488920px;}
.ws8{word-spacing:-14.428800px;}
.ws19{word-spacing:-14.308560px;}
.ws23{word-spacing:-14.248440px;}
.ws7{word-spacing:-14.188320px;}
.ws2{word-spacing:-12.504960px;}
.ws27{word-spacing:-0.312480px;}
.ws1e{word-spacing:-0.300600px;}
.ws1{word-spacing:-0.240480px;}
.ws10{word-spacing:-0.197640px;}
.ws11{word-spacing:-0.180360px;}
.ws25{word-spacing:-0.156240px;}
.ws24{word-spacing:-0.131760px;}
.ws14{word-spacing:-0.120240px;}
.wsa{word-spacing:-0.060120px;}
.wsf{word-spacing:0.000000px;}
.ws0{word-spacing:0.060120px;}
.wse{word-spacing:0.120240px;}
.ws12{word-spacing:0.180360px;}
.ws1c{word-spacing:0.240480px;}
.ws13{word-spacing:0.300600px;}
.ws1d{word-spacing:0.420840px;}
.ws26{word-spacing:0.546840px;}
.ws28{word-spacing:5.290560px;}
._6{margin-left:-4.292568px;}
._5{margin-left:-2.488968px;}
._3{margin-left:-1.082160px;}
._0{width:1.052100px;}
._4{width:2.927844px;}
._7{width:4.286556px;}
._18{width:5.494968px;}
._10{width:6.577128px;}
._8{width:8.062092px;}
._d{width:9.384732px;}
._c{width:10.653264px;}
._a{width:12.120192px;}
._9{width:13.406760px;}
._1c{width:14.819580px;}
._14{width:15.889716px;}
._e{width:16.941816px;}
._12{width:18.258444px;}
._b{width:19.599120px;}
._17{width:20.771460px;}
._1e{width:22.298508px;}
._15{width:23.464836px;}
._2a{width:24.468840px;}
._16{width:25.587072px;}
._1b{width:27.631152px;}
._21{width:29.500884px;}
._f{width:31.045968px;}
._1d{width:32.248368px;}
._1f{width:33.631128px;}
._2c{width:35.296452px;}
._35{width:37.184220px;}
._31{width:38.338524px;}
._22{width:41.104044px;}
._2f{width:42.973776px;}
._25{width:44.825472px;}
._19{width:46.100016px;}
._28{width:47.218248px;}
._2e{width:49.322448px;}
._26{width:51.108012px;}
._2b{width:52.334460px;}
._13{width:53.596980px;}
._20{width:60.276312px;}
._2d{width:65.843424px;}
._33{width:72.252216px;}
._11{width:74.109924px;}
._30{width:80.807292px;}
._23{width:82.827324px;}
._29{width:92.157948px;}
._32{width:112.779108px;}
._27{width:151.075548px;}
._1{width:282.413700px;}
._1a{width:1103.622840px;}
._24{width:1105.426440px;}
._34{width:1109.033640px;}
._2{width:1110.476520px;}
.fc0{color:rgb(0,0,0);}
.fs0{font-size:60.120000px;}
.fs1{font-size:65.880000px;}
.fs2{font-size:78.120000px;}
.y0{bottom:0.000000px;}
.ye1{bottom:4.140000px;}
.ye4{bottom:23.130000px;}
.ye0{bottom:23.220000px;}
.yfe{bottom:91.310040px;}
.y112{bottom:91.445310px;}
.y183{bottom:92.763900px;}
.y199{bottom:92.914200px;}
.y38{bottom:92.977290px;}
.y55{bottom:93.172680px;}
.yc5{bottom:97.157610px;}
.y14c{bottom:97.172640px;}
.yfd{bottom:110.292930px;}
.y111{bottom:110.428200px;}
.y182{bottom:111.836970px;}
.y198{bottom:111.987270px;}
.y37{bottom:112.050360px;}
.y54{bottom:112.245750px;}
.y113{bottom:115.854930px;}
.yc4{bottom:116.230680px;}
.y14b{bottom:116.245710px;}
.yfc{bottom:129.366000px;}
.y110{bottom:129.501270px;}
.y181{bottom:130.910040px;}
.y36{bottom:131.033250px;}
.y197{bottom:131.060340px;}
.y53{bottom:131.228640px;}
.y8c{bottom:134.837820px;}
.yc3{bottom:135.213570px;}
.y14a{bottom:135.228600px;}
.yfb{bottom:148.348890px;}
.y10f{bottom:148.484160px;}
.y1cd{bottom:149.824080px;}
.y180{bottom:149.892930px;}
.y196{bottom:150.043230px;}
.y35{bottom:150.106320px;}
.y52{bottom:150.301710px;}
.y8b{bottom:153.910890px;}
.yc2{bottom:154.286640px;}
.y149{bottom:154.301670px;}
.yfa{bottom:167.421960px;}
.y10e{bottom:167.557230px;}
.y17f{bottom:168.966000px;}
.y34{bottom:169.089210px;}
.y195{bottom:169.116300px;}
.y51{bottom:169.284600px;}
.y1cc{bottom:169.618590px;}
.y8a{bottom:172.893780px;}
.yc1{bottom:173.269530px;}
.y148{bottom:173.284560px;}
.yf9{bottom:186.495030px;}
.y10d{bottom:186.630300px;}
.y17e{bottom:187.948890px;}
.y194{bottom:188.099190px;}
.y33{bottom:188.162280px;}
.y50{bottom:188.357670px;}
.y1cb{bottom:189.503280px;}
.y89{bottom:191.966850px;}
.yc0{bottom:192.342600px;}
.y147{bottom:192.357630px;}
.yf8{bottom:205.477920px;}
.y10c{bottom:205.613190px;}
.y17d{bottom:207.021960px;}
.y193{bottom:207.172260px;}
.y32{bottom:207.235350px;}
.y4f{bottom:207.430740px;}
.y1ca{bottom:209.387970px;}
.y88{bottom:211.039920px;}
.ybf{bottom:211.415670px;}
.y146{bottom:211.430700px;}
.yf7{bottom:224.550990px;}
.y10b{bottom:224.686260px;}
.y17c{bottom:226.095030px;}
.y31{bottom:226.218240px;}
.y192{bottom:226.245330px;}
.y4e{bottom:226.413630px;}
.y1c9{bottom:229.272660px;}
.y87{bottom:230.022810px;}
.ybe{bottom:230.398560px;}
.y145{bottom:230.413590px;}
.yf6{bottom:243.624060px;}
.y10a{bottom:243.759330px;}
.y17b{bottom:245.077920px;}
.y191{bottom:245.228220px;}
.y30{bottom:245.291310px;}
.y4d{bottom:245.486700px;}
.y86{bottom:249.095880px;}
.y1c8{bottom:249.157350px;}
.ybd{bottom:249.471630px;}
.y144{bottom:249.486660px;}
.yf5{bottom:262.606950px;}
.y109{bottom:262.742220px;}
.y17a{bottom:264.150990px;}
.y190{bottom:264.301290px;}
.y2f{bottom:264.364380px;}
.y4c{bottom:264.559770px;}
.y85{bottom:268.168950px;}
.ybc{bottom:268.544700px;}
.y143{bottom:268.559730px;}
.y1c7{bottom:269.042040px;}
.yf4{bottom:281.680020px;}
.y108{bottom:281.815290px;}
.y179{bottom:283.224060px;}
.y2e{bottom:283.347270px;}
.y18f{bottom:283.374360px;}
.y4b{bottom:283.542660px;}
.y84{bottom:287.151840px;}
.ybb{bottom:287.527590px;}
.y142{bottom:287.542620px;}
.y1c6{bottom:288.836550px;}
.yf3{bottom:300.753090px;}
.y107{bottom:300.888360px;}
.y178{bottom:302.206950px;}
.y18e{bottom:302.357250px;}
.y2d{bottom:302.420340px;}
.y4a{bottom:302.615730px;}
.y83{bottom:306.224910px;}
.yba{bottom:306.600660px;}
.y141{bottom:306.615690px;}
.y1c5{bottom:308.721240px;}
.yf2{bottom:319.735980px;}
.y106{bottom:319.871250px;}
.y177{bottom:321.280020px;}
.y18d{bottom:321.430320px;}
.y2c{bottom:321.493410px;}
.y49{bottom:321.688800px;}
.y82{bottom:325.297980px;}
.yb9{bottom:325.673730px;}
.y140{bottom:325.688760px;}
.y1c4{bottom:328.605930px;}
.yf1{bottom:338.809050px;}
.y105{bottom:338.944320px;}
.y176{bottom:340.262910px;}
.y18c{bottom:340.413210px;}
.y2b{bottom:340.476300px;}
.y48{bottom:340.671690px;}
.y81{bottom:344.280870px;}
.yb8{bottom:344.656620px;}
.y13f{bottom:344.671650px;}
.y1c3{bottom:348.490620px;}
.yf0{bottom:357.791940px;}
.y104{bottom:357.927210px;}
.y175{bottom:359.335980px;}
.y18b{bottom:359.486280px;}
.y2a{bottom:359.549370px;}
.y47{bottom:359.744760px;}
.y80{bottom:363.353940px;}
.yb7{bottom:363.729690px;}
.y13e{bottom:363.744720px;}
.y1c2{bottom:368.375310px;}
.yef{bottom:376.865010px;}
.y103{bottom:377.000280px;}
.y174{bottom:378.409050px;}
.y29{bottom:378.532260px;}
.y18a{bottom:378.559350px;}
.y46{bottom:378.727650px;}
.y7f{bottom:382.336830px;}
.yb6{bottom:382.712580px;}
.y13d{bottom:382.727610px;}
.y1c1{bottom:388.260000px;}
.yee{bottom:395.938080px;}
.y102{bottom:396.073350px;}
.y173{bottom:397.391940px;}
.y189{bottom:397.542240px;}
.y28{bottom:397.605330px;}
.y45{bottom:397.800720px;}
.y7e{bottom:401.409900px;}
.yb5{bottom:401.785650px;}
.y13c{bottom:401.800680px;}
.y1c0{bottom:409.393620px;}
.yed{bottom:414.920970px;}
.y101{bottom:415.056240px;}
.y172{bottom:416.465010px;}
.y188{bottom:416.615310px;}
.y27{bottom:416.678400px;}
.y44{bottom:416.873790px;}
.y7d{bottom:420.482970px;}
.yb4{bottom:420.858720px;}
.y13b{bottom:420.873750px;}
.yec{bottom:433.994040px;}
.y100{bottom:434.129310px;}
.y1bf{bottom:435.231810px;}
.y171{bottom:435.538080px;}
.y26{bottom:435.661290px;}
.y187{bottom:435.688380px;}
.y43{bottom:435.856680px;}
.y7c{bottom:439.465860px;}
.yb3{bottom:439.841610px;}
.y13a{bottom:439.856640px;}
.yeb{bottom:453.067110px;}
.yff{bottom:453.202380px;}
.y170{bottom:454.520970px;}
.y186{bottom:454.671270px;}
.y25{bottom:454.734360px;}
.y42{bottom:454.929750px;}
.y7b{bottom:458.538930px;}
.yb2{bottom:458.914680px;}
.y139{bottom:458.929710px;}
.y1be{bottom:461.070000px;}
.yea{bottom:472.050000px;}
.y16f{bottom:473.594040px;}
.y185{bottom:473.744340px;}
.y24{bottom:473.807430px;}
.y41{bottom:474.002820px;}
.y7a{bottom:477.612000px;}
.yb1{bottom:477.987750px;}
.y138{bottom:478.002780px;}
.y1bd{bottom:485.995680px;}
.ye9{bottom:487.710000px;}
.y16e{bottom:492.667110px;}
.y23{bottom:492.790320px;}
.y184{bottom:492.817410px;}
.y40{bottom:492.985710px;}
.y79{bottom:496.594890px;}
.yb0{bottom:496.970640px;}
.y137{bottom:496.985670px;}
.ye8{bottom:501.390000px;}
.y1bc{bottom:507.867840px;}
.y16d{bottom:511.650000px;}
.y22{bottom:511.863390px;}
.y3f{bottom:512.058780px;}
.y78{bottom:515.667960px;}
.yaf{bottom:516.043710px;}
.y136{bottom:516.058740px;}
.ye7{bottom:526.590000px;}
.y16b{bottom:527.310000px;}
.y1bb{bottom:529.740000px;}
.y21{bottom:530.936460px;}
.y3e{bottom:531.131850px;}
.y77{bottom:534.650850px;}
.yae{bottom:535.026600px;}
.y135{bottom:535.041630px;}
.y16c{bottom:540.990000px;}
.y20{bottom:549.919350px;}
.y3d{bottom:550.114740px;}
.y1ba{bottom:551.679840px;}
.y76{bottom:553.723920px;}
.yad{bottom:554.099670px;}
.y134{bottom:554.114700px;}
.ye6{bottom:565.380000px;}
.y169{bottom:566.190000px;}
.y1f{bottom:568.992420px;}
.y3c{bottom:569.187810px;}
.y1b9{bottom:571.474350px;}
.y75{bottom:572.796990px;}
.yac{bottom:573.172740px;}
.y133{bottom:573.187770px;}
.y16a{bottom:579.870000px;}
.y1e{bottom:587.975310px;}
.y3b{bottom:588.170700px;}
.y1b8{bottom:591.359040px;}
.y74{bottom:591.779880px;}
.yab{bottom:592.155630px;}
.y132{bottom:592.170660px;}
.ye5{bottom:604.260000px;}
.y168{bottom:604.980000px;}
.y1d{bottom:607.048380px;}
.y3a{bottom:607.243770px;}
.y73{bottom:610.852950px;}
.y1b7{bottom:611.063370px;}
.yaa{bottom:611.228700px;}
.y131{bottom:611.243730px;}
.y1c{bottom:626.121450px;}
.y39{bottom:626.316840px;}
.y72{bottom:629.926020px;}
.y1b6{bottom:630.136440px;}
.ya9{bottom:630.301770px;}
.y130{bottom:630.316800px;}
.ye3{bottom:643.140000px;}
.y167{bottom:643.860000px;}
.y1b{bottom:645.284700px;}
.y71{bottom:648.908910px;}
.y1b5{bottom:649.119330px;}
.ya8{bottom:649.284660px;}
.y12f{bottom:649.299690px;}
.y1a{bottom:665.169390px;}
.y70{bottom:667.981980px;}
.y166{bottom:668.132280px;}
.y1b4{bottom:668.192400px;}
.ya7{bottom:668.357730px;}
.y12e{bottom:668.372760px;}
.ydf{bottom:681.930000px;}
.y19{bottom:685.054080px;}
.y6f{bottom:687.055050px;}
.y165{bottom:687.205350px;}
.y1b3{bottom:687.265470px;}
.ya6{bottom:687.430800px;}
.y12d{bottom:687.445830px;}
.ye2{bottom:695.610000px;}
.yde{bottom:695.907720px;}
.y18{bottom:704.938770px;}
.y6e{bottom:706.037940px;}
.y1b2{bottom:706.248360px;}
.ya5{bottom:706.413690px;}
.y12c{bottom:706.428720px;}
.y17{bottom:724.823460px;}
.y6d{bottom:725.111010px;}
.ydd{bottom:725.246280px;}
.y164{bottom:725.276340px;}
.y1b1{bottom:725.321430px;}
.ya4{bottom:725.486760px;}
.y12b{bottom:725.501790px;}
.y6c{bottom:744.093900px;}
.ydc{bottom:744.229170px;}
.y163{bottom:744.259230px;}
.y1b0{bottom:744.304320px;}
.ya3{bottom:744.469650px;}
.y12a{bottom:744.484680px;}
.y16{bottom:744.617970px;}
.y6b{bottom:763.166970px;}
.ydb{bottom:763.302240px;}
.y162{bottom:763.332300px;}
.y1af{bottom:763.377390px;}
.ya2{bottom:763.542720px;}
.y129{bottom:763.557750px;}
.y15{bottom:764.502660px;}
.y6a{bottom:782.240040px;}
.yda{bottom:782.375310px;}
.y161{bottom:782.405370px;}
.y1ae{bottom:782.450460px;}
.ya1{bottom:782.615790px;}
.y128{bottom:782.630820px;}
.y14{bottom:784.387350px;}
.y69{bottom:801.222930px;}
.yd9{bottom:801.358200px;}
.y160{bottom:801.388260px;}
.y1ad{bottom:801.433350px;}
.ya0{bottom:801.598680px;}
.y127{bottom:801.613710px;}
.y13{bottom:804.272040px;}
.y68{bottom:820.296000px;}
.yd8{bottom:820.431270px;}
.y15f{bottom:820.461330px;}
.y1ac{bottom:820.506420px;}
.y9f{bottom:820.671750px;}
.y126{bottom:820.686780px;}
.y12{bottom:824.156730px;}
.y67{bottom:839.369070px;}
.yd7{bottom:839.504340px;}
.y15e{bottom:839.534400px;}
.y1ab{bottom:839.579490px;}
.y9e{bottom:839.744820px;}
.y125{bottom:839.759850px;}
.y11{bottom:844.041420px;}
.y66{bottom:858.351960px;}
.yd6{bottom:858.487230px;}
.y15d{bottom:858.517290px;}
.y1aa{bottom:858.562380px;}
.y9d{bottom:858.727710px;}
.y124{bottom:858.742740px;}
.y10{bottom:863.835930px;}
.y65{bottom:877.425030px;}
.yd5{bottom:877.560300px;}
.y15c{bottom:877.590360px;}
.y1a9{bottom:877.635450px;}
.y9c{bottom:877.800780px;}
.y123{bottom:877.815810px;}
.yf{bottom:883.720620px;}
.y64{bottom:896.498100px;}
.yd4{bottom:896.633370px;}
.y15b{bottom:896.663430px;}
.y1a8{bottom:896.708520px;}
.y9b{bottom:896.873850px;}
.y122{bottom:896.888880px;}
.ye{bottom:903.605310px;}
.y63{bottom:915.480990px;}
.yd3{bottom:915.616260px;}
.y15a{bottom:915.646320px;}
.y1a7{bottom:915.691410px;}
.y9a{bottom:915.856740px;}
.y121{bottom:915.871770px;}
.yd{bottom:923.490000px;}
.y62{bottom:934.554060px;}
.yd2{bottom:934.689330px;}
.y159{bottom:934.719390px;}
.y1a6{bottom:934.764480px;}
.y99{bottom:934.929810px;}
.y120{bottom:934.944840px;}
.yc{bottom:944.623620px;}
.y61{bottom:953.536950px;}
.yd1{bottom:953.672220px;}
.y158{bottom:953.702280px;}
.y1a5{bottom:953.747370px;}
.y98{bottom:953.912700px;}
.y11f{bottom:953.927730px;}
.yb{bottom:970.461810px;}
.y60{bottom:972.610020px;}
.yd0{bottom:972.745290px;}
.y157{bottom:972.775350px;}
.y1a4{bottom:972.820440px;}
.y97{bottom:972.985770px;}
.y11e{bottom:973.000800px;}
.y5f{bottom:991.683090px;}
.ycf{bottom:991.818360px;}
.y156{bottom:991.848420px;}
.y1a3{bottom:991.893510px;}
.y96{bottom:992.058840px;}
.y11d{bottom:992.073870px;}
.ya{bottom:996.300000px;}
.y5e{bottom:1010.665980px;}
.yce{bottom:1010.801250px;}
.y155{bottom:1010.831310px;}
.y1a2{bottom:1010.876400px;}
.y95{bottom:1011.041730px;}
.y11c{bottom:1011.056760px;}
.y9{bottom:1021.225680px;}
.y5d{bottom:1029.739050px;}
.ycd{bottom:1029.874320px;}
.y154{bottom:1029.904380px;}
.y1a1{bottom:1029.949470px;}
.y94{bottom:1030.114800px;}
.y11b{bottom:1030.129830px;}
.y8{bottom:1043.097840px;}
.y5c{bottom:1048.812120px;}
.ycc{bottom:1048.947390px;}
.y153{bottom:1048.977450px;}
.y1a0{bottom:1049.022540px;}
.y93{bottom:1049.187870px;}
.y11a{bottom:1049.202900px;}
.y7{bottom:1064.970000px;}
.y5b{bottom:1067.795010px;}
.ycb{bottom:1067.930280px;}
.y152{bottom:1067.960340px;}
.y19f{bottom:1068.005430px;}
.y92{bottom:1068.170760px;}
.y119{bottom:1068.185790px;}
.y6{bottom:1086.480000px;}
.y5a{bottom:1086.868080px;}
.yca{bottom:1087.003350px;}
.y151{bottom:1087.033410px;}
.y19e{bottom:1087.078500px;}
.y91{bottom:1087.243830px;}
.y118{bottom:1087.258860px;}
.y59{bottom:1105.850970px;}
.yc9{bottom:1105.986240px;}
.y150{bottom:1106.016300px;}
.y19d{bottom:1106.061390px;}
.y90{bottom:1106.226720px;}
.y117{bottom:1106.241750px;}
.y4{bottom:1106.550000px;}
.y5{bottom:1116.720000px;}
.y58{bottom:1124.924040px;}
.yc8{bottom:1125.059310px;}
.y14f{bottom:1125.089370px;}
.y19c{bottom:1125.134460px;}
.y8f{bottom:1125.299790px;}
.y116{bottom:1125.314820px;}
.y3{bottom:1142.465310px;}
.y57{bottom:1143.997110px;}
.yc7{bottom:1144.132380px;}
.y14e{bottom:1144.162440px;}
.y19b{bottom:1144.207530px;}
.y8e{bottom:1144.372860px;}
.y115{bottom:1144.387890px;}
.y2{bottom:1162.350000px;}
.y56{bottom:1162.980000px;}
.yc6{bottom:1163.115270px;}
.y14d{bottom:1163.145330px;}
.y19a{bottom:1163.190420px;}
.y8d{bottom:1163.355750px;}
.y114{bottom:1163.370780px;}
.y1{bottom:1194.030000px;}
.hd{height:19.081500px;}
.h4{height:31.590000px;}
.hb{height:38.070000px;}
.hc{height:38.160000px;}
.h2{height:42.271875px;}
.h8{height:45.210240px;}
.h9{height:48.877560px;}
.he{height:49.541760px;}
.h3{height:52.973736px;}
.ha{height:53.839464px;}
.h5{height:58.049064px;}
.hf{height:58.746240px;}
.h6{height:58.997736px;}
.h7{height:69.959064px;}
.h0{height:1262.970000px;}
.h1{height:1263.000000px;}
.w2{width:50.310000px;}
.w4{width:143.910000px;}
.w6{width:152.100000px;}
.w8{width:278.728500px;}
.w5{width:282.778500px;}
.w7{width:289.080000px;}
.w3{width:293.308500px;}
.w0{width:893.070000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x20{left:8.910000px;}
.x18{left:10.980000px;}
.x2c{left:12.960000px;}
.x16{left:15.030000px;}
.x1b{left:17.370000px;}
.x22{left:19.080000px;}
.x1e{left:20.520000px;}
.x24{left:29.160000px;}
.x25{left:40.950000px;}
.x4{left:42.210000px;}
.x13{left:48.960000px;}
.x17{left:54.810000px;}
.x21{left:58.140000px;}
.x2d{left:62.280000px;}
.x26{left:63.540000px;}
.x27{left:64.710000px;}
.x1f{left:78.930000px;}
.x1{left:85.050000px;}
.x2f{left:90.720000px;}
.x1c{left:92.790000px;}
.x1d{left:95.040000px;}
.x32{left:96.930000px;}
.x28{left:102.060000px;}
.x19{left:103.500000px;}
.x14{left:104.580000px;}
.xb{left:106.376130px;}
.x23{left:108.360000px;}
.x2e{left:123.570000px;}
.x11{left:131.131980px;}
.x37{left:160.837560px;}
.xa{left:162.644130px;}
.x8{left:166.140000px;}
.x38{left:203.588730px;}
.xf{left:218.351070px;}
.x12{left:230.400000px;}
.x2a{left:238.680000px;}
.x29{left:241.181640px;}
.x7{left:259.380000px;}
.x30{left:261.540000px;}
.x9{left:272.695680px;}
.x10{left:285.399900px;}
.x35{left:291.137670px;}
.x6{left:308.790000px;}
.x31{left:313.920000px;}
.x34{left:324.720000px;}
.x3{left:326.160000px;}
.x36{left:327.780000px;}
.x5{left:384.570000px;}
.x2{left:446.490000px;}
.xc{left:473.017950px;}
.xd{left:494.345520px;}
.x1a{left:524.430000px;}
.x2b{left:528.480000px;}
.x15{left:590.310000px;}
.x33{left:596.581020px;}
.xe{left:737.201700px;}
@media print{
.v0{vertical-align:0.000000pt;}
.lsc{letter-spacing:-0.374080pt;}
.ls46{letter-spacing:-0.347200pt;}
.ls42{letter-spacing:-0.320640pt;}
.lsa{letter-spacing:-0.277760pt;}
.ls1c{letter-spacing:-0.267200pt;}
.ls1d{letter-spacing:-0.213760pt;}
.lsd{letter-spacing:-0.160320pt;}
.ls6{letter-spacing:-0.106880pt;}
.lse{letter-spacing:-0.053440pt;}
.ls7{letter-spacing:0.000000pt;}
.ls35{letter-spacing:0.008000pt;}
.lsb{letter-spacing:0.053440pt;}
.ls43{letter-spacing:0.058560pt;}
.ls9{letter-spacing:0.069440pt;}
.ls0{letter-spacing:0.106880pt;}
.ls44{letter-spacing:0.117120pt;}
.ls45{letter-spacing:0.138880pt;}
.ls1{letter-spacing:0.160320pt;}
.ls40{letter-spacing:0.165664pt;}
.ls8{letter-spacing:0.175680pt;}
.ls3f{letter-spacing:0.181696pt;}
.ls1e{letter-spacing:0.267200pt;}
.ls25{letter-spacing:0.427520pt;}
.ls31{letter-spacing:0.480960pt;}
.ls24{letter-spacing:0.587840pt;}
.ls2f{letter-spacing:1.389440pt;}
.ls10{letter-spacing:2.351360pt;}
.ls19{letter-spacing:2.672000pt;}
.ls26{letter-spacing:2.992640pt;}
.ls27{letter-spacing:3.313280pt;}
.ls2c{letter-spacing:3.633920pt;}
.ls3c{letter-spacing:4.275200pt;}
.ls12{letter-spacing:4.595840pt;}
.ls18{letter-spacing:4.916480pt;}
.ls1f{letter-spacing:5.237120pt;}
.ls2e{letter-spacing:5.557760pt;}
.ls3d{letter-spacing:5.878400pt;}
.ls23{letter-spacing:6.199040pt;}
.ls39{letter-spacing:6.519680pt;}
.ls21{letter-spacing:7.481600pt;}
.ls4{letter-spacing:8.443520pt;}
.ls15{letter-spacing:9.405440pt;}
.ls5{letter-spacing:10.671968pt;}
.ls30{letter-spacing:11.008640pt;}
.ls32{letter-spacing:11.649920pt;}
.ls38{letter-spacing:11.970560pt;}
.ls1a{letter-spacing:12.280512pt;}
.ls1b{letter-spacing:12.291200pt;}
.ls2d{letter-spacing:12.611840pt;}
.ls3{letter-spacing:12.932480pt;}
.ls29{letter-spacing:13.573760pt;}
.ls2b{letter-spacing:14.535680pt;}
.ls11{letter-spacing:14.856320pt;}
.ls37{letter-spacing:15.176960pt;}
.ls3b{letter-spacing:15.497600pt;}
.ls17{letter-spacing:16.138880pt;}
.ls16{letter-spacing:16.459520pt;}
.ls13{letter-spacing:17.100800pt;}
.ls3a{letter-spacing:17.742080pt;}
.ls2a{letter-spacing:19.024640pt;}
.ls2{letter-spacing:21.269120pt;}
.ls34{letter-spacing:23.513600pt;}
.ls20{letter-spacing:40.454080pt;}
.lsf{letter-spacing:55.203520pt;}
.ls3e{letter-spacing:58.089280pt;}
.ls28{letter-spacing:73.800640pt;}
.ls14{letter-spacing:76.686400pt;}
.ls36{letter-spacing:111.155200pt;}
.ls33{letter-spacing:146.692800pt;}
.ls22{letter-spacing:325.877120pt;}
.ls41{letter-spacing:754.626240pt;}
.ws4{word-spacing:-18.818240pt;}
.ws5{word-spacing:-18.748800pt;}
.ws6{word-spacing:-18.471040pt;}
.ws17{word-spacing:-14.535680pt;}
.ws18{word-spacing:-14.482240pt;}
.ws1b{word-spacing:-14.428800pt;}
.ws1f{word-spacing:-14.375360pt;}
.ws15{word-spacing:-14.321920pt;}
.wsd{word-spacing:-14.268480pt;}
.ws20{word-spacing:-14.215040pt;}
.ws22{word-spacing:-14.161600pt;}
.ws21{word-spacing:-14.054720pt;}
.ws1a{word-spacing:-13.146240pt;}
.ws16{word-spacing:-13.092800pt;}
.wsb{word-spacing:-13.039360pt;}
.ws3{word-spacing:-12.985920pt;}
.ws9{word-spacing:-12.932480pt;}
.wsc{word-spacing:-12.879040pt;}
.ws8{word-spacing:-12.825600pt;}
.ws19{word-spacing:-12.718720pt;}
.ws23{word-spacing:-12.665280pt;}
.ws7{word-spacing:-12.611840pt;}
.ws2{word-spacing:-11.115520pt;}
.ws27{word-spacing:-0.277760pt;}
.ws1e{word-spacing:-0.267200pt;}
.ws1{word-spacing:-0.213760pt;}
.ws10{word-spacing:-0.175680pt;}
.ws11{word-spacing:-0.160320pt;}
.ws25{word-spacing:-0.138880pt;}
.ws24{word-spacing:-0.117120pt;}
.ws14{word-spacing:-0.106880pt;}
.wsa{word-spacing:-0.053440pt;}
.wsf{word-spacing:0.000000pt;}
.ws0{word-spacing:0.053440pt;}
.wse{word-spacing:0.106880pt;}
.ws12{word-spacing:0.160320pt;}
.ws1c{word-spacing:0.213760pt;}
.ws13{word-spacing:0.267200pt;}
.ws1d{word-spacing:0.374080pt;}
.ws26{word-spacing:0.486080pt;}
.ws28{word-spacing:4.702720pt;}
._6{margin-left:-3.815616pt;}
._5{margin-left:-2.212416pt;}
._3{margin-left:-0.961920pt;}
._0{width:0.935200pt;}
._4{width:2.602528pt;}
._7{width:3.810272pt;}
._18{width:4.884416pt;}
._10{width:5.846336pt;}
._8{width:7.166304pt;}
._d{width:8.341984pt;}
._c{width:9.469568pt;}
._a{width:10.773504pt;}
._9{width:11.917120pt;}
._1c{width:13.172960pt;}
._14{width:14.124192pt;}
._e{width:15.059392pt;}
._12{width:16.229728pt;}
._b{width:17.421440pt;}
._17{width:18.463520pt;}
._1e{width:19.820896pt;}
._15{width:20.857632pt;}
._2a{width:21.750080pt;}
._16{width:22.744064pt;}
._1b{width:24.561024pt;}
._21{width:26.223008pt;}
._f{width:27.596416pt;}
._1d{width:28.665216pt;}
._1f{width:29.894336pt;}
._2c{width:31.374624pt;}
._35{width:33.052640pt;}
._31{width:34.078688pt;}
._22{width:36.536928pt;}
._2f{width:38.198912pt;}
._25{width:39.844864pt;}
._19{width:40.977792pt;}
._28{width:41.971776pt;}
._2e{width:43.842176pt;}
._26{width:45.429344pt;}
._2b{width:46.519520pt;}
._13{width:47.641760pt;}
._20{width:53.578944pt;}
._2d{width:58.527488pt;}
._33{width:64.224192pt;}
._11{width:65.875488pt;}
._30{width:71.828704pt;}
._23{width:73.624288pt;}
._29{width:81.918176pt;}
._32{width:100.248096pt;}
._27{width:134.289376pt;}
._1{width:251.034400pt;}
._1a{width:980.998080pt;}
._24{width:982.601280pt;}
._34{width:985.807680pt;}
._2{width:987.090240pt;}
.fs0{font-size:53.440000pt;}
.fs1{font-size:58.560000pt;}
.fs2{font-size:69.440000pt;}
.y0{bottom:0.000000pt;}
.ye1{bottom:3.680000pt;}
.ye4{bottom:20.560000pt;}
.ye0{bottom:20.640000pt;}
.yfe{bottom:81.164480pt;}
.y112{bottom:81.284720pt;}
.y183{bottom:82.456800pt;}
.y199{bottom:82.590400pt;}
.y38{bottom:82.646480pt;}
.y55{bottom:82.820160pt;}
.yc5{bottom:86.362320pt;}
.y14c{bottom:86.375680pt;}
.yfd{bottom:98.038160pt;}
.y111{bottom:98.158400pt;}
.y182{bottom:99.410640pt;}
.y198{bottom:99.544240pt;}
.y37{bottom:99.600320pt;}
.y54{bottom:99.774000pt;}
.y113{bottom:102.982160pt;}
.yc4{bottom:103.316160pt;}
.y14b{bottom:103.329520pt;}
.yfc{bottom:114.992000pt;}
.y110{bottom:115.112240pt;}
.y181{bottom:116.364480pt;}
.y36{bottom:116.474000pt;}
.y197{bottom:116.498080pt;}
.y53{bottom:116.647680pt;}
.y8c{bottom:119.855840pt;}
.yc3{bottom:120.189840pt;}
.y14a{bottom:120.203200pt;}
.yfb{bottom:131.865680pt;}
.y10f{bottom:131.985920pt;}
.y1cd{bottom:133.176960pt;}
.y180{bottom:133.238160pt;}
.y196{bottom:133.371760pt;}
.y35{bottom:133.427840pt;}
.y52{bottom:133.601520pt;}
.y8b{bottom:136.809680pt;}
.yc2{bottom:137.143680pt;}
.y149{bottom:137.157040pt;}
.yfa{bottom:148.819520pt;}
.y10e{bottom:148.939760pt;}
.y17f{bottom:150.192000pt;}
.y34{bottom:150.301520pt;}
.y195{bottom:150.325600pt;}
.y51{bottom:150.475200pt;}
.y1cc{bottom:150.772080pt;}
.y8a{bottom:153.683360pt;}
.yc1{bottom:154.017360pt;}
.y148{bottom:154.030720pt;}
.yf9{bottom:165.773360pt;}
.y10d{bottom:165.893600pt;}
.y17e{bottom:167.065680pt;}
.y194{bottom:167.199280pt;}
.y33{bottom:167.255360pt;}
.y50{bottom:167.429040pt;}
.y1cb{bottom:168.447360pt;}
.y89{bottom:170.637200pt;}
.yc0{bottom:170.971200pt;}
.y147{bottom:170.984560pt;}
.yf8{bottom:182.647040pt;}
.y10c{bottom:182.767280pt;}
.y17d{bottom:184.019520pt;}
.y193{bottom:184.153120pt;}
.y32{bottom:184.209200pt;}
.y4f{bottom:184.382880pt;}
.y1ca{bottom:186.122640pt;}
.y88{bottom:187.591040pt;}
.ybf{bottom:187.925040pt;}
.y146{bottom:187.938400pt;}
.yf7{bottom:199.600880pt;}
.y10b{bottom:199.721120pt;}
.y17c{bottom:200.973360pt;}
.y31{bottom:201.082880pt;}
.y192{bottom:201.106960pt;}
.y4e{bottom:201.256560pt;}
.y1c9{bottom:203.797920pt;}
.y87{bottom:204.464720pt;}
.ybe{bottom:204.798720pt;}
.y145{bottom:204.812080pt;}
.yf6{bottom:216.554720pt;}
.y10a{bottom:216.674960pt;}
.y17b{bottom:217.847040pt;}
.y191{bottom:217.980640pt;}
.y30{bottom:218.036720pt;}
.y4d{bottom:218.210400pt;}
.y86{bottom:221.418560pt;}
.y1c8{bottom:221.473200pt;}
.ybd{bottom:221.752560pt;}
.y144{bottom:221.765920pt;}
.yf5{bottom:233.428400pt;}
.y109{bottom:233.548640pt;}
.y17a{bottom:234.800880pt;}
.y190{bottom:234.934480pt;}
.y2f{bottom:234.990560pt;}
.y4c{bottom:235.164240pt;}
.y85{bottom:238.372400pt;}
.ybc{bottom:238.706400pt;}
.y143{bottom:238.719760pt;}
.y1c7{bottom:239.148480pt;}
.yf4{bottom:250.382240pt;}
.y108{bottom:250.502480pt;}
.y179{bottom:251.754720pt;}
.y2e{bottom:251.864240pt;}
.y18f{bottom:251.888320pt;}
.y4b{bottom:252.037920pt;}
.y84{bottom:255.246080pt;}
.ybb{bottom:255.580080pt;}
.y142{bottom:255.593440pt;}
.y1c6{bottom:256.743600pt;}
.yf3{bottom:267.336080pt;}
.y107{bottom:267.456320pt;}
.y178{bottom:268.628400pt;}
.y18e{bottom:268.762000pt;}
.y2d{bottom:268.818080pt;}
.y4a{bottom:268.991760pt;}
.y83{bottom:272.199920pt;}
.yba{bottom:272.533920pt;}
.y141{bottom:272.547280pt;}
.y1c5{bottom:274.418880pt;}
.yf2{bottom:284.209760pt;}
.y106{bottom:284.330000pt;}
.y177{bottom:285.582240pt;}
.y18d{bottom:285.715840pt;}
.y2c{bottom:285.771920pt;}
.y49{bottom:285.945600pt;}
.y82{bottom:289.153760pt;}
.yb9{bottom:289.487760pt;}
.y140{bottom:289.501120pt;}
.y1c4{bottom:292.094160pt;}
.yf1{bottom:301.163600pt;}
.y105{bottom:301.283840pt;}
.y176{bottom:302.455920pt;}
.y18c{bottom:302.589520pt;}
.y2b{bottom:302.645600pt;}
.y48{bottom:302.819280pt;}
.y81{bottom:306.027440pt;}
.yb8{bottom:306.361440pt;}
.y13f{bottom:306.374800pt;}
.y1c3{bottom:309.769440pt;}
.yf0{bottom:318.037280pt;}
.y104{bottom:318.157520pt;}
.y175{bottom:319.409760pt;}
.y18b{bottom:319.543360pt;}
.y2a{bottom:319.599440pt;}
.y47{bottom:319.773120pt;}
.y80{bottom:322.981280pt;}
.yb7{bottom:323.315280pt;}
.y13e{bottom:323.328640pt;}
.y1c2{bottom:327.444720pt;}
.yef{bottom:334.991120pt;}
.y103{bottom:335.111360pt;}
.y174{bottom:336.363600pt;}
.y29{bottom:336.473120pt;}
.y18a{bottom:336.497200pt;}
.y46{bottom:336.646800pt;}
.y7f{bottom:339.854960pt;}
.yb6{bottom:340.188960pt;}
.y13d{bottom:340.202320pt;}
.y1c1{bottom:345.120000pt;}
.yee{bottom:351.944960pt;}
.y102{bottom:352.065200pt;}
.y173{bottom:353.237280pt;}
.y189{bottom:353.370880pt;}
.y28{bottom:353.426960pt;}
.y45{bottom:353.600640pt;}
.y7e{bottom:356.808800pt;}
.yb5{bottom:357.142800pt;}
.y13c{bottom:357.156160pt;}
.y1c0{bottom:363.905440pt;}
.yed{bottom:368.818640pt;}
.y101{bottom:368.938880pt;}
.y172{bottom:370.191120pt;}
.y188{bottom:370.324720pt;}
.y27{bottom:370.380800pt;}
.y44{bottom:370.554480pt;}
.y7d{bottom:373.762640pt;}
.yb4{bottom:374.096640pt;}
.y13b{bottom:374.110000pt;}
.yec{bottom:385.772480pt;}
.y100{bottom:385.892720pt;}
.y1bf{bottom:386.872720pt;}
.y171{bottom:387.144960pt;}
.y26{bottom:387.254480pt;}
.y187{bottom:387.278560pt;}
.y43{bottom:387.428160pt;}
.y7c{bottom:390.636320pt;}
.yb3{bottom:390.970320pt;}
.y13a{bottom:390.983680pt;}
.yeb{bottom:402.726320pt;}
.yff{bottom:402.846560pt;}
.y170{bottom:404.018640pt;}
.y186{bottom:404.152240pt;}
.y25{bottom:404.208320pt;}
.y42{bottom:404.382000pt;}
.y7b{bottom:407.590160pt;}
.yb2{bottom:407.924160pt;}
.y139{bottom:407.937520pt;}
.y1be{bottom:409.840000pt;}
.yea{bottom:419.600000pt;}
.y16f{bottom:420.972480pt;}
.y185{bottom:421.106080pt;}
.y24{bottom:421.162160pt;}
.y41{bottom:421.335840pt;}
.y7a{bottom:424.544000pt;}
.yb1{bottom:424.878000pt;}
.y138{bottom:424.891360pt;}
.y1bd{bottom:431.996160pt;}
.ye9{bottom:433.520000pt;}
.y16e{bottom:437.926320pt;}
.y23{bottom:438.035840pt;}
.y184{bottom:438.059920pt;}
.y40{bottom:438.209520pt;}
.y79{bottom:441.417680pt;}
.yb0{bottom:441.751680pt;}
.y137{bottom:441.765040pt;}
.ye8{bottom:445.680000pt;}
.y1bc{bottom:451.438080pt;}
.y16d{bottom:454.800000pt;}
.y22{bottom:454.989680pt;}
.y3f{bottom:455.163360pt;}
.y78{bottom:458.371520pt;}
.yaf{bottom:458.705520pt;}
.y136{bottom:458.718880pt;}
.ye7{bottom:468.080000pt;}
.y16b{bottom:468.720000pt;}
.y1bb{bottom:470.880000pt;}
.y21{bottom:471.943520pt;}
.y3e{bottom:472.117200pt;}
.y77{bottom:475.245200pt;}
.yae{bottom:475.579200pt;}
.y135{bottom:475.592560pt;}
.y16c{bottom:480.880000pt;}
.y20{bottom:488.817200pt;}
.y3d{bottom:488.990880pt;}
.y1ba{bottom:490.382080pt;}
.y76{bottom:492.199040pt;}
.yad{bottom:492.533040pt;}
.y134{bottom:492.546400pt;}
.ye6{bottom:502.560000pt;}
.y169{bottom:503.280000pt;}
.y1f{bottom:505.771040pt;}
.y3c{bottom:505.944720pt;}
.y1b9{bottom:507.977200pt;}
.y75{bottom:509.152880pt;}
.yac{bottom:509.486880pt;}
.y133{bottom:509.500240pt;}
.y16a{bottom:515.440000pt;}
.y1e{bottom:522.644720pt;}
.y3b{bottom:522.818400pt;}
.y1b8{bottom:525.652480pt;}
.y74{bottom:526.026560pt;}
.yab{bottom:526.360560pt;}
.y132{bottom:526.373920pt;}
.ye5{bottom:537.120000pt;}
.y168{bottom:537.760000pt;}
.y1d{bottom:539.598560pt;}
.y3a{bottom:539.772240pt;}
.y73{bottom:542.980400pt;}
.y1b7{bottom:543.167440pt;}
.yaa{bottom:543.314400pt;}
.y131{bottom:543.327760pt;}
.y1c{bottom:556.552400pt;}
.y39{bottom:556.726080pt;}
.y72{bottom:559.934240pt;}
.y1b6{bottom:560.121280pt;}
.ya9{bottom:560.268240pt;}
.y130{bottom:560.281600pt;}
.ye3{bottom:571.680000pt;}
.y167{bottom:572.320000pt;}
.y1b{bottom:573.586400pt;}
.y71{bottom:576.807920pt;}
.y1b5{bottom:576.994960pt;}
.ya8{bottom:577.141920pt;}
.y12f{bottom:577.155280pt;}
.y1a{bottom:591.261680pt;}
.y70{bottom:593.761760pt;}
.y166{bottom:593.895360pt;}
.y1b4{bottom:593.948800pt;}
.ya7{bottom:594.095760pt;}
.y12e{bottom:594.109120pt;}
.ydf{bottom:606.160000pt;}
.y19{bottom:608.936960pt;}
.y6f{bottom:610.715600pt;}
.y165{bottom:610.849200pt;}
.y1b3{bottom:610.902640pt;}
.ya6{bottom:611.049600pt;}
.y12d{bottom:611.062960pt;}
.ye2{bottom:618.320000pt;}
.yde{bottom:618.584640pt;}
.y18{bottom:626.612240pt;}
.y6e{bottom:627.589280pt;}
.y1b2{bottom:627.776320pt;}
.ya5{bottom:627.923280pt;}
.y12c{bottom:627.936640pt;}
.y17{bottom:644.287520pt;}
.y6d{bottom:644.543120pt;}
.ydd{bottom:644.663360pt;}
.y164{bottom:644.690080pt;}
.y1b1{bottom:644.730160pt;}
.ya4{bottom:644.877120pt;}
.y12b{bottom:644.890480pt;}
.y6c{bottom:661.416800pt;}
.ydc{bottom:661.537040pt;}
.y163{bottom:661.563760pt;}
.y1b0{bottom:661.603840pt;}
.ya3{bottom:661.750800pt;}
.y12a{bottom:661.764160pt;}
.y16{bottom:661.882640pt;}
.y6b{bottom:678.370640pt;}
.ydb{bottom:678.490880pt;}
.y162{bottom:678.517600pt;}
.y1af{bottom:678.557680pt;}
.ya2{bottom:678.704640pt;}
.y129{bottom:678.718000pt;}
.y15{bottom:679.557920pt;}
.y6a{bottom:695.324480pt;}
.yda{bottom:695.444720pt;}
.y161{bottom:695.471440pt;}
.y1ae{bottom:695.511520pt;}
.ya1{bottom:695.658480pt;}
.y128{bottom:695.671840pt;}
.y14{bottom:697.233200pt;}
.y69{bottom:712.198160pt;}
.yd9{bottom:712.318400pt;}
.y160{bottom:712.345120pt;}
.y1ad{bottom:712.385200pt;}
.ya0{bottom:712.532160pt;}
.y127{bottom:712.545520pt;}
.y13{bottom:714.908480pt;}
.y68{bottom:729.152000pt;}
.yd8{bottom:729.272240pt;}
.y15f{bottom:729.298960pt;}
.y1ac{bottom:729.339040pt;}
.y9f{bottom:729.486000pt;}
.y126{bottom:729.499360pt;}
.y12{bottom:732.583760pt;}
.y67{bottom:746.105840pt;}
.yd7{bottom:746.226080pt;}
.y15e{bottom:746.252800pt;}
.y1ab{bottom:746.292880pt;}
.y9e{bottom:746.439840pt;}
.y125{bottom:746.453200pt;}
.y11{bottom:750.259040pt;}
.y66{bottom:762.979520pt;}
.yd6{bottom:763.099760pt;}
.y15d{bottom:763.126480pt;}
.y1aa{bottom:763.166560pt;}
.y9d{bottom:763.313520pt;}
.y124{bottom:763.326880pt;}
.y10{bottom:767.854160pt;}
.y65{bottom:779.933360pt;}
.yd5{bottom:780.053600pt;}
.y15c{bottom:780.080320pt;}
.y1a9{bottom:780.120400pt;}
.y9c{bottom:780.267360pt;}
.y123{bottom:780.280720pt;}
.yf{bottom:785.529440pt;}
.y64{bottom:796.887200pt;}
.yd4{bottom:797.007440pt;}
.y15b{bottom:797.034160pt;}
.y1a8{bottom:797.074240pt;}
.y9b{bottom:797.221200pt;}
.y122{bottom:797.234560pt;}
.ye{bottom:803.204720pt;}
.y63{bottom:813.760880pt;}
.yd3{bottom:813.881120pt;}
.y15a{bottom:813.907840pt;}
.y1a7{bottom:813.947920pt;}
.y9a{bottom:814.094880pt;}
.y121{bottom:814.108240pt;}
.yd{bottom:820.880000pt;}
.y62{bottom:830.714720pt;}
.yd2{bottom:830.834960pt;}
.y159{bottom:830.861680pt;}
.y1a6{bottom:830.901760pt;}
.y99{bottom:831.048720pt;}
.y120{bottom:831.062080pt;}
.yc{bottom:839.665440pt;}
.y61{bottom:847.588400pt;}
.yd1{bottom:847.708640pt;}
.y158{bottom:847.735360pt;}
.y1a5{bottom:847.775440pt;}
.y98{bottom:847.922400pt;}
.y11f{bottom:847.935760pt;}
.yb{bottom:862.632720pt;}
.y60{bottom:864.542240pt;}
.yd0{bottom:864.662480pt;}
.y157{bottom:864.689200pt;}
.y1a4{bottom:864.729280pt;}
.y97{bottom:864.876240pt;}
.y11e{bottom:864.889600pt;}
.y5f{bottom:881.496080pt;}
.ycf{bottom:881.616320pt;}
.y156{bottom:881.643040pt;}
.y1a3{bottom:881.683120pt;}
.y96{bottom:881.830080pt;}
.y11d{bottom:881.843440pt;}
.ya{bottom:885.600000pt;}
.y5e{bottom:898.369760pt;}
.yce{bottom:898.490000pt;}
.y155{bottom:898.516720pt;}
.y1a2{bottom:898.556800pt;}
.y95{bottom:898.703760pt;}
.y11c{bottom:898.717120pt;}
.y9{bottom:907.756160pt;}
.y5d{bottom:915.323600pt;}
.ycd{bottom:915.443840pt;}
.y154{bottom:915.470560pt;}
.y1a1{bottom:915.510640pt;}
.y94{bottom:915.657600pt;}
.y11b{bottom:915.670960pt;}
.y8{bottom:927.198080pt;}
.y5c{bottom:932.277440pt;}
.ycc{bottom:932.397680pt;}
.y153{bottom:932.424400pt;}
.y1a0{bottom:932.464480pt;}
.y93{bottom:932.611440pt;}
.y11a{bottom:932.624800pt;}
.y7{bottom:946.640000pt;}
.y5b{bottom:949.151120pt;}
.ycb{bottom:949.271360pt;}
.y152{bottom:949.298080pt;}
.y19f{bottom:949.338160pt;}
.y92{bottom:949.485120pt;}
.y119{bottom:949.498480pt;}
.y6{bottom:965.760000pt;}
.y5a{bottom:966.104960pt;}
.yca{bottom:966.225200pt;}
.y151{bottom:966.251920pt;}
.y19e{bottom:966.292000pt;}
.y91{bottom:966.438960pt;}
.y118{bottom:966.452320pt;}
.y59{bottom:982.978640pt;}
.yc9{bottom:983.098880pt;}
.y150{bottom:983.125600pt;}
.y19d{bottom:983.165680pt;}
.y90{bottom:983.312640pt;}
.y117{bottom:983.326000pt;}
.y4{bottom:983.600000pt;}
.y5{bottom:992.640000pt;}
.y58{bottom:999.932480pt;}
.yc8{bottom:1000.052720pt;}
.y14f{bottom:1000.079440pt;}
.y19c{bottom:1000.119520pt;}
.y8f{bottom:1000.266480pt;}
.y116{bottom:1000.279840pt;}
.y3{bottom:1015.524720pt;}
.y57{bottom:1016.886320pt;}
.yc7{bottom:1017.006560pt;}
.y14e{bottom:1017.033280pt;}
.y19b{bottom:1017.073360pt;}
.y8e{bottom:1017.220320pt;}
.y115{bottom:1017.233680pt;}
.y2{bottom:1033.200000pt;}
.y56{bottom:1033.760000pt;}
.yc6{bottom:1033.880240pt;}
.y14d{bottom:1033.906960pt;}
.y19a{bottom:1033.947040pt;}
.y8d{bottom:1034.094000pt;}
.y114{bottom:1034.107360pt;}
.y1{bottom:1061.360000pt;}
.hd{height:16.961333pt;}
.h4{height:28.080000pt;}
.hb{height:33.840000pt;}
.hc{height:33.920000pt;}
.h2{height:37.575000pt;}
.h8{height:40.186880pt;}
.h9{height:43.446720pt;}
.he{height:44.037120pt;}
.h3{height:47.087765pt;}
.ha{height:47.857301pt;}
.h5{height:51.599168pt;}
.hf{height:52.218880pt;}
.h6{height:52.442432pt;}
.h7{height:62.185835pt;}
.h0{height:1122.640000pt;}
.h1{height:1122.666667pt;}
.w2{width:44.720000pt;}
.w4{width:127.920000pt;}
.w6{width:135.200000pt;}
.w8{width:247.758667pt;}
.w5{width:251.358667pt;}
.w7{width:256.960000pt;}
.w3{width:260.718667pt;}
.w0{width:793.840000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x20{left:7.920000pt;}
.x18{left:9.760000pt;}
.x2c{left:11.520000pt;}
.x16{left:13.360000pt;}
.x1b{left:15.440000pt;}
.x22{left:16.960000pt;}
.x1e{left:18.240000pt;}
.x24{left:25.920000pt;}
.x25{left:36.400000pt;}
.x4{left:37.520000pt;}
.x13{left:43.520000pt;}
.x17{left:48.720000pt;}
.x21{left:51.680000pt;}
.x2d{left:55.360000pt;}
.x26{left:56.480000pt;}
.x27{left:57.520000pt;}
.x1f{left:70.160000pt;}
.x1{left:75.600000pt;}
.x2f{left:80.640000pt;}
.x1c{left:82.480000pt;}
.x1d{left:84.480000pt;}
.x32{left:86.160000pt;}
.x28{left:90.720000pt;}
.x19{left:92.000000pt;}
.x14{left:92.960000pt;}
.xb{left:94.556560pt;}
.x23{left:96.320000pt;}
.x2e{left:109.840000pt;}
.x11{left:116.561760pt;}
.x37{left:142.966720pt;}
.xa{left:144.572560pt;}
.x8{left:147.680000pt;}
.x38{left:180.967760pt;}
.xf{left:194.089840pt;}
.x12{left:204.800000pt;}
.x2a{left:212.160000pt;}
.x29{left:214.383680pt;}
.x7{left:230.560000pt;}
.x30{left:232.480000pt;}
.x9{left:242.396160pt;}
.x10{left:253.688800pt;}
.x35{left:258.789040pt;}
.x6{left:274.480000pt;}
.x31{left:279.040000pt;}
.x34{left:288.640000pt;}
.x3{left:289.920000pt;}
.x36{left:291.360000pt;}
.x5{left:341.840000pt;}
.x2{left:396.880000pt;}
.xc{left:420.460400pt;}
.xd{left:439.418240pt;}
.x1a{left:466.160000pt;}
.x2b{left:469.760000pt;}
.x15{left:524.720000pt;}
.x33{left:530.294240pt;}
.xe{left:655.290400pt;}
}




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