
    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_900e69e3002ed557c235a586.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.107422;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_59b8332295bd575f489cbbd0.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.119629;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_c78f8a8b4b45dc41c035f286.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.736816;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_63a58e6fb851548b13294487.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.104492;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_44793d54f74893ee43a09a79.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_bd6fa845ac09e080ee3057a1.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.107422;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_7a308818adefd993bf8d747b.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.378906;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_50a7cff37dfabfb5616965fc.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;}
.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);}
.v0{vertical-align:0.000000px;}
.ls8{letter-spacing:-1.620000px;}
.lsf{letter-spacing:-1.440000px;}
.ls10{letter-spacing:-0.828000px;}
.ls6{letter-spacing:-0.576000px;}
.ls1a{letter-spacing:-0.567600px;}
.lsb{letter-spacing:-0.450600px;}
.ls7{letter-spacing:-0.360000px;}
.lsc{letter-spacing:-0.302400px;}
.lse{letter-spacing:-0.262200px;}
.ls14{letter-spacing:-0.259800px;}
.ls1c{letter-spacing:-0.223800px;}
.ls4{letter-spacing:-0.181200px;}
.lsd{letter-spacing:-0.109200px;}
.ls15{letter-spacing:-0.106800px;}
.ls20{letter-spacing:-0.100200px;}
.ls5{letter-spacing:-0.089400px;}
.ls18{letter-spacing:-0.053280px;}
.ls3{letter-spacing:0.000000px;}
.ls1e{letter-spacing:0.053280px;}
.ls2{letter-spacing:0.072000px;}
.ls0{letter-spacing:0.144000px;}
.ls1{letter-spacing:0.252000px;}
.ls16{letter-spacing:0.262080px;}
.ls19{letter-spacing:0.262200px;}
.ls9{letter-spacing:0.269280px;}
.lsa{letter-spacing:0.269400px;}
.ls17{letter-spacing:0.288000px;}
.ls13{letter-spacing:0.370200px;}
.ls11{letter-spacing:0.372240px;}
.ls12{letter-spacing:0.552240px;}
.ls1f{letter-spacing:0.666000px;}
.ls1d{letter-spacing:0.773280px;}
.ls1b{letter-spacing:86.526720px;}
.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;}
}
.wsb{word-spacing:-20.304000px;}
.wse{word-spacing:-18.676920px;}
.ws8{word-spacing:-18.414720px;}
.ws7{word-spacing:-18.305520px;}
.wsa{word-spacing:-18.152520px;}
.ws10{word-spacing:-16.666560px;}
.wsf{word-spacing:-16.613280px;}
.wsc{word-spacing:-16.560000px;}
.ws11{word-spacing:-16.513080px;}
.wsd{word-spacing:-16.506480px;}
.ws6{word-spacing:-13.410720px;}
.ws0{word-spacing:-13.229520px;}
.ws9{word-spacing:-12.980280px;}
.ws1{word-spacing:-11.609280px;}
.ws2{word-spacing:-10.152000px;}
.ws4{word-spacing:-10.008000px;}
.ws3{word-spacing:-9.432000px;}
.ws5{word-spacing:0.000000px;}
._c{margin-left:-4.901760px;}
._3{margin-left:-3.424847px;}
._9{margin-left:-2.341444px;}
._0{margin-left:-1.228175px;}
._1{width:1.037421px;}
._2{width:2.574876px;}
._7{width:3.620177px;}
._6{width:4.712305px;}
._5{width:6.092829px;}
._4{width:7.236000px;}
._8{width:8.933770px;}
._18{width:10.275830px;}
._19{width:11.790720px;}
._10{width:12.838594px;}
._d{width:13.925364px;}
._b{width:15.134834px;}
._a{width:16.626240px;}
._22{width:17.655840px;}
._26{width:18.765360px;}
._15{width:19.805760px;}
._16{width:21.584831px;}
._1c{width:22.669980px;}
._12{width:23.780160px;}
._11{width:24.875855px;}
._1d{width:26.032320px;}
._1a{width:27.423360px;}
._1b{width:28.572484px;}
._1f{width:30.771215px;}
._17{width:32.588502px;}
._f{width:34.380117px;}
._e{width:35.606735px;}
._21{width:36.934511px;}
._20{width:38.026560px;}
._13{width:43.453440px;}
._14{width:44.837139px;}
._32{width:52.050960px;}
._23{width:60.058800px;}
._24{width:61.071840px;}
._25{width:66.178560px;}
._29{width:84.201840px;}
._27{width:86.054400px;}
._28{width:87.369120px;}
._2a{width:97.289280px;}
._1e{width:108.583920px;}
._2f{width:112.996560px;}
._2b{width:148.176480px;}
._2c{width:149.435139px;}
._31{width:259.695459px;}
._30{width:260.732880px;}
._2d{width:265.334400px;}
._2e{width:266.605059px;}
.fc4{color:rgb(5,99,193);}
.fc3{color:transparent;}
.fc2{color:rgb(165,0,33);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(164,32,53);}
.fs6{font-size:30.240000px;}
.fs5{font-size:36.000000px;}
.fs4{font-size:41.760000px;}
.fs9{font-size:45.360000px;}
.fs0{font-size:48.240000px;}
.fs3{font-size:54.000000px;}
.fs8{font-size:59.760000px;}
.fs7{font-size:66.240000px;}
.fs2{font-size:72.000000px;}
.fs1{font-size:95.760000px;}
.y2b{bottom:-17.280000px;}
.y0{bottom:0.000000px;}
.ya4{bottom:3.240000px;}
.y12d{bottom:3.270000px;}
.yba{bottom:3.780000px;}
.yd3{bottom:3.825000px;}
.y217{bottom:4.500000px;}
.yfb{bottom:4.680000px;}
.yc3{bottom:5.580000px;}
.yb9{bottom:5.940000px;}
.yd2{bottom:5.985000px;}
.ya5{bottom:6.660000px;}
.y2a{bottom:8.100000px;}
.y1b5{bottom:11.880000px;}
.yc0{bottom:18.180000px;}
.yaf{bottom:18.360000px;}
.y106{bottom:18.390000px;}
.yf1{bottom:18.405000px;}
.yb0{bottom:20.160000px;}
.yf0{bottom:20.205000px;}
.yab{bottom:20.340000px;}
.yae{bottom:20.520000px;}
.y105{bottom:20.550000px;}
.yef{bottom:20.565000px;}
.yfa{bottom:21.960000px;}
.y111{bottom:27.900000px;}
.y117{bottom:28.125000px;}
.y110{bottom:30.060000px;}
.yac{bottom:35.460000px;}
.y11d{bottom:35.505000px;}
.y216{bottom:36.180000px;}
.y11c{bottom:37.485000px;}
.yaa{bottom:37.620000px;}
.y11b{bottom:37.665000px;}
.y10c{bottom:37.800000px;}
.yb3{bottom:38.565000px;}
.yf9{bottom:39.240000px;}
.yb7{bottom:44.640000px;}
.y116{bottom:45.405000px;}
.y132{bottom:47.340000px;}
.y101{bottom:48.090000px;}
.y215{bottom:52.020000px;}
.y10b{bottom:55.080000px;}
.yb2{bottom:55.845000px;}
.yf8{bottom:56.520000px;}
.y29{bottom:57.960000px;}
.ye3{bottom:59.220000px;}
.yb6{bottom:61.920000px;}
.y115{bottom:62.685000px;}
.y100{bottom:65.370000px;}
.y1{bottom:66.060000px;}
.y214{bottom:67.860000px;}
.y10a{bottom:72.360000px;}
.yc7{bottom:73.800000px;}
.ye2{bottom:76.500000px;}
.y12a{bottom:79.950000px;}
.y114{bottom:79.965000px;}
.y28{bottom:82.080000px;}
.yff{bottom:82.650000px;}
.y213{bottom:83.700000px;}
.y109{bottom:89.460000px;}
.y1ce{bottom:90.000000px;}
.ya8{bottom:90.900000px;}
.yc6{bottom:91.080000px;}
.y194{bottom:94.680000px;}
.ya0{bottom:96.120000px;}
.y113{bottom:97.065000px;}
.y129{bottom:97.230000px;}
.y212{bottom:99.720000px;}
.ybe{bottom:100.620000px;}
.y108{bottom:106.740000px;}
.y86{bottom:106.920000px;}
.ya7{bottom:108.180000px;}
.y128{bottom:110.160000px;}
.y157{bottom:111.060000px;}
.y1cd{bottom:111.780000px;}
.y112{bottom:114.345000px;}
.y1b3{bottom:114.840000px;}
.y211{bottom:115.560000px;}
.y193{bottom:116.460000px;}
.y254{bottom:117.000000px;}
.ybd{bottom:117.720000px;}
.ydf{bottom:117.900000px;}
.y9f{bottom:124.920000px;}
.y85{bottom:128.700000px;}
.y59{bottom:130.140000px;}
.y210{bottom:131.400000px;}
.y202{bottom:132.120000px;}
.y136{bottom:132.525000px;}
.y156{bottom:132.840000px;}
.y250{bottom:133.380000px;}
.yd7{bottom:138.600000px;}
.y1b7{bottom:141.300000px;}
.ye8{bottom:142.065000px;}
.y1cc{bottom:142.560000px;}
.y253{bottom:142.920000px;}
.y1b2{bottom:143.640000px;}
.y12e{bottom:145.440000px;}
.y22a{bottom:146.520000px;}
.y20f{bottom:147.240000px;}
.y17f{bottom:147.420000px;}
.y120{bottom:148.140000px;}
.y84{bottom:150.480000px;}
.y58{bottom:151.920000px;}
.y9e{bottom:153.900000px;}
.y155{bottom:154.800000px;}
.yd9{bottom:156.630000px;}
.y24f{bottom:159.300000px;}
.ye7{bottom:159.345000px;}
.y20e{bottom:163.080000px;}
.y1cb{bottom:164.520000px;}
.y11f{bottom:165.420000px;}
.y12c{bottom:166.140000px;}
.y252{bottom:168.690000px;}
.y17e{bottom:169.230000px;}
.y1b1{bottom:172.470000px;}
.y57{bottom:173.730000px;}
.yd8{bottom:173.910000px;}
.y201{bottom:175.710000px;}
.y154{bottom:176.610000px;}
.y20d{bottom:178.965000px;}
.y25{bottom:179.490000px;}
.y83{bottom:181.470000px;}
.y9d{bottom:183.270000px;}
.y24e{bottom:185.070000px;}
.y1ca{bottom:186.330000px;}
.y17d{bottom:191.010000px;}
.y1e6{bottom:194.250000px;}
.yde{bottom:194.610000px;}
.y20c{bottom:194.985000px;}
.y24{bottom:195.330000px;}
.y56{bottom:195.510000px;}
.y200{bottom:197.490000px;}
.y153{bottom:198.390000px;}
.y12b{bottom:201.450000px;}
.y1b0{bottom:201.810000px;}
.y82{bottom:203.250000px;}
.ycb{bottom:204.165000px;}
.y23{bottom:209.550000px;}
.y20b{bottom:210.825000px;}
.y24d{bottom:210.990000px;}
.y17c{bottom:212.790000px;}
.y9c{bottom:214.050000px;}
.ydd{bottom:215.310000px;}
.y1e5{bottom:216.030000px;}
.y1c9{bottom:217.110000px;}
.y55{bottom:217.470000px;}
.y1ff{bottom:219.450000px;}
.y152{bottom:220.170000px;}
.yca{bottom:221.265000px;}
.y251{bottom:221.610000px;}
.y192{bottom:221.790000px;}
.y11e{bottom:222.150000px;}
.y229{bottom:224.130000px;}
.y81{bottom:225.030000px;}
.y20a{bottom:226.665000px;}
.y1af{bottom:232.590000px;}
.y17b{bottom:234.570000px;}
.y9b{bottom:235.830000px;}
.y24c{bottom:236.910000px;}
.y1e4{bottom:237.810000px;}
.y54{bottom:239.250000px;}
.y1fe{bottom:241.230000px;}
.y209{bottom:242.505000px;}
.y127{bottom:242.850000px;}
.y191{bottom:243.570000px;}
.y80{bottom:246.810000px;}
.y1c8{bottom:247.350000px;}
.y228{bottom:250.050000px;}
.ydc{bottom:250.590000px;}
.y151{bottom:250.950000px;}
.y17a{bottom:256.530000px;}
.y9a{bottom:257.610000px;}
.y208{bottom:258.345000px;}
.y1e3{bottom:259.590000px;}
.y53{bottom:261.030000px;}
.y24b{bottom:262.650000px;}
.y1fd{bottom:263.010000px;}
.y1ae{bottom:263.550000px;}
.y190{bottom:265.530000px;}
.ydb{bottom:271.290000px;}
.y22{bottom:271.650000px;}
.y150{bottom:272.910000px;}
.y207{bottom:274.185000px;}
.y227{bottom:275.970000px;}
.y7f{bottom:277.590000px;}
.y126{bottom:278.130000px;}
.y99{bottom:279.570000px;}
.y1e2{bottom:281.550000px;}
.y52{bottom:282.810000px;}
.y1ad{bottom:285.330000px;}
.y179{bottom:287.310000px;}
.y21{bottom:287.490000px;}
.y24a{bottom:288.570000px;}
.y206{bottom:290.205000px;}
.yda{bottom:291.990000px;}
.y1fc{bottom:293.790000px;}
.y14f{bottom:294.690000px;}
.y125{bottom:298.830000px;}
.y7e{bottom:299.550000px;}
.y98{bottom:301.350000px;}
.y226{bottom:301.710000px;}
.y20{bottom:303.510000px;}
.y51{bottom:304.590000px;}
.y205{bottom:306.045000px;}
.y178{bottom:309.090000px;}
.y1e1{bottom:312.330000px;}
.y249{bottom:314.490000px;}
.y1fb{bottom:315.570000px;}
.y1ac{bottom:316.110000px;}
.y18f{bottom:318.090000px;}
.y1f{bottom:319.350000px;}
.y124{bottom:319.530000px;}
.y7d{bottom:321.330000px;}
.y97{bottom:323.130000px;}
.y14e{bottom:325.470000px;}
.y50{bottom:326.550000px;}
.yc9{bottom:327.270000px;}
.y225{bottom:327.630000px;}
.y177{bottom:330.870000px;}
.y1e0{bottom:334.110000px;}
.y1e{bottom:335.190000px;}
.y1fa{bottom:337.530000px;}
.y1ab{bottom:337.890000px;}
.y18e{bottom:339.870000px;}
.y123{bottom:340.230000px;}
.y248{bottom:340.410000px;}
.y7c{bottom:343.110000px;}
.y96{bottom:344.910000px;}
.y14d{bottom:347.250000px;}
.yd6{bottom:347.970000px;}
.y4f{bottom:348.330000px;}
.y1d{bottom:351.030000px;}
.y224{bottom:353.550000px;}
.y1df{bottom:355.890000px;}
.y1f9{bottom:359.310000px;}
.y122{bottom:360.930000px;}
.y176{bottom:361.830000px;}
.y7b{bottom:364.890000px;}
.y247{bottom:366.150000px;}
.y1c{bottom:366.870000px;}
.yd5{bottom:368.670000px;}
.y1aa{bottom:368.850000px;}
.y4e{bottom:370.110000px;}
.y1de{bottom:377.850000px;}
.y14c{bottom:378.210000px;}
.y223{bottom:379.470000px;}
.y1f8{bottom:381.090000px;}
.y121{bottom:381.630000px;}
.y1b{bottom:382.710000px;}
.y175{bottom:383.610000px;}
.y7a{bottom:386.850000px;}
.y95{bottom:388.650000px;}
.yd4{bottom:389.370000px;}
.y1a9{bottom:390.630000px;}
.y4d{bottom:391.890000px;}
.y246{bottom:392.070000px;}
.y1a{bottom:398.730000px;}
.y1dd{bottom:399.630000px;}
.y14b{bottom:399.990000px;}
.yf2{bottom:402.330000px;}
.y1f7{bottom:402.870000px;}
.yf6{bottom:404.535000px;}
.y222{bottom:405.210000px;}
.y174{bottom:405.390000px;}
.y79{bottom:408.630000px;}
.yd1{bottom:410.070000px;}
.y1a8{bottom:412.410000px;}
.y4c{bottom:413.895000px;}
.y19{bottom:414.615000px;}
.y245{bottom:418.035000px;}
.y94{bottom:419.475000px;}
.y1dc{bottom:421.455000px;}
.yf5{bottom:421.815000px;}
.y1f6{bottom:424.875000px;}
.y18d{bottom:427.215000px;}
.y18{bottom:428.835000px;}
.y78{bottom:430.455000px;}
.yd0{bottom:430.815000px;}
.y221{bottom:431.175000px;}
.y4b{bottom:435.675000px;}
.y173{bottom:436.215000px;}
.yf4{bottom:438.915000px;}
.y93{bottom:441.255000px;}
.y1a7{bottom:443.235000px;}
.y14a{bottom:443.595000px;}
.y244{bottom:443.955000px;}
.y1f5{bottom:446.655000px;}
.y77{bottom:452.235000px;}
.y11a{bottom:454.755000px;}
.yf3{bottom:456.195000px;}
.y220{bottom:457.095000px;}
.y4a{bottom:457.455000px;}
.y172{bottom:457.995000px;}
.y92{bottom:463.035000px;}
.y1a6{bottom:465.015000px;}
.y149{bottom:465.375000px;}
.ycf{bottom:466.095000px;}
.y1f4{bottom:468.435000px;}
.y243{bottom:469.695000px;}
.y76{bottom:474.015000px;}
.y49{bottom:479.235000px;}
.y171{bottom:479.955000px;}
.y21f{bottom:483.015000px;}
.y91{bottom:484.995000px;}
.y1a5{bottom:486.975000px;}
.y148{bottom:487.335000px;}
.y119{bottom:490.035000px;}
.y1f3{bottom:490.215000px;}
.y17{bottom:490.935000px;}
.y242{bottom:495.615000px;}
.y1db{bottom:495.975000px;}
.y48{bottom:501.015000px;}
.yce{bottom:501.195000px;}
.y170{bottom:501.735000px;}
.y75{bottom:505.515000px;}
.y16{bottom:506.775000px;}
.y1a4{bottom:508.755000px;}
.y118{bottom:510.735000px;}
.y1f2{bottom:511.995000px;}
.y1da{bottom:517.755000px;}
.y147{bottom:518.115000px;}
.y241{bottom:521.535000px;}
.ycd{bottom:521.895000px;}
.y15{bottom:522.615000px;}
.y47{bottom:522.975000px;}
.y16f{bottom:523.515000px;}
.y90{bottom:528.555000px;}
.y1a3{bottom:530.535000px;}
.y107{bottom:531.435000px;}
.y18c{bottom:532.515000px;}
.y1f1{bottom:533.955000px;}
.y21e{bottom:534.675000px;}
.y14{bottom:538.635000px;}
.y1d9{bottom:539.535000px;}
.y146{bottom:539.895000px;}
.ycc{bottom:542.595000px;}
.y46{bottom:544.755000px;}
.y240{bottom:547.455000px;}
.y8f{bottom:550.335000px;}
.y16e{bottom:554.295000px;}
.y13{bottom:554.475000px;}
.y74{bottom:555.735000px;}
.y21d{bottom:560.595000px;}
.y1a2{bottom:561.315000px;}
.y145{bottom:561.675000px;}
.yc5{bottom:563.295000px;}
.y12{bottom:570.315000px;}
.y8e{bottom:572.115000px;}
.y23f{bottom:573.195000px;}
.y45{bottom:575.535000px;}
.y10f{bottom:576.255000px;}
.y73{bottom:577.515000px;}
.y1a1{bottom:583.275000px;}
.y11{bottom:586.155000px;}
.y21c{bottom:586.515000px;}
.y144{bottom:592.635000px;}
.y8d{bottom:594.075000px;}
.y10e{bottom:596.955000px;}
.y44{bottom:597.315000px;}
.y18b{bottom:598.035000px;}
.yc8{bottom:598.575000px;}
.y23e{bottom:599.115000px;}
.y72{bottom:599.295000px;}
.y10{bottom:601.995000px;}
.y1a0{bottom:605.055000px;}
.y16d{bottom:607.035000px;}
.y21b{bottom:612.255000px;}
.y1c7{bottom:614.775000px;}
.y8c{bottom:615.855000px;}
.yf{bottom:617.835000px;}
.y43{bottom:619.275000px;}
.y18a{bottom:619.815000px;}
.y71{bottom:621.255000px;}
.y143{bottom:623.415000px;}
.y23d{bottom:625.035000px;}
.y19f{bottom:626.835000px;}
.y16c{bottom:628.815000px;}
.y10d{bottom:632.235000px;}
.ye{bottom:633.855000px;}
.y8b{bottom:637.635000px;}
.y21a{bottom:638.175000px;}
.y42{bottom:641.055000px;}
.y189{bottom:641.595000px;}
.y70{bottom:643.035000px;}
.y1c6{bottom:643.575000px;}
.y142{bottom:645.195000px;}
.yd{bottom:648.075000px;}
.y19e{bottom:648.615000px;}
.y16b{bottom:650.595000px;}
.y23c{bottom:650.955000px;}
.yfe{bottom:652.935000px;}
.y219{bottom:659.085000px;}
.y41{bottom:662.865000px;}
.y6f{bottom:664.845000px;}
.y141{bottom:667.005000px;}
.y8a{bottom:668.985000px;}
.ybc{bottom:669.165000px;}
.y1d8{bottom:670.425000px;}
.y16a{bottom:672.405000px;}
.y1c5{bottom:672.945000px;}
.y23b{bottom:676.725000px;}
.y19d{bottom:679.425000px;}
.y40{bottom:684.645000px;}
.y6e{bottom:686.625000px;}
.y104{bottom:688.245000px;}
.y140{bottom:688.785000px;}
.yc4{bottom:689.865000px;}
.y1d7{bottom:692.385000px;}
.y188{bottom:694.365000px;}
.y19c{bottom:701.385000px;}
.y23a{bottom:702.645000px;}
.y169{bottom:703.365000px;}
.y1c4{bottom:703.905000px;}
.y3f{bottom:706.425000px;}
.yc{bottom:707.865000px;}
.y6d{bottom:708.405000px;}
.y103{bottom:708.945000px;}
.y218{bottom:709.485000px;}
.yc2{bottom:710.565000px;}
.y13f{bottom:710.745000px;}
.y89{bottom:710.925000px;}
.y187{bottom:716.145000px;}
.y19b{bottom:723.165000px;}
.y168{bottom:725.145000px;}
.y3e{bottom:728.385000px;}
.y239{bottom:728.565000px;}
.y102{bottom:729.645000px;}
.y6c{bottom:730.365000px;}
.yc1{bottom:731.265000px;}
.y13e{bottom:732.525000px;}
.y204{bottom:733.965000px;}
.y1c3{bottom:734.685000px;}
.y186{bottom:737.925000px;}
.y19a{bottom:744.945000px;}
.y167{bottom:746.925000px;}
.y3d{bottom:750.165000px;}
.yf7{bottom:750.345000px;}
.y6b{bottom:752.145000px;}
.y238{bottom:754.485000px;}
.y1b6{bottom:760.605000px;}
.y88{bottom:761.145000px;}
.y13d{bottom:763.305000px;}
.yb{bottom:764.925000px;}
.ybf{bottom:766.545000px;}
.y1d6{bottom:766.725000px;}
.y166{bottom:768.705000px;}
.y3c{bottom:771.945000px;}
.y6a{bottom:773.925000px;}
.y199{bottom:775.725000px;}
.y1c2{bottom:777.885000px;}
.y237{bottom:780.225000px;}
.ya{bottom:780.765000px;}
.y87{bottom:782.925000px;}
.yfd{bottom:785.625000px;}
.y1d5{bottom:788.505000px;}
.y165{bottom:790.665000px;}
.y13c{bottom:793.545000px;}
.y3b{bottom:793.725000px;}
.y1c1{bottom:795.165000px;}
.y1f0{bottom:795.705000px;}
.y198{bottom:797.505000px;}
.yb5{bottom:801.645000px;}
.y69{bottom:804.705000px;}
.y236{bottom:806.145000px;}
.y9{bottom:809.745000px;}
.y164{bottom:812.445000px;}
.y3a{bottom:815.505000px;}
.y13b{bottom:817.305000px;}
.y1ef{bottom:817.665000px;}
.y197{bottom:819.465000px;}
.y1d4{bottom:820.005000px;}
.y185{bottom:821.445000px;}
.y8{bottom:825.765000px;}
.y68{bottom:826.665000px;}
.y1c0{bottom:829.545000px;}
.y235{bottom:832.065000px;}
.ybb{bottom:836.925000px;}
.y39{bottom:837.465000px;}
.yfc{bottom:838.005000px;}
.y1ee{bottom:839.445000px;}
.y163{bottom:843.225000px;}
.y67{bottom:848.445000px;}
.y196{bottom:850.245000px;}
.y135{bottom:852.585000px;}
.y7{bottom:854.745000px;}
.yb8{bottom:857.625000px;}
.y234{bottom:857.805000px;}
.y38{bottom:859.245000px;}
.y1ed{bottom:861.225000px;}
.y1bf{bottom:864.105000px;}
.y162{bottom:865.005000px;}
.y66{bottom:870.225000px;}
.y6{bottom:870.585000px;}
.y195{bottom:872.025000px;}
.ye6{bottom:873.285000px;}
.yb1{bottom:878.325000px;}
.y37{bottom:881.025000px;}
.y1be{bottom:881.385000px;}
.y1ec{bottom:883.005000px;}
.y233{bottom:883.725000px;}
.y161{bottom:886.785000px;}
.y13a{bottom:887.865000px;}
.y65{bottom:892.005000px;}
.yee{bottom:893.985000px;}
.y184{bottom:895.785000px;}
.y1d3{bottom:901.005000px;}
.y36{bottom:902.805000px;}
.y1eb{bottom:904.830000px;}
.y232{bottom:909.690000px;}
.yb4{bottom:913.650000px;}
.y64{bottom:913.830000px;}
.y1bd{bottom:915.990000px;}
.y160{bottom:917.790000px;}
.y1d2{bottom:922.830000px;}
.y139{bottom:923.190000px;}
.y35{bottom:924.810000px;}
.y1ea{bottom:926.790000px;}
.yed{bottom:929.310000px;}
.y1bc{bottom:933.090000px;}
.y231{bottom:935.610000px;}
.y63{bottom:935.790000px;}
.y15f{bottom:939.570000px;}
.y5{bottom:940.290000px;}
.y1d1{bottom:944.790000px;}
.y1e9{bottom:948.570000px;}
.ya6{bottom:948.930000px;}
.yec{bottom:950.010000px;}
.y34{bottom:955.590000px;}
.y62{bottom:957.570000px;}
.y138{bottom:958.470000px;}
.y15e{bottom:961.350000px;}
.y4{bottom:964.050000px;}
.y1d0{bottom:966.570000px;}
.y1bb{bottom:967.650000px;}
.y183{bottom:970.350000px;}
.yeb{bottom:970.710000px;}
.y33{bottom:977.370000px;}
.y137{bottom:979.170000px;}
.y61{bottom:979.350000px;}
.y15d{bottom:983.130000px;}
.yad{bottom:984.210000px;}
.y1ba{bottom:984.930000px;}
.y230{bottom:987.270000px;}
.y1cf{bottom:988.350000px;}
.y3{bottom:990.330000px;}
.yea{bottom:991.410000px;}
.y182{bottom:992.130000px;}
.y32{bottom:999.150000px;}
.y131{bottom:999.870000px;}
.y1e8{bottom:1001.130000px;}
.y1b9{bottom:1002.210000px;}
.y60{bottom:1010.130000px;}
.y22f{bottom:1013.190000px;}
.y15c{bottom:1013.910000px;}
.ya9{bottom:1019.490000px;}
.y134{bottom:1020.570000px;}
.y31{bottom:1020.930000px;}
.y2{bottom:1022.010000px;}
.y1e7{bottom:1022.910000px;}
.ye9{bottom:1026.690000px;}
.y5f{bottom:1031.910000px;}
.y15b{bottom:1035.870000px;}
.y1b8{bottom:1036.590000px;}
.y22e{bottom:1039.110000px;}
.y133{bottom:1041.270000px;}
.y30{bottom:1042.890000px;}
.y181{bottom:1044.870000px;}
.ye1{bottom:1047.390000px;}
.y27{bottom:1051.350000px;}
.y5e{bottom:1053.870000px;}
.y1b4{bottom:1054.590000px;}
.y15a{bottom:1057.650000px;}
.y12f{bottom:1061.970000px;}
.y2f{bottom:1064.670000px;}
.y22d{bottom:1064.850000px;}
.y180{bottom:1066.650000px;}
.ya3{bottom:1071.870000px;}
.y5d{bottom:1075.650000px;}
.y159{bottom:1079.430000px;}
.ye5{bottom:1082.670000px;}
.y2e{bottom:1086.450000px;}
.y203{bottom:1088.430000px;}
.y22c{bottom:1090.770000px;}
.y5c{bottom:1097.430000px;}
.ye4{bottom:1103.370000px;}
.y2d{bottom:1108.230000px;}
.y158{bottom:1110.210000px;}
.ya2{bottom:1113.630000px;}
.y22b{bottom:1116.690000px;}
.y130{bottom:1117.950000px;}
.y5b{bottom:1119.210000px;}
.ye0{bottom:1138.650000px;}
.y2c{bottom:1139.730000px;}
.y5a{bottom:1141.170000px;}
.ya1{bottom:1142.610000px;}
.y26{bottom:1169.460000px;}
.h33{height:17.100000px;}
.h23{height:17.136000px;}
.h11{height:17.280000px;}
.h2f{height:19.800000px;}
.h1d{height:19.980000px;}
.h21{height:20.016000px;}
.h9{height:21.867891px;}
.hc{height:31.140000px;}
.h17{height:34.380000px;}
.h18{height:34.560000px;}
.h1b{height:34.596000px;}
.h6{height:37.457578px;}
.h7{height:37.783828px;}
.h12{height:41.041055px;}
.h8{height:43.269961px;}
.h2{height:43.646836px;}
.h29{height:44.100000px;}
.h5{height:48.858398px;}
.hb{height:49.992188px;}
.h15{height:51.660000px;}
.h2b{height:51.696000px;}
.h10{height:53.428008px;}
.h14{height:53.603086px;}
.hf{height:54.069961px;}
.he{height:59.415469px;}
.h19{height:59.439023px;}
.h35{height:59.932969px;}
.h30{height:61.380000px;}
.h4{height:64.582031px;}
.hd{height:65.144531px;}
.h16{height:65.946094px;}
.h1a{height:69.876000px;}
.h2e{height:75.780000px;}
.h1c{height:75.960000px;}
.h3{height:86.642227px;}
.h24{height:90.360000px;}
.h27{height:96.696000px;}
.h1f{height:105.156000px;}
.h2d{height:111.276000px;}
.h28{height:120.780000px;}
.h13{height:122.220000px;}
.h2a{height:128.376000px;}
.h1e{height:131.760000px;}
.h31{height:146.556000px;}
.h25{height:173.370000px;}
.ha{height:176.790000px;}
.h2c{height:179.460000px;}
.h22{height:187.770000px;}
.h20{height:235.290000px;}
.h32{height:293.250000px;}
.h34{height:317.370000px;}
.h26{height:470.235000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w3{width:10.259973px;}
.w9{width:30.240000px;}
.w7{width:30.600000px;}
.w8{width:30.636000px;}
.wf{width:74.520000px;}
.wa{width:95.400000px;}
.we{width:106.236000px;}
.wd{width:106.380000px;}
.wb{width:127.836000px;}
.w10{width:138.096000px;}
.w4{width:195.150000px;}
.wc{width:212.610000px;}
.w5{width:223.230000px;}
.w6{width:242.490000px;}
.w11{width:330.510000px;}
.w12{width:330.555000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x8{left:-6.480027px;}
.x0{left:0.000000px;}
.x12{left:8.100000px;}
.x1a{left:9.720000px;}
.x18{left:13.140000px;}
.x1b{left:15.300000px;}
.x10{left:69.480000px;}
.xe{left:72.714000px;}
.x1{left:114.876000px;}
.x1d{left:115.965000px;}
.xa{left:122.625000px;}
.x2{left:126.396000px;}
.x25{left:131.975987px;}
.x6{left:141.876000px;}
.x4{left:146.736000px;}
.x3{left:151.050000px;}
.x23{left:173.909987px;}
.xc{left:178.769987px;}
.x7{left:183.270000px;}
.xb{left:184.365000px;}
.x22{left:189.390000px;}
.x1c{left:210.270000px;}
.x1e{left:327.495000px;}
.xf{left:338.115000px;}
.x5{left:371.955000px;}
.x1f{left:433.875000px;}
.x24{left:445.395000px;}
.xd{left:446.474987px;}
.x20{left:540.105000px;}
.x11{left:580.605000px;}
.x9{left:588.165000px;}
.x13{left:611.205000px;}
.x14{left:641.805000px;}
.x21{left:646.485000px;}
.x15{left:672.450000px;}
.x16{left:703.050000px;}
.x17{left:733.650000px;}
.x19{left:764.250000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls8{letter-spacing:-1.440000pt;}
.lsf{letter-spacing:-1.280000pt;}
.ls10{letter-spacing:-0.736000pt;}
.ls6{letter-spacing:-0.512000pt;}
.ls1a{letter-spacing:-0.504533pt;}
.lsb{letter-spacing:-0.400533pt;}
.ls7{letter-spacing:-0.320000pt;}
.lsc{letter-spacing:-0.268800pt;}
.lse{letter-spacing:-0.233067pt;}
.ls14{letter-spacing:-0.230933pt;}
.ls1c{letter-spacing:-0.198933pt;}
.ls4{letter-spacing:-0.161067pt;}
.lsd{letter-spacing:-0.097067pt;}
.ls15{letter-spacing:-0.094933pt;}
.ls20{letter-spacing:-0.089067pt;}
.ls5{letter-spacing:-0.079467pt;}
.ls18{letter-spacing:-0.047360pt;}
.ls3{letter-spacing:0.000000pt;}
.ls1e{letter-spacing:0.047360pt;}
.ls2{letter-spacing:0.064000pt;}
.ls0{letter-spacing:0.128000pt;}
.ls1{letter-spacing:0.224000pt;}
.ls16{letter-spacing:0.232960pt;}
.ls19{letter-spacing:0.233067pt;}
.ls9{letter-spacing:0.239360pt;}
.lsa{letter-spacing:0.239467pt;}
.ls17{letter-spacing:0.256000pt;}
.ls13{letter-spacing:0.329067pt;}
.ls11{letter-spacing:0.330880pt;}
.ls12{letter-spacing:0.490880pt;}
.ls1f{letter-spacing:0.592000pt;}
.ls1d{letter-spacing:0.687360pt;}
.ls1b{letter-spacing:76.912640pt;}
.wsb{word-spacing:-18.048000pt;}
.wse{word-spacing:-16.601707pt;}
.ws8{word-spacing:-16.368640pt;}
.ws7{word-spacing:-16.271573pt;}
.wsa{word-spacing:-16.135573pt;}
.ws10{word-spacing:-14.814720pt;}
.wsf{word-spacing:-14.767360pt;}
.wsc{word-spacing:-14.720000pt;}
.ws11{word-spacing:-14.678293pt;}
.wsd{word-spacing:-14.672427pt;}
.ws6{word-spacing:-11.920640pt;}
.ws0{word-spacing:-11.759573pt;}
.ws9{word-spacing:-11.538027pt;}
.ws1{word-spacing:-10.319360pt;}
.ws2{word-spacing:-9.024000pt;}
.ws4{word-spacing:-8.896000pt;}
.ws3{word-spacing:-8.384000pt;}
.ws5{word-spacing:0.000000pt;}
._c{margin-left:-4.357120pt;}
._3{margin-left:-3.044308pt;}
._9{margin-left:-2.081283pt;}
._0{margin-left:-1.091711pt;}
._1{width:0.922152pt;}
._2{width:2.288778pt;}
._7{width:3.217935pt;}
._6{width:4.188715pt;}
._5{width:5.415848pt;}
._4{width:6.432000pt;}
._8{width:7.941129pt;}
._18{width:9.134071pt;}
._19{width:10.480640pt;}
._10{width:11.412084pt;}
._d{width:12.378102pt;}
._b{width:13.453186pt;}
._a{width:14.778880pt;}
._22{width:15.694080pt;}
._26{width:16.680320pt;}
._15{width:17.605120pt;}
._16{width:19.186516pt;}
._1c{width:20.151094pt;}
._12{width:21.137920pt;}
._11{width:22.111871pt;}
._1d{width:23.139840pt;}
._1a{width:24.376320pt;}
._1b{width:25.397763pt;}
._1f{width:27.352191pt;}
._17{width:28.967558pt;}
._f{width:30.560104pt;}
._e{width:31.650431pt;}
._21{width:32.830676pt;}
._20{width:33.801387pt;}
._13{width:38.625280pt;}
._14{width:39.855235pt;}
._32{width:46.267520pt;}
._23{width:53.385600pt;}
._24{width:54.286080pt;}
._25{width:58.825387pt;}
._29{width:74.846080pt;}
._27{width:76.492800pt;}
._28{width:77.661440pt;}
._2a{width:86.479360pt;}
._1e{width:96.519040pt;}
._2f{width:100.441387pt;}
._2b{width:131.712427pt;}
._2c{width:132.831235pt;}
._31{width:230.840408pt;}
._30{width:231.762560pt;}
._2d{width:235.852800pt;}
._2e{width:236.982275pt;}
.fs6{font-size:26.880000pt;}
.fs5{font-size:32.000000pt;}
.fs4{font-size:37.120000pt;}
.fs9{font-size:40.320000pt;}
.fs0{font-size:42.880000pt;}
.fs3{font-size:48.000000pt;}
.fs8{font-size:53.120000pt;}
.fs7{font-size:58.880000pt;}
.fs2{font-size:64.000000pt;}
.fs1{font-size:85.120000pt;}
.y2b{bottom:-15.360000pt;}
.y0{bottom:0.000000pt;}
.ya4{bottom:2.880000pt;}
.y12d{bottom:2.906667pt;}
.yba{bottom:3.360000pt;}
.yd3{bottom:3.400000pt;}
.y217{bottom:4.000000pt;}
.yfb{bottom:4.160000pt;}
.yc3{bottom:4.960000pt;}
.yb9{bottom:5.280000pt;}
.yd2{bottom:5.320000pt;}
.ya5{bottom:5.920000pt;}
.y2a{bottom:7.200000pt;}
.y1b5{bottom:10.560000pt;}
.yc0{bottom:16.160000pt;}
.yaf{bottom:16.320000pt;}
.y106{bottom:16.346667pt;}
.yf1{bottom:16.360000pt;}
.yb0{bottom:17.920000pt;}
.yf0{bottom:17.960000pt;}
.yab{bottom:18.080000pt;}
.yae{bottom:18.240000pt;}
.y105{bottom:18.266667pt;}
.yef{bottom:18.280000pt;}
.yfa{bottom:19.520000pt;}
.y111{bottom:24.800000pt;}
.y117{bottom:25.000000pt;}
.y110{bottom:26.720000pt;}
.yac{bottom:31.520000pt;}
.y11d{bottom:31.560000pt;}
.y216{bottom:32.160000pt;}
.y11c{bottom:33.320000pt;}
.yaa{bottom:33.440000pt;}
.y11b{bottom:33.480000pt;}
.y10c{bottom:33.600000pt;}
.yb3{bottom:34.280000pt;}
.yf9{bottom:34.880000pt;}
.yb7{bottom:39.680000pt;}
.y116{bottom:40.360000pt;}
.y132{bottom:42.080000pt;}
.y101{bottom:42.746667pt;}
.y215{bottom:46.240000pt;}
.y10b{bottom:48.960000pt;}
.yb2{bottom:49.640000pt;}
.yf8{bottom:50.240000pt;}
.y29{bottom:51.520000pt;}
.ye3{bottom:52.640000pt;}
.yb6{bottom:55.040000pt;}
.y115{bottom:55.720000pt;}
.y100{bottom:58.106667pt;}
.y1{bottom:58.720000pt;}
.y214{bottom:60.320000pt;}
.y10a{bottom:64.320000pt;}
.yc7{bottom:65.600000pt;}
.ye2{bottom:68.000000pt;}
.y12a{bottom:71.066667pt;}
.y114{bottom:71.080000pt;}
.y28{bottom:72.960000pt;}
.yff{bottom:73.466667pt;}
.y213{bottom:74.400000pt;}
.y109{bottom:79.520000pt;}
.y1ce{bottom:80.000000pt;}
.ya8{bottom:80.800000pt;}
.yc6{bottom:80.960000pt;}
.y194{bottom:84.160000pt;}
.ya0{bottom:85.440000pt;}
.y113{bottom:86.280000pt;}
.y129{bottom:86.426667pt;}
.y212{bottom:88.640000pt;}
.ybe{bottom:89.440000pt;}
.y108{bottom:94.880000pt;}
.y86{bottom:95.040000pt;}
.ya7{bottom:96.160000pt;}
.y128{bottom:97.920000pt;}
.y157{bottom:98.720000pt;}
.y1cd{bottom:99.360000pt;}
.y112{bottom:101.640000pt;}
.y1b3{bottom:102.080000pt;}
.y211{bottom:102.720000pt;}
.y193{bottom:103.520000pt;}
.y254{bottom:104.000000pt;}
.ybd{bottom:104.640000pt;}
.ydf{bottom:104.800000pt;}
.y9f{bottom:111.040000pt;}
.y85{bottom:114.400000pt;}
.y59{bottom:115.680000pt;}
.y210{bottom:116.800000pt;}
.y202{bottom:117.440000pt;}
.y136{bottom:117.800000pt;}
.y156{bottom:118.080000pt;}
.y250{bottom:118.560000pt;}
.yd7{bottom:123.200000pt;}
.y1b7{bottom:125.600000pt;}
.ye8{bottom:126.280000pt;}
.y1cc{bottom:126.720000pt;}
.y253{bottom:127.040000pt;}
.y1b2{bottom:127.680000pt;}
.y12e{bottom:129.280000pt;}
.y22a{bottom:130.240000pt;}
.y20f{bottom:130.880000pt;}
.y17f{bottom:131.040000pt;}
.y120{bottom:131.680000pt;}
.y84{bottom:133.760000pt;}
.y58{bottom:135.040000pt;}
.y9e{bottom:136.800000pt;}
.y155{bottom:137.600000pt;}
.yd9{bottom:139.226667pt;}
.y24f{bottom:141.600000pt;}
.ye7{bottom:141.640000pt;}
.y20e{bottom:144.960000pt;}
.y1cb{bottom:146.240000pt;}
.y11f{bottom:147.040000pt;}
.y12c{bottom:147.680000pt;}
.y252{bottom:149.946667pt;}
.y17e{bottom:150.426667pt;}
.y1b1{bottom:153.306667pt;}
.y57{bottom:154.426667pt;}
.yd8{bottom:154.586667pt;}
.y201{bottom:156.186667pt;}
.y154{bottom:156.986667pt;}
.y20d{bottom:159.080000pt;}
.y25{bottom:159.546667pt;}
.y83{bottom:161.306667pt;}
.y9d{bottom:162.906667pt;}
.y24e{bottom:164.506667pt;}
.y1ca{bottom:165.626667pt;}
.y17d{bottom:169.786667pt;}
.y1e6{bottom:172.666667pt;}
.yde{bottom:172.986667pt;}
.y20c{bottom:173.320000pt;}
.y24{bottom:173.626667pt;}
.y56{bottom:173.786667pt;}
.y200{bottom:175.546667pt;}
.y153{bottom:176.346667pt;}
.y12b{bottom:179.066667pt;}
.y1b0{bottom:179.386667pt;}
.y82{bottom:180.666667pt;}
.ycb{bottom:181.480000pt;}
.y23{bottom:186.266667pt;}
.y20b{bottom:187.400000pt;}
.y24d{bottom:187.546667pt;}
.y17c{bottom:189.146667pt;}
.y9c{bottom:190.266667pt;}
.ydd{bottom:191.386667pt;}
.y1e5{bottom:192.026667pt;}
.y1c9{bottom:192.986667pt;}
.y55{bottom:193.306667pt;}
.y1ff{bottom:195.066667pt;}
.y152{bottom:195.706667pt;}
.yca{bottom:196.680000pt;}
.y251{bottom:196.986667pt;}
.y192{bottom:197.146667pt;}
.y11e{bottom:197.466667pt;}
.y229{bottom:199.226667pt;}
.y81{bottom:200.026667pt;}
.y20a{bottom:201.480000pt;}
.y1af{bottom:206.746667pt;}
.y17b{bottom:208.506667pt;}
.y9b{bottom:209.626667pt;}
.y24c{bottom:210.586667pt;}
.y1e4{bottom:211.386667pt;}
.y54{bottom:212.666667pt;}
.y1fe{bottom:214.426667pt;}
.y209{bottom:215.560000pt;}
.y127{bottom:215.866667pt;}
.y191{bottom:216.506667pt;}
.y80{bottom:219.386667pt;}
.y1c8{bottom:219.866667pt;}
.y228{bottom:222.266667pt;}
.ydc{bottom:222.746667pt;}
.y151{bottom:223.066667pt;}
.y17a{bottom:228.026667pt;}
.y9a{bottom:228.986667pt;}
.y208{bottom:229.640000pt;}
.y1e3{bottom:230.746667pt;}
.y53{bottom:232.026667pt;}
.y24b{bottom:233.466667pt;}
.y1fd{bottom:233.786667pt;}
.y1ae{bottom:234.266667pt;}
.y190{bottom:236.026667pt;}
.ydb{bottom:241.146667pt;}
.y22{bottom:241.466667pt;}
.y150{bottom:242.586667pt;}
.y207{bottom:243.720000pt;}
.y227{bottom:245.306667pt;}
.y7f{bottom:246.746667pt;}
.y126{bottom:247.226667pt;}
.y99{bottom:248.506667pt;}
.y1e2{bottom:250.266667pt;}
.y52{bottom:251.386667pt;}
.y1ad{bottom:253.626667pt;}
.y179{bottom:255.386667pt;}
.y21{bottom:255.546667pt;}
.y24a{bottom:256.506667pt;}
.y206{bottom:257.960000pt;}
.yda{bottom:259.546667pt;}
.y1fc{bottom:261.146667pt;}
.y14f{bottom:261.946667pt;}
.y125{bottom:265.626667pt;}
.y7e{bottom:266.266667pt;}
.y98{bottom:267.866667pt;}
.y226{bottom:268.186667pt;}
.y20{bottom:269.786667pt;}
.y51{bottom:270.746667pt;}
.y205{bottom:272.040000pt;}
.y178{bottom:274.746667pt;}
.y1e1{bottom:277.626667pt;}
.y249{bottom:279.546667pt;}
.y1fb{bottom:280.506667pt;}
.y1ac{bottom:280.986667pt;}
.y18f{bottom:282.746667pt;}
.y1f{bottom:283.866667pt;}
.y124{bottom:284.026667pt;}
.y7d{bottom:285.626667pt;}
.y97{bottom:287.226667pt;}
.y14e{bottom:289.306667pt;}
.y50{bottom:290.266667pt;}
.yc9{bottom:290.906667pt;}
.y225{bottom:291.226667pt;}
.y177{bottom:294.106667pt;}
.y1e0{bottom:296.986667pt;}
.y1e{bottom:297.946667pt;}
.y1fa{bottom:300.026667pt;}
.y1ab{bottom:300.346667pt;}
.y18e{bottom:302.106667pt;}
.y123{bottom:302.426667pt;}
.y248{bottom:302.586667pt;}
.y7c{bottom:304.986667pt;}
.y96{bottom:306.586667pt;}
.y14d{bottom:308.666667pt;}
.yd6{bottom:309.306667pt;}
.y4f{bottom:309.626667pt;}
.y1d{bottom:312.026667pt;}
.y224{bottom:314.266667pt;}
.y1df{bottom:316.346667pt;}
.y1f9{bottom:319.386667pt;}
.y122{bottom:320.826667pt;}
.y176{bottom:321.626667pt;}
.y7b{bottom:324.346667pt;}
.y247{bottom:325.466667pt;}
.y1c{bottom:326.106667pt;}
.yd5{bottom:327.706667pt;}
.y1aa{bottom:327.866667pt;}
.y4e{bottom:328.986667pt;}
.y1de{bottom:335.866667pt;}
.y14c{bottom:336.186667pt;}
.y223{bottom:337.306667pt;}
.y1f8{bottom:338.746667pt;}
.y121{bottom:339.226667pt;}
.y1b{bottom:340.186667pt;}
.y175{bottom:340.986667pt;}
.y7a{bottom:343.866667pt;}
.y95{bottom:345.466667pt;}
.yd4{bottom:346.106667pt;}
.y1a9{bottom:347.226667pt;}
.y4d{bottom:348.346667pt;}
.y246{bottom:348.506667pt;}
.y1a{bottom:354.426667pt;}
.y1dd{bottom:355.226667pt;}
.y14b{bottom:355.546667pt;}
.yf2{bottom:357.626667pt;}
.y1f7{bottom:358.106667pt;}
.yf6{bottom:359.586667pt;}
.y222{bottom:360.186667pt;}
.y174{bottom:360.346667pt;}
.y79{bottom:363.226667pt;}
.yd1{bottom:364.506667pt;}
.y1a8{bottom:366.586667pt;}
.y4c{bottom:367.906667pt;}
.y19{bottom:368.546667pt;}
.y245{bottom:371.586667pt;}
.y94{bottom:372.866667pt;}
.y1dc{bottom:374.626667pt;}
.yf5{bottom:374.946667pt;}
.y1f6{bottom:377.666667pt;}
.y18d{bottom:379.746667pt;}
.y18{bottom:381.186667pt;}
.y78{bottom:382.626667pt;}
.yd0{bottom:382.946667pt;}
.y221{bottom:383.266667pt;}
.y4b{bottom:387.266667pt;}
.y173{bottom:387.746667pt;}
.yf4{bottom:390.146667pt;}
.y93{bottom:392.226667pt;}
.y1a7{bottom:393.986667pt;}
.y14a{bottom:394.306667pt;}
.y244{bottom:394.626667pt;}
.y1f5{bottom:397.026667pt;}
.y77{bottom:401.986667pt;}
.y11a{bottom:404.226667pt;}
.yf3{bottom:405.506667pt;}
.y220{bottom:406.306667pt;}
.y4a{bottom:406.626667pt;}
.y172{bottom:407.106667pt;}
.y92{bottom:411.586667pt;}
.y1a6{bottom:413.346667pt;}
.y149{bottom:413.666667pt;}
.ycf{bottom:414.306667pt;}
.y1f4{bottom:416.386667pt;}
.y243{bottom:417.506667pt;}
.y76{bottom:421.346667pt;}
.y49{bottom:425.986667pt;}
.y171{bottom:426.626667pt;}
.y21f{bottom:429.346667pt;}
.y91{bottom:431.106667pt;}
.y1a5{bottom:432.866667pt;}
.y148{bottom:433.186667pt;}
.y119{bottom:435.586667pt;}
.y1f3{bottom:435.746667pt;}
.y17{bottom:436.386667pt;}
.y242{bottom:440.546667pt;}
.y1db{bottom:440.866667pt;}
.y48{bottom:445.346667pt;}
.yce{bottom:445.506667pt;}
.y170{bottom:445.986667pt;}
.y75{bottom:449.346667pt;}
.y16{bottom:450.466667pt;}
.y1a4{bottom:452.226667pt;}
.y118{bottom:453.986667pt;}
.y1f2{bottom:455.106667pt;}
.y1da{bottom:460.226667pt;}
.y147{bottom:460.546667pt;}
.y241{bottom:463.586667pt;}
.ycd{bottom:463.906667pt;}
.y15{bottom:464.546667pt;}
.y47{bottom:464.866667pt;}
.y16f{bottom:465.346667pt;}
.y90{bottom:469.826667pt;}
.y1a3{bottom:471.586667pt;}
.y107{bottom:472.386667pt;}
.y18c{bottom:473.346667pt;}
.y1f1{bottom:474.626667pt;}
.y21e{bottom:475.266667pt;}
.y14{bottom:478.786667pt;}
.y1d9{bottom:479.586667pt;}
.y146{bottom:479.906667pt;}
.ycc{bottom:482.306667pt;}
.y46{bottom:484.226667pt;}
.y240{bottom:486.626667pt;}
.y8f{bottom:489.186667pt;}
.y16e{bottom:492.706667pt;}
.y13{bottom:492.866667pt;}
.y74{bottom:493.986667pt;}
.y21d{bottom:498.306667pt;}
.y1a2{bottom:498.946667pt;}
.y145{bottom:499.266667pt;}
.yc5{bottom:500.706667pt;}
.y12{bottom:506.946667pt;}
.y8e{bottom:508.546667pt;}
.y23f{bottom:509.506667pt;}
.y45{bottom:511.586667pt;}
.y10f{bottom:512.226667pt;}
.y73{bottom:513.346667pt;}
.y1a1{bottom:518.466667pt;}
.y11{bottom:521.026667pt;}
.y21c{bottom:521.346667pt;}
.y144{bottom:526.786667pt;}
.y8d{bottom:528.066667pt;}
.y10e{bottom:530.626667pt;}
.y44{bottom:530.946667pt;}
.y18b{bottom:531.586667pt;}
.yc8{bottom:532.066667pt;}
.y23e{bottom:532.546667pt;}
.y72{bottom:532.706667pt;}
.y10{bottom:535.106667pt;}
.y1a0{bottom:537.826667pt;}
.y16d{bottom:539.586667pt;}
.y21b{bottom:544.226667pt;}
.y1c7{bottom:546.466667pt;}
.y8c{bottom:547.426667pt;}
.yf{bottom:549.186667pt;}
.y43{bottom:550.466667pt;}
.y18a{bottom:550.946667pt;}
.y71{bottom:552.226667pt;}
.y143{bottom:554.146667pt;}
.y23d{bottom:555.586667pt;}
.y19f{bottom:557.186667pt;}
.y16c{bottom:558.946667pt;}
.y10d{bottom:561.986667pt;}
.ye{bottom:563.426667pt;}
.y8b{bottom:566.786667pt;}
.y21a{bottom:567.266667pt;}
.y42{bottom:569.826667pt;}
.y189{bottom:570.306667pt;}
.y70{bottom:571.586667pt;}
.y1c6{bottom:572.066667pt;}
.y142{bottom:573.506667pt;}
.yd{bottom:576.066667pt;}
.y19e{bottom:576.546667pt;}
.y16b{bottom:578.306667pt;}
.y23c{bottom:578.626667pt;}
.yfe{bottom:580.386667pt;}
.y219{bottom:585.853333pt;}
.y41{bottom:589.213333pt;}
.y6f{bottom:590.973333pt;}
.y141{bottom:592.893333pt;}
.y8a{bottom:594.653333pt;}
.ybc{bottom:594.813333pt;}
.y1d8{bottom:595.933333pt;}
.y16a{bottom:597.693333pt;}
.y1c5{bottom:598.173333pt;}
.y23b{bottom:601.533333pt;}
.y19d{bottom:603.933333pt;}
.y40{bottom:608.573333pt;}
.y6e{bottom:610.333333pt;}
.y104{bottom:611.773333pt;}
.y140{bottom:612.253333pt;}
.yc4{bottom:613.213333pt;}
.y1d7{bottom:615.453333pt;}
.y188{bottom:617.213333pt;}
.y19c{bottom:623.453333pt;}
.y23a{bottom:624.573333pt;}
.y169{bottom:625.213333pt;}
.y1c4{bottom:625.693333pt;}
.y3f{bottom:627.933333pt;}
.yc{bottom:629.213333pt;}
.y6d{bottom:629.693333pt;}
.y103{bottom:630.173333pt;}
.y218{bottom:630.653333pt;}
.yc2{bottom:631.613333pt;}
.y13f{bottom:631.773333pt;}
.y89{bottom:631.933333pt;}
.y187{bottom:636.573333pt;}
.y19b{bottom:642.813333pt;}
.y168{bottom:644.573333pt;}
.y3e{bottom:647.453333pt;}
.y239{bottom:647.613333pt;}
.y102{bottom:648.573333pt;}
.y6c{bottom:649.213333pt;}
.yc1{bottom:650.013333pt;}
.y13e{bottom:651.133333pt;}
.y204{bottom:652.413333pt;}
.y1c3{bottom:653.053333pt;}
.y186{bottom:655.933333pt;}
.y19a{bottom:662.173333pt;}
.y167{bottom:663.933333pt;}
.y3d{bottom:666.813333pt;}
.yf7{bottom:666.973333pt;}
.y6b{bottom:668.573333pt;}
.y238{bottom:670.653333pt;}
.y1b6{bottom:676.093333pt;}
.y88{bottom:676.573333pt;}
.y13d{bottom:678.493333pt;}
.yb{bottom:679.933333pt;}
.ybf{bottom:681.373333pt;}
.y1d6{bottom:681.533333pt;}
.y166{bottom:683.293333pt;}
.y3c{bottom:686.173333pt;}
.y6a{bottom:687.933333pt;}
.y199{bottom:689.533333pt;}
.y1c2{bottom:691.453333pt;}
.y237{bottom:693.533333pt;}
.ya{bottom:694.013333pt;}
.y87{bottom:695.933333pt;}
.yfd{bottom:698.333333pt;}
.y1d5{bottom:700.893333pt;}
.y165{bottom:702.813333pt;}
.y13c{bottom:705.373333pt;}
.y3b{bottom:705.533333pt;}
.y1c1{bottom:706.813333pt;}
.y1f0{bottom:707.293333pt;}
.y198{bottom:708.893333pt;}
.yb5{bottom:712.573333pt;}
.y69{bottom:715.293333pt;}
.y236{bottom:716.573333pt;}
.y9{bottom:719.773333pt;}
.y164{bottom:722.173333pt;}
.y3a{bottom:724.893333pt;}
.y13b{bottom:726.493333pt;}
.y1ef{bottom:726.813333pt;}
.y197{bottom:728.413333pt;}
.y1d4{bottom:728.893333pt;}
.y185{bottom:730.173333pt;}
.y8{bottom:734.013333pt;}
.y68{bottom:734.813333pt;}
.y1c0{bottom:737.373333pt;}
.y235{bottom:739.613333pt;}
.ybb{bottom:743.933333pt;}
.y39{bottom:744.413333pt;}
.yfc{bottom:744.893333pt;}
.y1ee{bottom:746.173333pt;}
.y163{bottom:749.533333pt;}
.y67{bottom:754.173333pt;}
.y196{bottom:755.773333pt;}
.y135{bottom:757.853333pt;}
.y7{bottom:759.773333pt;}
.yb8{bottom:762.333333pt;}
.y234{bottom:762.493333pt;}
.y38{bottom:763.773333pt;}
.y1ed{bottom:765.533333pt;}
.y1bf{bottom:768.093333pt;}
.y162{bottom:768.893333pt;}
.y66{bottom:773.533333pt;}
.y6{bottom:773.853333pt;}
.y195{bottom:775.133333pt;}
.ye6{bottom:776.253333pt;}
.yb1{bottom:780.733333pt;}
.y37{bottom:783.133333pt;}
.y1be{bottom:783.453333pt;}
.y1ec{bottom:784.893333pt;}
.y233{bottom:785.533333pt;}
.y161{bottom:788.253333pt;}
.y13a{bottom:789.213333pt;}
.y65{bottom:792.893333pt;}
.yee{bottom:794.653333pt;}
.y184{bottom:796.253333pt;}
.y1d3{bottom:800.893333pt;}
.y36{bottom:802.493333pt;}
.y1eb{bottom:804.293333pt;}
.y232{bottom:808.613333pt;}
.yb4{bottom:812.133333pt;}
.y64{bottom:812.293333pt;}
.y1bd{bottom:814.213333pt;}
.y160{bottom:815.813333pt;}
.y1d2{bottom:820.293333pt;}
.y139{bottom:820.613333pt;}
.y35{bottom:822.053333pt;}
.y1ea{bottom:823.813333pt;}
.yed{bottom:826.053333pt;}
.y1bc{bottom:829.413333pt;}
.y231{bottom:831.653333pt;}
.y63{bottom:831.813333pt;}
.y15f{bottom:835.173333pt;}
.y5{bottom:835.813333pt;}
.y1d1{bottom:839.813333pt;}
.y1e9{bottom:843.173333pt;}
.ya6{bottom:843.493333pt;}
.yec{bottom:844.453333pt;}
.y34{bottom:849.413333pt;}
.y62{bottom:851.173333pt;}
.y138{bottom:851.973333pt;}
.y15e{bottom:854.533333pt;}
.y4{bottom:856.933333pt;}
.y1d0{bottom:859.173333pt;}
.y1bb{bottom:860.133333pt;}
.y183{bottom:862.533333pt;}
.yeb{bottom:862.853333pt;}
.y33{bottom:868.773333pt;}
.y137{bottom:870.373333pt;}
.y61{bottom:870.533333pt;}
.y15d{bottom:873.893333pt;}
.yad{bottom:874.853333pt;}
.y1ba{bottom:875.493333pt;}
.y230{bottom:877.573333pt;}
.y1cf{bottom:878.533333pt;}
.y3{bottom:880.293333pt;}
.yea{bottom:881.253333pt;}
.y182{bottom:881.893333pt;}
.y32{bottom:888.133333pt;}
.y131{bottom:888.773333pt;}
.y1e8{bottom:889.893333pt;}
.y1b9{bottom:890.853333pt;}
.y60{bottom:897.893333pt;}
.y22f{bottom:900.613333pt;}
.y15c{bottom:901.253333pt;}
.ya9{bottom:906.213333pt;}
.y134{bottom:907.173333pt;}
.y31{bottom:907.493333pt;}
.y2{bottom:908.453333pt;}
.y1e7{bottom:909.253333pt;}
.ye9{bottom:912.613333pt;}
.y5f{bottom:917.253333pt;}
.y15b{bottom:920.773333pt;}
.y1b8{bottom:921.413333pt;}
.y22e{bottom:923.653333pt;}
.y133{bottom:925.573333pt;}
.y30{bottom:927.013333pt;}
.y181{bottom:928.773333pt;}
.ye1{bottom:931.013333pt;}
.y27{bottom:934.533333pt;}
.y5e{bottom:936.773333pt;}
.y1b4{bottom:937.413333pt;}
.y15a{bottom:940.133333pt;}
.y12f{bottom:943.973333pt;}
.y2f{bottom:946.373333pt;}
.y22d{bottom:946.533333pt;}
.y180{bottom:948.133333pt;}
.ya3{bottom:952.773333pt;}
.y5d{bottom:956.133333pt;}
.y159{bottom:959.493333pt;}
.ye5{bottom:962.373333pt;}
.y2e{bottom:965.733333pt;}
.y203{bottom:967.493333pt;}
.y22c{bottom:969.573333pt;}
.y5c{bottom:975.493333pt;}
.ye4{bottom:980.773333pt;}
.y2d{bottom:985.093333pt;}
.y158{bottom:986.853333pt;}
.ya2{bottom:989.893333pt;}
.y22b{bottom:992.613333pt;}
.y130{bottom:993.733333pt;}
.y5b{bottom:994.853333pt;}
.ye0{bottom:1012.133333pt;}
.y2c{bottom:1013.093333pt;}
.y5a{bottom:1014.373333pt;}
.ya1{bottom:1015.653333pt;}
.y26{bottom:1039.520000pt;}
.h33{height:15.200000pt;}
.h23{height:15.232000pt;}
.h11{height:15.360000pt;}
.h2f{height:17.600000pt;}
.h1d{height:17.760000pt;}
.h21{height:17.792000pt;}
.h9{height:19.438125pt;}
.hc{height:27.680000pt;}
.h17{height:30.560000pt;}
.h18{height:30.720000pt;}
.h1b{height:30.752000pt;}
.h6{height:33.295625pt;}
.h7{height:33.585625pt;}
.h12{height:36.480937pt;}
.h8{height:38.462187pt;}
.h2{height:38.797187pt;}
.h29{height:39.200000pt;}
.h5{height:43.429688pt;}
.hb{height:44.437500pt;}
.h15{height:45.920000pt;}
.h2b{height:45.952000pt;}
.h10{height:47.491563pt;}
.h14{height:47.647188pt;}
.hf{height:48.062188pt;}
.he{height:52.813750pt;}
.h19{height:52.834688pt;}
.h35{height:53.273750pt;}
.h30{height:54.560000pt;}
.h4{height:57.406250pt;}
.hd{height:57.906250pt;}
.h16{height:58.618750pt;}
.h1a{height:62.112000pt;}
.h2e{height:67.360000pt;}
.h1c{height:67.520000pt;}
.h3{height:77.015312pt;}
.h24{height:80.320000pt;}
.h27{height:85.952000pt;}
.h1f{height:93.472000pt;}
.h2d{height:98.912000pt;}
.h28{height:107.360000pt;}
.h13{height:108.640000pt;}
.h2a{height:114.112000pt;}
.h1e{height:117.120000pt;}
.h31{height:130.272000pt;}
.h25{height:154.106667pt;}
.ha{height:157.146667pt;}
.h2c{height:159.520000pt;}
.h22{height:166.906667pt;}
.h20{height:209.146667pt;}
.h32{height:260.666667pt;}
.h34{height:282.106667pt;}
.h26{height:417.986667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w3{width:9.119976pt;}
.w9{width:26.880000pt;}
.w7{width:27.200000pt;}
.w8{width:27.232000pt;}
.wf{width:66.240000pt;}
.wa{width:84.800000pt;}
.we{width:94.432000pt;}
.wd{width:94.560000pt;}
.wb{width:113.632000pt;}
.w10{width:122.752000pt;}
.w4{width:173.466667pt;}
.wc{width:188.986667pt;}
.w5{width:198.426667pt;}
.w6{width:215.546667pt;}
.w11{width:293.786667pt;}
.w12{width:293.826667pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x8{left:-5.760024pt;}
.x0{left:0.000000pt;}
.x12{left:7.200000pt;}
.x1a{left:8.640000pt;}
.x18{left:11.680000pt;}
.x1b{left:13.600000pt;}
.x10{left:61.760000pt;}
.xe{left:64.634667pt;}
.x1{left:102.112000pt;}
.x1d{left:103.080000pt;}
.xa{left:109.000000pt;}
.x2{left:112.352000pt;}
.x25{left:117.311988pt;}
.x6{left:126.112000pt;}
.x4{left:130.432000pt;}
.x3{left:134.266667pt;}
.x23{left:154.586655pt;}
.xc{left:158.906655pt;}
.x7{left:162.906667pt;}
.xb{left:163.880000pt;}
.x22{left:168.346667pt;}
.x1c{left:186.906667pt;}
.x1e{left:291.106667pt;}
.xf{left:300.546667pt;}
.x5{left:330.626667pt;}
.x1f{left:385.666667pt;}
.x24{left:395.906667pt;}
.xd{left:396.866655pt;}
.x20{left:480.093333pt;}
.x11{left:516.093333pt;}
.x9{left:522.813333pt;}
.x13{left:543.293333pt;}
.x14{left:570.493333pt;}
.x21{left:574.653333pt;}
.x15{left:597.733333pt;}
.x16{left:624.933333pt;}
.x17{left:652.133333pt;}
.x19{left:679.333333pt;}
}




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