
    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_9bce0a319df83ae69d3d46ec.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.000000;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_657d5e5e954f3c47c6dc97d2.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.206055;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_1ffe8eb38a644e8d0a09d4cb.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.014160;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_e8ca17cf5845cd994e50a746.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.206055;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_ebdccd9127e5a28a18517b84.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.435059;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_d76f641bedf75c591bfd6fe2.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.800781;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_a690c620ca0376856383e199.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.000000;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_0c0c2e2036bec34e90ce366d.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.372070;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_7a2c804ba765d83aa5e287ce.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_5d5fffee28d4ac619e5567cf.woff2')format("woff");}.ffa{font-family:ffa;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;}
.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);}
.v3{vertical-align:-15.600000px;}
.v2{vertical-align:-12.000000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:15.600000px;}
.ls20{letter-spacing:-1.398000px;}
.lsa{letter-spacing:-1.080000px;}
.lsb{letter-spacing:-0.954000px;}
.ls18{letter-spacing:-0.684000px;}
.ls12{letter-spacing:-0.660000px;}
.ls7{letter-spacing:-0.600000px;}
.ls24{letter-spacing:-0.594000px;}
.ls8{letter-spacing:-0.384000px;}
.ls27{letter-spacing:-0.300000px;}
.ls1f{letter-spacing:-0.162000px;}
.ls1b{letter-spacing:-0.114000px;}
.ls23{letter-spacing:-0.054000px;}
.ls25{letter-spacing:-0.024000px;}
.ls9{letter-spacing:-0.012000px;}
.ls6{letter-spacing:0.000000px;}
.lse{letter-spacing:0.060000px;}
.lsd{letter-spacing:0.120000px;}
.ls1c{letter-spacing:0.138000px;}
.ls15{letter-spacing:0.180000px;}
.ls21{letter-spacing:0.270000px;}
.ls2{letter-spacing:0.288000px;}
.ls5{letter-spacing:0.300000px;}
.ls1a{letter-spacing:0.396000px;}
.ls14{letter-spacing:0.420000px;}
.ls1d{letter-spacing:0.450000px;}
.ls26{letter-spacing:0.534000px;}
.lsc{letter-spacing:0.540000px;}
.ls22{letter-spacing:0.564000px;}
.ls1{letter-spacing:0.600000px;}
.ls1e{letter-spacing:0.972000px;}
.ls19{letter-spacing:1.086000px;}
.ls16{letter-spacing:1.200000px;}
.ls17{letter-spacing:1.224000px;}
.lsf{letter-spacing:1.320000px;}
.ls28{letter-spacing:1.734000px;}
.ls10{letter-spacing:1.800000px;}
.ls11{letter-spacing:7.800000px;}
.ls3{letter-spacing:10.800000px;}
.ls4{letter-spacing:45.900000px;}
.ls29{letter-spacing:47.700000px;}
.ls0{letter-spacing:54.960000px;}
.ls13{letter-spacing:74.520000px;}
.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;}
}
.wsf{word-spacing:-60.000000px;}
.ws25{word-spacing:-54.000000px;}
.ws4{word-spacing:-48.000000px;}
.wse{word-spacing:-15.540000px;}
.ws7{word-spacing:-15.000000px;}
.ws12{word-spacing:-14.724000px;}
.ws14{word-spacing:-14.586000px;}
.ws19{word-spacing:-14.472000px;}
.ws16{word-spacing:-14.100000px;}
.ws1f{word-spacing:-14.064000px;}
.ws23{word-spacing:-14.034000px;}
.ws1e{word-spacing:-13.950000px;}
.ws8{word-spacing:-13.920000px;}
.ws15{word-spacing:-13.896000px;}
.ws1d{word-spacing:-13.770000px;}
.ws18{word-spacing:-13.638000px;}
.ws10{word-spacing:-13.500000px;}
.ws24{word-spacing:-13.488000px;}
.ws21{word-spacing:-13.476000px;}
.ws22{word-spacing:-13.446000px;}
.ws17{word-spacing:-13.386000px;}
.ws1a{word-spacing:-13.338000px;}
.ws20{word-spacing:-12.906000px;}
.ws1b{word-spacing:-12.900000px;}
.ws13{word-spacing:-12.816000px;}
.ws0{word-spacing:-12.300000px;}
.ws5{word-spacing:-12.288000px;}
.ws1c{word-spacing:-12.102000px;}
.ws6{word-spacing:-12.000000px;}
.ws1{word-spacing:-11.616000px;}
.wsa{word-spacing:-11.100000px;}
.wsb{word-spacing:-10.500000px;}
.wsc{word-spacing:-9.900000px;}
.ws9{word-spacing:-9.546000px;}
.ws2{word-spacing:-9.000000px;}
.ws11{word-spacing:-8.400000px;}
.wsd{word-spacing:0.000000px;}
.ws3{word-spacing:45.000000px;}
._13{margin-left:-4.332000px;}
._6{margin-left:-3.042000px;}
._1{margin-left:-1.056000px;}
._0{width:1.188000px;}
._7{width:2.700000px;}
._a{width:4.146000px;}
._8{width:5.346000px;}
._9{width:6.642000px;}
._b{width:7.740000px;}
._11{width:9.456000px;}
._12{width:10.788000px;}
._d{width:11.802000px;}
._14{width:13.464000px;}
._1c{width:14.586000px;}
._c{width:15.792000px;}
._f{width:17.004000px;}
._15{width:18.180000px;}
._3{width:22.188000px;}
._19{width:23.304000px;}
._18{width:25.056000px;}
._5{width:26.400000px;}
._1b{width:27.594000px;}
._4{width:37.500000px;}
._1a{width:46.806000px;}
._1e{width:50.520000px;}
._1d{width:51.570000px;}
._17{width:73.350000px;}
._e{width:80.334000px;}
._2{width:345.792000px;}
._16{width:1838.640000px;}
._10{width:1862.640000px;}
.fc4{color:transparent;}
.fc3{color:rgb(255,0,0);}
.fc2{color:rgb(0,0,255);}
.fc5{color:rgb(31,31,31);}
.fc1{color:rgb(128,128,128);}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:30.000000px;}
.fs9{font-size:33.600000px;}
.fs5{font-size:36.000000px;}
.fs8{font-size:42.000000px;}
.fs3{font-size:48.000000px;}
.fs1{font-size:51.600000px;}
.fs7{font-size:54.000000px;}
.fs2{font-size:60.000000px;}
.fs0{font-size:66.000000px;}
.fs4{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y4b{bottom:3.000000px;}
.y17e{bottom:3.885000px;}
.y13d{bottom:3.900000px;}
.y165{bottom:3.915000px;}
.y132{bottom:4.200000px;}
.y3{bottom:9.585000px;}
.y157{bottom:13.500000px;}
.y1a0{bottom:13.545000px;}
.y4{bottom:20.385000px;}
.y4a{bottom:21.000000px;}
.y17d{bottom:23.385000px;}
.y13c{bottom:23.400000px;}
.y150{bottom:23.415000px;}
.y1a5{bottom:23.430000px;}
.y19e{bottom:23.445000px;}
.y2{bottom:28.500000px;}
.y7{bottom:28.837500px;}
.y156{bottom:33.000000px;}
.y195{bottom:33.007500px;}
.y19f{bottom:33.045000px;}
.y49{bottom:39.007500px;}
.y6{bottom:42.637500px;}
.y17c{bottom:42.885000px;}
.y13b{bottom:42.900000px;}
.y14f{bottom:42.915000px;}
.y189{bottom:42.930000px;}
.y194{bottom:42.937500px;}
.y19d{bottom:42.945000px;}
.y51{bottom:46.837500px;}
.y155{bottom:52.500000px;}
.y172{bottom:52.507500px;}
.y193{bottom:52.537500px;}
.y19a{bottom:52.545000px;}
.y192{bottom:56.437500px;}
.y48{bottom:57.037500px;}
.y18e{bottom:62.385000px;}
.y147{bottom:62.400000px;}
.y13a{bottom:62.407500px;}
.y14b{bottom:62.415000px;}
.y188{bottom:62.430000px;}
.y17a{bottom:62.437500px;}
.y19c{bottom:62.445000px;}
.y50{bottom:64.837500px;}
.y154{bottom:72.000000px;}
.y135{bottom:72.037500px;}
.y199{bottom:72.045000px;}
.y1a4{bottom:72.330000px;}
.y47{bottom:75.037500px;}
.y149{bottom:75.915000px;}
.y134{bottom:75.937500px;}
.y198{bottom:75.945000px;}
.y4f{bottom:80.737500px;}
.y18d{bottom:81.885000px;}
.y146{bottom:81.900000px;}
.y14a{bottom:81.915000px;}
.y187{bottom:81.930000px;}
.y139{bottom:81.937500px;}
.y19b{bottom:81.945000px;}
.y190{bottom:85.800000px;}
.y1a2{bottom:85.830000px;}
.y171{bottom:91.537500px;}
.y153{bottom:91.545000px;}
.y1a3{bottom:91.830000px;}
.y46{bottom:93.037500px;}
.yb5{bottom:94.837500px;}
.y133{bottom:96.937500px;}
.y1b2{bottom:101.385000px;}
.y145{bottom:101.400000px;}
.y164{bottom:101.415000px;}
.y186{bottom:101.430000px;}
.y138{bottom:101.437500px;}
.y14e{bottom:101.445000px;}
.y166{bottom:103.237500px;}
.y180{bottom:105.300000px;}
.y18c{bottom:105.330000px;}
.y1bd{bottom:106.537500px;}
.y45{bottom:108.037500px;}
.y10f{bottom:109.537500px;}
.y170{bottom:111.037500px;}
.y152{bottom:111.045000px;}
.y185{bottom:111.330000px;}
.y31{bottom:113.737500px;}
.yb4{bottom:114.037500px;}
.y184{bottom:115.245000px;}
.y84{bottom:118.537500px;}
.y20c{bottom:119.737500px;}
.y1b1{bottom:120.885000px;}
.y182{bottom:120.900000px;}
.y144{bottom:120.930000px;}
.y137{bottom:120.937500px;}
.y14d{bottom:120.945000px;}
.y191{bottom:121.237500px;}
.y1e6{bottom:121.537500px;}
.y1bc{bottom:126.037500px;}
.y10e{bottom:128.737500px;}
.y1aa{bottom:130.500000px;}
.y169{bottom:130.537500px;}
.y151{bottom:130.545000px;}
.yb3{bottom:133.237500px;}
.y83{bottom:137.737500px;}
.y30{bottom:138.037500px;}
.y1b0{bottom:140.385000px;}
.y181{bottom:140.400000px;}
.y143{bottom:140.430000px;}
.y136{bottom:140.437500px;}
.y14c{bottom:140.445000px;}
.ye0{bottom:141.037500px;}
.y167{bottom:144.337500px;}
.y1bb{bottom:145.237500px;}
.y1e5{bottom:145.837500px;}
.y10d{bottom:147.937500px;}
.y1a9{bottom:150.000000px;}
.y168{bottom:150.037500px;}
.y44{bottom:151.537500px;}
.yb2{bottom:152.430000px;}
.y1a7{bottom:153.885000px;}
.y82{bottom:156.930000px;}
.y2f{bottom:157.245000px;}
.y1af{bottom:159.885000px;}
.y142{bottom:159.930000px;}
.y179{bottom:159.937500px;}
.y15b{bottom:159.945000px;}
.ydf{bottom:160.245000px;}
.y1ba{bottom:164.475000px;}
.y10c{bottom:167.175000px;}
.y43{bottom:168.037500px;}
.y20b{bottom:168.675000px;}
.y1a8{bottom:169.530000px;}
.y16f{bottom:169.537500px;}
.y1e4{bottom:170.475000px;}
.yb1{bottom:171.675000px;}
.y159{bottom:173.745000px;}
.y81{bottom:176.175000px;}
.y2e{bottom:176.475000px;}
.y141{bottom:179.430000px;}
.y178{bottom:179.437500px;}
.y15a{bottom:179.445000px;}
.yde{bottom:179.475000px;}
.y1b9{bottom:183.675000px;}
.y42{bottom:184.237500px;}
.y10b{bottom:186.375000px;}
.y16e{bottom:189.037500px;}
.yb0{bottom:190.875000px;}
.y20a{bottom:193.275000px;}
.y1e3{bottom:194.775000px;}
.y80{bottom:195.375000px;}
.y2d{bottom:195.675000px;}
.ydd{bottom:198.675000px;}
.y140{bottom:198.930000px;}
.y177{bottom:198.937500px;}
.y163{bottom:198.945000px;}
.y41{bottom:200.437500px;}
.y1b8{bottom:202.875000px;}
.y10a{bottom:205.575000px;}
.y16d{bottom:208.537500px;}
.yaf{bottom:210.075000px;}
.y7f{bottom:214.575000px;}
.y2c{bottom:214.875000px;}
.y209{bottom:217.575000px;}
.ydc{bottom:217.875000px;}
.y13f{bottom:218.430000px;}
.y176{bottom:218.437500px;}
.y162{bottom:218.445000px;}
.y18a{bottom:218.475000px;}
.y1e2{bottom:219.375000px;}
.y1b7{bottom:222.075000px;}
.y109{bottom:224.775000px;}
.y16c{bottom:228.037500px;}
.yae{bottom:229.275000px;}
.y40{bottom:232.582500px;}
.y7e{bottom:233.775000px;}
.y2b{bottom:234.075000px;}
.ydb{bottom:237.075000px;}
.y1ae{bottom:237.930000px;}
.y161{bottom:237.945000px;}
.y175{bottom:237.982500px;}
.y18f{bottom:238.875000px;}
.y1b6{bottom:241.275000px;}
.y208{bottom:242.175000px;}
.y1e1{bottom:243.675000px;}
.y108{bottom:243.975000px;}
.y16b{bottom:247.567500px;}
.yad{bottom:248.475000px;}
.y3f{bottom:250.567500px;}
.y7d{bottom:252.975000px;}
.y2a{bottom:253.275000px;}
.y131{bottom:253.575000px;}
.yda{bottom:256.275000px;}
.y1ad{bottom:257.430000px;}
.y160{bottom:257.445000px;}
.y174{bottom:257.467500px;}
.y1b5{bottom:260.475000px;}
.y1c6{bottom:260.775000px;}
.y107{bottom:263.175000px;}
.y207{bottom:266.475000px;}
.y16a{bottom:267.082500px;}
.yac{bottom:267.675000px;}
.y1e0{bottom:268.275000px;}
.y3e{bottom:268.582500px;}
.y7c{bottom:272.175000px;}
.y29{bottom:272.475000px;}
.yd9{bottom:275.475000px;}
.y1ac{bottom:276.930000px;}
.y173{bottom:276.967500px;}
.y15f{bottom:276.975000px;}
.y1b4{bottom:279.675000px;}
.y106{bottom:282.375000px;}
.y3d{bottom:286.582500px;}
.yab{bottom:286.875000px;}
.y130{bottom:287.175000px;}
.y206{bottom:291.075000px;}
.y7b{bottom:291.375000px;}
.y28{bottom:291.675000px;}
.y1df{bottom:292.575000px;}
.yd8{bottom:294.675000px;}
.y1ab{bottom:296.430000px;}
.y15e{bottom:296.475000px;}
.y1c5{bottom:297.975000px;}
.y105{bottom:301.575000px;}
.y1b3{bottom:303.375000px;}
.y3c{bottom:304.582500px;}
.yaa{bottom:306.075000px;}
.y7a{bottom:310.575000px;}
.yd7{bottom:313.875000px;}
.y27{bottom:315.375000px;}
.y15d{bottom:315.975000px;}
.y1c4{bottom:317.175000px;}
.y104{bottom:321.075000px;}
.y12f{bottom:324.675000px;}
.ya9{bottom:325.575000px;}
.y79{bottom:330.075000px;}
.y3b{bottom:331.582500px;}
.yd6{bottom:333.120000px;}
.y15c{bottom:335.475000px;}
.y1c3{bottom:336.405000px;}
.y1a6{bottom:337.320000px;}
.y205{bottom:340.005000px;}
.y103{bottom:340.320000px;}
.y1de{bottom:341.505000px;}
.y12e{bottom:343.905000px;}
.y78{bottom:349.320000px;}
.yd5{bottom:352.620000px;}
.y1c2{bottom:355.620000px;}
.y3a{bottom:358.582500px;}
.y102{bottom:359.505000px;}
.y12d{bottom:363.120000px;}
.y204{bottom:364.305000px;}
.y1dd{bottom:366.120000px;}
.y77{bottom:368.505000px;}
.yd4{bottom:371.805000px;}
.y26{bottom:373.620000px;}
.y1c1{bottom:375.120000px;}
.y39{bottom:376.582500px;}
.y101{bottom:378.720000px;}
.y12c{bottom:382.320000px;}
.ya8{bottom:386.505000px;}
.y76{bottom:387.705000px;}
.y203{bottom:388.920000px;}
.y1dc{bottom:390.405000px;}
.yd3{bottom:391.005000px;}
.y25{bottom:393.405000px;}
.y1c0{bottom:394.320000px;}
.y38{bottom:394.612500px;}
.y158{bottom:396.405000px;}
.y100{bottom:397.905000px;}
.ya7{bottom:405.705000px;}
.y12b{bottom:406.005000px;}
.y75{bottom:406.905000px;}
.y37{bottom:412.612500px;}
.y24{bottom:413.205000px;}
.y1bf{bottom:413.505000px;}
.yd2{bottom:414.705000px;}
.y1db{bottom:415.005000px;}
.y18b{bottom:415.320000px;}
.yff{bottom:417.105000px;}
.ya6{bottom:424.905000px;}
.y74{bottom:430.605000px;}
.y36{bottom:430.612500px;}
.y1be{bottom:432.705000px;}
.yfe{bottom:436.320000px;}
.y202{bottom:437.820000px;}
.y1da{bottom:439.320000px;}
.y12a{bottom:443.205000px;}
.ya5{bottom:444.105000px;}
.y35{bottom:448.612500px;}
.y23{bottom:450.405000px;}
.yd1{bottom:451.905000px;}
.yfd{bottom:455.505000px;}
.y201{bottom:462.120000px;}
.y129{bottom:462.405000px;}
.ya4{bottom:463.320000px;}
.y1d9{bottom:463.905000px;}
.y34{bottom:466.612500px;}
.y73{bottom:467.820000px;}
.y22{bottom:469.920000px;}
.yd0{bottom:471.105000px;}
.yfc{bottom:474.705000px;}
.y128{bottom:481.620000px;}
.ya3{bottom:482.505000px;}
.y33{bottom:484.612500px;}
.y200{bottom:486.705000px;}
.y72{bottom:487.005000px;}
.y1d8{bottom:488.205000px;}
.y21{bottom:489.405000px;}
.ycf{bottom:490.320000px;}
.yfb{bottom:493.905000px;}
.y127{bottom:500.820000px;}
.ya2{bottom:501.750000px;}
.y32{bottom:502.612500px;}
.y71{bottom:506.250000px;}
.y20{bottom:508.950000px;}
.yce{bottom:509.550000px;}
.y1ff{bottom:511.050000px;}
.y1d7{bottom:512.850000px;}
.yfa{bottom:513.150000px;}
.y126{bottom:520.350000px;}
.ya1{bottom:520.950000px;}
.y70{bottom:525.450000px;}
.y1f{bottom:528.450000px;}
.ycd{bottom:528.750000px;}
.yf9{bottom:532.350000px;}
.y1fe{bottom:535.650000px;}
.y1d6{bottom:537.150000px;}
.y125{bottom:539.550000px;}
.ya0{bottom:540.150000px;}
.y6f{bottom:544.650000px;}
.y1e{bottom:547.950000px;}
.yf8{bottom:551.850000px;}
.y9f{bottom:559.350000px;}
.y1fd{bottom:559.950000px;}
.y1d5{bottom:561.750000px;}
.y124{bottom:563.250000px;}
.y6e{bottom:563.850000px;}
.ycc{bottom:567.150000px;}
.y1d{bottom:567.450000px;}
.yf7{bottom:571.050000px;}
.y9e{bottom:578.850000px;}
.y6d{bottom:583.350000px;}
.y1fc{bottom:584.550000px;}
.y1d4{bottom:586.050000px;}
.ycb{bottom:586.350000px;}
.y1c{bottom:586.950000px;}
.yf6{bottom:590.250000px;}
.y9d{bottom:598.050000px;}
.y123{bottom:600.450000px;}
.y6c{bottom:602.550000px;}
.yca{bottom:605.850000px;}
.y1b{bottom:606.450000px;}
.y1fb{bottom:608.850000px;}
.yf5{bottom:609.450000px;}
.y1d3{bottom:610.650000px;}
.y9c{bottom:617.250000px;}
.y122{bottom:619.650000px;}
.y6b{bottom:621.750000px;}
.yc9{bottom:625.050000px;}
.y1a{bottom:625.950000px;}
.yf4{bottom:628.650000px;}
.y183{bottom:630.450000px;}
.y1fa{bottom:633.450000px;}
.y9b{bottom:636.450000px;}
.y1d2{bottom:636.750000px;}
.y121{bottom:638.850000px;}
.y6a{bottom:640.950000px;}
.yc8{bottom:644.250000px;}
.y19{bottom:645.450000px;}
.yf3{bottom:647.850000px;}
.y1a1{bottom:649.950000px;}
.y9a{bottom:655.650000px;}
.y1f9{bottom:657.750000px;}
.y120{bottom:658.050000px;}
.y69{bottom:660.150000px;}
.yc7{bottom:663.450000px;}
.y18{bottom:664.950000px;}
.y1d1{bottom:673.095000px;}
.y99{bottom:674.880000px;}
.y11f{bottom:677.280000px;}
.y68{bottom:679.380000px;}
.y1f8{bottom:682.380000px;}
.yc6{bottom:682.680000px;}
.y17{bottom:684.480000px;}
.yf2{bottom:685.095000px;}
.y98{bottom:694.080000px;}
.y11e{bottom:696.495000px;}
.y67{bottom:698.595000px;}
.yc5{bottom:701.880000px;}
.y16{bottom:703.980000px;}
.yf1{bottom:704.280000px;}
.y1f7{bottom:706.695000px;}
.y1d0{bottom:708.495000px;}
.y97{bottom:713.280000px;}
.y66{bottom:717.780000px;}
.y11d{bottom:720.195000px;}
.yc4{bottom:721.080000px;}
.y15{bottom:723.495000px;}
.y1cf{bottom:726.195000px;}
.y1f6{bottom:731.280000px;}
.y96{bottom:732.480000px;}
.y65{bottom:736.995000px;}
.yc3{bottom:740.280000px;}
.yf0{bottom:741.480000px;}
.y14{bottom:742.980000px;}
.y148{bottom:748.380000px;}
.y95{bottom:751.680000px;}
.y1f5{bottom:755.580000px;}
.y64{bottom:756.195000px;}
.y11c{bottom:757.380000px;}
.yc2{bottom:759.480000px;}
.yef{bottom:760.695000px;}
.y1ce{bottom:761.280000px;}
.y13{bottom:762.495000px;}
.y94{bottom:770.880000px;}
.y63{bottom:775.380000px;}
.y11b{bottom:776.580000px;}
.yc1{bottom:778.695000px;}
.yee{bottom:779.880000px;}
.y1f4{bottom:780.195000px;}
.y12{bottom:781.980000px;}
.y93{bottom:790.080000px;}
.y62{bottom:794.580000px;}
.y11a{bottom:796.080000px;}
.y1cd{bottom:796.695000px;}
.yc0{bottom:797.880000px;}
.yed{bottom:799.080000px;}
.y11{bottom:801.495000px;}
.y1f3{bottom:804.495000px;}
.y61{bottom:814.080000px;}
.y119{bottom:815.295000px;}
.ybf{bottom:817.080000px;}
.yec{bottom:818.580000px;}
.y10{bottom:821.280000px;}
.y197{bottom:826.380000px;}
.y1f2{bottom:829.080000px;}
.y1cc{bottom:832.080000px;}
.y60{bottom:833.295000px;}
.y118{bottom:834.480000px;}
.ybe{bottom:836.580000px;}
.yeb{bottom:837.795000px;}
.y92{bottom:851.325000px;}
.y5f{bottom:852.525000px;}
.y1f1{bottom:853.425000px;}
.y117{bottom:853.725000px;}
.ybd{bottom:855.825000px;}
.yea{bottom:857.025000px;}
.yf{bottom:858.525000px;}
.y17f{bottom:865.425000px;}
.y1cb{bottom:866.925000px;}
.y91{bottom:870.525000px;}
.y5e{bottom:871.725000px;}
.y116{bottom:872.925000px;}
.ybc{bottom:875.025000px;}
.ye9{bottom:876.225000px;}
.ye{bottom:877.425000px;}
.y1f0{bottom:878.025000px;}
.y1ca{bottom:884.625000px;}
.y90{bottom:889.725000px;}
.y5d{bottom:890.925000px;}
.y115{bottom:892.125000px;}
.yd{bottom:893.625000px;}
.ybb{bottom:894.225000px;}
.ye8{bottom:895.425000px;}
.y1ef{bottom:902.325000px;}
.y13e{bottom:905.025000px;}
.y8f{bottom:908.925000px;}
.y5c{bottom:910.125000px;}
.y114{bottom:911.325000px;}
.yba{bottom:913.425000px;}
.ye7{bottom:914.625000px;}
.y1c9{bottom:919.725000px;}
.y1ee{bottom:926.925000px;}
.y8e{bottom:928.125000px;}
.y5b{bottom:929.325000px;}
.y113{bottom:930.525000px;}
.yb9{bottom:932.625000px;}
.ye6{bottom:933.825000px;}
.yc{bottom:934.725000px;}
.y1c8{bottom:937.125000px;}
.y5a{bottom:948.525000px;}
.y8d{bottom:951.225000px;}
.yb8{bottom:951.825000px;}
.ye5{bottom:953.025000px;}
.y112{bottom:954.225000px;}
.y1c7{bottom:954.525000px;}
.y8c{bottom:966.525000px;}
.yb7{bottom:971.025000px;}
.y59{bottom:972.225000px;}
.y1ed{bottom:975.825000px;}
.y196{bottom:983.025000px;}
.yb{bottom:985.425000px;}
.y8b{bottom:985.725000px;}
.yb6{bottom:990.225000px;}
.ye4{bottom:991.425000px;}
.y1ec{bottom:1000.125000px;}
.y8a{bottom:1004.925000px;}
.y58{bottom:1009.455000px;}
.ye3{bottom:1010.655000px;}
.ya{bottom:1022.070000px;}
.y89{bottom:1024.155000px;}
.y1eb{bottom:1024.755000px;}
.y57{bottom:1028.670000px;}
.ye2{bottom:1029.855000px;}
.y88{bottom:1043.355000px;}
.y56{bottom:1047.855000px;}
.y1ea{bottom:1049.070000px;}
.ye1{bottom:1049.355000px;}
.y9{bottom:1058.355000px;}
.y87{bottom:1062.855000px;}
.y55{bottom:1067.355000px;}
.y111{bottom:1068.570000px;}
.y1e9{bottom:1073.655000px;}
.y17b{bottom:1080.570000px;}
.y86{bottom:1082.070000px;}
.y54{bottom:1086.570000px;}
.y110{bottom:1087.755000px;}
.y8{bottom:1091.370000px;}
.y1e8{bottom:1097.955000px;}
.y85{bottom:1101.255000px;}
.y53{bottom:1105.755000px;}
.y1e7{bottom:1122.570000px;}
.y52{bottom:1124.955000px;}
.y5{bottom:1128.255000px;}
.y1{bottom:1134.570000px;}
.y4e{bottom:1144.455000px;}
.y4d{bottom:1163.655000px;}
.y4c{bottom:1173.570000px;}
.h14{height:19.500000px;}
.hb{height:32.390625px;}
.h7{height:35.179688px;}
.h10{height:38.841797px;}
.hc{height:39.418945px;}
.h19{height:39.843491px;}
.h12{height:39.888281px;}
.h17{height:39.903491px;}
.h22{height:39.963491px;}
.h5{height:43.798828px;}
.h9{height:43.974609px;}
.h8{height:44.390625px;}
.h4{height:47.719922px;}
.h3{height:48.178711px;}
.hd{height:49.939453px;}
.h2{height:51.637500px;}
.h6{height:55.488281px;}
.h15{height:55.503491px;}
.h1c{height:58.500000px;}
.h11{height:59.853516px;}
.h13{height:61.670545px;}
.he{height:62.460938px;}
.ha{height:78.837891px;}
.h20{height:117.037500px;}
.h16{height:156.030000px;}
.h1f{height:175.530000px;}
.h1d{height:214.530000px;}
.h18{height:234.030000px;}
.h1e{height:234.075000px;}
.h1b{height:292.575000px;}
.h21{height:312.030000px;}
.h1a{height:351.075000px;}
.hf{height:517.620000px;}
.h0{height:1262.700000px;}
.h1{height:1263.000000px;}
.w7{width:53.137500px;}
.w8{width:99.937500px;}
.w4{width:126.675000px;}
.w6{width:180.975000px;}
.wa{width:287.175000px;}
.w3{width:339.975000px;}
.w9{width:346.905000px;}
.w2{width:372.450000px;}
.w5{width:893.099987px;}
.w0{width:893.100000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1c{left:8.100000px;}
.x1e{left:9.600000px;}
.x1a{left:10.800000px;}
.x19{left:12.600000px;}
.xf{left:14.137500px;}
.x1b{left:15.285000px;}
.x17{left:17.100000px;}
.x21{left:18.600000px;}
.x18{left:20.100000px;}
.x16{left:22.237500px;}
.x1d{left:23.700000px;}
.x2c{left:25.200000px;}
.x26{left:27.600000px;}
.x23{left:30.000000px;}
.x30{left:32.700000px;}
.x11{left:34.200000px;}
.x2e{left:35.700000px;}
.x29{left:38.385000px;}
.x28{left:40.800000px;}
.x1{left:54.000000px;}
.x2a{left:60.300000px;}
.x20{left:66.885000px;}
.x31{left:77.385000px;}
.x24{left:78.600000px;}
.x9{left:81.637500px;}
.x32{left:82.800000px;}
.x34{left:86.137487px;}
.x1f{left:90.900000px;}
.x25{left:101.130000px;}
.x10{left:107.137500px;}
.x15{left:108.330000px;}
.x33{left:111.030000px;}
.x22{left:112.545000px;}
.x2d{left:122.730000px;}
.x2b{left:129.030000px;}
.x27{left:136.245000px;}
.xb{left:141.037487px;}
.x13{left:150.645000px;}
.x2f{left:160.545000px;}
.x3{left:170.130000px;}
.x12{left:207.075000px;}
.x5{left:249.674987px;}
.x6{left:250.874987px;}
.xe{left:268.274987px;}
.x7{left:276.674987px;}
.xd{left:281.474987px;}
.x8{left:282.674987px;}
.x2{left:426.450000px;}
.x14{left:553.995000px;}
.xc{left:694.724987px;}
.xa{left:698.024987px;}
.x4{left:766.425000px;}
@media print{
.v3{vertical-align:-13.866667pt;}
.v2{vertical-align:-10.666667pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:13.866667pt;}
.ls20{letter-spacing:-1.242667pt;}
.lsa{letter-spacing:-0.960000pt;}
.lsb{letter-spacing:-0.848000pt;}
.ls18{letter-spacing:-0.608000pt;}
.ls12{letter-spacing:-0.586667pt;}
.ls7{letter-spacing:-0.533333pt;}
.ls24{letter-spacing:-0.528000pt;}
.ls8{letter-spacing:-0.341333pt;}
.ls27{letter-spacing:-0.266667pt;}
.ls1f{letter-spacing:-0.144000pt;}
.ls1b{letter-spacing:-0.101333pt;}
.ls23{letter-spacing:-0.048000pt;}
.ls25{letter-spacing:-0.021333pt;}
.ls9{letter-spacing:-0.010667pt;}
.ls6{letter-spacing:0.000000pt;}
.lse{letter-spacing:0.053333pt;}
.lsd{letter-spacing:0.106667pt;}
.ls1c{letter-spacing:0.122667pt;}
.ls15{letter-spacing:0.160000pt;}
.ls21{letter-spacing:0.240000pt;}
.ls2{letter-spacing:0.256000pt;}
.ls5{letter-spacing:0.266667pt;}
.ls1a{letter-spacing:0.352000pt;}
.ls14{letter-spacing:0.373333pt;}
.ls1d{letter-spacing:0.400000pt;}
.ls26{letter-spacing:0.474667pt;}
.lsc{letter-spacing:0.480000pt;}
.ls22{letter-spacing:0.501333pt;}
.ls1{letter-spacing:0.533333pt;}
.ls1e{letter-spacing:0.864000pt;}
.ls19{letter-spacing:0.965333pt;}
.ls16{letter-spacing:1.066667pt;}
.ls17{letter-spacing:1.088000pt;}
.lsf{letter-spacing:1.173333pt;}
.ls28{letter-spacing:1.541333pt;}
.ls10{letter-spacing:1.600000pt;}
.ls11{letter-spacing:6.933333pt;}
.ls3{letter-spacing:9.600000pt;}
.ls4{letter-spacing:40.800000pt;}
.ls29{letter-spacing:42.400000pt;}
.ls0{letter-spacing:48.853333pt;}
.ls13{letter-spacing:66.240000pt;}
.wsf{word-spacing:-53.333333pt;}
.ws25{word-spacing:-48.000000pt;}
.ws4{word-spacing:-42.666667pt;}
.wse{word-spacing:-13.813333pt;}
.ws7{word-spacing:-13.333333pt;}
.ws12{word-spacing:-13.088000pt;}
.ws14{word-spacing:-12.965333pt;}
.ws19{word-spacing:-12.864000pt;}
.ws16{word-spacing:-12.533333pt;}
.ws1f{word-spacing:-12.501333pt;}
.ws23{word-spacing:-12.474667pt;}
.ws1e{word-spacing:-12.400000pt;}
.ws8{word-spacing:-12.373333pt;}
.ws15{word-spacing:-12.352000pt;}
.ws1d{word-spacing:-12.240000pt;}
.ws18{word-spacing:-12.122667pt;}
.ws10{word-spacing:-12.000000pt;}
.ws24{word-spacing:-11.989333pt;}
.ws21{word-spacing:-11.978667pt;}
.ws22{word-spacing:-11.952000pt;}
.ws17{word-spacing:-11.898667pt;}
.ws1a{word-spacing:-11.856000pt;}
.ws20{word-spacing:-11.472000pt;}
.ws1b{word-spacing:-11.466667pt;}
.ws13{word-spacing:-11.392000pt;}
.ws0{word-spacing:-10.933333pt;}
.ws5{word-spacing:-10.922667pt;}
.ws1c{word-spacing:-10.757333pt;}
.ws6{word-spacing:-10.666667pt;}
.ws1{word-spacing:-10.325333pt;}
.wsa{word-spacing:-9.866667pt;}
.wsb{word-spacing:-9.333333pt;}
.wsc{word-spacing:-8.800000pt;}
.ws9{word-spacing:-8.485333pt;}
.ws2{word-spacing:-8.000000pt;}
.ws11{word-spacing:-7.466667pt;}
.wsd{word-spacing:0.000000pt;}
.ws3{word-spacing:40.000000pt;}
._13{margin-left:-3.850667pt;}
._6{margin-left:-2.704000pt;}
._1{margin-left:-0.938667pt;}
._0{width:1.056000pt;}
._7{width:2.400000pt;}
._a{width:3.685333pt;}
._8{width:4.752000pt;}
._9{width:5.904000pt;}
._b{width:6.880000pt;}
._11{width:8.405333pt;}
._12{width:9.589333pt;}
._d{width:10.490667pt;}
._14{width:11.968000pt;}
._1c{width:12.965333pt;}
._c{width:14.037333pt;}
._f{width:15.114667pt;}
._15{width:16.160000pt;}
._3{width:19.722667pt;}
._19{width:20.714667pt;}
._18{width:22.272000pt;}
._5{width:23.466667pt;}
._1b{width:24.528000pt;}
._4{width:33.333333pt;}
._1a{width:41.605333pt;}
._1e{width:44.906667pt;}
._1d{width:45.840000pt;}
._17{width:65.200000pt;}
._e{width:71.408000pt;}
._2{width:307.370667pt;}
._16{width:1634.346667pt;}
._10{width:1655.680000pt;}
.fs6{font-size:26.666667pt;}
.fs9{font-size:29.866667pt;}
.fs5{font-size:32.000000pt;}
.fs8{font-size:37.333333pt;}
.fs3{font-size:42.666667pt;}
.fs1{font-size:45.866667pt;}
.fs7{font-size:48.000000pt;}
.fs2{font-size:53.333333pt;}
.fs0{font-size:58.666667pt;}
.fs4{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y4b{bottom:2.666667pt;}
.y17e{bottom:3.453333pt;}
.y13d{bottom:3.466667pt;}
.y165{bottom:3.480000pt;}
.y132{bottom:3.733333pt;}
.y3{bottom:8.520000pt;}
.y157{bottom:12.000000pt;}
.y1a0{bottom:12.040000pt;}
.y4{bottom:18.120000pt;}
.y4a{bottom:18.666667pt;}
.y17d{bottom:20.786667pt;}
.y13c{bottom:20.800000pt;}
.y150{bottom:20.813333pt;}
.y1a5{bottom:20.826667pt;}
.y19e{bottom:20.840000pt;}
.y2{bottom:25.333333pt;}
.y7{bottom:25.633333pt;}
.y156{bottom:29.333333pt;}
.y195{bottom:29.340000pt;}
.y19f{bottom:29.373333pt;}
.y49{bottom:34.673333pt;}
.y6{bottom:37.900000pt;}
.y17c{bottom:38.120000pt;}
.y13b{bottom:38.133333pt;}
.y14f{bottom:38.146667pt;}
.y189{bottom:38.160000pt;}
.y194{bottom:38.166667pt;}
.y19d{bottom:38.173333pt;}
.y51{bottom:41.633333pt;}
.y155{bottom:46.666667pt;}
.y172{bottom:46.673333pt;}
.y193{bottom:46.700000pt;}
.y19a{bottom:46.706667pt;}
.y192{bottom:50.166667pt;}
.y48{bottom:50.700000pt;}
.y18e{bottom:55.453333pt;}
.y147{bottom:55.466667pt;}
.y13a{bottom:55.473333pt;}
.y14b{bottom:55.480000pt;}
.y188{bottom:55.493333pt;}
.y17a{bottom:55.500000pt;}
.y19c{bottom:55.506667pt;}
.y50{bottom:57.633333pt;}
.y154{bottom:64.000000pt;}
.y135{bottom:64.033333pt;}
.y199{bottom:64.040000pt;}
.y1a4{bottom:64.293333pt;}
.y47{bottom:66.700000pt;}
.y149{bottom:67.480000pt;}
.y134{bottom:67.500000pt;}
.y198{bottom:67.506667pt;}
.y4f{bottom:71.766667pt;}
.y18d{bottom:72.786667pt;}
.y146{bottom:72.800000pt;}
.y14a{bottom:72.813333pt;}
.y187{bottom:72.826667pt;}
.y139{bottom:72.833333pt;}
.y19b{bottom:72.840000pt;}
.y190{bottom:76.266667pt;}
.y1a2{bottom:76.293333pt;}
.y171{bottom:81.366667pt;}
.y153{bottom:81.373333pt;}
.y1a3{bottom:81.626667pt;}
.y46{bottom:82.700000pt;}
.yb5{bottom:84.300000pt;}
.y133{bottom:86.166667pt;}
.y1b2{bottom:90.120000pt;}
.y145{bottom:90.133333pt;}
.y164{bottom:90.146667pt;}
.y186{bottom:90.160000pt;}
.y138{bottom:90.166667pt;}
.y14e{bottom:90.173333pt;}
.y166{bottom:91.766667pt;}
.y180{bottom:93.600000pt;}
.y18c{bottom:93.626667pt;}
.y1bd{bottom:94.700000pt;}
.y45{bottom:96.033333pt;}
.y10f{bottom:97.366667pt;}
.y170{bottom:98.700000pt;}
.y152{bottom:98.706667pt;}
.y185{bottom:98.960000pt;}
.y31{bottom:101.100000pt;}
.yb4{bottom:101.366667pt;}
.y184{bottom:102.440000pt;}
.y84{bottom:105.366667pt;}
.y20c{bottom:106.433333pt;}
.y1b1{bottom:107.453333pt;}
.y182{bottom:107.466667pt;}
.y144{bottom:107.493333pt;}
.y137{bottom:107.500000pt;}
.y14d{bottom:107.506667pt;}
.y191{bottom:107.766667pt;}
.y1e6{bottom:108.033333pt;}
.y1bc{bottom:112.033333pt;}
.y10e{bottom:114.433333pt;}
.y1aa{bottom:116.000000pt;}
.y169{bottom:116.033333pt;}
.y151{bottom:116.040000pt;}
.yb3{bottom:118.433333pt;}
.y83{bottom:122.433333pt;}
.y30{bottom:122.700000pt;}
.y1b0{bottom:124.786667pt;}
.y181{bottom:124.800000pt;}
.y143{bottom:124.826667pt;}
.y136{bottom:124.833333pt;}
.y14c{bottom:124.840000pt;}
.ye0{bottom:125.366667pt;}
.y167{bottom:128.300000pt;}
.y1bb{bottom:129.100000pt;}
.y1e5{bottom:129.633333pt;}
.y10d{bottom:131.500000pt;}
.y1a9{bottom:133.333333pt;}
.y168{bottom:133.366667pt;}
.y44{bottom:134.700000pt;}
.yb2{bottom:135.493333pt;}
.y1a7{bottom:136.786667pt;}
.y82{bottom:139.493333pt;}
.y2f{bottom:139.773333pt;}
.y1af{bottom:142.120000pt;}
.y142{bottom:142.160000pt;}
.y179{bottom:142.166667pt;}
.y15b{bottom:142.173333pt;}
.ydf{bottom:142.440000pt;}
.y1ba{bottom:146.200000pt;}
.y10c{bottom:148.600000pt;}
.y43{bottom:149.366667pt;}
.y20b{bottom:149.933333pt;}
.y1a8{bottom:150.693333pt;}
.y16f{bottom:150.700000pt;}
.y1e4{bottom:151.533333pt;}
.yb1{bottom:152.600000pt;}
.y159{bottom:154.440000pt;}
.y81{bottom:156.600000pt;}
.y2e{bottom:156.866667pt;}
.y141{bottom:159.493333pt;}
.y178{bottom:159.500000pt;}
.y15a{bottom:159.506667pt;}
.yde{bottom:159.533333pt;}
.y1b9{bottom:163.266667pt;}
.y42{bottom:163.766667pt;}
.y10b{bottom:165.666667pt;}
.y16e{bottom:168.033333pt;}
.yb0{bottom:169.666667pt;}
.y20a{bottom:171.800000pt;}
.y1e3{bottom:173.133333pt;}
.y80{bottom:173.666667pt;}
.y2d{bottom:173.933333pt;}
.ydd{bottom:176.600000pt;}
.y140{bottom:176.826667pt;}
.y177{bottom:176.833333pt;}
.y163{bottom:176.840000pt;}
.y41{bottom:178.166667pt;}
.y1b8{bottom:180.333333pt;}
.y10a{bottom:182.733333pt;}
.y16d{bottom:185.366667pt;}
.yaf{bottom:186.733333pt;}
.y7f{bottom:190.733333pt;}
.y2c{bottom:191.000000pt;}
.y209{bottom:193.400000pt;}
.ydc{bottom:193.666667pt;}
.y13f{bottom:194.160000pt;}
.y176{bottom:194.166667pt;}
.y162{bottom:194.173333pt;}
.y18a{bottom:194.200000pt;}
.y1e2{bottom:195.000000pt;}
.y1b7{bottom:197.400000pt;}
.y109{bottom:199.800000pt;}
.y16c{bottom:202.700000pt;}
.yae{bottom:203.800000pt;}
.y40{bottom:206.740000pt;}
.y7e{bottom:207.800000pt;}
.y2b{bottom:208.066667pt;}
.ydb{bottom:210.733333pt;}
.y1ae{bottom:211.493333pt;}
.y161{bottom:211.506667pt;}
.y175{bottom:211.540000pt;}
.y18f{bottom:212.333333pt;}
.y1b6{bottom:214.466667pt;}
.y208{bottom:215.266667pt;}
.y1e1{bottom:216.600000pt;}
.y108{bottom:216.866667pt;}
.y16b{bottom:220.060000pt;}
.yad{bottom:220.866667pt;}
.y3f{bottom:222.726667pt;}
.y7d{bottom:224.866667pt;}
.y2a{bottom:225.133333pt;}
.y131{bottom:225.400000pt;}
.yda{bottom:227.800000pt;}
.y1ad{bottom:228.826667pt;}
.y160{bottom:228.840000pt;}
.y174{bottom:228.860000pt;}
.y1b5{bottom:231.533333pt;}
.y1c6{bottom:231.800000pt;}
.y107{bottom:233.933333pt;}
.y207{bottom:236.866667pt;}
.y16a{bottom:237.406667pt;}
.yac{bottom:237.933333pt;}
.y1e0{bottom:238.466667pt;}
.y3e{bottom:238.740000pt;}
.y7c{bottom:241.933333pt;}
.y29{bottom:242.200000pt;}
.yd9{bottom:244.866667pt;}
.y1ac{bottom:246.160000pt;}
.y173{bottom:246.193333pt;}
.y15f{bottom:246.200000pt;}
.y1b4{bottom:248.600000pt;}
.y106{bottom:251.000000pt;}
.y3d{bottom:254.740000pt;}
.yab{bottom:255.000000pt;}
.y130{bottom:255.266667pt;}
.y206{bottom:258.733333pt;}
.y7b{bottom:259.000000pt;}
.y28{bottom:259.266667pt;}
.y1df{bottom:260.066667pt;}
.yd8{bottom:261.933333pt;}
.y1ab{bottom:263.493333pt;}
.y15e{bottom:263.533333pt;}
.y1c5{bottom:264.866667pt;}
.y105{bottom:268.066667pt;}
.y1b3{bottom:269.666667pt;}
.y3c{bottom:270.740000pt;}
.yaa{bottom:272.066667pt;}
.y7a{bottom:276.066667pt;}
.yd7{bottom:279.000000pt;}
.y27{bottom:280.333333pt;}
.y15d{bottom:280.866667pt;}
.y1c4{bottom:281.933333pt;}
.y104{bottom:285.400000pt;}
.y12f{bottom:288.600000pt;}
.ya9{bottom:289.400000pt;}
.y79{bottom:293.400000pt;}
.y3b{bottom:294.740000pt;}
.yd6{bottom:296.106667pt;}
.y15c{bottom:298.200000pt;}
.y1c3{bottom:299.026667pt;}
.y1a6{bottom:299.840000pt;}
.y205{bottom:302.226667pt;}
.y103{bottom:302.506667pt;}
.y1de{bottom:303.560000pt;}
.y12e{bottom:305.693333pt;}
.y78{bottom:310.506667pt;}
.yd5{bottom:313.440000pt;}
.y1c2{bottom:316.106667pt;}
.y3a{bottom:318.740000pt;}
.y102{bottom:319.560000pt;}
.y12d{bottom:322.773333pt;}
.y204{bottom:323.826667pt;}
.y1dd{bottom:325.440000pt;}
.y77{bottom:327.560000pt;}
.yd4{bottom:330.493333pt;}
.y26{bottom:332.106667pt;}
.y1c1{bottom:333.440000pt;}
.y39{bottom:334.740000pt;}
.y101{bottom:336.640000pt;}
.y12c{bottom:339.840000pt;}
.ya8{bottom:343.560000pt;}
.y76{bottom:344.626667pt;}
.y203{bottom:345.706667pt;}
.y1dc{bottom:347.026667pt;}
.yd3{bottom:347.560000pt;}
.y25{bottom:349.693333pt;}
.y1c0{bottom:350.506667pt;}
.y38{bottom:350.766667pt;}
.y158{bottom:352.360000pt;}
.y100{bottom:353.693333pt;}
.ya7{bottom:360.626667pt;}
.y12b{bottom:360.893333pt;}
.y75{bottom:361.693333pt;}
.y37{bottom:366.766667pt;}
.y24{bottom:367.293333pt;}
.y1bf{bottom:367.560000pt;}
.yd2{bottom:368.626667pt;}
.y1db{bottom:368.893333pt;}
.y18b{bottom:369.173333pt;}
.yff{bottom:370.760000pt;}
.ya6{bottom:377.693333pt;}
.y74{bottom:382.760000pt;}
.y36{bottom:382.766667pt;}
.y1be{bottom:384.626667pt;}
.yfe{bottom:387.840000pt;}
.y202{bottom:389.173333pt;}
.y1da{bottom:390.506667pt;}
.y12a{bottom:393.960000pt;}
.ya5{bottom:394.760000pt;}
.y35{bottom:398.766667pt;}
.y23{bottom:400.360000pt;}
.yd1{bottom:401.693333pt;}
.yfd{bottom:404.893333pt;}
.y201{bottom:410.773333pt;}
.y129{bottom:411.026667pt;}
.ya4{bottom:411.840000pt;}
.y1d9{bottom:412.360000pt;}
.y34{bottom:414.766667pt;}
.y73{bottom:415.840000pt;}
.y22{bottom:417.706667pt;}
.yd0{bottom:418.760000pt;}
.yfc{bottom:421.960000pt;}
.y128{bottom:428.106667pt;}
.ya3{bottom:428.893333pt;}
.y33{bottom:430.766667pt;}
.y200{bottom:432.626667pt;}
.y72{bottom:432.893333pt;}
.y1d8{bottom:433.960000pt;}
.y21{bottom:435.026667pt;}
.ycf{bottom:435.840000pt;}
.yfb{bottom:439.026667pt;}
.y127{bottom:445.173333pt;}
.ya2{bottom:446.000000pt;}
.y32{bottom:446.766667pt;}
.y71{bottom:450.000000pt;}
.y20{bottom:452.400000pt;}
.yce{bottom:452.933333pt;}
.y1ff{bottom:454.266667pt;}
.y1d7{bottom:455.866667pt;}
.yfa{bottom:456.133333pt;}
.y126{bottom:462.533333pt;}
.ya1{bottom:463.066667pt;}
.y70{bottom:467.066667pt;}
.y1f{bottom:469.733333pt;}
.ycd{bottom:470.000000pt;}
.yf9{bottom:473.200000pt;}
.y1fe{bottom:476.133333pt;}
.y1d6{bottom:477.466667pt;}
.y125{bottom:479.600000pt;}
.ya0{bottom:480.133333pt;}
.y6f{bottom:484.133333pt;}
.y1e{bottom:487.066667pt;}
.yf8{bottom:490.533333pt;}
.y9f{bottom:497.200000pt;}
.y1fd{bottom:497.733333pt;}
.y1d5{bottom:499.333333pt;}
.y124{bottom:500.666667pt;}
.y6e{bottom:501.200000pt;}
.ycc{bottom:504.133333pt;}
.y1d{bottom:504.400000pt;}
.yf7{bottom:507.600000pt;}
.y9e{bottom:514.533333pt;}
.y6d{bottom:518.533333pt;}
.y1fc{bottom:519.600000pt;}
.y1d4{bottom:520.933333pt;}
.ycb{bottom:521.200000pt;}
.y1c{bottom:521.733333pt;}
.yf6{bottom:524.666667pt;}
.y9d{bottom:531.600000pt;}
.y123{bottom:533.733333pt;}
.y6c{bottom:535.600000pt;}
.yca{bottom:538.533333pt;}
.y1b{bottom:539.066667pt;}
.y1fb{bottom:541.200000pt;}
.yf5{bottom:541.733333pt;}
.y1d3{bottom:542.800000pt;}
.y9c{bottom:548.666667pt;}
.y122{bottom:550.800000pt;}
.y6b{bottom:552.666667pt;}
.yc9{bottom:555.600000pt;}
.y1a{bottom:556.400000pt;}
.yf4{bottom:558.800000pt;}
.y183{bottom:560.400000pt;}
.y1fa{bottom:563.066667pt;}
.y9b{bottom:565.733333pt;}
.y1d2{bottom:566.000000pt;}
.y121{bottom:567.866667pt;}
.y6a{bottom:569.733333pt;}
.yc8{bottom:572.666667pt;}
.y19{bottom:573.733333pt;}
.yf3{bottom:575.866667pt;}
.y1a1{bottom:577.733333pt;}
.y9a{bottom:582.800000pt;}
.y1f9{bottom:584.666667pt;}
.y120{bottom:584.933333pt;}
.y69{bottom:586.800000pt;}
.yc7{bottom:589.733333pt;}
.y18{bottom:591.066667pt;}
.y1d1{bottom:598.306667pt;}
.y99{bottom:599.893333pt;}
.y11f{bottom:602.026667pt;}
.y68{bottom:603.893333pt;}
.y1f8{bottom:606.560000pt;}
.yc6{bottom:606.826667pt;}
.y17{bottom:608.426667pt;}
.yf2{bottom:608.973333pt;}
.y98{bottom:616.960000pt;}
.y11e{bottom:619.106667pt;}
.y67{bottom:620.973333pt;}
.yc5{bottom:623.893333pt;}
.y16{bottom:625.760000pt;}
.yf1{bottom:626.026667pt;}
.y1f7{bottom:628.173333pt;}
.y1d0{bottom:629.773333pt;}
.y97{bottom:634.026667pt;}
.y66{bottom:638.026667pt;}
.y11d{bottom:640.173333pt;}
.yc4{bottom:640.960000pt;}
.y15{bottom:643.106667pt;}
.y1cf{bottom:645.506667pt;}
.y1f6{bottom:650.026667pt;}
.y96{bottom:651.093333pt;}
.y65{bottom:655.106667pt;}
.yc3{bottom:658.026667pt;}
.yf0{bottom:659.093333pt;}
.y14{bottom:660.426667pt;}
.y148{bottom:665.226667pt;}
.y95{bottom:668.160000pt;}
.y1f5{bottom:671.626667pt;}
.y64{bottom:672.173333pt;}
.y11c{bottom:673.226667pt;}
.yc2{bottom:675.093333pt;}
.yef{bottom:676.173333pt;}
.y1ce{bottom:676.693333pt;}
.y13{bottom:677.773333pt;}
.y94{bottom:685.226667pt;}
.y63{bottom:689.226667pt;}
.y11b{bottom:690.293333pt;}
.yc1{bottom:692.173333pt;}
.yee{bottom:693.226667pt;}
.y1f4{bottom:693.506667pt;}
.y12{bottom:695.093333pt;}
.y93{bottom:702.293333pt;}
.y62{bottom:706.293333pt;}
.y11a{bottom:707.626667pt;}
.y1cd{bottom:708.173333pt;}
.yc0{bottom:709.226667pt;}
.yed{bottom:710.293333pt;}
.y11{bottom:712.440000pt;}
.y1f3{bottom:715.106667pt;}
.y61{bottom:723.626667pt;}
.y119{bottom:724.706667pt;}
.ybf{bottom:726.293333pt;}
.yec{bottom:727.626667pt;}
.y10{bottom:730.026667pt;}
.y197{bottom:734.560000pt;}
.y1f2{bottom:736.960000pt;}
.y1cc{bottom:739.626667pt;}
.y60{bottom:740.706667pt;}
.y118{bottom:741.760000pt;}
.ybe{bottom:743.626667pt;}
.yeb{bottom:744.706667pt;}
.y92{bottom:756.733333pt;}
.y5f{bottom:757.800000pt;}
.y1f1{bottom:758.600000pt;}
.y117{bottom:758.866667pt;}
.ybd{bottom:760.733333pt;}
.yea{bottom:761.800000pt;}
.yf{bottom:763.133333pt;}
.y17f{bottom:769.266667pt;}
.y1cb{bottom:770.600000pt;}
.y91{bottom:773.800000pt;}
.y5e{bottom:774.866667pt;}
.y116{bottom:775.933333pt;}
.ybc{bottom:777.800000pt;}
.ye9{bottom:778.866667pt;}
.ye{bottom:779.933333pt;}
.y1f0{bottom:780.466667pt;}
.y1ca{bottom:786.333333pt;}
.y90{bottom:790.866667pt;}
.y5d{bottom:791.933333pt;}
.y115{bottom:793.000000pt;}
.yd{bottom:794.333333pt;}
.ybb{bottom:794.866667pt;}
.ye8{bottom:795.933333pt;}
.y1ef{bottom:802.066667pt;}
.y13e{bottom:804.466667pt;}
.y8f{bottom:807.933333pt;}
.y5c{bottom:809.000000pt;}
.y114{bottom:810.066667pt;}
.yba{bottom:811.933333pt;}
.ye7{bottom:813.000000pt;}
.y1c9{bottom:817.533333pt;}
.y1ee{bottom:823.933333pt;}
.y8e{bottom:825.000000pt;}
.y5b{bottom:826.066667pt;}
.y113{bottom:827.133333pt;}
.yb9{bottom:829.000000pt;}
.ye6{bottom:830.066667pt;}
.yc{bottom:830.866667pt;}
.y1c8{bottom:833.000000pt;}
.y5a{bottom:843.133333pt;}
.y8d{bottom:845.533333pt;}
.yb8{bottom:846.066667pt;}
.ye5{bottom:847.133333pt;}
.y112{bottom:848.200000pt;}
.y1c7{bottom:848.466667pt;}
.y8c{bottom:859.133333pt;}
.yb7{bottom:863.133333pt;}
.y59{bottom:864.200000pt;}
.y1ed{bottom:867.400000pt;}
.y196{bottom:873.800000pt;}
.yb{bottom:875.933333pt;}
.y8b{bottom:876.200000pt;}
.yb6{bottom:880.200000pt;}
.ye4{bottom:881.266667pt;}
.y1ec{bottom:889.000000pt;}
.y8a{bottom:893.266667pt;}
.y58{bottom:897.293333pt;}
.ye3{bottom:898.360000pt;}
.ya{bottom:908.506667pt;}
.y89{bottom:910.360000pt;}
.y1eb{bottom:910.893333pt;}
.y57{bottom:914.373333pt;}
.ye2{bottom:915.426667pt;}
.y88{bottom:927.426667pt;}
.y56{bottom:931.426667pt;}
.y1ea{bottom:932.506667pt;}
.ye1{bottom:932.760000pt;}
.y9{bottom:940.760000pt;}
.y87{bottom:944.760000pt;}
.y55{bottom:948.760000pt;}
.y111{bottom:949.840000pt;}
.y1e9{bottom:954.360000pt;}
.y17b{bottom:960.506667pt;}
.y86{bottom:961.840000pt;}
.y54{bottom:965.840000pt;}
.y110{bottom:966.893333pt;}
.y8{bottom:970.106667pt;}
.y1e8{bottom:975.960000pt;}
.y85{bottom:978.893333pt;}
.y53{bottom:982.893333pt;}
.y1e7{bottom:997.840000pt;}
.y52{bottom:999.960000pt;}
.y5{bottom:1002.893333pt;}
.y1{bottom:1008.506667pt;}
.y4e{bottom:1017.293333pt;}
.y4d{bottom:1034.360000pt;}
.y4c{bottom:1043.173333pt;}
.h14{height:17.333333pt;}
.hb{height:28.791667pt;}
.h7{height:31.270833pt;}
.h10{height:34.526042pt;}
.hc{height:35.039062pt;}
.h19{height:35.416436pt;}
.h12{height:35.456250pt;}
.h17{height:35.469770pt;}
.h22{height:35.523103pt;}
.h5{height:38.932292pt;}
.h9{height:39.088542pt;}
.h8{height:39.458333pt;}
.h4{height:42.417708pt;}
.h3{height:42.825521pt;}
.hd{height:44.390625pt;}
.h2{height:45.900000pt;}
.h6{height:49.322917pt;}
.h15{height:49.336436pt;}
.h1c{height:52.000000pt;}
.h11{height:53.203125pt;}
.h13{height:54.818262pt;}
.he{height:55.520833pt;}
.ha{height:70.078125pt;}
.h20{height:104.033333pt;}
.h16{height:138.693333pt;}
.h1f{height:156.026667pt;}
.h1d{height:190.693333pt;}
.h18{height:208.026667pt;}
.h1e{height:208.066667pt;}
.h1b{height:260.066667pt;}
.h21{height:277.360000pt;}
.h1a{height:312.066667pt;}
.hf{height:460.106667pt;}
.h0{height:1122.400000pt;}
.h1{height:1122.666667pt;}
.w7{width:47.233333pt;}
.w8{width:88.833333pt;}
.w4{width:112.600000pt;}
.w6{width:160.866667pt;}
.wa{width:255.266667pt;}
.w3{width:302.200000pt;}
.w9{width:308.360000pt;}
.w2{width:331.066667pt;}
.w5{width:793.866655pt;}
.w0{width:793.866667pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1c{left:7.200000pt;}
.x1e{left:8.533333pt;}
.x1a{left:9.600000pt;}
.x19{left:11.200000pt;}
.xf{left:12.566667pt;}
.x1b{left:13.586667pt;}
.x17{left:15.200000pt;}
.x21{left:16.533333pt;}
.x18{left:17.866667pt;}
.x16{left:19.766667pt;}
.x1d{left:21.066667pt;}
.x2c{left:22.400000pt;}
.x26{left:24.533333pt;}
.x23{left:26.666667pt;}
.x30{left:29.066667pt;}
.x11{left:30.400000pt;}
.x2e{left:31.733333pt;}
.x29{left:34.120000pt;}
.x28{left:36.266667pt;}
.x1{left:48.000000pt;}
.x2a{left:53.600000pt;}
.x20{left:59.453333pt;}
.x31{left:68.786667pt;}
.x24{left:69.866667pt;}
.x9{left:72.566667pt;}
.x32{left:73.600000pt;}
.x34{left:76.566655pt;}
.x1f{left:80.800000pt;}
.x25{left:89.893333pt;}
.x10{left:95.233333pt;}
.x15{left:96.293333pt;}
.x33{left:98.693333pt;}
.x22{left:100.040000pt;}
.x2d{left:109.093333pt;}
.x2b{left:114.693333pt;}
.x27{left:121.106667pt;}
.xb{left:125.366655pt;}
.x13{left:133.906667pt;}
.x2f{left:142.706667pt;}
.x3{left:151.226667pt;}
.x12{left:184.066667pt;}
.x5{left:221.933322pt;}
.x6{left:222.999988pt;}
.xe{left:238.466655pt;}
.x7{left:245.933322pt;}
.xd{left:250.199988pt;}
.x8{left:251.266655pt;}
.x2{left:379.066667pt;}
.x14{left:492.440000pt;}
.xc{left:617.533322pt;}
.xa{left:620.466655pt;}
.x4{left:681.266667pt;}
}




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