
    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_f4cf778b84002165bb629e54.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_af2125647648dfaff0ccbc86.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.000488;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_a4399a104312a749e14c2046.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.914062;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_7a22491bd76ddea2f1d1b565.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v3{vertical-align:-57.240000px;}
.v7{vertical-align:-36.000000px;}
.v4{vertical-align:-30.240000px;}
.v6{vertical-align:-9.000000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:24.120000px;}
.v5{vertical-align:27.000000px;}
.v1{vertical-align:42.240000px;}
.ls15{letter-spacing:-0.696000px;}
.ls9{letter-spacing:-0.580200px;}
.ls14{letter-spacing:-0.413400px;}
.ls22{letter-spacing:-0.360000px;}
.lsc{letter-spacing:-0.270000px;}
.ls10{letter-spacing:-0.220200px;}
.lsf{letter-spacing:-0.188400px;}
.ls12{letter-spacing:-0.180000px;}
.ls8{letter-spacing:-0.166800px;}
.lsb{letter-spacing:-0.153600px;}
.ls1d{letter-spacing:-0.103200px;}
.lsa{letter-spacing:-0.053280px;}
.ls7{letter-spacing:0.000000px;}
.ls16{letter-spacing:0.017280px;}
.ls17{letter-spacing:0.054720px;}
.ls2{letter-spacing:0.056160px;}
.ls18{letter-spacing:0.085800px;}
.ls0{letter-spacing:0.090000px;}
.ls4{letter-spacing:0.092880px;}
.ls1c{letter-spacing:0.102960px;}
.ls13{letter-spacing:0.114000px;}
.ls1b{letter-spacing:0.120000px;}
.ls1a{letter-spacing:0.139800px;}
.ls6{letter-spacing:0.140040px;}
.ls1{letter-spacing:0.153360px;}
.lse{letter-spacing:0.171600px;}
.ls5{letter-spacing:0.180000px;}
.ls3{letter-spacing:0.257040px;}
.ls1e{letter-spacing:0.306600px;}
.ls11{letter-spacing:0.373200px;}
.ls1f{letter-spacing:0.540000px;}
.ls21{letter-spacing:9.548640px;}
.ls20{letter-spacing:35.108640px;}
.lsd{letter-spacing:43.046640px;}
.ls19{letter-spacing:54.450000px;}
.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;}
}
.ws0{word-spacing:-20.430000px;}
.wsb{word-spacing:-15.210000px;}
.wse{word-spacing:-15.169800px;}
.ws9{word-spacing:-15.030000px;}
.ws2{word-spacing:-14.876400px;}
.ws1{word-spacing:-14.863200px;}
.wsa{word-spacing:-14.850000px;}
.ws8{word-spacing:-14.809800px;}
.ws4{word-spacing:-14.449800px;}
.wsc{word-spacing:-14.334000px;}
.ws6{word-spacing:-12.951600px;}
.wsd{word-spacing:-12.865800px;}
.ws3{word-spacing:-12.780000px;}
.wsf{word-spacing:-12.676800px;}
.ws7{word-spacing:-12.591600px;}
.ws12{word-spacing:-12.420000px;}
.ws11{word-spacing:-9.720000px;}
.ws10{word-spacing:-8.280000px;}
.ws5{word-spacing:0.000000px;}
._2d{margin-left:-13.590000px;}
._2c{margin-left:-6.196560px;}
._0{margin-left:-1.286160px;}
._3{width:1.262520px;}
._5{width:2.305920px;}
._1c{width:3.326280px;}
._8{width:4.388760px;}
._6{width:5.531040px;}
._7{width:6.904320px;}
._1{width:8.476920px;}
._4{width:9.979920px;}
._16{width:11.910600px;}
._b{width:13.106160px;}
._35{width:14.430360px;}
._19{width:16.376280px;}
._e{width:17.555040px;}
._f{width:18.637200px;}
._12{width:19.787880px;}
._2{width:20.861640px;}
._c{width:22.845600px;}
._d{width:23.927760px;}
._39{width:24.945360px;}
._1d{width:25.971840px;}
._10{width:27.919320px;}
._9{width:29.398680px;}
._a{width:30.721320px;}
._18{width:32.164200px;}
._21{width:33.727320px;}
._1e{width:35.290440px;}
._22{width:37.033920px;}
._20{width:38.475240px;}
._1f{width:39.739320px;}
._1b{width:41.723280px;}
._1a{width:42.805440px;}
._25{width:44.248320px;}
._3a{width:45.798480px;}
._36{width:47.134080px;}
._37{width:51.883560px;}
._24{width:54.108000px;}
._27{width:57.594960px;}
._14{width:59.879520px;}
._15{width:60.963480px;}
._26{width:64.929600px;}
._3b{width:66.371040px;}
._13{width:72.324360px;}
._38{width:84.552480px;}
._33{width:100.345680px;}
._2b{width:123.903360px;}
._2a{width:137.250000px;}
._11{width:142.876800px;}
._28{width:144.276960px;}
._29{width:150.903840px;}
._34{width:205.740000px;}
._32{width:230.701800px;}
._30{width:267.103440px;}
._2f{width:268.302720px;}
._2e{width:365.210040px;}
._31{width:394.962960px;}
._23{width:2060.673360px;}
._17{width:2069.820000px;}
.fc2{color:transparent;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:2.880000px;}
.fs5{font-size:33.120000px;}
.fs4{font-size:36.000000px;}
.fs6{font-size:38.880000px;}
.fs2{font-size:51.120000px;}
.fs0{font-size:60.120000px;}
.fs1{font-size:90.000000px;}
.fs3{font-size:96.120000px;}
.y0{bottom:0.000000px;}
.y192{bottom:4.230000px;}
.y2b{bottom:4.320000px;}
.y195{bottom:5.220000px;}
.y196{bottom:7.020000px;}
.y185{bottom:7.560000px;}
.y188{bottom:10.530000px;}
.y152{bottom:11.700000px;}
.y14d{bottom:12.060000px;}
.y122{bottom:13.410000px;}
.y1c1{bottom:13.500000px;}
.y183{bottom:13.590000px;}
.y167{bottom:14.670000px;}
.y181{bottom:16.740000px;}
.y1c4{bottom:16.830000px;}
.y133{bottom:17.910000px;}
.y180{bottom:19.080000px;}
.y1c5{bottom:19.170000px;}
.y2a{bottom:20.160000px;}
.y198{bottom:24.120000px;}
.y193{bottom:25.020000px;}
.y199{bottom:26.460000px;}
.y194{bottom:27.360000px;}
.y151{bottom:27.540000px;}
.y166{bottom:30.510000px;}
.y14c{bottom:30.690000px;}
.y132{bottom:36.900000px;}
.y150{bottom:43.380000px;}
.y165{bottom:46.350000px;}
.y171{bottom:46.980000px;}
.y174{bottom:47.070000px;}
.y14b{bottom:49.320000px;}
.y29{bottom:50.130000px;}
.y131{bottom:55.980000px;}
.y4e{bottom:62.220000px;}
.y28{bottom:65.160000px;}
.y164{bottom:65.340000px;}
.y170{bottom:65.970000px;}
.y173{bottom:66.150000px;}
.y14a{bottom:67.950000px;}
.y2{bottom:74.280000px;}
.y130{bottom:75.060000px;}
.y27{bottom:80.100000px;}
.y163{bottom:84.420000px;}
.y149{bottom:86.580000px;}
.y12f{bottom:94.050000px;}
.y26{bottom:96.480000px;}
.y162{bottom:99.360000px;}
.y16f{bottom:99.990000px;}
.y148{bottom:105.120000px;}
.y12e{bottom:113.130000px;}
.y161{bottom:118.440000px;}
.y239{bottom:118.740000px;}
.y1e{bottom:122.700000px;}
.y134{bottom:122.880000px;}
.y81{bottom:123.060000px;}
.y147{bottom:123.750000px;}
.y1f8{bottom:123.870000px;}
.y4c{bottom:126.210000px;}
.yc1{bottom:127.740000px;}
.ye9{bottom:129.270000px;}
.y1bc{bottom:129.360000px;}
.y25{bottom:129.690000px;}
.y12d{bottom:132.210000px;}
.y160{bottom:133.380000px;}
.y172{bottom:134.010000px;}
.y16e{bottom:134.100000px;}
.y238{bottom:134.130000px;}
.y1bf{bottom:134.190000px;}
.y276{bottom:140.430000px;}
.y80{bottom:142.230000px;}
.y146{bottom:142.380000px;}
.y1bd{bottom:143.130000px;}
.y1c6{bottom:144.030000px;}
.y4b{bottom:145.380000px;}
.y24{bottom:145.530000px;}
.yc0{bottom:146.910000px;}
.ye8{bottom:148.350000px;}
.y237{bottom:149.520000px;}
.y17c{bottom:149.970000px;}
.y1be{bottom:150.030000px;}
.y12c{bottom:151.200000px;}
.y15f{bottom:152.460000px;}
.y275{bottom:155.820000px;}
.y23{bottom:161.280000px;}
.y20b{bottom:161.400000px;}
.y7f{bottom:161.490000px;}
.y145{bottom:161.820000px;}
.y1f7{bottom:162.300000px;}
.y9b{bottom:163.290000px;}
.y4a{bottom:164.550000px;}
.y236{bottom:164.910000px;}
.ybf{bottom:166.170000px;}
.y15e{bottom:167.310000px;}
.ye7{bottom:167.520000px;}
.y16d{bottom:168.030000px;}
.y17b{bottom:169.050000px;}
.y12b{bottom:170.280000px;}
.y274{bottom:171.570000px;}
.y1c3{bottom:178.410000px;}
.y20a{bottom:180.570000px;}
.y235{bottom:180.660000px;}
.y7e{bottom:180.930000px;}
.y144{bottom:181.170000px;}
.y1f6{bottom:181.470000px;}
.y49{bottom:183.720000px;}
.ybe{bottom:185.340000px;}
.y15d{bottom:186.480000px;}
.ye6{bottom:186.690000px;}
.y273{bottom:186.960000px;}
.y12a{bottom:189.270000px;}
.y17a{bottom:190.110000px;}
.y22{bottom:195.030000px;}
.y234{bottom:196.050000px;}
.y7d{bottom:200.010000px;}
.y9a{bottom:200.550000px;}
.y143{bottom:200.610000px;}
.y1f5{bottom:200.640000px;}
.y15c{bottom:201.330000px;}
.y16c{bottom:202.140000px;}
.y272{bottom:202.350000px;}
.y48{bottom:202.980000px;}
.ybd{bottom:204.510000px;}
.ye5{bottom:205.860000px;}
.y129{bottom:208.260000px;}
.y179{bottom:209.550000px;}
.y21{bottom:209.970000px;}
.y233{bottom:211.440000px;}
.y1c2{bottom:212.880000px;}
.y271{bottom:217.740000px;}
.y209{bottom:217.920000px;}
.y7c{bottom:219.180000px;}
.y1f4{bottom:219.810000px;}
.y142{bottom:220.050000px;}
.y15b{bottom:220.500000px;}
.y11e{bottom:221.520000px;}
.y47{bottom:222.150000px;}
.ybc{bottom:223.680000px;}
.ye4{bottom:225.120000px;}
.y20{bottom:225.810000px;}
.y232{bottom:227.190000px;}
.y128{bottom:227.340000px;}
.y178{bottom:228.630000px;}
.y270{bottom:233.490000px;}
.y15a{bottom:235.350000px;}
.y16b{bottom:236.160000px;}
.y7b{bottom:238.350000px;}
.y1f3{bottom:239.070000px;}
.y141{bottom:239.400000px;}
.y108{bottom:239.970000px;}
.y11d{bottom:240.870000px;}
.y46{bottom:241.320000px;}
.y231{bottom:242.580000px;}
.ybb{bottom:242.850000px;}
.y1c0{bottom:243.300000px;}
.ye3{bottom:244.290000px;}
.y127{bottom:246.330000px;}
.y177{bottom:247.800000px;}
.y1f{bottom:247.860000px;}
.y26f{bottom:248.880000px;}
.y159{bottom:254.430000px;}
.y16a{bottom:255.150000px;}
.y7a{bottom:257.520000px;}
.y230{bottom:257.970000px;}
.y1f2{bottom:258.240000px;}
.y140{bottom:258.840000px;}
.y11c{bottom:260.220000px;}
.y45{bottom:260.490000px;}
.yba{bottom:262.110000px;}
.ye2{bottom:263.460000px;}
.y26e{bottom:264.270000px;}
.y126{bottom:265.410000px;}
.y99{bottom:265.980000px;}
.y158{bottom:273.510000px;}
.y22f{bottom:273.810000px;}
.y79{bottom:276.780000px;}
.y107{bottom:277.320000px;}
.y1f1{bottom:277.410000px;}
.y208{bottom:277.500000px;}
.y13f{bottom:278.190000px;}
.y11b{bottom:279.300000px;}
.y26d{bottom:279.660000px;}
.y44{bottom:279.750000px;}
.y176{bottom:280.200000px;}
.yb9{bottom:281.280000px;}
.ye1{bottom:282.630000px;}
.y125{bottom:284.520000px;}
.y98{bottom:285.150000px;}
.y157{bottom:288.360000px;}
.y169{bottom:289.170000px;}
.y22e{bottom:289.200000px;}
.y26c{bottom:295.500000px;}
.y78{bottom:295.950000px;}
.y106{bottom:296.400000px;}
.y207{bottom:296.580000px;}
.y1f0{bottom:296.850000px;}
.y13e{bottom:297.630000px;}
.y11a{bottom:298.560000px;}
.y43{bottom:298.920000px;}
.yb8{bottom:300.450000px;}
.ye0{bottom:301.800000px;}
.y124{bottom:303.510000px;}
.y97{bottom:304.590000px;}
.y156{bottom:307.440000px;}
.y26b{bottom:310.890000px;}
.y77{bottom:315.120000px;}
.y105{bottom:315.570000px;}
.y206{bottom:315.840000px;}
.y1ef{bottom:315.930000px;}
.y13d{bottom:317.070000px;}
.y119{bottom:317.730000px;}
.y42{bottom:318.090000px;}
.y1a9{bottom:319.260000px;}
.yb7{bottom:319.620000px;}
.y22d{bottom:320.340000px;}
.ydf{bottom:321.060000px;}
.y155{bottom:322.380000px;}
.y168{bottom:323.190000px;}
.y96{bottom:323.670000px;}
.y26a{bottom:326.280000px;}
.y76{bottom:334.560000px;}
.y104{bottom:334.740000px;}
.y205{bottom:335.010000px;}
.y1ee{bottom:335.100000px;}
.y22c{bottom:335.730000px;}
.y13c{bottom:336.420000px;}
.y118{bottom:336.900000px;}
.y41{bottom:337.260000px;}
.y1a8{bottom:338.340000px;}
.yb6{bottom:338.790000px;}
.y1bb{bottom:338.880000px;}
.yde{bottom:340.230000px;}
.y154{bottom:341.460000px;}
.y269{bottom:341.670000px;}
.y95{bottom:342.840000px;}
.y22b{bottom:351.120000px;}
.y75{bottom:353.640000px;}
.y103{bottom:353.910000px;}
.y204{bottom:354.180000px;}
.y1ed{bottom:354.360000px;}
.y13b{bottom:355.890000px;}
.y117{bottom:356.070000px;}
.y40{bottom:356.700000px;}
.y268{bottom:357.060000px;}
.y153{bottom:357.330000px;}
.y1a7{bottom:357.510000px;}
.yb5{bottom:358.050000px;}
.ydd{bottom:359.400000px;}
.y94{bottom:362.280000px;}
.y22a{bottom:366.510000px;}
.y267{bottom:372.450000px;}
.y74{bottom:372.810000px;}
.y102{bottom:373.170000px;}
.y203{bottom:373.350000px;}
.y1ec{bottom:373.530000px;}
.y116{bottom:375.240000px;}
.y3f{bottom:375.780000px;}
.y1a6{bottom:376.680000px;}
.yb4{bottom:377.220000px;}
.ydc{bottom:378.570000px;}
.y93{bottom:381.360000px;}
.y229{bottom:382.260000px;}
.y266{bottom:388.200000px;}
.y73{bottom:392.070000px;}
.y101{bottom:392.340000px;}
.y1eb{bottom:392.700000px;}
.y202{bottom:392.790000px;}
.y115{bottom:394.500000px;}
.y13a{bottom:394.680000px;}
.y3e{bottom:394.950000px;}
.y1a5{bottom:395.850000px;}
.yb3{bottom:396.390000px;}
.y228{bottom:397.650000px;}
.ydb{bottom:397.740000px;}
.y265{bottom:403.590000px;}
.y1d{bottom:404.760000px;}
.y72{bottom:411.240000px;}
.y100{bottom:411.510000px;}
.y1ea{bottom:411.870000px;}
.y139{bottom:413.400000px;}
.y227{bottom:413.490000px;}
.y114{bottom:413.670000px;}
.y3d{bottom:414.210000px;}
.y1a4{bottom:415.110000px;}
.yb2{bottom:415.560000px;}
.yda{bottom:417.000000px;}
.y264{bottom:418.980000px;}
.y1c{bottom:423.930000px;}
.y226{bottom:428.880000px;}
.y71{bottom:430.410000px;}
.y92{bottom:430.680000px;}
.y1e9{bottom:431.040000px;}
.y138{bottom:432.210000px;}
.y113{bottom:432.840000px;}
.y3c{bottom:433.380000px;}
.y1a3{bottom:434.280000px;}
.y263{bottom:434.370000px;}
.yb1{bottom:434.820000px;}
.yd9{bottom:436.170000px;}
.y1b{bottom:443.100000px;}
.y225{bottom:444.270000px;}
.y70{bottom:449.580000px;}
.y91{bottom:449.760000px;}
.yff{bottom:449.940000px;}
.y262{bottom:450.120000px;}
.y1e8{bottom:450.300000px;}
.y137{bottom:450.930000px;}
.y112{bottom:452.010000px;}
.y3b{bottom:452.550000px;}
.y1a2{bottom:453.450000px;}
.yb0{bottom:453.990000px;}
.yd8{bottom:455.340000px;}
.y224{bottom:460.020000px;}
.y1a{bottom:462.270000px;}
.y261{bottom:465.510000px;}
.y6f{bottom:468.750000px;}
.y90{bottom:468.930000px;}
.yfe{bottom:469.110000px;}
.y1e7{bottom:469.470000px;}
.y136{bottom:469.740000px;}
.y111{bottom:471.180000px;}
.y3a{bottom:471.720000px;}
.y1a1{bottom:472.620000px;}
.yaf{bottom:473.160000px;}
.yd7{bottom:474.510000px;}
.y223{bottom:475.410000px;}
.y260{bottom:480.930000px;}
.y19{bottom:481.560000px;}
.y6e{bottom:488.040000px;}
.y8f{bottom:488.130000px;}
.yfd{bottom:488.310000px;}
.y1e6{bottom:488.670000px;}
.y222{bottom:490.830000px;}
.y39{bottom:491.010000px;}
.y1a0{bottom:491.820000px;}
.yae{bottom:492.360000px;}
.yd6{bottom:493.800000px;}
.y25f{bottom:496.770000px;}
.y18{bottom:500.730000px;}
.y14f{bottom:505.140000px;}
.y221{bottom:506.580000px;}
.y6d{bottom:507.210000px;}
.y8e{bottom:507.300000px;}
.yfc{bottom:507.480000px;}
.y1e5{bottom:507.840000px;}
.y110{bottom:508.560000px;}
.y38{bottom:510.180000px;}
.y19f{bottom:511.080000px;}
.yad{bottom:511.530000px;}
.y1ba{bottom:511.620000px;}
.y25e{bottom:512.160000px;}
.yd5{bottom:512.970000px;}
.y135{bottom:518.610000px;}
.y17{bottom:520.170000px;}
.y220{bottom:521.970000px;}
.y6c{bottom:526.380000px;}
.y8d{bottom:526.560000px;}
.yfb{bottom:526.650000px;}
.y1e4{bottom:527.100000px;}
.y25d{bottom:527.550000px;}
.y19e{bottom:530.250000px;}
.y1b9{bottom:530.790000px;}
.yd4{bottom:532.140000px;}
.y21f{bottom:537.360000px;}
.y16{bottom:539.250000px;}
.y25c{bottom:543.300000px;}
.y8c{bottom:545.730000px;}
.y6b{bottom:545.820000px;}
.yfa{bottom:545.910000px;}
.y1e3{bottom:546.270000px;}
.y37{bottom:547.530000px;}
.yac{bottom:548.880000px;}
.y19d{bottom:549.420000px;}
.y1b8{bottom:549.960000px;}
.y21e{bottom:552.750000px;}
.y15{bottom:558.420000px;}
.y25b{bottom:558.690000px;}
.y10f{bottom:564.720000px;}
.y6a{bottom:564.900000px;}
.yf9{bottom:565.080000px;}
.y1e2{bottom:565.440000px;}
.yab{bottom:567.510000px;}
.y19c{bottom:568.590000px;}
.y1b7{bottom:569.130000px;}
.yd3{bottom:569.580000px;}
.y14e{bottom:572.820000px;}
.y25a{bottom:574.080000px;}
.y14{bottom:577.590000px;}
.y10e{bottom:583.980000px;}
.y69{bottom:584.070000px;}
.yf8{bottom:584.250000px;}
.y1e1{bottom:584.610000px;}
.y19b{bottom:587.850000px;}
.y1b6{bottom:588.300000px;}
.y259{bottom:589.470000px;}
.y13{bottom:596.850000px;}
.y21d{bottom:599.370000px;}
.y36{bottom:603.150000px;}
.y68{bottom:603.330000px;}
.yf7{bottom:603.690000px;}
.y1e0{bottom:603.780000px;}
.y258{bottom:604.860000px;}
.yaa{bottom:604.950000px;}
.yd2{bottom:607.020000px;}
.y1b5{bottom:607.560000px;}
.y21c{bottom:614.760000px;}
.y12{bottom:616.020000px;}
.y257{bottom:620.610000px;}
.y67{bottom:622.500000px;}
.y35{bottom:622.590000px;}
.yf6{bottom:622.770000px;}
.y1df{bottom:623.040000px;}
.ya9{bottom:624.030000px;}
.yd1{bottom:626.100000px;}
.y21b{bottom:630.150000px;}
.y11{bottom:635.190000px;}
.y256{bottom:636.000000px;}
.y66{bottom:641.670000px;}
.yf5{bottom:641.940000px;}
.y1de{bottom:642.210000px;}
.ya8{bottom:643.290000px;}
.y1b4{bottom:644.910000px;}
.yd0{bottom:645.270000px;}
.y19a{bottom:645.540000px;}
.y21a{bottom:645.900000px;}
.y255{bottom:651.390000px;}
.y10{bottom:654.360000px;}
.y65{bottom:660.840000px;}
.yf4{bottom:661.200000px;}
.y219{bottom:661.290000px;}
.y1dd{bottom:661.380000px;}
.y34{bottom:661.740000px;}
.ya7{bottom:662.460000px;}
.y197{bottom:662.820000px;}
.ycf{bottom:664.440000px;}
.y123{bottom:665.880000px;}
.y254{bottom:666.870000px;}
.yf{bottom:673.530000px;}
.y218{bottom:676.680000px;}
.y64{bottom:680.010000px;}
.yf3{bottom:680.370000px;}
.y1dc{bottom:680.550000px;}
.y201{bottom:680.820000px;}
.y33{bottom:681.000000px;}
.ya6{bottom:681.630000px;}
.y253{bottom:682.620000px;}
.y28b{bottom:683.340000px;}
.yce{bottom:683.610000px;}
.y217{bottom:692.430000px;}
.ye{bottom:692.790000px;}
.y252{bottom:698.010000px;}
.y28a{bottom:698.730000px;}
.y63{bottom:699.270000px;}
.yf2{bottom:699.540000px;}
.y1db{bottom:699.720000px;}
.y200{bottom:699.900000px;}
.y32{bottom:700.170000px;}
.y1b3{bottom:700.350000px;}
.ya5{bottom:700.800000px;}
.ycd{bottom:702.870000px;}
.y216{bottom:708.270000px;}
.y175{bottom:710.340000px;}
.yd{bottom:711.960000px;}
.y251{bottom:713.400000px;}
.y289{bottom:714.120000px;}
.y62{bottom:718.440000px;}
.yf1{bottom:718.710000px;}
.y1da{bottom:718.980000px;}
.y1ff{bottom:719.070000px;}
.y31{bottom:719.340000px;}
.y1b2{bottom:719.520000px;}
.ya4{bottom:719.970000px;}
.ycc{bottom:722.040000px;}
.y215{bottom:723.660000px;}
.y250{bottom:729.150000px;}
.y288{bottom:729.870000px;}
.yc{bottom:731.130000px;}
.y61{bottom:737.610000px;}
.yf0{bottom:737.880000px;}
.y1d9{bottom:738.150000px;}
.y1fe{bottom:738.330000px;}
.y30{bottom:738.510000px;}
.y1b1{bottom:738.780000px;}
.y214{bottom:739.050000px;}
.ya3{bottom:739.230000px;}
.ycb{bottom:741.210000px;}
.y24f{bottom:744.540000px;}
.y287{bottom:745.260000px;}
.yb{bottom:750.300000px;}
.y60{bottom:756.780000px;}
.y10d{bottom:756.960000px;}
.yef{bottom:757.140000px;}
.y1d8{bottom:757.320000px;}
.y1fd{bottom:757.500000px;}
.y2f{bottom:757.680000px;}
.y1b0{bottom:757.950000px;}
.y191{bottom:758.220000px;}
.ya2{bottom:758.400000px;}
.y24e{bottom:760.290000px;}
.yca{bottom:760.380000px;}
.y286{bottom:760.650000px;}
.y213{bottom:770.460000px;}
.ya{bottom:770.820000px;}
.y24d{bottom:775.680000px;}
.y5f{bottom:775.950000px;}
.y10c{bottom:776.130000px;}
.yee{bottom:776.310000px;}
.y1d7{bottom:776.490000px;}
.y1fc{bottom:776.670000px;}
.y2e{bottom:777.120000px;}
.ya1{bottom:777.570000px;}
.yc9{bottom:779.550000px;}
.y190{bottom:784.500000px;}
.y24c{bottom:791.070000px;}
.y285{bottom:791.880000px;}
.y5e{bottom:795.210000px;}
.y10b{bottom:795.300000px;}
.yed{bottom:795.480000px;}
.y1d6{bottom:795.660000px;}
.y1fb{bottom:795.840000px;}
.y2d{bottom:796.200000px;}
.y1af{bottom:796.290000px;}
.ya0{bottom:796.740000px;}
.yc8{bottom:798.810000px;}
.y18f{bottom:805.830000px;}
.y24b{bottom:806.460000px;}
.y284{bottom:807.270000px;}
.y8b{bottom:814.380000px;}
.y10a{bottom:814.560000px;}
.y5d{bottom:814.650000px;}
.y1d5{bottom:814.920000px;}
.y1fa{bottom:815.010000px;}
.y2c{bottom:815.460000px;}
.y9f{bottom:816.000000px;}
.y9{bottom:817.620000px;}
.y18e{bottom:821.220000px;}
.y24a{bottom:822.300000px;}
.y283{bottom:822.660000px;}
.y8{bottom:833.370000px;}
.y8a{bottom:833.550000px;}
.y5c{bottom:833.730000px;}
.yec{bottom:833.820000px;}
.y1f9{bottom:834.270000px;}
.y1d4{bottom:834.360000px;}
.y1ae{bottom:834.720000px;}
.y9e{bottom:835.170000px;}
.yc7{bottom:836.070000px;}
.y249{bottom:837.690000px;}
.y282{bottom:838.410000px;}
.y18d{bottom:840.570000px;}
.y212{bottom:842.730000px;}
.y5b{bottom:852.900000px;}
.y89{bottom:852.990000px;}
.yeb{bottom:853.080000px;}
.y1d3{bottom:853.440000px;}
.y281{bottom:853.800000px;}
.y1ad{bottom:853.890000px;}
.yc6{bottom:854.700000px;}
.y18c{bottom:856.230000px;}
.y211{bottom:858.480000px;}
.y248{bottom:868.470000px;}
.y280{bottom:869.190000px;}
.y18b{bottom:871.980000px;}
.y5a{bottom:872.070000px;}
.yea{bottom:872.250000px;}
.y9d{bottom:872.430000px;}
.y1d2{bottom:872.610000px;}
.y1ac{bottom:873.060000px;}
.y210{bottom:873.870000px;}
.y247{bottom:884.220000px;}
.y27f{bottom:884.580000px;}
.y20f{bottom:889.260000px;}
.y59{bottom:891.240000px;}
.yc5{bottom:891.420000px;}
.y1d1{bottom:891.780000px;}
.y1ab{bottom:892.230000px;}
.y18a{bottom:898.170000px;}
.y246{bottom:899.610000px;}
.y27e{bottom:900.330000px;}
.y20e{bottom:904.650000px;}
.y9c{bottom:909.870000px;}
.y58{bottom:910.500000px;}
.yc4{bottom:910.590000px;}
.y109{bottom:910.680000px;}
.y1d0{bottom:910.950000px;}
.y1aa{bottom:911.400000px;}
.y189{bottom:913.560000px;}
.y245{bottom:915.000000px;}
.y27d{bottom:915.720000px;}
.y20d{bottom:920.040000px;}
.y187{bottom:926.070000px;}
.y57{bottom:929.670000px;}
.yc3{bottom:929.760000px;}
.y1cf{bottom:930.210000px;}
.y244{bottom:930.750000px;}
.y27c{bottom:931.200000px;}
.y20c{bottom:935.520000px;}
.y7{bottom:943.080000px;}
.y243{bottom:946.140000px;}
.y27b{bottom:946.590000px;}
.y56{bottom:948.840000px;}
.yc2{bottom:949.020000px;}
.y88{bottom:949.110000px;}
.y1ce{bottom:949.380000px;}
.y186{bottom:952.020000px;}
.y242{bottom:962.010000px;}
.y27a{bottom:962.370000px;}
.y55{bottom:968.040000px;}
.y87{bottom:968.220000px;}
.y1cd{bottom:968.580000px;}
.y184{bottom:974.970000px;}
.y241{bottom:977.400000px;}
.y279{bottom:977.760000px;}
.y54{bottom:987.210000px;}
.y86{bottom:987.390000px;}
.y1cc{bottom:987.750000px;}
.y6{bottom:992.070000px;}
.y240{bottom:992.790000px;}
.y278{bottom:993.150000px;}
.y121{bottom:994.410000px;}
.y182{bottom:997.920000px;}
.y53{bottom:1006.470000px;}
.y85{bottom:1006.560000px;}
.y1cb{bottom:1006.920000px;}
.y23f{bottom:1008.540000px;}
.y5{bottom:1018.890000px;}
.y23e{bottom:1023.930000px;}
.y52{bottom:1025.640000px;}
.y84{bottom:1025.820000px;}
.y1ca{bottom:1026.180000px;}
.y17f{bottom:1028.340000px;}
.y23d{bottom:1039.320000px;}
.y51{bottom:1044.810000px;}
.y83{bottom:1044.990000px;}
.y1c9{bottom:1045.350000px;}
.y277{bottom:1054.710000px;}
.y23c{bottom:1055.070000px;}
.y120{bottom:1064.070000px;}
.y82{bottom:1064.160000px;}
.y50{bottom:1064.250000px;}
.y1c8{bottom:1064.520000px;}
.y17e{bottom:1067.850000px;}
.y23b{bottom:1070.460000px;}
.y17d{bottom:1083.240000px;}
.y4f{bottom:1083.330000px;}
.y11f{bottom:1083.420000px;}
.y1c7{bottom:1083.690000px;}
.y23a{bottom:1085.850000px;}
.y4{bottom:1088.370000px;}
.y3{bottom:1106.460000px;}
.y4d{bottom:1120.770000px;}
.y1{bottom:1121.490000px;}
.h1d{height:2.826563px;}
.h15{height:15.750000px;}
.h17{height:18.540000px;}
.h13{height:19.080000px;}
.h14{height:22.050000px;}
.hb{height:24.930000px;}
.h1b{height:25.020000px;}
.h12{height:25.110000px;}
.h11{height:30.600000px;}
.h1c{height:30.690000px;}
.h8{height:35.694141px;}
.h18{height:37.980000px;}
.h16{height:38.880000px;}
.h9{height:41.978320px;}
.h7{height:50.171484px;}
.h1e{height:52.543305px;}
.hf{height:54.900000px;}
.h2{height:59.004492px;}
.ha{height:61.793886px;}
.h19{height:65.158594px;}
.h3{height:78.706055px;}
.he{height:80.280000px;}
.h4{height:94.336523px;}
.h5{height:101.244492px;}
.h1a{height:161.550000px;}
.h6{height:265.050000px;}
.hc{height:315.030000px;}
.h10{height:368.850000px;}
.hd{height:530.220000px;}
.h0{height:1186.290000px;}
.h1{height:1186.500000px;}
.w1c{width:12.780000px;}
.w25{width:35.100000px;}
.w11{width:48.240000px;}
.w10{width:50.400000px;}
.w12{width:50.580000px;}
.w17{width:52.230000px;}
.wb{width:52.560000px;}
.w15{width:54.000000px;}
.wf{width:56.790000px;}
.we{width:58.710000px;}
.w1b{width:63.300000px;}
.w20{width:64.350000px;}
.w24{width:64.710000px;}
.w16{width:64.890000px;}
.w6{width:68.850000px;}
.w7{width:69.060000px;}
.w18{width:71.640000px;}
.w23{width:74.160000px;}
.w22{width:74.280000px;}
.w21{width:77.040000px;}
.w19{width:79.500000px;}
.w9{width:86.400000px;}
.w8{width:86.940000px;}
.wd{width:92.610000px;}
.w14{width:98.640000px;}
.w5{width:110.160000px;}
.w4{width:123.690000px;}
.w1e{width:145.920000px;}
.w1a{width:187.290000px;}
.w3{width:194.880000px;}
.w1f{width:204.510000px;}
.wc{width:304.680000px;}
.w13{width:312.180000px;}
.w2{width:357.270000px;}
.wa{width:382.740000px;}
.w1d{width:739.980000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x16{left:-52.560000px;}
.x0{left:0.000000px;}
.x13{left:6.300000px;}
.x1c{left:9.000000px;}
.x1d{left:12.510000px;}
.x14{left:17.010000px;}
.x3{left:75.330000px;}
.x1{left:76.500000px;}
.x7{left:78.570000px;}
.x8{left:92.430000px;}
.x2d{left:98.370000px;}
.x25{left:156.090000px;}
.x28{left:222.420000px;}
.x23{left:224.130000px;}
.xd{left:271.380000px;}
.x26{left:343.380000px;}
.x4{left:357.180000px;}
.x1e{left:388.680000px;}
.xe{left:395.070000px;}
.x27{left:406.680000px;}
.x29{left:426.930000px;}
.x24{left:433.680000px;}
.x5{left:458.070000px;}
.xa{left:459.240000px;}
.x6{left:475.170000px;}
.x9{left:476.250000px;}
.x2e{left:481.110000px;}
.xb{left:485.430000px;}
.x1f{left:487.320000px;}
.x2a{left:491.190000px;}
.xf{left:505.230000px;}
.x15{left:511.800000px;}
.x20{left:541.320000px;}
.x17{left:551.850000px;}
.x2b{left:568.230000px;}
.x10{left:574.080000px;}
.x21{left:606.210000px;}
.x18{left:610.470000px;}
.x11{left:643.140000px;}
.x22{left:658.440000px;}
.x19{left:667.260000px;}
.x1a{left:717.660000px;}
.x12{left:730.080000px;}
.x1b{left:765.900000px;}
.x2c{left:781.380000px;}
.x2{left:782.550000px;}
.xc{left:846.270000px;}
@media print{
.v3{vertical-align:-50.880000pt;}
.v7{vertical-align:-32.000000pt;}
.v4{vertical-align:-26.880000pt;}
.v6{vertical-align:-8.000000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:21.440000pt;}
.v5{vertical-align:24.000000pt;}
.v1{vertical-align:37.546667pt;}
.ls15{letter-spacing:-0.618667pt;}
.ls9{letter-spacing:-0.515733pt;}
.ls14{letter-spacing:-0.367467pt;}
.ls22{letter-spacing:-0.320000pt;}
.lsc{letter-spacing:-0.240000pt;}
.ls10{letter-spacing:-0.195733pt;}
.lsf{letter-spacing:-0.167467pt;}
.ls12{letter-spacing:-0.160000pt;}
.ls8{letter-spacing:-0.148267pt;}
.lsb{letter-spacing:-0.136533pt;}
.ls1d{letter-spacing:-0.091733pt;}
.lsa{letter-spacing:-0.047360pt;}
.ls7{letter-spacing:0.000000pt;}
.ls16{letter-spacing:0.015360pt;}
.ls17{letter-spacing:0.048640pt;}
.ls2{letter-spacing:0.049920pt;}
.ls18{letter-spacing:0.076267pt;}
.ls0{letter-spacing:0.080000pt;}
.ls4{letter-spacing:0.082560pt;}
.ls1c{letter-spacing:0.091520pt;}
.ls13{letter-spacing:0.101333pt;}
.ls1b{letter-spacing:0.106667pt;}
.ls1a{letter-spacing:0.124267pt;}
.ls6{letter-spacing:0.124480pt;}
.ls1{letter-spacing:0.136320pt;}
.lse{letter-spacing:0.152533pt;}
.ls5{letter-spacing:0.160000pt;}
.ls3{letter-spacing:0.228480pt;}
.ls1e{letter-spacing:0.272533pt;}
.ls11{letter-spacing:0.331733pt;}
.ls1f{letter-spacing:0.480000pt;}
.ls21{letter-spacing:8.487680pt;}
.ls20{letter-spacing:31.207680pt;}
.lsd{letter-spacing:38.263680pt;}
.ls19{letter-spacing:48.400000pt;}
.ws0{word-spacing:-18.160000pt;}
.wsb{word-spacing:-13.520000pt;}
.wse{word-spacing:-13.484267pt;}
.ws9{word-spacing:-13.360000pt;}
.ws2{word-spacing:-13.223467pt;}
.ws1{word-spacing:-13.211733pt;}
.wsa{word-spacing:-13.200000pt;}
.ws8{word-spacing:-13.164267pt;}
.ws4{word-spacing:-12.844267pt;}
.wsc{word-spacing:-12.741333pt;}
.ws6{word-spacing:-11.512533pt;}
.wsd{word-spacing:-11.436267pt;}
.ws3{word-spacing:-11.360000pt;}
.wsf{word-spacing:-11.268267pt;}
.ws7{word-spacing:-11.192533pt;}
.ws12{word-spacing:-11.040000pt;}
.ws11{word-spacing:-8.640000pt;}
.ws10{word-spacing:-7.360000pt;}
.ws5{word-spacing:0.000000pt;}
._2d{margin-left:-12.080000pt;}
._2c{margin-left:-5.508053pt;}
._0{margin-left:-1.143253pt;}
._3{width:1.122240pt;}
._5{width:2.049707pt;}
._1c{width:2.956693pt;}
._8{width:3.901120pt;}
._6{width:4.916480pt;}
._7{width:6.137173pt;}
._1{width:7.535040pt;}
._4{width:8.871040pt;}
._16{width:10.587200pt;}
._b{width:11.649920pt;}
._35{width:12.826987pt;}
._19{width:14.556693pt;}
._e{width:15.604480pt;}
._f{width:16.566400pt;}
._12{width:17.589227pt;}
._2{width:18.543680pt;}
._c{width:20.307200pt;}
._d{width:21.269120pt;}
._39{width:22.173653pt;}
._1d{width:23.086080pt;}
._10{width:24.817173pt;}
._9{width:26.132160pt;}
._a{width:27.307840pt;}
._18{width:28.590400pt;}
._21{width:29.979840pt;}
._1e{width:31.369280pt;}
._22{width:32.919040pt;}
._20{width:34.200213pt;}
._1f{width:35.323840pt;}
._1b{width:37.087360pt;}
._1a{width:38.049280pt;}
._25{width:39.331840pt;}
._3a{width:40.709760pt;}
._36{width:41.896960pt;}
._37{width:46.118720pt;}
._24{width:48.096000pt;}
._27{width:51.195520pt;}
._14{width:53.226240pt;}
._15{width:54.189760pt;}
._26{width:57.715200pt;}
._3b{width:58.996480pt;}
._13{width:64.288320pt;}
._38{width:75.157760pt;}
._33{width:89.196160pt;}
._2b{width:110.136320pt;}
._2a{width:122.000000pt;}
._11{width:127.001600pt;}
._28{width:128.246187pt;}
._29{width:134.136747pt;}
._34{width:182.880000pt;}
._32{width:205.068267pt;}
._30{width:237.425280pt;}
._2f{width:238.491307pt;}
._2e{width:324.631147pt;}
._31{width:351.078187pt;}
._23{width:1831.709653pt;}
._17{width:1839.840000pt;}
.fs7{font-size:2.560000pt;}
.fs5{font-size:29.440000pt;}
.fs4{font-size:32.000000pt;}
.fs6{font-size:34.560000pt;}
.fs2{font-size:45.440000pt;}
.fs0{font-size:53.440000pt;}
.fs1{font-size:80.000000pt;}
.fs3{font-size:85.440000pt;}
.y0{bottom:0.000000pt;}
.y192{bottom:3.760000pt;}
.y2b{bottom:3.840000pt;}
.y195{bottom:4.640000pt;}
.y196{bottom:6.240000pt;}
.y185{bottom:6.720000pt;}
.y188{bottom:9.360000pt;}
.y152{bottom:10.400000pt;}
.y14d{bottom:10.720000pt;}
.y122{bottom:11.920000pt;}
.y1c1{bottom:12.000000pt;}
.y183{bottom:12.080000pt;}
.y167{bottom:13.040000pt;}
.y181{bottom:14.880000pt;}
.y1c4{bottom:14.960000pt;}
.y133{bottom:15.920000pt;}
.y180{bottom:16.960000pt;}
.y1c5{bottom:17.040000pt;}
.y2a{bottom:17.920000pt;}
.y198{bottom:21.440000pt;}
.y193{bottom:22.240000pt;}
.y199{bottom:23.520000pt;}
.y194{bottom:24.320000pt;}
.y151{bottom:24.480000pt;}
.y166{bottom:27.120000pt;}
.y14c{bottom:27.280000pt;}
.y132{bottom:32.800000pt;}
.y150{bottom:38.560000pt;}
.y165{bottom:41.200000pt;}
.y171{bottom:41.760000pt;}
.y174{bottom:41.840000pt;}
.y14b{bottom:43.840000pt;}
.y29{bottom:44.560000pt;}
.y131{bottom:49.760000pt;}
.y4e{bottom:55.306667pt;}
.y28{bottom:57.920000pt;}
.y164{bottom:58.080000pt;}
.y170{bottom:58.640000pt;}
.y173{bottom:58.800000pt;}
.y14a{bottom:60.400000pt;}
.y2{bottom:66.026667pt;}
.y130{bottom:66.720000pt;}
.y27{bottom:71.200000pt;}
.y163{bottom:75.040000pt;}
.y149{bottom:76.960000pt;}
.y12f{bottom:83.600000pt;}
.y26{bottom:85.760000pt;}
.y162{bottom:88.320000pt;}
.y16f{bottom:88.880000pt;}
.y148{bottom:93.440000pt;}
.y12e{bottom:100.560000pt;}
.y161{bottom:105.280000pt;}
.y239{bottom:105.546667pt;}
.y1e{bottom:109.066667pt;}
.y134{bottom:109.226667pt;}
.y81{bottom:109.386667pt;}
.y147{bottom:110.000000pt;}
.y1f8{bottom:110.106667pt;}
.y4c{bottom:112.186667pt;}
.yc1{bottom:113.546667pt;}
.ye9{bottom:114.906667pt;}
.y1bc{bottom:114.986667pt;}
.y25{bottom:115.280000pt;}
.y12d{bottom:117.520000pt;}
.y160{bottom:118.560000pt;}
.y172{bottom:119.120000pt;}
.y16e{bottom:119.200000pt;}
.y238{bottom:119.226667pt;}
.y1bf{bottom:119.280000pt;}
.y276{bottom:124.826667pt;}
.y80{bottom:126.426667pt;}
.y146{bottom:126.560000pt;}
.y1bd{bottom:127.226667pt;}
.y1c6{bottom:128.026667pt;}
.y4b{bottom:129.226667pt;}
.y24{bottom:129.360000pt;}
.yc0{bottom:130.586667pt;}
.ye8{bottom:131.866667pt;}
.y237{bottom:132.906667pt;}
.y17c{bottom:133.306667pt;}
.y1be{bottom:133.360000pt;}
.y12c{bottom:134.400000pt;}
.y15f{bottom:135.520000pt;}
.y275{bottom:138.506667pt;}
.y23{bottom:143.360000pt;}
.y20b{bottom:143.466667pt;}
.y7f{bottom:143.546667pt;}
.y145{bottom:143.840000pt;}
.y1f7{bottom:144.266667pt;}
.y9b{bottom:145.146667pt;}
.y4a{bottom:146.266667pt;}
.y236{bottom:146.586667pt;}
.ybf{bottom:147.706667pt;}
.y15e{bottom:148.720000pt;}
.ye7{bottom:148.906667pt;}
.y16d{bottom:149.360000pt;}
.y17b{bottom:150.266667pt;}
.y12b{bottom:151.360000pt;}
.y274{bottom:152.506667pt;}
.y1c3{bottom:158.586667pt;}
.y20a{bottom:160.506667pt;}
.y235{bottom:160.586667pt;}
.y7e{bottom:160.826667pt;}
.y144{bottom:161.040000pt;}
.y1f6{bottom:161.306667pt;}
.y49{bottom:163.306667pt;}
.ybe{bottom:164.746667pt;}
.y15d{bottom:165.760000pt;}
.ye6{bottom:165.946667pt;}
.y273{bottom:166.186667pt;}
.y12a{bottom:168.240000pt;}
.y17a{bottom:168.986667pt;}
.y22{bottom:173.360000pt;}
.y234{bottom:174.266667pt;}
.y7d{bottom:177.786667pt;}
.y9a{bottom:178.266667pt;}
.y143{bottom:178.320000pt;}
.y1f5{bottom:178.346667pt;}
.y15c{bottom:178.960000pt;}
.y16c{bottom:179.680000pt;}
.y272{bottom:179.866667pt;}
.y48{bottom:180.426667pt;}
.ybd{bottom:181.786667pt;}
.ye5{bottom:182.986667pt;}
.y129{bottom:185.120000pt;}
.y179{bottom:186.266667pt;}
.y21{bottom:186.640000pt;}
.y233{bottom:187.946667pt;}
.y1c2{bottom:189.226667pt;}
.y271{bottom:193.546667pt;}
.y209{bottom:193.706667pt;}
.y7c{bottom:194.826667pt;}
.y1f4{bottom:195.386667pt;}
.y142{bottom:195.600000pt;}
.y15b{bottom:196.000000pt;}
.y11e{bottom:196.906667pt;}
.y47{bottom:197.466667pt;}
.ybc{bottom:198.826667pt;}
.ye4{bottom:200.106667pt;}
.y20{bottom:200.720000pt;}
.y232{bottom:201.946667pt;}
.y128{bottom:202.080000pt;}
.y178{bottom:203.226667pt;}
.y270{bottom:207.546667pt;}
.y15a{bottom:209.200000pt;}
.y16b{bottom:209.920000pt;}
.y7b{bottom:211.866667pt;}
.y1f3{bottom:212.506667pt;}
.y141{bottom:212.800000pt;}
.y108{bottom:213.306667pt;}
.y11d{bottom:214.106667pt;}
.y46{bottom:214.506667pt;}
.y231{bottom:215.626667pt;}
.ybb{bottom:215.866667pt;}
.y1c0{bottom:216.266667pt;}
.ye3{bottom:217.146667pt;}
.y127{bottom:218.960000pt;}
.y177{bottom:220.266667pt;}
.y1f{bottom:220.320000pt;}
.y26f{bottom:221.226667pt;}
.y159{bottom:226.160000pt;}
.y16a{bottom:226.800000pt;}
.y7a{bottom:228.906667pt;}
.y230{bottom:229.306667pt;}
.y1f2{bottom:229.546667pt;}
.y140{bottom:230.080000pt;}
.y11c{bottom:231.306667pt;}
.y45{bottom:231.546667pt;}
.yba{bottom:232.986667pt;}
.ye2{bottom:234.186667pt;}
.y26e{bottom:234.906667pt;}
.y126{bottom:235.920000pt;}
.y99{bottom:236.426667pt;}
.y158{bottom:243.120000pt;}
.y22f{bottom:243.386667pt;}
.y79{bottom:246.026667pt;}
.y107{bottom:246.506667pt;}
.y1f1{bottom:246.586667pt;}
.y208{bottom:246.666667pt;}
.y13f{bottom:247.280000pt;}
.y11b{bottom:248.266667pt;}
.y26d{bottom:248.586667pt;}
.y44{bottom:248.666667pt;}
.y176{bottom:249.066667pt;}
.yb9{bottom:250.026667pt;}
.ye1{bottom:251.226667pt;}
.y125{bottom:252.906667pt;}
.y98{bottom:253.466667pt;}
.y157{bottom:256.320000pt;}
.y169{bottom:257.040000pt;}
.y22e{bottom:257.066667pt;}
.y26c{bottom:262.666667pt;}
.y78{bottom:263.066667pt;}
.y106{bottom:263.466667pt;}
.y207{bottom:263.626667pt;}
.y1f0{bottom:263.866667pt;}
.y13e{bottom:264.560000pt;}
.y11a{bottom:265.386667pt;}
.y43{bottom:265.706667pt;}
.yb8{bottom:267.066667pt;}
.ye0{bottom:268.266667pt;}
.y124{bottom:269.786667pt;}
.y97{bottom:270.746667pt;}
.y156{bottom:273.280000pt;}
.y26b{bottom:276.346667pt;}
.y77{bottom:280.106667pt;}
.y105{bottom:280.506667pt;}
.y206{bottom:280.746667pt;}
.y1ef{bottom:280.826667pt;}
.y13d{bottom:281.840000pt;}
.y119{bottom:282.426667pt;}
.y42{bottom:282.746667pt;}
.y1a9{bottom:283.786667pt;}
.yb7{bottom:284.106667pt;}
.y22d{bottom:284.746667pt;}
.ydf{bottom:285.386667pt;}
.y155{bottom:286.560000pt;}
.y168{bottom:287.280000pt;}
.y96{bottom:287.706667pt;}
.y26a{bottom:290.026667pt;}
.y76{bottom:297.386667pt;}
.y104{bottom:297.546667pt;}
.y205{bottom:297.786667pt;}
.y1ee{bottom:297.866667pt;}
.y22c{bottom:298.426667pt;}
.y13c{bottom:299.040000pt;}
.y118{bottom:299.466667pt;}
.y41{bottom:299.786667pt;}
.y1a8{bottom:300.746667pt;}
.yb6{bottom:301.146667pt;}
.y1bb{bottom:301.226667pt;}
.yde{bottom:302.426667pt;}
.y154{bottom:303.520000pt;}
.y269{bottom:303.706667pt;}
.y95{bottom:304.746667pt;}
.y22b{bottom:312.106667pt;}
.y75{bottom:314.346667pt;}
.y103{bottom:314.586667pt;}
.y204{bottom:314.826667pt;}
.y1ed{bottom:314.986667pt;}
.y13b{bottom:316.346667pt;}
.y117{bottom:316.506667pt;}
.y40{bottom:317.066667pt;}
.y268{bottom:317.386667pt;}
.y153{bottom:317.626667pt;}
.y1a7{bottom:317.786667pt;}
.yb5{bottom:318.266667pt;}
.ydd{bottom:319.466667pt;}
.y94{bottom:322.026667pt;}
.y22a{bottom:325.786667pt;}
.y267{bottom:331.066667pt;}
.y74{bottom:331.386667pt;}
.y102{bottom:331.706667pt;}
.y203{bottom:331.866667pt;}
.y1ec{bottom:332.026667pt;}
.y116{bottom:333.546667pt;}
.y3f{bottom:334.026667pt;}
.y1a6{bottom:334.826667pt;}
.yb4{bottom:335.306667pt;}
.ydc{bottom:336.506667pt;}
.y93{bottom:338.986667pt;}
.y229{bottom:339.786667pt;}
.y266{bottom:345.066667pt;}
.y73{bottom:348.506667pt;}
.y101{bottom:348.746667pt;}
.y1eb{bottom:349.066667pt;}
.y202{bottom:349.146667pt;}
.y115{bottom:350.666667pt;}
.y13a{bottom:350.826667pt;}
.y3e{bottom:351.066667pt;}
.y1a5{bottom:351.866667pt;}
.yb3{bottom:352.346667pt;}
.y228{bottom:353.466667pt;}
.ydb{bottom:353.546667pt;}
.y265{bottom:358.746667pt;}
.y1d{bottom:359.786667pt;}
.y72{bottom:365.546667pt;}
.y100{bottom:365.786667pt;}
.y1ea{bottom:366.106667pt;}
.y139{bottom:367.466667pt;}
.y227{bottom:367.546667pt;}
.y114{bottom:367.706667pt;}
.y3d{bottom:368.186667pt;}
.y1a4{bottom:368.986667pt;}
.yb2{bottom:369.386667pt;}
.yda{bottom:370.666667pt;}
.y264{bottom:372.426667pt;}
.y1c{bottom:376.826667pt;}
.y226{bottom:381.226667pt;}
.y71{bottom:382.586667pt;}
.y92{bottom:382.826667pt;}
.y1e9{bottom:383.146667pt;}
.y138{bottom:384.186667pt;}
.y113{bottom:384.746667pt;}
.y3c{bottom:385.226667pt;}
.y1a3{bottom:386.026667pt;}
.y263{bottom:386.106667pt;}
.yb1{bottom:386.506667pt;}
.yd9{bottom:387.706667pt;}
.y1b{bottom:393.866667pt;}
.y225{bottom:394.906667pt;}
.y70{bottom:399.626667pt;}
.y91{bottom:399.786667pt;}
.yff{bottom:399.946667pt;}
.y262{bottom:400.106667pt;}
.y1e8{bottom:400.266667pt;}
.y137{bottom:400.826667pt;}
.y112{bottom:401.786667pt;}
.y3b{bottom:402.266667pt;}
.y1a2{bottom:403.066667pt;}
.yb0{bottom:403.546667pt;}
.yd8{bottom:404.746667pt;}
.y224{bottom:408.906667pt;}
.y1a{bottom:410.906667pt;}
.y261{bottom:413.786667pt;}
.y6f{bottom:416.666667pt;}
.y90{bottom:416.826667pt;}
.yfe{bottom:416.986667pt;}
.y1e7{bottom:417.306667pt;}
.y136{bottom:417.546667pt;}
.y111{bottom:418.826667pt;}
.y3a{bottom:419.306667pt;}
.y1a1{bottom:420.106667pt;}
.yaf{bottom:420.586667pt;}
.yd7{bottom:421.786667pt;}
.y223{bottom:422.586667pt;}
.y260{bottom:427.493333pt;}
.y19{bottom:428.053333pt;}
.y6e{bottom:433.813333pt;}
.y8f{bottom:433.893333pt;}
.yfd{bottom:434.053333pt;}
.y1e6{bottom:434.373333pt;}
.y222{bottom:436.293333pt;}
.y39{bottom:436.453333pt;}
.y1a0{bottom:437.173333pt;}
.yae{bottom:437.653333pt;}
.yd6{bottom:438.933333pt;}
.y25f{bottom:441.573333pt;}
.y18{bottom:445.093333pt;}
.y14f{bottom:449.013333pt;}
.y221{bottom:450.293333pt;}
.y6d{bottom:450.853333pt;}
.y8e{bottom:450.933333pt;}
.yfc{bottom:451.093333pt;}
.y1e5{bottom:451.413333pt;}
.y110{bottom:452.053333pt;}
.y38{bottom:453.493333pt;}
.y19f{bottom:454.293333pt;}
.yad{bottom:454.693333pt;}
.y1ba{bottom:454.773333pt;}
.y25e{bottom:455.253333pt;}
.yd5{bottom:455.973333pt;}
.y135{bottom:460.986667pt;}
.y17{bottom:462.373333pt;}
.y220{bottom:463.973333pt;}
.y6c{bottom:467.893333pt;}
.y8d{bottom:468.053333pt;}
.yfb{bottom:468.133333pt;}
.y1e4{bottom:468.533333pt;}
.y25d{bottom:468.933333pt;}
.y19e{bottom:471.333333pt;}
.y1b9{bottom:471.813333pt;}
.yd4{bottom:473.013333pt;}
.y21f{bottom:477.653333pt;}
.y16{bottom:479.333333pt;}
.y25c{bottom:482.933333pt;}
.y8c{bottom:485.093333pt;}
.y6b{bottom:485.173333pt;}
.yfa{bottom:485.253333pt;}
.y1e3{bottom:485.573333pt;}
.y37{bottom:486.693333pt;}
.yac{bottom:487.893333pt;}
.y19d{bottom:488.373333pt;}
.y1b8{bottom:488.853333pt;}
.y21e{bottom:491.333333pt;}
.y15{bottom:496.373333pt;}
.y25b{bottom:496.613333pt;}
.y10f{bottom:501.973333pt;}
.y6a{bottom:502.133333pt;}
.yf9{bottom:502.293333pt;}
.y1e2{bottom:502.613333pt;}
.yab{bottom:504.453333pt;}
.y19c{bottom:505.413333pt;}
.y1b7{bottom:505.893333pt;}
.yd3{bottom:506.293333pt;}
.y14e{bottom:509.173333pt;}
.y25a{bottom:510.293333pt;}
.y14{bottom:513.413333pt;}
.y10e{bottom:519.093333pt;}
.y69{bottom:519.173333pt;}
.yf8{bottom:519.333333pt;}
.y1e1{bottom:519.653333pt;}
.y19b{bottom:522.533333pt;}
.y1b6{bottom:522.933333pt;}
.y259{bottom:523.973333pt;}
.y13{bottom:530.533333pt;}
.y21d{bottom:532.773333pt;}
.y36{bottom:536.133333pt;}
.y68{bottom:536.293333pt;}
.yf7{bottom:536.613333pt;}
.y1e0{bottom:536.693333pt;}
.y258{bottom:537.653333pt;}
.yaa{bottom:537.733333pt;}
.yd2{bottom:539.573333pt;}
.y1b5{bottom:540.053333pt;}
.y21c{bottom:546.453333pt;}
.y12{bottom:547.573333pt;}
.y257{bottom:551.653333pt;}
.y67{bottom:553.333333pt;}
.y35{bottom:553.413333pt;}
.yf6{bottom:553.573333pt;}
.y1df{bottom:553.813333pt;}
.ya9{bottom:554.693333pt;}
.yd1{bottom:556.533333pt;}
.y21b{bottom:560.133333pt;}
.y11{bottom:564.613333pt;}
.y256{bottom:565.333333pt;}
.y66{bottom:570.373333pt;}
.yf5{bottom:570.613333pt;}
.y1de{bottom:570.853333pt;}
.ya8{bottom:571.813333pt;}
.y1b4{bottom:573.253333pt;}
.yd0{bottom:573.573333pt;}
.y19a{bottom:573.813333pt;}
.y21a{bottom:574.133333pt;}
.y255{bottom:579.013333pt;}
.y10{bottom:581.653333pt;}
.y65{bottom:587.413333pt;}
.yf4{bottom:587.733333pt;}
.y219{bottom:587.813333pt;}
.y1dd{bottom:587.893333pt;}
.y34{bottom:588.213333pt;}
.ya7{bottom:588.853333pt;}
.y197{bottom:589.173333pt;}
.ycf{bottom:590.613333pt;}
.y123{bottom:591.893333pt;}
.y254{bottom:592.773333pt;}
.yf{bottom:598.693333pt;}
.y218{bottom:601.493333pt;}
.y64{bottom:604.453333pt;}
.yf3{bottom:604.773333pt;}
.y1dc{bottom:604.933333pt;}
.y201{bottom:605.173333pt;}
.y33{bottom:605.333333pt;}
.ya6{bottom:605.893333pt;}
.y253{bottom:606.773333pt;}
.y28b{bottom:607.413333pt;}
.yce{bottom:607.653333pt;}
.y217{bottom:615.493333pt;}
.ye{bottom:615.813333pt;}
.y252{bottom:620.453333pt;}
.y28a{bottom:621.093333pt;}
.y63{bottom:621.573333pt;}
.yf2{bottom:621.813333pt;}
.y1db{bottom:621.973333pt;}
.y200{bottom:622.133333pt;}
.y32{bottom:622.373333pt;}
.y1b3{bottom:622.533333pt;}
.ya5{bottom:622.933333pt;}
.ycd{bottom:624.773333pt;}
.y216{bottom:629.573333pt;}
.y175{bottom:631.413333pt;}
.yd{bottom:632.853333pt;}
.y251{bottom:634.133333pt;}
.y289{bottom:634.773333pt;}
.y62{bottom:638.613333pt;}
.yf1{bottom:638.853333pt;}
.y1da{bottom:639.093333pt;}
.y1ff{bottom:639.173333pt;}
.y31{bottom:639.413333pt;}
.y1b2{bottom:639.573333pt;}
.ya4{bottom:639.973333pt;}
.ycc{bottom:641.813333pt;}
.y215{bottom:643.253333pt;}
.y250{bottom:648.133333pt;}
.y288{bottom:648.773333pt;}
.yc{bottom:649.893333pt;}
.y61{bottom:655.653333pt;}
.yf0{bottom:655.893333pt;}
.y1d9{bottom:656.133333pt;}
.y1fe{bottom:656.293333pt;}
.y30{bottom:656.453333pt;}
.y1b1{bottom:656.693333pt;}
.y214{bottom:656.933333pt;}
.ya3{bottom:657.093333pt;}
.ycb{bottom:658.853333pt;}
.y24f{bottom:661.813333pt;}
.y287{bottom:662.453333pt;}
.yb{bottom:666.933333pt;}
.y60{bottom:672.693333pt;}
.y10d{bottom:672.853333pt;}
.yef{bottom:673.013333pt;}
.y1d8{bottom:673.173333pt;}
.y1fd{bottom:673.333333pt;}
.y2f{bottom:673.493333pt;}
.y1b0{bottom:673.733333pt;}
.y191{bottom:673.973333pt;}
.ya2{bottom:674.133333pt;}
.y24e{bottom:675.813333pt;}
.yca{bottom:675.893333pt;}
.y286{bottom:676.133333pt;}
.y213{bottom:684.853333pt;}
.ya{bottom:685.173333pt;}
.y24d{bottom:689.493333pt;}
.y5f{bottom:689.733333pt;}
.y10c{bottom:689.893333pt;}
.yee{bottom:690.053333pt;}
.y1d7{bottom:690.213333pt;}
.y1fc{bottom:690.373333pt;}
.y2e{bottom:690.773333pt;}
.ya1{bottom:691.173333pt;}
.yc9{bottom:692.933333pt;}
.y190{bottom:697.333333pt;}
.y24c{bottom:703.173333pt;}
.y285{bottom:703.893333pt;}
.y5e{bottom:706.853333pt;}
.y10b{bottom:706.933333pt;}
.yed{bottom:707.093333pt;}
.y1d6{bottom:707.253333pt;}
.y1fb{bottom:707.413333pt;}
.y2d{bottom:707.733333pt;}
.y1af{bottom:707.813333pt;}
.ya0{bottom:708.213333pt;}
.yc8{bottom:710.053333pt;}
.y18f{bottom:716.293333pt;}
.y24b{bottom:716.853333pt;}
.y284{bottom:717.573333pt;}
.y8b{bottom:723.893333pt;}
.y10a{bottom:724.053333pt;}
.y5d{bottom:724.133333pt;}
.y1d5{bottom:724.373333pt;}
.y1fa{bottom:724.453333pt;}
.y2c{bottom:724.853333pt;}
.y9f{bottom:725.333333pt;}
.y9{bottom:726.773333pt;}
.y18e{bottom:729.973333pt;}
.y24a{bottom:730.933333pt;}
.y283{bottom:731.253333pt;}
.y8{bottom:740.773333pt;}
.y8a{bottom:740.933333pt;}
.y5c{bottom:741.093333pt;}
.yec{bottom:741.173333pt;}
.y1f9{bottom:741.573333pt;}
.y1d4{bottom:741.653333pt;}
.y1ae{bottom:741.973333pt;}
.y9e{bottom:742.373333pt;}
.yc7{bottom:743.173333pt;}
.y249{bottom:744.613333pt;}
.y282{bottom:745.253333pt;}
.y18d{bottom:747.173333pt;}
.y212{bottom:749.093333pt;}
.y5b{bottom:758.133333pt;}
.y89{bottom:758.213333pt;}
.yeb{bottom:758.293333pt;}
.y1d3{bottom:758.613333pt;}
.y281{bottom:758.933333pt;}
.y1ad{bottom:759.013333pt;}
.yc6{bottom:759.733333pt;}
.y18c{bottom:761.093333pt;}
.y211{bottom:763.093333pt;}
.y248{bottom:771.973333pt;}
.y280{bottom:772.613333pt;}
.y18b{bottom:775.093333pt;}
.y5a{bottom:775.173333pt;}
.yea{bottom:775.333333pt;}
.y9d{bottom:775.493333pt;}
.y1d2{bottom:775.653333pt;}
.y1ac{bottom:776.053333pt;}
.y210{bottom:776.773333pt;}
.y247{bottom:785.973333pt;}
.y27f{bottom:786.293333pt;}
.y20f{bottom:790.453333pt;}
.y59{bottom:792.213333pt;}
.yc5{bottom:792.373333pt;}
.y1d1{bottom:792.693333pt;}
.y1ab{bottom:793.093333pt;}
.y18a{bottom:798.373333pt;}
.y246{bottom:799.653333pt;}
.y27e{bottom:800.293333pt;}
.y20e{bottom:804.133333pt;}
.y9c{bottom:808.773333pt;}
.y58{bottom:809.333333pt;}
.yc4{bottom:809.413333pt;}
.y109{bottom:809.493333pt;}
.y1d0{bottom:809.733333pt;}
.y1aa{bottom:810.133333pt;}
.y189{bottom:812.053333pt;}
.y245{bottom:813.333333pt;}
.y27d{bottom:813.973333pt;}
.y20d{bottom:817.813333pt;}
.y187{bottom:823.173333pt;}
.y57{bottom:826.373333pt;}
.yc3{bottom:826.453333pt;}
.y1cf{bottom:826.853333pt;}
.y244{bottom:827.333333pt;}
.y27c{bottom:827.733333pt;}
.y20c{bottom:831.573333pt;}
.y7{bottom:838.293333pt;}
.y243{bottom:841.013333pt;}
.y27b{bottom:841.413333pt;}
.y56{bottom:843.413333pt;}
.yc2{bottom:843.573333pt;}
.y88{bottom:843.653333pt;}
.y1ce{bottom:843.893333pt;}
.y186{bottom:846.240000pt;}
.y242{bottom:855.120000pt;}
.y27a{bottom:855.440000pt;}
.y55{bottom:860.480000pt;}
.y87{bottom:860.640000pt;}
.y1cd{bottom:860.960000pt;}
.y184{bottom:866.640000pt;}
.y241{bottom:868.800000pt;}
.y279{bottom:869.120000pt;}
.y54{bottom:877.520000pt;}
.y86{bottom:877.680000pt;}
.y1cc{bottom:878.000000pt;}
.y6{bottom:881.840000pt;}
.y240{bottom:882.480000pt;}
.y278{bottom:882.800000pt;}
.y121{bottom:883.920000pt;}
.y182{bottom:887.040000pt;}
.y53{bottom:894.640000pt;}
.y85{bottom:894.720000pt;}
.y1cb{bottom:895.040000pt;}
.y23f{bottom:896.480000pt;}
.y5{bottom:905.680000pt;}
.y23e{bottom:910.160000pt;}
.y52{bottom:911.680000pt;}
.y84{bottom:911.840000pt;}
.y1ca{bottom:912.160000pt;}
.y17f{bottom:914.080000pt;}
.y23d{bottom:923.840000pt;}
.y51{bottom:928.720000pt;}
.y83{bottom:928.880000pt;}
.y1c9{bottom:929.200000pt;}
.y277{bottom:937.520000pt;}
.y23c{bottom:937.840000pt;}
.y120{bottom:945.840000pt;}
.y82{bottom:945.920000pt;}
.y50{bottom:946.000000pt;}
.y1c8{bottom:946.240000pt;}
.y17e{bottom:949.200000pt;}
.y23b{bottom:951.520000pt;}
.y17d{bottom:962.880000pt;}
.y4f{bottom:962.960000pt;}
.y11f{bottom:963.040000pt;}
.y1c7{bottom:963.280000pt;}
.y23a{bottom:965.200000pt;}
.y4{bottom:967.440000pt;}
.y3{bottom:983.520000pt;}
.y4d{bottom:996.240000pt;}
.y1{bottom:996.880000pt;}
.h1d{height:2.512500pt;}
.h15{height:14.000000pt;}
.h17{height:16.480000pt;}
.h13{height:16.960000pt;}
.h14{height:19.600000pt;}
.hb{height:22.160000pt;}
.h1b{height:22.240000pt;}
.h12{height:22.320000pt;}
.h11{height:27.200000pt;}
.h1c{height:27.280000pt;}
.h8{height:31.728125pt;}
.h18{height:33.760000pt;}
.h16{height:34.560000pt;}
.h9{height:37.314062pt;}
.h7{height:44.596875pt;}
.h1e{height:46.705160pt;}
.hf{height:48.800000pt;}
.h2{height:52.448437pt;}
.ha{height:54.927899pt;}
.h19{height:57.918750pt;}
.h3{height:69.960938pt;}
.he{height:71.360000pt;}
.h4{height:83.854687pt;}
.h5{height:89.995104pt;}
.h1a{height:143.600000pt;}
.h6{height:235.600000pt;}
.hc{height:280.026667pt;}
.h10{height:327.866667pt;}
.hd{height:471.306667pt;}
.h0{height:1054.480000pt;}
.h1{height:1054.666667pt;}
.w1c{width:11.360000pt;}
.w25{width:31.200000pt;}
.w11{width:42.880000pt;}
.w10{width:44.800000pt;}
.w12{width:44.960000pt;}
.w17{width:46.426667pt;}
.wb{width:46.720000pt;}
.w15{width:48.000000pt;}
.wf{width:50.480000pt;}
.we{width:52.186667pt;}
.w1b{width:56.266667pt;}
.w20{width:57.200000pt;}
.w24{width:57.520000pt;}
.w16{width:57.680000pt;}
.w6{width:61.200000pt;}
.w7{width:61.386667pt;}
.w18{width:63.680000pt;}
.w23{width:65.920000pt;}
.w22{width:66.026667pt;}
.w21{width:68.480000pt;}
.w19{width:70.666667pt;}
.w9{width:76.800000pt;}
.w8{width:77.280000pt;}
.wd{width:82.320000pt;}
.w14{width:87.680000pt;}
.w5{width:97.920000pt;}
.w4{width:109.946667pt;}
.w1e{width:129.706667pt;}
.w1a{width:166.480000pt;}
.w3{width:173.226667pt;}
.w1f{width:181.786667pt;}
.wc{width:270.826667pt;}
.w13{width:277.493333pt;}
.w2{width:317.573333pt;}
.wa{width:340.213333pt;}
.w1d{width:657.760000pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x16{left:-46.720000pt;}
.x0{left:0.000000pt;}
.x13{left:5.600000pt;}
.x1c{left:8.000000pt;}
.x1d{left:11.120000pt;}
.x14{left:15.120000pt;}
.x3{left:66.960000pt;}
.x1{left:68.000000pt;}
.x7{left:69.840000pt;}
.x8{left:82.160000pt;}
.x2d{left:87.440000pt;}
.x25{left:138.746667pt;}
.x28{left:197.706667pt;}
.x23{left:199.226667pt;}
.xd{left:241.226667pt;}
.x26{left:305.226667pt;}
.x4{left:317.493333pt;}
.x1e{left:345.493333pt;}
.xe{left:351.173333pt;}
.x27{left:361.493333pt;}
.x29{left:379.493333pt;}
.x24{left:385.493333pt;}
.x5{left:407.173333pt;}
.xa{left:408.213333pt;}
.x6{left:422.373333pt;}
.x9{left:423.333333pt;}
.x2e{left:427.653333pt;}
.xb{left:431.493333pt;}
.x1f{left:433.173333pt;}
.x2a{left:436.613333pt;}
.xf{left:449.093333pt;}
.x15{left:454.933333pt;}
.x20{left:481.173333pt;}
.x17{left:490.533333pt;}
.x2b{left:505.093333pt;}
.x10{left:510.293333pt;}
.x21{left:538.853333pt;}
.x18{left:542.640000pt;}
.x11{left:571.680000pt;}
.x22{left:585.280000pt;}
.x19{left:593.120000pt;}
.x1a{left:637.920000pt;}
.x12{left:648.960000pt;}
.x1b{left:680.800000pt;}
.x2c{left:694.560000pt;}
.x2{left:695.600000pt;}
.xc{left:752.240000pt;}
}




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