
    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_8f93e55f19c457c2250bbf62.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.202148;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_2c87d70034de48282d0a8740.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.003906;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_49538e647e56fc88b05b45e5.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.971191;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_4ed6104bbc0f3e5b8f15fa02.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.980957;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_20005af9387901ab2d3438d0.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.971191;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_96d709002aca236d61d5764f.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.774902;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_575b711311e4544aad24f191.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.980957;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_7d2f56c3e591f6f3196bdcd9.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.975586;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_922b15f9ef3d7db3da673876.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.975586;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_d98c1d57ccb14a68a7210d77.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_4d24a90c4533158b73f43757.woff2')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_3c944fbd98cea7aadc7d7504.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.937012;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_498c19e1a940da00b81d0462.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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);}
.m2{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);}
.ve{vertical-align:-88.560000px;}
.v10{vertical-align:-83.520000px;}
.v3{vertical-align:-14.400000px;}
.v0{vertical-align:0.000000px;}
.v12{vertical-align:2.880000px;}
.v4{vertical-align:14.400000px;}
.vf{vertical-align:26.640000px;}
.v7{vertical-align:30.960000px;}
.v2{vertical-align:38.880000px;}
.v14{vertical-align:43.920000px;}
.vb{vertical-align:46.080000px;}
.va{vertical-align:48.240000px;}
.v6{vertical-align:53.280000px;}
.v9{vertical-align:54.720000px;}
.v11{vertical-align:57.600000px;}
.v13{vertical-align:71.280000px;}
.v8{vertical-align:78.480000px;}
.v5{vertical-align:85.680000px;}
.vc{vertical-align:91.440000px;}
.v1{vertical-align:117.360000px;}
.vd{vertical-align:125.280000px;}
.ls29{letter-spacing:-1.008000px;}
.lsf{letter-spacing:-0.360000px;}
.ls5{letter-spacing:-0.288000px;}
.ls3{letter-spacing:-0.216000px;}
.ls11{letter-spacing:-0.144000px;}
.ls4{letter-spacing:-0.072000px;}
.ls2{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.072000px;}
.ls18{letter-spacing:0.075000px;}
.ls25{letter-spacing:0.144000px;}
.ls2a{letter-spacing:0.181440px;}
.ls0{letter-spacing:0.216000px;}
.ls6{letter-spacing:0.288000px;}
.lsc{letter-spacing:0.360000px;}
.ls17{letter-spacing:0.432000px;}
.lsd{letter-spacing:0.576000px;}
.ls2c{letter-spacing:0.648000px;}
.ls1d{letter-spacing:0.720000px;}
.ls28{letter-spacing:1.008000px;}
.ls1b{letter-spacing:1.800000px;}
.ls14{letter-spacing:2.016000px;}
.ls23{letter-spacing:2.376000px;}
.ls1a{letter-spacing:2.448000px;}
.ls16{letter-spacing:2.545200px;}
.ls1f{letter-spacing:3.096000px;}
.lsb{letter-spacing:3.656880px;}
.ls9{letter-spacing:4.376880px;}
.ls20{letter-spacing:5.616000px;}
.ls10{letter-spacing:16.056000px;}
.ls22{letter-spacing:16.200000px;}
.ls24{letter-spacing:19.656000px;}
.ls8{letter-spacing:20.216880px;}
.ls19{letter-spacing:20.376000px;}
.ls21{letter-spacing:20.496000px;}
.ls26{letter-spacing:22.176000px;}
.lse{letter-spacing:27.432000px;}
.ls2d{letter-spacing:31.824000px;}
.ls12{letter-spacing:35.496000px;}
.ls27{letter-spacing:44.676000px;}
.ls2b{letter-spacing:77.880000px;}
.ls7{letter-spacing:77.976000px;}
.lsa{letter-spacing:92.936880px;}
.ls13{letter-spacing:146.592000px;}
.ls1c{letter-spacing:835.956000px;}
.ls1e{letter-spacing:838.836000px;}
.ls15{letter-spacing:873.396000px;}
.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;}
}
.ws4{word-spacing:-25.632000px;}
.ws1{word-spacing:-25.344000px;}
.ws5{word-spacing:-25.272000px;}
.ws0{word-spacing:-25.128000px;}
.ws2{word-spacing:-24.624000px;}
.ws6{word-spacing:-13.500000px;}
.ws3{word-spacing:0.000000px;}
.ws7{word-spacing:281.430000px;}
._2d{margin-left:-8.149920px;}
._2e{margin-left:-3.246960px;}
._0{margin-left:-1.289040px;}
._5{width:1.001040px;}
._12{width:2.022960px;}
._11{width:3.312000px;}
._2b{width:4.347840px;}
._25{width:5.393040px;}
._7{width:6.480000px;}
._8{width:7.776000px;}
._22{width:8.880240px;}
._9{width:10.350720px;}
._1{width:11.852640px;}
._1e{width:13.536000px;}
._1f{width:14.688000px;}
._24{width:16.464000px;}
._10{width:17.784000px;}
._e{width:18.936000px;}
._f{width:20.101920px;}
._26{width:21.665040px;}
._16{width:22.752000px;}
._17{width:24.192000px;}
._1d{width:26.497920px;}
._c{width:27.720000px;}
._b{width:28.800000px;}
._14{width:30.000000px;}
._15{width:31.056000px;}
._23{width:32.113920px;}
._1c{width:33.840000px;}
._2c{width:34.848000px;}
._3d{width:35.856000px;}
._a{width:37.368000px;}
._d{width:38.598960px;}
._29{width:39.613200px;}
._6{width:41.448000px;}
._13{width:42.984000px;}
._3c{width:44.640000px;}
._2f{width:45.792000px;}
._39{width:47.232000px;}
._41{width:48.402960px;}
._36{width:49.817040px;}
._43{width:51.029040px;}
._20{width:55.524000px;}
._21{width:56.844000px;}
._27{width:60.048000px;}
._34{width:61.081440px;}
._31{width:62.441280px;}
._28{width:64.728000px;}
._3b{width:66.240000px;}
._18{width:67.404000px;}
._2a{width:68.676000px;}
._30{width:69.874080px;}
._47{width:72.648000px;}
._32{width:74.304000px;}
._3a{width:88.056000px;}
._35{width:94.518960px;}
._42{width:95.958960px;}
._40{width:97.416000px;}
._49{width:108.216000px;}
._4a{width:109.854960px;}
._19{width:126.720000px;}
._1a{width:127.800000px;}
._38{width:155.153040px;}
._3f{width:158.976000px;}
._3e{width:163.152000px;}
._4{width:175.565280px;}
._3{width:193.169760px;}
._2{width:194.975520px;}
._33{width:204.876000px;}
._37{width:270.699360px;}
._44{width:294.198960px;}
._4b{width:467.208000px;}
._48{width:759.180000px;}
._46{width:781.068000px;}
._45{width:783.696000px;}
._1b{width:2265.501600px;}
.fc1{color:rgb(54,95,145);}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:23.760000px;}
.fs6{font-size:30.240000px;}
.fs5{font-size:51.120000px;}
.fs7{font-size:54.000000px;}
.fs1{font-size:66.240000px;}
.fs2{font-size:72.000000px;}
.fs0{font-size:81.360000px;}
.fs4{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.y19c{bottom:2.805000px;}
.y114{bottom:3.780000px;}
.y116{bottom:3.960000px;}
.y12f{bottom:4.860000px;}
.y19a{bottom:6.270000px;}
.y19d{bottom:6.810000px;}
.y2{bottom:11.700000px;}
.y1d2{bottom:12.345000px;}
.y19f{bottom:12.390000px;}
.y1bb{bottom:12.570000px;}
.y160{bottom:25.740000px;}
.y12e{bottom:25.965000px;}
.y1cb{bottom:28.185000px;}
.y1b1{bottom:28.440000px;}
.y15f{bottom:47.700000px;}
.y1bd{bottom:49.500000px;}
.y1bf{bottom:51.945000px;}
.y1c1{bottom:54.435000px;}
.y1c3{bottom:56.910000px;}
.y1c5{bottom:59.370000px;}
.y1c7{bottom:61.845000px;}
.y1c9{bottom:64.290000px;}
.y1b2{bottom:64.980000px;}
.y15e{bottom:69.660000px;}
.y161{bottom:70.560000px;}
.y1cc{bottom:77.550000px;}
.y152{bottom:92.916000px;}
.y3a{bottom:99.576000px;}
.y5a{bottom:99.936000px;}
.y1b3{bottom:101.520000px;}
.yb3{bottom:106.236000px;}
.y33{bottom:106.776000px;}
.y86{bottom:107.856000px;}
.y102{bottom:109.296000px;}
.y12b{bottom:110.736000px;}
.y17b{bottom:114.696000px;}
.y151{bottom:114.876000px;}
.ydd{bottom:120.456000px;}
.y39{bottom:121.356000px;}
.y59{bottom:122.076000px;}
.y1cd{bottom:126.930000px;}
.yb2{bottom:128.376000px;}
.y32{bottom:128.556000px;}
.y85{bottom:129.816000px;}
.y101{bottom:131.256000px;}
.y12a{bottom:132.516000px;}
.y17a{bottom:136.476000px;}
.y150{bottom:137.016000px;}
.y1b4{bottom:138.030000px;}
.ydc{bottom:142.416000px;}
.y38{bottom:143.316000px;}
.y58{bottom:143.856000px;}
.yb1{bottom:150.330000px;}
.y31{bottom:150.510000px;}
.y84{bottom:151.590000px;}
.y100{bottom:153.210000px;}
.y129{bottom:154.470000px;}
.y1ae{bottom:156.450000px;}
.y179{bottom:158.430000px;}
.y14f{bottom:158.790000px;}
.y196{bottom:162.750000px;}
.ydb{bottom:164.370000px;}
.y37{bottom:165.270000px;}
.y57{bottom:165.990000px;}
.y30{bottom:172.290000px;}
.y83{bottom:173.550000px;}
.y1ad{bottom:174.450000px;}
.y1b5{bottom:174.570000px;}
.yff{bottom:175.350000px;}
.y128{bottom:176.250000px;}
.y1ce{bottom:176.295000px;}
.y178{bottom:180.210000px;}
.y14e{bottom:180.930000px;}
.y1ac{bottom:182.010000px;}
.y1bc{bottom:183.420000px;}
.y195{bottom:184.530000px;}
.y1ca{bottom:185.250000px;}
.yda{bottom:186.150000px;}
.y36{bottom:187.050000px;}
.y56{bottom:188.130000px;}
.yb0{bottom:194.250000px;}
.y82{bottom:195.510000px;}
.yfe{bottom:197.490000px;}
.y127{bottom:198.210000px;}
.y2f{bottom:198.750000px;}
.y1c8{bottom:200.055000px;}
.y177{bottom:202.170000px;}
.y14d{bottom:203.070000px;}
.y194{bottom:206.490000px;}
.yd9{bottom:208.110000px;}
.y35{bottom:209.010000px;}
.y55{bottom:209.910000px;}
.y1b6{bottom:211.110000px;}
.yaf{bottom:216.030000px;}
.y81{bottom:217.290000px;}
.y1c6{bottom:217.335000px;}
.yfd{bottom:219.270000px;}
.y126{bottom:219.990000px;}
.y176{bottom:223.950000px;}
.y14c{bottom:224.850000px;}
.y1cf{bottom:225.645000px;}
.y193{bottom:228.270000px;}
.yd8{bottom:229.890000px;}
.y34{bottom:230.790000px;}
.y54{bottom:231.870000px;}
.y1c4{bottom:234.615000px;}
.yae{bottom:237.990000px;}
.y80{bottom:239.250000px;}
.yfc{bottom:241.230000px;}
.y125{bottom:241.950000px;}
.y2e{bottom:242.850000px;}
.y175{bottom:245.910000px;}
.y14b{bottom:246.810000px;}
.y1b7{bottom:247.650000px;}
.y192{bottom:250.230000px;}
.yd7{bottom:251.850000px;}
.y1c2{bottom:251.895000px;}
.y2d{bottom:252.750000px;}
.y53{bottom:254.190000px;}
.y52{bottom:255.990000px;}
.y7f{bottom:261.030000px;}
.yfb{bottom:263.190000px;}
.y51{bottom:263.730000px;}
.y174{bottom:267.690000px;}
.y14a{bottom:268.590000px;}
.y1c0{bottom:269.175000px;}
.y191{bottom:272.190000px;}
.yd6{bottom:273.630000px;}
.y2c{bottom:274.530000px;}
.y1d0{bottom:275.040000px;}
.y1b0{bottom:279.825000px;}
.yad{bottom:282.090000px;}
.y7e{bottom:282.990000px;}
.y1b8{bottom:284.190000px;}
.yfa{bottom:284.970000px;}
.y124{bottom:285.690000px;}
.y1be{bottom:288.930000px;}
.y173{bottom:289.650000px;}
.y149{bottom:290.550000px;}
.y50{bottom:293.610000px;}
.y190{bottom:293.970000px;}
.yd5{bottom:295.770000px;}
.y2b{bottom:296.490000px;}
.yf9{bottom:303.690000px;}
.yac{bottom:303.870000px;}
.y7d{bottom:304.770000px;}
.y123{bottom:307.650000px;}
.y172{bottom:311.610000px;}
.y148{bottom:312.330000px;}
.y4f{bottom:315.570000px;}
.yf8{bottom:315.750000px;}
.y18f{bottom:315.930000px;}
.yd4{bottom:317.910000px;}
.y2a{bottom:318.270000px;}
.y1b9{bottom:320.730000px;}
.y1d1{bottom:324.390000px;}
.yab{bottom:325.830000px;}
.y7c{bottom:326.730000px;}
.y122{bottom:329.430000px;}
.y171{bottom:333.390000px;}
.y147{bottom:334.470000px;}
.y4e{bottom:337.350000px;}
.y18e{bottom:337.710000px;}
.yd3{bottom:339.870000px;}
.y29{bottom:340.230000px;}
.yaa{bottom:347.655000px;}
.yf7{bottom:347.835000px;}
.y7b{bottom:348.555000px;}
.y121{bottom:351.435000px;}
.y170{bottom:355.395000px;}
.y146{bottom:356.475000px;}
.y1ba{bottom:357.270000px;}
.y4d{bottom:359.355000px;}
.y18d{bottom:359.715000px;}
.yd2{bottom:361.875000px;}
.y28{bottom:362.055000px;}
.ya9{bottom:369.615000px;}
.yf6{bottom:369.795000px;}
.y7a{bottom:370.515000px;}
.y120{bottom:373.215000px;}
.y16f{bottom:377.175000px;}
.y145{bottom:378.255000px;}
.y4c{bottom:381.135000px;}
.y18c{bottom:381.495000px;}
.yd1{bottom:383.835000px;}
.y27{bottom:384.015000px;}
.ya8{bottom:391.395000px;}
.yf5{bottom:391.575000px;}
.y79{bottom:392.655000px;}
.y11f{bottom:395.175000px;}
.y16e{bottom:399.135000px;}
.y144{bottom:400.215000px;}
.y4b{bottom:403.095000px;}
.y18b{bottom:403.455000px;}
.y26{bottom:405.795000px;}
.ya7{bottom:413.355000px;}
.yf4{bottom:413.535000px;}
.y78{bottom:414.615000px;}
.y11e{bottom:416.955000px;}
.y16d{bottom:420.915000px;}
.y143{bottom:421.995000px;}
.y4a{bottom:425.055000px;}
.y18a{bottom:425.235000px;}
.yd0{bottom:426.675000px;}
.y25{bottom:427.755000px;}
.ya6{bottom:435.135000px;}
.yf3{bottom:435.315000px;}
.y77{bottom:436.755000px;}
.y11d{bottom:438.915000px;}
.y16c{bottom:442.875000px;}
.y142{bottom:443.955000px;}
.y49{bottom:446.835000px;}
.y189{bottom:447.195000px;}
.ycf{bottom:448.635000px;}
.y24{bottom:449.535000px;}
.ya5{bottom:457.275000px;}
.y76{bottom:458.715000px;}
.y11c{bottom:460.695000px;}
.y16b{bottom:464.655000px;}
.y141{bottom:465.735000px;}
.y48{bottom:468.795000px;}
.y188{bottom:468.975000px;}
.yce{bottom:470.415000px;}
.y23{bottom:471.495000px;}
.yf2{bottom:479.055000px;}
.ya4{bottom:479.235000px;}
.y75{bottom:480.495000px;}
.y11b{bottom:482.655000px;}
.y16a{bottom:486.795000px;}
.y140{bottom:487.695000px;}
.y47{bottom:490.575000px;}
.y187{bottom:490.935000px;}
.ycd{bottom:492.375000px;}
.y22{bottom:493.455000px;}
.ya3{bottom:501.015000px;}
.yf1{bottom:501.195000px;}
.y74{bottom:502.455000px;}
.y11a{bottom:504.435000px;}
.y169{bottom:508.755000px;}
.y13f{bottom:509.475000px;}
.y46{bottom:512.535000px;}
.y186{bottom:512.715000px;}
.ycc{bottom:514.155000px;}
.y21{bottom:515.235000px;}
.y72{bottom:522.615000px;}
.ya2{bottom:522.975000px;}
.yf0{bottom:523.335000px;}
.y73{bottom:524.415000px;}
.y119{bottom:526.395000px;}
.y168{bottom:530.715000px;}
.y13e{bottom:531.435000px;}
.y71{bottom:532.155000px;}
.y1ab{bottom:532.335000px;}
.y45{bottom:534.315000px;}
.y185{bottom:534.675000px;}
.ycb{bottom:536.115000px;}
.y20{bottom:537.195000px;}
.ya1{bottom:544.755000px;}
.yef{bottom:545.115000px;}
.y167{bottom:552.675000px;}
.y13d{bottom:553.395000px;}
.y1aa{bottom:554.295000px;}
.y184{bottom:556.455000px;}
.y44{bottom:556.635000px;}
.yca{bottom:558.075000px;}
.y1f{bottom:558.975000px;}
.y70{bottom:560.415000px;}
.ya0{bottom:566.715000px;}
.yee{bottom:567.255000px;}
.y118{bottom:567.795000px;}
.y166{bottom:571.395000px;}
.y13c{bottom:575.175000px;}
.y1a9{bottom:576.075000px;}
.y183{bottom:578.415000px;}
.y43{bottom:578.775000px;}
.yc9{bottom:579.855000px;}
.y1e{bottom:580.935000px;}
.y6f{bottom:582.375000px;}
.y9f{bottom:588.495000px;}
.yed{bottom:589.395000px;}
.y117{bottom:590.295000px;}
.y165{bottom:594.075000px;}
.y13b{bottom:597.135000px;}
.y1a8{bottom:598.035000px;}
.y42{bottom:600.375000px;}
.yc8{bottom:601.815000px;}
.y1d{bottom:602.715000px;}
.y6e{bottom:604.335000px;}
.y9e{bottom:610.665000px;}
.yec{bottom:611.205000px;}
.y115{bottom:613.005000px;}
.y164{bottom:616.605000px;}
.y13a{bottom:618.945000px;}
.y1a7{bottom:620.025000px;}
.y182{bottom:622.185000px;}
.y41{bottom:622.365000px;}
.yc7{bottom:623.625000px;}
.y1c{bottom:624.705000px;}
.y6d{bottom:626.145000px;}
.y9d{bottom:632.625000px;}
.yeb{bottom:633.165000px;}
.y113{bottom:635.685000px;}
.y163{bottom:639.285000px;}
.y139{bottom:640.905000px;}
.y1a6{bottom:641.805000px;}
.y40{bottom:644.145000px;}
.yc6{bottom:645.585000px;}
.y1b{bottom:646.485000px;}
.y6c{bottom:648.105000px;}
.yea{bottom:651.345000px;}
.y9c{bottom:654.405000px;}
.y162{bottom:661.965000px;}
.y112{bottom:662.145000px;}
.y138{bottom:662.685000px;}
.y1a5{bottom:663.765000px;}
.y181{bottom:665.925000px;}
.y3f{bottom:666.105000px;}
.yc5{bottom:667.365000px;}
.y1a{bottom:668.445000px;}
.y6b{bottom:669.885000px;}
.ye9{bottom:672.405000px;}
.y9b{bottom:676.365000px;}
.ye8{bottom:678.705000px;}
.y111{bottom:684.105000px;}
.y3e{bottom:684.285000px;}
.y137{bottom:684.645000px;}
.y1a4{bottom:685.545000px;}
.y180{bottom:687.885000px;}
.yc4{bottom:689.505000px;}
.y19{bottom:690.225000px;}
.y6a{bottom:691.845000px;}
.y9a{bottom:694.545000px;}
.y3d{bottom:705.345000px;}
.y110{bottom:705.885000px;}
.y136{bottom:706.425000px;}
.y97{bottom:706.605000px;}
.y1a3{bottom:707.325000px;}
.y17f{bottom:709.665000px;}
.y3b{bottom:711.645000px;}
.y18{bottom:712.185000px;}
.ye7{bottom:712.365000px;}
.y69{bottom:713.805000px;}
.y99{bottom:714.705000px;}
.y98{bottom:716.685000px;}
.y3c{bottom:719.745000px;}
.y1a2{bottom:727.305000px;}
.y10f{bottom:727.845000px;}
.y135{bottom:728.385000px;}
.y17e{bottom:731.445000px;}
.yc3{bottom:733.605000px;}
.y17{bottom:733.965000px;}
.ye6{bottom:734.145000px;}
.y68{bottom:735.765000px;}
.y134{bottom:747.105000px;}
.y1a1{bottom:747.465000px;}
.y10e{bottom:749.625000px;}
.y17d{bottom:751.425000px;}
.y96{bottom:754.845000px;}
.yc2{bottom:755.565000px;}
.y16{bottom:755.925000px;}
.ye5{bottom:756.105000px;}
.y67{bottom:757.545000px;}
.y1a0{bottom:765.645000px;}
.y17c{bottom:767.805000px;}
.y1af{bottom:767.880000px;}
.y133{bottom:769.785000px;}
.y10d{bottom:771.585000px;}
.y95{bottom:776.625000px;}
.y15d{bottom:776.985000px;}
.yc1{bottom:777.525000px;}
.y15{bottom:777.705000px;}
.ye4{bottom:777.885000px;}
.y66{bottom:779.505000px;}
.y132{bottom:792.285000px;}
.y10c{bottom:793.365000px;}
.y94{bottom:798.585000px;}
.y15c{bottom:798.945000px;}
.y14{bottom:799.665000px;}
.ye3{bottom:799.845000px;}
.y65{bottom:801.465000px;}
.y19b{bottom:809.280000px;}
.y131{bottom:814.965000px;}
.y10b{bottom:815.325000px;}
.y93{bottom:820.365000px;}
.y15b{bottom:820.905000px;}
.y13{bottom:821.625000px;}
.y64{bottom:823.425000px;}
.yc0{bottom:832.425000px;}
.y10a{bottom:837.105000px;}
.y130{bottom:837.645000px;}
.y92{bottom:842.325000px;}
.y15a{bottom:842.685000px;}
.y12{bottom:843.405000px;}
.ye2{bottom:843.585000px;}
.y63{bottom:845.565000px;}
.y109{bottom:859.065000px;}
.y12d{bottom:860.145000px;}
.y91{bottom:864.105000px;}
.y159{bottom:864.645000px;}
.ybf{bottom:865.005000px;}
.y11{bottom:865.365000px;}
.y62{bottom:867.705000px;}
.y19e{bottom:872.280000px;}
.y108{bottom:880.890000px;}
.y90{bottom:886.110000px;}
.y158{bottom:886.470000px;}
.ybe{bottom:887.010000px;}
.y10{bottom:887.190000px;}
.ye1{bottom:887.550000px;}
.y61{bottom:889.890000px;}
.y107{bottom:902.850000px;}
.y8f{bottom:908.070000px;}
.y157{bottom:908.430000px;}
.y12c{bottom:908.610000px;}
.ybd{bottom:908.790000px;}
.yf{bottom:909.150000px;}
.ye0{bottom:909.690000px;}
.y60{bottom:911.670000px;}
.y106{bottom:924.630000px;}
.y8e{bottom:930.030000px;}
.y156{bottom:930.570000px;}
.ybc{bottom:930.750000px;}
.ye{bottom:930.930000px;}
.ydf{bottom:931.470000px;}
.y5f{bottom:933.810000px;}
.y8d{bottom:951.990000px;}
.y155{bottom:952.350000px;}
.ybb{bottom:952.710000px;}
.yd{bottom:952.890000px;}
.yde{bottom:953.430000px;}
.y5e{bottom:955.590000px;}
.y198{bottom:960.630000px;}
.y105{bottom:964.770000px;}
.y8c{bottom:974.130000px;}
.y154{bottom:974.310000px;}
.yba{bottom:974.490000px;}
.yc{bottom:974.670000px;}
.y5d{bottom:977.550000px;}
.y197{bottom:983.130000px;}
.y104{bottom:989.970000px;}
.y8b{bottom:995.910000px;}
.y5c{bottom:996.090000px;}
.yb9{bottom:996.450000px;}
.yb{bottom:996.630000px;}
.y5b{bottom:1008.150000px;}
.y103{bottom:1015.170000px;}
.y8a{bottom:1017.870000px;}
.y153{bottom:1018.050000px;}
.yb8{bottom:1018.230000px;}
.ya{bottom:1018.410000px;}
.y89{bottom:1039.650000px;}
.yb7{bottom:1040.190000px;}
.y9{bottom:1040.370000px;}
.y88{bottom:1061.790000px;}
.yb6{bottom:1061.970000px;}
.y8{bottom:1062.150000px;}
.y87{bottom:1073.850000px;}
.yb5{bottom:1083.930000px;}
.y7{bottom:1084.110000px;}
.yb4{bottom:1105.710000px;}
.y6{bottom:1105.890000px;}
.y199{bottom:1106.460000px;}
.y5{bottom:1127.850000px;}
.y1{bottom:1169.280000px;}
.y4{bottom:1174.140000px;}
.y3{bottom:1194.300000px;}
.h8{height:18.284062px;}
.h25{height:18.540000px;}
.h1b{height:21.765000px;}
.h18{height:21.780000px;}
.h1f{height:21.810000px;}
.h1c{height:21.945000px;}
.h19{height:21.960000px;}
.h1a{height:21.990000px;}
.h23{height:22.680000px;}
.h29{height:23.270625px;}
.h2{height:32.940000px;}
.h1d{height:43.942500px;}
.h26{height:50.294531px;}
.h20{height:50.973750px;}
.h2c{height:52.998047px;}
.h7{height:54.703125px;}
.h5{height:55.054688px;}
.h6{height:55.406250px;}
.h9{height:64.413984px;}
.h27{height:64.978594px;}
.h21{height:65.010937px;}
.h4{height:65.884219px;}
.h24{height:70.628906px;}
.h22{height:70.664062px;}
.h2e{height:74.004654px;}
.h3{height:83.306602px;}
.h1e{height:87.660000px;}
.hc{height:91.687500px;}
.h11{height:122.647500px;}
.hb{height:130.567500px;}
.h14{height:137.767500px;}
.h13{height:139.927500px;}
.he{height:144.967500px;}
.h12{height:146.407500px;}
.h17{height:149.287500px;}
.h16{height:168.727500px;}
.hf{height:170.167500px;}
.h10{height:183.127500px;}
.h28{height:191.700000px;}
.hd{height:201.127500px;}
.ha{height:209.047500px;}
.h15{height:216.967500px;}
.h2b{height:330.618047px;}
.h2d{height:345.240000px;}
.h2a{height:378.000000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w13{width:63.900000px;}
.wf{width:105.150000px;}
.wa{width:106.729500px;}
.wd{width:106.761000px;}
.wb{width:106.941000px;}
.w6{width:115.729500px;}
.we{width:126.525000px;}
.wc{width:161.490000px;}
.w7{width:187.800000px;}
.w8{width:190.635000px;}
.w9{width:204.150000px;}
.w10{width:211.140000px;}
.w11{width:211.680000px;}
.w3{width:215.115000px;}
.w5{width:215.130000px;}
.w4{width:215.175000px;}
.w12{width:221.400000px;}
.w14{width:659.340000px;}
.w15{width:660.240000px;}
.w2{width:718.020000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:1.476000px;}
.x2f{left:7.740000px;}
.x2d{left:9.345000px;}
.x66{left:16.560000px;}
.x58{left:20.052000px;}
.x65{left:23.325000px;}
.x40{left:25.590000px;}
.x51{left:27.330000px;}
.x53{left:28.905000px;}
.x4c{left:30.855000px;}
.x45{left:32.070000px;}
.x42{left:36.210000px;}
.x4e{left:38.415000px;}
.x44{left:46.080000px;}
.x41{left:47.143500px;}
.x36{left:52.543500px;}
.x43{left:63.540000px;}
.x59{left:75.165000px;}
.x37{left:77.430000px;}
.x39{left:82.440000px;}
.x38{left:90.345000px;}
.x5b{left:118.005000px;}
.x3b{left:119.926500px;}
.x1{left:127.080000px;}
.x32{left:128.206500px;}
.x67{left:136.335000px;}
.x55{left:140.616000px;}
.x29{left:143.136000px;}
.x5a{left:147.600000px;}
.x5d{left:153.390000px;}
.x2c{left:154.845000px;}
.x4{left:162.210000px;}
.x31{left:165.450000px;}
.x57{left:170.130000px;}
.x14{left:180.750000px;}
.x3a{left:186.870000px;}
.x5{left:187.950000px;}
.x4d{left:205.200000px;}
.x4b{left:216.900000px;}
.x5f{left:224.175000px;}
.x3c{left:227.385000px;}
.x33{left:244.845000px;}
.x61{left:259.590000px;}
.x6{left:261.615000px;}
.x48{left:282.495000px;}
.x63{left:294.990000px;}
.x47{left:302.295000px;}
.x13{left:325.875000px;}
.x3d{left:335.055000px;}
.x11{left:347.115000px;}
.xb{left:351.975000px;}
.x1c{left:355.755000px;}
.x12{left:358.455000px;}
.xd{left:359.535000px;}
.x1d{left:364.395000px;}
.x2e{left:370.875000px;}
.x10{left:374.835000px;}
.x24{left:377.895000px;}
.x15{left:393.555000px;}
.x27{left:399.675000px;}
.x20{left:409.935000px;}
.x19{left:413.745000px;}
.x5c{left:415.830000px;}
.x1e{left:430.125000px;}
.x34{left:433.380000px;}
.x2a{left:439.125000px;}
.x1f{left:441.285000px;}
.x9{left:450.465000px;}
.x26{left:458.205000px;}
.x16{left:460.545000px;}
.x21{left:462.885000px;}
.x8{left:468.105000px;}
.x52{left:470.700000px;}
.x25{left:476.745000px;}
.x3{left:478.545000px;}
.x23{left:480.165000px;}
.x18{left:482.505000px;}
.x1a{left:484.845000px;}
.x5e{left:486.645000px;}
.x17{left:497.085000px;}
.x2b{left:505.005000px;}
.x22{left:514.545000px;}
.x1b{left:516.705000px;}
.x60{left:522.030000px;}
.x62{left:557.430000px;}
.x4f{left:561.060000px;}
.x50{left:578.700000px;}
.x30{left:586.950000px;}
.x64{left:592.815000px;}
.x49{left:603.690000px;}
.x3e{left:604.770000px;}
.x4a{left:619.710000px;}
.xa{left:620.790000px;}
.x35{left:624.750000px;}
.x7{left:648.150000px;}
.xf{left:678.570000px;}
.xc{left:708.630000px;}
.x3f{left:732.030000px;}
.x28{left:756.360000px;}
.x54{left:789.300000px;}
.x56{left:809.280000px;}
.xe{left:829.440000px;}
.x46{left:831.060000px;}
@media print{
.ve{vertical-align:-78.720000pt;}
.v10{vertical-align:-74.240000pt;}
.v3{vertical-align:-12.800000pt;}
.v0{vertical-align:0.000000pt;}
.v12{vertical-align:2.560000pt;}
.v4{vertical-align:12.800000pt;}
.vf{vertical-align:23.680000pt;}
.v7{vertical-align:27.520000pt;}
.v2{vertical-align:34.560000pt;}
.v14{vertical-align:39.040000pt;}
.vb{vertical-align:40.960000pt;}
.va{vertical-align:42.880000pt;}
.v6{vertical-align:47.360000pt;}
.v9{vertical-align:48.640000pt;}
.v11{vertical-align:51.200000pt;}
.v13{vertical-align:63.360000pt;}
.v8{vertical-align:69.760000pt;}
.v5{vertical-align:76.160000pt;}
.vc{vertical-align:81.280000pt;}
.v1{vertical-align:104.320000pt;}
.vd{vertical-align:111.360000pt;}
.ls29{letter-spacing:-0.896000pt;}
.lsf{letter-spacing:-0.320000pt;}
.ls5{letter-spacing:-0.256000pt;}
.ls3{letter-spacing:-0.192000pt;}
.ls11{letter-spacing:-0.128000pt;}
.ls4{letter-spacing:-0.064000pt;}
.ls2{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.064000pt;}
.ls18{letter-spacing:0.066667pt;}
.ls25{letter-spacing:0.128000pt;}
.ls2a{letter-spacing:0.161280pt;}
.ls0{letter-spacing:0.192000pt;}
.ls6{letter-spacing:0.256000pt;}
.lsc{letter-spacing:0.320000pt;}
.ls17{letter-spacing:0.384000pt;}
.lsd{letter-spacing:0.512000pt;}
.ls2c{letter-spacing:0.576000pt;}
.ls1d{letter-spacing:0.640000pt;}
.ls28{letter-spacing:0.896000pt;}
.ls1b{letter-spacing:1.600000pt;}
.ls14{letter-spacing:1.792000pt;}
.ls23{letter-spacing:2.112000pt;}
.ls1a{letter-spacing:2.176000pt;}
.ls16{letter-spacing:2.262400pt;}
.ls1f{letter-spacing:2.752000pt;}
.lsb{letter-spacing:3.250560pt;}
.ls9{letter-spacing:3.890560pt;}
.ls20{letter-spacing:4.992000pt;}
.ls10{letter-spacing:14.272000pt;}
.ls22{letter-spacing:14.400000pt;}
.ls24{letter-spacing:17.472000pt;}
.ls8{letter-spacing:17.970560pt;}
.ls19{letter-spacing:18.112000pt;}
.ls21{letter-spacing:18.218667pt;}
.ls26{letter-spacing:19.712000pt;}
.lse{letter-spacing:24.384000pt;}
.ls2d{letter-spacing:28.288000pt;}
.ls12{letter-spacing:31.552000pt;}
.ls27{letter-spacing:39.712000pt;}
.ls2b{letter-spacing:69.226667pt;}
.ls7{letter-spacing:69.312000pt;}
.lsa{letter-spacing:82.610560pt;}
.ls13{letter-spacing:130.304000pt;}
.ls1c{letter-spacing:743.072000pt;}
.ls1e{letter-spacing:745.632000pt;}
.ls15{letter-spacing:776.352000pt;}
.ws4{word-spacing:-22.784000pt;}
.ws1{word-spacing:-22.528000pt;}
.ws5{word-spacing:-22.464000pt;}
.ws0{word-spacing:-22.336000pt;}
.ws2{word-spacing:-21.888000pt;}
.ws6{word-spacing:-12.000000pt;}
.ws3{word-spacing:0.000000pt;}
.ws7{word-spacing:250.160000pt;}
._2d{margin-left:-7.244373pt;}
._2e{margin-left:-2.886187pt;}
._0{margin-left:-1.145813pt;}
._5{width:0.889813pt;}
._12{width:1.798187pt;}
._11{width:2.944000pt;}
._2b{width:3.864747pt;}
._25{width:4.793813pt;}
._7{width:5.760000pt;}
._8{width:6.912000pt;}
._22{width:7.893547pt;}
._9{width:9.200640pt;}
._1{width:10.535680pt;}
._1e{width:12.032000pt;}
._1f{width:13.056000pt;}
._24{width:14.634667pt;}
._10{width:15.808000pt;}
._e{width:16.832000pt;}
._f{width:17.868373pt;}
._26{width:19.257813pt;}
._16{width:20.224000pt;}
._17{width:21.504000pt;}
._1d{width:23.553707pt;}
._c{width:24.640000pt;}
._b{width:25.600000pt;}
._14{width:26.666667pt;}
._15{width:27.605333pt;}
._23{width:28.545707pt;}
._1c{width:30.080000pt;}
._2c{width:30.976000pt;}
._3d{width:31.872000pt;}
._a{width:33.216000pt;}
._d{width:34.310187pt;}
._29{width:35.211733pt;}
._6{width:36.842667pt;}
._13{width:38.208000pt;}
._3c{width:39.680000pt;}
._2f{width:40.704000pt;}
._39{width:41.984000pt;}
._41{width:43.024853pt;}
._36{width:44.281813pt;}
._43{width:45.359147pt;}
._20{width:49.354667pt;}
._21{width:50.528000pt;}
._27{width:53.376000pt;}
._34{width:54.294613pt;}
._31{width:55.503360pt;}
._28{width:57.536000pt;}
._3b{width:58.880000pt;}
._18{width:59.914667pt;}
._2a{width:61.045333pt;}
._30{width:62.110293pt;}
._47{width:64.576000pt;}
._32{width:66.048000pt;}
._3a{width:78.272000pt;}
._35{width:84.016853pt;}
._42{width:85.296853pt;}
._40{width:86.592000pt;}
._49{width:96.192000pt;}
._4a{width:97.648853pt;}
._19{width:112.640000pt;}
._1a{width:113.600000pt;}
._38{width:137.913813pt;}
._3f{width:141.312000pt;}
._3e{width:145.024000pt;}
._4{width:156.058027pt;}
._3{width:171.706453pt;}
._2{width:173.311573pt;}
._33{width:182.112000pt;}
._37{width:240.621653pt;}
._44{width:261.510187pt;}
._4b{width:415.296000pt;}
._48{width:674.826667pt;}
._46{width:694.282667pt;}
._45{width:696.618667pt;}
._1b{width:2013.779200pt;}
.fs3{font-size:21.120000pt;}
.fs6{font-size:26.880000pt;}
.fs5{font-size:45.440000pt;}
.fs7{font-size:48.000000pt;}
.fs1{font-size:58.880000pt;}
.fs2{font-size:64.000000pt;}
.fs0{font-size:72.320000pt;}
.fs4{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.y19c{bottom:2.493333pt;}
.y114{bottom:3.360000pt;}
.y116{bottom:3.520000pt;}
.y12f{bottom:4.320000pt;}
.y19a{bottom:5.573333pt;}
.y19d{bottom:6.053333pt;}
.y2{bottom:10.400000pt;}
.y1d2{bottom:10.973333pt;}
.y19f{bottom:11.013333pt;}
.y1bb{bottom:11.173333pt;}
.y160{bottom:22.880000pt;}
.y12e{bottom:23.080000pt;}
.y1cb{bottom:25.053333pt;}
.y1b1{bottom:25.280000pt;}
.y15f{bottom:42.400000pt;}
.y1bd{bottom:44.000000pt;}
.y1bf{bottom:46.173333pt;}
.y1c1{bottom:48.386667pt;}
.y1c3{bottom:50.586667pt;}
.y1c5{bottom:52.773333pt;}
.y1c7{bottom:54.973333pt;}
.y1c9{bottom:57.146667pt;}
.y1b2{bottom:57.760000pt;}
.y15e{bottom:61.920000pt;}
.y161{bottom:62.720000pt;}
.y1cc{bottom:68.933333pt;}
.y152{bottom:82.592000pt;}
.y3a{bottom:88.512000pt;}
.y5a{bottom:88.832000pt;}
.y1b3{bottom:90.240000pt;}
.yb3{bottom:94.432000pt;}
.y33{bottom:94.912000pt;}
.y86{bottom:95.872000pt;}
.y102{bottom:97.152000pt;}
.y12b{bottom:98.432000pt;}
.y17b{bottom:101.952000pt;}
.y151{bottom:102.112000pt;}
.ydd{bottom:107.072000pt;}
.y39{bottom:107.872000pt;}
.y59{bottom:108.512000pt;}
.y1cd{bottom:112.826667pt;}
.yb2{bottom:114.112000pt;}
.y32{bottom:114.272000pt;}
.y85{bottom:115.392000pt;}
.y101{bottom:116.672000pt;}
.y12a{bottom:117.792000pt;}
.y17a{bottom:121.312000pt;}
.y150{bottom:121.792000pt;}
.y1b4{bottom:122.693333pt;}
.ydc{bottom:126.592000pt;}
.y38{bottom:127.392000pt;}
.y58{bottom:127.872000pt;}
.yb1{bottom:133.626667pt;}
.y31{bottom:133.786667pt;}
.y84{bottom:134.746667pt;}
.y100{bottom:136.186667pt;}
.y129{bottom:137.306667pt;}
.y1ae{bottom:139.066667pt;}
.y179{bottom:140.826667pt;}
.y14f{bottom:141.146667pt;}
.y196{bottom:144.666667pt;}
.ydb{bottom:146.106667pt;}
.y37{bottom:146.906667pt;}
.y57{bottom:147.546667pt;}
.y30{bottom:153.146667pt;}
.y83{bottom:154.266667pt;}
.y1ad{bottom:155.066667pt;}
.y1b5{bottom:155.173333pt;}
.yff{bottom:155.866667pt;}
.y128{bottom:156.666667pt;}
.y1ce{bottom:156.706667pt;}
.y178{bottom:160.186667pt;}
.y14e{bottom:160.826667pt;}
.y1ac{bottom:161.786667pt;}
.y1bc{bottom:163.040000pt;}
.y195{bottom:164.026667pt;}
.y1ca{bottom:164.666667pt;}
.yda{bottom:165.466667pt;}
.y36{bottom:166.266667pt;}
.y56{bottom:167.226667pt;}
.yb0{bottom:172.666667pt;}
.y82{bottom:173.786667pt;}
.yfe{bottom:175.546667pt;}
.y127{bottom:176.186667pt;}
.y2f{bottom:176.666667pt;}
.y1c8{bottom:177.826667pt;}
.y177{bottom:179.706667pt;}
.y14d{bottom:180.506667pt;}
.y194{bottom:183.546667pt;}
.yd9{bottom:184.986667pt;}
.y35{bottom:185.786667pt;}
.y55{bottom:186.586667pt;}
.y1b6{bottom:187.653333pt;}
.yaf{bottom:192.026667pt;}
.y81{bottom:193.146667pt;}
.y1c6{bottom:193.186667pt;}
.yfd{bottom:194.906667pt;}
.y126{bottom:195.546667pt;}
.y176{bottom:199.066667pt;}
.y14c{bottom:199.866667pt;}
.y1cf{bottom:200.573333pt;}
.y193{bottom:202.906667pt;}
.yd8{bottom:204.346667pt;}
.y34{bottom:205.146667pt;}
.y54{bottom:206.106667pt;}
.y1c4{bottom:208.546667pt;}
.yae{bottom:211.546667pt;}
.y80{bottom:212.666667pt;}
.yfc{bottom:214.426667pt;}
.y125{bottom:215.066667pt;}
.y2e{bottom:215.866667pt;}
.y175{bottom:218.586667pt;}
.y14b{bottom:219.386667pt;}
.y1b7{bottom:220.133333pt;}
.y192{bottom:222.426667pt;}
.yd7{bottom:223.866667pt;}
.y1c2{bottom:223.906667pt;}
.y2d{bottom:224.666667pt;}
.y53{bottom:225.946667pt;}
.y52{bottom:227.546667pt;}
.y7f{bottom:232.026667pt;}
.yfb{bottom:233.946667pt;}
.y51{bottom:234.426667pt;}
.y174{bottom:237.946667pt;}
.y14a{bottom:238.746667pt;}
.y1c0{bottom:239.266667pt;}
.y191{bottom:241.946667pt;}
.yd6{bottom:243.226667pt;}
.y2c{bottom:244.026667pt;}
.y1d0{bottom:244.480000pt;}
.y1b0{bottom:248.733333pt;}
.yad{bottom:250.746667pt;}
.y7e{bottom:251.546667pt;}
.y1b8{bottom:252.613333pt;}
.yfa{bottom:253.306667pt;}
.y124{bottom:253.946667pt;}
.y1be{bottom:256.826667pt;}
.y173{bottom:257.466667pt;}
.y149{bottom:258.266667pt;}
.y50{bottom:260.986667pt;}
.y190{bottom:261.306667pt;}
.yd5{bottom:262.906667pt;}
.y2b{bottom:263.546667pt;}
.yf9{bottom:269.946667pt;}
.yac{bottom:270.106667pt;}
.y7d{bottom:270.906667pt;}
.y123{bottom:273.466667pt;}
.y172{bottom:276.986667pt;}
.y148{bottom:277.626667pt;}
.y4f{bottom:280.506667pt;}
.yf8{bottom:280.666667pt;}
.y18f{bottom:280.826667pt;}
.yd4{bottom:282.586667pt;}
.y2a{bottom:282.906667pt;}
.y1b9{bottom:285.093333pt;}
.y1d1{bottom:288.346667pt;}
.yab{bottom:289.626667pt;}
.y7c{bottom:290.426667pt;}
.y122{bottom:292.826667pt;}
.y171{bottom:296.346667pt;}
.y147{bottom:297.306667pt;}
.y4e{bottom:299.866667pt;}
.y18e{bottom:300.186667pt;}
.yd3{bottom:302.106667pt;}
.y29{bottom:302.426667pt;}
.yaa{bottom:309.026667pt;}
.yf7{bottom:309.186667pt;}
.y7b{bottom:309.826667pt;}
.y121{bottom:312.386667pt;}
.y170{bottom:315.906667pt;}
.y146{bottom:316.866667pt;}
.y1ba{bottom:317.573333pt;}
.y4d{bottom:319.426667pt;}
.y18d{bottom:319.746667pt;}
.yd2{bottom:321.666667pt;}
.y28{bottom:321.826667pt;}
.ya9{bottom:328.546667pt;}
.yf6{bottom:328.706667pt;}
.y7a{bottom:329.346667pt;}
.y120{bottom:331.746667pt;}
.y16f{bottom:335.266667pt;}
.y145{bottom:336.226667pt;}
.y4c{bottom:338.786667pt;}
.y18c{bottom:339.106667pt;}
.yd1{bottom:341.186667pt;}
.y27{bottom:341.346667pt;}
.ya8{bottom:347.906667pt;}
.yf5{bottom:348.066667pt;}
.y79{bottom:349.026667pt;}
.y11f{bottom:351.266667pt;}
.y16e{bottom:354.786667pt;}
.y144{bottom:355.746667pt;}
.y4b{bottom:358.306667pt;}
.y18b{bottom:358.626667pt;}
.y26{bottom:360.706667pt;}
.ya7{bottom:367.426667pt;}
.yf4{bottom:367.586667pt;}
.y78{bottom:368.546667pt;}
.y11e{bottom:370.626667pt;}
.y16d{bottom:374.146667pt;}
.y143{bottom:375.106667pt;}
.y4a{bottom:377.826667pt;}
.y18a{bottom:377.986667pt;}
.yd0{bottom:379.266667pt;}
.y25{bottom:380.226667pt;}
.ya6{bottom:386.786667pt;}
.yf3{bottom:386.946667pt;}
.y77{bottom:388.226667pt;}
.y11d{bottom:390.146667pt;}
.y16c{bottom:393.666667pt;}
.y142{bottom:394.626667pt;}
.y49{bottom:397.186667pt;}
.y189{bottom:397.506667pt;}
.ycf{bottom:398.786667pt;}
.y24{bottom:399.586667pt;}
.ya5{bottom:406.466667pt;}
.y76{bottom:407.746667pt;}
.y11c{bottom:409.506667pt;}
.y16b{bottom:413.026667pt;}
.y141{bottom:413.986667pt;}
.y48{bottom:416.706667pt;}
.y188{bottom:416.866667pt;}
.yce{bottom:418.146667pt;}
.y23{bottom:419.106667pt;}
.yf2{bottom:425.826667pt;}
.ya4{bottom:425.986667pt;}
.y75{bottom:427.106667pt;}
.y11b{bottom:429.026667pt;}
.y16a{bottom:432.706667pt;}
.y140{bottom:433.506667pt;}
.y47{bottom:436.066667pt;}
.y187{bottom:436.386667pt;}
.ycd{bottom:437.666667pt;}
.y22{bottom:438.626667pt;}
.ya3{bottom:445.346667pt;}
.yf1{bottom:445.506667pt;}
.y74{bottom:446.626667pt;}
.y11a{bottom:448.386667pt;}
.y169{bottom:452.226667pt;}
.y13f{bottom:452.866667pt;}
.y46{bottom:455.586667pt;}
.y186{bottom:455.746667pt;}
.ycc{bottom:457.026667pt;}
.y21{bottom:457.986667pt;}
.y72{bottom:464.546667pt;}
.ya2{bottom:464.866667pt;}
.yf0{bottom:465.186667pt;}
.y73{bottom:466.146667pt;}
.y119{bottom:467.906667pt;}
.y168{bottom:471.746667pt;}
.y13e{bottom:472.386667pt;}
.y71{bottom:473.026667pt;}
.y1ab{bottom:473.186667pt;}
.y45{bottom:474.946667pt;}
.y185{bottom:475.266667pt;}
.ycb{bottom:476.546667pt;}
.y20{bottom:477.506667pt;}
.ya1{bottom:484.226667pt;}
.yef{bottom:484.546667pt;}
.y167{bottom:491.266667pt;}
.y13d{bottom:491.906667pt;}
.y1aa{bottom:492.706667pt;}
.y184{bottom:494.626667pt;}
.y44{bottom:494.786667pt;}
.yca{bottom:496.066667pt;}
.y1f{bottom:496.866667pt;}
.y70{bottom:498.146667pt;}
.ya0{bottom:503.746667pt;}
.yee{bottom:504.226667pt;}
.y118{bottom:504.706667pt;}
.y166{bottom:507.906667pt;}
.y13c{bottom:511.266667pt;}
.y1a9{bottom:512.066667pt;}
.y183{bottom:514.146667pt;}
.y43{bottom:514.466667pt;}
.yc9{bottom:515.426667pt;}
.y1e{bottom:516.386667pt;}
.y6f{bottom:517.666667pt;}
.y9f{bottom:523.106667pt;}
.yed{bottom:523.906667pt;}
.y117{bottom:524.706667pt;}
.y165{bottom:528.066667pt;}
.y13b{bottom:530.786667pt;}
.y1a8{bottom:531.586667pt;}
.y42{bottom:533.666667pt;}
.yc8{bottom:534.946667pt;}
.y1d{bottom:535.746667pt;}
.y6e{bottom:537.186667pt;}
.y9e{bottom:542.813333pt;}
.yec{bottom:543.293333pt;}
.y115{bottom:544.893333pt;}
.y164{bottom:548.093333pt;}
.y13a{bottom:550.173333pt;}
.y1a7{bottom:551.133333pt;}
.y182{bottom:553.053333pt;}
.y41{bottom:553.213333pt;}
.yc7{bottom:554.333333pt;}
.y1c{bottom:555.293333pt;}
.y6d{bottom:556.573333pt;}
.y9d{bottom:562.333333pt;}
.yeb{bottom:562.813333pt;}
.y113{bottom:565.053333pt;}
.y163{bottom:568.253333pt;}
.y139{bottom:569.693333pt;}
.y1a6{bottom:570.493333pt;}
.y40{bottom:572.573333pt;}
.yc6{bottom:573.853333pt;}
.y1b{bottom:574.653333pt;}
.y6c{bottom:576.093333pt;}
.yea{bottom:578.973333pt;}
.y9c{bottom:581.693333pt;}
.y162{bottom:588.413333pt;}
.y112{bottom:588.573333pt;}
.y138{bottom:589.053333pt;}
.y1a5{bottom:590.013333pt;}
.y181{bottom:591.933333pt;}
.y3f{bottom:592.093333pt;}
.yc5{bottom:593.213333pt;}
.y1a{bottom:594.173333pt;}
.y6b{bottom:595.453333pt;}
.ye9{bottom:597.693333pt;}
.y9b{bottom:601.213333pt;}
.ye8{bottom:603.293333pt;}
.y111{bottom:608.093333pt;}
.y3e{bottom:608.253333pt;}
.y137{bottom:608.573333pt;}
.y1a4{bottom:609.373333pt;}
.y180{bottom:611.453333pt;}
.yc4{bottom:612.893333pt;}
.y19{bottom:613.533333pt;}
.y6a{bottom:614.973333pt;}
.y9a{bottom:617.373333pt;}
.y3d{bottom:626.973333pt;}
.y110{bottom:627.453333pt;}
.y136{bottom:627.933333pt;}
.y97{bottom:628.093333pt;}
.y1a3{bottom:628.733333pt;}
.y17f{bottom:630.813333pt;}
.y3b{bottom:632.573333pt;}
.y18{bottom:633.053333pt;}
.ye7{bottom:633.213333pt;}
.y69{bottom:634.493333pt;}
.y99{bottom:635.293333pt;}
.y98{bottom:637.053333pt;}
.y3c{bottom:639.773333pt;}
.y1a2{bottom:646.493333pt;}
.y10f{bottom:646.973333pt;}
.y135{bottom:647.453333pt;}
.y17e{bottom:650.173333pt;}
.yc3{bottom:652.093333pt;}
.y17{bottom:652.413333pt;}
.ye6{bottom:652.573333pt;}
.y68{bottom:654.013333pt;}
.y134{bottom:664.093333pt;}
.y1a1{bottom:664.413333pt;}
.y10e{bottom:666.333333pt;}
.y17d{bottom:667.933333pt;}
.y96{bottom:670.973333pt;}
.yc2{bottom:671.613333pt;}
.y16{bottom:671.933333pt;}
.ye5{bottom:672.093333pt;}
.y67{bottom:673.373333pt;}
.y1a0{bottom:680.573333pt;}
.y17c{bottom:682.493333pt;}
.y1af{bottom:682.560000pt;}
.y133{bottom:684.253333pt;}
.y10d{bottom:685.853333pt;}
.y95{bottom:690.333333pt;}
.y15d{bottom:690.653333pt;}
.yc1{bottom:691.133333pt;}
.y15{bottom:691.293333pt;}
.ye4{bottom:691.453333pt;}
.y66{bottom:692.893333pt;}
.y132{bottom:704.253333pt;}
.y10c{bottom:705.213333pt;}
.y94{bottom:709.853333pt;}
.y15c{bottom:710.173333pt;}
.y14{bottom:710.813333pt;}
.ye3{bottom:710.973333pt;}
.y65{bottom:712.413333pt;}
.y19b{bottom:719.360000pt;}
.y131{bottom:724.413333pt;}
.y10b{bottom:724.733333pt;}
.y93{bottom:729.213333pt;}
.y15b{bottom:729.693333pt;}
.y13{bottom:730.333333pt;}
.y64{bottom:731.933333pt;}
.yc0{bottom:739.933333pt;}
.y10a{bottom:744.093333pt;}
.y130{bottom:744.573333pt;}
.y92{bottom:748.733333pt;}
.y15a{bottom:749.053333pt;}
.y12{bottom:749.693333pt;}
.ye2{bottom:749.853333pt;}
.y63{bottom:751.613333pt;}
.y109{bottom:763.613333pt;}
.y12d{bottom:764.573333pt;}
.y91{bottom:768.093333pt;}
.y159{bottom:768.573333pt;}
.ybf{bottom:768.893333pt;}
.y11{bottom:769.213333pt;}
.y62{bottom:771.293333pt;}
.y19e{bottom:775.360000pt;}
.y108{bottom:783.013333pt;}
.y90{bottom:787.653333pt;}
.y158{bottom:787.973333pt;}
.ybe{bottom:788.453333pt;}
.y10{bottom:788.613333pt;}
.ye1{bottom:788.933333pt;}
.y61{bottom:791.013333pt;}
.y107{bottom:802.533333pt;}
.y8f{bottom:807.173333pt;}
.y157{bottom:807.493333pt;}
.y12c{bottom:807.653333pt;}
.ybd{bottom:807.813333pt;}
.yf{bottom:808.133333pt;}
.ye0{bottom:808.613333pt;}
.y60{bottom:810.373333pt;}
.y106{bottom:821.893333pt;}
.y8e{bottom:826.693333pt;}
.y156{bottom:827.173333pt;}
.ybc{bottom:827.333333pt;}
.ye{bottom:827.493333pt;}
.ydf{bottom:827.973333pt;}
.y5f{bottom:830.053333pt;}
.y8d{bottom:846.213333pt;}
.y155{bottom:846.533333pt;}
.ybb{bottom:846.853333pt;}
.yd{bottom:847.013333pt;}
.yde{bottom:847.493333pt;}
.y5e{bottom:849.413333pt;}
.y198{bottom:853.893333pt;}
.y105{bottom:857.573333pt;}
.y8c{bottom:865.893333pt;}
.y154{bottom:866.053333pt;}
.yba{bottom:866.213333pt;}
.yc{bottom:866.373333pt;}
.y5d{bottom:868.933333pt;}
.y197{bottom:873.893333pt;}
.y104{bottom:879.973333pt;}
.y8b{bottom:885.253333pt;}
.y5c{bottom:885.413333pt;}
.yb9{bottom:885.733333pt;}
.yb{bottom:885.893333pt;}
.y5b{bottom:896.133333pt;}
.y103{bottom:902.373333pt;}
.y8a{bottom:904.773333pt;}
.y153{bottom:904.933333pt;}
.yb8{bottom:905.093333pt;}
.ya{bottom:905.253333pt;}
.y89{bottom:924.133333pt;}
.yb7{bottom:924.613333pt;}
.y9{bottom:924.773333pt;}
.y88{bottom:943.813333pt;}
.yb6{bottom:943.973333pt;}
.y8{bottom:944.133333pt;}
.y87{bottom:954.533333pt;}
.yb5{bottom:963.493333pt;}
.y7{bottom:963.653333pt;}
.yb4{bottom:982.853333pt;}
.y6{bottom:983.013333pt;}
.y199{bottom:983.520000pt;}
.y5{bottom:1002.533333pt;}
.y1{bottom:1039.360000pt;}
.y4{bottom:1043.680000pt;}
.y3{bottom:1061.600000pt;}
.h8{height:16.252500pt;}
.h25{height:16.480000pt;}
.h1b{height:19.346667pt;}
.h18{height:19.360000pt;}
.h1f{height:19.386667pt;}
.h1c{height:19.506667pt;}
.h19{height:19.520000pt;}
.h1a{height:19.546667pt;}
.h23{height:20.160000pt;}
.h29{height:20.685000pt;}
.h2{height:29.280000pt;}
.h1d{height:39.060000pt;}
.h26{height:44.706250pt;}
.h20{height:45.310000pt;}
.h2c{height:47.109375pt;}
.h7{height:48.625000pt;}
.h5{height:48.937500pt;}
.h6{height:49.250000pt;}
.h9{height:57.256875pt;}
.h27{height:57.758750pt;}
.h21{height:57.787500pt;}
.h4{height:58.563750pt;}
.h24{height:62.781250pt;}
.h22{height:62.812500pt;}
.h2e{height:65.781915pt;}
.h3{height:74.050313pt;}
.h1e{height:77.920000pt;}
.hc{height:81.500000pt;}
.h11{height:109.020000pt;}
.hb{height:116.060000pt;}
.h14{height:122.460000pt;}
.h13{height:124.380000pt;}
.he{height:128.860000pt;}
.h12{height:130.140000pt;}
.h17{height:132.700000pt;}
.h16{height:149.980000pt;}
.hf{height:151.260000pt;}
.h10{height:162.780000pt;}
.h28{height:170.400000pt;}
.hd{height:178.780000pt;}
.ha{height:185.820000pt;}
.h15{height:192.860000pt;}
.h2b{height:293.882708pt;}
.h2d{height:306.880000pt;}
.h2a{height:336.000000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w13{width:56.800000pt;}
.wf{width:93.466667pt;}
.wa{width:94.870667pt;}
.wd{width:94.898667pt;}
.wb{width:95.058667pt;}
.w6{width:102.870667pt;}
.we{width:112.466667pt;}
.wc{width:143.546667pt;}
.w7{width:166.933333pt;}
.w8{width:169.453333pt;}
.w9{width:181.466667pt;}
.w10{width:187.680000pt;}
.w11{width:188.160000pt;}
.w3{width:191.213333pt;}
.w5{width:191.226667pt;}
.w4{width:191.266667pt;}
.w12{width:196.800000pt;}
.w14{width:586.080000pt;}
.w15{width:586.880000pt;}
.w2{width:638.240000pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:1.312000pt;}
.x2f{left:6.880000pt;}
.x2d{left:8.306667pt;}
.x66{left:14.720000pt;}
.x58{left:17.824000pt;}
.x65{left:20.733333pt;}
.x40{left:22.746667pt;}
.x51{left:24.293333pt;}
.x53{left:25.693333pt;}
.x4c{left:27.426667pt;}
.x45{left:28.506667pt;}
.x42{left:32.186667pt;}
.x4e{left:34.146667pt;}
.x44{left:40.960000pt;}
.x41{left:41.905333pt;}
.x36{left:46.705333pt;}
.x43{left:56.480000pt;}
.x59{left:66.813333pt;}
.x37{left:68.826667pt;}
.x39{left:73.280000pt;}
.x38{left:80.306667pt;}
.x5b{left:104.893333pt;}
.x3b{left:106.601333pt;}
.x1{left:112.960000pt;}
.x32{left:113.961333pt;}
.x67{left:121.186667pt;}
.x55{left:124.992000pt;}
.x29{left:127.232000pt;}
.x5a{left:131.200000pt;}
.x5d{left:136.346667pt;}
.x2c{left:137.640000pt;}
.x4{left:144.186667pt;}
.x31{left:147.066667pt;}
.x57{left:151.226667pt;}
.x14{left:160.666667pt;}
.x3a{left:166.106667pt;}
.x5{left:167.066667pt;}
.x4d{left:182.400000pt;}
.x4b{left:192.800000pt;}
.x5f{left:199.266667pt;}
.x3c{left:202.120000pt;}
.x33{left:217.640000pt;}
.x61{left:230.746667pt;}
.x6{left:232.546667pt;}
.x48{left:251.106667pt;}
.x63{left:262.213333pt;}
.x47{left:268.706667pt;}
.x13{left:289.666667pt;}
.x3d{left:297.826667pt;}
.x11{left:308.546667pt;}
.xb{left:312.866667pt;}
.x1c{left:316.226667pt;}
.x12{left:318.626667pt;}
.xd{left:319.586667pt;}
.x1d{left:323.906667pt;}
.x2e{left:329.666667pt;}
.x10{left:333.186667pt;}
.x24{left:335.906667pt;}
.x15{left:349.826667pt;}
.x27{left:355.266667pt;}
.x20{left:364.386667pt;}
.x19{left:367.773333pt;}
.x5c{left:369.626667pt;}
.x1e{left:382.333333pt;}
.x34{left:385.226667pt;}
.x2a{left:390.333333pt;}
.x1f{left:392.253333pt;}
.x9{left:400.413333pt;}
.x26{left:407.293333pt;}
.x16{left:409.373333pt;}
.x21{left:411.453333pt;}
.x8{left:416.093333pt;}
.x52{left:418.400000pt;}
.x25{left:423.773333pt;}
.x3{left:425.373333pt;}
.x23{left:426.813333pt;}
.x18{left:428.893333pt;}
.x1a{left:430.973333pt;}
.x5e{left:432.573333pt;}
.x17{left:441.853333pt;}
.x2b{left:448.893333pt;}
.x22{left:457.373333pt;}
.x1b{left:459.293333pt;}
.x60{left:464.026667pt;}
.x62{left:495.493333pt;}
.x4f{left:498.720000pt;}
.x50{left:514.400000pt;}
.x30{left:521.733333pt;}
.x64{left:526.946667pt;}
.x49{left:536.613333pt;}
.x3e{left:537.573333pt;}
.x4a{left:550.853333pt;}
.xa{left:551.813333pt;}
.x35{left:555.333333pt;}
.x7{left:576.133333pt;}
.xf{left:603.173333pt;}
.xc{left:629.893333pt;}
.x3f{left:650.693333pt;}
.x28{left:672.320000pt;}
.x54{left:701.600000pt;}
.x56{left:719.360000pt;}
.xe{left:737.280000pt;}
.x46{left:738.720000pt;}
}




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