
    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_20d1f7eed80f0be2c8f8dbab.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_12cd16df9eb1ba04a129f837.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_28d23b704e44f3553d481e19.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.914062;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_76956f03ab99f079ee53ea6f.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_9f2afce29ba85795ccf976db.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_153e4b0c82dd2384fae8fde1.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.364258;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_04009d410527fe4c2886b697.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_fc22a9563cf680b276a14ce8.woff2')format("woff");}.ff8{font-family:ff8;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;}
.m1{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(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);}
.v4{vertical-align:-64.800000px;}
.v3{vertical-align:-63.360000px;}
.v6{vertical-align:-56.160000px;}
.v2{vertical-align:-18.000000px;}
.v5{vertical-align:-2.880000px;}
.v0{vertical-align:0.000000px;}
.v7{vertical-align:2.880000px;}
.v1{vertical-align:18.000000px;}
.ls23{letter-spacing:-1.080000px;}
.lsa{letter-spacing:-0.828000px;}
.ls17{letter-spacing:-0.360000px;}
.ls10{letter-spacing:-0.216000px;}
.ls7{letter-spacing:-0.126000px;}
.ls22{letter-spacing:-0.108000px;}
.ls19{letter-spacing:-0.018000px;}
.ls1e{letter-spacing:-0.004200px;}
.ls6{letter-spacing:0.000000px;}
.ls1a{letter-spacing:0.004200px;}
.ls1b{letter-spacing:0.017400px;}
.ls9{letter-spacing:0.018000px;}
.ls8{letter-spacing:0.108000px;}
.ls16{letter-spacing:0.126000px;}
.ls1{letter-spacing:0.180000px;}
.ls15{letter-spacing:0.306000px;}
.ls29{letter-spacing:0.324000px;}
.ls0{letter-spacing:0.360000px;}
.ls18{letter-spacing:0.612000px;}
.ls1f{letter-spacing:0.900000px;}
.lse{letter-spacing:4.500000px;}
.ls11{letter-spacing:5.940000px;}
.ls12{letter-spacing:7.380000px;}
.ls25{letter-spacing:10.440000px;}
.ls24{letter-spacing:10.980000px;}
.ls14{letter-spacing:12.420000px;}
.ls21{letter-spacing:18.480000px;}
.lsf{letter-spacing:23.940000px;}
.lsb{letter-spacing:24.588000px;}
.ls13{letter-spacing:27.540000px;}
.ls20{letter-spacing:27.558000px;}
.ls3{letter-spacing:28.908000px;}
.ls5{letter-spacing:29.088000px;}
.lsd{letter-spacing:31.860000px;}
.lsc{letter-spacing:67.788000px;}
.ls27{letter-spacing:364.476000px;}
.ls4{letter-spacing:406.260000px;}
.ls2{letter-spacing:457.356000px;}
.ls28{letter-spacing:501.276000px;}
.ls26{letter-spacing:759.216000px;}
.ls1c{letter-spacing:871.176000px;}
.ls1d{letter-spacing:1645.656000px;}
.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;}
}
.ws8{word-spacing:-54.000000px;}
.wsb{word-spacing:-14.112000px;}
.ws2{word-spacing:-13.860000px;}
.ws12{word-spacing:-13.824000px;}
.ws3{word-spacing:-13.608000px;}
.ws4{word-spacing:-13.518000px;}
.ws7{word-spacing:-13.500000px;}
.wsc{word-spacing:-13.482000px;}
.ws11{word-spacing:-13.392000px;}
.ws1{word-spacing:-13.374000px;}
.wsa{word-spacing:-13.284000px;}
.ws9{word-spacing:-13.140000px;}
.ws5{word-spacing:-12.672000px;}
.wse{word-spacing:-9.737400px;}
.wsd{word-spacing:-9.724200px;}
.ws10{word-spacing:-9.720000px;}
.wsf{word-spacing:-9.715800px;}
.ws0{word-spacing:-9.000000px;}
.ws6{word-spacing:0.000000px;}
._3{margin-left:-2.268000px;}
._0{margin-left:-1.008000px;}
._1{width:1.061982px;}
._5{width:2.393874px;}
._4{width:3.438018px;}
._2{width:5.100054px;}
._6{width:6.354810px;}
._9{width:7.686000px;}
._8{width:9.108000px;}
._a{width:10.638000px;}
._7{width:12.006018px;}
._12{width:14.850036px;}
._10{width:16.523946px;}
._f{width:18.252036px;}
._14{width:19.416072px;}
._13{width:20.483982px;}
._e{width:22.445928px;}
._d{width:24.210018px;}
._16{width:25.320024px;}
._11{width:27.090000px;}
._c{width:28.206000px;}
._b{width:30.006000px;}
._15{width:31.188006px;}
._17{width:32.544018px;}
._1a{width:34.110018px;}
._20{width:35.478036px;}
._19{width:36.828000px;}
._18{width:37.854000px;}
._1d{width:39.582000px;}
._21{width:43.578018px;}
._22{width:44.928000px;}
._1e{width:53.711928px;}
._1f{width:54.840216px;}
._23{width:59.688018px;}
._24{width:63.252018px;}
._1c{width:121.860000px;}
._1b{width:153.540000px;}
.fc1{color:transparent;}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:23.760000px;}
.fs2{font-size:36.000000px;}
.fs6{font-size:38.880000px;}
.fs7{font-size:41.760000px;}
.fs5{font-size:45.360000px;}
.fs3{font-size:48.000000px;}
.fs1{font-size:54.000000px;}
.fs0{font-size:72.000000px;}
.y13f{bottom:-30.780000px;}
.y140{bottom:-25.380000px;}
.y13e{bottom:-15.120000px;}
.y141{bottom:-14.940000px;}
.y1d5{bottom:-0.015000px;}
.y0{bottom:0.000000px;}
.y20f{bottom:0.165000px;}
.y1c4{bottom:0.180000px;}
.y1cc{bottom:0.720000px;}
.y125{bottom:1.260000px;}
.y1d2{bottom:1.620000px;}
.y1d7{bottom:1.785000px;}
.y1d6{bottom:1.965000px;}
.y1c8{bottom:1.980000px;}
.y1cf{bottom:2.160000px;}
.y135{bottom:2.340000px;}
.y124{bottom:2.520000px;}
.y4c{bottom:2.526000px;}
.y1c9{bottom:2.700000px;}
.y112{bottom:2.880000px;}
.y145{bottom:3.225000px;}
.y114{bottom:3.240000px;}
.y12f{bottom:3.600000px;}
.y144{bottom:3.945000px;}
.y214{bottom:4.305000px;}
.y13b{bottom:5.940000px;}
.y1d9{bottom:6.285000px;}
.y1bd{bottom:7.200000px;}
.y13a{bottom:9.000000px;}
.y1be{bottom:11.340000px;}
.y134{bottom:13.680000px;}
.y4b{bottom:16.926000px;}
.y12b{bottom:18.720000px;}
.y12c{bottom:19.080000px;}
.y12e{bottom:19.440000px;}
.y133{bottom:25.020000px;}
.y4d{bottom:35.760095px;}
.y132{bottom:36.180000px;}
.y1c3{bottom:46.980000px;}
.y1c7{bottom:54.000000px;}
.y11e{bottom:55.605000px;}
.y1c2{bottom:59.400000px;}
.y1c6{bottom:69.165000px;}
.y11d{bottom:71.085000px;}
.y1c1{bottom:71.820000px;}
.y123{bottom:75.645000px;}
.y13d{bottom:77.400000px;}
.y1bc{bottom:77.760000px;}
.y1c0{bottom:84.960000px;}
.y1c5{bottom:85.725000px;}
.y11c{bottom:86.970000px;}
.y143{bottom:88.005000px;}
.y122{bottom:88.965000px;}
.y213{bottom:90.705000px;}
.y1d1{bottom:92.160000px;}
.y20e{bottom:99.210000px;}
.y121{bottom:102.285000px;}
.y11b{bottom:102.810000px;}
.y212{bottom:106.545000px;}
.y1cb{bottom:107.460000px;}
.y20d{bottom:115.050000px;}
.y120{bottom:115.785000px;}
.y49{bottom:117.036000px;}
.y11a{bottom:118.650000px;}
.y1e3{bottom:119.376000px;}
.y217{bottom:120.096000px;}
.y1ce{bottom:121.170000px;}
.y1d4{bottom:121.710000px;}
.y211{bottom:122.385000px;}
.y148{bottom:123.696000px;}
.y106{bottom:124.056000px;}
.y9c{bottom:131.256000px;}
.yd0{bottom:132.696000px;}
.y3e{bottom:132.876000px;}
.y119{bottom:134.490000px;}
.y1e6{bottom:134.856000px;}
.y1e2{bottom:135.216000px;}
.y180{bottom:137.016000px;}
.y147{bottom:139.536000px;}
.y105{bottom:139.896000px;}
.y9b{bottom:147.096000px;}
.ycf{bottom:148.536000px;}
.y3d{bottom:148.716000px;}
.y118{bottom:150.330000px;}
.y1e5{bottom:150.690000px;}
.y1e1{bottom:151.050000px;}
.y216{bottom:151.770000px;}
.y17f{bottom:152.850000px;}
.y146{bottom:153.570000px;}
.y104{bottom:155.730000px;}
.y142{bottom:159.705000px;}
.y9a{bottom:162.930000px;}
.yce{bottom:164.370000px;}
.y3c{bottom:164.550000px;}
.y215{bottom:165.105000px;}
.y117{bottom:166.170000px;}
.y1e4{bottom:166.530000px;}
.y1e0{bottom:166.890000px;}
.y103{bottom:168.330000px;}
.y17e{bottom:168.690000px;}
.y99{bottom:179.310000px;}
.y1b9{bottom:179.670000px;}
.ycd{bottom:180.210000px;}
.y3b{bottom:180.390000px;}
.y210{bottom:181.665000px;}
.y116{bottom:182.010000px;}
.y1df{bottom:182.730000px;}
.y17d{bottom:184.530000px;}
.y98{bottom:195.150000px;}
.y1b8{bottom:195.510000px;}
.ycc{bottom:196.050000px;}
.y3a{bottom:196.230000px;}
.y1de{bottom:198.570000px;}
.y17c{bottom:200.370000px;}
.y97{bottom:207.750000px;}
.y1b7{bottom:211.350000px;}
.ycb{bottom:211.890000px;}
.y39{bottom:212.070000px;}
.y1dd{bottom:214.410000px;}
.y17b{bottom:216.210000px;}
.yca{bottom:227.730000px;}
.y38{bottom:227.910000px;}
.y1b6{bottom:228.090000px;}
.y1dc{bottom:230.250000px;}
.y17a{bottom:232.050000px;}
.yc9{bottom:243.570000px;}
.y37{bottom:243.750000px;}
.y1b5{bottom:243.930000px;}
.y1db{bottom:246.090000px;}
.y179{bottom:247.890000px;}
.yc8{bottom:259.410000px;}
.y36{bottom:259.590000px;}
.y1b4{bottom:259.770000px;}
.y25a{bottom:262.110000px;}
.y178{bottom:263.730000px;}
.yc7{bottom:275.250000px;}
.y35{bottom:275.430000px;}
.y1b3{bottom:275.610000px;}
.y79{bottom:275.790000px;}
.y1da{bottom:277.770000px;}
.y177{bottom:279.570000px;}
.y102{bottom:280.650000px;}
.y259{bottom:286.950000px;}
.y1d8{bottom:291.105000px;}
.y34{bottom:291.270000px;}
.y78{bottom:291.630000px;}
.yc6{bottom:291.990000px;}
.y1b2{bottom:292.350000px;}
.y176{bottom:295.410000px;}
.y101{bottom:296.490000px;}
.y233{bottom:302.790000px;}
.y33{bottom:307.110000px;}
.y77{bottom:307.470000px;}
.yc5{bottom:307.830000px;}
.y1b1{bottom:308.550000px;}
.y175{bottom:311.250000px;}
.y100{bottom:312.330000px;}
.y1d3{bottom:313.785000px;}
.y20c{bottom:317.385000px;}
.y232{bottom:318.630000px;}
.y32{bottom:322.950000px;}
.y76{bottom:323.310000px;}
.yc4{bottom:323.670000px;}
.y1b0{bottom:324.750000px;}
.y174{bottom:327.990000px;}
.yff{bottom:328.170000px;}
.y258{bottom:332.490000px;}
.y31{bottom:338.790000px;}
.y75{bottom:339.150000px;}
.yc3{bottom:339.510000px;}
.y1af{bottom:340.590000px;}
.y231{bottom:343.470000px;}
.y173{bottom:343.830000px;}
.yfe{bottom:344.010000px;}
.y30{bottom:354.630000px;}
.yc2{bottom:355.350000px;}
.y1ae{bottom:356.475000px;}
.y257{bottom:357.375000px;}
.y74{bottom:357.735000px;}
.y230{bottom:359.355000px;}
.yfd{bottom:359.895000px;}
.y172{bottom:360.615000px;}
.y2f{bottom:370.515000px;}
.yc1{bottom:371.235000px;}
.y1ad{bottom:372.315000px;}
.y256{bottom:373.215000px;}
.y22f{bottom:375.195000px;}
.yfc{bottom:375.735000px;}
.y73{bottom:376.275000px;}
.y171{bottom:376.455000px;}
.y2e{bottom:386.355000px;}
.yc0{bottom:387.075000px;}
.y1ac{bottom:388.155000px;}
.y255{bottom:389.055000px;}
.y22e{bottom:391.035000px;}
.yfb{bottom:391.575000px;}
.y13c{bottom:391.935000px;}
.y170{bottom:392.295000px;}
.y72{bottom:392.655000px;}
.y96{bottom:398.775000px;}
.y2d{bottom:402.195000px;}
.ybf{bottom:402.915000px;}
.y1ab{bottom:403.995000px;}
.y254{bottom:404.895000px;}
.yfa{bottom:407.415000px;}
.y71{bottom:409.035000px;}
.y95{bottom:414.615000px;}
.y22d{bottom:415.875000px;}
.y2c{bottom:418.035000px;}
.ybe{bottom:419.655000px;}
.y1aa{bottom:419.835000px;}
.yf9{bottom:423.255000px;}
.y16f{bottom:424.875000px;}
.y70{bottom:425.415000px;}
.y253{bottom:429.735000px;}
.y94{bottom:430.455000px;}
.y22c{bottom:431.715000px;}
.y2b{bottom:433.875000px;}
.ybd{bottom:435.495000px;}
.y1a9{bottom:435.675000px;}
.yf8{bottom:439.095000px;}
.y16e{bottom:440.715000px;}
.y6f{bottom:441.795000px;}
.y252{bottom:445.575000px;}
.y20b{bottom:445.755000px;}
.y93{bottom:446.655000px;}
.y22b{bottom:447.555000px;}
.y1d0{bottom:448.815000px;}
.y2a{bottom:449.715000px;}
.ybc{bottom:451.335000px;}
.y1a8{bottom:451.515000px;}
.yf7{bottom:454.935000px;}
.y16d{bottom:456.555000px;}
.y6e{bottom:457.635000px;}
.y251{bottom:461.415000px;}
.y92{bottom:462.495000px;}
.y29{bottom:465.555000px;}
.ybb{bottom:467.175000px;}
.y1a7{bottom:467.355000px;}
.y6d{bottom:470.235000px;}
.yf6{bottom:470.775000px;}
.y22a{bottom:472.395000px;}
.y16c{bottom:473.295000px;}
.y91{bottom:478.335000px;}
.y28{bottom:481.395000px;}
.yba{bottom:483.015000px;}
.y1a6{bottom:483.195000px;}
.y250{bottom:486.255000px;}
.yf5{bottom:486.975000px;}
.y229{bottom:488.235000px;}
.y16b{bottom:489.135000px;}
.y90{bottom:494.175000px;}
.y27{bottom:497.235000px;}
.yb9{bottom:498.855000px;}
.y1a5{bottom:499.035000px;}
.y24f{bottom:502.095000px;}
.yf4{bottom:503.175000px;}
.y228{bottom:504.075000px;}
.y16a{bottom:504.975000px;}
.y8f{bottom:510.015000px;}
.y26{bottom:513.075000px;}
.yb8{bottom:514.695000px;}
.y1a4{bottom:514.875000px;}
.y24e{bottom:517.935000px;}
.yf3{bottom:519.015000px;}
.y227{bottom:519.915000px;}
.y169{bottom:520.815000px;}
.y8e{bottom:525.855000px;}
.y25{bottom:528.915000px;}
.yb7{bottom:530.535000px;}
.y1a3{bottom:530.715000px;}
.yf2{bottom:534.855000px;}
.y168{bottom:536.655000px;}
.y8d{bottom:541.695000px;}
.y48{bottom:542.415000px;}
.y24d{bottom:542.775000px;}
.y24{bottom:544.755000px;}
.yb6{bottom:546.375000px;}
.y1a2{bottom:546.555000px;}
.yf1{bottom:550.695000px;}
.y167{bottom:553.395000px;}
.y1cd{bottom:554.295000px;}
.y8c{bottom:557.535000px;}
.y47{bottom:558.255000px;}
.y24c{bottom:558.615000px;}
.y23{bottom:560.595000px;}
.yb5{bottom:562.215000px;}
.y1a1{bottom:562.395000px;}
.yf0{bottom:567.075000px;}
.y166{bottom:569.235000px;}
.y8b{bottom:573.375000px;}
.y46{bottom:574.095000px;}
.y24b{bottom:574.455000px;}
.y22{bottom:576.435000px;}
.yb4{bottom:578.055000px;}
.y1a0{bottom:578.235000px;}
.y201{bottom:582.555000px;}
.yef{bottom:583.455000px;}
.y165{bottom:585.975000px;}
.y8a{bottom:589.215000px;}
.y45{bottom:589.935000px;}
.y24a{bottom:590.295000px;}
.y21{bottom:592.275000px;}
.yb3{bottom:593.895000px;}
.y19f{bottom:594.075000px;}
.y139{bottom:596.055000px;}
.y200{bottom:598.395000px;}
.yee{bottom:599.295000px;}
.y164{bottom:601.815000px;}
.y89{bottom:605.055000px;}
.y44{bottom:605.775000px;}
.y249{bottom:606.135000px;}
.y20{bottom:608.115000px;}
.yb2{bottom:609.735000px;}
.y19e{bottom:609.915000px;}
.yed{bottom:611.895000px;}
.y1ff{bottom:614.265000px;}
.y88{bottom:617.685000px;}
.y6c{bottom:618.585000px;}
.y43{bottom:621.645000px;}
.y138{bottom:622.005000px;}
.y1f{bottom:623.985000px;}
.yb1{bottom:625.605000px;}
.y19d{bottom:626.685000px;}
.y1fe{bottom:630.105000px;}
.y248{bottom:631.005000px;}
.y163{bottom:633.525000px;}
.y6b{bottom:634.425000px;}
.y42{bottom:637.485000px;}
.y137{bottom:637.845000px;}
.y1e{bottom:639.825000px;}
.yb0{bottom:641.445000px;}
.y19c{bottom:642.525000px;}
.y1fd{bottom:645.945000px;}
.y247{bottom:646.845000px;}
.y162{bottom:649.365000px;}
.y6a{bottom:650.265000px;}
.y41{bottom:653.325000px;}
.y1d{bottom:655.665000px;}
.y19b{bottom:658.365000px;}
.y1fc{bottom:661.785000px;}
.y246{bottom:662.685000px;}
.y161{bottom:665.205000px;}
.y69{bottom:666.105000px;}
.y136{bottom:667.725000px;}
.y40{bottom:669.165000px;}
.yaf{bottom:670.425000px;}
.y20a{bottom:671.505000px;}
.y131{bottom:673.845000px;}
.y19a{bottom:674.205000px;}
.y1fb{bottom:677.625000px;}
.y245{bottom:678.525000px;}
.yec{bottom:680.145000px;}
.y68{bottom:681.945000px;}
.y3f{bottom:685.005000px;}
.yae{bottom:686.625000px;}
.y209{bottom:687.345000px;}
.y1ca{bottom:688.785000px;}
.y199{bottom:690.945000px;}
.y1fa{bottom:693.465000px;}
.yeb{bottom:695.985000px;}
.y67{bottom:697.785000px;}
.y1c{bottom:700.485000px;}
.yad{bottom:702.465000px;}
.y208{bottom:703.185000px;}
.y244{bottom:703.365000px;}
.y198{bottom:706.785000px;}
.y1f9{bottom:709.305000px;}
.yea{bottom:711.825000px;}
.y66{bottom:713.625000px;}
.y160{bottom:713.985000px;}
.y226{bottom:714.345000px;}
.y1b{bottom:716.685000px;}
.yac{bottom:718.305000px;}
.y207{bottom:719.025000px;}
.y243{bottom:719.205000px;}
.y12d{bottom:720.105000px;}
.y197{bottom:722.625000px;}
.y1f8{bottom:725.145000px;}
.ye9{bottom:728.565000px;}
.y65{bottom:729.465000px;}
.y15f{bottom:730.185000px;}
.y1a{bottom:732.525000px;}
.yab{bottom:734.145000px;}
.y206{bottom:734.865000px;}
.y242{bottom:735.045000px;}
.y130{bottom:736.665000px;}
.y196{bottom:738.465000px;}
.y1f7{bottom:740.985000px;}
.ye8{bottom:744.405000px;}
.y64{bottom:745.305000px;}
.y15e{bottom:746.025000px;}
.y19{bottom:748.365000px;}
.yaa{bottom:749.985000px;}
.y12a{bottom:753.225000px;}
.y195{bottom:754.305000px;}
.y1f6{bottom:756.825000px;}
.y241{bottom:759.885000px;}
.ye7{bottom:760.245000px;}
.y63{bottom:761.145000px;}
.y15d{bottom:761.865000px;}
.y205{bottom:763.845000px;}
.y18{bottom:764.205000px;}
.ya9{bottom:765.825000px;}
.y194{bottom:770.145000px;}
.y1f5{bottom:772.665000px;}
.y240{bottom:775.725000px;}
.ye6{bottom:776.085000px;}
.y62{bottom:776.985000px;}
.y15c{bottom:777.705000px;}
.y17{bottom:780.045000px;}
.ya8{bottom:781.665000px;}
.y129{bottom:785.625000px;}
.y115{bottom:785.640000px;}
.y193{bottom:786.885000px;}
.y1f4{bottom:788.505000px;}
.ye5{bottom:791.925000px;}
.y61{bottom:792.825000px;}
.y225{bottom:793.545000px;}
.y16{bottom:795.885000px;}
.ya7{bottom:797.505000px;}
.y23f{bottom:800.565000px;}
.y128{bottom:802.185000px;}
.y192{bottom:802.725000px;}
.y1f3{bottom:804.345000px;}
.y15b{bottom:806.685000px;}
.ye4{bottom:807.765000px;}
.y224{bottom:809.385000px;}
.y60{bottom:809.565000px;}
.y15{bottom:811.725000px;}
.ya6{bottom:813.885000px;}
.y23e{bottom:816.405000px;}
.y191{bottom:818.565000px;}
.y127{bottom:818.745000px;}
.y1f2{bottom:820.185000px;}
.y15a{bottom:822.885000px;}
.ye3{bottom:823.605000px;}
.y223{bottom:825.225000px;}
.y5f{bottom:825.405000px;}
.y14{bottom:827.565000px;}
.ya5{bottom:830.265000px;}
.y23d{bottom:832.245000px;}
.y190{bottom:834.405000px;}
.y126{bottom:835.305000px;}
.y1f1{bottom:836.025000px;}
.y159{bottom:838.725000px;}
.ye2{bottom:839.445000px;}
.y222{bottom:841.065000px;}
.y5e{bottom:842.145000px;}
.y13{bottom:843.405000px;}
.ya4{bottom:846.105000px;}
.y87{bottom:850.245000px;}
.y11f{bottom:851.865000px;}
.y158{bottom:854.565000px;}
.ye1{bottom:855.285000px;}
.y221{bottom:856.905000px;}
.y23c{bottom:857.085000px;}
.y5d{bottom:857.985000px;}
.ya3{bottom:858.705000px;}
.y12{bottom:859.245000px;}
.y86{bottom:866.085000px;}
.y18f{bottom:866.985000px;}
.y1f0{bottom:867.705000px;}
.y157{bottom:870.405000px;}
.ye0{bottom:871.485000px;}
.y220{bottom:872.790000px;}
.y23b{bottom:872.970000px;}
.y5c{bottom:873.870000px;}
.y11{bottom:875.130000px;}
.y85{bottom:881.970000px;}
.y18e{bottom:882.870000px;}
.y1ef{bottom:884.490000px;}
.y156{bottom:886.290000px;}
.ydf{bottom:887.730000px;}
.y21f{bottom:888.630000px;}
.y23a{bottom:888.810000px;}
.y10{bottom:890.610000px;}
.y204{bottom:890.970000px;}
.y84{bottom:897.810000px;}
.y18d{bottom:898.710000px;}
.y1ee{bottom:900.330000px;}
.y155{bottom:902.130000px;}
.yde{bottom:903.570000px;}
.y21e{bottom:904.470000px;}
.y5b{bottom:906.450000px;}
.yf{bottom:906.810000px;}
.y1bf{bottom:908.610000px;}
.y83{bottom:913.650000px;}
.y18c{bottom:914.550000px;}
.y1ed{bottom:916.170000px;}
.y154{bottom:917.970000px;}
.ydd{bottom:919.410000px;}
.y21d{bottom:920.310000px;}
.y5a{bottom:922.290000px;}
.ye{bottom:922.650000px;}
.y82{bottom:929.490000px;}
.y18b{bottom:930.390000px;}
.y1ec{bottom:932.010000px;}
.y153{bottom:933.810000px;}
.ydc{bottom:935.250000px;}
.y21c{bottom:936.150000px;}
.y59{bottom:938.130000px;}
.yd{bottom:938.490000px;}
.y81{bottom:945.330000px;}
.y18a{bottom:946.230000px;}
.y1eb{bottom:948.750000px;}
.y152{bottom:949.650000px;}
.ydb{bottom:951.090000px;}
.y21b{bottom:951.990000px;}
.y58{bottom:953.970000px;}
.yc{bottom:954.330000px;}
.y80{bottom:961.710000px;}
.y189{bottom:962.970000px;}
.y1ea{bottom:964.590000px;}
.y151{bottom:965.490000px;}
.y21a{bottom:967.830000px;}
.y57{bottom:969.810000px;}
.y203{bottom:970.170000px;}
.yb{bottom:970.530000px;}
.y7f{bottom:978.090000px;}
.y188{bottom:978.810000px;}
.yda{bottom:980.070000px;}
.y1e9{bottom:980.430000px;}
.y113{bottom:981.330000px;}
.y219{bottom:983.670000px;}
.ya{bottom:986.010000px;}
.y7e{bottom:993.930000px;}
.y187{bottom:995.550000px;}
.yd9{bottom:996.270000px;}
.y150{bottom:997.170000px;}
.y111{bottom:997.890000px;}
.y56{bottom:999.150000px;}
.y218{bottom:999.510000px;}
.y202{bottom:1001.850000px;}
.y9{bottom:1002.210000px;}
.y1bb{bottom:1006.890000px;}
.y7d{bottom:1010.310000px;}
.y239{bottom:1010.850000px;}
.y186{bottom:1011.390000px;}
.yd8{bottom:1012.110000px;}
.y14f{bottom:1013.010000px;}
.y55{bottom:1015.350000px;}
.y110{bottom:1017.690000px;}
.y8{bottom:1018.050000px;}
.y7c{bottom:1026.150000px;}
.y238{bottom:1026.690000px;}
.y185{bottom:1027.230000px;}
.yd7{bottom:1027.950000px;}
.y14e{bottom:1028.850000px;}
.y54{bottom:1031.190000px;}
.y10f{bottom:1033.530000px;}
.y7{bottom:1038.390000px;}
.y7b{bottom:1040.190000px;}
.y237{bottom:1042.530000px;}
.y184{bottom:1043.070000px;}
.yd6{bottom:1043.790000px;}
.y14d{bottom:1044.690000px;}
.y7a{bottom:1045.590000px;}
.y53{bottom:1047.030000px;}
.y10e{bottom:1049.370000px;}
.y6{bottom:1049.730000px;}
.y183{bottom:1058.910000px;}
.yd5{bottom:1059.630000px;}
.ya2{bottom:1059.810000px;}
.y14c{bottom:1060.530000px;}
.y52{bottom:1062.870000px;}
.y10d{bottom:1065.210000px;}
.y5{bottom:1065.570000px;}
.y236{bottom:1067.370000px;}
.y182{bottom:1074.750000px;}
.yd4{bottom:1075.470000px;}
.ya1{bottom:1075.650000px;}
.y10a{bottom:1075.830000px;}
.y14b{bottom:1076.370000px;}
.y51{bottom:1078.710000px;}
.y10c{bottom:1081.050000px;}
.y4{bottom:1081.410000px;}
.y235{bottom:1083.210000px;}
.y181{bottom:1090.590000px;}
.yd3{bottom:1091.310000px;}
.ya0{bottom:1091.490000px;}
.y109{bottom:1091.670000px;}
.y14a{bottom:1092.210000px;}
.y50{bottom:1094.550000px;}
.y3{bottom:1097.250000px;}
.y1ba{bottom:1097.970000px;}
.y234{bottom:1099.050000px;}
.yd2{bottom:1107.150000px;}
.y9f{bottom:1107.330000px;}
.y108{bottom:1107.510000px;}
.y149{bottom:1108.050000px;}
.y10b{bottom:1110.030000px;}
.y4f{bottom:1110.390000px;}
.y2{bottom:1113.810000px;}
.y1e8{bottom:1122.990000px;}
.y107{bottom:1123.350000px;}
.y9e{bottom:1123.530000px;}
.yd1{bottom:1123.890000px;}
.y1{bottom:1135.080000px;}
.y1e7{bottom:1138.860000px;}
.y4e{bottom:1139.400000px;}
.y9d{bottom:1139.760000px;}
.y4a{bottom:1193.939722px;}
.hd{height:15.825000px;}
.h11{height:15.840000px;}
.h1a{height:21.945000px;}
.h17{height:21.990000px;}
.hb{height:23.319141px;}
.h7{height:29.040150px;}
.h12{height:31.680000px;}
.h13{height:32.400000px;}
.h5{height:35.332031px;}
.hc{height:37.705078px;}
.h16{height:38.158594px;}
.h15{height:39.183750px;}
.h1e{height:40.985156px;}
.h10{height:44.518359px;}
.h14{height:45.540000px;}
.h8{height:49.898438px;}
.h3{height:52.998047px;}
.h4{height:53.332031px;}
.h6{height:54.421875px;}
.ha{height:55.503491px;}
.h9{height:56.214844px;}
.h2{height:72.562500px;}
.h1b{height:90.345000px;}
.h1c{height:90.351000px;}
.h1d{height:97.545000px;}
.h1f{height:97.551000px;}
.h20{height:98.302500px;}
.h25{height:104.745000px;}
.h26{height:104.755500px;}
.h22{height:120.055500px;}
.h21{height:120.060000px;}
.h29{height:127.641000px;}
.h2a{height:127.642500px;}
.hf{height:128.722500px;}
.h23{height:133.770000px;}
.h24{height:133.776000px;}
.h27{height:134.301000px;}
.h28{height:134.302500px;}
.h2b{height:134.985000px;}
.h2c{height:134.991000px;}
.he{height:194.955000px;}
.h18{height:203.385000px;}
.h19{height:231.495000px;}
.h1{height:1258.500000px;}
.h0{height:1258.740000px;}
.w4{width:20.022000px;}
.wd{width:32.076000px;}
.w1c{width:63.741000px;}
.w18{width:63.921000px;}
.w1e{width:63.930000px;}
.w1f{width:71.460000px;}
.w19{width:74.340000px;}
.w1a{width:74.376000px;}
.w1d{width:85.125000px;}
.w1b{width:95.745000px;}
.w9{width:103.176000px;}
.w12{width:117.396000px;}
.w17{width:146.016000px;}
.wa{width:148.341000px;}
.w8{width:159.870000px;}
.w6{width:160.410000px;}
.w7{width:162.375000px;}
.wb{width:162.390000px;}
.we{width:175.881000px;}
.w11{width:176.070000px;}
.w10{width:177.495000px;}
.wf{width:177.510000px;}
.w15{width:196.950000px;}
.w20{width:198.741000px;}
.w22{width:203.280000px;}
.w23{width:203.295000px;}
.w16{width:209.220000px;}
.w14{width:209.235000px;}
.w21{width:211.890000px;}
.w13{width:212.595000px;}
.w5{width:252.075000px;}
.w3{width:492.223500px;}
.w2{width:725.673000px;}
.wc{width:737.280000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x22{left:7.776000px;}
.x31{left:16.056000px;}
.xf{left:20.022000px;}
.xb{left:35.326500px;}
.x26{left:44.265000px;}
.x2f{left:49.680000px;}
.x34{left:51.480000px;}
.x24{left:57.060000px;}
.x36{left:61.005000px;}
.x3d{left:63.000000px;}
.x2e{left:64.800000px;}
.x2c{left:68.220000px;}
.x28{left:69.840000px;}
.x29{left:70.905000px;}
.x2d{left:72.525000px;}
.x21{left:77.400000px;}
.xa{left:83.653496px;}
.x8{left:85.176000px;}
.x53{left:89.670000px;}
.x38{left:94.896000px;}
.x13{left:96.516000px;}
.x14{left:97.596000px;}
.x15{left:98.676000px;}
.x16{left:99.756000px;}
.x1b{left:103.176000px;}
.x32{left:110.205000px;}
.x11{left:111.996000px;}
.x1f{left:114.516000px;}
.x1{left:119.376000px;}
.xd{left:134.382000px;}
.x4f{left:139.005000px;}
.x55{left:142.956000px;}
.x2a{left:152.670000px;}
.x2b{left:154.665000px;}
.x10{left:159.150000px;}
.x30{left:160.230000px;}
.x46{left:169.230000px;}
.x42{left:180.390000px;}
.x5{left:181.650000px;}
.x40{left:182.910000px;}
.x3f{left:184.215000px;}
.x3e{left:185.250000px;}
.x41{left:187.815000px;}
.x43{left:189.210000px;}
.x44{left:193.935000px;}
.x3a{left:195.525000px;}
.x52{left:198.570000px;}
.xc{left:200.378265px;}
.x45{left:201.495000px;}
.x54{left:216.210000px;}
.x47{left:223.425000px;}
.x2{left:252.795000px;}
.x33{left:286.815000px;}
.x39{left:322.815000px;}
.x23{left:330.375000px;}
.x50{left:338.475000px;}
.x6{left:349.095000px;}
.x48{left:361.695000px;}
.x7{left:372.135000px;}
.x3b{left:409.035000px;}
.x4{left:413.745000px;}
.x12{left:433.365000px;}
.x49{left:436.080000px;}
.x3{left:445.965000px;}
.x9{left:460.185000px;}
.x4e{left:463.425000px;}
.x35{left:465.060000px;}
.x1d{left:469.185000px;}
.x18{left:472.605000px;}
.x20{left:477.105000px;}
.x19{left:480.525000px;}
.x1c{left:487.005000px;}
.x25{left:491.520000px;}
.x1e{left:497.265000px;}
.x4a{left:531.840000px;}
.x51{left:551.100000px;}
.x4b{left:595.590000px;}
.x17{left:613.590000px;}
.x3c{left:618.990000px;}
.x37{left:643.470000px;}
.x27{left:654.630000px;}
.x4c{left:680.730000px;}
.x4d{left:744.480000px;}
.xe{left:787.918304px;}
.x1a{left:808.200000px;}
@media print{
.v4{vertical-align:-57.600000pt;}
.v3{vertical-align:-56.320000pt;}
.v6{vertical-align:-49.920000pt;}
.v2{vertical-align:-16.000000pt;}
.v5{vertical-align:-2.560000pt;}
.v0{vertical-align:0.000000pt;}
.v7{vertical-align:2.560000pt;}
.v1{vertical-align:16.000000pt;}
.ls23{letter-spacing:-0.960000pt;}
.lsa{letter-spacing:-0.736000pt;}
.ls17{letter-spacing:-0.320000pt;}
.ls10{letter-spacing:-0.192000pt;}
.ls7{letter-spacing:-0.112000pt;}
.ls22{letter-spacing:-0.096000pt;}
.ls19{letter-spacing:-0.016000pt;}
.ls1e{letter-spacing:-0.003733pt;}
.ls6{letter-spacing:0.000000pt;}
.ls1a{letter-spacing:0.003733pt;}
.ls1b{letter-spacing:0.015467pt;}
.ls9{letter-spacing:0.016000pt;}
.ls8{letter-spacing:0.096000pt;}
.ls16{letter-spacing:0.112000pt;}
.ls1{letter-spacing:0.160000pt;}
.ls15{letter-spacing:0.272000pt;}
.ls29{letter-spacing:0.288000pt;}
.ls0{letter-spacing:0.320000pt;}
.ls18{letter-spacing:0.544000pt;}
.ls1f{letter-spacing:0.800000pt;}
.lse{letter-spacing:4.000000pt;}
.ls11{letter-spacing:5.280000pt;}
.ls12{letter-spacing:6.560000pt;}
.ls25{letter-spacing:9.280000pt;}
.ls24{letter-spacing:9.760000pt;}
.ls14{letter-spacing:11.040000pt;}
.ls21{letter-spacing:16.426667pt;}
.lsf{letter-spacing:21.280000pt;}
.lsb{letter-spacing:21.856000pt;}
.ls13{letter-spacing:24.480000pt;}
.ls20{letter-spacing:24.496000pt;}
.ls3{letter-spacing:25.696000pt;}
.ls5{letter-spacing:25.856000pt;}
.lsd{letter-spacing:28.320000pt;}
.lsc{letter-spacing:60.256000pt;}
.ls27{letter-spacing:323.978667pt;}
.ls4{letter-spacing:361.120000pt;}
.ls2{letter-spacing:406.538667pt;}
.ls28{letter-spacing:445.578667pt;}
.ls26{letter-spacing:674.858667pt;}
.ls1c{letter-spacing:774.378667pt;}
.ls1d{letter-spacing:1462.805333pt;}
.ws8{word-spacing:-48.000000pt;}
.wsb{word-spacing:-12.544000pt;}
.ws2{word-spacing:-12.320000pt;}
.ws12{word-spacing:-12.288000pt;}
.ws3{word-spacing:-12.096000pt;}
.ws4{word-spacing:-12.016000pt;}
.ws7{word-spacing:-12.000000pt;}
.wsc{word-spacing:-11.984000pt;}
.ws11{word-spacing:-11.904000pt;}
.ws1{word-spacing:-11.888000pt;}
.wsa{word-spacing:-11.808000pt;}
.ws9{word-spacing:-11.680000pt;}
.ws5{word-spacing:-11.264000pt;}
.wse{word-spacing:-8.655467pt;}
.wsd{word-spacing:-8.643733pt;}
.ws10{word-spacing:-8.640000pt;}
.wsf{word-spacing:-8.636267pt;}
.ws0{word-spacing:-8.000000pt;}
.ws6{word-spacing:0.000000pt;}
._3{margin-left:-2.016000pt;}
._0{margin-left:-0.896000pt;}
._1{width:0.943984pt;}
._5{width:2.127888pt;}
._4{width:3.056016pt;}
._2{width:4.533381pt;}
._6{width:5.648720pt;}
._9{width:6.832000pt;}
._8{width:8.096000pt;}
._a{width:9.456000pt;}
._7{width:10.672016pt;}
._12{width:13.200032pt;}
._10{width:14.687952pt;}
._f{width:16.224032pt;}
._14{width:17.258731pt;}
._13{width:18.207984pt;}
._e{width:19.951936pt;}
._d{width:21.520016pt;}
._16{width:22.506688pt;}
._11{width:24.080000pt;}
._c{width:25.072000pt;}
._b{width:26.672000pt;}
._15{width:27.722672pt;}
._17{width:28.928016pt;}
._1a{width:30.320016pt;}
._20{width:31.536032pt;}
._19{width:32.736000pt;}
._18{width:33.648000pt;}
._1d{width:35.184000pt;}
._21{width:38.736016pt;}
._22{width:39.936000pt;}
._1e{width:47.743936pt;}
._1f{width:48.746859pt;}
._23{width:53.056016pt;}
._24{width:56.224016pt;}
._1c{width:108.320000pt;}
._1b{width:136.480000pt;}
.fs4{font-size:21.120000pt;}
.fs2{font-size:32.000000pt;}
.fs6{font-size:34.560000pt;}
.fs7{font-size:37.120000pt;}
.fs5{font-size:40.320000pt;}
.fs3{font-size:42.666667pt;}
.fs1{font-size:48.000000pt;}
.fs0{font-size:64.000000pt;}
.y13f{bottom:-27.360000pt;}
.y140{bottom:-22.560000pt;}
.y13e{bottom:-13.440000pt;}
.y141{bottom:-13.280000pt;}
.y1d5{bottom:-0.013333pt;}
.y0{bottom:0.000000pt;}
.y20f{bottom:0.146667pt;}
.y1c4{bottom:0.160000pt;}
.y1cc{bottom:0.640000pt;}
.y125{bottom:1.120000pt;}
.y1d2{bottom:1.440000pt;}
.y1d7{bottom:1.586667pt;}
.y1d6{bottom:1.746667pt;}
.y1c8{bottom:1.760000pt;}
.y1cf{bottom:1.920000pt;}
.y135{bottom:2.080000pt;}
.y124{bottom:2.240000pt;}
.y4c{bottom:2.245333pt;}
.y1c9{bottom:2.400000pt;}
.y112{bottom:2.560000pt;}
.y145{bottom:2.866667pt;}
.y114{bottom:2.880000pt;}
.y12f{bottom:3.200000pt;}
.y144{bottom:3.506667pt;}
.y214{bottom:3.826667pt;}
.y13b{bottom:5.280000pt;}
.y1d9{bottom:5.586667pt;}
.y1bd{bottom:6.400000pt;}
.y13a{bottom:8.000000pt;}
.y1be{bottom:10.080000pt;}
.y134{bottom:12.160000pt;}
.y4b{bottom:15.045333pt;}
.y12b{bottom:16.640000pt;}
.y12c{bottom:16.960000pt;}
.y12e{bottom:17.280000pt;}
.y133{bottom:22.240000pt;}
.y4d{bottom:31.786751pt;}
.y132{bottom:32.160000pt;}
.y1c3{bottom:41.760000pt;}
.y1c7{bottom:48.000000pt;}
.y11e{bottom:49.426667pt;}
.y1c2{bottom:52.800000pt;}
.y1c6{bottom:61.480000pt;}
.y11d{bottom:63.186667pt;}
.y1c1{bottom:63.840000pt;}
.y123{bottom:67.240000pt;}
.y13d{bottom:68.800000pt;}
.y1bc{bottom:69.120000pt;}
.y1c0{bottom:75.520000pt;}
.y1c5{bottom:76.200000pt;}
.y11c{bottom:77.306667pt;}
.y143{bottom:78.226667pt;}
.y122{bottom:79.080000pt;}
.y213{bottom:80.626667pt;}
.y1d1{bottom:81.920000pt;}
.y20e{bottom:88.186667pt;}
.y121{bottom:90.920000pt;}
.y11b{bottom:91.386667pt;}
.y212{bottom:94.706667pt;}
.y1cb{bottom:95.520000pt;}
.y20d{bottom:102.266667pt;}
.y120{bottom:102.920000pt;}
.y49{bottom:104.032000pt;}
.y11a{bottom:105.466667pt;}
.y1e3{bottom:106.112000pt;}
.y217{bottom:106.752000pt;}
.y1ce{bottom:107.706667pt;}
.y1d4{bottom:108.186667pt;}
.y211{bottom:108.786667pt;}
.y148{bottom:109.952000pt;}
.y106{bottom:110.272000pt;}
.y9c{bottom:116.672000pt;}
.yd0{bottom:117.952000pt;}
.y3e{bottom:118.112000pt;}
.y119{bottom:119.546667pt;}
.y1e6{bottom:119.872000pt;}
.y1e2{bottom:120.192000pt;}
.y180{bottom:121.792000pt;}
.y147{bottom:124.032000pt;}
.y105{bottom:124.352000pt;}
.y9b{bottom:130.752000pt;}
.ycf{bottom:132.032000pt;}
.y3d{bottom:132.192000pt;}
.y118{bottom:133.626667pt;}
.y1e5{bottom:133.946667pt;}
.y1e1{bottom:134.266667pt;}
.y216{bottom:134.906667pt;}
.y17f{bottom:135.866667pt;}
.y146{bottom:136.506667pt;}
.y104{bottom:138.426667pt;}
.y142{bottom:141.960000pt;}
.y9a{bottom:144.826667pt;}
.yce{bottom:146.106667pt;}
.y3c{bottom:146.266667pt;}
.y215{bottom:146.760000pt;}
.y117{bottom:147.706667pt;}
.y1e4{bottom:148.026667pt;}
.y1e0{bottom:148.346667pt;}
.y103{bottom:149.626667pt;}
.y17e{bottom:149.946667pt;}
.y99{bottom:159.386667pt;}
.y1b9{bottom:159.706667pt;}
.ycd{bottom:160.186667pt;}
.y3b{bottom:160.346667pt;}
.y210{bottom:161.480000pt;}
.y116{bottom:161.786667pt;}
.y1df{bottom:162.426667pt;}
.y17d{bottom:164.026667pt;}
.y98{bottom:173.466667pt;}
.y1b8{bottom:173.786667pt;}
.ycc{bottom:174.266667pt;}
.y3a{bottom:174.426667pt;}
.y1de{bottom:176.506667pt;}
.y17c{bottom:178.106667pt;}
.y97{bottom:184.666667pt;}
.y1b7{bottom:187.866667pt;}
.ycb{bottom:188.346667pt;}
.y39{bottom:188.506667pt;}
.y1dd{bottom:190.586667pt;}
.y17b{bottom:192.186667pt;}
.yca{bottom:202.426667pt;}
.y38{bottom:202.586667pt;}
.y1b6{bottom:202.746667pt;}
.y1dc{bottom:204.666667pt;}
.y17a{bottom:206.266667pt;}
.yc9{bottom:216.506667pt;}
.y37{bottom:216.666667pt;}
.y1b5{bottom:216.826667pt;}
.y1db{bottom:218.746667pt;}
.y179{bottom:220.346667pt;}
.yc8{bottom:230.586667pt;}
.y36{bottom:230.746667pt;}
.y1b4{bottom:230.906667pt;}
.y25a{bottom:232.986667pt;}
.y178{bottom:234.426667pt;}
.yc7{bottom:244.666667pt;}
.y35{bottom:244.826667pt;}
.y1b3{bottom:244.986667pt;}
.y79{bottom:245.146667pt;}
.y1da{bottom:246.906667pt;}
.y177{bottom:248.506667pt;}
.y102{bottom:249.466667pt;}
.y259{bottom:255.066667pt;}
.y1d8{bottom:258.760000pt;}
.y34{bottom:258.906667pt;}
.y78{bottom:259.226667pt;}
.yc6{bottom:259.546667pt;}
.y1b2{bottom:259.866667pt;}
.y176{bottom:262.586667pt;}
.y101{bottom:263.546667pt;}
.y233{bottom:269.146667pt;}
.y33{bottom:272.986667pt;}
.y77{bottom:273.306667pt;}
.yc5{bottom:273.626667pt;}
.y1b1{bottom:274.266667pt;}
.y175{bottom:276.666667pt;}
.y100{bottom:277.626667pt;}
.y1d3{bottom:278.920000pt;}
.y20c{bottom:282.120000pt;}
.y232{bottom:283.226667pt;}
.y32{bottom:287.066667pt;}
.y76{bottom:287.386667pt;}
.yc4{bottom:287.706667pt;}
.y1b0{bottom:288.666667pt;}
.y174{bottom:291.546667pt;}
.yff{bottom:291.706667pt;}
.y258{bottom:295.546667pt;}
.y31{bottom:301.146667pt;}
.y75{bottom:301.466667pt;}
.yc3{bottom:301.786667pt;}
.y1af{bottom:302.746667pt;}
.y231{bottom:305.306667pt;}
.y173{bottom:305.626667pt;}
.yfe{bottom:305.786667pt;}
.y30{bottom:315.226667pt;}
.yc2{bottom:315.866667pt;}
.y1ae{bottom:316.866667pt;}
.y257{bottom:317.666667pt;}
.y74{bottom:317.986667pt;}
.y230{bottom:319.426667pt;}
.yfd{bottom:319.906667pt;}
.y172{bottom:320.546667pt;}
.y2f{bottom:329.346667pt;}
.yc1{bottom:329.986667pt;}
.y1ad{bottom:330.946667pt;}
.y256{bottom:331.746667pt;}
.y22f{bottom:333.506667pt;}
.yfc{bottom:333.986667pt;}
.y73{bottom:334.466667pt;}
.y171{bottom:334.626667pt;}
.y2e{bottom:343.426667pt;}
.yc0{bottom:344.066667pt;}
.y1ac{bottom:345.026667pt;}
.y255{bottom:345.826667pt;}
.y22e{bottom:347.586667pt;}
.yfb{bottom:348.066667pt;}
.y13c{bottom:348.386667pt;}
.y170{bottom:348.706667pt;}
.y72{bottom:349.026667pt;}
.y96{bottom:354.466667pt;}
.y2d{bottom:357.506667pt;}
.ybf{bottom:358.146667pt;}
.y1ab{bottom:359.106667pt;}
.y254{bottom:359.906667pt;}
.yfa{bottom:362.146667pt;}
.y71{bottom:363.586667pt;}
.y95{bottom:368.546667pt;}
.y22d{bottom:369.666667pt;}
.y2c{bottom:371.586667pt;}
.ybe{bottom:373.026667pt;}
.y1aa{bottom:373.186667pt;}
.yf9{bottom:376.226667pt;}
.y16f{bottom:377.666667pt;}
.y70{bottom:378.146667pt;}
.y253{bottom:381.986667pt;}
.y94{bottom:382.626667pt;}
.y22c{bottom:383.746667pt;}
.y2b{bottom:385.666667pt;}
.ybd{bottom:387.106667pt;}
.y1a9{bottom:387.266667pt;}
.yf8{bottom:390.306667pt;}
.y16e{bottom:391.746667pt;}
.y6f{bottom:392.706667pt;}
.y252{bottom:396.066667pt;}
.y20b{bottom:396.226667pt;}
.y93{bottom:397.026667pt;}
.y22b{bottom:397.826667pt;}
.y1d0{bottom:398.946667pt;}
.y2a{bottom:399.746667pt;}
.ybc{bottom:401.186667pt;}
.y1a8{bottom:401.346667pt;}
.yf7{bottom:404.386667pt;}
.y16d{bottom:405.826667pt;}
.y6e{bottom:406.786667pt;}
.y251{bottom:410.146667pt;}
.y92{bottom:411.106667pt;}
.y29{bottom:413.826667pt;}
.ybb{bottom:415.266667pt;}
.y1a7{bottom:415.426667pt;}
.y6d{bottom:417.986667pt;}
.yf6{bottom:418.466667pt;}
.y22a{bottom:419.906667pt;}
.y16c{bottom:420.706667pt;}
.y91{bottom:425.186667pt;}
.y28{bottom:427.906667pt;}
.yba{bottom:429.346667pt;}
.y1a6{bottom:429.506667pt;}
.y250{bottom:432.226667pt;}
.yf5{bottom:432.866667pt;}
.y229{bottom:433.986667pt;}
.y16b{bottom:434.786667pt;}
.y90{bottom:439.266667pt;}
.y27{bottom:441.986667pt;}
.yb9{bottom:443.426667pt;}
.y1a5{bottom:443.586667pt;}
.y24f{bottom:446.306667pt;}
.yf4{bottom:447.266667pt;}
.y228{bottom:448.066667pt;}
.y16a{bottom:448.866667pt;}
.y8f{bottom:453.346667pt;}
.y26{bottom:456.066667pt;}
.yb8{bottom:457.506667pt;}
.y1a4{bottom:457.666667pt;}
.y24e{bottom:460.386667pt;}
.yf3{bottom:461.346667pt;}
.y227{bottom:462.146667pt;}
.y169{bottom:462.946667pt;}
.y8e{bottom:467.426667pt;}
.y25{bottom:470.146667pt;}
.yb7{bottom:471.586667pt;}
.y1a3{bottom:471.746667pt;}
.yf2{bottom:475.426667pt;}
.y168{bottom:477.026667pt;}
.y8d{bottom:481.506667pt;}
.y48{bottom:482.146667pt;}
.y24d{bottom:482.466667pt;}
.y24{bottom:484.226667pt;}
.yb6{bottom:485.666667pt;}
.y1a2{bottom:485.826667pt;}
.yf1{bottom:489.506667pt;}
.y167{bottom:491.906667pt;}
.y1cd{bottom:492.706667pt;}
.y8c{bottom:495.586667pt;}
.y47{bottom:496.226667pt;}
.y24c{bottom:496.546667pt;}
.y23{bottom:498.306667pt;}
.yb5{bottom:499.746667pt;}
.y1a1{bottom:499.906667pt;}
.yf0{bottom:504.066667pt;}
.y166{bottom:505.986667pt;}
.y8b{bottom:509.666667pt;}
.y46{bottom:510.306667pt;}
.y24b{bottom:510.626667pt;}
.y22{bottom:512.386667pt;}
.yb4{bottom:513.826667pt;}
.y1a0{bottom:513.986667pt;}
.y201{bottom:517.826667pt;}
.yef{bottom:518.626667pt;}
.y165{bottom:520.866667pt;}
.y8a{bottom:523.746667pt;}
.y45{bottom:524.386667pt;}
.y24a{bottom:524.706667pt;}
.y21{bottom:526.466667pt;}
.yb3{bottom:527.906667pt;}
.y19f{bottom:528.066667pt;}
.y139{bottom:529.826667pt;}
.y200{bottom:531.906667pt;}
.yee{bottom:532.706667pt;}
.y164{bottom:534.946667pt;}
.y89{bottom:537.826667pt;}
.y44{bottom:538.466667pt;}
.y249{bottom:538.786667pt;}
.y20{bottom:540.546667pt;}
.yb2{bottom:541.986667pt;}
.y19e{bottom:542.146667pt;}
.yed{bottom:543.906667pt;}
.y1ff{bottom:546.013333pt;}
.y88{bottom:549.053333pt;}
.y6c{bottom:549.853333pt;}
.y43{bottom:552.573333pt;}
.y138{bottom:552.893333pt;}
.y1f{bottom:554.653333pt;}
.yb1{bottom:556.093333pt;}
.y19d{bottom:557.053333pt;}
.y1fe{bottom:560.093333pt;}
.y248{bottom:560.893333pt;}
.y163{bottom:563.133333pt;}
.y6b{bottom:563.933333pt;}
.y42{bottom:566.653333pt;}
.y137{bottom:566.973333pt;}
.y1e{bottom:568.733333pt;}
.yb0{bottom:570.173333pt;}
.y19c{bottom:571.133333pt;}
.y1fd{bottom:574.173333pt;}
.y247{bottom:574.973333pt;}
.y162{bottom:577.213333pt;}
.y6a{bottom:578.013333pt;}
.y41{bottom:580.733333pt;}
.y1d{bottom:582.813333pt;}
.y19b{bottom:585.213333pt;}
.y1fc{bottom:588.253333pt;}
.y246{bottom:589.053333pt;}
.y161{bottom:591.293333pt;}
.y69{bottom:592.093333pt;}
.y136{bottom:593.533333pt;}
.y40{bottom:594.813333pt;}
.yaf{bottom:595.933333pt;}
.y20a{bottom:596.893333pt;}
.y131{bottom:598.973333pt;}
.y19a{bottom:599.293333pt;}
.y1fb{bottom:602.333333pt;}
.y245{bottom:603.133333pt;}
.yec{bottom:604.573333pt;}
.y68{bottom:606.173333pt;}
.y3f{bottom:608.893333pt;}
.yae{bottom:610.333333pt;}
.y209{bottom:610.973333pt;}
.y1ca{bottom:612.253333pt;}
.y199{bottom:614.173333pt;}
.y1fa{bottom:616.413333pt;}
.yeb{bottom:618.653333pt;}
.y67{bottom:620.253333pt;}
.y1c{bottom:622.653333pt;}
.yad{bottom:624.413333pt;}
.y208{bottom:625.053333pt;}
.y244{bottom:625.213333pt;}
.y198{bottom:628.253333pt;}
.y1f9{bottom:630.493333pt;}
.yea{bottom:632.733333pt;}
.y66{bottom:634.333333pt;}
.y160{bottom:634.653333pt;}
.y226{bottom:634.973333pt;}
.y1b{bottom:637.053333pt;}
.yac{bottom:638.493333pt;}
.y207{bottom:639.133333pt;}
.y243{bottom:639.293333pt;}
.y12d{bottom:640.093333pt;}
.y197{bottom:642.333333pt;}
.y1f8{bottom:644.573333pt;}
.ye9{bottom:647.613333pt;}
.y65{bottom:648.413333pt;}
.y15f{bottom:649.053333pt;}
.y1a{bottom:651.133333pt;}
.yab{bottom:652.573333pt;}
.y206{bottom:653.213333pt;}
.y242{bottom:653.373333pt;}
.y130{bottom:654.813333pt;}
.y196{bottom:656.413333pt;}
.y1f7{bottom:658.653333pt;}
.ye8{bottom:661.693333pt;}
.y64{bottom:662.493333pt;}
.y15e{bottom:663.133333pt;}
.y19{bottom:665.213333pt;}
.yaa{bottom:666.653333pt;}
.y12a{bottom:669.533333pt;}
.y195{bottom:670.493333pt;}
.y1f6{bottom:672.733333pt;}
.y241{bottom:675.453333pt;}
.ye7{bottom:675.773333pt;}
.y63{bottom:676.573333pt;}
.y15d{bottom:677.213333pt;}
.y205{bottom:678.973333pt;}
.y18{bottom:679.293333pt;}
.ya9{bottom:680.733333pt;}
.y194{bottom:684.573333pt;}
.y1f5{bottom:686.813333pt;}
.y240{bottom:689.533333pt;}
.ye6{bottom:689.853333pt;}
.y62{bottom:690.653333pt;}
.y15c{bottom:691.293333pt;}
.y17{bottom:693.373333pt;}
.ya8{bottom:694.813333pt;}
.y129{bottom:698.333333pt;}
.y115{bottom:698.346667pt;}
.y193{bottom:699.453333pt;}
.y1f4{bottom:700.893333pt;}
.ye5{bottom:703.933333pt;}
.y61{bottom:704.733333pt;}
.y225{bottom:705.373333pt;}
.y16{bottom:707.453333pt;}
.ya7{bottom:708.893333pt;}
.y23f{bottom:711.613333pt;}
.y128{bottom:713.053333pt;}
.y192{bottom:713.533333pt;}
.y1f3{bottom:714.973333pt;}
.y15b{bottom:717.053333pt;}
.ye4{bottom:718.013333pt;}
.y224{bottom:719.453333pt;}
.y60{bottom:719.613333pt;}
.y15{bottom:721.533333pt;}
.ya6{bottom:723.453333pt;}
.y23e{bottom:725.693333pt;}
.y191{bottom:727.613333pt;}
.y127{bottom:727.773333pt;}
.y1f2{bottom:729.053333pt;}
.y15a{bottom:731.453333pt;}
.ye3{bottom:732.093333pt;}
.y223{bottom:733.533333pt;}
.y5f{bottom:733.693333pt;}
.y14{bottom:735.613333pt;}
.ya5{bottom:738.013333pt;}
.y23d{bottom:739.773333pt;}
.y190{bottom:741.693333pt;}
.y126{bottom:742.493333pt;}
.y1f1{bottom:743.133333pt;}
.y159{bottom:745.533333pt;}
.ye2{bottom:746.173333pt;}
.y222{bottom:747.613333pt;}
.y5e{bottom:748.573333pt;}
.y13{bottom:749.693333pt;}
.ya4{bottom:752.093333pt;}
.y87{bottom:755.773333pt;}
.y11f{bottom:757.213333pt;}
.y158{bottom:759.613333pt;}
.ye1{bottom:760.253333pt;}
.y221{bottom:761.693333pt;}
.y23c{bottom:761.853333pt;}
.y5d{bottom:762.653333pt;}
.ya3{bottom:763.293333pt;}
.y12{bottom:763.773333pt;}
.y86{bottom:769.853333pt;}
.y18f{bottom:770.653333pt;}
.y1f0{bottom:771.293333pt;}
.y157{bottom:773.693333pt;}
.ye0{bottom:774.653333pt;}
.y220{bottom:775.813333pt;}
.y23b{bottom:775.973333pt;}
.y5c{bottom:776.773333pt;}
.y11{bottom:777.893333pt;}
.y85{bottom:783.973333pt;}
.y18e{bottom:784.773333pt;}
.y1ef{bottom:786.213333pt;}
.y156{bottom:787.813333pt;}
.ydf{bottom:789.093333pt;}
.y21f{bottom:789.893333pt;}
.y23a{bottom:790.053333pt;}
.y10{bottom:791.653333pt;}
.y204{bottom:791.973333pt;}
.y84{bottom:798.053333pt;}
.y18d{bottom:798.853333pt;}
.y1ee{bottom:800.293333pt;}
.y155{bottom:801.893333pt;}
.yde{bottom:803.173333pt;}
.y21e{bottom:803.973333pt;}
.y5b{bottom:805.733333pt;}
.yf{bottom:806.053333pt;}
.y1bf{bottom:807.653333pt;}
.y83{bottom:812.133333pt;}
.y18c{bottom:812.933333pt;}
.y1ed{bottom:814.373333pt;}
.y154{bottom:815.973333pt;}
.ydd{bottom:817.253333pt;}
.y21d{bottom:818.053333pt;}
.y5a{bottom:819.813333pt;}
.ye{bottom:820.133333pt;}
.y82{bottom:826.213333pt;}
.y18b{bottom:827.013333pt;}
.y1ec{bottom:828.453333pt;}
.y153{bottom:830.053333pt;}
.ydc{bottom:831.333333pt;}
.y21c{bottom:832.133333pt;}
.y59{bottom:833.893333pt;}
.yd{bottom:834.213333pt;}
.y81{bottom:840.293333pt;}
.y18a{bottom:841.093333pt;}
.y1eb{bottom:843.333333pt;}
.y152{bottom:844.133333pt;}
.ydb{bottom:845.413333pt;}
.y21b{bottom:846.213333pt;}
.y58{bottom:847.973333pt;}
.yc{bottom:848.293333pt;}
.y80{bottom:854.853333pt;}
.y189{bottom:855.973333pt;}
.y1ea{bottom:857.413333pt;}
.y151{bottom:858.213333pt;}
.y21a{bottom:860.293333pt;}
.y57{bottom:862.053333pt;}
.y203{bottom:862.373333pt;}
.yb{bottom:862.693333pt;}
.y7f{bottom:869.413333pt;}
.y188{bottom:870.053333pt;}
.yda{bottom:871.173333pt;}
.y1e9{bottom:871.493333pt;}
.y113{bottom:872.293333pt;}
.y219{bottom:874.373333pt;}
.ya{bottom:876.453333pt;}
.y7e{bottom:883.493333pt;}
.y187{bottom:884.933333pt;}
.yd9{bottom:885.573333pt;}
.y150{bottom:886.373333pt;}
.y111{bottom:887.013333pt;}
.y56{bottom:888.133333pt;}
.y218{bottom:888.453333pt;}
.y202{bottom:890.533333pt;}
.y9{bottom:890.853333pt;}
.y1bb{bottom:895.013333pt;}
.y7d{bottom:898.053333pt;}
.y239{bottom:898.533333pt;}
.y186{bottom:899.013333pt;}
.yd8{bottom:899.653333pt;}
.y14f{bottom:900.453333pt;}
.y55{bottom:902.533333pt;}
.y110{bottom:904.613333pt;}
.y8{bottom:904.933333pt;}
.y7c{bottom:912.133333pt;}
.y238{bottom:912.613333pt;}
.y185{bottom:913.093333pt;}
.yd7{bottom:913.733333pt;}
.y14e{bottom:914.533333pt;}
.y54{bottom:916.613333pt;}
.y10f{bottom:918.693333pt;}
.y7{bottom:923.013333pt;}
.y7b{bottom:924.613333pt;}
.y237{bottom:926.693333pt;}
.y184{bottom:927.173333pt;}
.yd6{bottom:927.813333pt;}
.y14d{bottom:928.613333pt;}
.y7a{bottom:929.413333pt;}
.y53{bottom:930.693333pt;}
.y10e{bottom:932.773333pt;}
.y6{bottom:933.093333pt;}
.y183{bottom:941.253333pt;}
.yd5{bottom:941.893333pt;}
.ya2{bottom:942.053333pt;}
.y14c{bottom:942.693333pt;}
.y52{bottom:944.773333pt;}
.y10d{bottom:946.853333pt;}
.y5{bottom:947.173333pt;}
.y236{bottom:948.773333pt;}
.y182{bottom:955.333333pt;}
.yd4{bottom:955.973333pt;}
.ya1{bottom:956.133333pt;}
.y10a{bottom:956.293333pt;}
.y14b{bottom:956.773333pt;}
.y51{bottom:958.853333pt;}
.y10c{bottom:960.933333pt;}
.y4{bottom:961.253333pt;}
.y235{bottom:962.853333pt;}
.y181{bottom:969.413333pt;}
.yd3{bottom:970.053333pt;}
.ya0{bottom:970.213333pt;}
.y109{bottom:970.373333pt;}
.y14a{bottom:970.853333pt;}
.y50{bottom:972.933333pt;}
.y3{bottom:975.333333pt;}
.y1ba{bottom:975.973333pt;}
.y234{bottom:976.933333pt;}
.yd2{bottom:984.133333pt;}
.y9f{bottom:984.293333pt;}
.y108{bottom:984.453333pt;}
.y149{bottom:984.933333pt;}
.y10b{bottom:986.693333pt;}
.y4f{bottom:987.013333pt;}
.y2{bottom:990.053333pt;}
.y1e8{bottom:998.213333pt;}
.y107{bottom:998.533333pt;}
.y9e{bottom:998.693333pt;}
.yd1{bottom:999.013333pt;}
.y1{bottom:1008.960000pt;}
.y1e7{bottom:1012.320000pt;}
.y4e{bottom:1012.800000pt;}
.y9d{bottom:1013.120000pt;}
.y4a{bottom:1061.279753pt;}
.hd{height:14.066667pt;}
.h11{height:14.080000pt;}
.h1a{height:19.506667pt;}
.h17{height:19.546667pt;}
.hb{height:20.728125pt;}
.h7{height:25.813467pt;}
.h12{height:28.160000pt;}
.h13{height:28.800000pt;}
.h5{height:31.406250pt;}
.hc{height:33.515625pt;}
.h16{height:33.918750pt;}
.h15{height:34.830000pt;}
.h1e{height:36.431250pt;}
.h10{height:39.571875pt;}
.h14{height:40.480000pt;}
.h8{height:44.354167pt;}
.h3{height:47.109375pt;}
.h4{height:47.406250pt;}
.h6{height:48.375000pt;}
.ha{height:49.336436pt;}
.h9{height:49.968750pt;}
.h2{height:64.500000pt;}
.h1b{height:80.306667pt;}
.h1c{height:80.312000pt;}
.h1d{height:86.706667pt;}
.h1f{height:86.712000pt;}
.h20{height:87.380000pt;}
.h25{height:93.106667pt;}
.h26{height:93.116000pt;}
.h22{height:106.716000pt;}
.h21{height:106.720000pt;}
.h29{height:113.458667pt;}
.h2a{height:113.460000pt;}
.hf{height:114.420000pt;}
.h23{height:118.906667pt;}
.h24{height:118.912000pt;}
.h27{height:119.378667pt;}
.h28{height:119.380000pt;}
.h2b{height:119.986667pt;}
.h2c{height:119.992000pt;}
.he{height:173.293333pt;}
.h18{height:180.786667pt;}
.h19{height:205.773333pt;}
.h1{height:1118.666667pt;}
.h0{height:1118.880000pt;}
.w4{width:17.797333pt;}
.wd{width:28.512000pt;}
.w1c{width:56.658667pt;}
.w18{width:56.818667pt;}
.w1e{width:56.826667pt;}
.w1f{width:63.520000pt;}
.w19{width:66.080000pt;}
.w1a{width:66.112000pt;}
.w1d{width:75.666667pt;}
.w1b{width:85.106667pt;}
.w9{width:91.712000pt;}
.w12{width:104.352000pt;}
.w17{width:129.792000pt;}
.wa{width:131.858667pt;}
.w8{width:142.106667pt;}
.w6{width:142.586667pt;}
.w7{width:144.333333pt;}
.wb{width:144.346667pt;}
.we{width:156.338667pt;}
.w11{width:156.506667pt;}
.w10{width:157.773333pt;}
.wf{width:157.786667pt;}
.w15{width:175.066667pt;}
.w20{width:176.658667pt;}
.w22{width:180.693333pt;}
.w23{width:180.706667pt;}
.w16{width:185.973333pt;}
.w14{width:185.986667pt;}
.w21{width:188.346667pt;}
.w13{width:188.973333pt;}
.w5{width:224.066667pt;}
.w3{width:437.532000pt;}
.w2{width:645.042667pt;}
.wc{width:655.360000pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x22{left:6.912000pt;}
.x31{left:14.272000pt;}
.xf{left:17.797333pt;}
.xb{left:31.401333pt;}
.x26{left:39.346667pt;}
.x2f{left:44.160000pt;}
.x34{left:45.760000pt;}
.x24{left:50.720000pt;}
.x36{left:54.226667pt;}
.x3d{left:56.000000pt;}
.x2e{left:57.600000pt;}
.x2c{left:60.640000pt;}
.x28{left:62.080000pt;}
.x29{left:63.026667pt;}
.x2d{left:64.466667pt;}
.x21{left:68.800000pt;}
.xa{left:74.358663pt;}
.x8{left:75.712000pt;}
.x53{left:79.706667pt;}
.x38{left:84.352000pt;}
.x13{left:85.792000pt;}
.x14{left:86.752000pt;}
.x15{left:87.712000pt;}
.x16{left:88.672000pt;}
.x1b{left:91.712000pt;}
.x32{left:97.960000pt;}
.x11{left:99.552000pt;}
.x1f{left:101.792000pt;}
.x1{left:106.112000pt;}
.xd{left:119.450667pt;}
.x4f{left:123.560000pt;}
.x55{left:127.072000pt;}
.x2a{left:135.706667pt;}
.x2b{left:137.480000pt;}
.x10{left:141.466667pt;}
.x30{left:142.426667pt;}
.x46{left:150.426667pt;}
.x42{left:160.346667pt;}
.x5{left:161.466667pt;}
.x40{left:162.586667pt;}
.x3f{left:163.746667pt;}
.x3e{left:164.666667pt;}
.x41{left:166.946667pt;}
.x43{left:168.186667pt;}
.x44{left:172.386667pt;}
.x3a{left:173.800000pt;}
.x52{left:176.506667pt;}
.xc{left:178.114014pt;}
.x45{left:179.106667pt;}
.x54{left:192.186667pt;}
.x47{left:198.600000pt;}
.x2{left:224.706667pt;}
.x33{left:254.946667pt;}
.x39{left:286.946667pt;}
.x23{left:293.666667pt;}
.x50{left:300.866667pt;}
.x6{left:310.306667pt;}
.x48{left:321.506667pt;}
.x7{left:330.786667pt;}
.x3b{left:363.586667pt;}
.x4{left:367.773333pt;}
.x12{left:385.213333pt;}
.x49{left:387.626667pt;}
.x3{left:396.413333pt;}
.x9{left:409.053333pt;}
.x4e{left:411.933333pt;}
.x35{left:413.386667pt;}
.x1d{left:417.053333pt;}
.x18{left:420.093333pt;}
.x20{left:424.093333pt;}
.x19{left:427.133333pt;}
.x1c{left:432.893333pt;}
.x25{left:436.906667pt;}
.x1e{left:442.013333pt;}
.x4a{left:472.746667pt;}
.x51{left:489.866667pt;}
.x4b{left:529.413333pt;}
.x17{left:545.413333pt;}
.x3c{left:550.213333pt;}
.x37{left:571.973333pt;}
.x27{left:581.893333pt;}
.x4c{left:605.093333pt;}
.x4d{left:661.760000pt;}
.xe{left:700.371826pt;}
.x1a{left:718.400000pt;}
}




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