
    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_c9bae7078f0d3a45380ab7fb.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_f898d11b95310af3ba03d543.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_8163f17ac72eb9e09c0337f2.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_ebad9c17e99e8d1dcd94584d.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.435059;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_57474bf138a89ca06aff6a79.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.871094;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_093d2a4dc446ca4308c9be41.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.904297;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_f7de74d5d85c2b652c9299d7.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.208008;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_f01dcb0186f30d595f10246b.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_443e037191a728a0ae238552.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.401855;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_c34fe381deaeae2db11fcb29.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v11{vertical-align:-42.480000px;}
.vb{vertical-align:-31.680000px;}
.v3{vertical-align:-30.240000px;}
.v10{vertical-align:-26.640000px;}
.va{vertical-align:-21.600000px;}
.vd{vertical-align:-19.440000px;}
.vf{vertical-align:-15.840000px;}
.v5{vertical-align:-13.680000px;}
.v13{vertical-align:-12.240000px;}
.v4{vertical-align:-9.360000px;}
.v0{vertical-align:0.000000px;}
.v14{vertical-align:12.240000px;}
.v6{vertical-align:13.680000px;}
.ve{vertical-align:15.840000px;}
.v12{vertical-align:23.760000px;}
.vc{vertical-align:28.080000px;}
.v2{vertical-align:30.240000px;}
.v1{vertical-align:38.880000px;}
.v7{vertical-align:50.400000px;}
.v9{vertical-align:63.360000px;}
.v8{vertical-align:77.040000px;}
.ls6{letter-spacing:-0.720000px;}
.ls5{letter-spacing:-0.612000px;}
.ls25{letter-spacing:-0.414600px;}
.ls21{letter-spacing:-0.360000px;}
.ls1{letter-spacing:-0.305400px;}
.ls18{letter-spacing:-0.184200px;}
.ls20{letter-spacing:-0.108000px;}
.ls24{letter-spacing:-0.103800px;}
.ls2{letter-spacing:-0.053280px;}
.ls0{letter-spacing:0.000000px;}
.ls1d{letter-spacing:0.018000px;}
.ls19{letter-spacing:0.023040px;}
.lsd{letter-spacing:0.074880px;}
.ls9{letter-spacing:0.090720px;}
.ls7{letter-spacing:0.109200px;}
.ls8{letter-spacing:0.109440px;}
.ls22{letter-spacing:0.126000px;}
.ls16{letter-spacing:0.138240px;}
.lsa{letter-spacing:0.152400px;}
.ls1c{letter-spacing:0.180000px;}
.ls1e{letter-spacing:0.246000px;}
.lse{letter-spacing:0.252720px;}
.ls1a{letter-spacing:0.305400px;}
.ls3{letter-spacing:0.360000px;}
.ls1f{letter-spacing:0.504000px;}
.ls23{letter-spacing:3.945600px;}
.ls12{letter-spacing:3.974400px;}
.ls17{letter-spacing:4.154400px;}
.ls11{letter-spacing:4.694400px;}
.ls10{letter-spacing:13.673520px;}
.ls15{letter-spacing:17.654400px;}
.lsb{letter-spacing:17.778240px;}
.lsf{letter-spacing:23.757120px;}
.ls14{letter-spacing:32.506560px;}
.ls13{letter-spacing:42.940080px;}
.ls4{letter-spacing:46.224000px;}
.lsc{letter-spacing:66.438720px;}
.ls1b{letter-spacing:68.705280px;}
.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:-21.060000px;}
.ws6{word-spacing:-18.000000px;}
.wsa{word-spacing:-16.669200px;}
.ws9{word-spacing:-16.560000px;}
.ws2{word-spacing:-16.254600px;}
.ws1d{word-spacing:-16.145400px;}
.ws5{word-spacing:-15.300000px;}
.ws13{word-spacing:-14.595840px;}
.wsd{word-spacing:-14.572800px;}
.wsc{word-spacing:-14.388600px;}
.ws16{word-spacing:-13.860000px;}
.ws7{word-spacing:-13.538304px;}
.ws8{word-spacing:-13.505760px;}
.ws1{word-spacing:-13.500000px;}
.ws15{word-spacing:-13.392000px;}
.ws1a{word-spacing:-13.147200px;}
.ws17{word-spacing:-13.140000px;}
.ws19{word-spacing:-13.043400px;}
.wsb{word-spacing:-10.800000px;}
.ws11{word-spacing:-10.612800px;}
.ws3{word-spacing:-10.440000px;}
.ws18{word-spacing:-9.000000px;}
.ws10{word-spacing:-8.553600px;}
.ws12{word-spacing:-0.694080px;}
.ws4{word-spacing:0.000000px;}
.ws14{word-spacing:0.205920px;}
.ws1c{word-spacing:3.412080px;}
.wsf{word-spacing:3.625920px;}
.ws1b{word-spacing:11.318400px;}
.wse{word-spacing:11.361600px;}
._13{margin-left:-5.754240px;}
._1d{margin-left:-4.067280px;}
._2{margin-left:-2.021760px;}
._1{margin-left:-1.010880px;}
._3{width:1.094400px;}
._6{width:3.088800px;}
._8{width:4.448880px;}
._d{width:5.856480px;}
._c{width:7.589520px;}
._b{width:8.605440px;}
._7{width:10.278720px;}
._12{width:11.286720px;}
._11{width:12.355200px;}
._10{width:13.380480px;}
._0{width:14.405040px;}
._4{width:16.116480px;}
._5{width:17.192160px;}
._9{width:18.973200px;}
._a{width:20.165040px;}
._f{width:21.733920px;}
._14{width:23.145120px;}
._15{width:24.349920px;}
._16{width:26.032320px;}
._1e{width:27.384960px;}
._18{width:28.577280px;}
._17{width:29.625600px;}
._e{width:31.194720px;}
._19{width:33.252480px;}
._1a{width:34.312320px;}
._1b{width:35.340480px;}
._1c{width:197.513520px;}
.fc1{color:transparent;}
.fc0{color:rgb(0,0,0);}
.fs9{font-size:36.000000px;}
.fs7{font-size:38.880000px;}
.fs3{font-size:41.760000px;}
.fs8{font-size:48.240000px;}
.fs2{font-size:54.000000px;}
.fs4{font-size:59.760000px;}
.fs6{font-size:59.904000px;}
.fs0{font-size:66.240000px;}
.fs5{font-size:72.000000px;}
.fs1{font-size:84.240000px;}
.y110{bottom:-12.255000px;}
.y176{bottom:-12.247500px;}
.yfc{bottom:-12.240000px;}
.y130{bottom:-4.545000px;}
.y111{bottom:-4.515000px;}
.yfa{bottom:-4.500000px;}
.y10b{bottom:-4.320000px;}
.y0{bottom:0.000000px;}
.y10f{bottom:3.225000px;}
.y175{bottom:3.226500px;}
.y11a{bottom:3.232500px;}
.yf8{bottom:3.240000px;}
.y10d{bottom:3.270000px;}
.y115{bottom:3.405000px;}
.y11c{bottom:3.412500px;}
.yfe{bottom:3.420000px;}
.ybb{bottom:3.960000px;}
.yc9{bottom:4.125000px;}
.yb6{bottom:4.140000px;}
.y4c{bottom:9.504000px;}
.y4a{bottom:10.584000px;}
.y43{bottom:14.112000px;}
.y44{bottom:17.676000px;}
.y42{bottom:17.856000px;}
.y95{bottom:18.180000px;}
.y49{bottom:19.044000px;}
.y45{bottom:19.944000px;}
.y47{bottom:20.340000px;}
.y4b{bottom:20.952000px;}
.y46{bottom:21.888000px;}
.y48{bottom:25.350000px;}
.y4d{bottom:25.995000px;}
.y91{bottom:45.720000px;}
.y8f{bottom:46.800000px;}
.y88{bottom:50.325000px;}
.y89{bottom:53.895000px;}
.y87{bottom:54.075000px;}
.y8e{bottom:55.260000px;}
.y8a{bottom:56.160000px;}
.y8c{bottom:56.550000px;}
.y90{bottom:57.165000px;}
.y8b{bottom:58.110000px;}
.y8d{bottom:61.560000px;}
.y92{bottom:62.205000px;}
.y35{bottom:65.340000px;}
.y2{bottom:67.716000px;}
.y1{bottom:86.796000px;}
.y36{bottom:95.610000px;}
.y79{bottom:101.550000px;}
.yb3{bottom:105.336000px;}
.y3e{bottom:105.735000px;}
.y14c{bottom:106.416000px;}
.y11d{bottom:108.583500px;}
.y178{bottom:115.603500px;}
.y18d{bottom:117.396000px;}
.y21{bottom:119.736000px;}
.yb2{bottom:122.616000px;}
.y7a{bottom:122.655000px;}
.y11b{bottom:124.783500px;}
.y33{bottom:124.956000px;}
.y34{bottom:125.280000px;}
.y1d5{bottom:125.676000px;}
.y37{bottom:125.925000px;}
.ycd{bottom:129.456000px;}
.y177{bottom:131.803500px;}
.y6b{bottom:133.596000px;}
.y83{bottom:136.725000px;}
.yb1{bottom:139.896000px;}
.ycc{bottom:140.256000px;}
.y19d{bottom:141.156000px;}
.y119{bottom:141.163500px;}
.y7b{bottom:143.745000px;}
.y14b{bottom:144.396000px;}
.y3f{bottom:146.085000px;}
.y50{bottom:146.340000px;}
.y190{bottom:146.736000px;}
.y20{bottom:147.096000px;}
.y174{bottom:148.183500px;}
.y1c8{bottom:154.110000px;}
.y18c{bottom:155.370000px;}
.y38{bottom:156.210000px;}
.yb0{bottom:157.170000px;}
.y18f{bottom:157.350000px;}
.y118{bottom:157.365000px;}
.y19c{bottom:160.230000px;}
.y1d4{bottom:163.650000px;}
.ye9{bottom:164.010000px;}
.y173{bottom:164.385000px;}
.y7c{bottom:164.880000px;}
.y19b{bottom:167.070000px;}
.y6a{bottom:171.570000px;}
.y84{bottom:171.900000px;}
.y1f{bottom:173.010000px;}
.y4f{bottom:173.445000px;}
.y117{bottom:173.745000px;}
.yaf{bottom:174.450000px;}
.ye8{bottom:174.630000px;}
.y19a{bottom:177.690000px;}
.y93{bottom:178.380000px;}
.y1e6{bottom:179.130000px;}
.ycb{bottom:179.490000px;}
.y77{bottom:180.030000px;}
.y172{bottom:180.585000px;}
.yae{bottom:181.290000px;}
.y1bc{bottom:181.830000px;}
.y14a{bottom:182.190000px;}
.y7d{bottom:185.970000px;}
.y39{bottom:186.480000px;}
.y116{bottom:189.945000px;}
.y1b4{bottom:190.110000px;}
.yad{bottom:191.910000px;}
.y1c7{bottom:192.090000px;}
.y18b{bottom:193.350000px;}
.y171{bottom:196.965000px;}
.y1b5{bottom:197.670000px;}
.y1e{bottom:200.010000px;}
.y1d3{bottom:201.630000px;}
.y114{bottom:206.145000px;}
.y7e{bottom:207.075000px;}
.y69{bottom:209.550000px;}
.y170{bottom:213.165000px;}
.y1a7{bottom:215.670000px;}
.y3a{bottom:216.750000px;}
.y1e5{bottom:216.930000px;}
.yca{bottom:217.470000px;}
.y76{bottom:217.830000px;}
.ye6{bottom:218.370000px;}
.y1bb{bottom:219.630000px;}
.y149{bottom:220.170000px;}
.y113{bottom:222.525000px;}
.ye7{bottom:225.930000px;}
.y40{bottom:226.875000px;}
.y1b3{bottom:228.090000px;}
.y7f{bottom:228.165000px;}
.y16f{bottom:229.545000px;}
.y1c6{bottom:230.070000px;}
.y18a{bottom:231.150000px;}
.y1d{bottom:236.010000px;}
.yab{bottom:238.350000px;}
.y112{bottom:238.725000px;}
.y1d2{bottom:239.610000px;}
.y85{bottom:242.250000px;}
.y16e{bottom:245.745000px;}
.yac{bottom:245.910000px;}
.y3b{bottom:247.065000px;}
.y68{bottom:247.350000px;}
.y80{bottom:249.270000px;}
.y1a6{bottom:253.650000px;}
.y1e4{bottom:254.910000px;}
.y10e{bottom:255.105000px;}
.y75{bottom:255.810000px;}
.ye5{bottom:256.350000px;}
.y1ba{bottom:257.610000px;}
.y148{bottom:258.150000px;}
.yc8{bottom:261.585000px;}
.y16d{bottom:261.945000px;}
.y1b2{bottom:266.070000px;}
.y41{bottom:267.270000px;}
.y199{bottom:267.330000px;}
.y1c5{bottom:268.050000px;}
.y189{bottom:269.130000px;}
.y1c{bottom:270.390000px;}
.y10c{bottom:271.305000px;}
.yaa{bottom:276.375000px;}
.y3c{bottom:277.350000px;}
.y86{bottom:277.410000px;}
.y1d1{bottom:277.455000px;}
.y16c{bottom:278.355000px;}
.yc7{bottom:280.695000px;}
.y67{bottom:285.375000px;}
.y10a{bottom:287.535000px;}
.y81{bottom:291.495000px;}
.y1e3{bottom:292.935000px;}
.y74{bottom:293.835000px;}
.ye4{bottom:294.375000px;}
.y16b{bottom:294.555000px;}
.y1b9{bottom:295.635000px;}
.y147{bottom:296.175000px;}
.yc6{bottom:299.775000px;}
.y109{bottom:303.915000px;}
.y1b1{bottom:304.095000px;}
.y1b{bottom:304.995000px;}
.y198{bottom:305.355000px;}
.y1c4{bottom:305.895000px;}
.y188{bottom:307.155000px;}
.y3d{bottom:307.620000px;}
.y16a{bottom:310.935000px;}
.y82{bottom:312.585000px;}
.ya9{bottom:314.355000px;}
.y1d0{bottom:315.435000px;}
.yc5{bottom:318.855000px;}
.y108{bottom:320.115000px;}
.y66{bottom:323.355000px;}
.y169{bottom:327.135000px;}
.y1a5{bottom:329.475000px;}
.y1e2{bottom:330.915000px;}
.y73{bottom:331.815000px;}
.y1b8{bottom:333.615000px;}
.y146{bottom:334.155000px;}
.y4e{bottom:335.670000px;}
.y107{bottom:336.495000px;}
.yc4{bottom:337.935000px;}
.y1a{bottom:339.555000px;}
.y94{bottom:340.590000px;}
.y1b0{bottom:341.895000px;}
.ye3{bottom:343.155000px;}
.y168{bottom:343.335000px;}
.y1c3{bottom:343.875000px;}
.y187{bottom:345.135000px;}
.ya8{bottom:352.335000px;}
.y106{bottom:352.695000px;}
.y1cf{bottom:353.415000px;}
.yc3{bottom:356.835000px;}
.y167{bottom:359.715000px;}
.y65{bottom:361.335000px;}
.y1a4{bottom:367.455000px;}
.y1e1{bottom:368.895000px;}
.y105{bottom:369.075000px;}
.y1b7{bottom:371.595000px;}
.y145{bottom:372.135000px;}
.y19{bottom:373.935000px;}
.yc2{bottom:375.915000px;}
.y1af{bottom:379.875000px;}
.y72{bottom:380.595000px;}
.y197{bottom:381.315000px;}
.y1c2{bottom:381.855000px;}
.y186{bottom:383.115000px;}
.y104{bottom:385.275000px;}
.ya7{bottom:390.315000px;}
.y1ce{bottom:391.395000px;}
.y166{bottom:392.295000px;}
.yc1{bottom:394.995000px;}
.y1b6{bottom:396.075000px;}
.y64{bottom:399.315000px;}
.ye2{bottom:400.575000px;}
.y103{bottom:401.475000px;}
.y1a3{bottom:405.435000px;}
.y1e0{bottom:406.695000px;}
.y18{bottom:408.495000px;}
.y144{bottom:409.935000px;}
.yc0{bottom:414.075000px;}
.y102{bottom:417.855000px;}
.y196{bottom:419.295000px;}
.y1c1{bottom:419.835000px;}
.y185{bottom:421.095000px;}
.y165{bottom:424.695000px;}
.ya6{bottom:428.295000px;}
.y1cd{bottom:429.375000px;}
.ybf{bottom:433.155000px;}
.y101{bottom:434.055000px;}
.y63{bottom:437.295000px;}
.y71{bottom:438.195000px;}
.ye1{bottom:438.555000px;}
.y164{bottom:441.075000px;}
.y17{bottom:443.055000px;}
.y1a2{bottom:443.415000px;}
.y1df{bottom:444.675000px;}
.y143{bottom:447.915000px;}
.y100{bottom:450.435000px;}
.ybe{bottom:452.235000px;}
.y1ae{bottom:455.835000px;}
.y195{bottom:457.095000px;}
.y163{bottom:457.275000px;}
.y1c0{bottom:457.815000px;}
.y184{bottom:458.895000px;}
.ya5{bottom:466.095000px;}
.yff{bottom:466.635000px;}
.y1cc{bottom:467.175000px;}
.ybd{bottom:471.315000px;}
.y162{bottom:473.655000px;}
.y62{bottom:475.095000px;}
.y70{bottom:475.995000px;}
.ye0{bottom:476.535000px;}
.y16{bottom:477.435000px;}
.y1a1{bottom:481.395000px;}
.y1de{bottom:482.655000px;}
.yfd{bottom:482.835000px;}
.y142{bottom:485.895000px;}
.y161{bottom:489.855000px;}
.ybc{bottom:490.395000px;}
.y1ad{bottom:493.815000px;}
.y193{bottom:495.075000px;}
.y1bf{bottom:495.795000px;}
.y183{bottom:496.875000px;}
.yfb{bottom:499.215000px;}
.y194{bottom:502.635000px;}
.ya4{bottom:504.075000px;}
.y1cb{bottom:505.155000px;}
.y160{bottom:506.235000px;}
.y32{bottom:507.315000px;}
.yba{bottom:509.475000px;}
.y15{bottom:511.995000px;}
.y61{bottom:513.075000px;}
.y6f{bottom:513.975000px;}
.ydf{bottom:514.515000px;}
.yf9{bottom:515.415000px;}
.y1a0{bottom:519.195000px;}
.y1dd{bottom:520.635000px;}
.y15f{bottom:522.435000px;}
.y141{bottom:523.875000px;}
.yb9{bottom:528.375000px;}
.yf7{bottom:531.795000px;}
.y192{bottom:533.055000px;}
.y1be{bottom:533.595000px;}
.y182{bottom:534.855000px;}
.y15e{bottom:538.635000px;}
.ya3{bottom:542.055000px;}
.y1ca{bottom:543.135000px;}
.y14{bottom:546.375000px;}
.yb8{bottom:547.455000px;}
.y31{bottom:549.795000px;}
.y60{bottom:551.055000px;}
.y6e{bottom:551.955000px;}
.yde{bottom:552.495000px;}
.y15d{bottom:555.015000px;}
.y19f{bottom:557.205000px;}
.y1bd{bottom:558.285000px;}
.y1dc{bottom:558.645000px;}
.y140{bottom:561.885000px;}
.yb7{bottom:566.565000px;}
.y1c9{bottom:567.825000px;}
.y1ac{bottom:569.625000px;}
.yf6{bottom:571.065000px;}
.y15c{bottom:571.245000px;}
.y181{bottom:572.865000px;}
.ya2{bottom:580.065000px;}
.y13{bottom:580.965000px;}
.y19e{bottom:581.865000px;}
.yb5{bottom:585.645000px;}
.y13f{bottom:586.725000px;}
.y15b{bottom:587.625000px;}
.y30{bottom:587.805000px;}
.y5f{bottom:589.065000px;}
.y6d{bottom:589.965000px;}
.ydd{bottom:590.505000px;}
.y1db{bottom:596.445000px;}
.y13e{bottom:598.245000px;}
.y15a{bottom:603.825000px;}
.y1ab{bottom:607.605000px;}
.yf5{bottom:609.045000px;}
.y180{bottom:610.845000px;}
.y6c{bottom:614.445000px;}
.y78{bottom:614.520000px;}
.y12{bottom:615.525000px;}
.ya1{bottom:618.045000px;}
.y159{bottom:620.025000px;}
.y2f{bottom:625.605000px;}
.y5e{bottom:627.045000px;}
.ydc{bottom:628.305000px;}
.y13d{bottom:630.825000px;}
.y1da{bottom:634.425000px;}
.y158{bottom:636.405000px;}
.y1aa{bottom:645.585000px;}
.yf4{bottom:646.845000px;}
.y13c{bottom:647.025000px;}
.y17f{bottom:648.645000px;}
.y11{bottom:649.905000px;}
.y157{bottom:652.605000px;}
.y191{bottom:655.485000px;}
.ya0{bottom:655.845000px;}
.y13b{bottom:663.225000px;}
.y5d{bottom:664.845000px;}
.yda{bottom:666.285000px;}
.y2e{bottom:668.085000px;}
.y156{bottom:668.985000px;}
.y1d9{bottom:672.405000px;}
.ydb{bottom:673.845000px;}
.y13a{bottom:679.605000px;}
.y1a9{bottom:683.565000px;}
.y10{bottom:684.465000px;}
.yf3{bottom:684.825000px;}
.y155{bottom:685.185000px;}
.y17e{bottom:686.625000px;}
.y139{bottom:695.805000px;}
.y9f{bottom:698.325000px;}
.y154{bottom:701.385000px;}
.y5c{bottom:702.825000px;}
.yd9{bottom:704.265000px;}
.y2d{bottom:706.065000px;}
.y1a8{bottom:708.045000px;}
.y1d8{bottom:710.385000px;}
.y138{bottom:712.185000px;}
.y153{bottom:717.765000px;}
.yf{bottom:719.025000px;}
.yf2{bottom:722.805000px;}
.y17d{bottom:724.605000px;}
.y137{bottom:728.385000px;}
.y152{bottom:733.965000px;}
.y9e{bottom:736.305000px;}
.y5b{bottom:740.805000px;}
.yd8{bottom:742.605000px;}
.y2c{bottom:744.045000px;}
.y136{bottom:744.585000px;}
.yb4{bottom:748.365000px;}
.y151{bottom:750.345000px;}
.ye{bottom:753.405000px;}
.yf1{bottom:760.785000px;}
.y135{bottom:760.965000px;}
.y17c{bottom:762.585000px;}
.y150{bottom:766.545000px;}
.y9d{bottom:774.285000px;}
.y134{bottom:777.165000px;}
.y5a{bottom:778.785000px;}
.yd7{bottom:780.945000px;}
.y2b{bottom:782.025000px;}
.y14f{bottom:782.745000px;}
.y1d7{bottom:786.345000px;}
.yd{bottom:787.965000px;}
.y133{bottom:793.545000px;}
.yf0{bottom:798.765000px;}
.y14e{bottom:799.125000px;}
.y17b{bottom:800.565000px;}
.y132{bottom:809.745000px;}
.y9c{bottom:812.265000px;}
.y14d{bottom:815.325000px;}
.y59{bottom:816.765000px;}
.yd6{bottom:819.285000px;}
.y2a{bottom:819.825000px;}
.yc{bottom:822.525000px;}
.y131{bottom:825.945000px;}
.y1d6{bottom:835.125000px;}
.yef{bottom:836.745000px;}
.y17a{bottom:838.590000px;}
.y12f{bottom:842.370000px;}
.y9b{bottom:850.290000px;}
.y58{bottom:854.790000px;}
.yb{bottom:856.950000px;}
.yd5{bottom:857.490000px;}
.y29{bottom:857.850000px;}
.y12e{bottom:858.570000px;}
.y179{bottom:863.430000px;}
.yee{bottom:874.590000px;}
.y12d{bottom:874.950000px;}
.y9a{bottom:888.090000px;}
.y12c{bottom:891.150000px;}
.ya{bottom:891.510000px;}
.y57{bottom:892.590000px;}
.y28{bottom:895.830000px;}
.yd3{bottom:897.630000px;}
.yd4{bottom:904.290000px;}
.y12b{bottom:907.530000px;}
.yed{bottom:912.570000px;}
.y9{bottom:918.510000px;}
.y12a{bottom:923.730000px;}
.y99{bottom:926.070000px;}
.y56{bottom:930.570000px;}
.y27{bottom:933.810000px;}
.yd2{bottom:936.150000px;}
.y129{bottom:939.930000px;}
.yec{bottom:950.550000px;}
.y8{bottom:954.510000px;}
.y128{bottom:956.310000px;}
.y98{bottom:964.050000px;}
.y55{bottom:968.550000px;}
.y26{bottom:971.790000px;}
.y127{bottom:972.510000px;}
.y7{bottom:975.390000px;}
.y18e{bottom:976.110000px;}
.yeb{bottom:988.530000px;}
.y126{bottom:988.890000px;}
.y97{bottom:1002.030000px;}
.y125{bottom:1005.090000px;}
.y54{bottom:1006.530000px;}
.y6{bottom:1007.610000px;}
.yd0{bottom:1010.850000px;}
.y25{bottom:1020.570000px;}
.y124{bottom:1021.290000px;}
.yd1{bottom:1022.730000px;}
.yce{bottom:1026.690000px;}
.yea{bottom:1035.150000px;}
.y123{bottom:1037.670000px;}
.y96{bottom:1040.010000px;}
.y5{bottom:1043.790000px;}
.y53{bottom:1044.510000px;}
.ycf{bottom:1051.350000px;}
.y122{bottom:1053.870000px;}
.y24{bottom:1068.630000px;}
.y121{bottom:1070.250000px;}
.y4{bottom:1079.610000px;}
.y52{bottom:1082.310000px;}
.y120{bottom:1086.450000px;}
.y23{bottom:1095.990000px;}
.y11f{bottom:1102.650000px;}
.y3{bottom:1115.790000px;}
.y11e{bottom:1119.030000px;}
.y1e7{bottom:1119.930000px;}
.y51{bottom:1120.290000px;}
.y22{bottom:1121.760000px;}
.h1f{height:15.465000px;}
.h23{height:15.472500px;}
.h27{height:15.480000px;}
.h22{height:15.501000px;}
.h25{height:15.510000px;}
.h21{height:15.645000px;}
.h24{height:15.652500px;}
.h28{height:15.660000px;}
.h2b{height:15.681000px;}
.h26{height:15.682500px;}
.h16{height:18.165000px;}
.h15{height:18.345000px;}
.h13{height:18.360000px;}
.h17{height:18.381000px;}
.h14{height:18.390000px;}
.h19{height:34.589531px;}
.h12{height:38.158594px;}
.h8{height:40.985156px;}
.hc{height:41.405977px;}
.hd{height:41.505750px;}
.h1c{height:42.916641px;}
.h10{height:43.390195px;}
.h2a{height:47.344922px;}
.he{height:52.277344px;}
.h20{height:52.998047px;}
.h9{height:58.651172px;}
.h29{height:59.074453px;}
.h2c{height:59.383125px;}
.h7{height:64.978594px;}
.h2{height:65.010937px;}
.h1d{height:66.757500px;}
.h1a{height:70.996641px;}
.h1e{height:71.225156px;}
.ha{height:74.953125px;}
.h1b{height:80.850937px;}
.h5{height:82.676953px;}
.h3{height:84.898125px;}
.h6{height:91.878047px;}
.h4{height:93.301875px;}
.h18{height:119.956641px;}
.hb{height:364.140000px;}
.hf{height:369.000000px;}
.h11{height:1262.877945px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.wf{width:40.485000px;}
.w17{width:41.781000px;}
.wc{width:55.656000px;}
.wd{width:63.165000px;}
.w15{width:63.525000px;}
.w14{width:63.936000px;}
.w18{width:73.785000px;}
.w10{width:75.621000px;}
.we{width:78.825000px;}
.w6{width:89.265000px;}
.w8{width:89.280000px;}
.w7{width:89.301000px;}
.w9{width:89.316000px;}
.w16{width:94.845000px;}
.wb{width:276.855000px;}
.w13{width:279.735000px;}
.w11{width:317.055000px;}
.w19{width:340.815000px;}
.w5{width:540.090000px;}
.wa{width:594.630000px;}
.w3{width:601.560000px;}
.w12{width:621.270000px;}
.w2{width:637.740000px;}
.w4{width:892.978125px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x47{left:5.025000px;}
.x62{left:6.840000px;}
.x8{left:9.900000px;}
.x43{left:13.140000px;}
.x3f{left:15.285000px;}
.x9{left:17.490000px;}
.x5a{left:20.325000px;}
.x6a{left:21.780000px;}
.x5d{left:23.385000px;}
.x48{left:24.870000px;}
.x49{left:27.525000px;}
.x7{left:28.830000px;}
.x41{left:30.990000px;}
.x35{left:33.150000px;}
.x4a{left:35.085000px;}
.x5c{left:36.885000px;}
.x4b{left:39.960000px;}
.x22{left:41.760000px;}
.x23{left:49.350000px;}
.x5f{left:50.760000px;}
.x6b{left:52.905000px;}
.xa{left:57.675000px;}
.x21{left:60.690000px;}
.x56{left:68.925000px;}
.x61{left:70.770000px;}
.x60{left:74.145000px;}
.xb{left:79.920000px;}
.x3e{left:82.065000px;}
.x36{left:83.775000px;}
.x24{left:89.820000px;}
.xc{left:102.165000px;}
.x25{left:115.200000px;}
.xd{left:124.410000px;}
.x1c{left:133.950000px;}
.x26{left:140.580000px;}
.xe{left:146.700000px;}
.x2{left:148.896000px;}
.x5{left:151.020000px;}
.x3a{left:153.750000px;}
.x64{left:157.185000px;}
.x27{left:165.960000px;}
.xf{left:168.945000px;}
.x55{left:170.505000px;}
.x63{left:180.930000px;}
.x3{left:191.370000px;}
.x1f{left:193.500000px;}
.x3d{left:197.685000px;}
.x75{left:202.890000px;}
.x6c{left:205.768125px;}
.x6d{left:210.990000px;}
.x10{left:213.450000px;}
.x28{left:216.690000px;}
.x51{left:221.248125px;}
.x52{left:226.470000px;}
.x11{left:235.725000px;}
.x29{left:242.070000px;}
.x6e{left:248.428125px;}
.x6f{left:253.650000px;}
.x12{left:257.970000px;}
.x2a{left:267.450000px;}
.x13{left:280.230000px;}
.x40{left:288.045000px;}
.x2b{left:292.830000px;}
.x14{left:302.475000px;}
.x2c{left:318.210000px;}
.x15{left:324.750000px;}
.x3b{left:328.753125px;}
.x3c{left:333.975000px;}
.x2d{left:343.545000px;}
.x16{left:347.010000px;}
.x39{left:364.935000px;}
.x17{left:369.255000px;}
.x42{left:378.075000px;}
.x18{left:391.500000px;}
.x2e{left:394.305000px;}
.x4d{left:398.055000px;}
.x19{left:413.790000px;}
.x2f{left:419.685000px;}
.x4c{left:424.875000px;}
.x1a{left:436.035000px;}
.x65{left:437.655000px;}
.x4e{left:441.615000px;}
.x30{left:445.065000px;}
.x57{left:448.095000px;}
.x1b{left:458.280000px;}
.x5e{left:459.435000px;}
.x1{left:463.575000px;}
.x44{left:468.075000px;}
.x31{left:470.445000px;}
.x6{left:482.730000px;}
.x32{left:495.795000px;}
.x66{left:502.320000px;}
.x58{left:504.480000px;}
.x33{left:521.175000px;}
.x34{left:546.555000px;}
.x1d{left:550.230000px;}
.x45{left:558.120000px;}
.x67{left:566.580000px;}
.x59{left:568.380000px;}
.x20{left:573.150000px;}
.x53{left:580.243125px;}
.x54{left:585.465000px;}
.x4f{left:625.065000px;}
.x46{left:648.120000px;}
.x68{left:662.160000px;}
.x50{left:668.265000px;}
.x5b{left:689.520000px;}
.x69{left:704.670000px;}
.x37{left:722.128125px;}
.x38{left:727.350000px;}
.x71{left:739.410000px;}
.x72{left:751.830000px;}
.x70{left:771.630000px;}
.x73{left:786.750000px;}
.x74{left:788.910000px;}
.x4{left:790.170000px;}
.x1e{left:796.650000px;}
@media print{
.v11{vertical-align:-37.760000pt;}
.vb{vertical-align:-28.160000pt;}
.v3{vertical-align:-26.880000pt;}
.v10{vertical-align:-23.680000pt;}
.va{vertical-align:-19.200000pt;}
.vd{vertical-align:-17.280000pt;}
.vf{vertical-align:-14.080000pt;}
.v5{vertical-align:-12.160000pt;}
.v13{vertical-align:-10.880000pt;}
.v4{vertical-align:-8.320000pt;}
.v0{vertical-align:0.000000pt;}
.v14{vertical-align:10.880000pt;}
.v6{vertical-align:12.160000pt;}
.ve{vertical-align:14.080000pt;}
.v12{vertical-align:21.120000pt;}
.vc{vertical-align:24.960000pt;}
.v2{vertical-align:26.880000pt;}
.v1{vertical-align:34.560000pt;}
.v7{vertical-align:44.800000pt;}
.v9{vertical-align:56.320000pt;}
.v8{vertical-align:68.480000pt;}
.ls6{letter-spacing:-0.640000pt;}
.ls5{letter-spacing:-0.544000pt;}
.ls25{letter-spacing:-0.368533pt;}
.ls21{letter-spacing:-0.320000pt;}
.ls1{letter-spacing:-0.271467pt;}
.ls18{letter-spacing:-0.163733pt;}
.ls20{letter-spacing:-0.096000pt;}
.ls24{letter-spacing:-0.092267pt;}
.ls2{letter-spacing:-0.047360pt;}
.ls0{letter-spacing:0.000000pt;}
.ls1d{letter-spacing:0.016000pt;}
.ls19{letter-spacing:0.020480pt;}
.lsd{letter-spacing:0.066560pt;}
.ls9{letter-spacing:0.080640pt;}
.ls7{letter-spacing:0.097067pt;}
.ls8{letter-spacing:0.097280pt;}
.ls22{letter-spacing:0.112000pt;}
.ls16{letter-spacing:0.122880pt;}
.lsa{letter-spacing:0.135467pt;}
.ls1c{letter-spacing:0.160000pt;}
.ls1e{letter-spacing:0.218667pt;}
.lse{letter-spacing:0.224640pt;}
.ls1a{letter-spacing:0.271467pt;}
.ls3{letter-spacing:0.320000pt;}
.ls1f{letter-spacing:0.448000pt;}
.ls23{letter-spacing:3.507200pt;}
.ls12{letter-spacing:3.532800pt;}
.ls17{letter-spacing:3.692800pt;}
.ls11{letter-spacing:4.172800pt;}
.ls10{letter-spacing:12.154240pt;}
.ls15{letter-spacing:15.692800pt;}
.lsb{letter-spacing:15.802880pt;}
.lsf{letter-spacing:21.117440pt;}
.ls14{letter-spacing:28.894720pt;}
.ls13{letter-spacing:38.168960pt;}
.ls4{letter-spacing:41.088000pt;}
.lsc{letter-spacing:59.056640pt;}
.ls1b{letter-spacing:61.071360pt;}
.ws0{word-spacing:-18.720000pt;}
.ws6{word-spacing:-16.000000pt;}
.wsa{word-spacing:-14.817067pt;}
.ws9{word-spacing:-14.720000pt;}
.ws2{word-spacing:-14.448533pt;}
.ws1d{word-spacing:-14.351467pt;}
.ws5{word-spacing:-13.600000pt;}
.ws13{word-spacing:-12.974080pt;}
.wsd{word-spacing:-12.953600pt;}
.wsc{word-spacing:-12.789867pt;}
.ws16{word-spacing:-12.320000pt;}
.ws7{word-spacing:-12.034048pt;}
.ws8{word-spacing:-12.005120pt;}
.ws1{word-spacing:-12.000000pt;}
.ws15{word-spacing:-11.904000pt;}
.ws1a{word-spacing:-11.686400pt;}
.ws17{word-spacing:-11.680000pt;}
.ws19{word-spacing:-11.594133pt;}
.wsb{word-spacing:-9.600000pt;}
.ws11{word-spacing:-9.433600pt;}
.ws3{word-spacing:-9.280000pt;}
.ws18{word-spacing:-8.000000pt;}
.ws10{word-spacing:-7.603200pt;}
.ws12{word-spacing:-0.616960pt;}
.ws4{word-spacing:0.000000pt;}
.ws14{word-spacing:0.183040pt;}
.ws1c{word-spacing:3.032960pt;}
.wsf{word-spacing:3.223040pt;}
.ws1b{word-spacing:10.060800pt;}
.wse{word-spacing:10.099200pt;}
._13{margin-left:-5.114880pt;}
._1d{margin-left:-3.615360pt;}
._2{margin-left:-1.797120pt;}
._1{margin-left:-0.898560pt;}
._3{width:0.972800pt;}
._6{width:2.745600pt;}
._8{width:3.954560pt;}
._d{width:5.205760pt;}
._c{width:6.746240pt;}
._b{width:7.649280pt;}
._7{width:9.136640pt;}
._12{width:10.032640pt;}
._11{width:10.982400pt;}
._10{width:11.893760pt;}
._0{width:12.804480pt;}
._4{width:14.325760pt;}
._5{width:15.281920pt;}
._9{width:16.865067pt;}
._a{width:17.924480pt;}
._f{width:19.319040pt;}
._14{width:20.573440pt;}
._15{width:21.644373pt;}
._16{width:23.139840pt;}
._1e{width:24.342187pt;}
._18{width:25.402027pt;}
._17{width:26.333867pt;}
._e{width:27.728640pt;}
._19{width:29.557760pt;}
._1a{width:30.499840pt;}
._1b{width:31.413760pt;}
._1c{width:175.567573pt;}
.fs9{font-size:32.000000pt;}
.fs7{font-size:34.560000pt;}
.fs3{font-size:37.120000pt;}
.fs8{font-size:42.880000pt;}
.fs2{font-size:48.000000pt;}
.fs4{font-size:53.120000pt;}
.fs6{font-size:53.248000pt;}
.fs0{font-size:58.880000pt;}
.fs5{font-size:64.000000pt;}
.fs1{font-size:74.880000pt;}
.y110{bottom:-10.893333pt;}
.y176{bottom:-10.886667pt;}
.yfc{bottom:-10.880000pt;}
.y130{bottom:-4.040000pt;}
.y111{bottom:-4.013333pt;}
.yfa{bottom:-4.000000pt;}
.y10b{bottom:-3.840000pt;}
.y0{bottom:0.000000pt;}
.y10f{bottom:2.866667pt;}
.y175{bottom:2.868000pt;}
.y11a{bottom:2.873333pt;}
.yf8{bottom:2.880000pt;}
.y10d{bottom:2.906667pt;}
.y115{bottom:3.026667pt;}
.y11c{bottom:3.033333pt;}
.yfe{bottom:3.040000pt;}
.ybb{bottom:3.520000pt;}
.yc9{bottom:3.666667pt;}
.yb6{bottom:3.680000pt;}
.y4c{bottom:8.448000pt;}
.y4a{bottom:9.408000pt;}
.y43{bottom:12.544000pt;}
.y44{bottom:15.712000pt;}
.y42{bottom:15.872000pt;}
.y95{bottom:16.160000pt;}
.y49{bottom:16.928000pt;}
.y45{bottom:17.728000pt;}
.y47{bottom:18.080000pt;}
.y4b{bottom:18.624000pt;}
.y46{bottom:19.456000pt;}
.y48{bottom:22.533333pt;}
.y4d{bottom:23.106667pt;}
.y91{bottom:40.640000pt;}
.y8f{bottom:41.600000pt;}
.y88{bottom:44.733333pt;}
.y89{bottom:47.906667pt;}
.y87{bottom:48.066667pt;}
.y8e{bottom:49.120000pt;}
.y8a{bottom:49.920000pt;}
.y8c{bottom:50.266667pt;}
.y90{bottom:50.813333pt;}
.y8b{bottom:51.653333pt;}
.y8d{bottom:54.720000pt;}
.y92{bottom:55.293333pt;}
.y35{bottom:58.080000pt;}
.y2{bottom:60.192000pt;}
.y1{bottom:77.152000pt;}
.y36{bottom:84.986667pt;}
.y79{bottom:90.266667pt;}
.yb3{bottom:93.632000pt;}
.y3e{bottom:93.986667pt;}
.y14c{bottom:94.592000pt;}
.y11d{bottom:96.518667pt;}
.y178{bottom:102.758667pt;}
.y18d{bottom:104.352000pt;}
.y21{bottom:106.432000pt;}
.yb2{bottom:108.992000pt;}
.y7a{bottom:109.026667pt;}
.y11b{bottom:110.918667pt;}
.y33{bottom:111.072000pt;}
.y34{bottom:111.360000pt;}
.y1d5{bottom:111.712000pt;}
.y37{bottom:111.933333pt;}
.ycd{bottom:115.072000pt;}
.y177{bottom:117.158667pt;}
.y6b{bottom:118.752000pt;}
.y83{bottom:121.533333pt;}
.yb1{bottom:124.352000pt;}
.ycc{bottom:124.672000pt;}
.y19d{bottom:125.472000pt;}
.y119{bottom:125.478667pt;}
.y7b{bottom:127.773333pt;}
.y14b{bottom:128.352000pt;}
.y3f{bottom:129.853333pt;}
.y50{bottom:130.080000pt;}
.y190{bottom:130.432000pt;}
.y20{bottom:130.752000pt;}
.y174{bottom:131.718667pt;}
.y1c8{bottom:136.986667pt;}
.y18c{bottom:138.106667pt;}
.y38{bottom:138.853333pt;}
.yb0{bottom:139.706667pt;}
.y18f{bottom:139.866667pt;}
.y118{bottom:139.880000pt;}
.y19c{bottom:142.426667pt;}
.y1d4{bottom:145.466667pt;}
.ye9{bottom:145.786667pt;}
.y173{bottom:146.120000pt;}
.y7c{bottom:146.560000pt;}
.y19b{bottom:148.506667pt;}
.y6a{bottom:152.506667pt;}
.y84{bottom:152.800000pt;}
.y1f{bottom:153.786667pt;}
.y4f{bottom:154.173333pt;}
.y117{bottom:154.440000pt;}
.yaf{bottom:155.066667pt;}
.ye8{bottom:155.226667pt;}
.y19a{bottom:157.946667pt;}
.y93{bottom:158.560000pt;}
.y1e6{bottom:159.226667pt;}
.ycb{bottom:159.546667pt;}
.y77{bottom:160.026667pt;}
.y172{bottom:160.520000pt;}
.yae{bottom:161.146667pt;}
.y1bc{bottom:161.626667pt;}
.y14a{bottom:161.946667pt;}
.y7d{bottom:165.306667pt;}
.y39{bottom:165.760000pt;}
.y116{bottom:168.840000pt;}
.y1b4{bottom:168.986667pt;}
.yad{bottom:170.586667pt;}
.y1c7{bottom:170.746667pt;}
.y18b{bottom:171.866667pt;}
.y171{bottom:175.080000pt;}
.y1b5{bottom:175.706667pt;}
.y1e{bottom:177.786667pt;}
.y1d3{bottom:179.226667pt;}
.y114{bottom:183.240000pt;}
.y7e{bottom:184.066667pt;}
.y69{bottom:186.266667pt;}
.y170{bottom:189.480000pt;}
.y1a7{bottom:191.706667pt;}
.y3a{bottom:192.666667pt;}
.y1e5{bottom:192.826667pt;}
.yca{bottom:193.306667pt;}
.y76{bottom:193.626667pt;}
.ye6{bottom:194.106667pt;}
.y1bb{bottom:195.226667pt;}
.y149{bottom:195.706667pt;}
.y113{bottom:197.800000pt;}
.ye7{bottom:200.826667pt;}
.y40{bottom:201.666667pt;}
.y1b3{bottom:202.746667pt;}
.y7f{bottom:202.813333pt;}
.y16f{bottom:204.040000pt;}
.y1c6{bottom:204.506667pt;}
.y18a{bottom:205.466667pt;}
.y1d{bottom:209.786667pt;}
.yab{bottom:211.866667pt;}
.y112{bottom:212.200000pt;}
.y1d2{bottom:212.986667pt;}
.y85{bottom:215.333333pt;}
.y16e{bottom:218.440000pt;}
.yac{bottom:218.586667pt;}
.y3b{bottom:219.613333pt;}
.y68{bottom:219.866667pt;}
.y80{bottom:221.573333pt;}
.y1a6{bottom:225.466667pt;}
.y1e4{bottom:226.586667pt;}
.y10e{bottom:226.760000pt;}
.y75{bottom:227.386667pt;}
.ye5{bottom:227.866667pt;}
.y1ba{bottom:228.986667pt;}
.y148{bottom:229.466667pt;}
.yc8{bottom:232.520000pt;}
.y16d{bottom:232.840000pt;}
.y1b2{bottom:236.506667pt;}
.y41{bottom:237.573333pt;}
.y199{bottom:237.626667pt;}
.y1c5{bottom:238.266667pt;}
.y189{bottom:239.226667pt;}
.y1c{bottom:240.346667pt;}
.y10c{bottom:241.160000pt;}
.yaa{bottom:245.666667pt;}
.y3c{bottom:246.533333pt;}
.y86{bottom:246.586667pt;}
.y1d1{bottom:246.626667pt;}
.y16c{bottom:247.426667pt;}
.yc7{bottom:249.506667pt;}
.y67{bottom:253.666667pt;}
.y10a{bottom:255.586667pt;}
.y81{bottom:259.106667pt;}
.y1e3{bottom:260.386667pt;}
.y74{bottom:261.186667pt;}
.ye4{bottom:261.666667pt;}
.y16b{bottom:261.826667pt;}
.y1b9{bottom:262.786667pt;}
.y147{bottom:263.266667pt;}
.yc6{bottom:266.466667pt;}
.y109{bottom:270.146667pt;}
.y1b1{bottom:270.306667pt;}
.y1b{bottom:271.106667pt;}
.y198{bottom:271.426667pt;}
.y1c4{bottom:271.906667pt;}
.y188{bottom:273.026667pt;}
.y3d{bottom:273.440000pt;}
.y16a{bottom:276.386667pt;}
.y82{bottom:277.853333pt;}
.ya9{bottom:279.426667pt;}
.y1d0{bottom:280.386667pt;}
.yc5{bottom:283.426667pt;}
.y108{bottom:284.546667pt;}
.y66{bottom:287.426667pt;}
.y169{bottom:290.786667pt;}
.y1a5{bottom:292.866667pt;}
.y1e2{bottom:294.146667pt;}
.y73{bottom:294.946667pt;}
.y1b8{bottom:296.546667pt;}
.y146{bottom:297.026667pt;}
.y4e{bottom:298.373333pt;}
.y107{bottom:299.106667pt;}
.yc4{bottom:300.386667pt;}
.y1a{bottom:301.826667pt;}
.y94{bottom:302.746667pt;}
.y1b0{bottom:303.906667pt;}
.ye3{bottom:305.026667pt;}
.y168{bottom:305.186667pt;}
.y1c3{bottom:305.666667pt;}
.y187{bottom:306.786667pt;}
.ya8{bottom:313.186667pt;}
.y106{bottom:313.506667pt;}
.y1cf{bottom:314.146667pt;}
.yc3{bottom:317.186667pt;}
.y167{bottom:319.746667pt;}
.y65{bottom:321.186667pt;}
.y1a4{bottom:326.626667pt;}
.y1e1{bottom:327.906667pt;}
.y105{bottom:328.066667pt;}
.y1b7{bottom:330.306667pt;}
.y145{bottom:330.786667pt;}
.y19{bottom:332.386667pt;}
.yc2{bottom:334.146667pt;}
.y1af{bottom:337.666667pt;}
.y72{bottom:338.306667pt;}
.y197{bottom:338.946667pt;}
.y1c2{bottom:339.426667pt;}
.y186{bottom:340.546667pt;}
.y104{bottom:342.466667pt;}
.ya7{bottom:346.946667pt;}
.y1ce{bottom:347.906667pt;}
.y166{bottom:348.706667pt;}
.yc1{bottom:351.106667pt;}
.y1b6{bottom:352.066667pt;}
.y64{bottom:354.946667pt;}
.ye2{bottom:356.066667pt;}
.y103{bottom:356.866667pt;}
.y1a3{bottom:360.386667pt;}
.y1e0{bottom:361.506667pt;}
.y18{bottom:363.106667pt;}
.y144{bottom:364.386667pt;}
.yc0{bottom:368.066667pt;}
.y102{bottom:371.426667pt;}
.y196{bottom:372.706667pt;}
.y1c1{bottom:373.186667pt;}
.y185{bottom:374.306667pt;}
.y165{bottom:377.506667pt;}
.ya6{bottom:380.706667pt;}
.y1cd{bottom:381.666667pt;}
.ybf{bottom:385.026667pt;}
.y101{bottom:385.826667pt;}
.y63{bottom:388.706667pt;}
.y71{bottom:389.506667pt;}
.ye1{bottom:389.826667pt;}
.y164{bottom:392.066667pt;}
.y17{bottom:393.826667pt;}
.y1a2{bottom:394.146667pt;}
.y1df{bottom:395.266667pt;}
.y143{bottom:398.146667pt;}
.y100{bottom:400.386667pt;}
.ybe{bottom:401.986667pt;}
.y1ae{bottom:405.186667pt;}
.y195{bottom:406.306667pt;}
.y163{bottom:406.466667pt;}
.y1c0{bottom:406.946667pt;}
.y184{bottom:407.906667pt;}
.ya5{bottom:414.306667pt;}
.yff{bottom:414.786667pt;}
.y1cc{bottom:415.266667pt;}
.ybd{bottom:418.946667pt;}
.y162{bottom:421.026667pt;}
.y62{bottom:422.306667pt;}
.y70{bottom:423.106667pt;}
.ye0{bottom:423.586667pt;}
.y16{bottom:424.386667pt;}
.y1a1{bottom:427.906667pt;}
.y1de{bottom:429.026667pt;}
.yfd{bottom:429.186667pt;}
.y142{bottom:431.906667pt;}
.y161{bottom:435.426667pt;}
.ybc{bottom:435.906667pt;}
.y1ad{bottom:438.946667pt;}
.y193{bottom:440.066667pt;}
.y1bf{bottom:440.706667pt;}
.y183{bottom:441.666667pt;}
.yfb{bottom:443.746667pt;}
.y194{bottom:446.786667pt;}
.ya4{bottom:448.066667pt;}
.y1cb{bottom:449.026667pt;}
.y160{bottom:449.986667pt;}
.y32{bottom:450.946667pt;}
.yba{bottom:452.866667pt;}
.y15{bottom:455.106667pt;}
.y61{bottom:456.066667pt;}
.y6f{bottom:456.866667pt;}
.ydf{bottom:457.346667pt;}
.yf9{bottom:458.146667pt;}
.y1a0{bottom:461.506667pt;}
.y1dd{bottom:462.786667pt;}
.y15f{bottom:464.386667pt;}
.y141{bottom:465.666667pt;}
.yb9{bottom:469.666667pt;}
.yf7{bottom:472.706667pt;}
.y192{bottom:473.826667pt;}
.y1be{bottom:474.306667pt;}
.y182{bottom:475.426667pt;}
.y15e{bottom:478.786667pt;}
.ya3{bottom:481.826667pt;}
.y1ca{bottom:482.786667pt;}
.y14{bottom:485.666667pt;}
.yb8{bottom:486.626667pt;}
.y31{bottom:488.706667pt;}
.y60{bottom:489.826667pt;}
.y6e{bottom:490.626667pt;}
.yde{bottom:491.106667pt;}
.y15d{bottom:493.346667pt;}
.y19f{bottom:495.293333pt;}
.y1bd{bottom:496.253333pt;}
.y1dc{bottom:496.573333pt;}
.y140{bottom:499.453333pt;}
.yb7{bottom:503.613333pt;}
.y1c9{bottom:504.733333pt;}
.y1ac{bottom:506.333333pt;}
.yf6{bottom:507.613333pt;}
.y15c{bottom:507.773333pt;}
.y181{bottom:509.213333pt;}
.ya2{bottom:515.613333pt;}
.y13{bottom:516.413333pt;}
.y19e{bottom:517.213333pt;}
.yb5{bottom:520.573333pt;}
.y13f{bottom:521.533333pt;}
.y15b{bottom:522.333333pt;}
.y30{bottom:522.493333pt;}
.y5f{bottom:523.613333pt;}
.y6d{bottom:524.413333pt;}
.ydd{bottom:524.893333pt;}
.y1db{bottom:530.173333pt;}
.y13e{bottom:531.773333pt;}
.y15a{bottom:536.733333pt;}
.y1ab{bottom:540.093333pt;}
.yf5{bottom:541.373333pt;}
.y180{bottom:542.973333pt;}
.y6c{bottom:546.173333pt;}
.y78{bottom:546.240000pt;}
.y12{bottom:547.133333pt;}
.ya1{bottom:549.373333pt;}
.y159{bottom:551.133333pt;}
.y2f{bottom:556.093333pt;}
.y5e{bottom:557.373333pt;}
.ydc{bottom:558.493333pt;}
.y13d{bottom:560.733333pt;}
.y1da{bottom:563.933333pt;}
.y158{bottom:565.693333pt;}
.y1aa{bottom:573.853333pt;}
.yf4{bottom:574.973333pt;}
.y13c{bottom:575.133333pt;}
.y17f{bottom:576.573333pt;}
.y11{bottom:577.693333pt;}
.y157{bottom:580.093333pt;}
.y191{bottom:582.653333pt;}
.ya0{bottom:582.973333pt;}
.y13b{bottom:589.533333pt;}
.y5d{bottom:590.973333pt;}
.yda{bottom:592.253333pt;}
.y2e{bottom:593.853333pt;}
.y156{bottom:594.653333pt;}
.y1d9{bottom:597.693333pt;}
.ydb{bottom:598.973333pt;}
.y13a{bottom:604.093333pt;}
.y1a9{bottom:607.613333pt;}
.y10{bottom:608.413333pt;}
.yf3{bottom:608.733333pt;}
.y155{bottom:609.053333pt;}
.y17e{bottom:610.333333pt;}
.y139{bottom:618.493333pt;}
.y9f{bottom:620.733333pt;}
.y154{bottom:623.453333pt;}
.y5c{bottom:624.733333pt;}
.yd9{bottom:626.013333pt;}
.y2d{bottom:627.613333pt;}
.y1a8{bottom:629.373333pt;}
.y1d8{bottom:631.453333pt;}
.y138{bottom:633.053333pt;}
.y153{bottom:638.013333pt;}
.yf{bottom:639.133333pt;}
.yf2{bottom:642.493333pt;}
.y17d{bottom:644.093333pt;}
.y137{bottom:647.453333pt;}
.y152{bottom:652.413333pt;}
.y9e{bottom:654.493333pt;}
.y5b{bottom:658.493333pt;}
.yd8{bottom:660.093333pt;}
.y2c{bottom:661.373333pt;}
.y136{bottom:661.853333pt;}
.yb4{bottom:665.213333pt;}
.y151{bottom:666.973333pt;}
.ye{bottom:669.693333pt;}
.yf1{bottom:676.253333pt;}
.y135{bottom:676.413333pt;}
.y17c{bottom:677.853333pt;}
.y150{bottom:681.373333pt;}
.y9d{bottom:688.253333pt;}
.y134{bottom:690.813333pt;}
.y5a{bottom:692.253333pt;}
.yd7{bottom:694.173333pt;}
.y2b{bottom:695.133333pt;}
.y14f{bottom:695.773333pt;}
.y1d7{bottom:698.973333pt;}
.yd{bottom:700.413333pt;}
.y133{bottom:705.373333pt;}
.yf0{bottom:710.013333pt;}
.y14e{bottom:710.333333pt;}
.y17b{bottom:711.613333pt;}
.y132{bottom:719.773333pt;}
.y9c{bottom:722.013333pt;}
.y14d{bottom:724.733333pt;}
.y59{bottom:726.013333pt;}
.yd6{bottom:728.253333pt;}
.y2a{bottom:728.733333pt;}
.yc{bottom:731.133333pt;}
.y131{bottom:734.173333pt;}
.y1d6{bottom:742.333333pt;}
.yef{bottom:743.773333pt;}
.y17a{bottom:745.413333pt;}
.y12f{bottom:748.773333pt;}
.y9b{bottom:755.813333pt;}
.y58{bottom:759.813333pt;}
.yb{bottom:761.733333pt;}
.yd5{bottom:762.213333pt;}
.y29{bottom:762.533333pt;}
.y12e{bottom:763.173333pt;}
.y179{bottom:767.493333pt;}
.yee{bottom:777.413333pt;}
.y12d{bottom:777.733333pt;}
.y9a{bottom:789.413333pt;}
.y12c{bottom:792.133333pt;}
.ya{bottom:792.453333pt;}
.y57{bottom:793.413333pt;}
.y28{bottom:796.293333pt;}
.yd3{bottom:797.893333pt;}
.yd4{bottom:803.813333pt;}
.y12b{bottom:806.693333pt;}
.yed{bottom:811.173333pt;}
.y9{bottom:816.453333pt;}
.y12a{bottom:821.093333pt;}
.y99{bottom:823.173333pt;}
.y56{bottom:827.173333pt;}
.y27{bottom:830.053333pt;}
.yd2{bottom:832.133333pt;}
.y129{bottom:835.493333pt;}
.yec{bottom:844.933333pt;}
.y8{bottom:848.453333pt;}
.y128{bottom:850.053333pt;}
.y98{bottom:856.933333pt;}
.y55{bottom:860.933333pt;}
.y26{bottom:863.813333pt;}
.y127{bottom:864.453333pt;}
.y7{bottom:867.013333pt;}
.y18e{bottom:867.653333pt;}
.yeb{bottom:878.693333pt;}
.y126{bottom:879.013333pt;}
.y97{bottom:890.693333pt;}
.y125{bottom:893.413333pt;}
.y54{bottom:894.693333pt;}
.y6{bottom:895.653333pt;}
.yd0{bottom:898.533333pt;}
.y25{bottom:907.173333pt;}
.y124{bottom:907.813333pt;}
.yd1{bottom:909.093333pt;}
.yce{bottom:912.613333pt;}
.yea{bottom:920.133333pt;}
.y123{bottom:922.373333pt;}
.y96{bottom:924.453333pt;}
.y5{bottom:927.813333pt;}
.y53{bottom:928.453333pt;}
.ycf{bottom:934.533333pt;}
.y122{bottom:936.773333pt;}
.y24{bottom:949.893333pt;}
.y121{bottom:951.333333pt;}
.y4{bottom:959.653333pt;}
.y52{bottom:962.053333pt;}
.y120{bottom:965.733333pt;}
.y23{bottom:974.213333pt;}
.y11f{bottom:980.133333pt;}
.y3{bottom:991.813333pt;}
.y11e{bottom:994.693333pt;}
.y1e7{bottom:995.493333pt;}
.y51{bottom:995.813333pt;}
.y22{bottom:997.120000pt;}
.h1f{height:13.746667pt;}
.h23{height:13.753333pt;}
.h27{height:13.760000pt;}
.h22{height:13.778667pt;}
.h25{height:13.786667pt;}
.h21{height:13.906667pt;}
.h24{height:13.913333pt;}
.h28{height:13.920000pt;}
.h2b{height:13.938667pt;}
.h26{height:13.940000pt;}
.h16{height:16.146667pt;}
.h15{height:16.306667pt;}
.h13{height:16.320000pt;}
.h17{height:16.338667pt;}
.h14{height:16.346667pt;}
.h19{height:30.746250pt;}
.h12{height:33.918750pt;}
.h8{height:36.431250pt;}
.hc{height:36.805312pt;}
.hd{height:36.894000pt;}
.h1c{height:38.148125pt;}
.h10{height:38.569063pt;}
.h2a{height:42.084375pt;}
.he{height:46.468750pt;}
.h20{height:47.109375pt;}
.h9{height:52.134375pt;}
.h29{height:52.510625pt;}
.h2c{height:52.785000pt;}
.h7{height:57.758750pt;}
.h2{height:57.787500pt;}
.h1d{height:59.340000pt;}
.h1a{height:63.108125pt;}
.h1e{height:63.311250pt;}
.ha{height:66.625000pt;}
.h1b{height:71.867500pt;}
.h5{height:73.490625pt;}
.h3{height:75.465000pt;}
.h6{height:81.669375pt;}
.h4{height:82.935000pt;}
.h18{height:106.628125pt;}
.hb{height:323.680000pt;}
.hf{height:328.000000pt;}
.h11{height:1122.558173pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.wf{width:35.986667pt;}
.w17{width:37.138667pt;}
.wc{width:49.472000pt;}
.wd{width:56.146667pt;}
.w15{width:56.466667pt;}
.w14{width:56.832000pt;}
.w18{width:65.586667pt;}
.w10{width:67.218667pt;}
.we{width:70.066667pt;}
.w6{width:79.346667pt;}
.w8{width:79.360000pt;}
.w7{width:79.378667pt;}
.w9{width:79.392000pt;}
.w16{width:84.306667pt;}
.wb{width:246.093333pt;}
.w13{width:248.653333pt;}
.w11{width:281.826667pt;}
.w19{width:302.946667pt;}
.w5{width:480.080000pt;}
.wa{width:528.560000pt;}
.w3{width:534.720000pt;}
.w12{width:552.240000pt;}
.w2{width:566.880000pt;}
.w4{width:793.758333pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x47{left:4.466667pt;}
.x62{left:6.080000pt;}
.x8{left:8.800000pt;}
.x43{left:11.680000pt;}
.x3f{left:13.586667pt;}
.x9{left:15.546667pt;}
.x5a{left:18.066667pt;}
.x6a{left:19.360000pt;}
.x5d{left:20.786667pt;}
.x48{left:22.106667pt;}
.x49{left:24.466667pt;}
.x7{left:25.626667pt;}
.x41{left:27.546667pt;}
.x35{left:29.466667pt;}
.x4a{left:31.186667pt;}
.x5c{left:32.786667pt;}
.x4b{left:35.520000pt;}
.x22{left:37.120000pt;}
.x23{left:43.866667pt;}
.x5f{left:45.120000pt;}
.x6b{left:47.026667pt;}
.xa{left:51.266667pt;}
.x21{left:53.946667pt;}
.x56{left:61.266667pt;}
.x61{left:62.906667pt;}
.x60{left:65.906667pt;}
.xb{left:71.040000pt;}
.x3e{left:72.946667pt;}
.x36{left:74.466667pt;}
.x24{left:79.840000pt;}
.xc{left:90.813333pt;}
.x25{left:102.400000pt;}
.xd{left:110.586667pt;}
.x1c{left:119.066667pt;}
.x26{left:124.960000pt;}
.xe{left:130.400000pt;}
.x2{left:132.352000pt;}
.x5{left:134.240000pt;}
.x3a{left:136.666667pt;}
.x64{left:139.720000pt;}
.x27{left:147.520000pt;}
.xf{left:150.173333pt;}
.x55{left:151.560000pt;}
.x63{left:160.826667pt;}
.x3{left:170.106667pt;}
.x1f{left:172.000000pt;}
.x3d{left:175.720000pt;}
.x75{left:180.346667pt;}
.x6c{left:182.905000pt;}
.x6d{left:187.546667pt;}
.x10{left:189.733333pt;}
.x28{left:192.613333pt;}
.x51{left:196.665000pt;}
.x52{left:201.306667pt;}
.x11{left:209.533333pt;}
.x29{left:215.173333pt;}
.x6e{left:220.825000pt;}
.x6f{left:225.466667pt;}
.x12{left:229.306667pt;}
.x2a{left:237.733333pt;}
.x13{left:249.093333pt;}
.x40{left:256.040000pt;}
.x2b{left:260.293333pt;}
.x14{left:268.866667pt;}
.x2c{left:282.853333pt;}
.x15{left:288.666667pt;}
.x3b{left:292.225000pt;}
.x3c{left:296.866667pt;}
.x2d{left:305.373333pt;}
.x16{left:308.453333pt;}
.x39{left:324.386667pt;}
.x17{left:328.226667pt;}
.x42{left:336.066667pt;}
.x18{left:348.000000pt;}
.x2e{left:350.493333pt;}
.x4d{left:353.826667pt;}
.x19{left:367.813333pt;}
.x2f{left:373.053333pt;}
.x4c{left:377.666667pt;}
.x1a{left:387.586667pt;}
.x65{left:389.026667pt;}
.x4e{left:392.546667pt;}
.x30{left:395.613333pt;}
.x57{left:398.306667pt;}
.x1b{left:407.360000pt;}
.x5e{left:408.386667pt;}
.x1{left:412.066667pt;}
.x44{left:416.066667pt;}
.x31{left:418.173333pt;}
.x6{left:429.093333pt;}
.x32{left:440.706667pt;}
.x66{left:446.506667pt;}
.x58{left:448.426667pt;}
.x33{left:463.266667pt;}
.x34{left:485.826667pt;}
.x1d{left:489.093333pt;}
.x45{left:496.106667pt;}
.x67{left:503.626667pt;}
.x59{left:505.226667pt;}
.x20{left:509.466667pt;}
.x53{left:515.771667pt;}
.x54{left:520.413333pt;}
.x4f{left:555.613333pt;}
.x46{left:576.106667pt;}
.x68{left:588.586667pt;}
.x50{left:594.013333pt;}
.x5b{left:612.906667pt;}
.x69{left:626.373333pt;}
.x37{left:641.891667pt;}
.x38{left:646.533333pt;}
.x71{left:657.253333pt;}
.x72{left:668.293333pt;}
.x70{left:685.893333pt;}
.x73{left:699.333333pt;}
.x74{left:701.253333pt;}
.x4{left:702.373333pt;}
.x1e{left:708.133333pt;}
}




    .paper-inline-ad { box-sizing: border-box; margin: 13px auto; max-width: 100%; min-height: 120px; background: #fff; border: 1px solid #e5e7eb; overflow: hidden; }
    .paper-inline-ad-label { padding: 6px 10px 0 10px; font: 10px system-ui, sans-serif; color: #9ca3af; text-transform: uppercase; letter-spacing: .04em; }
    .paper-inline-ad-slot { min-height: 100px; }
    .paper-inline-ad--internal { padding: 0; }
    .paper-internal-promo { padding: 14px 16px 16px 16px; font: 13px system-ui, sans-serif; line-height: 1.45; color: #374151; }
    .paper-internal-promo-title { font-size: 17px; font-weight: 800; color: #111827; margin-bottom: 7px; }
    .paper-internal-promo-body { margin-bottom: 12px; }
    .paper-internal-promo-actions { display: flex; flex-wrap: wrap; gap: 8px; }
    .paper-internal-promo-actions a { display: inline-block; padding: 7px 10px; border: 1px solid #d1d5db; border-radius: 8px; text-decoration: none; color: #111827; background: #f9fafb; font-weight: 700; }
  