
    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_4cf4228ba5ff801002368489.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_bc343c1aa64e64151a14a883.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_1a97cbf756720027075eacc6.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_472e5e0c3290a6cb9a205055.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.060059;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_67eda16569ac838b658d9b0e.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.060059;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_c33dcc3fa5b8ad21f46fc954.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_ff33e3cb0c8a44acb6a5d1b0.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_2c87d70034de48282d0a8740.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.003906;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_eaecbbba7c6125530dbe3dca.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.921387;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_5b9c5d60da426bf34e302f17.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.708008;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_f0e675230c6aa49e32a1f5a8.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v5{vertical-align:-69.120000px;}
.v4{vertical-align:-20.880000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:15.120000px;}
.v1{vertical-align:18.000000px;}
.v6{vertical-align:20.880000px;}
.v3{vertical-align:27.360000px;}
.v7{vertical-align:55.440000px;}
.ls18{letter-spacing:-0.942000px;}
.lsd{letter-spacing:-0.774000px;}
.lsc{letter-spacing:-0.540000px;}
.ls15{letter-spacing:-0.486600px;}
.lse{letter-spacing:-0.450600px;}
.ls8{letter-spacing:-0.360000px;}
.ls13{letter-spacing:-0.053280px;}
.ls17{letter-spacing:-0.045360px;}
.ls6{letter-spacing:0.000000px;}
.ls16{letter-spacing:0.010080px;}
.ls12{letter-spacing:0.018000px;}
.lsb{letter-spacing:0.180000px;}
.lsf{letter-spacing:0.259920px;}
.ls19{letter-spacing:0.289440px;}
.lsa{letter-spacing:0.298800px;}
.ls1{letter-spacing:0.315600px;}
.ls2{letter-spacing:0.360000px;}
.ls7{letter-spacing:0.493800px;}
.ls11{letter-spacing:0.513600px;}
.ls5{letter-spacing:0.720000px;}
.ls9{letter-spacing:7.380000px;}
.ls0{letter-spacing:7.560000px;}
.ls1a{letter-spacing:9.540000px;}
.ls14{letter-spacing:18.180000px;}
.ls4{letter-spacing:66.960000px;}
.ls3{letter-spacing:67.680000px;}
.ls10{letter-spacing:93.180000px;}
.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;}
}
.ws3{word-spacing:-36.907200px;}
.ws9{word-spacing:-16.560000px;}
.wse{word-spacing:-15.453600px;}
.wsb{word-spacing:-15.300000px;}
.wsc{word-spacing:-15.238800px;}
.ws8{word-spacing:-14.940000px;}
.wsf{word-spacing:-14.886720px;}
.wsd{word-spacing:-14.580000px;}
.ws2{word-spacing:-13.860000px;}
.ws10{word-spacing:-13.500000px;}
.ws7{word-spacing:-12.420000px;}
.ws16{word-spacing:-12.349440px;}
.ws6{word-spacing:-12.060000px;}
.ws14{word-spacing:-12.014640px;}
.ws4{word-spacing:-11.700000px;}
.ws13{word-spacing:-11.609400px;}
.ws15{word-spacing:-11.118000px;}
.ws1{word-spacing:-10.933800px;}
.ws0{word-spacing:-10.440000px;}
.ws12{word-spacing:-7.570080px;}
.ws5{word-spacing:-7.560000px;}
.ws11{word-spacing:-7.073400px;}
.wsa{word-spacing:0.000000px;}
._35{margin-left:-4.320000px;}
._4{margin-left:-2.322960px;}
._0{margin-left:-1.013040px;}
._2{width:1.793280px;}
._8{width:3.402000px;}
._9{width:5.278560px;}
._a{width:6.318000px;}
._1{width:7.332480px;}
._3{width:9.183600px;}
._b{width:11.125440px;}
._13{width:12.223200px;}
._f{width:13.386240px;}
._44{width:15.533280px;}
._e{width:16.838640px;}
._d{width:17.843760px;}
._c{width:18.846000px;}
._14{width:20.026560px;}
._11{width:21.155040px;}
._18{width:22.222560px;}
._2a{width:24.159840px;}
._19{width:25.269840px;}
._1d{width:26.354160px;}
._12{width:27.370080px;}
._17{width:28.923360px;}
._15{width:30.059280px;}
._1b{width:31.254480px;}
._1c{width:32.645280px;}
._16{width:34.421760px;}
._21{width:35.608320px;}
._28{width:36.946320px;}
._2c{width:38.344800px;}
._10{width:40.183920px;}
._2b{width:41.683920px;}
._32{width:42.951600px;}
._1e{width:44.521200px;}
._25{width:45.528480px;}
._24{width:46.553040px;}
._2d{width:48.286080px;}
._1a{width:50.138640px;}
._30{width:51.154560px;}
._39{width:53.449920px;}
._3a{width:54.470400px;}
._2e{width:55.576800px;}
._2f{width:57.719520px;}
._36{width:58.983120px;}
._31{width:60.775920px;}
._33{width:62.150400px;}
._7{width:65.852400px;}
._29{width:66.880320px;}
._42{width:68.066640px;}
._20{width:70.516320px;}
._1f{width:72.010800px;}
._27{width:73.857120px;}
._26{width:75.476880px;}
._3c{width:79.451280px;}
._22{width:88.270560px;}
._23{width:89.517120px;}
._38{width:93.345120px;}
._37{width:94.839120px;}
._34{width:118.265040px;}
._3e{width:138.962160px;}
._3f{width:140.610480px;}
._40{width:159.095520px;}
._43{width:215.777520px;}
._41{width:241.441200px;}
._3d{width:242.617440px;}
._3b{width:257.022720px;}
._45{width:262.618560px;}
._5{width:291.900000px;}
._46{width:309.449280px;}
._6{width:1209.960000px;}
.fc4{color:rgb(0,0,255);}
.fc3{color:rgb(128,128,128);}
.fc2{color:rgb(127,127,127);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(255,255,255);}
.fs11{font-size:12.240000px;}
.fs10{font-size:18.000000px;}
.fsc{font-size:23.760000px;}
.fs2{font-size:27.360000px;}
.fsd{font-size:30.240000px;}
.fse{font-size:36.000000px;}
.fsb{font-size:38.880000px;}
.fs1{font-size:41.760000px;}
.fs0{font-size:48.240000px;}
.fs4{font-size:54.000000px;}
.fs8{font-size:59.760000px;}
.fs5{font-size:66.240000px;}
.fsf{font-size:72.000000px;}
.fs7{font-size:84.240000px;}
.fs3{font-size:108.000000px;}
.fsa{font-size:120.240000px;}
.fs9{font-size:144.000000px;}
.fs6{font-size:167.760000px;}
.y0{bottom:0.000000px;}
.y55{bottom:4.140000px;}
.y9{bottom:4.320000px;}
.y10f{bottom:4.860000px;}
.y169{bottom:6.120000px;}
.y174{bottom:6.465000px;}
.y10b{bottom:6.480000px;}
.y176{bottom:6.825000px;}
.y16c{bottom:6.840000px;}
.y17f{bottom:7.005000px;}
.y11b{bottom:7.020000px;}
.y16f{bottom:7.185000px;}
.y17a{bottom:7.365000px;}
.y171{bottom:7.545000px;}
.y11f{bottom:7.560000px;}
.y123{bottom:7.920000px;}
.y111{bottom:9.900000px;}
.y113{bottom:10.080000px;}
.y10d{bottom:12.780000px;}
.y119{bottom:14.040000px;}
.y54{bottom:14.400000px;}
.y118{bottom:14.940000px;}
.y17c{bottom:15.465000px;}
.y11d{bottom:15.480000px;}
.y121{bottom:15.840000px;}
.y178{bottom:16.005000px;}
.y115{bottom:17.820000px;}
.y10e{bottom:20.700000px;}
.y3{bottom:22.320000px;}
.y57{bottom:22.680000px;}
.y11a{bottom:22.860000px;}
.y11e{bottom:23.580000px;}
.y122{bottom:23.790000px;}
.y173{bottom:24.285000px;}
.y175{bottom:24.645000px;}
.y16b{bottom:24.840000px;}
.y17e{bottom:25.005000px;}
.y16e{bottom:25.050000px;}
.y179{bottom:25.185000px;}
.y180{bottom:25.365000px;}
.y170{bottom:25.410000px;}
.y116{bottom:25.740000px;}
.y8{bottom:30.780000px;}
.y2{bottom:37.080000px;}
.y1{bottom:49.680000px;}
.y7{bottom:66.270000px;}
.y129{bottom:77.220000px;}
.y1a7{bottom:79.020000px;}
.y89{bottom:80.640000px;}
.yac{bottom:82.620000px;}
.y5{bottom:83.010000px;}
.y128{bottom:83.160000px;}
.yfe{bottom:85.140000px;}
.y1d6{bottom:90.180000px;}
.y9c{bottom:90.360000px;}
.y186{bottom:90.900000px;}
.yde{bottom:93.600000px;}
.y20b{bottom:94.320000px;}
.y127{bottom:97.920000px;}
.y1a6{bottom:98.820000px;}
.y88{bottom:100.440000px;}
.yab{bottom:102.420000px;}
.y1d5{bottom:104.040000px;}
.y42{bottom:107.640000px;}
.y20a{bottom:108.180000px;}
.y185{bottom:110.700000px;}
.ydd{bottom:113.400000px;}
.y1d4{bottom:117.720000px;}
.y1a5{bottom:118.620000px;}
.yfd{bottom:119.700000px;}
.y87{bottom:120.420000px;}
.y209{bottom:122.040000px;}
.y52{bottom:122.220000px;}
.y9b{bottom:124.560000px;}
.y41{bottom:128.700000px;}
.y184{bottom:130.140000px;}
.y187{bottom:130.500000px;}
.ydc{bottom:133.380000px;}
.y208{bottom:135.720000px;}
.yfc{bottom:136.980000px;}
.y1d3{bottom:137.520000px;}
.y1a4{bottom:138.420000px;}
.y86{bottom:140.220000px;}
.y51{bottom:142.020000px;}
.y40{bottom:148.536000px;}
.y183{bottom:150.510000px;}
.y1d2{bottom:151.410000px;}
.ydb{bottom:153.210000px;}
.yfb{bottom:154.290000px;}
.y207{bottom:155.550000px;}
.y1a3{bottom:158.250000px;}
.y9a{bottom:159.330000px;}
.y85{bottom:160.050000px;}
.y50{bottom:161.850000px;}
.y1d1{bottom:165.270000px;}
.y3f{bottom:168.330000px;}
.y182{bottom:169.050000px;}
.y206{bottom:169.410000px;}
.yfa{bottom:171.390000px;}
.yda{bottom:173.010000px;}
.y99{bottom:176.610000px;}
.y1a2{bottom:178.230000px;}
.y1d0{bottom:178.950000px;}
.y84{bottom:179.850000px;}
.y4f{bottom:181.650000px;}
.yaa{bottom:181.830000px;}
.y205{bottom:183.270000px;}
.y181{bottom:184.890000px;}
.y3e{bottom:188.310000px;}
.yf9{bottom:188.670000px;}
.yd9{bottom:192.810000px;}
.y98{bottom:193.890000px;}
.y17d{bottom:196.605000px;}
.y1a1{bottom:198.030000px;}
.y1cf{bottom:198.750000px;}
.y83{bottom:199.650000px;}
.y4e{bottom:201.450000px;}
.ya9{bottom:201.630000px;}
.y204{bottom:203.070000px;}
.yf8{bottom:205.950000px;}
.y3d{bottom:208.110000px;}
.y97{bottom:211.170000px;}
.yd8{bottom:212.610000px;}
.y203{bottom:216.750000px;}
.y1a0{bottom:217.830000px;}
.y82{bottom:219.630000px;}
.y4d{bottom:221.430000px;}
.yf7{bottom:223.230000px;}
.y1ce{bottom:226.290000px;}
.y3c{bottom:227.910000px;}
.y96{bottom:228.450000px;}
.y202{bottom:230.610000px;}
.yd7{bottom:232.590000px;}
.y17b{bottom:236.745000px;}
.y19f{bottom:237.270000px;}
.y81{bottom:239.430000px;}
.y1cd{bottom:240.150000px;}
.yf6{bottom:240.510000px;}
.y4c{bottom:241.230000px;}
.y95{bottom:245.550000px;}
.y3b{bottom:247.710000px;}
.y201{bottom:250.410000px;}
.yd6{bottom:252.390000px;}
.y19e{bottom:257.070000px;}
.yf5{bottom:257.790000px;}
.y80{bottom:259.230000px;}
.y1cc{bottom:259.950000px;}
.y4b{bottom:261.030000px;}
.y94{bottom:262.830000px;}
.y200{bottom:264.270000px;}
.y3a{bottom:268.230000px;}
.yd5{bottom:272.190000px;}
.y1cb{bottom:273.810000px;}
.yf4{bottom:274.890000px;}
.y177{bottom:275.805000px;}
.y19d{bottom:277.410000px;}
.y1ff{bottom:277.950000px;}
.y7f{bottom:279.030000px;}
.y93{bottom:280.110000px;}
.y4a{bottom:280.830000px;}
.ya8{bottom:281.010000px;}
.y1ca{bottom:287.490000px;}
.y39{bottom:289.470000px;}
.y1fe{bottom:291.810000px;}
.yd4{bottom:291.990000px;}
.yf3{bottom:292.170000px;}
.y19c{bottom:297.210000px;}
.y92{bottom:297.390000px;}
.y7e{bottom:298.830000px;}
.y49{bottom:300.630000px;}
.ya7{bottom:300.810000px;}
.y1c9{bottom:307.290000px;}
.y38{bottom:309.270000px;}
.yf2{bottom:309.450000px;}
.y1fd{bottom:311.610000px;}
.yd3{bottom:311.790000px;}
.y91{bottom:314.670000px;}
.y172{bottom:315.945000px;}
.y19b{bottom:317.010000px;}
.y7d{bottom:318.810000px;}
.ya6{bottom:320.250000px;}
.y48{bottom:320.610000px;}
.y1c8{bottom:321.150000px;}
.y1fc{bottom:325.470000px;}
.yf1{bottom:326.730000px;}
.y37{bottom:329.070000px;}
.yd2{bottom:331.770000px;}
.y90{bottom:331.950000px;}
.y1c7{bottom:335.010000px;}
.y19a{bottom:336.810000px;}
.y189{bottom:338.250000px;}
.y7c{bottom:338.610000px;}
.y1fb{bottom:339.150000px;}
.y47{bottom:340.410000px;}
.ya5{bottom:341.670000px;}
.y4{bottom:342.225000px;}
.yf0{bottom:344.010000px;}
.y36{bottom:348.870000px;}
.y8f{bottom:349.050000px;}
.yd1{bottom:351.570000px;}
.y1fa{bottom:353.010000px;}
.y1c6{bottom:354.810000px;}
.y16d{bottom:354.825000px;}
.y199{bottom:356.610000px;}
.y188{bottom:358.050000px;}
.y7b{bottom:358.410000px;}
.y46{bottom:360.210000px;}
.yef{bottom:361.290000px;}
.ya4{bottom:363.630000px;}
.y8e{bottom:366.330000px;}
.y1c5{bottom:368.490000px;}
.y35{bottom:368.670000px;}
.yd0{bottom:371.370000px;}
.y1f9{bottom:372.810000px;}
.y198{bottom:376.635000px;}
.y7a{bottom:378.255000px;}
.yee{bottom:378.435000px;}
.ya3{bottom:378.615000px;}
.y45{bottom:380.055000px;}
.y1c4{bottom:382.395000px;}
.y8d{bottom:383.295000px;}
.y1f8{bottom:386.715000px;}
.y34{bottom:388.695000px;}
.ycf{bottom:391.215000px;}
.y16a{bottom:394.995000px;}
.yed{bottom:395.715000px;}
.y197{bottom:396.435000px;}
.y79{bottom:398.055000px;}
.y44{bottom:399.855000px;}
.y1f7{bottom:400.395000px;}
.y8c{bottom:400.575000px;}
.y1c3{bottom:402.195000px;}
.y33{bottom:406.695000px;}
.yce{bottom:411.015000px;}
.yec{bottom:412.995000px;}
.y1f6{bottom:414.255000px;}
.y1c2{bottom:416.055000px;}
.y196{bottom:416.235000px;}
.y8b{bottom:417.855000px;}
.y78{bottom:418.035000px;}
.y32{bottom:419.655000px;}
.y43{bottom:419.835000px;}
.y1f5{bottom:428.115000px;}
.y1c1{bottom:429.735000px;}
.yeb{bottom:430.275000px;}
.ycd{bottom:430.635000px;}
.y168{bottom:434.055000px;}
.y195{bottom:436.035000px;}
.y8a{bottom:437.475000px;}
.y77{bottom:437.835000px;}
.y31{bottom:441.975000px;}
.yea{bottom:447.555000px;}
.y1f4{bottom:447.915000px;}
.y1c0{bottom:449.535000px;}
.ycc{bottom:450.435000px;}
.y30{bottom:453.855000px;}
.y194{bottom:455.835000px;}
.y76{bottom:457.635000px;}
.y167{bottom:460.515000px;}
.y1f3{bottom:461.595000px;}
.y1bf{bottom:463.395000px;}
.ye9{bottom:464.655000px;}
.y2f{bottom:465.195000px;}
.ycb{bottom:470.235000px;}
.y1f2{bottom:475.455000px;}
.y193{bottom:475.815000px;}
.y1be{bottom:477.255000px;}
.y75{bottom:477.435000px;}
.y2e{bottom:479.415000px;}
.y166{bottom:480.495000px;}
.ye8{bottom:481.935000px;}
.y2d{bottom:489.315000px;}
.y1bd{bottom:490.935000px;}
.y192{bottom:495.255000px;}
.yca{bottom:496.335000px;}
.y74{bottom:497.235000px;}
.ye7{bottom:499.215000px;}
.y165{bottom:500.295000px;}
.y2c{bottom:504.795000px;}
.y1f1{bottom:509.115000px;}
.y146{bottom:513.255000px;}
.y191{bottom:515.415000px;}
.y100{bottom:516.135000px;}
.ye6{bottom:516.495000px;}
.y73{bottom:517.215000px;}
.y164{bottom:517.755000px;}
.y1bc{bottom:518.655000px;}
.y2b{bottom:520.455000px;}
.y126{bottom:522.795000px;}
.yc9{bottom:527.655000px;}
.y190{bottom:532.875000px;}
.y145{bottom:533.055000px;}
.ye5{bottom:533.775000px;}
.y163{bottom:534.855000px;}
.y2a{bottom:535.935000px;}
.y1f0{bottom:536.655000px;}
.y72{bottom:537.015000px;}
.y1bb{bottom:538.455000px;}
.y125{bottom:541.335000px;}
.yc8{bottom:544.935000px;}
.y18f{bottom:550.155000px;}
.y1ef{bottom:550.515000px;}
.ye4{bottom:550.695000px;}
.yff{bottom:551.055000px;}
.y29{bottom:551.415000px;}
.y162{bottom:552.135000px;}
.y144{bottom:552.855000px;}
.y124{bottom:553.035000px;}
.y71{bottom:556.815000px;}
.y1ba{bottom:558.255000px;}
.yc7{bottom:562.215000px;}
.y1ee{bottom:564.195000px;}
.y28{bottom:566.895000px;}
.y18e{bottom:567.435000px;}
.y161{bottom:569.415000px;}
.y1b9{bottom:571.935000px;}
.y143{bottom:572.655000px;}
.ye3{bottom:573.195000px;}
.y70{bottom:576.615000px;}
.y1ed{bottom:578.055000px;}
.yc6{bottom:579.495000px;}
.y27{bottom:582.555000px;}
.y18d{bottom:584.535000px;}
.y160{bottom:586.695000px;}
.y120{bottom:588.855000px;}
.y1b8{bottom:591.735000px;}
.y1ec{bottom:591.915000px;}
.y142{bottom:592.455000px;}
.y6f{bottom:596.415000px;}
.yc5{bottom:596.595000px;}
.ye2{bottom:597.855000px;}
.y26{bottom:598.035000px;}
.y18c{bottom:601.455000px;}
.y15f{bottom:603.975000px;}
.y1b7{bottom:605.595000px;}
.y1eb{bottom:611.745000px;}
.y141{bottom:612.465000px;}
.ye1{bottom:612.825000px;}
.y25{bottom:613.545000px;}
.yc4{bottom:613.905000px;}
.y6e{bottom:616.425000px;}
.y18b{bottom:618.765000px;}
.y1b6{bottom:619.485000px;}
.y15e{bottom:621.105000px;}
.y1ea{bottom:625.425000px;}
.y11c{bottom:627.225000px;}
.y24{bottom:629.025000px;}
.yc3{bottom:631.185000px;}
.y140{bottom:632.265000px;}
.y1b5{bottom:633.165000px;}
.y18a{bottom:636.045000px;}
.y6d{bottom:636.225000px;}
.y15d{bottom:638.385000px;}
.y1e9{bottom:639.285000px;}
.y23{bottom:644.685000px;}
.yc2{bottom:648.465000px;}
.y13f{bottom:652.065000px;}
.y1b4{bottom:652.965000px;}
.y1e8{bottom:653.145000px;}
.y15c{bottom:655.665000px;}
.y6c{bottom:656.025000px;}
.y22{bottom:660.165000px;}
.y21f{bottom:664.485000px;}
.y117{bottom:665.025000px;}
.yc1{bottom:665.745000px;}
.y1b3{bottom:666.825000px;}
.y13e{bottom:671.865000px;}
.y15b{bottom:672.945000px;}
.y21{bottom:675.645000px;}
.y6b{bottom:675.825000px;}
.y1b2{bottom:680.685000px;}
.yc0{bottom:683.025000px;}
.y21e{bottom:685.905000px;}
.y15a{bottom:690.225000px;}
.y20{bottom:691.125000px;}
.y13d{bottom:691.665000px;}
.y6a{bottom:695.625000px;}
.ybf{bottom:700.125000px;}
.y1b1{bottom:700.485000px;}
.y114{bottom:701.565000px;}
.y1f{bottom:706.785000px;}
.y21d{bottom:707.145000px;}
.y159{bottom:707.505000px;}
.y13c{bottom:711.645000px;}
.y1b0{bottom:714.165000px;}
.y69{bottom:715.605000px;}
.ybe{bottom:717.405000px;}
.y1e{bottom:722.265000px;}
.y158{bottom:724.605000px;}
.y21c{bottom:724.965000px;}
.y1af{bottom:728.025000px;}
.y13b{bottom:731.445000px;}
.ybd{bottom:734.685000px;}
.y68{bottom:735.405000px;}
.y157{bottom:741.885000px;}
.y21b{bottom:742.785000px;}
.y112{bottom:744.045000px;}
.y1d{bottom:746.565000px;}
.y1ae{bottom:747.645000px;}
.y13a{bottom:751.245000px;}
.ybc{bottom:751.965000px;}
.y67{bottom:755.205000px;}
.y1e7{bottom:755.565000px;}
.y156{bottom:759.165000px;}
.y21a{bottom:760.605000px;}
.y1ad{bottom:767.805000px;}
.ybb{bottom:769.245000px;}
.y1c{bottom:770.325000px;}
.y110{bottom:770.865000px;}
.y139{bottom:771.045000px;}
.y66{bottom:775.005000px;}
.y1e6{bottom:775.365000px;}
.y155{bottom:776.445000px;}
.y219{bottom:778.425000px;}
.yba{bottom:786.525000px;}
.y1b{bottom:787.245000px;}
.y1e5{bottom:789.225000px;}
.y138{bottom:790.845000px;}
.y1ac{bottom:791.745000px;}
.y154{bottom:793.725000px;}
.y65{bottom:794.805000px;}
.y218{bottom:796.245000px;}
.y1a{bottom:796.965000px;}
.y10c{bottom:797.685000px;}
.y1e4{bottom:803.085000px;}
.yb9{bottom:803.625000px;}
.y19{bottom:809.205000px;}
.y137{bottom:810.825000px;}
.y153{bottom:811.005000px;}
.y217{bottom:814.245000px;}
.y64{bottom:814.785000px;}
.y1e3{bottom:816.765000px;}
.yb8{bottom:820.905000px;}
.y18{bottom:822.885000px;}
.y152{bottom:828.105000px;}
.y10a{bottom:830.085000px;}
.y136{bottom:830.625000px;}
.y216{bottom:832.065000px;}
.y63{bottom:834.585000px;}
.y17{bottom:836.565000px;}
.yb7{bottom:838.185000px;}
.y151{bottom:845.430000px;}
.y16{bottom:845.970000px;}
.y215{bottom:849.930000px;}
.y135{bottom:850.470000px;}
.y1ab{bottom:854.070000px;}
.y62{bottom:854.430000px;}
.yb6{bottom:855.510000px;}
.y109{bottom:856.590000px;}
.y15{bottom:857.670000px;}
.y150{bottom:862.710000px;}
.y1e2{bottom:864.330000px;}
.y214{bottom:867.750000px;}
.y134{bottom:870.270000px;}
.yb5{bottom:872.790000px;}
.y61{bottom:874.230000px;}
.y108{bottom:877.290000px;}
.y1e1{bottom:878.010000px;}
.y14{bottom:878.910000px;}
.y14f{bottom:879.990000px;}
.y213{bottom:885.570000px;}
.yb4{bottom:889.890000px;}
.y133{bottom:890.070000px;}
.ydf{bottom:893.670000px;}
.y60{bottom:894.030000px;}
.y13{bottom:896.550000px;}
.y14e{bottom:897.270000px;}
.y107{bottom:897.810000px;}
.y212{bottom:903.570000px;}
.yb3{bottom:907.170000px;}
.y132{bottom:910.050000px;}
.y1e0{bottom:911.670000px;}
.y5f{bottom:914.010000px;}
.y14d{bottom:914.550000px;}
.y106{bottom:914.910000px;}
.y211{bottom:923.550000px;}
.yb2{bottom:924.450000px;}
.y1df{bottom:925.530000px;}
.y131{bottom:929.850000px;}
.y12{bottom:931.110000px;}
.y14c{bottom:931.650000px;}
.y105{bottom:932.190000px;}
.y5e{bottom:933.810000px;}
.y1de{bottom:939.210000px;}
.yb1{bottom:941.730000px;}
.y210{bottom:943.530000px;}
.y14b{bottom:948.930000px;}
.y104{bottom:949.470000px;}
.y130{bottom:949.650000px;}
.y1dd{bottom:953.070000px;}
.y5d{bottom:953.610000px;}
.yb0{bottom:959.010000px;}
.y20f{bottom:963.510000px;}
.y11{bottom:965.670000px;}
.y14a{bottom:965.850000px;}
.y103{bottom:966.750000px;}
.y12f{bottom:969.450000px;}
.y1dc{bottom:972.870000px;}
.y1aa{bottom:973.050000px;}
.y5c{bottom:973.410000px;}
.yaf{bottom:976.290000px;}
.y20e{bottom:983.670000px;}
.y102{bottom:984.030000px;}
.y1db{bottom:986.730000px;}
.y12e{bottom:989.250000px;}
.y149{bottom:991.770000px;}
.y1a9{bottom:992.850000px;}
.yae{bottom:993.030000px;}
.y5b{bottom:993.210000px;}
.y10{bottom:998.070000px;}
.ya2{bottom:999.510000px;}
.y1da{bottom:1000.410000px;}
.y101{bottom:1001.310000px;}
.y20d{bottom:1003.650000px;}
.y148{bottom:1009.050000px;}
.y12d{bottom:1009.230000px;}
.yf{bottom:1012.470000px;}
.yad{bottom:1012.830000px;}
.y5a{bottom:1013.190000px;}
.y1d9{bottom:1014.270000px;}
.ya1{bottom:1018.410000px;}
.y53{bottom:1020.930000px;}
.y6{bottom:1021.290000px;}
.y20c{bottom:1023.630000px;}
.ye{bottom:1026.150000px;}
.y1d8{bottom:1028.130000px;}
.y12c{bottom:1029.030000px;}
.y59{bottom:1032.990000px;}
.ya0{bottom:1035.690000px;}
.yd{bottom:1041.810000px;}
.y12b{bottom:1048.470000px;}
.y147{bottom:1048.830000px;}
.y1a8{bottom:1052.430000px;}
.y58{bottom:1052.790000px;}
.y9f{bottom:1052.970000px;}
.y1d7{bottom:1055.670000px;}
.yc{bottom:1057.830000px;}
.ye0{bottom:1062.150000px;}
.y12a{bottom:1063.770000px;}
.yb{bottom:1081.080000px;}
.y9e{bottom:1088.640000px;}
.ya{bottom:1106.640000px;}
.y56{bottom:1115.100000px;}
.y9d{bottom:1123.920000px;}
.h2c{height:12.335625px;}
.h20{height:18.140625px;}
.h23{height:19.462500px;}
.h2d{height:19.605000px;}
.h1a{height:21.225000px;}
.hf{height:23.319141px;}
.h25{height:26.100000px;}
.h11{height:29.678906px;}
.h24{height:31.680000px;}
.h10{height:32.091680px;}
.h28{height:33.683203px;}
.h2b{height:35.085000px;}
.h14{height:35.332031px;}
.h27{height:35.820000px;}
.h29{height:37.080000px;}
.h2a{height:37.650000px;}
.h2f{height:37.705078px;}
.h31{height:38.100586px;}
.h32{height:38.145000px;}
.h2e{height:38.325000px;}
.h33{height:39.225000px;}
.h34{height:39.405000px;}
.h30{height:39.441000px;}
.h17{height:40.985156px;}
.h19{height:41.726953px;}
.h26{height:41.760000px;}
.h15{height:42.086250px;}
.hb{height:47.321367px;}
.h1{height:47.344922px;}
.hd{height:48.616875px;}
.h35{height:50.558906px;}
.h3{height:52.998047px;}
.h13{height:54.421875px;}
.h37{height:55.503491px;}
.h5{height:56.084062px;}
.ha{height:58.651172px;}
.h1b{height:59.439023px;}
.h16{height:60.226875px;}
.h18{height:65.010937px;}
.he{height:65.518594px;}
.h1c{height:65.884219px;}
.h1d{height:66.757500px;}
.h1e{height:70.664062px;}
.h8{height:71.324297px;}
.h22{height:72.562500px;}
.h21{height:82.676953px;}
.h4{height:98.661000px;}
.h36{height:102.784922px;}
.h12{height:105.996094px;}
.h6{height:106.050000px;}
.h2{height:108.843750px;}
.h1f{height:118.008984px;}
.hc{height:121.179375px;}
.h9{height:141.257812px;}
.h7{height:142.038984px;}
.h0{height:1188.000000px;}
.w3{width:45.574500px;}
.w2{width:82.965000px;}
.w5{width:104.601000px;}
.w4{width:114.829500px;}
.w8{width:127.654500px;}
.w9{width:172.995000px;}
.w6{width:201.810000px;}
.wb{width:219.975000px;}
.wa{width:244.470000px;}
.w7{width:298.635000px;}
.w1{width:760.635000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x1e{left:8.098500px;}
.x4{left:10.798500px;}
.x18{left:14.400000px;}
.x26{left:74.520000px;}
.x1{left:81.000000px;}
.x3{left:82.081500px;}
.xb{left:96.696000px;}
.x14{left:108.036000px;}
.x1f{left:126.586500px;}
.x28{left:158.250000px;}
.x13{left:162.030000px;}
.x11{left:185.790000px;}
.x23{left:208.665000px;}
.xf{left:213.510000px;}
.x20{left:241.425000px;}
.xd{left:244.110000px;}
.xe{left:276.870000px;}
.xc{left:290.370000px;}
.x10{left:321.735000px;}
.x6{left:336.135000px;}
.x21{left:346.035000px;}
.x8{left:349.455000px;}
.x1b{left:360.615000px;}
.x5{left:369.795000px;}
.x24{left:381.675000px;}
.x9{left:394.275000px;}
.x19{left:405.615000px;}
.x12{left:422.895000px;}
.x7{left:423.975000px;}
.x1a{left:451.155000px;}
.x2{left:452.235000px;}
.xa{left:462.495000px;}
.x27{left:482.475000px;}
.x15{left:488.955000px;}
.x16{left:515.985000px;}
.x22{left:547.860000px;}
.x25{left:626.160000px;}
.x17{left:761.730000px;}
.x1c{left:837.150000px;}
.x1d{left:843.810000px;}
@media print{
.v5{vertical-align:-61.440000pt;}
.v4{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:13.440000pt;}
.v1{vertical-align:16.000000pt;}
.v6{vertical-align:18.560000pt;}
.v3{vertical-align:24.320000pt;}
.v7{vertical-align:49.280000pt;}
.ls18{letter-spacing:-0.837333pt;}
.lsd{letter-spacing:-0.688000pt;}
.lsc{letter-spacing:-0.480000pt;}
.ls15{letter-spacing:-0.432533pt;}
.lse{letter-spacing:-0.400533pt;}
.ls8{letter-spacing:-0.320000pt;}
.ls13{letter-spacing:-0.047360pt;}
.ls17{letter-spacing:-0.040320pt;}
.ls6{letter-spacing:0.000000pt;}
.ls16{letter-spacing:0.008960pt;}
.ls12{letter-spacing:0.016000pt;}
.lsb{letter-spacing:0.160000pt;}
.lsf{letter-spacing:0.231040pt;}
.ls19{letter-spacing:0.257280pt;}
.lsa{letter-spacing:0.265600pt;}
.ls1{letter-spacing:0.280533pt;}
.ls2{letter-spacing:0.320000pt;}
.ls7{letter-spacing:0.438933pt;}
.ls11{letter-spacing:0.456533pt;}
.ls5{letter-spacing:0.640000pt;}
.ls9{letter-spacing:6.560000pt;}
.ls0{letter-spacing:6.720000pt;}
.ls1a{letter-spacing:8.480000pt;}
.ls14{letter-spacing:16.160000pt;}
.ls4{letter-spacing:59.520000pt;}
.ls3{letter-spacing:60.160000pt;}
.ls10{letter-spacing:82.826667pt;}
.ws3{word-spacing:-32.806400pt;}
.ws9{word-spacing:-14.720000pt;}
.wse{word-spacing:-13.736533pt;}
.wsb{word-spacing:-13.600000pt;}
.wsc{word-spacing:-13.545600pt;}
.ws8{word-spacing:-13.280000pt;}
.wsf{word-spacing:-13.232640pt;}
.wsd{word-spacing:-12.960000pt;}
.ws2{word-spacing:-12.320000pt;}
.ws10{word-spacing:-12.000000pt;}
.ws7{word-spacing:-11.040000pt;}
.ws16{word-spacing:-10.977280pt;}
.ws6{word-spacing:-10.720000pt;}
.ws14{word-spacing:-10.679680pt;}
.ws4{word-spacing:-10.400000pt;}
.ws13{word-spacing:-10.319467pt;}
.ws15{word-spacing:-9.882667pt;}
.ws1{word-spacing:-9.718933pt;}
.ws0{word-spacing:-9.280000pt;}
.ws12{word-spacing:-6.728960pt;}
.ws5{word-spacing:-6.720000pt;}
.ws11{word-spacing:-6.287467pt;}
.wsa{word-spacing:0.000000pt;}
._35{margin-left:-3.840000pt;}
._4{margin-left:-2.064853pt;}
._0{margin-left:-0.900480pt;}
._2{width:1.594027pt;}
._8{width:3.024000pt;}
._9{width:4.692053pt;}
._a{width:5.616000pt;}
._1{width:6.517760pt;}
._3{width:8.163200pt;}
._b{width:9.889280pt;}
._13{width:10.865067pt;}
._f{width:11.898880pt;}
._44{width:13.807360pt;}
._e{width:14.967680pt;}
._d{width:15.861120pt;}
._c{width:16.752000pt;}
._14{width:17.801387pt;}
._11{width:18.804480pt;}
._18{width:19.753387pt;}
._2a{width:21.475413pt;}
._19{width:22.462080pt;}
._1d{width:23.425920pt;}
._12{width:24.328960pt;}
._17{width:25.709653pt;}
._15{width:26.719360pt;}
._1b{width:27.781760pt;}
._1c{width:29.018027pt;}
._16{width:30.597120pt;}
._21{width:31.651840pt;}
._28{width:32.841173pt;}
._2c{width:34.084267pt;}
._10{width:35.719040pt;}
._2b{width:37.052373pt;}
._32{width:38.179200pt;}
._1e{width:39.574400pt;}
._25{width:40.469760pt;}
._24{width:41.380480pt;}
._2d{width:42.920960pt;}
._1a{width:44.567680pt;}
._30{width:45.470720pt;}
._39{width:47.511040pt;}
._3a{width:48.418133pt;}
._2e{width:49.401600pt;}
._2f{width:51.306240pt;}
._36{width:52.429440pt;}
._31{width:54.023040pt;}
._33{width:55.244800pt;}
._7{width:58.535467pt;}
._29{width:59.449173pt;}
._42{width:60.503680pt;}
._20{width:62.681173pt;}
._1f{width:64.009600pt;}
._27{width:65.650773pt;}
._26{width:67.090560pt;}
._3c{width:70.623360pt;}
._22{width:78.462720pt;}
._23{width:79.570773pt;}
._38{width:82.973440pt;}
._37{width:84.301440pt;}
._34{width:105.124480pt;}
._3e{width:123.521920pt;}
._3f{width:124.987093pt;}
._40{width:141.418240pt;}
._43{width:191.802240pt;}
._41{width:214.614400pt;}
._3d{width:215.659947pt;}
._3b{width:228.464640pt;}
._45{width:233.438720pt;}
._5{width:259.466667pt;}
._46{width:275.066027pt;}
._6{width:1075.520000pt;}
.fs11{font-size:10.880000pt;}
.fs10{font-size:16.000000pt;}
.fsc{font-size:21.120000pt;}
.fs2{font-size:24.320000pt;}
.fsd{font-size:26.880000pt;}
.fse{font-size:32.000000pt;}
.fsb{font-size:34.560000pt;}
.fs1{font-size:37.120000pt;}
.fs0{font-size:42.880000pt;}
.fs4{font-size:48.000000pt;}
.fs8{font-size:53.120000pt;}
.fs5{font-size:58.880000pt;}
.fsf{font-size:64.000000pt;}
.fs7{font-size:74.880000pt;}
.fs3{font-size:96.000000pt;}
.fsa{font-size:106.880000pt;}
.fs9{font-size:128.000000pt;}
.fs6{font-size:149.120000pt;}
.y0{bottom:0.000000pt;}
.y55{bottom:3.680000pt;}
.y9{bottom:3.840000pt;}
.y10f{bottom:4.320000pt;}
.y169{bottom:5.440000pt;}
.y174{bottom:5.746667pt;}
.y10b{bottom:5.760000pt;}
.y176{bottom:6.066667pt;}
.y16c{bottom:6.080000pt;}
.y17f{bottom:6.226667pt;}
.y11b{bottom:6.240000pt;}
.y16f{bottom:6.386667pt;}
.y17a{bottom:6.546667pt;}
.y171{bottom:6.706667pt;}
.y11f{bottom:6.720000pt;}
.y123{bottom:7.040000pt;}
.y111{bottom:8.800000pt;}
.y113{bottom:8.960000pt;}
.y10d{bottom:11.360000pt;}
.y119{bottom:12.480000pt;}
.y54{bottom:12.800000pt;}
.y118{bottom:13.280000pt;}
.y17c{bottom:13.746667pt;}
.y11d{bottom:13.760000pt;}
.y121{bottom:14.080000pt;}
.y178{bottom:14.226667pt;}
.y115{bottom:15.840000pt;}
.y10e{bottom:18.400000pt;}
.y3{bottom:19.840000pt;}
.y57{bottom:20.160000pt;}
.y11a{bottom:20.320000pt;}
.y11e{bottom:20.960000pt;}
.y122{bottom:21.146667pt;}
.y173{bottom:21.586667pt;}
.y175{bottom:21.906667pt;}
.y16b{bottom:22.080000pt;}
.y17e{bottom:22.226667pt;}
.y16e{bottom:22.266667pt;}
.y179{bottom:22.386667pt;}
.y180{bottom:22.546667pt;}
.y170{bottom:22.586667pt;}
.y116{bottom:22.880000pt;}
.y8{bottom:27.360000pt;}
.y2{bottom:32.960000pt;}
.y1{bottom:44.160000pt;}
.y7{bottom:58.906667pt;}
.y129{bottom:68.640000pt;}
.y1a7{bottom:70.240000pt;}
.y89{bottom:71.680000pt;}
.yac{bottom:73.440000pt;}
.y5{bottom:73.786667pt;}
.y128{bottom:73.920000pt;}
.yfe{bottom:75.680000pt;}
.y1d6{bottom:80.160000pt;}
.y9c{bottom:80.320000pt;}
.y186{bottom:80.800000pt;}
.yde{bottom:83.200000pt;}
.y20b{bottom:83.840000pt;}
.y127{bottom:87.040000pt;}
.y1a6{bottom:87.840000pt;}
.y88{bottom:89.280000pt;}
.yab{bottom:91.040000pt;}
.y1d5{bottom:92.480000pt;}
.y42{bottom:95.680000pt;}
.y20a{bottom:96.160000pt;}
.y185{bottom:98.400000pt;}
.ydd{bottom:100.800000pt;}
.y1d4{bottom:104.640000pt;}
.y1a5{bottom:105.440000pt;}
.yfd{bottom:106.400000pt;}
.y87{bottom:107.040000pt;}
.y209{bottom:108.480000pt;}
.y52{bottom:108.640000pt;}
.y9b{bottom:110.720000pt;}
.y41{bottom:114.400000pt;}
.y184{bottom:115.680000pt;}
.y187{bottom:116.000000pt;}
.ydc{bottom:118.560000pt;}
.y208{bottom:120.640000pt;}
.yfc{bottom:121.760000pt;}
.y1d3{bottom:122.240000pt;}
.y1a4{bottom:123.040000pt;}
.y86{bottom:124.640000pt;}
.y51{bottom:126.240000pt;}
.y40{bottom:132.032000pt;}
.y183{bottom:133.786667pt;}
.y1d2{bottom:134.586667pt;}
.ydb{bottom:136.186667pt;}
.yfb{bottom:137.146667pt;}
.y207{bottom:138.266667pt;}
.y1a3{bottom:140.666667pt;}
.y9a{bottom:141.626667pt;}
.y85{bottom:142.266667pt;}
.y50{bottom:143.866667pt;}
.y1d1{bottom:146.906667pt;}
.y3f{bottom:149.626667pt;}
.y182{bottom:150.266667pt;}
.y206{bottom:150.586667pt;}
.yfa{bottom:152.346667pt;}
.yda{bottom:153.786667pt;}
.y99{bottom:156.986667pt;}
.y1a2{bottom:158.426667pt;}
.y1d0{bottom:159.066667pt;}
.y84{bottom:159.866667pt;}
.y4f{bottom:161.466667pt;}
.yaa{bottom:161.626667pt;}
.y205{bottom:162.906667pt;}
.y181{bottom:164.346667pt;}
.y3e{bottom:167.386667pt;}
.yf9{bottom:167.706667pt;}
.yd9{bottom:171.386667pt;}
.y98{bottom:172.346667pt;}
.y17d{bottom:174.760000pt;}
.y1a1{bottom:176.026667pt;}
.y1cf{bottom:176.666667pt;}
.y83{bottom:177.466667pt;}
.y4e{bottom:179.066667pt;}
.ya9{bottom:179.226667pt;}
.y204{bottom:180.506667pt;}
.yf8{bottom:183.066667pt;}
.y3d{bottom:184.986667pt;}
.y97{bottom:187.706667pt;}
.yd8{bottom:188.986667pt;}
.y203{bottom:192.666667pt;}
.y1a0{bottom:193.626667pt;}
.y82{bottom:195.226667pt;}
.y4d{bottom:196.826667pt;}
.yf7{bottom:198.426667pt;}
.y1ce{bottom:201.146667pt;}
.y3c{bottom:202.586667pt;}
.y96{bottom:203.066667pt;}
.y202{bottom:204.986667pt;}
.yd7{bottom:206.746667pt;}
.y17b{bottom:210.440000pt;}
.y19f{bottom:210.906667pt;}
.y81{bottom:212.826667pt;}
.y1cd{bottom:213.466667pt;}
.yf6{bottom:213.786667pt;}
.y4c{bottom:214.426667pt;}
.y95{bottom:218.266667pt;}
.y3b{bottom:220.186667pt;}
.y201{bottom:222.586667pt;}
.yd6{bottom:224.346667pt;}
.y19e{bottom:228.506667pt;}
.yf5{bottom:229.146667pt;}
.y80{bottom:230.426667pt;}
.y1cc{bottom:231.066667pt;}
.y4b{bottom:232.026667pt;}
.y94{bottom:233.626667pt;}
.y200{bottom:234.906667pt;}
.y3a{bottom:238.426667pt;}
.yd5{bottom:241.946667pt;}
.y1cb{bottom:243.386667pt;}
.yf4{bottom:244.346667pt;}
.y177{bottom:245.160000pt;}
.y19d{bottom:246.586667pt;}
.y1ff{bottom:247.066667pt;}
.y7f{bottom:248.026667pt;}
.y93{bottom:248.986667pt;}
.y4a{bottom:249.626667pt;}
.ya8{bottom:249.786667pt;}
.y1ca{bottom:255.546667pt;}
.y39{bottom:257.306667pt;}
.y1fe{bottom:259.386667pt;}
.yd4{bottom:259.546667pt;}
.yf3{bottom:259.706667pt;}
.y19c{bottom:264.186667pt;}
.y92{bottom:264.346667pt;}
.y7e{bottom:265.626667pt;}
.y49{bottom:267.226667pt;}
.ya7{bottom:267.386667pt;}
.y1c9{bottom:273.146667pt;}
.y38{bottom:274.906667pt;}
.yf2{bottom:275.066667pt;}
.y1fd{bottom:276.986667pt;}
.yd3{bottom:277.146667pt;}
.y91{bottom:279.706667pt;}
.y172{bottom:280.840000pt;}
.y19b{bottom:281.786667pt;}
.y7d{bottom:283.386667pt;}
.ya6{bottom:284.666667pt;}
.y48{bottom:284.986667pt;}
.y1c8{bottom:285.466667pt;}
.y1fc{bottom:289.306667pt;}
.yf1{bottom:290.426667pt;}
.y37{bottom:292.506667pt;}
.yd2{bottom:294.906667pt;}
.y90{bottom:295.066667pt;}
.y1c7{bottom:297.786667pt;}
.y19a{bottom:299.386667pt;}
.y189{bottom:300.666667pt;}
.y7c{bottom:300.986667pt;}
.y1fb{bottom:301.466667pt;}
.y47{bottom:302.586667pt;}
.ya5{bottom:303.706667pt;}
.y4{bottom:304.200000pt;}
.yf0{bottom:305.786667pt;}
.y36{bottom:310.106667pt;}
.y8f{bottom:310.266667pt;}
.yd1{bottom:312.506667pt;}
.y1fa{bottom:313.786667pt;}
.y1c6{bottom:315.386667pt;}
.y16d{bottom:315.400000pt;}
.y199{bottom:316.986667pt;}
.y188{bottom:318.266667pt;}
.y7b{bottom:318.586667pt;}
.y46{bottom:320.186667pt;}
.yef{bottom:321.146667pt;}
.ya4{bottom:323.226667pt;}
.y8e{bottom:325.626667pt;}
.y1c5{bottom:327.546667pt;}
.y35{bottom:327.706667pt;}
.yd0{bottom:330.106667pt;}
.y1f9{bottom:331.386667pt;}
.y198{bottom:334.786667pt;}
.y7a{bottom:336.226667pt;}
.yee{bottom:336.386667pt;}
.ya3{bottom:336.546667pt;}
.y45{bottom:337.826667pt;}
.y1c4{bottom:339.906667pt;}
.y8d{bottom:340.706667pt;}
.y1f8{bottom:343.746667pt;}
.y34{bottom:345.506667pt;}
.ycf{bottom:347.746667pt;}
.y16a{bottom:351.106667pt;}
.yed{bottom:351.746667pt;}
.y197{bottom:352.386667pt;}
.y79{bottom:353.826667pt;}
.y44{bottom:355.426667pt;}
.y1f7{bottom:355.906667pt;}
.y8c{bottom:356.066667pt;}
.y1c3{bottom:357.506667pt;}
.y33{bottom:361.506667pt;}
.yce{bottom:365.346667pt;}
.yec{bottom:367.106667pt;}
.y1f6{bottom:368.226667pt;}
.y1c2{bottom:369.826667pt;}
.y196{bottom:369.986667pt;}
.y8b{bottom:371.426667pt;}
.y78{bottom:371.586667pt;}
.y32{bottom:373.026667pt;}
.y43{bottom:373.186667pt;}
.y1f5{bottom:380.546667pt;}
.y1c1{bottom:381.986667pt;}
.yeb{bottom:382.466667pt;}
.ycd{bottom:382.786667pt;}
.y168{bottom:385.826667pt;}
.y195{bottom:387.586667pt;}
.y8a{bottom:388.866667pt;}
.y77{bottom:389.186667pt;}
.y31{bottom:392.866667pt;}
.yea{bottom:397.826667pt;}
.y1f4{bottom:398.146667pt;}
.y1c0{bottom:399.586667pt;}
.ycc{bottom:400.386667pt;}
.y30{bottom:403.426667pt;}
.y194{bottom:405.186667pt;}
.y76{bottom:406.786667pt;}
.y167{bottom:409.346667pt;}
.y1f3{bottom:410.306667pt;}
.y1bf{bottom:411.906667pt;}
.ye9{bottom:413.026667pt;}
.y2f{bottom:413.506667pt;}
.ycb{bottom:417.986667pt;}
.y1f2{bottom:422.626667pt;}
.y193{bottom:422.946667pt;}
.y1be{bottom:424.226667pt;}
.y75{bottom:424.386667pt;}
.y2e{bottom:426.146667pt;}
.y166{bottom:427.106667pt;}
.ye8{bottom:428.386667pt;}
.y2d{bottom:434.946667pt;}
.y1bd{bottom:436.386667pt;}
.y192{bottom:440.226667pt;}
.yca{bottom:441.186667pt;}
.y74{bottom:441.986667pt;}
.ye7{bottom:443.746667pt;}
.y165{bottom:444.706667pt;}
.y2c{bottom:448.706667pt;}
.y1f1{bottom:452.546667pt;}
.y146{bottom:456.226667pt;}
.y191{bottom:458.146667pt;}
.y100{bottom:458.786667pt;}
.ye6{bottom:459.106667pt;}
.y73{bottom:459.746667pt;}
.y164{bottom:460.226667pt;}
.y1bc{bottom:461.026667pt;}
.y2b{bottom:462.626667pt;}
.y126{bottom:464.706667pt;}
.yc9{bottom:469.026667pt;}
.y190{bottom:473.666667pt;}
.y145{bottom:473.826667pt;}
.ye5{bottom:474.466667pt;}
.y163{bottom:475.426667pt;}
.y2a{bottom:476.386667pt;}
.y1f0{bottom:477.026667pt;}
.y72{bottom:477.346667pt;}
.y1bb{bottom:478.626667pt;}
.y125{bottom:481.186667pt;}
.yc8{bottom:484.386667pt;}
.y18f{bottom:489.026667pt;}
.y1ef{bottom:489.346667pt;}
.ye4{bottom:489.506667pt;}
.yff{bottom:489.826667pt;}
.y29{bottom:490.146667pt;}
.y162{bottom:490.786667pt;}
.y144{bottom:491.426667pt;}
.y124{bottom:491.586667pt;}
.y71{bottom:494.946667pt;}
.y1ba{bottom:496.226667pt;}
.yc7{bottom:499.746667pt;}
.y1ee{bottom:501.506667pt;}
.y28{bottom:503.906667pt;}
.y18e{bottom:504.386667pt;}
.y161{bottom:506.146667pt;}
.y1b9{bottom:508.386667pt;}
.y143{bottom:509.026667pt;}
.ye3{bottom:509.506667pt;}
.y70{bottom:512.546667pt;}
.y1ed{bottom:513.826667pt;}
.yc6{bottom:515.106667pt;}
.y27{bottom:517.826667pt;}
.y18d{bottom:519.586667pt;}
.y160{bottom:521.506667pt;}
.y120{bottom:523.426667pt;}
.y1b8{bottom:525.986667pt;}
.y1ec{bottom:526.146667pt;}
.y142{bottom:526.626667pt;}
.y6f{bottom:530.146667pt;}
.yc5{bottom:530.306667pt;}
.ye2{bottom:531.426667pt;}
.y26{bottom:531.586667pt;}
.y18c{bottom:534.626667pt;}
.y15f{bottom:536.866667pt;}
.y1b7{bottom:538.306667pt;}
.y1eb{bottom:543.773333pt;}
.y141{bottom:544.413333pt;}
.ye1{bottom:544.733333pt;}
.y25{bottom:545.373333pt;}
.yc4{bottom:545.693333pt;}
.y6e{bottom:547.933333pt;}
.y18b{bottom:550.013333pt;}
.y1b6{bottom:550.653333pt;}
.y15e{bottom:552.093333pt;}
.y1ea{bottom:555.933333pt;}
.y11c{bottom:557.533333pt;}
.y24{bottom:559.133333pt;}
.yc3{bottom:561.053333pt;}
.y140{bottom:562.013333pt;}
.y1b5{bottom:562.813333pt;}
.y18a{bottom:565.373333pt;}
.y6d{bottom:565.533333pt;}
.y15d{bottom:567.453333pt;}
.y1e9{bottom:568.253333pt;}
.y23{bottom:573.053333pt;}
.yc2{bottom:576.413333pt;}
.y13f{bottom:579.613333pt;}
.y1b4{bottom:580.413333pt;}
.y1e8{bottom:580.573333pt;}
.y15c{bottom:582.813333pt;}
.y6c{bottom:583.133333pt;}
.y22{bottom:586.813333pt;}
.y21f{bottom:590.653333pt;}
.y117{bottom:591.133333pt;}
.yc1{bottom:591.773333pt;}
.y1b3{bottom:592.733333pt;}
.y13e{bottom:597.213333pt;}
.y15b{bottom:598.173333pt;}
.y21{bottom:600.573333pt;}
.y6b{bottom:600.733333pt;}
.y1b2{bottom:605.053333pt;}
.yc0{bottom:607.133333pt;}
.y21e{bottom:609.693333pt;}
.y15a{bottom:613.533333pt;}
.y20{bottom:614.333333pt;}
.y13d{bottom:614.813333pt;}
.y6a{bottom:618.333333pt;}
.ybf{bottom:622.333333pt;}
.y1b1{bottom:622.653333pt;}
.y114{bottom:623.613333pt;}
.y1f{bottom:628.253333pt;}
.y21d{bottom:628.573333pt;}
.y159{bottom:628.893333pt;}
.y13c{bottom:632.573333pt;}
.y1b0{bottom:634.813333pt;}
.y69{bottom:636.093333pt;}
.ybe{bottom:637.693333pt;}
.y1e{bottom:642.013333pt;}
.y158{bottom:644.093333pt;}
.y21c{bottom:644.413333pt;}
.y1af{bottom:647.133333pt;}
.y13b{bottom:650.173333pt;}
.ybd{bottom:653.053333pt;}
.y68{bottom:653.693333pt;}
.y157{bottom:659.453333pt;}
.y21b{bottom:660.253333pt;}
.y112{bottom:661.373333pt;}
.y1d{bottom:663.613333pt;}
.y1ae{bottom:664.573333pt;}
.y13a{bottom:667.773333pt;}
.ybc{bottom:668.413333pt;}
.y67{bottom:671.293333pt;}
.y1e7{bottom:671.613333pt;}
.y156{bottom:674.813333pt;}
.y21a{bottom:676.093333pt;}
.y1ad{bottom:682.493333pt;}
.ybb{bottom:683.773333pt;}
.y1c{bottom:684.733333pt;}
.y110{bottom:685.213333pt;}
.y139{bottom:685.373333pt;}
.y66{bottom:688.893333pt;}
.y1e6{bottom:689.213333pt;}
.y155{bottom:690.173333pt;}
.y219{bottom:691.933333pt;}
.yba{bottom:699.133333pt;}
.y1b{bottom:699.773333pt;}
.y1e5{bottom:701.533333pt;}
.y138{bottom:702.973333pt;}
.y1ac{bottom:703.773333pt;}
.y154{bottom:705.533333pt;}
.y65{bottom:706.493333pt;}
.y218{bottom:707.773333pt;}
.y1a{bottom:708.413333pt;}
.y10c{bottom:709.053333pt;}
.y1e4{bottom:713.853333pt;}
.yb9{bottom:714.333333pt;}
.y19{bottom:719.293333pt;}
.y137{bottom:720.733333pt;}
.y153{bottom:720.893333pt;}
.y217{bottom:723.773333pt;}
.y64{bottom:724.253333pt;}
.y1e3{bottom:726.013333pt;}
.yb8{bottom:729.693333pt;}
.y18{bottom:731.453333pt;}
.y152{bottom:736.093333pt;}
.y10a{bottom:737.853333pt;}
.y136{bottom:738.333333pt;}
.y216{bottom:739.613333pt;}
.y63{bottom:741.853333pt;}
.y17{bottom:743.613333pt;}
.yb7{bottom:745.053333pt;}
.y151{bottom:751.493333pt;}
.y16{bottom:751.973333pt;}
.y215{bottom:755.493333pt;}
.y135{bottom:755.973333pt;}
.y1ab{bottom:759.173333pt;}
.y62{bottom:759.493333pt;}
.yb6{bottom:760.453333pt;}
.y109{bottom:761.413333pt;}
.y15{bottom:762.373333pt;}
.y150{bottom:766.853333pt;}
.y1e2{bottom:768.293333pt;}
.y214{bottom:771.333333pt;}
.y134{bottom:773.573333pt;}
.yb5{bottom:775.813333pt;}
.y61{bottom:777.093333pt;}
.y108{bottom:779.813333pt;}
.y1e1{bottom:780.453333pt;}
.y14{bottom:781.253333pt;}
.y14f{bottom:782.213333pt;}
.y213{bottom:787.173333pt;}
.yb4{bottom:791.013333pt;}
.y133{bottom:791.173333pt;}
.ydf{bottom:794.373333pt;}
.y60{bottom:794.693333pt;}
.y13{bottom:796.933333pt;}
.y14e{bottom:797.573333pt;}
.y107{bottom:798.053333pt;}
.y212{bottom:803.173333pt;}
.yb3{bottom:806.373333pt;}
.y132{bottom:808.933333pt;}
.y1e0{bottom:810.373333pt;}
.y5f{bottom:812.453333pt;}
.y14d{bottom:812.933333pt;}
.y106{bottom:813.253333pt;}
.y211{bottom:820.933333pt;}
.yb2{bottom:821.733333pt;}
.y1df{bottom:822.693333pt;}
.y131{bottom:826.533333pt;}
.y12{bottom:827.653333pt;}
.y14c{bottom:828.133333pt;}
.y105{bottom:828.613333pt;}
.y5e{bottom:830.053333pt;}
.y1de{bottom:834.853333pt;}
.yb1{bottom:837.093333pt;}
.y210{bottom:838.693333pt;}
.y14b{bottom:843.493333pt;}
.y104{bottom:843.973333pt;}
.y130{bottom:844.133333pt;}
.y1dd{bottom:847.173333pt;}
.y5d{bottom:847.653333pt;}
.yb0{bottom:852.453333pt;}
.y20f{bottom:856.453333pt;}
.y11{bottom:858.373333pt;}
.y14a{bottom:858.533333pt;}
.y103{bottom:859.333333pt;}
.y12f{bottom:861.733333pt;}
.y1dc{bottom:864.773333pt;}
.y1aa{bottom:864.933333pt;}
.y5c{bottom:865.253333pt;}
.yaf{bottom:867.813333pt;}
.y20e{bottom:874.373333pt;}
.y102{bottom:874.693333pt;}
.y1db{bottom:877.093333pt;}
.y12e{bottom:879.333333pt;}
.y149{bottom:881.573333pt;}
.y1a9{bottom:882.533333pt;}
.yae{bottom:882.693333pt;}
.y5b{bottom:882.853333pt;}
.y10{bottom:887.173333pt;}
.ya2{bottom:888.453333pt;}
.y1da{bottom:889.253333pt;}
.y101{bottom:890.053333pt;}
.y20d{bottom:892.133333pt;}
.y148{bottom:896.933333pt;}
.y12d{bottom:897.093333pt;}
.yf{bottom:899.973333pt;}
.yad{bottom:900.293333pt;}
.y5a{bottom:900.613333pt;}
.y1d9{bottom:901.573333pt;}
.ya1{bottom:905.253333pt;}
.y53{bottom:907.493333pt;}
.y6{bottom:907.813333pt;}
.y20c{bottom:909.893333pt;}
.ye{bottom:912.133333pt;}
.y1d8{bottom:913.893333pt;}
.y12c{bottom:914.693333pt;}
.y59{bottom:918.213333pt;}
.ya0{bottom:920.613333pt;}
.yd{bottom:926.053333pt;}
.y12b{bottom:931.973333pt;}
.y147{bottom:932.293333pt;}
.y1a8{bottom:935.493333pt;}
.y58{bottom:935.813333pt;}
.y9f{bottom:935.973333pt;}
.y1d7{bottom:938.373333pt;}
.yc{bottom:940.293333pt;}
.ye0{bottom:944.133333pt;}
.y12a{bottom:945.573333pt;}
.yb{bottom:960.960000pt;}
.y9e{bottom:967.680000pt;}
.ya{bottom:983.680000pt;}
.y56{bottom:991.200000pt;}
.y9d{bottom:999.040000pt;}
.h2c{height:10.965000pt;}
.h20{height:16.125000pt;}
.h23{height:17.300000pt;}
.h2d{height:17.426667pt;}
.h1a{height:18.866667pt;}
.hf{height:20.728125pt;}
.h25{height:23.200000pt;}
.h11{height:26.381250pt;}
.h24{height:28.160000pt;}
.h10{height:28.525937pt;}
.h28{height:29.940625pt;}
.h2b{height:31.186667pt;}
.h14{height:31.406250pt;}
.h27{height:31.840000pt;}
.h29{height:32.960000pt;}
.h2a{height:33.466667pt;}
.h2f{height:33.515625pt;}
.h31{height:33.867188pt;}
.h32{height:33.906667pt;}
.h2e{height:34.066667pt;}
.h33{height:34.866667pt;}
.h34{height:35.026667pt;}
.h30{height:35.058667pt;}
.h17{height:36.431250pt;}
.h19{height:37.090625pt;}
.h26{height:37.120000pt;}
.h15{height:37.410000pt;}
.hb{height:42.063437pt;}
.h1{height:42.084375pt;}
.hd{height:43.215000pt;}
.h35{height:44.941250pt;}
.h3{height:47.109375pt;}
.h13{height:48.375000pt;}
.h37{height:49.336436pt;}
.h5{height:49.852500pt;}
.ha{height:52.134375pt;}
.h1b{height:52.834688pt;}
.h16{height:53.535000pt;}
.h18{height:57.787500pt;}
.he{height:58.238750pt;}
.h1c{height:58.563750pt;}
.h1d{height:59.340000pt;}
.h1e{height:62.812500pt;}
.h8{height:63.399375pt;}
.h22{height:64.500000pt;}
.h21{height:73.490625pt;}
.h4{height:87.698667pt;}
.h36{height:91.364375pt;}
.h12{height:94.218750pt;}
.h6{height:94.266667pt;}
.h2{height:96.750000pt;}
.h1f{height:104.896875pt;}
.hc{height:107.715000pt;}
.h9{height:125.562500pt;}
.h7{height:126.256875pt;}
.h0{height:1056.000000pt;}
.w3{width:40.510667pt;}
.w2{width:73.746667pt;}
.w5{width:92.978667pt;}
.w4{width:102.070667pt;}
.w8{width:113.470667pt;}
.w9{width:153.773333pt;}
.w6{width:179.386667pt;}
.wb{width:195.533333pt;}
.wa{width:217.306667pt;}
.w7{width:265.453333pt;}
.w1{width:676.120000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x1e{left:7.198667pt;}
.x4{left:9.598667pt;}
.x18{left:12.800000pt;}
.x26{left:66.240000pt;}
.x1{left:72.000000pt;}
.x3{left:72.961333pt;}
.xb{left:85.952000pt;}
.x14{left:96.032000pt;}
.x1f{left:112.521333pt;}
.x28{left:140.666667pt;}
.x13{left:144.026667pt;}
.x11{left:165.146667pt;}
.x23{left:185.480000pt;}
.xf{left:189.786667pt;}
.x20{left:214.600000pt;}
.xd{left:216.986667pt;}
.xe{left:246.106667pt;}
.xc{left:258.106667pt;}
.x10{left:285.986667pt;}
.x6{left:298.786667pt;}
.x21{left:307.586667pt;}
.x8{left:310.626667pt;}
.x1b{left:320.546667pt;}
.x5{left:328.706667pt;}
.x24{left:339.266667pt;}
.x9{left:350.466667pt;}
.x19{left:360.546667pt;}
.x12{left:375.906667pt;}
.x7{left:376.866667pt;}
.x1a{left:401.026667pt;}
.x2{left:401.986667pt;}
.xa{left:411.106667pt;}
.x27{left:428.866667pt;}
.x15{left:434.626667pt;}
.x16{left:458.653333pt;}
.x22{left:486.986667pt;}
.x25{left:556.586667pt;}
.x17{left:677.093333pt;}
.x1c{left:744.133333pt;}
.x1d{left:750.053333pt;}
}




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