
    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_5f05b0b70ce8a2f46dab0953.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.729004;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_bec794cc5fa54890f35dae11.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_ae1e8f7eb31521f2c77a5edb.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_3c1175e60d823e22d11d04b4.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.943359;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_3122d47e218c2b5df146583d.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.943359;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_fd0ea89ddfecbcd03a4e9b57.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_b29a2b758f05a3e733aa61a8.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.921387;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_e8f4f0b153100eee2492f43f.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.933594;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_3fe47444c8395415b259a76f.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.435059;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_58985701b4c755d552b4c977.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_14d413ca5fdbb8a52aace47e.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_259ae407c84c127d816cb3a8.woff2')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_d4da6f3000ec5d82039ce79a.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.401855;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_bdb05fd7e0aae93558984fdd.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.084961;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_dbfad6ebe278da6a97bf4a09.woff2')format("woff");}.fff{font-family:fff;line-height:0.682617;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_3cff5d1ad94412037f3e3eff.woff2')format("woff");}.ff10{font-family:ff10;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;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v1{vertical-align:-96.480000px;}
.v0{vertical-align:0.000000px;}
.ls36{letter-spacing:-0.900000px;}
.ls2d{letter-spacing:-0.690000px;}
.ls19{letter-spacing:-0.684000px;}
.ls16{letter-spacing:-0.378600px;}
.ls6{letter-spacing:-0.360000px;}
.ls5{letter-spacing:-0.180000px;}
.ls28{letter-spacing:-0.037440px;}
.ls32{letter-spacing:-0.028080px;}
.ls4{letter-spacing:0.000000px;}
.ls33{letter-spacing:0.008640px;}
.ls1{letter-spacing:0.028080px;}
.ls25{letter-spacing:0.144000px;}
.ls15{letter-spacing:0.208080px;}
.ls14{letter-spacing:0.252720px;}
.ls1d{letter-spacing:0.341400px;}
.ls13{letter-spacing:0.350400px;}
.ls3{letter-spacing:0.360000px;}
.lse{letter-spacing:0.540000px;}
.lsd{letter-spacing:1.260000px;}
.ls17{letter-spacing:1.440000px;}
.lsf{letter-spacing:1.980000px;}
.lsb{letter-spacing:2.106720px;}
.ls2e{letter-spacing:2.700000px;}
.ls1a{letter-spacing:4.140000px;}
.lsa{letter-spacing:5.580000px;}
.ls2f{letter-spacing:8.460000px;}
.ls2a{letter-spacing:9.180000px;}
.ls37{letter-spacing:10.620000px;}
.ls30{letter-spacing:11.340000px;}
.ls2{letter-spacing:12.240000px;}
.ls23{letter-spacing:12.780000px;}
.ls24{letter-spacing:13.500000px;}
.ls31{letter-spacing:14.220000px;}
.lsc{letter-spacing:14.940000px;}
.ls7{letter-spacing:15.660000px;}
.ls2b{letter-spacing:16.380000px;}
.ls21{letter-spacing:19.260000px;}
.ls1b{letter-spacing:19.980000px;}
.ls1c{letter-spacing:20.700000px;}
.ls18{letter-spacing:23.580000px;}
.ls22{letter-spacing:26.460000px;}
.ls2c{letter-spacing:30.780000px;}
.ls20{letter-spacing:31.500000px;}
.ls1e{letter-spacing:35.820000px;}
.ls27{letter-spacing:36.540000px;}
.ls10{letter-spacing:37.260000px;}
.ls11{letter-spacing:37.980000px;}
.ls1f{letter-spacing:39.420000px;}
.ls29{letter-spacing:48.780000px;}
.ls12{letter-spacing:80.460000px;}
.ls9{letter-spacing:105.461280px;}
.ls35{letter-spacing:126.341280px;}
.ls34{letter-spacing:126.461280px;}
.ls8{letter-spacing:168.101280px;}
.ls26{letter-spacing:209.466720px;}
.ls0{letter-spacing:2407.980000px;}
.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;}
}
.ws6{word-spacing:-59.760000px;}
.ws0{word-spacing:-25.759440px;}
.ws5{word-spacing:-21.420000px;}
.ws7{word-spacing:-21.410400px;}
.ws9{word-spacing:-21.401400px;}
.wsd{word-spacing:-21.088080px;}
.ws2{word-spacing:-21.060000px;}
.wsc{word-spacing:-21.031920px;}
.wsa{word-spacing:-21.022560px;}
.ws4{word-spacing:-20.700000px;}
.wse{word-spacing:-20.681400px;}
.ws8{word-spacing:-20.376000px;}
.wsb{word-spacing:-20.370000px;}
.ws1{word-spacing:-18.000000px;}
.ws3{word-spacing:0.000000px;}
._a{margin-left:-6.332160px;}
._9{margin-left:-4.593120px;}
._12{margin-left:-2.839440px;}
._2{margin-left:-1.296000px;}
._0{width:1.470240px;}
._1{width:3.051840px;}
._b{width:4.464720px;}
._c{width:5.760720px;}
._17{width:6.771600px;}
._1d{width:8.113680px;}
._6{width:9.130320px;}
._8{width:10.260000px;}
._7{width:11.265600px;}
._f{width:12.339120px;}
._13{width:14.196480px;}
._14{width:15.931680px;}
._d{width:17.353440px;}
._e{width:18.396720px;}
._25{width:19.576080px;}
._22{width:22.829040px;}
._15{width:24.261120px;}
._16{width:25.356240px;}
._37{width:26.363280px;}
._18{width:27.414480px;}
._1f{width:29.179440px;}
._1a{width:30.527280px;}
._19{width:31.875120px;}
._4{width:33.300720px;}
._3{width:34.369920px;}
._3b{width:35.585280px;}
._21{width:36.644400px;}
._20{width:37.687680px;}
._1c{width:39.340080px;}
._1b{width:40.720320px;}
._26{width:41.919120px;}
._5{width:43.137120px;}
._3d{width:44.334960px;}
._27{width:45.405360px;}
._1e{width:47.308320px;}
._24{width:48.494640px;}
._23{width:49.701600px;}
._3c{width:51.093120px;}
._7b{width:52.429680px;}
._2d{width:53.745120px;}
._2c{width:54.763200px;}
._38{width:56.070000px;}
._54{width:57.283200px;}
._63{width:58.800240px;}
._3e{width:60.769440px;}
._2b{width:63.414000px;}
._31{width:65.072160px;}
._5f{width:67.223520px;}
._30{width:68.772240px;}
._64{width:70.677360px;}
._73{width:71.856720px;}
._2e{width:73.742400px;}
._4c{width:75.394800px;}
._5c{width:76.626000px;}
._56{width:78.291360px;}
._28{width:79.297200px;}
._2a{width:80.342880px;}
._29{width:81.351120px;}
._60{width:83.481840px;}
._4b{width:86.883840px;}
._36{width:88.775760px;}
._2f{width:90.473760px;}
._62{width:92.450160px;}
._40{width:93.927600px;}
._46{width:95.353920px;}
._68{width:96.623280px;}
._52{width:99.604080px;}
._11{width:101.930400px;}
._10{width:102.973680px;}
._6f{width:104.204880px;}
._6b{width:106.563600px;}
._53{width:107.911440px;}
._51{width:110.017440px;}
._7d{width:111.229200px;}
._77{width:115.188480px;}
._66{width:118.473840px;}
._43{width:119.653200px;}
._34{width:121.895280px;}
._70{width:123.191280px;}
._55{width:125.750880px;}
._45{width:128.582640px;}
._41{width:129.959280px;}
._59{width:135.373680px;}
._79{width:138.069360px;}
._80{width:139.669920px;}
._88{width:141.416400px;}
._82{width:142.449840px;}
._57{width:146.694240px;}
._5d{width:151.632000px;}
._76{width:153.012240px;}
._65{width:154.748880px;}
._81{width:157.392720px;}
._5b{width:159.414480px;}
._7a{width:161.740800px;}
._71{width:164.857680px;}
._61{width:166.626720px;}
._4d{width:168.227280px;}
._3f{width:169.238160px;}
._67{width:170.745120px;}
._35{width:171.843840px;}
._78{width:174.798000px;}
._32{width:177.325200px;}
._48{width:180.610560px;}
._72{width:184.654080px;}
._58{width:188.276400px;}
._5a{width:198.722160px;}
._3a{width:204.618960px;}
._47{width:206.336160px;}
._7c{width:207.567360px;}
._6a{width:216.328320px;}
._4e{width:217.450080px;}
._83{width:222.730560px;}
._50{width:227.733120px;}
._39{width:232.418160px;}
._87{width:236.967120px;}
._4a{width:240.420960px;}
._86{width:242.306640px;}
._75{width:245.728080px;}
._49{width:260.133120px;}
._44{width:267.157440px;}
._6e{width:271.946160px;}
._7f{width:273.864240px;}
._33{width:276.222960px;}
._7e{width:283.888800px;}
._4f{width:301.831920px;}
._69{width:307.502640px;}
._42{width:311.266800px;}
._85{width:321.459840px;}
._84{width:325.671840px;}
._6d{width:342.435600px;}
._6c{width:370.319040px;}
._74{width:405.025920px;}
._5e{width:413.365680px;}
.fc2{color:rgb(0,0,255);}
.fc3{color:rgb(255,255,255);}
.fc1{color:rgb(140,140,140);}
.fc0{color:rgb(0,0,0);}
.fs1{font-size:2.880000px;}
.fs4{font-size:59.760000px;}
.fs3{font-size:72.000000px;}
.fs2{font-size:84.240000px;}
.fs0{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.y15e{bottom:16.725000px;}
.y152{bottom:16.740000px;}
.y14e{bottom:16.905000px;}
.y157{bottom:16.920000px;}
.y137{bottom:17.085000px;}
.y14f{bottom:17.265000px;}
.y3e{bottom:19.800000px;}
.y71{bottom:19.965000px;}
.y35{bottom:19.980000px;}
.yf8{bottom:20.010000px;}
.y4e{bottom:20.025000px;}
.y6{bottom:20.160000px;}
.y94{bottom:20.325000px;}
.yad{bottom:20.331000px;}
.y3a{bottom:20.340000px;}
.yf9{bottom:20.370000px;}
.y4f{bottom:20.385000px;}
.y15d{bottom:52.905000px;}
.y151{bottom:52.950000px;}
.y14d{bottom:53.085000px;}
.y155{bottom:53.100000px;}
.y15a{bottom:53.145000px;}
.y136{bottom:53.265000px;}
.y153{bottom:53.310000px;}
.y13a{bottom:53.445000px;}
.y156{bottom:53.460000px;}
.y70{bottom:55.965000px;}
.y34{bottom:55.980000px;}
.y78{bottom:56.010000px;}
.y8e{bottom:56.145000px;}
.y36{bottom:56.160000px;}
.yfc{bottom:56.190000px;}
.yb5{bottom:56.205000px;}
.y93{bottom:56.325000px;}
.y42{bottom:56.340000px;}
.y95{bottom:56.370000px;}
.y9c{bottom:56.385000px;}
.y73{bottom:56.505000px;}
.y38{bottom:56.520000px;}
.y79{bottom:56.550000px;}
.yb6{bottom:56.565000px;}
.yc1{bottom:56.685000px;}
.y51{bottom:56.700000px;}
.y5{bottom:68.220000px;}
.y159{bottom:89.325000px;}
.y135{bottom:89.625000px;}
.y15b{bottom:89.685000px;}
.y138{bottom:89.805000px;}
.y4{bottom:91.440000px;}
.yfe{bottom:92.145000px;}
.y3d{bottom:92.160000px;}
.ybb{bottom:92.190000px;}
.ybf{bottom:92.325000px;}
.y33{bottom:92.340000px;}
.y6f{bottom:92.370000px;}
.yc4{bottom:92.385000px;}
.y92{bottom:92.505000px;}
.y32{bottom:92.520000px;}
.ybc{bottom:92.550000px;}
.y9b{bottom:92.565000px;}
.yac{bottom:92.685000px;}
.y41{bottom:92.700000px;}
.y72{bottom:92.730000px;}
.y9a{bottom:92.745000px;}
.yae{bottom:92.865000px;}
.ya1{bottom:92.880000px;}
.y74{bottom:92.910000px;}
.y133{bottom:125.625000px;}
.y134{bottom:125.805000px;}
.y139{bottom:125.985000px;}
.yaa{bottom:127.665000px;}
.yb8{bottom:128.340000px;}
.y3c{bottom:128.370000px;}
.yc3{bottom:128.385000px;}
.y90{bottom:128.505000px;}
.yb3{bottom:128.520000px;}
.ya3{bottom:128.550000px;}
.y91{bottom:128.685000px;}
.yb9{bottom:128.700000px;}
.ya4{bottom:128.730000px;}
.y99{bottom:128.745000px;}
.yab{bottom:128.865000px;}
.ya0{bottom:128.880000px;}
.y3f{bottom:128.910000px;}
.yc5{bottom:128.925000px;}
.ya2{bottom:129.060000px;}
.ya9{bottom:129.090000px;}
.y118{bottom:129.636000px;}
.y8f{bottom:135.225000px;}
.y23{bottom:135.576000px;}
.y76{bottom:136.665000px;}
.y122{bottom:141.165000px;}
.yf5{bottom:147.816000px;}
.yf0{bottom:152.310000px;}
.yd5{bottom:156.810000px;}
.yc0{bottom:159.345000px;}
.y16f{bottom:162.750000px;}
.y11f{bottom:163.845000px;}
.yb2{bottom:164.700000px;}
.y143{bottom:164.730000px;}
.yb1{bottom:164.880000px;}
.y12f{bottom:164.910000px;}
.y12c{bottom:164.925000px;}
.y126{bottom:165.045000px;}
.y9f{bottom:165.060000px;}
.ya8{bottom:165.090000px;}
.y98{bottom:165.105000px;}
.y127{bottom:165.225000px;}
.y141{bottom:165.240000px;}
.y132{bottom:165.270000px;}
.y12d{bottom:165.285000px;}
.y117{bottom:165.810000px;}
.y22{bottom:171.750000px;}
.y5f{bottom:179.490000px;}
.y14c{bottom:181.845000px;}
.y48{bottom:183.990000px;}
.ydb{bottom:186.345000px;}
.yef{bottom:187.950000px;}
.yd4{bottom:192.990000px;}
.y16e{bottom:199.110000px;}
.yb0{bottom:200.880000px;}
.y145{bottom:200.910000px;}
.yaf{bottom:201.060000px;}
.ya6{bottom:201.090000px;}
.y96{bottom:201.105000px;}
.y125{bottom:201.225000px;}
.y9d{bottom:201.240000px;}
.ya7{bottom:201.270000px;}
.y97{bottom:201.285000px;}
.y128{bottom:201.405000px;}
.y9e{bottom:201.420000px;}
.y130{bottom:201.450000px;}
.y13e{bottom:201.465000px;}
.y116{bottom:201.990000px;}
.y142{bottom:204.705000px;}
.y21{bottom:208.110000px;}
.y75{bottom:213.705000px;}
.y5e{bottom:215.850000px;}
.y47{bottom:220.350000px;}
.yee{bottom:224.850000px;}
.yd3{bottom:229.350000px;}
.y16d{bottom:235.290000px;}
.y12a{bottom:237.270000px;}
.y123{bottom:237.450000px;}
.y13b{bottom:237.465000px;}
.y124{bottom:237.630000px;}
.y13c{bottom:237.645000px;}
.y129{bottom:237.810000px;}
.y13d{bottom:237.825000px;}
.y115{bottom:238.350000px;}
.yfd{bottom:240.885000px;}
.y20{bottom:244.290000px;}
.y5d{bottom:252.030000px;}
.y14b{bottom:255.825000px;}
.y46{bottom:256.530000px;}
.yed{bottom:261.030000px;}
.yd2{bottom:265.530000px;}
.y16c{bottom:271.470000px;}
.ybe{bottom:272.565000px;}
.y114{bottom:274.530000px;}
.ya5{bottom:277.065000px;}
.yd8{bottom:279.930000px;}
.y1f{bottom:280.470000px;}
.y131{bottom:281.565000px;}
.y8d{bottom:284.625000px;}
.y5c{bottom:288.210000px;}
.y6e{bottom:290.565000px;}
.y45{bottom:292.710000px;}
.yec{bottom:297.210000px;}
.yd1{bottom:301.710000px;}
.y16b{bottom:307.650000px;}
.y113{bottom:310.170000px;}
.yda{bottom:316.110000px;}
.y1e{bottom:316.650000px;}
.y11e{bottom:317.745000px;}
.y5b{bottom:324.390000px;}
.y44{bottom:328.890000px;}
.yeb{bottom:333.390000px;}
.yd0{bottom:337.890000px;}
.y16a{bottom:344.010000px;}
.y14a{bottom:346.350000px;}
.y112{bottom:346.890000px;}
.y1d{bottom:352.650000px;}
.y30{bottom:353.010000px;}
.yfb{bottom:354.105000px;}
.y5a{bottom:360.750000px;}
.yf4{bottom:364.710000px;}
.y43{bottom:365.250000px;}
.yea{bottom:369.795000px;}
.ycf{bottom:374.295000px;}
.y8c{bottom:378.795000px;}
.y169{bottom:380.235000px;}
.y111{bottom:383.295000px;}
.y40{bottom:385.815000px;}
.y1c{bottom:389.235000px;}
.y140{bottom:390.315000px;}
.y11d{bottom:394.815000px;}
.y59{bottom:396.975000px;}
.y121{bottom:399.315000px;}
.y6d{bottom:403.815000px;}
.ye9{bottom:405.975000px;}
.yce{bottom:410.115000px;}
.y8b{bottom:414.975000px;}
.y168{bottom:416.415000px;}
.y110{bottom:419.475000px;}
.ybd{bottom:421.995000px;}
.y1b{bottom:425.415000px;}
.y58{bottom:433.155000px;}
.ye8{bottom:441.795000px;}
.ycd{bottom:446.655000px;}
.y8a{bottom:451.155000px;}
.y167{bottom:452.595000px;}
.y10f{bottom:455.655000px;}
.y1a{bottom:461.595000px;}
.yfa{bottom:467.175000px;}
.y68{bottom:468.795000px;}
.y57{bottom:469.335000px;}
.ye7{bottom:478.335000px;}
.ycc{bottom:482.835000px;}
.y89{bottom:487.335000px;}
.y166{bottom:488.955000px;}
.y67{bottom:490.035000px;}
.y149{bottom:491.475000px;}
.y10e{bottom:491.835000px;}
.y6c{bottom:497.415000px;}
.y19{bottom:497.955000px;}
.y3b{bottom:499.035000px;}
.y12e{bottom:503.535000px;}
.y56{bottom:505.515000px;}
.y11c{bottom:508.035000px;}
.ye6{bottom:514.515000px;}
.ycb{bottom:519.015000px;}
.y88{bottom:523.155000px;}
.y165{bottom:525.135000px;}
.y10d{bottom:528.015000px;}
.yd7{bottom:533.775000px;}
.y18{bottom:534.135000px;}
.yba{bottom:535.215000px;}
.y55{bottom:541.335000px;}
.y120{bottom:548.715000px;}
.ye5{bottom:550.875000px;}
.yca{bottom:555.375000px;}
.y87{bottom:559.875000px;}
.y164{bottom:561.315000px;}
.y54{bottom:562.395000px;}
.y10c{bottom:564.375000px;}
.y66{bottom:566.895000px;}
.y49{bottom:569.775000px;}
.yd6{bottom:569.955000px;}
.y17{bottom:570.315000px;}
.y170{bottom:570.495000px;}
.y13f{bottom:575.895000px;}
.ye4{bottom:587.055000px;}
.yc9{bottom:591.555000px;}
.y86{bottom:596.055000px;}
.y163{bottom:597.495000px;}
.y10b{bottom:600.555000px;}
.yf1{bottom:605.955000px;}
.y16{bottom:606.495000px;}
.yf7{bottom:616.575000px;}
.y11b{bottom:621.075000px;}
.ye3{bottom:623.235000px;}
.yc8{bottom:627.765000px;}
.y85{bottom:632.265000px;}
.y162{bottom:633.705000px;}
.y10a{bottom:636.225000px;}
.y148{bottom:636.405000px;}
.y53{bottom:639.285000px;}
.y69{bottom:642.165000px;}
.y2f{bottom:642.345000px;}
.y15{bottom:642.705000px;}
.y65{bottom:643.785000px;}
.y39{bottom:648.285000px;}
.ye2{bottom:659.445000px;}
.yc7{bottom:663.585000px;}
.y84{bottom:668.445000px;}
.y161{bottom:670.065000px;}
.y109{bottom:672.945000px;}
.y11a{bottom:678.525000px;}
.y2e{bottom:678.705000px;}
.y14{bottom:679.065000px;}
.yb7{bottom:684.645000px;}
.y37{bottom:689.145000px;}
.ye1{bottom:695.805000px;}
.yc6{bottom:699.765000px;}
.y83{bottom:704.805000px;}
.y160{bottom:706.245000px;}
.y108{bottom:709.305000px;}
.y119{bottom:714.705000px;}
.y2d{bottom:714.885000px;}
.y13{bottom:715.245000px;}
.y52{bottom:716.325000px;}
.y64{bottom:720.825000px;}
.y12b{bottom:725.325000px;}
.yf6{bottom:729.825000px;}
.ye0{bottom:731.985000px;}
.y82{bottom:740.985000px;}
.y15f{bottom:742.425000px;}
.y107{bottom:745.485000px;}
.y12{bottom:751.425000px;}
.ydf{bottom:752.505000px;}
.y15c{bottom:763.140000px;}
.y31{bottom:766.005000px;}
.y81{bottom:777.165000px;}
.y147{bottom:781.305000px;}
.y106{bottom:781.665000px;}
.y6a{bottom:787.065000px;}
.y11{bottom:787.245000px;}
.y2c{bottom:787.605000px;}
.y50{bottom:793.185000px;}
.y63{bottom:797.685000px;}
.y80{bottom:813.345000px;}
.y146{bottom:817.305000px;}
.y105{bottom:817.845000px;}
.y10{bottom:823.965000px;}
.yde{bottom:829.545000px;}
.yb4{bottom:834.045000px;}
.y158{bottom:836.925000px;}
.y7f{bottom:849.705000px;}
.y104{bottom:854.205000px;}
.y4a{bottom:859.605000px;}
.y60{bottom:859.785000px;}
.yf{bottom:860.145000px;}
.y4d{bottom:870.225000px;}
.y62{bottom:874.725000px;}
.y7e{bottom:885.930000px;}
.y103{bottom:890.430000px;}
.ye{bottom:896.010000px;}
.y2b{bottom:896.370000px;}
.y4c{bottom:910.950000px;}
.y7d{bottom:922.110000px;}
.y102{bottom:926.610000px;}
.y61{bottom:932.010000px;}
.yd{bottom:932.190000px;}
.y2a{bottom:932.550000px;}
.ydd{bottom:942.630000px;}
.y144{bottom:947.130000px;}
.y7c{bottom:958.290000px;}
.y101{bottom:962.790000px;}
.yc{bottom:968.550000px;}
.y29{bottom:968.910000px;}
.yf3{bottom:983.490000px;}
.y7b{bottom:993.930000px;}
.y100{bottom:998.970000px;}
.y4b{bottom:1004.550000px;}
.yb{bottom:1004.730000px;}
.y28{bottom:1005.090000px;}
.y7a{bottom:1015.170000px;}
.yc2{bottom:1019.670000px;}
.y154{bottom:1021.110000px;}
.yff{bottom:1034.790000px;}
.yd9{bottom:1040.730000px;}
.ya{bottom:1040.910000px;}
.y27{bottom:1041.270000px;}
.ydc{bottom:1055.850000px;}
.y9{bottom:1077.090000px;}
.y26{bottom:1077.450000px;}
.y77{bottom:1092.030000px;}
.y150{bottom:1095.090000px;}
.yf2{bottom:1113.270000px;}
.y8{bottom:1113.450000px;}
.y25{bottom:1113.810000px;}
.y6b{bottom:1149.480000px;}
.y7{bottom:1149.660000px;}
.y24{bottom:1150.020000px;}
.y3{bottom:1183.680000px;}
.y2{bottom:1206.900000px;}
.y1{bottom:1228.320000px;}
.ha{height:39.240000px;}
.h10{height:39.262500px;}
.h2a{height:39.270000px;}
.h4{height:59.436914px;}
.h6{height:60.465234px;}
.hd{height:61.423863px;}
.h37{height:69.432187px;}
.h36{height:72.345000px;}
.h34{height:72.390000px;}
.h33{height:72.525000px;}
.hf{height:75.405000px;}
.h14{height:75.411000px;}
.h9{height:75.420000px;}
.h1b{height:75.442500px;}
.h12{height:75.450000px;}
.h21{height:75.585000px;}
.h11{height:75.600000px;}
.h2b{height:75.621000px;}
.h3{height:82.635820px;}
.h2{height:82.676953px;}
.h5{height:84.898125px;}
.he{height:86.585445px;}
.h7{height:87.695156px;}
.h35{height:108.742500px;}
.hc{height:111.585000px;}
.h25{height:111.600000px;}
.h28{height:111.621000px;}
.h23{height:111.622500px;}
.h22{height:111.630000px;}
.h1e{height:111.765000px;}
.h29{height:111.771000px;}
.h8{height:111.780000px;}
.h13{height:111.801000px;}
.h26{height:111.810000px;}
.h2f{height:144.891000px;}
.h24{height:147.765000px;}
.h15{height:147.771000px;}
.h1c{height:147.780000px;}
.h1f{height:147.802500px;}
.hb{height:147.810000px;}
.h27{height:147.945000px;}
.h19{height:147.951000px;}
.h20{height:147.960000px;}
.h1d{height:147.981000px;}
.h31{height:184.125000px;}
.h32{height:184.155000px;}
.h2e{height:184.170000px;}
.h1a{height:220.305000px;}
.h18{height:220.335000px;}
.h16{height:220.350000px;}
.h17{height:220.500000px;}
.h2d{height:256.530000px;}
.h30{height:256.695000px;}
.h2c{height:256.701000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w2b{width:36.351000px;}
.w13{width:36.711000px;}
.w2e{width:87.696000px;}
.w2f{width:101.325000px;}
.w1a{width:108.021000px;}
.w1b{width:108.705000px;}
.w34{width:116.085000px;}
.wf{width:118.101000px;}
.w4{width:120.816000px;}
.w3{width:121.701000px;}
.w19{width:126.396000px;}
.w22{width:129.585000px;}
.w11{width:130.305000px;}
.w32{width:132.336000px;}
.w5{width:132.825000px;}
.w10{width:137.016000px;}
.w20{width:137.541000px;}
.w23{width:139.161000px;}
.w33{width:139.701000px;}
.w1f{width:143.811000px;}
.w2{width:146.691000px;}
.w25{width:147.276000px;}
.we{width:148.131000px;}
.w21{width:148.716000px;}
.w26{width:151.365000px;}
.w2c{width:151.935000px;}
.w8{width:152.130000px;}
.w1d{width:152.475000px;}
.w1c{width:153.171000px;}
.wc{width:157.860000px;}
.wa{width:160.215000px;}
.w30{width:160.395000px;}
.w2d{width:161.100000px;}
.w12{width:165.255000px;}
.w27{width:167.775000px;}
.w9{width:171.705000px;}
.w18{width:172.080000px;}
.w6{width:176.775000px;}
.w17{width:183.621000px;}
.w28{width:191.541000px;}
.w16{width:197.835000px;}
.wb{width:208.641000px;}
.w7{width:214.761000px;}
.w14{width:222.495000px;}
.w24{width:232.401000px;}
.w15{width:241.590000px;}
.w29{width:245.910000px;}
.w2a{width:261.375000px;}
.w31{width:310.701000px;}
.wd{width:332.355000px;}
.w1e{width:393.195000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x11{left:7.371000px;}
.x33{left:49.845000px;}
.x3{left:127.656000px;}
.x10{left:129.105000px;}
.x1{left:157.890000px;}
.x1e{left:165.825000px;}
.xe{left:170.130000px;}
.x5{left:181.470000px;}
.x1d{left:205.950000px;}
.x6{left:210.630000px;}
.x9{left:268.770000px;}
.x28{left:272.925000px;}
.x12{left:275.805000px;}
.x19{left:277.245000px;}
.x26{left:282.285000px;}
.x2{left:296.355000px;}
.x21{left:312.735000px;}
.x31{left:317.415000px;}
.x2f{left:320.655000px;}
.xb{left:330.915000px;}
.x8{left:337.755000px;}
.x16{left:343.875000px;}
.x4{left:356.295000px;}
.x2c{left:361.515000px;}
.x38{left:363.855000px;}
.xc{left:384.735000px;}
.x1f{left:388.515000px;}
.x1a{left:395.355000px;}
.x13{left:397.515000px;}
.x25{left:404.535000px;}
.x29{left:410.475000px;}
.xa{left:432.795000px;}
.x27{left:434.775000px;}
.x37{left:438.015000px;}
.x34{left:439.815000px;}
.xd{left:445.395000px;}
.xf{left:471.135000px;}
.x32{left:478.515000px;}
.x22{left:484.815000px;}
.x17{left:496.020000px;}
.x7{left:499.785000px;}
.x2d{left:508.800000px;}
.x14{left:518.340000px;}
.x1b{left:532.380000px;}
.x2a{left:559.200000px;}
.x30{left:566.580000px;}
.x35{left:572.160000px;}
.x23{left:611.220000px;}
.x20{left:630.120000px;}
.x15{left:651.180000px;}
.x2e{left:660.180000px;}
.x1c{left:662.700000px;}
.x18{left:667.740000px;}
.x2b{left:688.800000px;}
.x36{left:711.870000px;}
.x24{left:719.250000px;}
@media print{
.v1{vertical-align:-85.760000pt;}
.v0{vertical-align:0.000000pt;}
.ls36{letter-spacing:-0.800000pt;}
.ls2d{letter-spacing:-0.613333pt;}
.ls19{letter-spacing:-0.608000pt;}
.ls16{letter-spacing:-0.336533pt;}
.ls6{letter-spacing:-0.320000pt;}
.ls5{letter-spacing:-0.160000pt;}
.ls28{letter-spacing:-0.033280pt;}
.ls32{letter-spacing:-0.024960pt;}
.ls4{letter-spacing:0.000000pt;}
.ls33{letter-spacing:0.007680pt;}
.ls1{letter-spacing:0.024960pt;}
.ls25{letter-spacing:0.128000pt;}
.ls15{letter-spacing:0.184960pt;}
.ls14{letter-spacing:0.224640pt;}
.ls1d{letter-spacing:0.303467pt;}
.ls13{letter-spacing:0.311467pt;}
.ls3{letter-spacing:0.320000pt;}
.lse{letter-spacing:0.480000pt;}
.lsd{letter-spacing:1.120000pt;}
.ls17{letter-spacing:1.280000pt;}
.lsf{letter-spacing:1.760000pt;}
.lsb{letter-spacing:1.872640pt;}
.ls2e{letter-spacing:2.400000pt;}
.ls1a{letter-spacing:3.680000pt;}
.lsa{letter-spacing:4.960000pt;}
.ls2f{letter-spacing:7.520000pt;}
.ls2a{letter-spacing:8.160000pt;}
.ls37{letter-spacing:9.440000pt;}
.ls30{letter-spacing:10.080000pt;}
.ls2{letter-spacing:10.880000pt;}
.ls23{letter-spacing:11.360000pt;}
.ls24{letter-spacing:12.000000pt;}
.ls31{letter-spacing:12.640000pt;}
.lsc{letter-spacing:13.280000pt;}
.ls7{letter-spacing:13.920000pt;}
.ls2b{letter-spacing:14.560000pt;}
.ls21{letter-spacing:17.120000pt;}
.ls1b{letter-spacing:17.760000pt;}
.ls1c{letter-spacing:18.400000pt;}
.ls18{letter-spacing:20.960000pt;}
.ls22{letter-spacing:23.520000pt;}
.ls2c{letter-spacing:27.360000pt;}
.ls20{letter-spacing:28.000000pt;}
.ls1e{letter-spacing:31.840000pt;}
.ls27{letter-spacing:32.480000pt;}
.ls10{letter-spacing:33.120000pt;}
.ls11{letter-spacing:33.760000pt;}
.ls1f{letter-spacing:35.040000pt;}
.ls29{letter-spacing:43.360000pt;}
.ls12{letter-spacing:71.520000pt;}
.ls9{letter-spacing:93.743360pt;}
.ls35{letter-spacing:112.303360pt;}
.ls34{letter-spacing:112.410027pt;}
.ls8{letter-spacing:149.423360pt;}
.ls26{letter-spacing:186.192640pt;}
.ls0{letter-spacing:2140.426667pt;}
.ws6{word-spacing:-53.120000pt;}
.ws0{word-spacing:-22.897280pt;}
.ws5{word-spacing:-19.040000pt;}
.ws7{word-spacing:-19.031467pt;}
.ws9{word-spacing:-19.023467pt;}
.wsd{word-spacing:-18.744960pt;}
.ws2{word-spacing:-18.720000pt;}
.wsc{word-spacing:-18.695040pt;}
.wsa{word-spacing:-18.686720pt;}
.ws4{word-spacing:-18.400000pt;}
.wse{word-spacing:-18.383467pt;}
.ws8{word-spacing:-18.112000pt;}
.wsb{word-spacing:-18.106667pt;}
.ws1{word-spacing:-16.000000pt;}
.ws3{word-spacing:0.000000pt;}
._a{margin-left:-5.628587pt;}
._9{margin-left:-4.082773pt;}
._12{margin-left:-2.523947pt;}
._2{margin-left:-1.152000pt;}
._0{width:1.306880pt;}
._1{width:2.712747pt;}
._b{width:3.968640pt;}
._c{width:5.120640pt;}
._17{width:6.019200pt;}
._1d{width:7.212160pt;}
._6{width:8.115840pt;}
._8{width:9.120000pt;}
._7{width:10.013867pt;}
._f{width:10.968107pt;}
._13{width:12.619093pt;}
._14{width:14.161493pt;}
._d{width:15.425280pt;}
._e{width:16.352640pt;}
._25{width:17.400960pt;}
._22{width:20.292480pt;}
._15{width:21.565440pt;}
._16{width:22.538880pt;}
._37{width:23.434027pt;}
._18{width:24.368427pt;}
._1f{width:25.937280pt;}
._1a{width:27.135360pt;}
._19{width:28.333440pt;}
._4{width:29.600640pt;}
._3{width:30.551040pt;}
._3b{width:31.631360pt;}
._21{width:32.572800pt;}
._20{width:33.500160pt;}
._1c{width:34.968960pt;}
._1b{width:36.195840pt;}
._26{width:37.261440pt;}
._5{width:38.344107pt;}
._3d{width:39.408853pt;}
._27{width:40.360320pt;}
._1e{width:42.051840pt;}
._24{width:43.106347pt;}
._23{width:44.179200pt;}
._3c{width:45.416107pt;}
._7b{width:46.604160pt;}
._2d{width:47.773440pt;}
._2c{width:48.678400pt;}
._38{width:49.840000pt;}
._54{width:50.918400pt;}
._63{width:52.266880pt;}
._3e{width:54.017280pt;}
._2b{width:56.368000pt;}
._31{width:57.841920pt;}
._5f{width:59.754240pt;}
._30{width:61.130880pt;}
._64{width:62.824320pt;}
._73{width:63.872640pt;}
._2e{width:65.548800pt;}
._4c{width:67.017600pt;}
._5c{width:68.112000pt;}
._56{width:69.592320pt;}
._28{width:70.486400pt;}
._2a{width:71.415893pt;}
._29{width:72.312107pt;}
._60{width:74.206080pt;}
._4b{width:77.230080pt;}
._36{width:78.911787pt;}
._2f{width:80.421120pt;}
._62{width:82.177920pt;}
._40{width:83.491200pt;}
._46{width:84.759040pt;}
._68{width:85.887360pt;}
._52{width:88.536960pt;}
._11{width:90.604800pt;}
._10{width:91.532160pt;}
._6f{width:92.626560pt;}
._6b{width:94.723200pt;}
._53{width:95.921280pt;}
._51{width:97.793280pt;}
._7d{width:98.870400pt;}
._77{width:102.389760pt;}
._66{width:105.310080pt;}
._43{width:106.358400pt;}
._34{width:108.351360pt;}
._70{width:109.503360pt;}
._55{width:111.778560pt;}
._45{width:114.295680pt;}
._41{width:115.519360pt;}
._59{width:120.332160pt;}
._79{width:122.728320pt;}
._80{width:124.151040pt;}
._88{width:125.703467pt;}
._82{width:126.622080pt;}
._57{width:130.394880pt;}
._5d{width:134.784000pt;}
._76{width:136.010880pt;}
._65{width:137.554560pt;}
._81{width:139.904640pt;}
._5b{width:141.701760pt;}
._7a{width:143.769600pt;}
._71{width:146.540160pt;}
._61{width:148.112640pt;}
._4d{width:149.535360pt;}
._3f{width:150.433920pt;}
._67{width:151.773440pt;}
._35{width:152.750080pt;}
._78{width:155.376000pt;}
._32{width:157.622400pt;}
._48{width:160.542720pt;}
._72{width:164.136960pt;}
._58{width:167.356800pt;}
._5a{width:176.641920pt;}
._3a{width:181.883520pt;}
._47{width:183.409920pt;}
._7c{width:184.504320pt;}
._6a{width:192.291840pt;}
._4e{width:193.288960pt;}
._83{width:197.982720pt;}
._50{width:202.429440pt;}
._39{width:206.593920pt;}
._87{width:210.637440pt;}
._4a{width:213.707520pt;}
._86{width:215.383680pt;}
._75{width:218.424960pt;}
._49{width:231.229440pt;}
._44{width:237.473280pt;}
._6e{width:241.729920pt;}
._7f{width:243.434880pt;}
._33{width:245.531520pt;}
._7e{width:252.345600pt;}
._4f{width:268.295040pt;}
._69{width:273.335680pt;}
._42{width:276.681600pt;}
._85{width:285.742080pt;}
._84{width:289.486080pt;}
._6d{width:304.387200pt;}
._6c{width:329.172480pt;}
._74{width:360.023040pt;}
._5e{width:367.436160pt;}
.fs1{font-size:2.560000pt;}
.fs4{font-size:53.120000pt;}
.fs3{font-size:64.000000pt;}
.fs2{font-size:74.880000pt;}
.fs0{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.y15e{bottom:14.866667pt;}
.y152{bottom:14.880000pt;}
.y14e{bottom:15.026667pt;}
.y157{bottom:15.040000pt;}
.y137{bottom:15.186667pt;}
.y14f{bottom:15.346667pt;}
.y3e{bottom:17.600000pt;}
.y71{bottom:17.746667pt;}
.y35{bottom:17.760000pt;}
.yf8{bottom:17.786667pt;}
.y4e{bottom:17.800000pt;}
.y6{bottom:17.920000pt;}
.y94{bottom:18.066667pt;}
.yad{bottom:18.072000pt;}
.y3a{bottom:18.080000pt;}
.yf9{bottom:18.106667pt;}
.y4f{bottom:18.120000pt;}
.y15d{bottom:47.026667pt;}
.y151{bottom:47.066667pt;}
.y14d{bottom:47.186667pt;}
.y155{bottom:47.200000pt;}
.y15a{bottom:47.240000pt;}
.y136{bottom:47.346667pt;}
.y153{bottom:47.386667pt;}
.y13a{bottom:47.506667pt;}
.y156{bottom:47.520000pt;}
.y70{bottom:49.746667pt;}
.y34{bottom:49.760000pt;}
.y78{bottom:49.786667pt;}
.y8e{bottom:49.906667pt;}
.y36{bottom:49.920000pt;}
.yfc{bottom:49.946667pt;}
.yb5{bottom:49.960000pt;}
.y93{bottom:50.066667pt;}
.y42{bottom:50.080000pt;}
.y95{bottom:50.106667pt;}
.y9c{bottom:50.120000pt;}
.y73{bottom:50.226667pt;}
.y38{bottom:50.240000pt;}
.y79{bottom:50.266667pt;}
.yb6{bottom:50.280000pt;}
.yc1{bottom:50.386667pt;}
.y51{bottom:50.400000pt;}
.y5{bottom:60.640000pt;}
.y159{bottom:79.400000pt;}
.y135{bottom:79.666667pt;}
.y15b{bottom:79.720000pt;}
.y138{bottom:79.826667pt;}
.y4{bottom:81.280000pt;}
.yfe{bottom:81.906667pt;}
.y3d{bottom:81.920000pt;}
.ybb{bottom:81.946667pt;}
.ybf{bottom:82.066667pt;}
.y33{bottom:82.080000pt;}
.y6f{bottom:82.106667pt;}
.yc4{bottom:82.120000pt;}
.y92{bottom:82.226667pt;}
.y32{bottom:82.240000pt;}
.ybc{bottom:82.266667pt;}
.y9b{bottom:82.280000pt;}
.yac{bottom:82.386667pt;}
.y41{bottom:82.400000pt;}
.y72{bottom:82.426667pt;}
.y9a{bottom:82.440000pt;}
.yae{bottom:82.546667pt;}
.ya1{bottom:82.560000pt;}
.y74{bottom:82.586667pt;}
.y133{bottom:111.666667pt;}
.y134{bottom:111.826667pt;}
.y139{bottom:111.986667pt;}
.yaa{bottom:113.480000pt;}
.yb8{bottom:114.080000pt;}
.y3c{bottom:114.106667pt;}
.yc3{bottom:114.120000pt;}
.y90{bottom:114.226667pt;}
.yb3{bottom:114.240000pt;}
.ya3{bottom:114.266667pt;}
.y91{bottom:114.386667pt;}
.yb9{bottom:114.400000pt;}
.ya4{bottom:114.426667pt;}
.y99{bottom:114.440000pt;}
.yab{bottom:114.546667pt;}
.ya0{bottom:114.560000pt;}
.y3f{bottom:114.586667pt;}
.yc5{bottom:114.600000pt;}
.ya2{bottom:114.720000pt;}
.ya9{bottom:114.746667pt;}
.y118{bottom:115.232000pt;}
.y8f{bottom:120.200000pt;}
.y23{bottom:120.512000pt;}
.y76{bottom:121.480000pt;}
.y122{bottom:125.480000pt;}
.yf5{bottom:131.392000pt;}
.yf0{bottom:135.386667pt;}
.yd5{bottom:139.386667pt;}
.yc0{bottom:141.640000pt;}
.y16f{bottom:144.666667pt;}
.y11f{bottom:145.640000pt;}
.yb2{bottom:146.400000pt;}
.y143{bottom:146.426667pt;}
.yb1{bottom:146.560000pt;}
.y12f{bottom:146.586667pt;}
.y12c{bottom:146.600000pt;}
.y126{bottom:146.706667pt;}
.y9f{bottom:146.720000pt;}
.ya8{bottom:146.746667pt;}
.y98{bottom:146.760000pt;}
.y127{bottom:146.866667pt;}
.y141{bottom:146.880000pt;}
.y132{bottom:146.906667pt;}
.y12d{bottom:146.920000pt;}
.y117{bottom:147.386667pt;}
.y22{bottom:152.666667pt;}
.y5f{bottom:159.546667pt;}
.y14c{bottom:161.640000pt;}
.y48{bottom:163.546667pt;}
.ydb{bottom:165.640000pt;}
.yef{bottom:167.066667pt;}
.yd4{bottom:171.546667pt;}
.y16e{bottom:176.986667pt;}
.yb0{bottom:178.560000pt;}
.y145{bottom:178.586667pt;}
.yaf{bottom:178.720000pt;}
.ya6{bottom:178.746667pt;}
.y96{bottom:178.760000pt;}
.y125{bottom:178.866667pt;}
.y9d{bottom:178.880000pt;}
.ya7{bottom:178.906667pt;}
.y97{bottom:178.920000pt;}
.y128{bottom:179.026667pt;}
.y9e{bottom:179.040000pt;}
.y130{bottom:179.066667pt;}
.y13e{bottom:179.080000pt;}
.y116{bottom:179.546667pt;}
.y142{bottom:181.960000pt;}
.y21{bottom:184.986667pt;}
.y75{bottom:189.960000pt;}
.y5e{bottom:191.866667pt;}
.y47{bottom:195.866667pt;}
.yee{bottom:199.866667pt;}
.yd3{bottom:203.866667pt;}
.y16d{bottom:209.146667pt;}
.y12a{bottom:210.906667pt;}
.y123{bottom:211.066667pt;}
.y13b{bottom:211.080000pt;}
.y124{bottom:211.226667pt;}
.y13c{bottom:211.240000pt;}
.y129{bottom:211.386667pt;}
.y13d{bottom:211.400000pt;}
.y115{bottom:211.866667pt;}
.yfd{bottom:214.120000pt;}
.y20{bottom:217.146667pt;}
.y5d{bottom:224.026667pt;}
.y14b{bottom:227.400000pt;}
.y46{bottom:228.026667pt;}
.yed{bottom:232.026667pt;}
.yd2{bottom:236.026667pt;}
.y16c{bottom:241.306667pt;}
.ybe{bottom:242.280000pt;}
.y114{bottom:244.026667pt;}
.ya5{bottom:246.280000pt;}
.yd8{bottom:248.826667pt;}
.y1f{bottom:249.306667pt;}
.y131{bottom:250.280000pt;}
.y8d{bottom:253.000000pt;}
.y5c{bottom:256.186667pt;}
.y6e{bottom:258.280000pt;}
.y45{bottom:260.186667pt;}
.yec{bottom:264.186667pt;}
.yd1{bottom:268.186667pt;}
.y16b{bottom:273.466667pt;}
.y113{bottom:275.706667pt;}
.yda{bottom:280.986667pt;}
.y1e{bottom:281.466667pt;}
.y11e{bottom:282.440000pt;}
.y5b{bottom:288.346667pt;}
.y44{bottom:292.346667pt;}
.yeb{bottom:296.346667pt;}
.yd0{bottom:300.346667pt;}
.y16a{bottom:305.786667pt;}
.y14a{bottom:307.866667pt;}
.y112{bottom:308.346667pt;}
.y1d{bottom:313.466667pt;}
.y30{bottom:313.786667pt;}
.yfb{bottom:314.760000pt;}
.y5a{bottom:320.666667pt;}
.yf4{bottom:324.186667pt;}
.y43{bottom:324.666667pt;}
.yea{bottom:328.706667pt;}
.ycf{bottom:332.706667pt;}
.y8c{bottom:336.706667pt;}
.y169{bottom:337.986667pt;}
.y111{bottom:340.706667pt;}
.y40{bottom:342.946667pt;}
.y1c{bottom:345.986667pt;}
.y140{bottom:346.946667pt;}
.y11d{bottom:350.946667pt;}
.y59{bottom:352.866667pt;}
.y121{bottom:354.946667pt;}
.y6d{bottom:358.946667pt;}
.ye9{bottom:360.866667pt;}
.yce{bottom:364.546667pt;}
.y8b{bottom:368.866667pt;}
.y168{bottom:370.146667pt;}
.y110{bottom:372.866667pt;}
.ybd{bottom:375.106667pt;}
.y1b{bottom:378.146667pt;}
.y58{bottom:385.026667pt;}
.ye8{bottom:392.706667pt;}
.ycd{bottom:397.026667pt;}
.y8a{bottom:401.026667pt;}
.y167{bottom:402.306667pt;}
.y10f{bottom:405.026667pt;}
.y1a{bottom:410.306667pt;}
.yfa{bottom:415.266667pt;}
.y68{bottom:416.706667pt;}
.y57{bottom:417.186667pt;}
.ye7{bottom:425.186667pt;}
.ycc{bottom:429.186667pt;}
.y89{bottom:433.186667pt;}
.y166{bottom:434.626667pt;}
.y67{bottom:435.586667pt;}
.y149{bottom:436.866667pt;}
.y10e{bottom:437.186667pt;}
.y6c{bottom:442.146667pt;}
.y19{bottom:442.626667pt;}
.y3b{bottom:443.586667pt;}
.y12e{bottom:447.586667pt;}
.y56{bottom:449.346667pt;}
.y11c{bottom:451.586667pt;}
.ye6{bottom:457.346667pt;}
.ycb{bottom:461.346667pt;}
.y88{bottom:465.026667pt;}
.y165{bottom:466.786667pt;}
.y10d{bottom:469.346667pt;}
.yd7{bottom:474.466667pt;}
.y18{bottom:474.786667pt;}
.yba{bottom:475.746667pt;}
.y55{bottom:481.186667pt;}
.y120{bottom:487.746667pt;}
.ye5{bottom:489.666667pt;}
.yca{bottom:493.666667pt;}
.y87{bottom:497.666667pt;}
.y164{bottom:498.946667pt;}
.y54{bottom:499.906667pt;}
.y10c{bottom:501.666667pt;}
.y66{bottom:503.906667pt;}
.y49{bottom:506.466667pt;}
.yd6{bottom:506.626667pt;}
.y17{bottom:506.946667pt;}
.y170{bottom:507.106667pt;}
.y13f{bottom:511.906667pt;}
.ye4{bottom:521.826667pt;}
.yc9{bottom:525.826667pt;}
.y86{bottom:529.826667pt;}
.y163{bottom:531.106667pt;}
.y10b{bottom:533.826667pt;}
.yf1{bottom:538.626667pt;}
.y16{bottom:539.106667pt;}
.yf7{bottom:548.066667pt;}
.y11b{bottom:552.066667pt;}
.ye3{bottom:553.986667pt;}
.yc8{bottom:558.013333pt;}
.y85{bottom:562.013333pt;}
.y162{bottom:563.293333pt;}
.y10a{bottom:565.533333pt;}
.y148{bottom:565.693333pt;}
.y53{bottom:568.253333pt;}
.y69{bottom:570.813333pt;}
.y2f{bottom:570.973333pt;}
.y15{bottom:571.293333pt;}
.y65{bottom:572.253333pt;}
.y39{bottom:576.253333pt;}
.ye2{bottom:586.173333pt;}
.yc7{bottom:589.853333pt;}
.y84{bottom:594.173333pt;}
.y161{bottom:595.613333pt;}
.y109{bottom:598.173333pt;}
.y11a{bottom:603.133333pt;}
.y2e{bottom:603.293333pt;}
.y14{bottom:603.613333pt;}
.yb7{bottom:608.573333pt;}
.y37{bottom:612.573333pt;}
.ye1{bottom:618.493333pt;}
.yc6{bottom:622.013333pt;}
.y83{bottom:626.493333pt;}
.y160{bottom:627.773333pt;}
.y108{bottom:630.493333pt;}
.y119{bottom:635.293333pt;}
.y2d{bottom:635.453333pt;}
.y13{bottom:635.773333pt;}
.y52{bottom:636.733333pt;}
.y64{bottom:640.733333pt;}
.y12b{bottom:644.733333pt;}
.yf6{bottom:648.733333pt;}
.ye0{bottom:650.653333pt;}
.y82{bottom:658.653333pt;}
.y15f{bottom:659.933333pt;}
.y107{bottom:662.653333pt;}
.y12{bottom:667.933333pt;}
.ydf{bottom:668.893333pt;}
.y15c{bottom:678.346667pt;}
.y31{bottom:680.893333pt;}
.y81{bottom:690.813333pt;}
.y147{bottom:694.493333pt;}
.y106{bottom:694.813333pt;}
.y6a{bottom:699.613333pt;}
.y11{bottom:699.773333pt;}
.y2c{bottom:700.093333pt;}
.y50{bottom:705.053333pt;}
.y63{bottom:709.053333pt;}
.y80{bottom:722.973333pt;}
.y146{bottom:726.493333pt;}
.y105{bottom:726.973333pt;}
.y10{bottom:732.413333pt;}
.yde{bottom:737.373333pt;}
.yb4{bottom:741.373333pt;}
.y158{bottom:743.933333pt;}
.y7f{bottom:755.293333pt;}
.y104{bottom:759.293333pt;}
.y4a{bottom:764.093333pt;}
.y60{bottom:764.253333pt;}
.yf{bottom:764.573333pt;}
.y4d{bottom:773.533333pt;}
.y62{bottom:777.533333pt;}
.y7e{bottom:787.493333pt;}
.y103{bottom:791.493333pt;}
.ye{bottom:796.453333pt;}
.y2b{bottom:796.773333pt;}
.y4c{bottom:809.733333pt;}
.y7d{bottom:819.653333pt;}
.y102{bottom:823.653333pt;}
.y61{bottom:828.453333pt;}
.yd{bottom:828.613333pt;}
.y2a{bottom:828.933333pt;}
.ydd{bottom:837.893333pt;}
.y144{bottom:841.893333pt;}
.y7c{bottom:851.813333pt;}
.y101{bottom:855.813333pt;}
.yc{bottom:860.933333pt;}
.y29{bottom:861.253333pt;}
.yf3{bottom:874.213333pt;}
.y7b{bottom:883.493333pt;}
.y100{bottom:887.973333pt;}
.y4b{bottom:892.933333pt;}
.yb{bottom:893.093333pt;}
.y28{bottom:893.413333pt;}
.y7a{bottom:902.373333pt;}
.yc2{bottom:906.373333pt;}
.y154{bottom:907.653333pt;}
.yff{bottom:919.813333pt;}
.yd9{bottom:925.093333pt;}
.ya{bottom:925.253333pt;}
.y27{bottom:925.573333pt;}
.ydc{bottom:938.533333pt;}
.y9{bottom:957.413333pt;}
.y26{bottom:957.733333pt;}
.y77{bottom:970.693333pt;}
.y150{bottom:973.413333pt;}
.yf2{bottom:989.573333pt;}
.y8{bottom:989.733333pt;}
.y25{bottom:990.053333pt;}
.y6b{bottom:1021.760000pt;}
.y7{bottom:1021.920000pt;}
.y24{bottom:1022.240000pt;}
.y3{bottom:1052.160000pt;}
.y2{bottom:1072.800000pt;}
.y1{bottom:1091.840000pt;}
.ha{height:34.880000pt;}
.h10{height:34.900000pt;}
.h2a{height:34.906667pt;}
.h4{height:52.832812pt;}
.h6{height:53.746875pt;}
.hd{height:54.598989pt;}
.h37{height:61.717500pt;}
.h36{height:64.306667pt;}
.h34{height:64.346667pt;}
.h33{height:64.466667pt;}
.hf{height:67.026667pt;}
.h14{height:67.032000pt;}
.h9{height:67.040000pt;}
.h1b{height:67.060000pt;}
.h12{height:67.066667pt;}
.h21{height:67.186667pt;}
.h11{height:67.200000pt;}
.h2b{height:67.218667pt;}
.h3{height:73.454062pt;}
.h2{height:73.490625pt;}
.h5{height:75.465000pt;}
.he{height:76.964840pt;}
.h7{height:77.951250pt;}
.h35{height:96.660000pt;}
.hc{height:99.186667pt;}
.h25{height:99.200000pt;}
.h28{height:99.218667pt;}
.h23{height:99.220000pt;}
.h22{height:99.226667pt;}
.h1e{height:99.346667pt;}
.h29{height:99.352000pt;}
.h8{height:99.360000pt;}
.h13{height:99.378667pt;}
.h26{height:99.386667pt;}
.h2f{height:128.792000pt;}
.h24{height:131.346667pt;}
.h15{height:131.352000pt;}
.h1c{height:131.360000pt;}
.h1f{height:131.380000pt;}
.hb{height:131.386667pt;}
.h27{height:131.506667pt;}
.h19{height:131.512000pt;}
.h20{height:131.520000pt;}
.h1d{height:131.538667pt;}
.h31{height:163.666667pt;}
.h32{height:163.693333pt;}
.h2e{height:163.706667pt;}
.h1a{height:195.826667pt;}
.h18{height:195.853333pt;}
.h16{height:195.866667pt;}
.h17{height:196.000000pt;}
.h2d{height:228.026667pt;}
.h30{height:228.173333pt;}
.h2c{height:228.178667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w2b{width:32.312000pt;}
.w13{width:32.632000pt;}
.w2e{width:77.952000pt;}
.w2f{width:90.066667pt;}
.w1a{width:96.018667pt;}
.w1b{width:96.626667pt;}
.w34{width:103.186667pt;}
.wf{width:104.978667pt;}
.w4{width:107.392000pt;}
.w3{width:108.178667pt;}
.w19{width:112.352000pt;}
.w22{width:115.186667pt;}
.w11{width:115.826667pt;}
.w32{width:117.632000pt;}
.w5{width:118.066667pt;}
.w10{width:121.792000pt;}
.w20{width:122.258667pt;}
.w23{width:123.698667pt;}
.w33{width:124.178667pt;}
.w1f{width:127.832000pt;}
.w2{width:130.392000pt;}
.w25{width:130.912000pt;}
.we{width:131.672000pt;}
.w21{width:132.192000pt;}
.w26{width:134.546667pt;}
.w2c{width:135.053333pt;}
.w8{width:135.226667pt;}
.w1d{width:135.533333pt;}
.w1c{width:136.152000pt;}
.wc{width:140.320000pt;}
.wa{width:142.413333pt;}
.w30{width:142.573333pt;}
.w2d{width:143.200000pt;}
.w12{width:146.893333pt;}
.w27{width:149.133333pt;}
.w9{width:152.626667pt;}
.w18{width:152.960000pt;}
.w6{width:157.133333pt;}
.w17{width:163.218667pt;}
.w28{width:170.258667pt;}
.w16{width:175.853333pt;}
.wb{width:185.458667pt;}
.w7{width:190.898667pt;}
.w14{width:197.773333pt;}
.w24{width:206.578667pt;}
.w15{width:214.746667pt;}
.w29{width:218.586667pt;}
.w2a{width:232.333333pt;}
.w31{width:276.178667pt;}
.wd{width:295.426667pt;}
.w1e{width:349.506667pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x11{left:6.552000pt;}
.x33{left:44.306667pt;}
.x3{left:113.472000pt;}
.x10{left:114.760000pt;}
.x1{left:140.346667pt;}
.x1e{left:147.400000pt;}
.xe{left:151.226667pt;}
.x5{left:161.306667pt;}
.x1d{left:183.066667pt;}
.x6{left:187.226667pt;}
.x9{left:238.906667pt;}
.x28{left:242.600000pt;}
.x12{left:245.160000pt;}
.x19{left:246.440000pt;}
.x26{left:250.920000pt;}
.x2{left:263.426667pt;}
.x21{left:277.986667pt;}
.x31{left:282.146667pt;}
.x2f{left:285.026667pt;}
.xb{left:294.146667pt;}
.x8{left:300.226667pt;}
.x16{left:305.666667pt;}
.x4{left:316.706667pt;}
.x2c{left:321.346667pt;}
.x38{left:323.426667pt;}
.xc{left:341.986667pt;}
.x1f{left:345.346667pt;}
.x1a{left:351.426667pt;}
.x13{left:353.346667pt;}
.x25{left:359.586667pt;}
.x29{left:364.866667pt;}
.xa{left:384.706667pt;}
.x27{left:386.466667pt;}
.x37{left:389.346667pt;}
.x34{left:390.946667pt;}
.xd{left:395.906667pt;}
.xf{left:418.786667pt;}
.x32{left:425.346667pt;}
.x22{left:430.946667pt;}
.x17{left:440.906667pt;}
.x7{left:444.253333pt;}
.x2d{left:452.266667pt;}
.x14{left:460.746667pt;}
.x1b{left:473.226667pt;}
.x2a{left:497.066667pt;}
.x30{left:503.626667pt;}
.x35{left:508.586667pt;}
.x23{left:543.306667pt;}
.x20{left:560.106667pt;}
.x15{left:578.826667pt;}
.x2e{left:586.826667pt;}
.x1c{left:589.066667pt;}
.x18{left:593.546667pt;}
.x2b{left:612.266667pt;}
.x36{left:632.773333pt;}
.x24{left:639.333333pt;}
}




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