
    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_765165d220abdb61da5d3d2c.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.005000;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_86555b0d3b0cd41f16dd3329.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.005000;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_e7c2194ca8b26d34bf1654a7.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.005000;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_4e324e19efd1f4a9708efa35.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_9ddc9e94dd9447ec681d5d24.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_b6c1111520dd76f972cb9103.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_017e461ac248240e8444498d.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.758789;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_d6b60807d4bb692b4157f4b1.woff2')format("woff");}.ff8{font-family:ff8;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;}
@font-face{font-family:ff9;src:url('chunks/assets/font_207e311ad91b8b5fab4ce8a4.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.938965;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_074916e765536c5c62f4ed1c.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.921387;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_1f4d36c284419b30fbc4100e.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.800781;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_944ee68728317f129efbd04b.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.800781;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_949b970ace9362e661224159.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.891113;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:ffe;src:url('chunks/assets/font_11bb61d9b10586b9bd76fab5.woff2')format("woff");}.ffe{font-family:ffe;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:fff;src:url('chunks/assets/font_f469c22a56a86611238b427c.woff2')format("woff");}.fff{font-family:fff;line-height:1.040039;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-82.800000px;}
.v3{vertical-align:-72.000000px;}
.v1{vertical-align:-69.120000px;}
.v0{vertical-align:0.000000px;}
.ls8{letter-spacing:-0.540000px;}
.ls6{letter-spacing:-0.531600px;}
.ls4{letter-spacing:-0.460200px;}
.ls7{letter-spacing:-0.360000px;}
.lsc{letter-spacing:-0.144000px;}
.ls10{letter-spacing:-0.106800px;}
.ls5{letter-spacing:-0.053280px;}
.lsd{letter-spacing:-0.027360px;}
.lsf{letter-spacing:-0.018000px;}
.ls0{letter-spacing:0.000000px;}
.ls13{letter-spacing:0.053280px;}
.lsa{letter-spacing:0.070560px;}
.ls2{letter-spacing:0.180000px;}
.ls9{letter-spacing:0.259800px;}
.ls3{letter-spacing:0.259920px;}
.ls12{letter-spacing:0.298800px;}
.ls1a{letter-spacing:0.300000px;}
.lse{letter-spacing:0.306600px;}
.ls1{letter-spacing:0.360000px;}
.ls11{letter-spacing:0.362880px;}
.ls16{letter-spacing:1.080000px;}
.ls18{letter-spacing:1.800000px;}
.ls19{letter-spacing:4.500000px;}
.ls1b{letter-spacing:5.220000px;}
.ls17{letter-spacing:6.660000px;}
.lsb{letter-spacing:43.866720px;}
.ls15{letter-spacing:414.180000px;}
.ls14{letter-spacing:1062.300000px;}
.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;}
}
.wsc{word-spacing:-59.760000px;}
.wsa{word-spacing:-17.856000px;}
.ws9{word-spacing:-16.560000px;}
.ws2{word-spacing:-15.300000px;}
.wsd{word-spacing:-15.246600px;}
.ws7{word-spacing:-15.199800px;}
.wsf{word-spacing:-14.993280px;}
.ws8{word-spacing:-14.940000px;}
.wse{word-spacing:-14.833200px;}
.ws11{word-spacing:-14.580000px;}
.ws1{word-spacing:-14.479800px;}
.wsb{word-spacing:-14.192640px;}
.ws10{word-spacing:-13.500000px;}
.ws5{word-spacing:-12.780000px;}
.ws4{word-spacing:-12.420000px;}
.ws3{word-spacing:-12.060000px;}
.ws6{word-spacing:-11.700000px;}
.ws0{word-spacing:0.000000px;}
._8{margin-left:-3.585600px;}
._7{margin-left:-2.509920px;}
._1{margin-left:-1.190640px;}
._0{width:1.135440px;}
._4{width:2.808720px;}
._3{width:4.242960px;}
._6{width:5.258880px;}
._9{width:6.378720px;}
._5{width:7.485600px;}
._a{width:9.382320px;}
._f{width:10.995840px;}
._e{width:12.609360px;}
._d{width:13.625280px;}
._10{width:16.015680px;}
._13{width:17.390160px;}
._12{width:18.764640px;}
._14{width:19.812960px;}
._18{width:21.186960px;}
._c{width:22.704240px;}
._b{width:23.784480px;}
._15{width:24.860160px;}
._1c{width:25.995600px;}
._11{width:27.011520px;}
._16{width:28.805760px;}
._1a{width:30.661920px;}
._19{width:31.966560px;}
._17{width:33.286320px;}
._1b{width:38.246400px;}
._2{width:482.162160px;}
.fc1{color:transparent;}
.fc2{color:rgb(34,34,34);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:42.000000px;}
.fs8{font-size:48.240000px;}
.fs9{font-size:51.120000px;}
.fsb{font-size:54.000000px;}
.fsd{font-size:56.880000px;}
.fs5{font-size:59.760000px;}
.fs3{font-size:60.000000px;}
.fs1{font-size:63.000000px;}
.fsc{font-size:63.360000px;}
.fsa{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.fs6{font-size:92.880000px;}
.fs7{font-size:95.760000px;}
.fs2{font-size:102.000000px;}
.y0{bottom:0.000000px;}
.yfe{bottom:2.880000px;}
.yde{bottom:3.030000px;}
.y100{bottom:3.060000px;}
.y1ad{bottom:3.165000px;}
.y5f{bottom:3.240000px;}
.y132{bottom:3.285000px;}
.y1bd{bottom:3.390000px;}
.ycf{bottom:4.470000px;}
.ye8{bottom:4.605000px;}
.ydc{bottom:4.650000px;}
.yd1{bottom:4.830000px;}
.y1c2{bottom:5.190000px;}
.y14a{bottom:5.400000px;}
.y14c{bottom:5.580000px;}
.y154{bottom:6.120000px;}
.y150{bottom:6.300000px;}
.y157{bottom:6.660000px;}
.y1b1{bottom:6.810000px;}
.y1c5{bottom:7.305000px;}
.y1bb{bottom:7.350000px;}
.ye3{bottom:7.890000px;}
.y151{bottom:8.640000px;}
.y124{bottom:8.820000px;}
.y1a8{bottom:9.330000px;}
.y189{bottom:9.540000px;}
.y152{bottom:9.720000px;}
.y37{bottom:10.080000px;}
.y38{bottom:10.620000px;}
.y1b0{bottom:11.670000px;}
.y183{bottom:15.840000px;}
.y135{bottom:16.020000px;}
.y18c{bottom:16.050000px;}
.y34{bottom:17.460000px;}
.y32{bottom:18.540000px;}
.y185{bottom:20.340000px;}
.y187{bottom:20.520000px;}
.y1c1{bottom:21.030000px;}
.ycd{bottom:21.930000px;}
.y1a7{bottom:23.010000px;}
.y155{bottom:23.580000px;}
.y35{bottom:24.480000px;}
.y137{bottom:24.660000px;}
.y123{bottom:25.200000px;}
.y1aa{bottom:25.530000px;}
.y126{bottom:26.100000px;}
.y12d{bottom:26.145000px;}
.y1a4{bottom:26.790000px;}
.y33{bottom:30.240000px;}
.y144{bottom:31.500000px;}
.y1c7{bottom:32.550000px;}
.y182{bottom:33.120000px;}
.y134{bottom:33.300000px;}
.y18b{bottom:33.330000px;}
.y128{bottom:34.740000px;}
.y12f{bottom:34.785000px;}
.y7{bottom:35.925007px;}
.y125{bottom:43.380000px;}
.y12c{bottom:43.425000px;}
.ye0{bottom:64.950000px;}
.y6{bottom:66.525004px;}
.y5{bottom:97.125005px;}
.y24{bottom:139.264499px;}
.y5d{bottom:187.410000px;}
.y1b{bottom:196.933500px;}
.y5c{bottom:208.110000px;}
.y23{bottom:209.518500px;}
.y1a{bottom:209.533503px;}
.y22{bottom:222.118502px;}
.y19{bottom:222.133505px;}
.y54{bottom:226.470000px;}
.y5b{bottom:228.810000px;}
.y21{bottom:234.718504px;}
.y18{bottom:234.733496px;}
.y53{bottom:244.470000px;}
.y5a{bottom:249.510000px;}
.y20{bottom:259.918497px;}
.y17{bottom:259.933500px;}
.y52{bottom:262.470000px;}
.y59{bottom:270.210000px;}
.y1f{bottom:272.518500px;}
.y16{bottom:272.533503px;}
.y51{bottom:280.470000px;}
.y1e{bottom:285.118502px;}
.y15{bottom:285.133499px;}
.y58{bottom:290.910000px;}
.y50{bottom:298.470000px;}
.y1d{bottom:310.318501px;}
.y14{bottom:310.333501px;}
.y88{bottom:311.115000px;}
.y57{bottom:311.655000px;}
.y4f{bottom:316.515000px;}
.y1c{bottom:322.918500px;}
.y13{bottom:322.933500px;}
.y5e{bottom:331.815000px;}
.y56{bottom:332.355000px;}
.yb5{bottom:333.435000px;}
.y4e{bottom:334.515000px;}
.y97{bottom:339.555000px;}
.y1eb{bottom:342.435000px;}
.y1f0{bottom:345.495000px;}
.ycb{bottom:347.115000px;}
.y12{bottom:348.133500px;}
.y1a2{bottom:350.355000px;}
.y148{bottom:351.255000px;}
.yfc{bottom:351.435000px;}
.y4d{bottom:352.515000px;}
.y96{bottom:357.555000px;}
.y196{bottom:359.895000px;}
.y120{bottom:360.075000px;}
.y1ea{bottom:360.435000px;}
.y172{bottom:362.055000px;}
.y1ef{bottom:363.495000px;}
.yca{bottom:367.815000px;}
.y86{bottom:369.435000px;}
.y4c{bottom:370.515000px;}
.y14d{bottom:371.595000px;}
.y1a1{bottom:374.655000px;}
.y95{bottom:375.555000px;}
.y195{bottom:377.895000px;}
.y11f{bottom:378.075000px;}
.y1e9{bottom:378.435000px;}
.y171{bottom:380.055000px;}
.yb4{bottom:381.495000px;}
.y11{bottom:386.785499px;}
.y85{bottom:387.435000px;}
.y4b{bottom:388.515000px;}
.y14b{bottom:391.755000px;}
.y94{bottom:393.555000px;}
.y194{bottom:395.895000px;}
.y11e{bottom:396.075000px;}
.y1e8{bottom:396.435000px;}
.y170{bottom:398.055000px;}
.y1a0{bottom:399.135000px;}
.yf7{bottom:399.495000px;}
.y84{bottom:405.435000px;}
.y10{bottom:408.044999px;}
.yc9{bottom:409.215000px;}
.y93{bottom:411.555000px;}
.y149{bottom:412.095000px;}
.y4a{bottom:412.455000px;}
.y193{bottom:413.895000px;}
.y11d{bottom:414.075000px;}
.y1e7{bottom:414.435000px;}
.y16f{bottom:416.055000px;}
.yf6{bottom:417.495000px;}
.y83{bottom:423.435000px;}
.y92{bottom:429.555000px;}
.y192{bottom:431.895000px;}
.y11c{bottom:432.075000px;}
.y143{bottom:432.255000px;}
.y1e6{bottom:432.435000px;}
.y16e{bottom:434.055000px;}
.y19f{bottom:434.235000px;}
.yaa{bottom:435.495000px;}
.y49{bottom:436.575000px;}
.y82{bottom:441.435000px;}
.y91{bottom:447.555000px;}
.y191{bottom:449.895000px;}
.y11b{bottom:450.075000px;}
.y1e5{bottom:450.435000px;}
.y16d{bottom:452.055000px;}
.y147{bottom:452.595000px;}
.yc8{bottom:453.495000px;}
.y48{bottom:454.575000px;}
.y19e{bottom:458.715000px;}
.y81{bottom:459.435000px;}
.y1ec{bottom:465.555000px;}
.y190{bottom:467.895000px;}
.y11a{bottom:468.075000px;}
.y1e4{bottom:468.435000px;}
.y16c{bottom:470.055000px;}
.y146{bottom:470.775000px;}
.y90{bottom:471.495000px;}
.y80{bottom:477.435000px;}
.y47{bottom:478.515000px;}
.y19d{bottom:483.015000px;}
.ya9{bottom:483.555000px;}
.yf{bottom:484.864502px;}
.y18f{bottom:485.895000px;}
.y119{bottom:486.075000px;}
.y1e3{bottom:486.435000px;}
.y16b{bottom:488.055000px;}
.y145{bottom:488.775000px;}
.yc7{bottom:489.495000px;}
.y7f{bottom:495.435000px;}
.y46{bottom:496.515000px;}
.ya8{bottom:501.555000px;}
.ye{bottom:502.864502px;}
.y18e{bottom:503.895000px;}
.y118{bottom:504.075000px;}
.y1e2{bottom:504.435000px;}
.y16a{bottom:506.055000px;}
.y140{bottom:506.775000px;}
.yc6{bottom:507.495000px;}
.y7e{bottom:513.435000px;}
.y45{bottom:514.515000px;}
.ya7{bottom:519.555000px;}
.yd{bottom:520.864502px;}
.y117{bottom:522.075000px;}
.y1e1{bottom:522.435000px;}
.y169{bottom:524.055000px;}
.yc5{bottom:525.495000px;}
.y142{bottom:526.935000px;}
.y18d{bottom:530.355000px;}
.y7d{bottom:531.435000px;}
.y19c{bottom:531.795000px;}
.y44{bottom:532.515000px;}
.ya6{bottom:537.555000px;}
.yc{bottom:538.864499px;}
.y116{bottom:540.075000px;}
.y1e0{bottom:540.435000px;}
.y168{bottom:542.055000px;}
.yc4{bottom:543.495000px;}
.y141{bottom:547.275000px;}
.y18a{bottom:548.175000px;}
.y7c{bottom:549.435000px;}
.y43{bottom:550.515000px;}
.ya5{bottom:555.555000px;}
.yb{bottom:556.864499px;}
.y115{bottom:558.075000px;}
.y1df{bottom:558.435000px;}
.y167{bottom:560.055000px;}
.yc3{bottom:561.525000px;}
.y19b{bottom:567.105000px;}
.y7b{bottom:567.465000px;}
.y42{bottom:568.545000px;}
.ya4{bottom:573.585000px;}
.y114{bottom:576.105000px;}
.yf5{bottom:579.525000px;}
.y1de{bottom:582.405000px;}
.y166{bottom:584.025000px;}
.y7a{bottom:585.465000px;}
.y41{bottom:586.545000px;}
.y19a{bottom:587.265000px;}
.y13c{bottom:587.805000px;}
.ya3{bottom:591.585000px;}
.y113{bottom:594.105000px;}
.y188{bottom:597.345000px;}
.yba{bottom:597.525000px;}
.y1dd{bottom:600.405000px;}
.y8f{bottom:603.465000px;}
.y40{bottom:604.545000px;}
.y199{bottom:607.605000px;}
.y13f{bottom:607.965000px;}
.y79{bottom:609.585000px;}
.y112{bottom:612.105000px;}
.yb9{bottom:615.525000px;}
.y1dc{bottom:618.405000px;}
.y8e{bottom:621.465000px;}
.y3f{bottom:622.545000px;}
.y186{bottom:622.725000px;}
.y198{bottom:625.785000px;}
.y165{bottom:625.965000px;}
.y78{bottom:627.585000px;}
.y13e{bottom:628.305000px;}
.y111{bottom:630.105000px;}
.yb3{bottom:633.525000px;}
.y1db{bottom:636.405000px;}
.y8d{bottom:639.465000px;}
.y3e{bottom:640.545000px;}
.y164{bottom:643.965000px;}
.ya{bottom:645.510000px;}
.y77{bottom:645.585000px;}
.y13d{bottom:648.465000px;}
.yfb{bottom:651.525000px;}
.y110{bottom:654.225000px;}
.y1da{bottom:654.405000px;}
.yb2{bottom:657.465000px;}
.y197{bottom:657.825000px;}
.y3d{bottom:658.545000px;}
.y184{bottom:659.265000px;}
.y163{bottom:661.965000px;}
.y76{bottom:663.585000px;}
.y9{bottom:666.771000px;}
.y139{bottom:668.805000px;}
.yfa{bottom:669.525000px;}
.y1d9{bottom:672.405000px;}
.yb1{bottom:675.465000px;}
.y3c{bottom:676.545000px;}
.y10f{bottom:678.165000px;}
.y162{bottom:679.965000px;}
.y75{bottom:681.585000px;}
.yf9{bottom:687.525000px;}
.y13b{bottom:688.965000px;}
.yb0{bottom:693.465000px;}
.y3b{bottom:694.545000px;}
.y181{bottom:695.625000px;}
.y10e{bottom:696.165000px;}
.y1d8{bottom:696.345000px;}
.y161{bottom:697.965000px;}
.y74{bottom:699.585000px;}
.yf4{bottom:705.525000px;}
.y13a{bottom:709.305000px;}
.yaf{bottom:711.465000px;}
.y10d{bottom:714.165000px;}
.y160{bottom:715.965000px;}
.y73{bottom:717.585000px;}
.y3a{bottom:718.485000px;}
.yf8{bottom:723.525000px;}
.y8{bottom:726.298500px;}
.yae{bottom:729.465000px;}
.y1d7{bottom:731.985000px;}
.y10c{bottom:732.165000px;}
.y15f{bottom:733.965000px;}
.y72{bottom:735.585000px;}
.y39{bottom:736.125000px;}
.yc2{bottom:741.525000px;}
.y1ac{bottom:745.740000px;}
.yad{bottom:747.465000px;}
.y133{bottom:749.805000px;}
.y36{bottom:750.165000px;}
.y15e{bottom:751.965000px;}
.y4{bottom:752.599495px;}
.y1d6{bottom:752.685000px;}
.ye7{bottom:753.120000px;}
.y71{bottom:753.585000px;}
.y180{bottom:753.765000px;}
.yc1{bottom:759.525000px;}
.yac{bottom:765.465000px;}
.y10b{bottom:768.165000px;}
.y138{bottom:769.965000px;}
.y70{bottom:771.585000px;}
.y31{bottom:772.125000px;}
.y1d5{bottom:773.385000px;}
.y1c4{bottom:775.980000px;}
.yf3{bottom:777.525000px;}
.y17f{bottom:780.585000px;}
.yab{bottom:783.465000px;}
.y10a{bottom:786.165000px;}
.y15d{bottom:787.965000px;}
.y8c{bottom:789.585000px;}
.y136{bottom:790.305000px;}
.y1d4{bottom:794.085000px;}
.y6f{bottom:795.525000px;}
.yda{bottom:795.705000px;}
.y17e{bottom:798.585000px;}
.yb8{bottom:801.465000px;}
.y109{bottom:802.905000px;}
.y15c{bottom:805.965000px;}
.y8b{bottom:807.585000px;}
.y12b{bottom:810.465000px;}
.y30{bottom:811.185000px;}
.yd9{bottom:811.545000px;}
.y6e{bottom:813.570000px;}
.y1d3{bottom:814.830000px;}
.y108{bottom:815.010000px;}
.y17d{bottom:816.630000px;}
.yb7{bottom:819.510000px;}
.y15b{bottom:824.010000px;}
.y1a9{bottom:824.940000px;}
.yf2{bottom:825.270000px;}
.y8a{bottom:825.630000px;}
.y1b9{bottom:826.710000px;}
.y2f{bottom:828.330000px;}
.ydf{bottom:828.720000px;}
.yd8{bottom:828.870000px;}
.y131{bottom:830.850000px;}
.y6d{bottom:831.570000px;}
.y107{bottom:834.270000px;}
.y17c{bottom:834.630000px;}
.y1d2{bottom:835.530000px;}
.y1ab{bottom:836.610000px;}
.yb6{bottom:837.510000px;}
.y1c6{bottom:838.980000px;}
.y89{bottom:843.630000px;}
.y1b8{bottom:843.990000px;}
.y2e{bottom:845.610000px;}
.yd7{bottom:846.150000px;}
.ye6{bottom:847.080000px;}
.y15a{bottom:847.410000px;}
.y6c{bottom:849.570000px;}
.y130{bottom:851.010000px;}
.y17b{bottom:852.630000px;}
.yf1{bottom:852.990000px;}
.ye5{bottom:853.560000px;}
.yc0{bottom:855.510000px;}
.ye2{bottom:855.690000px;}
.y1c8{bottom:857.670000px;}
.y106{bottom:858.750000px;}
.y1b7{bottom:861.090000px;}
.ya2{bottom:861.630000px;}
.y2d{bottom:862.890000px;}
.yd6{bottom:863.250000px;}
.y1bf{bottom:864.870000px;}
.y6b{bottom:867.570000px;}
.y1c3{bottom:869.760000px;}
.y17a{bottom:870.630000px;}
.y12e{bottom:871.350000px;}
.y159{bottom:871.890000px;}
.ybf{bottom:873.510000px;}
.yf0{bottom:873.690000px;}
.ye1{bottom:874.770000px;}
.y1c0{bottom:875.340000px;}
.y1d1{bottom:876.930000px;}
.ye4{bottom:878.010000px;}
.y1b6{bottom:878.370000px;}
.y3{bottom:879.369000px;}
.ydb{bottom:879.480000px;}
.ya1{bottom:879.630000px;}
.y2c{bottom:880.170000px;}
.yd5{bottom:880.530000px;}
.y1be{bottom:882.150000px;}
.y105{bottom:883.050000px;}
.y6a{bottom:885.570000px;}
.y179{bottom:888.630000px;}
.ybe{bottom:891.510000px;}
.y1ba{bottom:892.080000px;}
.yef{bottom:894.390000px;}
.y1b5{bottom:895.650000px;}
.y158{bottom:896.190000px;}
.ya0{bottom:897.630000px;}
.yd4{bottom:897.810000px;}
.y2b{bottom:899.430000px;}
.y69{bottom:903.570000px;}
.y178{bottom:906.630000px;}
.y104{bottom:907.530000px;}
.ybd{bottom:909.510000px;}
.y12a{bottom:911.850000px;}
.y1b4{bottom:912.930000px;}
.y1a3{bottom:914.940000px;}
.yd3{bottom:915.090000px;}
.y9f{bottom:915.630000px;}
.y1d0{bottom:918.330000px;}
.y156{bottom:920.670000px;}
.y68{bottom:921.570000px;}
.y177{bottom:924.630000px;}
.y2a{bottom:926.790000px;}
.ybc{bottom:927.510000px;}
.y1a5{bottom:928.050000px;}
.y1b3{bottom:930.210000px;}
.y103{bottom:931.830000px;}
.y129{bottom:932.010000px;}
.yd2{bottom:932.370000px;}
.y9e{bottom:933.630000px;}
.yd0{bottom:934.020000px;}
.yee{bottom:935.790000px;}
.y1cf{bottom:939.030000px;}
.y67{bottom:939.570000px;}
.y176{bottom:942.630000px;}
.y153{bottom:944.970000px;}
.y2{bottom:945.126001px;}
.ybb{bottom:945.510000px;}
.yce{bottom:945.540000px;}
.y1b2{bottom:947.490000px;}
.y1a6{bottom:947.700000px;}
.y9d{bottom:951.630000px;}
.y127{bottom:952.350000px;}
.y29{bottom:953.610000px;}
.y102{bottom:956.310000px;}
.yed{bottom:956.490000px;}
.y66{bottom:957.570000px;}
.y1ce{bottom:959.730000px;}
.y175{bottom:960.630000px;}
.y1ee{bottom:963.510000px;}
.y1{bottom:966.726000px;}
.y14f{bottom:969.270000px;}
.y9c{bottom:969.630000px;}
.y122{bottom:972.510000px;}
.y65{bottom:975.570000px;}
.ycc{bottom:975.780000px;}
.yec{bottom:977.190000px;}
.y174{bottom:978.630000px;}
.y28{bottom:980.250000px;}
.y1cd{bottom:980.430000px;}
.y101{bottom:980.610000px;}
.y1ed{bottom:981.510000px;}
.y1af{bottom:984.600000px;}
.y9b{bottom:987.630000px;}
.y64{bottom:993.570000px;}
.yeb{bottom:997.890000px;}
.y1cc{bottom:1001.130000px;}
.y173{bottom:1002.570000px;}
.y14e{bottom:1002.930000px;}
.yff{bottom:1004.910000px;}
.y9a{bottom:1005.630000px;}
.ydd{bottom:1010.520000px;}
.y63{bottom:1011.570000px;}
.y1ae{bottom:1015.530000px;}
.yea{bottom:1018.590000px;}
.y121{bottom:1020.930000px;}
.y1cb{bottom:1021.830000px;}
.y99{bottom:1023.630000px;}
.yfd{bottom:1029.390000px;}
.y62{bottom:1029.570000px;}
.y27{bottom:1031.550000px;}
.y1bc{bottom:1033.380000px;}
.ye9{bottom:1039.290000px;}
.y98{bottom:1041.630000px;}
.y1ca{bottom:1042.530000px;}
.y61{bottom:1047.570000px;}
.y26{bottom:1048.650000px;}
.y1c9{bottom:1063.260000px;}
.y60{bottom:1065.600000px;}
.y25{bottom:1065.960000px;}
.y87{bottom:1099.980000px;}
.y55{bottom:1119.960000px;}
.h38{height:14.760000px;}
.h13{height:17.280000px;}
.h2d{height:17.460000px;}
.h1b{height:17.640000px;}
.h3b{height:17.820000px;}
.h26{height:19.440000px;}
.h2b{height:19.476000px;}
.h27{height:19.620000px;}
.h29{height:19.656000px;}
.h3a{height:20.880000px;}
.h18{height:21.420000px;}
.h19{height:21.600000px;}
.h10{height:21.960000px;}
.h22{height:23.580000px;}
.h23{height:23.760000px;}
.h39{height:25.920000px;}
.h7{height:32.130000px;}
.h31{height:34.380000px;}
.h32{height:34.560000px;}
.h34{height:34.596000px;}
.hd{height:35.820000px;}
.h37{height:36.900000px;}
.h3c{height:37.260000px;}
.h35{height:38.340000px;}
.h24{height:38.520000px;}
.h36{height:39.760312px;}
.h1f{height:43.200000px;}
.h21{height:43.215117px;}
.h3d{height:43.920000px;}
.h6{height:45.900000px;}
.h30{height:47.160000px;}
.h33{height:47.196000px;}
.hf{height:47.344922px;}
.h2e{height:47.854688px;}
.h3{height:48.195000px;}
.he{height:48.616875px;}
.h11{height:50.171484px;}
.h2f{height:52.971680px;}
.h1a{height:52.998047px;}
.h2{height:55.080000px;}
.h16{height:55.980000px;}
.h20{height:57.324375px;}
.h14{height:58.621992px;}
.h9{height:58.651172px;}
.h2a{height:59.940000px;}
.ha{height:60.226875px;}
.h15{height:61.423863px;}
.h1c{height:63.855000px;}
.h1e{height:65.010937px;}
.h17{height:66.757500px;}
.h12{height:70.664062px;}
.h3e{height:72.562500px;}
.h2c{height:73.800000px;}
.h5{height:78.030000px;}
.h25{height:80.280000px;}
.h28{height:80.316000px;}
.h1d{height:84.420000px;}
.hb{height:93.605625px;}
.hc{height:93.983203px;}
.h4{height:119.055004px;}
.h8{height:1188.000000px;}
.h0{height:1262.833500px;}
.h1{height:1263.000000px;}
.w9{width:15.156000px;}
.wc{width:44.640000px;}
.wb{width:44.820000px;}
.w13{width:46.440000px;}
.w11{width:53.280000px;}
.w12{width:53.316000px;}
.w18{width:59.940000px;}
.w20{width:59.976000px;}
.w21{width:60.120000px;}
.w19{width:60.156000px;}
.w2d{width:66.600000px;}
.w23{width:66.636000px;}
.w15{width:66.780000px;}
.wf{width:68.760000px;}
.w24{width:71.460000px;}
.w1b{width:73.620000px;}
.w2e{width:74.520000px;}
.w1d{width:80.280000px;}
.w16{width:80.316000px;}
.w28{width:81.000000px;}
.w17{width:86.760000px;}
.w1c{width:86.976000px;}
.w29{width:89.100000px;}
.w2a{width:89.280000px;}
.w25{width:90.360000px;}
.w26{width:92.556000px;}
.we{width:100.260000px;}
.w10{width:106.956000px;}
.w14{width:107.676000px;}
.wd{width:125.460000px;}
.w5{width:130.716000px;}
.w6{width:133.200000px;}
.w8{width:134.676000px;}
.w7{width:141.516000px;}
.w2c{width:147.780000px;}
.wa{width:151.380000px;}
.w1a{width:154.110000px;}
.w2b{width:157.860000px;}
.w22{width:201.630000px;}
.w1f{width:222.150000px;}
.w27{width:269.175000px;}
.w1e{width:478.905000px;}
.w2{width:637.794021px;}
.w0{width:892.912500px;}
.w1{width:893.250000px;}
.w4{width:917.999986px;}
.w3{width:918.000000px;}
.x0{left:0.000000px;}
.xf{left:8.100000px;}
.x4f{left:9.540000px;}
.x18{left:11.730000px;}
.x67{left:12.930000px;}
.x32{left:14.760000px;}
.x5a{left:16.200000px;}
.x37{left:17.460000px;}
.x36{left:19.080000px;}
.x21{left:20.415000px;}
.x26{left:22.065000px;}
.x3d{left:23.220000px;}
.x3a{left:24.660000px;}
.x3e{left:26.280000px;}
.x23{left:27.645000px;}
.x47{left:29.160000px;}
.x49{left:30.270000px;}
.x41{left:32.940000px;}
.x45{left:36.360000px;}
.x43{left:39.630000px;}
.x48{left:43.410000px;}
.x58{left:45.180000px;}
.x59{left:46.305000px;}
.x4c{left:70.605000px;}
.x1{left:102.045000px;}
.x2{left:106.297500px;}
.x4{left:203.484001px;}
.x5{left:216.029986px;}
.x17{left:219.060000px;}
.x53{left:223.230000px;}
.x4b{left:226.470000px;}
.x7{left:229.889986px;}
.x8{left:231.689986px;}
.x15{left:243.029986px;}
.x3f{left:246.990000px;}
.x34{left:253.470000px;}
.x60{left:257.969986px;}
.x1d{left:262.649986px;}
.x1b{left:263.909986px;}
.x1c{left:268.049986px;}
.x16{left:270.029986px;}
.x6{left:272.549986px;}
.x14{left:279.749986px;}
.xa{left:290.009986px;}
.x1e{left:296.534986px;}
.xb{left:301.934986px;}
.xd{left:314.174986px;}
.x2c{left:324.435000px;}
.xc{left:341.714986px;}
.x33{left:343.334986px;}
.xe{left:346.755000px;}
.x5b{left:355.500000px;}
.x52{left:358.454986px;}
.x35{left:361.875000px;}
.x5c{left:366.374986px;}
.x4a{left:367.814986px;}
.x29{left:372.060000px;}
.x62{left:373.500000px;}
.x2a{left:376.020000px;}
.x2b{left:378.434986px;}
.x20{left:383.760000px;}
.x5f{left:386.100000px;}
.x1a{left:396.360000px;}
.x40{left:401.835000px;}
.x54{left:425.775000px;}
.x38{left:429.375000px;}
.x2d{left:432.435000px;}
.x6a{left:435.674986px;}
.x12{left:446.114986px;}
.x4d{left:449.355000px;}
.x3{left:454.959000px;}
.x5d{left:458.640000px;}
.x5e{left:460.620000px;}
.x19{left:466.920000px;}
.x42{left:476.175000px;}
.x13{left:478.515000px;}
.x10{left:479.955000px;}
.x9{left:486.104986px;}
.x55{left:493.305000px;}
.x63{left:501.404986px;}
.x64{left:508.244986px;}
.x39{left:510.405000px;}
.x65{left:514.004986px;}
.x22{left:522.000000px;}
.x25{left:537.944986px;}
.x2e{left:540.465000px;}
.x24{left:554.684986px;}
.x44{left:563.865000px;}
.x56{left:565.485000px;}
.x4e{left:570.885000px;}
.x2f{left:594.465000px;}
.x3b{left:597.885000px;}
.x68{left:603.540000px;}
.x61{left:608.940000px;}
.x69{left:614.444986px;}
.x11{left:621.465000px;}
.x50{left:624.885000px;}
.x1f{left:637.560000px;}
.x46{left:644.865000px;}
.x30{left:648.465000px;}
.x57{left:656.565000px;}
.x3c{left:658.545000px;}
.x28{left:680.580000px;}
.x66{left:683.100000px;}
.x51{left:685.590000px;}
.x27{left:694.589986px;}
.x31{left:702.510000px;}
@media print{
.v2{vertical-align:-73.600000pt;}
.v3{vertical-align:-64.000000pt;}
.v1{vertical-align:-61.440000pt;}
.v0{vertical-align:0.000000pt;}
.ls8{letter-spacing:-0.480000pt;}
.ls6{letter-spacing:-0.472533pt;}
.ls4{letter-spacing:-0.409067pt;}
.ls7{letter-spacing:-0.320000pt;}
.lsc{letter-spacing:-0.128000pt;}
.ls10{letter-spacing:-0.094933pt;}
.ls5{letter-spacing:-0.047360pt;}
.lsd{letter-spacing:-0.024320pt;}
.lsf{letter-spacing:-0.016000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls13{letter-spacing:0.047360pt;}
.lsa{letter-spacing:0.062720pt;}
.ls2{letter-spacing:0.160000pt;}
.ls9{letter-spacing:0.230933pt;}
.ls3{letter-spacing:0.231040pt;}
.ls12{letter-spacing:0.265600pt;}
.ls1a{letter-spacing:0.266667pt;}
.lse{letter-spacing:0.272533pt;}
.ls1{letter-spacing:0.320000pt;}
.ls11{letter-spacing:0.322560pt;}
.ls16{letter-spacing:0.960000pt;}
.ls18{letter-spacing:1.600000pt;}
.ls19{letter-spacing:4.000000pt;}
.ls1b{letter-spacing:4.640000pt;}
.ls17{letter-spacing:5.920000pt;}
.lsb{letter-spacing:38.992640pt;}
.ls15{letter-spacing:368.160000pt;}
.ls14{letter-spacing:944.266667pt;}
.wsc{word-spacing:-53.120000pt;}
.wsa{word-spacing:-15.872000pt;}
.ws9{word-spacing:-14.720000pt;}
.ws2{word-spacing:-13.600000pt;}
.wsd{word-spacing:-13.552533pt;}
.ws7{word-spacing:-13.510933pt;}
.wsf{word-spacing:-13.327360pt;}
.ws8{word-spacing:-13.280000pt;}
.wse{word-spacing:-13.185067pt;}
.ws11{word-spacing:-12.960000pt;}
.ws1{word-spacing:-12.870933pt;}
.wsb{word-spacing:-12.615680pt;}
.ws10{word-spacing:-12.000000pt;}
.ws5{word-spacing:-11.360000pt;}
.ws4{word-spacing:-11.040000pt;}
.ws3{word-spacing:-10.720000pt;}
.ws6{word-spacing:-10.400000pt;}
.ws0{word-spacing:0.000000pt;}
._8{margin-left:-3.187200pt;}
._7{margin-left:-2.231040pt;}
._1{margin-left:-1.058347pt;}
._0{width:1.009280pt;}
._4{width:2.496640pt;}
._3{width:3.771520pt;}
._6{width:4.674560pt;}
._9{width:5.669973pt;}
._5{width:6.653867pt;}
._a{width:8.339840pt;}
._f{width:9.774080pt;}
._e{width:11.208320pt;}
._d{width:12.111360pt;}
._10{width:14.236160pt;}
._13{width:15.457920pt;}
._12{width:16.679680pt;}
._14{width:17.611520pt;}
._18{width:18.832853pt;}
._c{width:20.181547pt;}
._b{width:21.141760pt;}
._15{width:22.097920pt;}
._1c{width:23.107200pt;}
._11{width:24.010240pt;}
._16{width:25.605120pt;}
._1a{width:27.255040pt;}
._19{width:28.414720pt;}
._17{width:29.587840pt;}
._1b{width:33.996800pt;}
._2{width:428.588587pt;}
.fs4{font-size:37.333333pt;}
.fs8{font-size:42.880000pt;}
.fs9{font-size:45.440000pt;}
.fsb{font-size:48.000000pt;}
.fsd{font-size:50.560000pt;}
.fs5{font-size:53.120000pt;}
.fs3{font-size:53.333333pt;}
.fs1{font-size:56.000000pt;}
.fsc{font-size:56.320000pt;}
.fsa{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.fs6{font-size:82.560000pt;}
.fs7{font-size:85.120000pt;}
.fs2{font-size:90.666667pt;}
.y0{bottom:0.000000pt;}
.yfe{bottom:2.560000pt;}
.yde{bottom:2.693333pt;}
.y100{bottom:2.720000pt;}
.y1ad{bottom:2.813333pt;}
.y5f{bottom:2.880000pt;}
.y132{bottom:2.920000pt;}
.y1bd{bottom:3.013333pt;}
.ycf{bottom:3.973333pt;}
.ye8{bottom:4.093333pt;}
.ydc{bottom:4.133333pt;}
.yd1{bottom:4.293333pt;}
.y1c2{bottom:4.613333pt;}
.y14a{bottom:4.800000pt;}
.y14c{bottom:4.960000pt;}
.y154{bottom:5.440000pt;}
.y150{bottom:5.600000pt;}
.y157{bottom:5.920000pt;}
.y1b1{bottom:6.053333pt;}
.y1c5{bottom:6.493333pt;}
.y1bb{bottom:6.533333pt;}
.ye3{bottom:7.013333pt;}
.y151{bottom:7.680000pt;}
.y124{bottom:7.840000pt;}
.y1a8{bottom:8.293333pt;}
.y189{bottom:8.480000pt;}
.y152{bottom:8.640000pt;}
.y37{bottom:8.960000pt;}
.y38{bottom:9.440000pt;}
.y1b0{bottom:10.373333pt;}
.y183{bottom:14.080000pt;}
.y135{bottom:14.240000pt;}
.y18c{bottom:14.266667pt;}
.y34{bottom:15.520000pt;}
.y32{bottom:16.480000pt;}
.y185{bottom:18.080000pt;}
.y187{bottom:18.240000pt;}
.y1c1{bottom:18.693333pt;}
.ycd{bottom:19.493333pt;}
.y1a7{bottom:20.453333pt;}
.y155{bottom:20.960000pt;}
.y35{bottom:21.760000pt;}
.y137{bottom:21.920000pt;}
.y123{bottom:22.400000pt;}
.y1aa{bottom:22.693333pt;}
.y126{bottom:23.200000pt;}
.y12d{bottom:23.240000pt;}
.y1a4{bottom:23.813333pt;}
.y33{bottom:26.880000pt;}
.y144{bottom:28.000000pt;}
.y1c7{bottom:28.933333pt;}
.y182{bottom:29.440000pt;}
.y134{bottom:29.600000pt;}
.y18b{bottom:29.626667pt;}
.y128{bottom:30.880000pt;}
.y12f{bottom:30.920000pt;}
.y7{bottom:31.933340pt;}
.y125{bottom:38.560000pt;}
.y12c{bottom:38.600000pt;}
.ye0{bottom:57.733333pt;}
.y6{bottom:59.133337pt;}
.y5{bottom:86.333337pt;}
.y24{bottom:123.790666pt;}
.y5d{bottom:166.586667pt;}
.y1b{bottom:175.052000pt;}
.y5c{bottom:184.986667pt;}
.y23{bottom:186.238666pt;}
.y1a{bottom:186.252002pt;}
.y22{bottom:197.438668pt;}
.y19{bottom:197.452004pt;}
.y54{bottom:201.306667pt;}
.y5b{bottom:203.386667pt;}
.y21{bottom:208.638670pt;}
.y18{bottom:208.651996pt;}
.y53{bottom:217.306667pt;}
.y5a{bottom:221.786667pt;}
.y20{bottom:231.038664pt;}
.y17{bottom:231.052000pt;}
.y52{bottom:233.306667pt;}
.y59{bottom:240.186667pt;}
.y1f{bottom:242.238666pt;}
.y16{bottom:242.252002pt;}
.y51{bottom:249.306667pt;}
.y1e{bottom:253.438668pt;}
.y15{bottom:253.451999pt;}
.y58{bottom:258.586667pt;}
.y50{bottom:265.306667pt;}
.y1d{bottom:275.838667pt;}
.y14{bottom:275.852001pt;}
.y88{bottom:276.546667pt;}
.y57{bottom:277.026667pt;}
.y4f{bottom:281.346667pt;}
.y1c{bottom:287.038667pt;}
.y13{bottom:287.052000pt;}
.y5e{bottom:294.946667pt;}
.y56{bottom:295.426667pt;}
.yb5{bottom:296.386667pt;}
.y4e{bottom:297.346667pt;}
.y97{bottom:301.826667pt;}
.y1eb{bottom:304.386667pt;}
.y1f0{bottom:307.106667pt;}
.ycb{bottom:308.546667pt;}
.y12{bottom:309.452000pt;}
.y1a2{bottom:311.426667pt;}
.y148{bottom:312.226667pt;}
.yfc{bottom:312.386667pt;}
.y4d{bottom:313.346667pt;}
.y96{bottom:317.826667pt;}
.y196{bottom:319.906667pt;}
.y120{bottom:320.066667pt;}
.y1ea{bottom:320.386667pt;}
.y172{bottom:321.826667pt;}
.y1ef{bottom:323.106667pt;}
.yca{bottom:326.946667pt;}
.y86{bottom:328.386667pt;}
.y4c{bottom:329.346667pt;}
.y14d{bottom:330.306667pt;}
.y1a1{bottom:333.026667pt;}
.y95{bottom:333.826667pt;}
.y195{bottom:335.906667pt;}
.y11f{bottom:336.066667pt;}
.y1e9{bottom:336.386667pt;}
.y171{bottom:337.826667pt;}
.yb4{bottom:339.106667pt;}
.y11{bottom:343.809333pt;}
.y85{bottom:344.386667pt;}
.y4b{bottom:345.346667pt;}
.y14b{bottom:348.226667pt;}
.y94{bottom:349.826667pt;}
.y194{bottom:351.906667pt;}
.y11e{bottom:352.066667pt;}
.y1e8{bottom:352.386667pt;}
.y170{bottom:353.826667pt;}
.y1a0{bottom:354.786667pt;}
.yf7{bottom:355.106667pt;}
.y84{bottom:360.386667pt;}
.y10{bottom:362.706666pt;}
.yc9{bottom:363.746667pt;}
.y93{bottom:365.826667pt;}
.y149{bottom:366.306667pt;}
.y4a{bottom:366.626667pt;}
.y193{bottom:367.906667pt;}
.y11d{bottom:368.066667pt;}
.y1e7{bottom:368.386667pt;}
.y16f{bottom:369.826667pt;}
.yf6{bottom:371.106667pt;}
.y83{bottom:376.386667pt;}
.y92{bottom:381.826667pt;}
.y192{bottom:383.906667pt;}
.y11c{bottom:384.066667pt;}
.y143{bottom:384.226667pt;}
.y1e6{bottom:384.386667pt;}
.y16e{bottom:385.826667pt;}
.y19f{bottom:385.986667pt;}
.yaa{bottom:387.106667pt;}
.y49{bottom:388.066667pt;}
.y82{bottom:392.386667pt;}
.y91{bottom:397.826667pt;}
.y191{bottom:399.906667pt;}
.y11b{bottom:400.066667pt;}
.y1e5{bottom:400.386667pt;}
.y16d{bottom:401.826667pt;}
.y147{bottom:402.306667pt;}
.yc8{bottom:403.106667pt;}
.y48{bottom:404.066667pt;}
.y19e{bottom:407.746667pt;}
.y81{bottom:408.386667pt;}
.y1ec{bottom:413.826667pt;}
.y190{bottom:415.906667pt;}
.y11a{bottom:416.066667pt;}
.y1e4{bottom:416.386667pt;}
.y16c{bottom:417.826667pt;}
.y146{bottom:418.466667pt;}
.y90{bottom:419.106667pt;}
.y80{bottom:424.386667pt;}
.y47{bottom:425.346667pt;}
.y19d{bottom:429.346667pt;}
.ya9{bottom:429.826667pt;}
.yf{bottom:430.990669pt;}
.y18f{bottom:431.906667pt;}
.y119{bottom:432.066667pt;}
.y1e3{bottom:432.386667pt;}
.y16b{bottom:433.826667pt;}
.y145{bottom:434.466667pt;}
.yc7{bottom:435.106667pt;}
.y7f{bottom:440.386667pt;}
.y46{bottom:441.346667pt;}
.ya8{bottom:445.826667pt;}
.ye{bottom:446.990669pt;}
.y18e{bottom:447.906667pt;}
.y118{bottom:448.066667pt;}
.y1e2{bottom:448.386667pt;}
.y16a{bottom:449.826667pt;}
.y140{bottom:450.466667pt;}
.yc6{bottom:451.106667pt;}
.y7e{bottom:456.386667pt;}
.y45{bottom:457.346667pt;}
.ya7{bottom:461.826667pt;}
.yd{bottom:462.990669pt;}
.y117{bottom:464.066667pt;}
.y1e1{bottom:464.386667pt;}
.y169{bottom:465.826667pt;}
.yc5{bottom:467.106667pt;}
.y142{bottom:468.386667pt;}
.y18d{bottom:471.426667pt;}
.y7d{bottom:472.386667pt;}
.y19c{bottom:472.706667pt;}
.y44{bottom:473.346667pt;}
.ya6{bottom:477.826667pt;}
.yc{bottom:478.990666pt;}
.y116{bottom:480.066667pt;}
.y1e0{bottom:480.386667pt;}
.y168{bottom:481.826667pt;}
.yc4{bottom:483.106667pt;}
.y141{bottom:486.466667pt;}
.y18a{bottom:487.266667pt;}
.y7c{bottom:488.386667pt;}
.y43{bottom:489.346667pt;}
.ya5{bottom:493.826667pt;}
.yb{bottom:494.990666pt;}
.y115{bottom:496.066667pt;}
.y1df{bottom:496.386667pt;}
.y167{bottom:497.826667pt;}
.yc3{bottom:499.133333pt;}
.y19b{bottom:504.093333pt;}
.y7b{bottom:504.413333pt;}
.y42{bottom:505.373333pt;}
.ya4{bottom:509.853333pt;}
.y114{bottom:512.093333pt;}
.yf5{bottom:515.133333pt;}
.y1de{bottom:517.693333pt;}
.y166{bottom:519.133333pt;}
.y7a{bottom:520.413333pt;}
.y41{bottom:521.373333pt;}
.y19a{bottom:522.013333pt;}
.y13c{bottom:522.493333pt;}
.ya3{bottom:525.853333pt;}
.y113{bottom:528.093333pt;}
.y188{bottom:530.973333pt;}
.yba{bottom:531.133333pt;}
.y1dd{bottom:533.693333pt;}
.y8f{bottom:536.413333pt;}
.y40{bottom:537.373333pt;}
.y199{bottom:540.093333pt;}
.y13f{bottom:540.413333pt;}
.y79{bottom:541.853333pt;}
.y112{bottom:544.093333pt;}
.yb9{bottom:547.133333pt;}
.y1dc{bottom:549.693333pt;}
.y8e{bottom:552.413333pt;}
.y3f{bottom:553.373333pt;}
.y186{bottom:553.533333pt;}
.y198{bottom:556.253333pt;}
.y165{bottom:556.413333pt;}
.y78{bottom:557.853333pt;}
.y13e{bottom:558.493333pt;}
.y111{bottom:560.093333pt;}
.yb3{bottom:563.133333pt;}
.y1db{bottom:565.693333pt;}
.y8d{bottom:568.413333pt;}
.y3e{bottom:569.373333pt;}
.y164{bottom:572.413333pt;}
.ya{bottom:573.786667pt;}
.y77{bottom:573.853333pt;}
.y13d{bottom:576.413333pt;}
.yfb{bottom:579.133333pt;}
.y110{bottom:581.533333pt;}
.y1da{bottom:581.693333pt;}
.yb2{bottom:584.413333pt;}
.y197{bottom:584.733333pt;}
.y3d{bottom:585.373333pt;}
.y184{bottom:586.013333pt;}
.y163{bottom:588.413333pt;}
.y76{bottom:589.853333pt;}
.y9{bottom:592.685334pt;}
.y139{bottom:594.493333pt;}
.yfa{bottom:595.133333pt;}
.y1d9{bottom:597.693333pt;}
.yb1{bottom:600.413333pt;}
.y3c{bottom:601.373333pt;}
.y10f{bottom:602.813333pt;}
.y162{bottom:604.413333pt;}
.y75{bottom:605.853333pt;}
.yf9{bottom:611.133333pt;}
.y13b{bottom:612.413333pt;}
.yb0{bottom:616.413333pt;}
.y3b{bottom:617.373333pt;}
.y181{bottom:618.333333pt;}
.y10e{bottom:618.813333pt;}
.y1d8{bottom:618.973333pt;}
.y161{bottom:620.413333pt;}
.y74{bottom:621.853333pt;}
.yf4{bottom:627.133333pt;}
.y13a{bottom:630.493333pt;}
.yaf{bottom:632.413333pt;}
.y10d{bottom:634.813333pt;}
.y160{bottom:636.413333pt;}
.y73{bottom:637.853333pt;}
.y3a{bottom:638.653333pt;}
.yf8{bottom:643.133333pt;}
.y8{bottom:645.598667pt;}
.yae{bottom:648.413333pt;}
.y1d7{bottom:650.653333pt;}
.y10c{bottom:650.813333pt;}
.y15f{bottom:652.413333pt;}
.y72{bottom:653.853333pt;}
.y39{bottom:654.333333pt;}
.yc2{bottom:659.133333pt;}
.y1ac{bottom:662.880000pt;}
.yad{bottom:664.413333pt;}
.y133{bottom:666.493333pt;}
.y36{bottom:666.813333pt;}
.y15e{bottom:668.413333pt;}
.y4{bottom:668.977329pt;}
.y1d6{bottom:669.053333pt;}
.ye7{bottom:669.440000pt;}
.y71{bottom:669.853333pt;}
.y180{bottom:670.013333pt;}
.yc1{bottom:675.133333pt;}
.yac{bottom:680.413333pt;}
.y10b{bottom:682.813333pt;}
.y138{bottom:684.413333pt;}
.y70{bottom:685.853333pt;}
.y31{bottom:686.333333pt;}
.y1d5{bottom:687.453333pt;}
.y1c4{bottom:689.760000pt;}
.yf3{bottom:691.133333pt;}
.y17f{bottom:693.853333pt;}
.yab{bottom:696.413333pt;}
.y10a{bottom:698.813333pt;}
.y15d{bottom:700.413333pt;}
.y8c{bottom:701.853333pt;}
.y136{bottom:702.493333pt;}
.y1d4{bottom:705.853333pt;}
.y6f{bottom:707.133333pt;}
.yda{bottom:707.293333pt;}
.y17e{bottom:709.853333pt;}
.yb8{bottom:712.413333pt;}
.y109{bottom:713.693333pt;}
.y15c{bottom:716.413333pt;}
.y8b{bottom:717.853333pt;}
.y12b{bottom:720.413333pt;}
.y30{bottom:721.053333pt;}
.yd9{bottom:721.373333pt;}
.y6e{bottom:723.173333pt;}
.y1d3{bottom:724.293333pt;}
.y108{bottom:724.453333pt;}
.y17d{bottom:725.893333pt;}
.yb7{bottom:728.453333pt;}
.y15b{bottom:732.453333pt;}
.y1a9{bottom:733.280000pt;}
.yf2{bottom:733.573333pt;}
.y8a{bottom:733.893333pt;}
.y1b9{bottom:734.853333pt;}
.y2f{bottom:736.293333pt;}
.ydf{bottom:736.640000pt;}
.yd8{bottom:736.773333pt;}
.y131{bottom:738.533333pt;}
.y6d{bottom:739.173333pt;}
.y107{bottom:741.573333pt;}
.y17c{bottom:741.893333pt;}
.y1d2{bottom:742.693333pt;}
.y1ab{bottom:743.653333pt;}
.yb6{bottom:744.453333pt;}
.y1c6{bottom:745.760000pt;}
.y89{bottom:749.893333pt;}
.y1b8{bottom:750.213333pt;}
.y2e{bottom:751.653333pt;}
.yd7{bottom:752.133333pt;}
.ye6{bottom:752.960000pt;}
.y15a{bottom:753.253333pt;}
.y6c{bottom:755.173333pt;}
.y130{bottom:756.453333pt;}
.y17b{bottom:757.893333pt;}
.yf1{bottom:758.213333pt;}
.ye5{bottom:758.720000pt;}
.yc0{bottom:760.453333pt;}
.ye2{bottom:760.613333pt;}
.y1c8{bottom:762.373333pt;}
.y106{bottom:763.333333pt;}
.y1b7{bottom:765.413333pt;}
.ya2{bottom:765.893333pt;}
.y2d{bottom:767.013333pt;}
.yd6{bottom:767.333333pt;}
.y1bf{bottom:768.773333pt;}
.y6b{bottom:771.173333pt;}
.y1c3{bottom:773.120000pt;}
.y17a{bottom:773.893333pt;}
.y12e{bottom:774.533333pt;}
.y159{bottom:775.013333pt;}
.ybf{bottom:776.453333pt;}
.yf0{bottom:776.613333pt;}
.ye1{bottom:777.573333pt;}
.y1c0{bottom:778.080000pt;}
.y1d1{bottom:779.493333pt;}
.ye4{bottom:780.453333pt;}
.y1b6{bottom:780.773333pt;}
.y3{bottom:781.661334pt;}
.ydb{bottom:781.760000pt;}
.ya1{bottom:781.893333pt;}
.y2c{bottom:782.373333pt;}
.yd5{bottom:782.693333pt;}
.y1be{bottom:784.133333pt;}
.y105{bottom:784.933333pt;}
.y6a{bottom:787.173333pt;}
.y179{bottom:789.893333pt;}
.ybe{bottom:792.453333pt;}
.y1ba{bottom:792.960000pt;}
.yef{bottom:795.013333pt;}
.y1b5{bottom:796.133333pt;}
.y158{bottom:796.613333pt;}
.ya0{bottom:797.893333pt;}
.yd4{bottom:798.053333pt;}
.y2b{bottom:799.493333pt;}
.y69{bottom:803.173333pt;}
.y178{bottom:805.893333pt;}
.y104{bottom:806.693333pt;}
.ybd{bottom:808.453333pt;}
.y12a{bottom:810.533333pt;}
.y1b4{bottom:811.493333pt;}
.y1a3{bottom:813.280000pt;}
.yd3{bottom:813.413333pt;}
.y9f{bottom:813.893333pt;}
.y1d0{bottom:816.293333pt;}
.y156{bottom:818.373333pt;}
.y68{bottom:819.173333pt;}
.y177{bottom:821.893333pt;}
.y2a{bottom:823.813333pt;}
.ybc{bottom:824.453333pt;}
.y1a5{bottom:824.933333pt;}
.y1b3{bottom:826.853333pt;}
.y103{bottom:828.293333pt;}
.y129{bottom:828.453333pt;}
.yd2{bottom:828.773333pt;}
.y9e{bottom:829.893333pt;}
.yd0{bottom:830.240000pt;}
.yee{bottom:831.813333pt;}
.y1cf{bottom:834.693333pt;}
.y67{bottom:835.173333pt;}
.y176{bottom:837.893333pt;}
.y153{bottom:839.973333pt;}
.y2{bottom:840.112001pt;}
.ybb{bottom:840.453333pt;}
.yce{bottom:840.480000pt;}
.y1b2{bottom:842.213333pt;}
.y1a6{bottom:842.400000pt;}
.y9d{bottom:845.893333pt;}
.y127{bottom:846.533333pt;}
.y29{bottom:847.653333pt;}
.y102{bottom:850.053333pt;}
.yed{bottom:850.213333pt;}
.y66{bottom:851.173333pt;}
.y1ce{bottom:853.093333pt;}
.y175{bottom:853.893333pt;}
.y1ee{bottom:856.453333pt;}
.y1{bottom:859.312000pt;}
.y14f{bottom:861.573333pt;}
.y9c{bottom:861.893333pt;}
.y122{bottom:864.453333pt;}
.y65{bottom:867.173333pt;}
.ycc{bottom:867.360000pt;}
.yec{bottom:868.613333pt;}
.y174{bottom:869.893333pt;}
.y28{bottom:871.333333pt;}
.y1cd{bottom:871.493333pt;}
.y101{bottom:871.653333pt;}
.y1ed{bottom:872.453333pt;}
.y1af{bottom:875.200000pt;}
.y9b{bottom:877.893333pt;}
.y64{bottom:883.173333pt;}
.yeb{bottom:887.013333pt;}
.y1cc{bottom:889.893333pt;}
.y173{bottom:891.173333pt;}
.y14e{bottom:891.493333pt;}
.yff{bottom:893.253333pt;}
.y9a{bottom:893.893333pt;}
.ydd{bottom:898.240000pt;}
.y63{bottom:899.173333pt;}
.y1ae{bottom:902.693333pt;}
.yea{bottom:905.413333pt;}
.y121{bottom:907.493333pt;}
.y1cb{bottom:908.293333pt;}
.y99{bottom:909.893333pt;}
.yfd{bottom:915.013333pt;}
.y62{bottom:915.173333pt;}
.y27{bottom:916.933333pt;}
.y1bc{bottom:918.560000pt;}
.ye9{bottom:923.813333pt;}
.y98{bottom:925.893333pt;}
.y1ca{bottom:926.693333pt;}
.y61{bottom:931.173333pt;}
.y26{bottom:932.133333pt;}
.y1c9{bottom:945.120000pt;}
.y60{bottom:947.200000pt;}
.y25{bottom:947.520000pt;}
.y87{bottom:977.760000pt;}
.y55{bottom:995.520000pt;}
.h38{height:13.120000pt;}
.h13{height:15.360000pt;}
.h2d{height:15.520000pt;}
.h1b{height:15.680000pt;}
.h3b{height:15.840000pt;}
.h26{height:17.280000pt;}
.h2b{height:17.312000pt;}
.h27{height:17.440000pt;}
.h29{height:17.472000pt;}
.h3a{height:18.560000pt;}
.h18{height:19.040000pt;}
.h19{height:19.200000pt;}
.h10{height:19.520000pt;}
.h22{height:20.960000pt;}
.h23{height:21.120000pt;}
.h39{height:23.040000pt;}
.h7{height:28.560000pt;}
.h31{height:30.560000pt;}
.h32{height:30.720000pt;}
.h34{height:30.752000pt;}
.hd{height:31.840000pt;}
.h37{height:32.800000pt;}
.h3c{height:33.120000pt;}
.h35{height:34.080000pt;}
.h24{height:34.240000pt;}
.h36{height:35.342500pt;}
.h1f{height:38.400000pt;}
.h21{height:38.413438pt;}
.h3d{height:39.040000pt;}
.h6{height:40.800000pt;}
.h30{height:41.920000pt;}
.h33{height:41.952000pt;}
.hf{height:42.084375pt;}
.h2e{height:42.537500pt;}
.h3{height:42.840000pt;}
.he{height:43.215000pt;}
.h11{height:44.596875pt;}
.h2f{height:47.085938pt;}
.h1a{height:47.109375pt;}
.h2{height:48.960000pt;}
.h16{height:49.760000pt;}
.h20{height:50.955000pt;}
.h14{height:52.108438pt;}
.h9{height:52.134375pt;}
.h2a{height:53.280000pt;}
.ha{height:53.535000pt;}
.h15{height:54.598989pt;}
.h1c{height:56.760000pt;}
.h1e{height:57.787500pt;}
.h17{height:59.340000pt;}
.h12{height:62.812500pt;}
.h3e{height:64.500000pt;}
.h2c{height:65.600000pt;}
.h5{height:69.360000pt;}
.h25{height:71.360000pt;}
.h28{height:71.392000pt;}
.h1d{height:75.040000pt;}
.hb{height:83.205000pt;}
.hc{height:83.540625pt;}
.h4{height:105.826671pt;}
.h8{height:1056.000000pt;}
.h0{height:1122.518667pt;}
.h1{height:1122.666667pt;}
.w9{width:13.472000pt;}
.wc{width:39.680000pt;}
.wb{width:39.840000pt;}
.w13{width:41.280000pt;}
.w11{width:47.360000pt;}
.w12{width:47.392000pt;}
.w18{width:53.280000pt;}
.w20{width:53.312000pt;}
.w21{width:53.440000pt;}
.w19{width:53.472000pt;}
.w2d{width:59.200000pt;}
.w23{width:59.232000pt;}
.w15{width:59.360000pt;}
.wf{width:61.120000pt;}
.w24{width:63.520000pt;}
.w1b{width:65.440000pt;}
.w2e{width:66.240000pt;}
.w1d{width:71.360000pt;}
.w16{width:71.392000pt;}
.w28{width:72.000000pt;}
.w17{width:77.120000pt;}
.w1c{width:77.312000pt;}
.w29{width:79.200000pt;}
.w2a{width:79.360000pt;}
.w25{width:80.320000pt;}
.w26{width:82.272000pt;}
.we{width:89.120000pt;}
.w10{width:95.072000pt;}
.w14{width:95.712000pt;}
.wd{width:111.520000pt;}
.w5{width:116.192000pt;}
.w6{width:118.400000pt;}
.w8{width:119.712000pt;}
.w7{width:125.792000pt;}
.w2c{width:131.360000pt;}
.wa{width:134.560000pt;}
.w1a{width:136.986667pt;}
.w2b{width:140.320000pt;}
.w22{width:179.226667pt;}
.w1f{width:197.466667pt;}
.w27{width:239.266667pt;}
.w1e{width:425.693333pt;}
.w2{width:566.928019pt;}
.w0{width:793.700000pt;}
.w1{width:794.000000pt;}
.w4{width:815.999988pt;}
.w3{width:816.000000pt;}
.x0{left:0.000000pt;}
.xf{left:7.200000pt;}
.x4f{left:8.480000pt;}
.x18{left:10.426667pt;}
.x67{left:11.493333pt;}
.x32{left:13.120000pt;}
.x5a{left:14.400000pt;}
.x37{left:15.520000pt;}
.x36{left:16.960000pt;}
.x21{left:18.146667pt;}
.x26{left:19.613333pt;}
.x3d{left:20.640000pt;}
.x3a{left:21.920000pt;}
.x3e{left:23.360000pt;}
.x23{left:24.573333pt;}
.x47{left:25.920000pt;}
.x49{left:26.906667pt;}
.x41{left:29.280000pt;}
.x45{left:32.320000pt;}
.x43{left:35.226667pt;}
.x48{left:38.586667pt;}
.x58{left:40.160000pt;}
.x59{left:41.160000pt;}
.x4c{left:62.760000pt;}
.x1{left:90.706667pt;}
.x2{left:94.486667pt;}
.x4{left:180.874667pt;}
.x5{left:192.026655pt;}
.x17{left:194.720000pt;}
.x53{left:198.426667pt;}
.x4b{left:201.306667pt;}
.x7{left:204.346655pt;}
.x8{left:205.946655pt;}
.x15{left:216.026655pt;}
.x3f{left:219.546667pt;}
.x34{left:225.306667pt;}
.x60{left:229.306655pt;}
.x1d{left:233.466655pt;}
.x1b{left:234.586655pt;}
.x1c{left:238.266655pt;}
.x16{left:240.026655pt;}
.x6{left:242.266655pt;}
.x14{left:248.666655pt;}
.xa{left:257.786655pt;}
.x1e{left:263.586655pt;}
.xb{left:268.386655pt;}
.xd{left:279.266655pt;}
.x2c{left:288.386667pt;}
.xc{left:303.746655pt;}
.x33{left:305.186655pt;}
.xe{left:308.226667pt;}
.x5b{left:316.000000pt;}
.x52{left:318.626655pt;}
.x35{left:321.666667pt;}
.x5c{left:325.666655pt;}
.x4a{left:326.946655pt;}
.x29{left:330.720000pt;}
.x62{left:332.000000pt;}
.x2a{left:334.240000pt;}
.x2b{left:336.386655pt;}
.x20{left:341.120000pt;}
.x5f{left:343.200000pt;}
.x1a{left:352.320000pt;}
.x40{left:357.186667pt;}
.x54{left:378.466667pt;}
.x38{left:381.666667pt;}
.x2d{left:384.386667pt;}
.x6a{left:387.266655pt;}
.x12{left:396.546655pt;}
.x4d{left:399.426667pt;}
.x3{left:404.408000pt;}
.x5d{left:407.680000pt;}
.x5e{left:409.440000pt;}
.x19{left:415.040000pt;}
.x42{left:423.266667pt;}
.x13{left:425.346667pt;}
.x10{left:426.626667pt;}
.x9{left:432.093321pt;}
.x55{left:438.493333pt;}
.x63{left:445.693321pt;}
.x64{left:451.773321pt;}
.x39{left:453.693333pt;}
.x65{left:456.893321pt;}
.x22{left:464.000000pt;}
.x25{left:478.173321pt;}
.x2e{left:480.413333pt;}
.x24{left:493.053321pt;}
.x44{left:501.213333pt;}
.x56{left:502.653333pt;}
.x4e{left:507.453333pt;}
.x2f{left:528.413333pt;}
.x3b{left:531.453333pt;}
.x68{left:536.480000pt;}
.x61{left:541.280000pt;}
.x69{left:546.173321pt;}
.x11{left:552.413333pt;}
.x50{left:555.453333pt;}
.x1f{left:566.720000pt;}
.x46{left:573.213333pt;}
.x30{left:576.413333pt;}
.x57{left:583.613333pt;}
.x3c{left:585.373333pt;}
.x28{left:604.960000pt;}
.x66{left:607.200000pt;}
.x51{left:609.413333pt;}
.x27{left:617.413321pt;}
.x31{left:624.453333pt;}
}




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