
    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_35b4b437ebea29442a3f75d8.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.184000;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_86555b0d3b0cd41f16dd3329.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.005000;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_e7c2194ca8b26d34bf1654a7.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.005000;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_ec2ca9447c18aad652b4d2ff.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_1702cb45e9b08d36611db685.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_bb0e548cce5f7b7c56f79ff3.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.106934;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_dd22cbaeda4c55cd87110a8c.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_363c4a6b59788603eb72597a.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_db8c86cdd99dd82c9630d791.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.106934;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_3b2e3da7aaa1fe4f7c897b9d.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_f9d0037e89f3bfb0d8cdecf2.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_bf380677f7501adac8cf1c95.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_c4922c9eb655e7f95dffa378.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.100098;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);}
.m2{transform:matrix(0.257150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257150,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);}
.v0{vertical-align:0.000000px;}
.ls5{letter-spacing:-2.988000px;}
.ls6{letter-spacing:-2.934000px;}
.ls11{letter-spacing:-1.080000px;}
.ls18{letter-spacing:-0.756000px;}
.lse{letter-spacing:-0.678000px;}
.ls16{letter-spacing:-0.666000px;}
.ls20{letter-spacing:-0.612000px;}
.ls22{letter-spacing:-0.540000px;}
.ls10{letter-spacing:-0.413400px;}
.lsa{letter-spacing:-0.360000px;}
.lsb{letter-spacing:-0.216000px;}
.ls19{letter-spacing:-0.206400px;}
.ls1e{letter-spacing:-0.126000px;}
.ls1a{letter-spacing:-0.106800px;}
.ls7{letter-spacing:-0.053280px;}
.ls1c{letter-spacing:-0.018000px;}
.ls0{letter-spacing:0.000000px;}
.ls12{letter-spacing:0.018000px;}
.ls13{letter-spacing:0.054720px;}
.lsd{letter-spacing:0.106800px;}
.ls17{letter-spacing:0.108000px;}
.lsf{letter-spacing:0.109200px;}
.ls3{letter-spacing:0.180000px;}
.ls26{letter-spacing:0.206400px;}
.ls24{letter-spacing:0.206640px;}
.ls8{letter-spacing:0.259800px;}
.ls4{letter-spacing:0.259920px;}
.ls23{letter-spacing:0.298800px;}
.ls1{letter-spacing:0.322560px;}
.ls1f{letter-spacing:0.336000px;}
.ls2{letter-spacing:0.360000px;}
.ls25{letter-spacing:0.439920px;}
.ls15{letter-spacing:0.513600px;}
.ls9{letter-spacing:0.666000px;}
.lsc{letter-spacing:0.828000px;}
.ls14{letter-spacing:0.829440px;}
.ls21{letter-spacing:0.900000px;}
.ls1d{letter-spacing:0.978000px;}
.ls1b{letter-spacing:1.080000px;}
.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;}
}
.ws1{word-spacing:-16.613280px;}
.ws12{word-spacing:-15.606000px;}
.ws10{word-spacing:-15.300000px;}
.ws13{word-spacing:-15.238800px;}
.wsb{word-spacing:-15.199800px;}
.ws14{word-spacing:-15.146400px;}
.wsc{word-spacing:-15.046800px;}
.ws3{word-spacing:-14.940000px;}
.wsa{word-spacing:-14.886720px;}
.wsd{word-spacing:-14.733600px;}
.ws11{word-spacing:-14.580000px;}
.ws6{word-spacing:-13.860000px;}
.ws7{word-spacing:-13.734480px;}
.ws2{word-spacing:-13.625280px;}
.ws9{word-spacing:-13.518000px;}
.ws8{word-spacing:-13.500000px;}
.wsf{word-spacing:-13.482000px;}
.ws5{word-spacing:-13.284000px;}
.ws4{word-spacing:-13.140000px;}
.wse{word-spacing:-9.720000px;}
.ws0{word-spacing:0.000000px;}
._1{margin-left:-3.944160px;}
._0{margin-left:-2.808720px;}
._2{margin-left:-1.374480px;}
._3{width:1.486800px;}
._6{width:3.183840px;}
._c{width:4.189680px;}
._7{width:5.202240px;}
._8{width:6.313200px;}
._4{width:7.332480px;}
._5{width:8.759760px;}
._9{width:10.099440px;}
._a{width:11.473920px;}
._b{width:12.575520px;}
._d{width:13.674240px;}
._e{width:15.336000px;}
._f{width:16.613280px;}
._15{width:18.525600px;}
._13{width:19.661040px;}
._12{width:20.916000px;}
._10{width:22.888080px;}
._11{width:24.358080px;}
._14{width:25.577280px;}
._16{width:32.868000px;}
._17{width:34.541280px;}
.fc7{color:rgb(0,0,255);}
.fc6{color:rgb(0,128,0);}
.fc2{color:transparent;}
.fc1{color:rgb(156,154,126);}
.fc5{color:rgb(34,34,34);}
.fc4{color:rgb(37,37,37);}
.fc3{color:rgb(68,68,68);}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:5.760000px;}
.fsb{font-size:36.000000px;}
.fs9{font-size:38.880000px;}
.fs4{font-size:42.000000px;}
.fs7{font-size:48.240000px;}
.fsa{font-size:54.000000px;}
.fs5{font-size:59.760000px;}
.fs3{font-size:60.000000px;}
.fs1{font-size:63.000000px;}
.fsc{font-size:63.360000px;}
.fs0{font-size:72.000000px;}
.fs8{font-size:90.000000px;}
.fs2{font-size:102.000000px;}
.y0{bottom:0.000000px;}
.y22{bottom:2.370000px;}
.y17e{bottom:4.485000px;}
.y176{bottom:4.500000px;}
.y1ac{bottom:4.530000px;}
.y24{bottom:7.230000px;}
.y16f{bottom:10.980000px;}
.y16e{bottom:11.160000px;}
.y1c4{bottom:12.240000px;}
.y1dd{bottom:12.270000px;}
.y1d1{bottom:12.285000px;}
.y119{bottom:12.600000px;}
.y1b0{bottom:12.765000px;}
.yfa{bottom:12.780000px;}
.y1ab{bottom:12.810000px;}
.y1e0{bottom:20.010000px;}
.y1c7{bottom:20.160000px;}
.y17d{bottom:21.045000px;}
.y175{bottom:21.060000px;}
.y184{bottom:21.090000px;}
.y1a4{bottom:21.105000px;}
.y23{bottom:24.510000px;}
.y21{bottom:24.870000px;}
.y1d5{bottom:27.720000px;}
.y1db{bottom:27.750000px;}
.y1d0{bottom:27.765000px;}
.y1c6{bottom:27.900000px;}
.y1b2{bottom:29.325000px;}
.y1a0{bottom:29.340000px;}
.y1af{bottom:29.370000px;}
.y1a5{bottom:29.385000px;}
.y118{bottom:29.880000px;}
.y158{bottom:30.060000px;}
.y148{bottom:31.665000px;}
.y1e2{bottom:35.460000px;}
.y1df{bottom:35.490000px;}
.y1cd{bottom:35.505000px;}
.y182{bottom:37.605000px;}
.y174{bottom:37.620000px;}
.y17c{bottom:37.650000px;}
.y1a3{bottom:37.665000px;}
.y15a{bottom:38.700000px;}
.y1d3{bottom:38.745000px;}
.yf9{bottom:39.060000px;}
.y100{bottom:39.090000px;}
.y1d6{bottom:43.200000px;}
.y1da{bottom:43.230000px;}
.y1ca{bottom:43.245000px;}
.y1d8{bottom:43.380000px;}
.y19f{bottom:45.900000px;}
.y1b4{bottom:45.930000px;}
.y1a6{bottom:45.945000px;}
.y117{bottom:47.160000px;}
.y147{bottom:48.945000px;}
.y1de{bottom:50.970000px;}
.y1cc{bottom:50.985000px;}
.y181{bottom:54.165000px;}
.y17a{bottom:54.180000px;}
.y173{bottom:54.210000px;}
.y1a2{bottom:54.225000px;}
.y166{bottom:55.980000px;}
.y157{bottom:56.010000px;}
.yf8{bottom:56.340000px;}
.yff{bottom:56.370000px;}
.y1e3{bottom:58.680000px;}
.y1dc{bottom:58.890000px;}
.y1c9{bottom:58.905000px;}
.y1d2{bottom:63.405000px;}
.y116{bottom:64.440000px;}
.y4f{bottom:65.520000px;}
.y29{bottom:65.700000px;}
.y1cb{bottom:66.645000px;}
.y180{bottom:70.725000px;}
.y179{bottom:70.740000px;}
.y172{bottom:70.770000px;}
.y142{bottom:73.440000px;}
.yfe{bottom:73.470000px;}
.yf7{bottom:73.665000px;}
.y1cf{bottom:74.385000px;}
.y149{bottom:75.990000px;}
.y115{bottom:81.720000px;}
.y178{bottom:87.300000px;}
.y171{bottom:87.330000px;}
.y1ce{bottom:89.865000px;}
.y141{bottom:90.720000px;}
.yfd{bottom:90.750000px;}
.yf6{bottom:90.765000px;}
.y28{bottom:91.080000px;}
.y187{bottom:92.520000px;}
.y146{bottom:93.090000px;}
.y164{bottom:95.220000px;}
.y4{bottom:97.125005px;}
.y136{bottom:97.560000px;}
.yf2{bottom:98.820000px;}
.y11d{bottom:99.000000px;}
.y27{bottom:104.760000px;}
.y114{bottom:107.640000px;}
.y140{bottom:108.030000px;}
.y186{bottom:109.800000px;}
.y225{bottom:110.160000px;}
.y145{bottom:110.370000px;}
.y7e{bottom:114.300000px;}
.yf1{bottom:116.100000px;}
.y11c{bottom:116.280000px;}
.yfc{bottom:116.670000px;}
.yf5{bottom:116.685000px;}
.y26{bottom:118.620000px;}
.y135{bottom:120.240000px;}
.y1b6{bottom:120.780000px;}
.y19b{bottom:123.840000px;}
.y224{bottom:127.440000px;}
.ya9{bottom:129.960000px;}
.y7d{bottom:130.320000px;}
.y111{bottom:132.660000px;}
.yf0{bottom:133.380000px;}
.y13f{bottom:133.950000px;}
.y144{bottom:136.290000px;}
.y7c{bottom:137.160000px;}
.y1f{bottom:139.264499px;}
.y163{bottom:139.500000px;}
.y11b{bottom:142.065000px;}
.y223{bottom:144.720000px;}
.ya8{bottom:145.440000px;}
.y1b5{bottom:146.520000px;}
.y7b{bottom:147.240000px;}
.y134{bottom:147.600000px;}
.y110{bottom:149.940000px;}
.yef{bottom:150.480000px;}
.y1c2{bottom:151.380000px;}
.y185{bottom:153.540000px;}
.y162{bottom:156.600000px;}
.y4d{bottom:159.480000px;}
.ye2{bottom:160.920000px;}
.ya7{bottom:161.460000px;}
.y7a{bottom:163.080000px;}
.ycd{bottom:165.600000px;}
.y19a{bottom:165.960000px;}
.y4c{bottom:166.320000px;}
.y183{bottom:166.500000px;}
.ye1{bottom:166.860000px;}
.y10f{bottom:167.220000px;}
.yee{bottom:167.760000px;}
.ya6{bottom:168.300000px;}
.y132{bottom:169.380000px;}
.y79{bottom:169.920000px;}
.y222{bottom:171.000000px;}
.y199{bottom:171.900000px;}
.y133{bottom:176.220000px;}
.ye0{bottom:176.400000px;}
.y4b{bottom:176.760000px;}
.y205{bottom:176.940000px;}
.ya5{bottom:178.740000px;}
.y78{bottom:180.360000px;}
.y198{bottom:181.620000px;}
.ydf{bottom:182.340000px;}
.ycc{bottom:182.880000px;}
.y1f4{bottom:184.140000px;}
.y10e{bottom:184.530000px;}
.yed{bottom:185.070000px;}
.y131{bottom:186.690000px;}
.y221{bottom:188.130000px;}
.yde{bottom:192.090000px;}
.y4a{bottom:194.070000px;}
.y204{bottom:194.250000px;}
.ya4{bottom:195.870000px;}
.y16{bottom:196.933500px;}
.y197{bottom:197.130000px;}
.y77{bottom:197.670000px;}
.ycb{bottom:200.190000px;}
.y1f3{bottom:201.270000px;}
.y10d{bottom:201.630000px;}
.y196{bottom:203.070000px;}
.y130{bottom:203.970000px;}
.y220{bottom:205.410000px;}
.ydd{bottom:207.570000px;}
.y161{bottom:209.190000px;}
.y1e{bottom:209.518500px;}
.y15{bottom:209.533503px;}
.yec{bottom:211.350000px;}
.y195{bottom:213.150000px;}
.y76{bottom:216.750000px;}
.yca{bottom:217.470000px;}
.y1f2{bottom:218.550000px;}
.y12f{bottom:221.250000px;}
.y1d{bottom:222.118502px;}
.y14{bottom:222.133505px;}
.y21f{bottom:222.690000px;}
.ydc{bottom:223.050000px;}
.ya3{bottom:226.470000px;}
.y1b3{bottom:226.485000px;}
.y10c{bottom:227.910000px;}
.y49{bottom:228.990000px;}
.y194{bottom:230.250000px;}
.y203{bottom:230.970000px;}
.y75{bottom:234.030000px;}
.y1c{bottom:234.718504px;}
.y13{bottom:234.733496px;}
.yc9{bottom:234.750000px;}
.y1f1{bottom:235.830000px;}
.yeb{bottom:237.630000px;}
.ydb{bottom:238.530000px;}
.y1c1{bottom:239.070000px;}
.ya2{bottom:243.750000px;}
.y48{bottom:246.270000px;}
.y202{bottom:248.250000px;}
.y21e{bottom:248.970000px;}
.y17f{bottom:250.065000px;}
.y74{bottom:251.130000px;}
.y1f0{bottom:253.110000px;}
.yda{bottom:254.190000px;}
.yea{bottom:254.910000px;}
.y1c0{bottom:256.350000px;}
.y1b{bottom:259.918497px;}
.y12{bottom:259.933500px;}
.yc8{bottom:260.670000px;}
.ya1{bottom:261.030000px;}
.y47{bottom:263.550000px;}
.y12e{bottom:264.630000px;}
.y21d{bottom:266.250000px;}
.y73{bottom:268.410000px;}
.yd9{bottom:269.670000px;}
.y14a{bottom:270.030000px;}
.y1ef{bottom:270.390000px;}
.y10b{bottom:271.470000px;}
.ye9{bottom:272.010000px;}
.y1a{bottom:272.518500px;}
.y11{bottom:272.533503px;}
.y201{bottom:274.530000px;}
.yd8{bottom:275.610000px;}
.y1b1{bottom:277.065000px;}
.ya0{bottom:278.130000px;}
.y46{bottom:280.830000px;}
.y12d{bottom:281.910000px;}
.y19{bottom:285.118502px;}
.y10{bottom:285.133499px;}
.y72{bottom:285.690000px;}
.yc7{bottom:287.130000px;}
.y1ee{bottom:287.490000px;}
.y10a{bottom:288.750000px;}
.y200{bottom:291.630000px;}
.y21c{bottom:292.530000px;}
.y143{bottom:293.085000px;}
.y9f{bottom:295.410000px;}
.y45{bottom:297.930000px;}
.ye8{bottom:298.290000px;}
.y12c{bottom:299.190000px;}
.y71{bottom:302.970000px;}
.y1bf{bottom:304.410000px;}
.y1ed{bottom:304.770000px;}
.y21b{bottom:309.630000px;}
.y18{bottom:310.318501px;}
.yf{bottom:310.333501px;}
.y9e{bottom:312.690000px;}
.y160{bottom:313.050000px;}
.yc6{bottom:313.410000px;}
.y109{bottom:315.030000px;}
.y44{bottom:315.210000px;}
.y12b{bottom:316.470000px;}
.y1ff{bottom:317.910000px;}
.y193{bottom:320.250000px;}
.y1be{bottom:321.690000px;}
.y1ec{bottom:322.050000px;}
.y17{bottom:322.918500px;}
.ye{bottom:322.933500px;}
.ye7{bottom:324.210000px;}
.y70{bottom:329.250000px;}
.y9d{bottom:329.970000px;}
.yc5{bottom:330.690000px;}
.y43{bottom:332.490000px;}
.y12a{bottom:333.750000px;}
.y17b{bottom:333.765000px;}
.y1fe{bottom:335.190000px;}
.y21a{bottom:335.910000px;}
.y192{bottom:337.530000px;}
.y1bd{bottom:338.970000px;}
.y1eb{bottom:339.330000px;}
.y15f{bottom:339.690000px;}
.y108{bottom:340.770000px;}
.y1ae{bottom:344.025000px;}
.y6f{bottom:346.530000px;}
.y9b{bottom:347.250000px;}
.yc4{bottom:347.970000px;}
.yd{bottom:348.133500px;}
.y42{bottom:349.770000px;}
.ye6{bottom:350.850000px;}
.y129{bottom:351.030000px;}
.y219{bottom:353.190000px;}
.y9c{bottom:354.090000px;}
.y191{bottom:354.630000px;}
.y1bc{bottom:356.250000px;}
.y1e9{bottom:356.610000px;}
.y1fd{bottom:361.470000px;}
.y1ea{bottom:363.450000px;}
.y6e{bottom:363.630000px;}
.y9a{bottom:364.530000px;}
.yc3{bottom:365.250000px;}
.y15e{bottom:366.015000px;}
.y41{bottom:367.095000px;}
.y128{bottom:368.175000px;}
.y218{bottom:370.515000px;}
.y190{bottom:371.955000px;}
.y1bb{bottom:373.575000px;}
.y1e8{bottom:373.935000px;}
.ye5{bottom:376.635000px;}
.y1fc{bottom:378.795000px;}
.y6d{bottom:380.955000px;}
.yc2{bottom:382.575000px;}
.y15d{bottom:383.295000px;}
.y40{bottom:384.375000px;}
.yc{bottom:386.785499px;}
.y18f{bottom:389.235000px;}
.y99{bottom:390.675000px;}
.y1e7{bottom:391.035000px;}
.y107{bottom:393.735000px;}
.y127{bottom:394.455000px;}
.y217{bottom:396.795000px;}
.y6c{bottom:398.235000px;}
.yc1{bottom:399.675000px;}
.y177{bottom:400.755000px;}
.y3f{bottom:401.475000px;}
.y1fb{bottom:405.075000px;}
.y18e{bottom:406.515000px;}
.y98{bottom:407.955000px;}
.yb{bottom:408.044999px;}
.y1e6{bottom:408.315000px;}
.y15c{bottom:409.395000px;}
.y106{bottom:411.015000px;}
.y216{bottom:414.075000px;}
.y1ba{bottom:414.795000px;}
.y6b{bottom:415.515000px;}
.yc0{bottom:416.955000px;}
.y3e{bottom:418.755000px;}
.y126{bottom:420.375000px;}
.y1fa{bottom:422.175000px;}
.y97{bottom:425.235000px;}
.y1e5{bottom:425.595000px;}
.y105{bottom:428.295000px;}
.y215{bottom:431.175000px;}
.y6a{bottom:432.795000px;}
.ybf{bottom:434.235000px;}
.y15b{bottom:435.675000px;}
.y3d{bottom:436.035000px;}
.y18d{bottom:439.635000px;}
.yd7{bottom:441.795000px;}
.y96{bottom:442.515000px;}
.y13e{bottom:443.955000px;}
.y104{bottom:445.395000px;}
.y125{bottom:446.655000px;}
.y1f9{bottom:448.095000px;}
.y159{bottom:449.895000px;}
.y1e4{bottom:451.335000px;}
.ybe{bottom:451.515000px;}
.y214{bottom:457.455000px;}
.y69{bottom:459.075000px;}
.y95{bottom:459.795000px;}
.y3c{bottom:461.955000px;}
.y103{bottom:462.675000px;}
.y1e1{bottom:464.475000px;}
.y22c{bottom:465.735000px;}
.ybd{bottom:468.795000px;}
.y124{bottom:473.295000px;}
.y213{bottom:474.735000px;}
.y68{bottom:476.175000px;}
.y94{bottom:477.075000px;}
.y1ad{bottom:478.695000px;}
.ybc{bottom:486.075000px;}
.y102{bottom:488.955000px;}
.y123{bottom:490.395000px;}
.y22b{bottom:492.015000px;}
.y1f8{bottom:492.375000px;}
.y67{bottom:493.455000px;}
.y93{bottom:494.175000px;}
.y170{bottom:500.835000px;}
.y212{bottom:501.015000px;}
.ybb{bottom:503.175000px;}
.y3b{bottom:506.055000px;}
.y122{bottom:507.675000px;}
.y66{bottom:510.735000px;}
.y92{bottom:511.455000px;}
.y101{bottom:515.235000px;}
.yd6{bottom:517.575000px;}
.y211{bottom:518.295000px;}
.y1f7{bottom:519.015000px;}
.y18c{bottom:519.735000px;}
.yba{bottom:520.455000px;}
.ya{bottom:520.864502px;}
.y121{bottom:524.955000px;}
.y65{bottom:528.015000px;}
.y91{bottom:528.735000px;}
.yfb{bottom:529.455000px;}
.y3a{bottom:531.075000px;}
.y210{bottom:535.395000px;}
.y1d9{bottom:536.295000px;}
.y18b{bottom:537.015000px;}
.yb9{bottom:537.735000px;}
.y9{bottom:538.864499px;}
.y120{bottom:542.235000px;}
.y64{bottom:545.295000px;}
.y1aa{bottom:545.655000px;}
.y90{bottom:546.015000px;}
.y20f{bottom:552.705000px;}
.y1b9{bottom:552.885000px;}
.yd5{bottom:554.325000px;}
.y8{bottom:556.864499px;}
.y39{bottom:557.385000px;}
.y63{bottom:562.425000px;}
.y8f{bottom:563.325000px;}
.yb8{bottom:564.045000px;}
.y11f{bottom:568.545000px;}
.y38{bottom:574.665000px;}
.y20e{bottom:578.985000px;}
.y1a9{bottom:579.525000px;}
.y62{bottom:579.705000px;}
.y8e{bottom:580.425000px;}
.yb7{bottom:581.325000px;}
.y156{bottom:586.185000px;}
.y11e{bottom:594.825000px;}
.y22a{bottom:596.265000px;}
.y1f6{bottom:596.625000px;}
.y60{bottom:596.985000px;}
.yd4{bottom:597.705000px;}
.yb6{bottom:598.425000px;}
.y37{bottom:600.765000px;}
.y16d{bottom:600.945000px;}
.y61{bottom:603.825000px;}
.y13d{bottom:604.905000px;}
.y20d{bottom:605.265000px;}
.y8d{bottom:606.705000px;}
.y1d7{bottom:608.145000px;}
.y11a{bottom:609.045000px;}
.y1a8{bottom:613.545000px;}
.y5f{bottom:614.265000px;}
.y18a{bottom:614.985000px;}
.yb5{bottom:615.705000px;}
.y36{bottom:618.045000px;}
.y20c{bottom:622.545000px;}
.y1f5{bottom:623.265000px;}
.y8c{bottom:623.985000px;}
.y155{bottom:630.825000px;}
.y189{bottom:632.265000px;}
.yb4{bottom:632.985000px;}
.y35{bottom:635.325000px;}
.y16c{bottom:636.945000px;}
.y229{bottom:639.825000px;}
.y5e{bottom:640.545000px;}
.y8b{bottom:641.265000px;}
.y7{bottom:645.510000px;}
.y154{bottom:647.925000px;}
.y20b{bottom:648.825000px;}
.y13c{bottom:649.545000px;}
.yb3{bottom:650.265000px;}
.y34{bottom:652.605000px;}
.y5d{bottom:657.825000px;}
.y8a{bottom:658.545000px;}
.yf4{bottom:660.705000px;}
.y1a7{bottom:663.945000px;}
.y1d4{bottom:664.485000px;}
.y153{bottom:665.205000px;}
.y20a{bottom:665.925000px;}
.y6{bottom:666.771000px;}
.y13b{bottom:666.825000px;}
.yb2{bottom:667.545000px;}
.y33{bottom:669.885000px;}
.y5c{bottom:674.925000px;}
.y89{bottom:675.825000px;}
.y16b{bottom:680.325000px;}
.y228{bottom:683.205000px;}
.y13a{bottom:683.925000px;}
.yb1{bottom:684.825000px;}
.y32{bottom:686.985000px;}
.y152{bottom:691.485000px;}
.y5b{bottom:692.205000px;}
.y88{bottom:692.925000px;}
.y16a{bottom:697.425000px;}
.y139{bottom:701.205000px;}
.yb0{bottom:701.925000px;}
.y31{bottom:704.265000px;}
.y5a{bottom:709.485000px;}
.y1b8{bottom:709.845000px;}
.yd3{bottom:710.925000px;}
.y1a1{bottom:714.345000px;}
.y151{bottom:717.765000px;}
.y87{bottom:719.205000px;}
.y1c8{bottom:720.825000px;}
.y30{bottom:721.545000px;}
.y169{bottom:723.705000px;}
.y5{bottom:726.298500px;}
.y59{bottom:726.765000px;}
.y138{bottom:727.485000px;}
.yd2{bottom:728.250000px;}
.y150{bottom:735.090000px;}
.y209{bottom:735.810000px;}
.y86{bottom:736.530000px;}
.y2f{bottom:738.870000px;}
.y58{bottom:744.090000px;}
.yd1{bottom:745.530000px;}
.y168{bottom:750.030000px;}
.y14f{bottom:752.370000px;}
.y3{bottom:752.599495px;}
.y208{bottom:753.090000px;}
.y85{bottom:753.810000px;}
.y2e{bottom:756.150000px;}
.ye4{bottom:756.330000px;}
.y57{bottom:761.370000px;}
.yd0{bottom:762.810000px;}
.y167{bottom:764.250000px;}
.y113{bottom:765.870000px;}
.y14e{bottom:769.470000px;}
.y227{bottom:770.370000px;}
.y84{bottom:771.090000px;}
.ye3{bottom:771.990000px;}
.y2d{bottom:773.430000px;}
.y56{bottom:778.470000px;}
.y207{bottom:779.370000px;}
.yaf{bottom:780.090000px;}
.y19e{bottom:781.350000px;}
.ycf{bottom:786.930000px;}
.y83{bottom:788.370000px;}
.y54{bottom:795.750000px;}
.y206{bottom:796.470000px;}
.yae{bottom:797.370000px;}
.y55{bottom:802.590000px;}
.yf3{bottom:804.390000px;}
.y82{bottom:805.470000px;}
.y53{bottom:813.030000px;}
.y226{bottom:813.750000px;}
.yad{bottom:814.470000px;}
.y165{bottom:817.530000px;}
.y188{bottom:821.310000px;}
.y14d{bottom:821.670000px;}
.y81{bottom:822.750000px;}
.y1c5{bottom:823.650000px;}
.y2b{bottom:827.070000px;}
.yac{bottom:831.750000px;}
.y2c{bottom:833.910000px;}
.y1b7{bottom:838.590000px;}
.y52{bottom:838.950000px;}
.y80{bottom:840.030000px;}
.y14c{bottom:847.950000px;}
.yab{bottom:849.030000px;}
.y7f{bottom:857.310000px;}
.y2a{bottom:857.490000px;}
.y1c3{bottom:864.510000px;}
.y19d{bottom:864.870000px;}
.yaa{bottom:866.310000px;}
.y14b{bottom:874.590000px;}
.y2{bottom:879.369000px;}
.y51{bottom:883.590000px;}
.yce{bottom:890.430000px;}
.y112{bottom:900.510000px;}
.y50{bottom:900.870000px;}
.y19c{bottom:901.770000px;}
.y25{bottom:905.910000px;}
.y137{bottom:907.710000px;}
.y20{bottom:907.890000px;}
.y4e{bottom:932.580000px;}
.y1{bottom:966.726000px;}
.hf{height:5.653125px;}
.h28{height:23.220000px;}
.h38{height:24.465000px;}
.h8{height:32.130000px;}
.h2f{height:33.105000px;}
.h32{height:33.120000px;}
.h33{height:33.150000px;}
.h10{height:35.120039px;}
.h1b{height:35.332031px;}
.h17{height:38.158594px;}
.hc{height:38.370000px;}
.h14{height:39.183750px;}
.h9{height:39.648000px;}
.h39{height:40.125000px;}
.h19{height:43.506914px;}
.h3{height:48.195000px;}
.h35{height:49.665000px;}
.h31{height:49.680000px;}
.h36{height:49.701000px;}
.h26{height:52.545000px;}
.h1c{height:52.971680px;}
.h18{height:52.998047px;}
.h1a{height:53.573906px;}
.h1d{height:54.421875px;}
.h3b{height:55.440000px;}
.h3c{height:55.620000px;}
.h24{height:56.320312px;}
.h7{height:56.640000px;}
.h3f{height:58.621992px;}
.hd{height:58.651172px;}
.h6{height:59.472000px;}
.h16{height:60.226875px;}
.he{height:62.327813px;}
.h12{height:64.160156px;}
.h2e{height:66.082500px;}
.h34{height:66.225000px;}
.h2b{height:66.261000px;}
.h30{height:66.262500px;}
.h37{height:66.276000px;}
.h2{height:67.968000px;}
.h27{height:69.825000px;}
.h25{height:69.870000px;}
.h3e{height:70.905000px;}
.h3d{height:71.130000px;}
.h15{height:72.562500px;}
.h2c{height:82.785000px;}
.h2d{height:82.836000px;}
.h11{height:90.703125px;}
.h5{height:96.288000px;}
.h2a{height:99.345000px;}
.h29{height:99.390000px;}
.h3a{height:102.082500px;}
.h4{height:119.055004px;}
.h20{height:121.485000px;}
.h1e{height:130.522500px;}
.h1f{height:130.530000px;}
.h22{height:147.810000px;}
.h23{height:150.135000px;}
.h21{height:155.895000px;}
.hb{height:999.000000px;}
.h13{height:999.358035px;}
.ha{height:999.360000px;}
.h0{height:1262.833500px;}
.h1{height:1263.000000px;}
.w5{width:31.894500px;}
.wd{width:59.929500px;}
.wf{width:92.700000px;}
.w6{width:95.749500px;}
.w11{width:112.669500px;}
.we{width:113.962500px;}
.w18{width:131.061000px;}
.w16{width:132.300000px;}
.w15{width:140.029500px;}
.w17{width:141.516000px;}
.w13{width:142.236000px;}
.w12{width:142.761000px;}
.w14{width:147.081000px;}
.wb{width:271.999500px;}
.w9{width:272.719500px;}
.wa{width:273.675000px;}
.wc{width:274.395000px;}
.w10{width:278.355000px;}
.w7{width:436.050000px;}
.w2{width:637.794021px;}
.w8{width:701.638125px;}
.w3{width:701.640000px;}
.w4{width:702.000000px;}
.w0{width:892.912500px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x6{left:8.098500px;}
.xa{left:16.905000px;}
.x9{left:52.050000px;}
.x5{left:53.101500px;}
.x1d{left:77.446500px;}
.x7{left:85.006500px;}
.xf{left:89.856000px;}
.x23{left:93.996000px;}
.x1{left:102.045000px;}
.x2{left:106.297500px;}
.x27{left:114.514125px;}
.x28{left:124.596000px;}
.x19{left:128.374125px;}
.x1a{left:133.236000px;}
.x24{left:138.106500px;}
.x1f{left:155.728125px;}
.x20{left:165.450000px;}
.xc{left:166.528125px;}
.xd{left:171.390000px;}
.x8{left:180.765000px;}
.x2b{left:190.845000px;}
.x4{left:203.484001px;}
.x32{left:218.235000px;}
.x21{left:239.293125px;}
.x22{left:249.015000px;}
.x25{left:252.795000px;}
.x12{left:279.973125px;}
.x13{left:284.835000px;}
.x2f{left:290.415000px;}
.xe{left:301.035000px;}
.x2c{left:334.335000px;}
.x26{left:346.215000px;}
.x1e{left:350.895000px;}
.x1b{left:354.673125px;}
.x1c{left:359.535000px;}
.x10{left:375.763125px;}
.x11{left:380.625000px;}
.x30{left:437.683125px;}
.x34{left:443.983125px;}
.x31{left:447.405000px;}
.x35{left:453.705000px;}
.x3{left:454.959000px;}
.x2d{left:458.203125px;}
.x2e{left:467.925000px;}
.x14{left:477.105000px;}
.x16{left:483.583125px;}
.x17{left:488.445000px;}
.x33{left:493.500000px;}
.x29{left:527.368125px;}
.x2a{left:537.090000px;}
.x36{left:551.308125px;}
.x37{left:561.030000px;}
.x15{left:596.130000px;}
.x18{left:611.788125px;}
.xb{left:616.650000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls5{letter-spacing:-2.656000pt;}
.ls6{letter-spacing:-2.608000pt;}
.ls11{letter-spacing:-0.960000pt;}
.ls18{letter-spacing:-0.672000pt;}
.lse{letter-spacing:-0.602667pt;}
.ls16{letter-spacing:-0.592000pt;}
.ls20{letter-spacing:-0.544000pt;}
.ls22{letter-spacing:-0.480000pt;}
.ls10{letter-spacing:-0.367467pt;}
.lsa{letter-spacing:-0.320000pt;}
.lsb{letter-spacing:-0.192000pt;}
.ls19{letter-spacing:-0.183467pt;}
.ls1e{letter-spacing:-0.112000pt;}
.ls1a{letter-spacing:-0.094933pt;}
.ls7{letter-spacing:-0.047360pt;}
.ls1c{letter-spacing:-0.016000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls12{letter-spacing:0.016000pt;}
.ls13{letter-spacing:0.048640pt;}
.lsd{letter-spacing:0.094933pt;}
.ls17{letter-spacing:0.096000pt;}
.lsf{letter-spacing:0.097067pt;}
.ls3{letter-spacing:0.160000pt;}
.ls26{letter-spacing:0.183467pt;}
.ls24{letter-spacing:0.183680pt;}
.ls8{letter-spacing:0.230933pt;}
.ls4{letter-spacing:0.231040pt;}
.ls23{letter-spacing:0.265600pt;}
.ls1{letter-spacing:0.286720pt;}
.ls1f{letter-spacing:0.298667pt;}
.ls2{letter-spacing:0.320000pt;}
.ls25{letter-spacing:0.391040pt;}
.ls15{letter-spacing:0.456533pt;}
.ls9{letter-spacing:0.592000pt;}
.lsc{letter-spacing:0.736000pt;}
.ls14{letter-spacing:0.737280pt;}
.ls21{letter-spacing:0.800000pt;}
.ls1d{letter-spacing:0.869333pt;}
.ls1b{letter-spacing:0.960000pt;}
.ws1{word-spacing:-14.767360pt;}
.ws12{word-spacing:-13.872000pt;}
.ws10{word-spacing:-13.600000pt;}
.ws13{word-spacing:-13.545600pt;}
.wsb{word-spacing:-13.510933pt;}
.ws14{word-spacing:-13.463467pt;}
.wsc{word-spacing:-13.374933pt;}
.ws3{word-spacing:-13.280000pt;}
.wsa{word-spacing:-13.232640pt;}
.wsd{word-spacing:-13.096533pt;}
.ws11{word-spacing:-12.960000pt;}
.ws6{word-spacing:-12.320000pt;}
.ws7{word-spacing:-12.208427pt;}
.ws2{word-spacing:-12.111360pt;}
.ws9{word-spacing:-12.016000pt;}
.ws8{word-spacing:-12.000000pt;}
.wsf{word-spacing:-11.984000pt;}
.ws5{word-spacing:-11.808000pt;}
.ws4{word-spacing:-11.680000pt;}
.wse{word-spacing:-8.640000pt;}
.ws0{word-spacing:0.000000pt;}
._1{margin-left:-3.505920pt;}
._0{margin-left:-2.496640pt;}
._2{margin-left:-1.221760pt;}
._3{width:1.321600pt;}
._6{width:2.830080pt;}
._c{width:3.724160pt;}
._7{width:4.624213pt;}
._8{width:5.611733pt;}
._4{width:6.517760pt;}
._5{width:7.786453pt;}
._9{width:8.977280pt;}
._a{width:10.199040pt;}
._b{width:11.178240pt;}
._d{width:12.154880pt;}
._e{width:13.632000pt;}
._f{width:14.767360pt;}
._15{width:16.467200pt;}
._13{width:17.476480pt;}
._12{width:18.592000pt;}
._10{width:20.344960pt;}
._11{width:21.651627pt;}
._14{width:22.735360pt;}
._16{width:29.216000pt;}
._17{width:30.703360pt;}
.fs6{font-size:5.120000pt;}
.fsb{font-size:32.000000pt;}
.fs9{font-size:34.560000pt;}
.fs4{font-size:37.333333pt;}
.fs7{font-size:42.880000pt;}
.fsa{font-size:48.000000pt;}
.fs5{font-size:53.120000pt;}
.fs3{font-size:53.333333pt;}
.fs1{font-size:56.000000pt;}
.fsc{font-size:56.320000pt;}
.fs0{font-size:64.000000pt;}
.fs8{font-size:80.000000pt;}
.fs2{font-size:90.666667pt;}
.y0{bottom:0.000000pt;}
.y22{bottom:2.106667pt;}
.y17e{bottom:3.986667pt;}
.y176{bottom:4.000000pt;}
.y1ac{bottom:4.026667pt;}
.y24{bottom:6.426667pt;}
.y16f{bottom:9.760000pt;}
.y16e{bottom:9.920000pt;}
.y1c4{bottom:10.880000pt;}
.y1dd{bottom:10.906667pt;}
.y1d1{bottom:10.920000pt;}
.y119{bottom:11.200000pt;}
.y1b0{bottom:11.346667pt;}
.yfa{bottom:11.360000pt;}
.y1ab{bottom:11.386667pt;}
.y1e0{bottom:17.786667pt;}
.y1c7{bottom:17.920000pt;}
.y17d{bottom:18.706667pt;}
.y175{bottom:18.720000pt;}
.y184{bottom:18.746667pt;}
.y1a4{bottom:18.760000pt;}
.y23{bottom:21.786667pt;}
.y21{bottom:22.106667pt;}
.y1d5{bottom:24.640000pt;}
.y1db{bottom:24.666667pt;}
.y1d0{bottom:24.680000pt;}
.y1c6{bottom:24.800000pt;}
.y1b2{bottom:26.066667pt;}
.y1a0{bottom:26.080000pt;}
.y1af{bottom:26.106667pt;}
.y1a5{bottom:26.120000pt;}
.y118{bottom:26.560000pt;}
.y158{bottom:26.720000pt;}
.y148{bottom:28.146667pt;}
.y1e2{bottom:31.520000pt;}
.y1df{bottom:31.546667pt;}
.y1cd{bottom:31.560000pt;}
.y182{bottom:33.426667pt;}
.y174{bottom:33.440000pt;}
.y17c{bottom:33.466667pt;}
.y1a3{bottom:33.480000pt;}
.y15a{bottom:34.400000pt;}
.y1d3{bottom:34.440000pt;}
.yf9{bottom:34.720000pt;}
.y100{bottom:34.746667pt;}
.y1d6{bottom:38.400000pt;}
.y1da{bottom:38.426667pt;}
.y1ca{bottom:38.440000pt;}
.y1d8{bottom:38.560000pt;}
.y19f{bottom:40.800000pt;}
.y1b4{bottom:40.826667pt;}
.y1a6{bottom:40.840000pt;}
.y117{bottom:41.920000pt;}
.y147{bottom:43.506667pt;}
.y1de{bottom:45.306667pt;}
.y1cc{bottom:45.320000pt;}
.y181{bottom:48.146667pt;}
.y17a{bottom:48.160000pt;}
.y173{bottom:48.186667pt;}
.y1a2{bottom:48.200000pt;}
.y166{bottom:49.760000pt;}
.y157{bottom:49.786667pt;}
.yf8{bottom:50.080000pt;}
.yff{bottom:50.106667pt;}
.y1e3{bottom:52.160000pt;}
.y1dc{bottom:52.346667pt;}
.y1c9{bottom:52.360000pt;}
.y1d2{bottom:56.360000pt;}
.y116{bottom:57.280000pt;}
.y4f{bottom:58.240000pt;}
.y29{bottom:58.400000pt;}
.y1cb{bottom:59.240000pt;}
.y180{bottom:62.866667pt;}
.y179{bottom:62.880000pt;}
.y172{bottom:62.906667pt;}
.y142{bottom:65.280000pt;}
.yfe{bottom:65.306667pt;}
.yf7{bottom:65.480000pt;}
.y1cf{bottom:66.120000pt;}
.y149{bottom:67.546667pt;}
.y115{bottom:72.640000pt;}
.y178{bottom:77.600000pt;}
.y171{bottom:77.626667pt;}
.y1ce{bottom:79.880000pt;}
.y141{bottom:80.640000pt;}
.yfd{bottom:80.666667pt;}
.yf6{bottom:80.680000pt;}
.y28{bottom:80.960000pt;}
.y187{bottom:82.240000pt;}
.y146{bottom:82.746667pt;}
.y164{bottom:84.640000pt;}
.y4{bottom:86.333337pt;}
.y136{bottom:86.720000pt;}
.yf2{bottom:87.840000pt;}
.y11d{bottom:88.000000pt;}
.y27{bottom:93.120000pt;}
.y114{bottom:95.680000pt;}
.y140{bottom:96.026667pt;}
.y186{bottom:97.600000pt;}
.y225{bottom:97.920000pt;}
.y145{bottom:98.106667pt;}
.y7e{bottom:101.600000pt;}
.yf1{bottom:103.200000pt;}
.y11c{bottom:103.360000pt;}
.yfc{bottom:103.706667pt;}
.yf5{bottom:103.720000pt;}
.y26{bottom:105.440000pt;}
.y135{bottom:106.880000pt;}
.y1b6{bottom:107.360000pt;}
.y19b{bottom:110.080000pt;}
.y224{bottom:113.280000pt;}
.ya9{bottom:115.520000pt;}
.y7d{bottom:115.840000pt;}
.y111{bottom:117.920000pt;}
.yf0{bottom:118.560000pt;}
.y13f{bottom:119.066667pt;}
.y144{bottom:121.146667pt;}
.y7c{bottom:121.920000pt;}
.y1f{bottom:123.790666pt;}
.y163{bottom:124.000000pt;}
.y11b{bottom:126.280000pt;}
.y223{bottom:128.640000pt;}
.ya8{bottom:129.280000pt;}
.y1b5{bottom:130.240000pt;}
.y7b{bottom:130.880000pt;}
.y134{bottom:131.200000pt;}
.y110{bottom:133.280000pt;}
.yef{bottom:133.760000pt;}
.y1c2{bottom:134.560000pt;}
.y185{bottom:136.480000pt;}
.y162{bottom:139.200000pt;}
.y4d{bottom:141.760000pt;}
.ye2{bottom:143.040000pt;}
.ya7{bottom:143.520000pt;}
.y7a{bottom:144.960000pt;}
.ycd{bottom:147.200000pt;}
.y19a{bottom:147.520000pt;}
.y4c{bottom:147.840000pt;}
.y183{bottom:148.000000pt;}
.ye1{bottom:148.320000pt;}
.y10f{bottom:148.640000pt;}
.yee{bottom:149.120000pt;}
.ya6{bottom:149.600000pt;}
.y132{bottom:150.560000pt;}
.y79{bottom:151.040000pt;}
.y222{bottom:152.000000pt;}
.y199{bottom:152.800000pt;}
.y133{bottom:156.640000pt;}
.ye0{bottom:156.800000pt;}
.y4b{bottom:157.120000pt;}
.y205{bottom:157.280000pt;}
.ya5{bottom:158.880000pt;}
.y78{bottom:160.320000pt;}
.y198{bottom:161.440000pt;}
.ydf{bottom:162.080000pt;}
.ycc{bottom:162.560000pt;}
.y1f4{bottom:163.680000pt;}
.y10e{bottom:164.026667pt;}
.yed{bottom:164.506667pt;}
.y131{bottom:165.946667pt;}
.y221{bottom:167.226667pt;}
.yde{bottom:170.746667pt;}
.y4a{bottom:172.506667pt;}
.y204{bottom:172.666667pt;}
.ya4{bottom:174.106667pt;}
.y16{bottom:175.052000pt;}
.y197{bottom:175.226667pt;}
.y77{bottom:175.706667pt;}
.ycb{bottom:177.946667pt;}
.y1f3{bottom:178.906667pt;}
.y10d{bottom:179.226667pt;}
.y196{bottom:180.506667pt;}
.y130{bottom:181.306667pt;}
.y220{bottom:182.586667pt;}
.ydd{bottom:184.506667pt;}
.y161{bottom:185.946667pt;}
.y1e{bottom:186.238666pt;}
.y15{bottom:186.252002pt;}
.yec{bottom:187.866667pt;}
.y195{bottom:189.466667pt;}
.y76{bottom:192.666667pt;}
.yca{bottom:193.306667pt;}
.y1f2{bottom:194.266667pt;}
.y12f{bottom:196.666667pt;}
.y1d{bottom:197.438668pt;}
.y14{bottom:197.452004pt;}
.y21f{bottom:197.946667pt;}
.ydc{bottom:198.266667pt;}
.ya3{bottom:201.306667pt;}
.y1b3{bottom:201.320000pt;}
.y10c{bottom:202.586667pt;}
.y49{bottom:203.546667pt;}
.y194{bottom:204.666667pt;}
.y203{bottom:205.306667pt;}
.y75{bottom:208.026667pt;}
.y1c{bottom:208.638670pt;}
.y13{bottom:208.651996pt;}
.yc9{bottom:208.666667pt;}
.y1f1{bottom:209.626667pt;}
.yeb{bottom:211.226667pt;}
.ydb{bottom:212.026667pt;}
.y1c1{bottom:212.506667pt;}
.ya2{bottom:216.666667pt;}
.y48{bottom:218.906667pt;}
.y202{bottom:220.666667pt;}
.y21e{bottom:221.306667pt;}
.y17f{bottom:222.280000pt;}
.y74{bottom:223.226667pt;}
.y1f0{bottom:224.986667pt;}
.yda{bottom:225.946667pt;}
.yea{bottom:226.586667pt;}
.y1c0{bottom:227.866667pt;}
.y1b{bottom:231.038664pt;}
.y12{bottom:231.052000pt;}
.yc8{bottom:231.706667pt;}
.ya1{bottom:232.026667pt;}
.y47{bottom:234.266667pt;}
.y12e{bottom:235.226667pt;}
.y21d{bottom:236.666667pt;}
.y73{bottom:238.586667pt;}
.yd9{bottom:239.706667pt;}
.y14a{bottom:240.026667pt;}
.y1ef{bottom:240.346667pt;}
.y10b{bottom:241.306667pt;}
.ye9{bottom:241.786667pt;}
.y1a{bottom:242.238666pt;}
.y11{bottom:242.252002pt;}
.y201{bottom:244.026667pt;}
.yd8{bottom:244.986667pt;}
.y1b1{bottom:246.280000pt;}
.ya0{bottom:247.226667pt;}
.y46{bottom:249.626667pt;}
.y12d{bottom:250.586667pt;}
.y19{bottom:253.438668pt;}
.y10{bottom:253.451999pt;}
.y72{bottom:253.946667pt;}
.yc7{bottom:255.226667pt;}
.y1ee{bottom:255.546667pt;}
.y10a{bottom:256.666667pt;}
.y200{bottom:259.226667pt;}
.y21c{bottom:260.026667pt;}
.y143{bottom:260.520000pt;}
.y9f{bottom:262.586667pt;}
.y45{bottom:264.826667pt;}
.ye8{bottom:265.146667pt;}
.y12c{bottom:265.946667pt;}
.y71{bottom:269.306667pt;}
.y1bf{bottom:270.586667pt;}
.y1ed{bottom:270.906667pt;}
.y21b{bottom:275.226667pt;}
.y18{bottom:275.838667pt;}
.yf{bottom:275.852001pt;}
.y9e{bottom:277.946667pt;}
.y160{bottom:278.266667pt;}
.yc6{bottom:278.586667pt;}
.y109{bottom:280.026667pt;}
.y44{bottom:280.186667pt;}
.y12b{bottom:281.306667pt;}
.y1ff{bottom:282.586667pt;}
.y193{bottom:284.666667pt;}
.y1be{bottom:285.946667pt;}
.y1ec{bottom:286.266667pt;}
.y17{bottom:287.038667pt;}
.ye{bottom:287.052000pt;}
.ye7{bottom:288.186667pt;}
.y70{bottom:292.666667pt;}
.y9d{bottom:293.306667pt;}
.yc5{bottom:293.946667pt;}
.y43{bottom:295.546667pt;}
.y12a{bottom:296.666667pt;}
.y17b{bottom:296.680000pt;}
.y1fe{bottom:297.946667pt;}
.y21a{bottom:298.586667pt;}
.y192{bottom:300.026667pt;}
.y1bd{bottom:301.306667pt;}
.y1eb{bottom:301.626667pt;}
.y15f{bottom:301.946667pt;}
.y108{bottom:302.906667pt;}
.y1ae{bottom:305.800000pt;}
.y6f{bottom:308.026667pt;}
.y9b{bottom:308.666667pt;}
.yc4{bottom:309.306667pt;}
.yd{bottom:309.452000pt;}
.y42{bottom:310.906667pt;}
.ye6{bottom:311.866667pt;}
.y129{bottom:312.026667pt;}
.y219{bottom:313.946667pt;}
.y9c{bottom:314.746667pt;}
.y191{bottom:315.226667pt;}
.y1bc{bottom:316.666667pt;}
.y1e9{bottom:316.986667pt;}
.y1fd{bottom:321.306667pt;}
.y1ea{bottom:323.066667pt;}
.y6e{bottom:323.226667pt;}
.y9a{bottom:324.026667pt;}
.yc3{bottom:324.666667pt;}
.y15e{bottom:325.346667pt;}
.y41{bottom:326.306667pt;}
.y128{bottom:327.266667pt;}
.y218{bottom:329.346667pt;}
.y190{bottom:330.626667pt;}
.y1bb{bottom:332.066667pt;}
.y1e8{bottom:332.386667pt;}
.ye5{bottom:334.786667pt;}
.y1fc{bottom:336.706667pt;}
.y6d{bottom:338.626667pt;}
.yc2{bottom:340.066667pt;}
.y15d{bottom:340.706667pt;}
.y40{bottom:341.666667pt;}
.yc{bottom:343.809333pt;}
.y18f{bottom:345.986667pt;}
.y99{bottom:347.266667pt;}
.y1e7{bottom:347.586667pt;}
.y107{bottom:349.986667pt;}
.y127{bottom:350.626667pt;}
.y217{bottom:352.706667pt;}
.y6c{bottom:353.986667pt;}
.yc1{bottom:355.266667pt;}
.y177{bottom:356.226667pt;}
.y3f{bottom:356.866667pt;}
.y1fb{bottom:360.066667pt;}
.y18e{bottom:361.346667pt;}
.y98{bottom:362.626667pt;}
.yb{bottom:362.706666pt;}
.y1e6{bottom:362.946667pt;}
.y15c{bottom:363.906667pt;}
.y106{bottom:365.346667pt;}
.y216{bottom:368.066667pt;}
.y1ba{bottom:368.706667pt;}
.y6b{bottom:369.346667pt;}
.yc0{bottom:370.626667pt;}
.y3e{bottom:372.226667pt;}
.y126{bottom:373.666667pt;}
.y1fa{bottom:375.266667pt;}
.y97{bottom:377.986667pt;}
.y1e5{bottom:378.306667pt;}
.y105{bottom:380.706667pt;}
.y215{bottom:383.266667pt;}
.y6a{bottom:384.706667pt;}
.ybf{bottom:385.986667pt;}
.y15b{bottom:387.266667pt;}
.y3d{bottom:387.586667pt;}
.y18d{bottom:390.786667pt;}
.yd7{bottom:392.706667pt;}
.y96{bottom:393.346667pt;}
.y13e{bottom:394.626667pt;}
.y104{bottom:395.906667pt;}
.y125{bottom:397.026667pt;}
.y1f9{bottom:398.306667pt;}
.y159{bottom:399.906667pt;}
.y1e4{bottom:401.186667pt;}
.ybe{bottom:401.346667pt;}
.y214{bottom:406.626667pt;}
.y69{bottom:408.066667pt;}
.y95{bottom:408.706667pt;}
.y3c{bottom:410.626667pt;}
.y103{bottom:411.266667pt;}
.y1e1{bottom:412.866667pt;}
.y22c{bottom:413.986667pt;}
.ybd{bottom:416.706667pt;}
.y124{bottom:420.706667pt;}
.y213{bottom:421.986667pt;}
.y68{bottom:423.266667pt;}
.y94{bottom:424.066667pt;}
.y1ad{bottom:425.506667pt;}
.ybc{bottom:432.066667pt;}
.y102{bottom:434.626667pt;}
.y123{bottom:435.906667pt;}
.y22b{bottom:437.346667pt;}
.y1f8{bottom:437.666667pt;}
.y67{bottom:438.626667pt;}
.y93{bottom:439.266667pt;}
.y170{bottom:445.186667pt;}
.y212{bottom:445.346667pt;}
.ybb{bottom:447.266667pt;}
.y3b{bottom:449.826667pt;}
.y122{bottom:451.266667pt;}
.y66{bottom:453.986667pt;}
.y92{bottom:454.626667pt;}
.y101{bottom:457.986667pt;}
.yd6{bottom:460.066667pt;}
.y211{bottom:460.706667pt;}
.y1f7{bottom:461.346667pt;}
.y18c{bottom:461.986667pt;}
.yba{bottom:462.626667pt;}
.ya{bottom:462.990669pt;}
.y121{bottom:466.626667pt;}
.y65{bottom:469.346667pt;}
.y91{bottom:469.986667pt;}
.yfb{bottom:470.626667pt;}
.y3a{bottom:472.066667pt;}
.y210{bottom:475.906667pt;}
.y1d9{bottom:476.706667pt;}
.y18b{bottom:477.346667pt;}
.yb9{bottom:477.986667pt;}
.y9{bottom:478.990666pt;}
.y120{bottom:481.986667pt;}
.y64{bottom:484.706667pt;}
.y1aa{bottom:485.026667pt;}
.y90{bottom:485.346667pt;}
.y20f{bottom:491.293333pt;}
.y1b9{bottom:491.453333pt;}
.yd5{bottom:492.733333pt;}
.y8{bottom:494.990666pt;}
.y39{bottom:495.453333pt;}
.y63{bottom:499.933333pt;}
.y8f{bottom:500.733333pt;}
.yb8{bottom:501.373333pt;}
.y11f{bottom:505.373333pt;}
.y38{bottom:510.813333pt;}
.y20e{bottom:514.653333pt;}
.y1a9{bottom:515.133333pt;}
.y62{bottom:515.293333pt;}
.y8e{bottom:515.933333pt;}
.yb7{bottom:516.733333pt;}
.y156{bottom:521.053333pt;}
.y11e{bottom:528.733333pt;}
.y22a{bottom:530.013333pt;}
.y1f6{bottom:530.333333pt;}
.y60{bottom:530.653333pt;}
.yd4{bottom:531.293333pt;}
.yb6{bottom:531.933333pt;}
.y37{bottom:534.013333pt;}
.y16d{bottom:534.173333pt;}
.y61{bottom:536.733333pt;}
.y13d{bottom:537.693333pt;}
.y20d{bottom:538.013333pt;}
.y8d{bottom:539.293333pt;}
.y1d7{bottom:540.573333pt;}
.y11a{bottom:541.373333pt;}
.y1a8{bottom:545.373333pt;}
.y5f{bottom:546.013333pt;}
.y18a{bottom:546.653333pt;}
.yb5{bottom:547.293333pt;}
.y36{bottom:549.373333pt;}
.y20c{bottom:553.373333pt;}
.y1f5{bottom:554.013333pt;}
.y8c{bottom:554.653333pt;}
.y155{bottom:560.733333pt;}
.y189{bottom:562.013333pt;}
.yb4{bottom:562.653333pt;}
.y35{bottom:564.733333pt;}
.y16c{bottom:566.173333pt;}
.y229{bottom:568.733333pt;}
.y5e{bottom:569.373333pt;}
.y8b{bottom:570.013333pt;}
.y7{bottom:573.786667pt;}
.y154{bottom:575.933333pt;}
.y20b{bottom:576.733333pt;}
.y13c{bottom:577.373333pt;}
.yb3{bottom:578.013333pt;}
.y34{bottom:580.093333pt;}
.y5d{bottom:584.733333pt;}
.y8a{bottom:585.373333pt;}
.yf4{bottom:587.293333pt;}
.y1a7{bottom:590.173333pt;}
.y1d4{bottom:590.653333pt;}
.y153{bottom:591.293333pt;}
.y20a{bottom:591.933333pt;}
.y6{bottom:592.685334pt;}
.y13b{bottom:592.733333pt;}
.yb2{bottom:593.373333pt;}
.y33{bottom:595.453333pt;}
.y5c{bottom:599.933333pt;}
.y89{bottom:600.733333pt;}
.y16b{bottom:604.733333pt;}
.y228{bottom:607.293333pt;}
.y13a{bottom:607.933333pt;}
.yb1{bottom:608.733333pt;}
.y32{bottom:610.653333pt;}
.y152{bottom:614.653333pt;}
.y5b{bottom:615.293333pt;}
.y88{bottom:615.933333pt;}
.y16a{bottom:619.933333pt;}
.y139{bottom:623.293333pt;}
.yb0{bottom:623.933333pt;}
.y31{bottom:626.013333pt;}
.y5a{bottom:630.653333pt;}
.y1b8{bottom:630.973333pt;}
.yd3{bottom:631.933333pt;}
.y1a1{bottom:634.973333pt;}
.y151{bottom:638.013333pt;}
.y87{bottom:639.293333pt;}
.y1c8{bottom:640.733333pt;}
.y30{bottom:641.373333pt;}
.y169{bottom:643.293333pt;}
.y5{bottom:645.598667pt;}
.y59{bottom:646.013333pt;}
.y138{bottom:646.653333pt;}
.yd2{bottom:647.333333pt;}
.y150{bottom:653.413333pt;}
.y209{bottom:654.053333pt;}
.y86{bottom:654.693333pt;}
.y2f{bottom:656.773333pt;}
.y58{bottom:661.413333pt;}
.yd1{bottom:662.693333pt;}
.y168{bottom:666.693333pt;}
.y14f{bottom:668.773333pt;}
.y3{bottom:668.977329pt;}
.y208{bottom:669.413333pt;}
.y85{bottom:670.053333pt;}
.y2e{bottom:672.133333pt;}
.ye4{bottom:672.293333pt;}
.y57{bottom:676.773333pt;}
.yd0{bottom:678.053333pt;}
.y167{bottom:679.333333pt;}
.y113{bottom:680.773333pt;}
.y14e{bottom:683.973333pt;}
.y227{bottom:684.773333pt;}
.y84{bottom:685.413333pt;}
.ye3{bottom:686.213333pt;}
.y2d{bottom:687.493333pt;}
.y56{bottom:691.973333pt;}
.y207{bottom:692.773333pt;}
.yaf{bottom:693.413333pt;}
.y19e{bottom:694.533333pt;}
.ycf{bottom:699.493333pt;}
.y83{bottom:700.773333pt;}
.y54{bottom:707.333333pt;}
.y206{bottom:707.973333pt;}
.yae{bottom:708.773333pt;}
.y55{bottom:713.413333pt;}
.yf3{bottom:715.013333pt;}
.y82{bottom:715.973333pt;}
.y53{bottom:722.693333pt;}
.y226{bottom:723.333333pt;}
.yad{bottom:723.973333pt;}
.y165{bottom:726.693333pt;}
.y188{bottom:730.053333pt;}
.y14d{bottom:730.373333pt;}
.y81{bottom:731.333333pt;}
.y1c5{bottom:732.133333pt;}
.y2b{bottom:735.173333pt;}
.yac{bottom:739.333333pt;}
.y2c{bottom:741.253333pt;}
.y1b7{bottom:745.413333pt;}
.y52{bottom:745.733333pt;}
.y80{bottom:746.693333pt;}
.y14c{bottom:753.733333pt;}
.yab{bottom:754.693333pt;}
.y7f{bottom:762.053333pt;}
.y2a{bottom:762.213333pt;}
.y1c3{bottom:768.453333pt;}
.y19d{bottom:768.773333pt;}
.yaa{bottom:770.053333pt;}
.y14b{bottom:777.413333pt;}
.y2{bottom:781.661334pt;}
.y51{bottom:785.413333pt;}
.yce{bottom:791.493333pt;}
.y112{bottom:800.453333pt;}
.y50{bottom:800.773333pt;}
.y19c{bottom:801.573333pt;}
.y25{bottom:805.253333pt;}
.y137{bottom:806.853333pt;}
.y20{bottom:807.013333pt;}
.y4e{bottom:828.960000pt;}
.y1{bottom:859.312000pt;}
.hf{height:5.025000pt;}
.h28{height:20.640000pt;}
.h38{height:21.746667pt;}
.h8{height:28.560000pt;}
.h2f{height:29.426667pt;}
.h32{height:29.440000pt;}
.h33{height:29.466667pt;}
.h10{height:31.217812pt;}
.h1b{height:31.406250pt;}
.h17{height:33.918750pt;}
.hc{height:34.106667pt;}
.h14{height:34.830000pt;}
.h9{height:35.242667pt;}
.h39{height:35.666667pt;}
.h19{height:38.672812pt;}
.h3{height:42.840000pt;}
.h35{height:44.146667pt;}
.h31{height:44.160000pt;}
.h36{height:44.178667pt;}
.h26{height:46.706667pt;}
.h1c{height:47.085938pt;}
.h18{height:47.109375pt;}
.h1a{height:47.621250pt;}
.h1d{height:48.375000pt;}
.h3b{height:49.280000pt;}
.h3c{height:49.440000pt;}
.h24{height:50.062500pt;}
.h7{height:50.346667pt;}
.h3f{height:52.108438pt;}
.hd{height:52.134375pt;}
.h6{height:52.864000pt;}
.h16{height:53.535000pt;}
.he{height:55.402500pt;}
.h12{height:57.031250pt;}
.h2e{height:58.740000pt;}
.h34{height:58.866667pt;}
.h2b{height:58.898667pt;}
.h30{height:58.900000pt;}
.h37{height:58.912000pt;}
.h2{height:60.416000pt;}
.h27{height:62.066667pt;}
.h25{height:62.106667pt;}
.h3e{height:63.026667pt;}
.h3d{height:63.226667pt;}
.h15{height:64.500000pt;}
.h2c{height:73.586667pt;}
.h2d{height:73.632000pt;}
.h11{height:80.625000pt;}
.h5{height:85.589333pt;}
.h2a{height:88.306667pt;}
.h29{height:88.346667pt;}
.h3a{height:90.740000pt;}
.h4{height:105.826671pt;}
.h20{height:107.986667pt;}
.h1e{height:116.020000pt;}
.h1f{height:116.026667pt;}
.h22{height:131.386667pt;}
.h23{height:133.453333pt;}
.h21{height:138.573333pt;}
.hb{height:888.000000pt;}
.h13{height:888.318253pt;}
.ha{height:888.320000pt;}
.h0{height:1122.518667pt;}
.h1{height:1122.666667pt;}
.w5{width:28.350667pt;}
.wd{width:53.270667pt;}
.wf{width:82.400000pt;}
.w6{width:85.110667pt;}
.w11{width:100.150667pt;}
.we{width:101.300000pt;}
.w18{width:116.498667pt;}
.w16{width:117.600000pt;}
.w15{width:124.470667pt;}
.w17{width:125.792000pt;}
.w13{width:126.432000pt;}
.w12{width:126.898667pt;}
.w14{width:130.738667pt;}
.wb{width:241.777333pt;}
.w9{width:242.417333pt;}
.wa{width:243.266667pt;}
.wc{width:243.906667pt;}
.w10{width:247.426667pt;}
.w7{width:387.600000pt;}
.w2{width:566.928019pt;}
.w8{width:623.678333pt;}
.w3{width:623.680000pt;}
.w4{width:624.000000pt;}
.w0{width:793.700000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x6{left:7.198667pt;}
.xa{left:15.026667pt;}
.x9{left:46.266667pt;}
.x5{left:47.201333pt;}
.x1d{left:68.841333pt;}
.x7{left:75.561333pt;}
.xf{left:79.872000pt;}
.x23{left:83.552000pt;}
.x1{left:90.706667pt;}
.x2{left:94.486667pt;}
.x27{left:101.790333pt;}
.x28{left:110.752000pt;}
.x19{left:114.110333pt;}
.x1a{left:118.432000pt;}
.x24{left:122.761333pt;}
.x1f{left:138.425000pt;}
.x20{left:147.066667pt;}
.xc{left:148.025000pt;}
.xd{left:152.346667pt;}
.x8{left:160.680000pt;}
.x2b{left:169.640000pt;}
.x4{left:180.874667pt;}
.x32{left:193.986667pt;}
.x21{left:212.705000pt;}
.x22{left:221.346667pt;}
.x25{left:224.706667pt;}
.x12{left:248.865000pt;}
.x13{left:253.186667pt;}
.x2f{left:258.146667pt;}
.xe{left:267.586667pt;}
.x2c{left:297.186667pt;}
.x26{left:307.746667pt;}
.x1e{left:311.906667pt;}
.x1b{left:315.265000pt;}
.x1c{left:319.586667pt;}
.x10{left:334.011667pt;}
.x11{left:338.333333pt;}
.x30{left:389.051667pt;}
.x34{left:394.651667pt;}
.x31{left:397.693333pt;}
.x35{left:403.293333pt;}
.x3{left:404.408000pt;}
.x2d{left:407.291667pt;}
.x2e{left:415.933333pt;}
.x14{left:424.093333pt;}
.x16{left:429.851667pt;}
.x17{left:434.173333pt;}
.x33{left:438.666667pt;}
.x29{left:468.771667pt;}
.x2a{left:477.413333pt;}
.x36{left:490.051667pt;}
.x37{left:498.693333pt;}
.x15{left:529.893333pt;}
.x18{left:543.811667pt;}
.xb{left:548.133333pt;}
}




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