
    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_b45f2ac76888442f750b087f.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.910156;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_5ddd32f240d3c3e7c8f62e96.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.065430;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_1268ab5a14f3b4ae73ffd05f.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.064941;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_2cf7ee8ca8c7d59d062bd821.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.064941;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_1136abc68aad4f2770d419ca.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.064941;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_d9454765a5be8bc94fbad39e.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.435059;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_3d3fc28608837d2312a75d76.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_071131c81328f75a7665ea29.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.372070;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_97cef48006e4f910183cf4c1.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.850586;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_c30f36f687bcadd90ffa6918.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_4e1c09afa841bfd16904ec75.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.065430;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);}
.m3{transform:matrix(0.259100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259100,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,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);}
.v1{vertical-align:-20.880000px;}
.v4{vertical-align:-2.880000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:15.120000px;}
.v3{vertical-align:29.880000px;}
.ls25{letter-spacing:-1.386000px;}
.ls23{letter-spacing:-1.266000px;}
.ls2c{letter-spacing:-0.513600px;}
.ls13{letter-spacing:-0.375000px;}
.ls30{letter-spacing:-0.339600px;}
.ls32{letter-spacing:-0.318000px;}
.ls2a{letter-spacing:-0.243600px;}
.ls8{letter-spacing:-0.186600px;}
.ls12{letter-spacing:-0.162000px;}
.ls11{letter-spacing:-0.160800px;}
.ls27{letter-spacing:-0.153600px;}
.ls6{letter-spacing:-0.135000px;}
.lsc{letter-spacing:-0.121200px;}
.ls5{letter-spacing:-0.090000px;}
.lsa{letter-spacing:-0.086400px;}
.ls7{letter-spacing:-0.084600px;}
.ls35{letter-spacing:-0.078000px;}
.ls19{letter-spacing:-0.063600px;}
.ls1e{letter-spacing:-0.038880px;}
.ls34{letter-spacing:-0.037800px;}
.lsb{letter-spacing:-0.031800px;}
.ls18{letter-spacing:-0.014760px;}
.ls26{letter-spacing:-0.011160px;}
.ls24{letter-spacing:-0.007560px;}
.ls4{letter-spacing:0.000000px;}
.ls28{letter-spacing:0.020160px;}
.ls2b{letter-spacing:0.041760px;}
.ls1a{letter-spacing:0.043920px;}
.lse{letter-spacing:0.045360px;}
.lsf{letter-spacing:0.048960px;}
.ls22{letter-spacing:0.050760px;}
.ls1b{letter-spacing:0.051840px;}
.ls16{letter-spacing:0.064800px;}
.ls2e{letter-spacing:0.069600px;}
.lsd{letter-spacing:0.074160px;}
.ls15{letter-spacing:0.074400px;}
.ls2{letter-spacing:0.090000px;}
.ls1{letter-spacing:0.093600px;}
.ls33{letter-spacing:0.097800px;}
.ls1d{letter-spacing:0.116400px;}
.ls1c{letter-spacing:0.166200px;}
.ls10{letter-spacing:0.173400px;}
.ls14{letter-spacing:0.180000px;}
.ls29{letter-spacing:0.181200px;}
.ls2d{letter-spacing:0.199200px;}
.ls9{letter-spacing:0.345000px;}
.ls0{letter-spacing:0.360000px;}
.ls2f{letter-spacing:0.429600px;}
.ls21{letter-spacing:1.173600px;}
.ls20{letter-spacing:6.573600px;}
.ls3{letter-spacing:9.374760px;}
.ls31{letter-spacing:18.840000px;}
.ls1f{letter-spacing:25.293600px;}
.ls37{letter-spacing:47.726640px;}
.ls17{letter-spacing:63.566640px;}
.ls36{letter-spacing:80.846640px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc1{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.ws5{word-spacing:-14.493600px;}
.wsb{word-spacing:-14.372400px;}
.ws1e{word-spacing:-13.425600px;}
.ws1a{word-spacing:-13.407600px;}
.ws8{word-spacing:-13.399800px;}
.ws12{word-spacing:-13.392600px;}
.ws13{word-spacing:-13.342800px;}
.ws24{word-spacing:-13.324200px;}
.wsd{word-spacing:-13.300800px;}
.ws11{word-spacing:-13.278240px;}
.wsc{word-spacing:-13.275360px;}
.ws10{word-spacing:-13.270320px;}
.ws19{word-spacing:-13.246560px;}
.ws3{word-spacing:-13.226400px;}
.ws15{word-spacing:-13.218840px;}
.ws17{word-spacing:-13.215240px;}
.wse{word-spacing:-13.211640px;}
.ws25{word-spacing:-13.188600px;}
.ws1d{word-spacing:-13.187520px;}
.wsf{word-spacing:-13.162800px;}
.ws18{word-spacing:-13.072800px;}
.ws9{word-spacing:-13.065600px;}
.wsa{word-spacing:-13.064400px;}
.ws4{word-spacing:-13.039800px;}
.ws1b{word-spacing:-12.982800px;}
.ws22{word-spacing:-12.886800px;}
.ws1c{word-spacing:-12.712800px;}
.ws14{word-spacing:-11.960400px;}
.ws16{word-spacing:-11.840400px;}
.ws21{word-spacing:-10.963200px;}
.ws1f{word-spacing:-10.603200px;}
.ws20{word-spacing:-10.584360px;}
.ws1{word-spacing:-9.900000px;}
.ws0{word-spacing:-9.810000px;}
.ws2{word-spacing:-9.765000px;}
.ws23{word-spacing:-8.553600px;}
.ws7{word-spacing:0.000000px;}
.ws6{word-spacing:4.304880px;}
._14{margin-left:-5.942160px;}
._15{margin-left:-4.059000px;}
._b{margin-left:-2.934720px;}
._0{margin-left:-1.668120px;}
._1{width:1.174152px;}
._6{width:2.192448px;}
._c{width:3.430995px;}
._2{width:4.929600px;}
._3{width:5.952601px;}
._4{width:6.973800px;}
._a{width:8.536800px;}
._7{width:9.739200px;}
._5{width:11.723400px;}
._8{width:14.308800px;}
._9{width:15.343367px;}
._11{width:16.694473px;}
._d{width:18.757200px;}
._e{width:19.840802px;}
._12{width:21.915720px;}
._10{width:23.386680px;}
._13{width:24.794520px;}
._25{width:25.830840px;}
._17{width:30.601080px;}
._1c{width:33.546960px;}
._26{width:37.514880px;}
._27{width:38.536920px;}
._21{width:39.979800px;}
._1a{width:48.035880px;}
._1b{width:51.703200px;}
._22{width:71.302320px;}
._16{width:77.434560px;}
._23{width:85.190040px;}
._18{width:86.993640px;}
._1e{width:93.787200px;}
._f{width:114.049728px;}
._24{width:119.578680px;}
._1f{width:143.446320px;}
._19{width:183.245760px;}
._1d{width:184.448160px;}
._20{width:217.514160px;}
.fc2{color:transparent;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs0{font-size:38.880000px;}
.fs6{font-size:42.120000px;}
.fs3{font-size:45.000000px;}
.fs7{font-size:47.880000px;}
.fs2{font-size:54.000000px;}
.fs1{font-size:60.120000px;}
.fs5{font-size:65.880000px;}
.fs4{font-size:83.880000px;}
.y0{bottom:0.000000px;}
.y1a4{bottom:3.960000px;}
.y171{bottom:4.500000px;}
.y128{bottom:7.740000px;}
.y6c{bottom:7.830000px;}
.y9f{bottom:7.860000px;}
.y5e{bottom:7.920000px;}
.y5c{bottom:8.640000px;}
.y10c{bottom:8.730000px;}
.y15a{bottom:12.330000px;}
.y16a{bottom:12.420000px;}
.y1e7{bottom:16.020000px;}
.y1a1{bottom:19.440000px;}
.y1a3{bottom:22.140000px;}
.y1ae{bottom:22.230000px;}
.y174{bottom:22.320000px;}
.y184{bottom:22.770000px;}
.y180{bottom:23.220000px;}
.y170{bottom:23.310000px;}
.y177{bottom:25.110000px;}
.y6b{bottom:25.380000px;}
.y74{bottom:25.470000px;}
.y198{bottom:27.180000px;}
.y159{bottom:29.880000px;}
.y124{bottom:29.970000px;}
.y179{bottom:30.870000px;}
.y1e6{bottom:33.660000px;}
.y169{bottom:34.470000px;}
.y1a0{bottom:38.160000px;}
.y173{bottom:39.870000px;}
.y1ad{bottom:40.530000px;}
.y16f{bottom:42.030000px;}
.y17d{bottom:42.060000px;}
.y122{bottom:43.020000px;}
.y164{bottom:43.110000px;}
.y197{bottom:45.450000px;}
.y183{bottom:46.020000px;}
.y181{bottom:46.560000px;}
.y123{bottom:47.520000px;}
.y162{bottom:47.610000px;}
.y1e5{bottom:51.210000px;}
.y168{bottom:52.110000px;}
.y178{bottom:53.010000px;}
.y2{bottom:55.380000px;}
.y15c{bottom:56.070000px;}
.y19f{bottom:56.880000px;}
.y172{bottom:57.510000px;}
.y1ac{bottom:58.710000px;}
.y158{bottom:60.570000px;}
.y153{bottom:60.660000px;}
.y17f{bottom:60.780000px;}
.y16e{bottom:60.840000px;}
.y176{bottom:61.200000px;}
.y126{bottom:62.370000px;}
.y12b{bottom:62.460000px;}
.y196{bottom:63.630000px;}
.y182{bottom:64.740000px;}
.y121{bottom:65.070000px;}
.y161{bottom:65.160000px;}
.y17c{bottom:65.280000px;}
.y1e4{bottom:68.850000px;}
.y167{bottom:69.660000px;}
.y2c{bottom:74.190000px;}
.y16c{bottom:75.060000px;}
.y1ab{bottom:76.980000px;}
.y15b{bottom:78.120000px;}
.y152{bottom:78.210000px;}
.y175{bottom:79.470000px;}
.y16d{bottom:79.560000px;}
.y17e{bottom:79.590000px;}
.y19e{bottom:80.190000px;}
.y195{bottom:81.900000px;}
.y157{bottom:82.620000px;}
.y163{bottom:82.710000px;}
.y1{bottom:83.640000px;}
.y17b{bottom:84.090000px;}
.y160{bottom:87.210000px;}
.y1e3{bottom:90.900000px;}
.y166{bottom:91.350000px;}
.y2b{bottom:91.830000px;}
.y1aa{bottom:95.250000px;}
.y19d{bottom:98.910000px;}
.y194{bottom:100.170000px;}
.y156{bottom:100.260000px;}
.y151{bottom:100.350000px;}
.y15f{bottom:104.850000px;}
.y1e2{bottom:108.450000px;}
.y14f{bottom:113.400000px;}
.y1a9{bottom:113.520000px;}
.y150{bottom:117.900000px;}
.y149{bottom:118.290000px;}
.y193{bottom:118.350000px;}
.y85{bottom:118.740000px;}
.y19c{bottom:122.220000px;}
.y15e{bottom:122.400000px;}
.y1a2{bottom:123.690000px;}
.y1e1{bottom:126.090000px;}
.y29{bottom:126.390000px;}
.y154{bottom:126.480000px;}
.y18e{bottom:126.720000px;}
.y1d1{bottom:126.840000px;}
.y165{bottom:126.900000px;}
.y11c{bottom:131.070000px;}
.y1a8{bottom:131.700000px;}
.y14e{bottom:135.480000px;}
.y148{bottom:135.840000px;}
.y84{bottom:136.380000px;}
.y192{bottom:136.620000px;}
.y19b{bottom:140.940000px;}
.y1e0{bottom:143.640000px;}
.y28{bottom:143.940000px;}
.y1d0{bottom:144.390000px;}
.y5a{bottom:146.910000px;}
.y11b{bottom:148.620000px;}
.y18d{bottom:149.940000px;}
.y1a7{bottom:149.970000px;}
.y14d{bottom:153.120000px;}
.y83{bottom:153.930000px;}
.y191{bottom:154.890000px;}
.yac{bottom:156.360000px;}
.y19a{bottom:159.750000px;}
.y185{bottom:160.950000px;}
.y1df{bottom:161.280000px;}
.y27{bottom:161.580000px;}
.y59{bottom:164.460000px;}
.y1a6{bottom:168.240000px;}
.y18c{bottom:168.750000px;}
.y14c{bottom:170.670000px;}
.y1cf{bottom:171.030000px;}
.y147{bottom:171.480000px;}
.y82{bottom:171.570000px;}
.y190{bottom:173.160000px;}
.y26{bottom:179.130000px;}
.y199{bottom:182.970000px;}
.y11a{bottom:184.170000px;}
.y189{bottom:187.470000px;}
.y1ce{bottom:188.580000px;}
.y146{bottom:189.030000px;}
.ycf{bottom:190.290000px;}
.y58{bottom:191.100000px;}
.y18f{bottom:191.970000px;}
.yab{bottom:192.000000px;}
.y81{bottom:198.120000px;}
.yf4{bottom:199.740000px;}
.y119{bottom:201.810000px;}
.y18b{bottom:206.190000px;}
.yaa{bottom:209.550000px;}
.y188{bottom:210.690000px;}
.y25{bottom:214.680000px;}
.y1cd{bottom:215.220000px;}
.yf3{bottom:217.290000px;}
.y118{bottom:219.360000px;}
.y145{bottom:224.580000px;}
.y18a{bottom:225.000000px;}
.yce{bottom:225.840000px;}
.y57{bottom:226.650000px;}
.ya9{bottom:227.100000px;}
.y187{bottom:229.500000px;}
.y24{bottom:232.320000px;}
.y1cc{bottom:232.770000px;}
.y80{bottom:233.670000px;}
.y117{bottom:236.910000px;}
.y144{bottom:243.030000px;}
.y56{bottom:244.200000px;}
.ya8{bottom:244.740000px;}
.y186{bottom:248.220000px;}
.y23{bottom:249.870000px;}
.y7f{bottom:251.310000px;}
.yf2{bottom:252.930000px;}
.y116{bottom:254.550000px;}
.y1cb{bottom:259.320000px;}
.ycd{bottom:261.390000px;}
.y55{bottom:261.840000px;}
.ya7{bottom:262.290000px;}
.y22{bottom:267.510000px;}
.y7e{bottom:268.860000px;}
.yf1{bottom:270.480000px;}
.y1ca{bottom:276.960000px;}
.ycc{bottom:279.030000px;}
.y54{bottom:279.390000px;}
.y143{bottom:279.840000px;}
.ya6{bottom:279.930000px;}
.y21{bottom:285.060000px;}
.y7d{bottom:286.500000px;}
.yf0{bottom:288.030000px;}
.y115{bottom:289.380000px;}
.ycb{bottom:296.580000px;}
.y53{bottom:296.940000px;}
.y142{bottom:298.200000px;}
.y114{bottom:301.620000px;}
.y20{bottom:302.610000px;}
.y1c9{bottom:303.510000px;}
.y7c{bottom:304.050000px;}
.yef{bottom:305.670000px;}
.yca{bottom:314.220000px;}
.ya5{bottom:314.760000px;}
.y141{bottom:316.650000px;}
.y1f{bottom:320.250000px;}
.y7b{bottom:321.600000px;}
.yee{bottom:323.220000px;}
.y52{bottom:323.580000px;}
.ya4{bottom:326.910000px;}
.y113{bottom:328.890000px;}
.y1c8{bottom:330.150000px;}
.y1e{bottom:337.800000px;}
.y7a{bottom:339.240000px;}
.y1c7{bottom:347.700000px;}
.yc9{bottom:349.770000px;}
.y140{bottom:353.100000px;}
.ya3{bottom:354.270000px;}
.y1d{bottom:355.440000px;}
.y112{bottom:356.250000px;}
.yed{bottom:358.050000px;}
.y51{bottom:359.130000px;}
.y79{bottom:365.790000px;}
.yc8{bottom:367.320000px;}
.yec{bottom:370.290000px;}
.y13f{bottom:370.650000px;}
.y1c{bottom:372.990000px;}
.y1c6{bottom:374.610000px;}
.y50{bottom:376.770000px;}
.ya2{bottom:381.630000px;}
.y111{bottom:383.610000px;}
.y13e{bottom:388.290000px;}
.y1b{bottom:390.540000px;}
.y4f{bottom:394.320000px;}
.yeb{bottom:397.560000px;}
.y78{bottom:398.820000px;}
.yc7{bottom:402.960000px;}
.y13d{bottom:405.840000px;}
.y1a{bottom:408.180000px;}
.ya1{bottom:408.900000px;}
.y110{bottom:410.880000px;}
.yc6{bottom:420.510000px;}
.y4e{bottom:420.870000px;}
.y1c5{bottom:422.850000px;}
.yea{bottom:424.920000px;}
.y77{bottom:426.090000px;}
.y17a{bottom:428.700000px;}
.y13c{bottom:432.480000px;}
.y19{bottom:435.090000px;}
.ya0{bottom:436.260000px;}
.yc5{bottom:438.150000px;}
.y10f{bottom:438.240000px;}
.y1c4{bottom:440.490000px;}
.ye9{bottom:452.280000px;}
.y76{bottom:453.450000px;}
.yc4{bottom:455.700000px;}
.y4d{bottom:456.510000px;}
.y1c3{bottom:458.040000px;}
.y9e{bottom:463.620000px;}
.y10e{bottom:465.600000px;}
.y13b{bottom:468.030000px;}
.yc3{bottom:473.280000px;}
.y4c{bottom:474.090000px;}
.ye8{bottom:479.670000px;}
.y75{bottom:480.840000px;}
.y18{bottom:483.720000px;}
.y1c2{bottom:484.980000px;}
.y13a{bottom:485.610000px;}
.yc2{bottom:490.920000px;}
.y9d{bottom:491.010000px;}
.y4b{bottom:491.730000px;}
.y10d{bottom:492.990000px;}
.y139{bottom:503.250000px;}
.ye7{bottom:506.940000px;}
.y73{bottom:508.110000px;}
.y4a{bottom:509.280000px;}
.y9c{bottom:518.280000px;}
.y1e8{bottom:519.090000px;}
.y10b{bottom:520.260000px;}
.y17{bottom:520.710000px;}
.y138{bottom:520.800000px;}
.y1c1{bottom:521.970000px;}
.yc1{bottom:525.750000px;}
.y16b{bottom:527.730000px;}
.ye6{bottom:534.300000px;}
.y1de{bottom:535.560000px;}
.yc0{bottom:537.900000px;}
.y16{bottom:538.260000px;}
.y1c0{bottom:539.610000px;}
.y49{bottom:544.830000px;}
.y9b{bottom:545.640000px;}
.y15{bottom:555.900000px;}
.y137{bottom:556.440000px;}
.y1bf{bottom:557.160000px;}
.ye5{bottom:561.660000px;}
.y48{bottom:562.470000px;}
.ybf{bottom:565.260000px;}
.y10a{bottom:569.760000px;}
.y14{bottom:573.450000px;}
.y136{bottom:573.990000px;}
.y72{bottom:574.440000px;}
.y1be{bottom:574.800000px;}
.y47{bottom:580.020000px;}
.y109{bottom:587.400000px;}
.ye4{bottom:589.020000px;}
.y13{bottom:591.090000px;}
.y135{bottom:591.540000px;}
.y1bd{bottom:592.350000px;}
.ybe{bottom:592.620000px;}
.y9a{bottom:595.140000px;}
.y46{bottom:597.660000px;}
.y12{bottom:608.640000px;}
.y134{bottom:609.180000px;}
.y71{bottom:609.990000px;}
.y99{bottom:612.690000px;}
.y108{bottom:613.950000px;}
.y1bc{bottom:619.260000px;}
.ybd{bottom:619.980000px;}
.y15d{bottom:622.230000px;}
.y45{bottom:624.210000px;}
.y11{bottom:626.190000px;}
.y133{bottom:626.730000px;}
.y70{bottom:634.020000px;}
.ye3{bottom:638.430000px;}
.y98{bottom:639.330000px;}
.y10{bottom:643.830000px;}
.y132{bottom:644.370000px;}
.ybc{bottom:647.250000px;}
.y107{bottom:649.500000px;}
.ye2{bottom:656.070000px;}
.y1bb{bottom:656.610000px;}
.y44{bottom:659.760000px;}
.y6f{bottom:661.290000px;}
.yf{bottom:661.380000px;}
.y106{bottom:667.140000px;}
.ybb{bottom:674.610000px;}
.y97{bottom:674.880000px;}
.y43{bottom:677.400000px;}
.ye{bottom:679.020000px;}
.y131{bottom:679.200000px;}
.ye1{bottom:682.620000px;}
.y105{bottom:684.690000px;}
.y6e{bottom:688.650000px;}
.y12e{bottom:691.350000px;}
.y96{bottom:692.520000px;}
.y42{bottom:694.950000px;}
.yd{bottom:696.570000px;}
.yba{bottom:701.970000px;}
.y1ba{bottom:704.850000px;}
.y95{bottom:710.070000px;}
.yc{bottom:714.120000px;}
.ye0{bottom:715.200000px;}
.y6d{bottom:716.010000px;}
.y130{bottom:718.710000px;}
.y104{bottom:720.330000px;}
.y41{bottom:721.860000px;}
.y1b9{bottom:722.490000px;}
.y94{bottom:727.620000px;}
.yb9{bottom:729.240000px;}
.yb{bottom:731.760000px;}
.ydf{bottom:732.840000px;}
.y103{bottom:737.880000px;}
.y1dd{bottom:738.600000px;}
.y6a{bottom:743.370000px;}
.y12f{bottom:746.070000px;}
.y93{bottom:754.260000px;}
.y102{bottom:755.430000px;}
.yb8{bottom:756.600000px;}
.y1b8{bottom:758.040000px;}
.ya{bottom:758.670000px;}
.y155{bottom:764.160000px;}
.yde{bottom:768.390000px;}
.y40{bottom:770.190000px;}
.y92{bottom:771.810000px;}
.y101{bottom:773.070000px;}
.y12a{bottom:773.340000px;}
.y1b7{bottom:775.590000px;}
.ydd{bottom:785.940000px;}
.y1dc{bottom:786.930000px;}
.y3f{bottom:787.740000px;}
.y100{bottom:790.620000px;}
.y1b6{bottom:793.230000px;}
.y12d{bottom:800.700000px;}
.ydc{bottom:803.580000px;}
.y3e{bottom:805.290000px;}
.y9{bottom:805.380000px;}
.y91{bottom:807.450000px;}
.y69{bottom:809.610000px;}
.y1b5{bottom:810.780000px;}
.y1db{bottom:813.480000px;}
.ydb{bottom:821.130000px;}
.y3d{bottom:822.930000px;}
.y90{bottom:825.000000px;}
.yff{bottom:825.540000px;}
.y12c{bottom:828.060000px;}
.y1b4{bottom:828.420000px;}
.yfe{bottom:837.690000px;}
.yda{bottom:838.770000px;}
.y1da{bottom:840.030000px;}
.y3c{bottom:840.480000px;}
.y8{bottom:841.200000px;}
.y8f{bottom:842.550000px;}
.y68{bottom:845.250000px;}
.y1b3{bottom:845.970000px;}
.y125{bottom:855.420000px;}
.yd9{bottom:855.600000px;}
.y1d9{bottom:857.670000px;}
.y3b{bottom:858.030000px;}
.yb7{bottom:858.480000px;}
.y67{bottom:862.800000px;}
.y1b2{bottom:863.520000px;}
.yfd{bottom:865.050000px;}
.y8e{bottom:869.460000px;}
.yd8{bottom:869.640000px;}
.y3a{bottom:875.670000px;}
.yb6{bottom:876.030000px;}
.y7{bottom:877.200000px;}
.y66{bottom:880.350000px;}
.y1b1{bottom:881.160000px;}
.yd7{bottom:881.880000px;}
.y129{bottom:882.690000px;}
.y14b{bottom:883.860000px;}
.y1d8{bottom:884.220000px;}
.yfc{bottom:892.320000px;}
.y39{bottom:893.220000px;}
.yb5{bottom:893.670000px;}
.y65{bottom:897.990000px;}
.y1b0{bottom:898.710000px;}
.y1d7{bottom:901.860000px;}
.yd6{bottom:909.150000px;}
.y127{bottom:910.050000px;}
.y38{bottom:910.860000px;}
.yb4{bottom:911.220000px;}
.y6{bottom:913.200000px;}
.y64{bottom:915.540000px;}
.y8d{bottom:917.790000px;}
.yfb{bottom:919.680000px;}
.y1af{bottom:925.620000px;}
.y1d6{bottom:928.410000px;}
.yb3{bottom:928.860000px;}
.y63{bottom:933.090000px;}
.y8c{bottom:935.340000px;}
.yd5{bottom:936.510000px;}
.y120{bottom:937.410000px;}
.y1d5{bottom:945.960000px;}
.y37{bottom:946.410000px;}
.y5{bottom:949.290000px;}
.y62{bottom:950.730000px;}
.y8b{bottom:952.890000px;}
.yd4{bottom:963.870000px;}
.y36{bottom:963.960000px;}
.yfa{bottom:964.590000px;}
.y1a5{bottom:971.250000px;}
.y8a{bottom:971.340000px;}
.y1d4{bottom:972.600000px;}
.y61{bottom:977.280000px;}
.y35{bottom:981.600000px;}
.y4{bottom:987.630000px;}
.y89{bottom:988.890000px;}
.y1d3{bottom:990.150000px;}
.yd3{bottom:991.230000px;}
.yf9{bottom:991.950000px;}
.y34{bottom:999.150000px;}
.yb2{bottom:999.600000px;}
.y88{bottom:1006.440000px;}
.y1d2{bottom:1007.790000px;}
.y3{bottom:1012.320000px;}
.y60{bottom:1012.950000px;}
.y33{bottom:1016.820000px;}
.yb1{bottom:1017.180000px;}
.yd2{bottom:1018.530000px;}
.yf8{bottom:1019.340000px;}
.y5f{bottom:1030.500000px;}
.y32{bottom:1034.370000px;}
.yb0{bottom:1034.820000px;}
.y87{bottom:1042.920000px;}
.y11f{bottom:1043.370000px;}
.yd1{bottom:1045.890000px;}
.yf7{bottom:1046.610000px;}
.y31{bottom:1051.920000px;}
.yaf{bottom:1052.370000px;}
.y11e{bottom:1060.920000px;}
.y5d{bottom:1063.440000px;}
.y30{bottom:1069.560000px;}
.yae{bottom:1069.920000px;}
.yd0{bottom:1073.250000px;}
.y14a{bottom:1073.970000px;}
.y11d{bottom:1078.560000px;}
.y2f{bottom:1087.110000px;}
.yad{bottom:1087.560000px;}
.y5b{bottom:1090.800000px;}
.yf6{bottom:1096.110000px;}
.y86{bottom:1105.110000px;}
.yf5{bottom:1113.750000px;}
.y2e{bottom:1122.750000px;}
.y2d{bottom:1140.300000px;}
.y2a{bottom:1194.300000px;}
.hc{height:26.550000px;}
.he{height:26.580000px;}
.ha{height:26.640000px;}
.h9{height:27.360000px;}
.h13{height:27.450000px;}
.h2{height:30.022383px;}
.h1c{height:31.245117px;}
.h1f{height:36.450000px;}
.h3{height:38.100586px;}
.h11{height:40.539023px;}
.hb{height:44.100000px;}
.hd{height:44.190000px;}
.h1d{height:46.252909px;}
.h6{height:50.902383px;}
.h5{height:55.779258px;}
.h10{height:59.973223px;}
.hf{height:61.793886px;}
.h8{height:62.585859px;}
.h7{height:68.582109px;}
.h4{height:71.019492px;}
.h12{height:80.782383px;}
.h15{height:81.180000px;}
.h16{height:81.270000px;}
.h14{height:83.820000px;}
.h1a{height:93.780000px;}
.h1b{height:98.310000px;}
.h18{height:118.980000px;}
.h19{height:141.120000px;}
.h21{height:180.000000px;}
.h20{height:182.550000px;}
.h17{height:189.390000px;}
.h1e{height:266.940000px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.we{width:30.240000px;}
.wb{width:45.630000px;}
.w12{width:53.010000px;}
.wc{width:55.260000px;}
.w11{width:64.530000px;}
.w6{width:66.420000px;}
.w14{width:74.880000px;}
.w13{width:83.160000px;}
.w4{width:91.620000px;}
.w15{width:92.790000px;}
.w19{width:93.330000px;}
.w7{width:100.530000px;}
.w16{width:125.730000px;}
.w18{width:127.200000px;}
.w1a{width:136.800000px;}
.w8{width:141.060000px;}
.w1c{width:148.950000px;}
.w3{width:152.820000px;}
.w9{width:161.280000px;}
.w17{width:176.220000px;}
.w5{width:188.490000px;}
.wf{width:229.890000px;}
.w10{width:246.270000px;}
.wa{width:491.730000px;}
.wd{width:528.450000px;}
.w1b{width:606.030000px;}
.w2{width:893.159987px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x22{left:-8.550000px;}
.x23{left:-3.150000px;}
.x0{left:0.000000px;}
.x6{left:7.740000px;}
.x21{left:23.580000px;}
.x1{left:68.040000px;}
.x2{left:70.200000px;}
.xd{left:95.039987px;}
.x24{left:111.239987px;}
.x16{left:118.709987px;}
.x15{left:120.509987px;}
.xe{left:122.039987px;}
.x26{left:141.210000px;}
.x12{left:143.730000px;}
.xf{left:149.580000px;}
.x1d{left:162.300000px;}
.x3{left:202.799987px;}
.x9{left:210.900000px;}
.x5{left:229.440000px;}
.x1c{left:253.919987px;}
.xa{left:278.040000px;}
.x1e{left:288.750000px;}
.x17{left:299.460000px;}
.xb{left:379.290000px;}
.x7{left:382.980000px;}
.x1f{left:465.690000px;}
.x8{left:475.320000px;}
.xc{left:521.070000px;}
.x18{left:546.540000px;}
.x20{left:593.610000px;}
.x19{left:611.880000px;}
.x10{left:642.030000px;}
.x1a{left:665.610000px;}
.x13{left:672.900000px;}
.x25{left:675.510000px;}
.x11{left:688.380000px;}
.x14{left:719.250000px;}
.x1b{left:749.580000px;}
.x4{left:792.059987px;}
@media print{
.v1{vertical-align:-18.560000pt;}
.v4{vertical-align:-2.560000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:13.440000pt;}
.v3{vertical-align:26.560000pt;}
.ls25{letter-spacing:-1.232000pt;}
.ls23{letter-spacing:-1.125333pt;}
.ls2c{letter-spacing:-0.456533pt;}
.ls13{letter-spacing:-0.333333pt;}
.ls30{letter-spacing:-0.301867pt;}
.ls32{letter-spacing:-0.282667pt;}
.ls2a{letter-spacing:-0.216533pt;}
.ls8{letter-spacing:-0.165867pt;}
.ls12{letter-spacing:-0.144000pt;}
.ls11{letter-spacing:-0.142933pt;}
.ls27{letter-spacing:-0.136533pt;}
.ls6{letter-spacing:-0.120000pt;}
.lsc{letter-spacing:-0.107733pt;}
.ls5{letter-spacing:-0.080000pt;}
.lsa{letter-spacing:-0.076800pt;}
.ls7{letter-spacing:-0.075200pt;}
.ls35{letter-spacing:-0.069333pt;}
.ls19{letter-spacing:-0.056533pt;}
.ls1e{letter-spacing:-0.034560pt;}
.ls34{letter-spacing:-0.033600pt;}
.lsb{letter-spacing:-0.028267pt;}
.ls18{letter-spacing:-0.013120pt;}
.ls26{letter-spacing:-0.009920pt;}
.ls24{letter-spacing:-0.006720pt;}
.ls4{letter-spacing:0.000000pt;}
.ls28{letter-spacing:0.017920pt;}
.ls2b{letter-spacing:0.037120pt;}
.ls1a{letter-spacing:0.039040pt;}
.lse{letter-spacing:0.040320pt;}
.lsf{letter-spacing:0.043520pt;}
.ls22{letter-spacing:0.045120pt;}
.ls1b{letter-spacing:0.046080pt;}
.ls16{letter-spacing:0.057600pt;}
.ls2e{letter-spacing:0.061867pt;}
.lsd{letter-spacing:0.065920pt;}
.ls15{letter-spacing:0.066133pt;}
.ls2{letter-spacing:0.080000pt;}
.ls1{letter-spacing:0.083200pt;}
.ls33{letter-spacing:0.086933pt;}
.ls1d{letter-spacing:0.103467pt;}
.ls1c{letter-spacing:0.147733pt;}
.ls10{letter-spacing:0.154133pt;}
.ls14{letter-spacing:0.160000pt;}
.ls29{letter-spacing:0.161067pt;}
.ls2d{letter-spacing:0.177067pt;}
.ls9{letter-spacing:0.306667pt;}
.ls0{letter-spacing:0.320000pt;}
.ls2f{letter-spacing:0.381867pt;}
.ls21{letter-spacing:1.043200pt;}
.ls20{letter-spacing:5.843200pt;}
.ls3{letter-spacing:8.333120pt;}
.ls31{letter-spacing:16.746667pt;}
.ls1f{letter-spacing:22.483200pt;}
.ls37{letter-spacing:42.423680pt;}
.ls17{letter-spacing:56.503680pt;}
.ls36{letter-spacing:71.863680pt;}
.ws5{word-spacing:-12.883200pt;}
.wsb{word-spacing:-12.775467pt;}
.ws1e{word-spacing:-11.933867pt;}
.ws1a{word-spacing:-11.917867pt;}
.ws8{word-spacing:-11.910933pt;}
.ws12{word-spacing:-11.904533pt;}
.ws13{word-spacing:-11.860267pt;}
.ws24{word-spacing:-11.843733pt;}
.wsd{word-spacing:-11.822933pt;}
.ws11{word-spacing:-11.802880pt;}
.wsc{word-spacing:-11.800320pt;}
.ws10{word-spacing:-11.795840pt;}
.ws19{word-spacing:-11.774720pt;}
.ws3{word-spacing:-11.756800pt;}
.ws15{word-spacing:-11.750080pt;}
.ws17{word-spacing:-11.746880pt;}
.wse{word-spacing:-11.743680pt;}
.ws25{word-spacing:-11.723200pt;}
.ws1d{word-spacing:-11.722240pt;}
.wsf{word-spacing:-11.700267pt;}
.ws18{word-spacing:-11.620267pt;}
.ws9{word-spacing:-11.613867pt;}
.wsa{word-spacing:-11.612800pt;}
.ws4{word-spacing:-11.590933pt;}
.ws1b{word-spacing:-11.540267pt;}
.ws22{word-spacing:-11.454933pt;}
.ws1c{word-spacing:-11.300267pt;}
.ws14{word-spacing:-10.631467pt;}
.ws16{word-spacing:-10.524800pt;}
.ws21{word-spacing:-9.745067pt;}
.ws1f{word-spacing:-9.425067pt;}
.ws20{word-spacing:-9.408320pt;}
.ws1{word-spacing:-8.800000pt;}
.ws0{word-spacing:-8.720000pt;}
.ws2{word-spacing:-8.680000pt;}
.ws23{word-spacing:-7.603200pt;}
.ws7{word-spacing:0.000000pt;}
.ws6{word-spacing:3.826560pt;}
._14{margin-left:-5.281920pt;}
._15{margin-left:-3.608000pt;}
._b{margin-left:-2.608640pt;}
._0{margin-left:-1.482773pt;}
._1{width:1.043691pt;}
._6{width:1.948842pt;}
._c{width:3.049773pt;}
._2{width:4.381866pt;}
._3{width:5.291201pt;}
._4{width:6.198933pt;}
._a{width:7.588266pt;}
._7{width:8.657066pt;}
._5{width:10.420800pt;}
._8{width:12.718934pt;}
._9{width:13.638549pt;}
._11{width:14.839531pt;}
._d{width:16.673066pt;}
._e{width:17.636269pt;}
._12{width:19.480640pt;}
._10{width:20.788160pt;}
._13{width:22.039573pt;}
._25{width:22.960747pt;}
._17{width:27.200960pt;}
._1c{width:29.819520pt;}
._26{width:33.346560pt;}
._27{width:34.255040pt;}
._21{width:35.537600pt;}
._1a{width:42.698560pt;}
._1b{width:45.958400pt;}
._22{width:63.379840pt;}
._16{width:68.830720pt;}
._23{width:75.724480pt;}
._18{width:77.327680pt;}
._1e{width:83.366400pt;}
._f{width:101.377536pt;}
._24{width:106.292160pt;}
._1f{width:127.507840pt;}
._19{width:162.885120pt;}
._1d{width:163.953920pt;}
._20{width:193.345920pt;}
.fs0{font-size:34.560000pt;}
.fs6{font-size:37.440000pt;}
.fs3{font-size:40.000000pt;}
.fs7{font-size:42.560000pt;}
.fs2{font-size:48.000000pt;}
.fs1{font-size:53.440000pt;}
.fs5{font-size:58.560000pt;}
.fs4{font-size:74.560000pt;}
.y0{bottom:0.000000pt;}
.y1a4{bottom:3.520000pt;}
.y171{bottom:4.000000pt;}
.y128{bottom:6.880000pt;}
.y6c{bottom:6.960000pt;}
.y9f{bottom:6.986667pt;}
.y5e{bottom:7.040000pt;}
.y5c{bottom:7.680000pt;}
.y10c{bottom:7.760000pt;}
.y15a{bottom:10.960000pt;}
.y16a{bottom:11.040000pt;}
.y1e7{bottom:14.240000pt;}
.y1a1{bottom:17.280000pt;}
.y1a3{bottom:19.680000pt;}
.y1ae{bottom:19.760000pt;}
.y174{bottom:19.840000pt;}
.y184{bottom:20.240000pt;}
.y180{bottom:20.640000pt;}
.y170{bottom:20.720000pt;}
.y177{bottom:22.320000pt;}
.y6b{bottom:22.560000pt;}
.y74{bottom:22.640000pt;}
.y198{bottom:24.160000pt;}
.y159{bottom:26.560000pt;}
.y124{bottom:26.640000pt;}
.y179{bottom:27.440000pt;}
.y1e6{bottom:29.920000pt;}
.y169{bottom:30.640000pt;}
.y1a0{bottom:33.920000pt;}
.y173{bottom:35.440000pt;}
.y1ad{bottom:36.026667pt;}
.y16f{bottom:37.360000pt;}
.y17d{bottom:37.386667pt;}
.y122{bottom:38.240000pt;}
.y164{bottom:38.320000pt;}
.y197{bottom:40.400000pt;}
.y183{bottom:40.906667pt;}
.y181{bottom:41.386667pt;}
.y123{bottom:42.240000pt;}
.y162{bottom:42.320000pt;}
.y1e5{bottom:45.520000pt;}
.y168{bottom:46.320000pt;}
.y178{bottom:47.120000pt;}
.y2{bottom:49.226667pt;}
.y15c{bottom:49.840000pt;}
.y19f{bottom:50.560000pt;}
.y172{bottom:51.120000pt;}
.y1ac{bottom:52.186667pt;}
.y158{bottom:53.840000pt;}
.y153{bottom:53.920000pt;}
.y17f{bottom:54.026667pt;}
.y16e{bottom:54.080000pt;}
.y176{bottom:54.400000pt;}
.y126{bottom:55.440000pt;}
.y12b{bottom:55.520000pt;}
.y196{bottom:56.560000pt;}
.y182{bottom:57.546667pt;}
.y121{bottom:57.840000pt;}
.y161{bottom:57.920000pt;}
.y17c{bottom:58.026667pt;}
.y1e4{bottom:61.200000pt;}
.y167{bottom:61.920000pt;}
.y2c{bottom:65.946667pt;}
.y16c{bottom:66.720000pt;}
.y1ab{bottom:68.426667pt;}
.y15b{bottom:69.440000pt;}
.y152{bottom:69.520000pt;}
.y175{bottom:70.640000pt;}
.y16d{bottom:70.720000pt;}
.y17e{bottom:70.746667pt;}
.y19e{bottom:71.280000pt;}
.y195{bottom:72.800000pt;}
.y157{bottom:73.440000pt;}
.y163{bottom:73.520000pt;}
.y1{bottom:74.346667pt;}
.y17b{bottom:74.746667pt;}
.y160{bottom:77.520000pt;}
.y1e3{bottom:80.800000pt;}
.y166{bottom:81.200000pt;}
.y2b{bottom:81.626667pt;}
.y1aa{bottom:84.666667pt;}
.y19d{bottom:87.920000pt;}
.y194{bottom:89.040000pt;}
.y156{bottom:89.120000pt;}
.y151{bottom:89.200000pt;}
.y15f{bottom:93.200000pt;}
.y1e2{bottom:96.400000pt;}
.y14f{bottom:100.800000pt;}
.y1a9{bottom:100.906667pt;}
.y150{bottom:104.800000pt;}
.y149{bottom:105.146667pt;}
.y193{bottom:105.200000pt;}
.y85{bottom:105.546667pt;}
.y19c{bottom:108.640000pt;}
.y15e{bottom:108.800000pt;}
.y1a2{bottom:109.946667pt;}
.y1e1{bottom:112.080000pt;}
.y29{bottom:112.346667pt;}
.y154{bottom:112.426667pt;}
.y18e{bottom:112.640000pt;}
.y1d1{bottom:112.746667pt;}
.y165{bottom:112.800000pt;}
.y11c{bottom:116.506667pt;}
.y1a8{bottom:117.066667pt;}
.y14e{bottom:120.426667pt;}
.y148{bottom:120.746667pt;}
.y84{bottom:121.226667pt;}
.y192{bottom:121.440000pt;}
.y19b{bottom:125.280000pt;}
.y1e0{bottom:127.680000pt;}
.y28{bottom:127.946667pt;}
.y1d0{bottom:128.346667pt;}
.y5a{bottom:130.586667pt;}
.y11b{bottom:132.106667pt;}
.y18d{bottom:133.280000pt;}
.y1a7{bottom:133.306667pt;}
.y14d{bottom:136.106667pt;}
.y83{bottom:136.826667pt;}
.y191{bottom:137.680000pt;}
.yac{bottom:138.986667pt;}
.y19a{bottom:142.000000pt;}
.y185{bottom:143.066667pt;}
.y1df{bottom:143.360000pt;}
.y27{bottom:143.626667pt;}
.y59{bottom:146.186667pt;}
.y1a6{bottom:149.546667pt;}
.y18c{bottom:150.000000pt;}
.y14c{bottom:151.706667pt;}
.y1cf{bottom:152.026667pt;}
.y147{bottom:152.426667pt;}
.y82{bottom:152.506667pt;}
.y190{bottom:153.920000pt;}
.y26{bottom:159.226667pt;}
.y199{bottom:162.640000pt;}
.y11a{bottom:163.706667pt;}
.y189{bottom:166.640000pt;}
.y1ce{bottom:167.626667pt;}
.y146{bottom:168.026667pt;}
.ycf{bottom:169.146667pt;}
.y58{bottom:169.866667pt;}
.y18f{bottom:170.640000pt;}
.yab{bottom:170.666667pt;}
.y81{bottom:176.106667pt;}
.yf4{bottom:177.546667pt;}
.y119{bottom:179.386667pt;}
.y18b{bottom:183.280000pt;}
.yaa{bottom:186.266667pt;}
.y188{bottom:187.280000pt;}
.y25{bottom:190.826667pt;}
.y1cd{bottom:191.306667pt;}
.yf3{bottom:193.146667pt;}
.y118{bottom:194.986667pt;}
.y145{bottom:199.626667pt;}
.y18a{bottom:200.000000pt;}
.yce{bottom:200.746667pt;}
.y57{bottom:201.466667pt;}
.ya9{bottom:201.866667pt;}
.y187{bottom:204.000000pt;}
.y24{bottom:206.506667pt;}
.y1cc{bottom:206.906667pt;}
.y80{bottom:207.706667pt;}
.y117{bottom:210.586667pt;}
.y144{bottom:216.026667pt;}
.y56{bottom:217.066667pt;}
.ya8{bottom:217.546667pt;}
.y186{bottom:220.640000pt;}
.y23{bottom:222.106667pt;}
.y7f{bottom:223.386667pt;}
.yf2{bottom:224.826667pt;}
.y116{bottom:226.266667pt;}
.y1cb{bottom:230.506667pt;}
.ycd{bottom:232.346667pt;}
.y55{bottom:232.746667pt;}
.ya7{bottom:233.146667pt;}
.y22{bottom:237.786667pt;}
.y7e{bottom:238.986667pt;}
.yf1{bottom:240.426667pt;}
.y1ca{bottom:246.186667pt;}
.ycc{bottom:248.026667pt;}
.y54{bottom:248.346667pt;}
.y143{bottom:248.746667pt;}
.ya6{bottom:248.826667pt;}
.y21{bottom:253.386667pt;}
.y7d{bottom:254.666667pt;}
.yf0{bottom:256.026667pt;}
.y115{bottom:257.226667pt;}
.ycb{bottom:263.626667pt;}
.y53{bottom:263.946667pt;}
.y142{bottom:265.066667pt;}
.y114{bottom:268.106667pt;}
.y20{bottom:268.986667pt;}
.y1c9{bottom:269.786667pt;}
.y7c{bottom:270.266667pt;}
.yef{bottom:271.706667pt;}
.yca{bottom:279.306667pt;}
.ya5{bottom:279.786667pt;}
.y141{bottom:281.466667pt;}
.y1f{bottom:284.666667pt;}
.y7b{bottom:285.866667pt;}
.yee{bottom:287.306667pt;}
.y52{bottom:287.626667pt;}
.ya4{bottom:290.586667pt;}
.y113{bottom:292.346667pt;}
.y1c8{bottom:293.466667pt;}
.y1e{bottom:300.266667pt;}
.y7a{bottom:301.546667pt;}
.y1c7{bottom:309.066667pt;}
.yc9{bottom:310.906667pt;}
.y140{bottom:313.866667pt;}
.ya3{bottom:314.906667pt;}
.y1d{bottom:315.946667pt;}
.y112{bottom:316.666667pt;}
.yed{bottom:318.266667pt;}
.y51{bottom:319.226667pt;}
.y79{bottom:325.146667pt;}
.yc8{bottom:326.506667pt;}
.yec{bottom:329.146667pt;}
.y13f{bottom:329.466667pt;}
.y1c{bottom:331.546667pt;}
.y1c6{bottom:332.986667pt;}
.y50{bottom:334.906667pt;}
.ya2{bottom:339.226667pt;}
.y111{bottom:340.986667pt;}
.y13e{bottom:345.146667pt;}
.y1b{bottom:347.146667pt;}
.y4f{bottom:350.506667pt;}
.yeb{bottom:353.386667pt;}
.y78{bottom:354.506667pt;}
.yc7{bottom:358.186667pt;}
.y13d{bottom:360.746667pt;}
.y1a{bottom:362.826667pt;}
.ya1{bottom:363.466667pt;}
.y110{bottom:365.226667pt;}
.yc6{bottom:373.786667pt;}
.y4e{bottom:374.106667pt;}
.y1c5{bottom:375.866667pt;}
.yea{bottom:377.706667pt;}
.y77{bottom:378.746667pt;}
.y17a{bottom:381.066667pt;}
.y13c{bottom:384.426667pt;}
.y19{bottom:386.746667pt;}
.ya0{bottom:387.786667pt;}
.yc5{bottom:389.466667pt;}
.y10f{bottom:389.546667pt;}
.y1c4{bottom:391.546667pt;}
.ye9{bottom:402.026667pt;}
.y76{bottom:403.066667pt;}
.yc4{bottom:405.066667pt;}
.y4d{bottom:405.786667pt;}
.y1c3{bottom:407.146667pt;}
.y9e{bottom:412.106667pt;}
.y10e{bottom:413.866667pt;}
.y13b{bottom:416.026667pt;}
.yc3{bottom:420.693333pt;}
.y4c{bottom:421.413333pt;}
.ye8{bottom:426.373333pt;}
.y75{bottom:427.413333pt;}
.y18{bottom:429.973333pt;}
.y1c2{bottom:431.093333pt;}
.y13a{bottom:431.653333pt;}
.yc2{bottom:436.373333pt;}
.y9d{bottom:436.453333pt;}
.y4b{bottom:437.093333pt;}
.y10d{bottom:438.213333pt;}
.y139{bottom:447.333333pt;}
.ye7{bottom:450.613333pt;}
.y73{bottom:451.653333pt;}
.y4a{bottom:452.693333pt;}
.y9c{bottom:460.693333pt;}
.y1e8{bottom:461.413333pt;}
.y10b{bottom:462.453333pt;}
.y17{bottom:462.853333pt;}
.y138{bottom:462.933333pt;}
.y1c1{bottom:463.973333pt;}
.yc1{bottom:467.333333pt;}
.y16b{bottom:469.093333pt;}
.ye6{bottom:474.933333pt;}
.y1de{bottom:476.053333pt;}
.yc0{bottom:478.133333pt;}
.y16{bottom:478.453333pt;}
.y1c0{bottom:479.653333pt;}
.y49{bottom:484.293333pt;}
.y9b{bottom:485.013333pt;}
.y15{bottom:494.133333pt;}
.y137{bottom:494.613333pt;}
.y1bf{bottom:495.253333pt;}
.ye5{bottom:499.253333pt;}
.y48{bottom:499.973333pt;}
.ybf{bottom:502.453333pt;}
.y10a{bottom:506.453333pt;}
.y14{bottom:509.733333pt;}
.y136{bottom:510.213333pt;}
.y72{bottom:510.613333pt;}
.y1be{bottom:510.933333pt;}
.y47{bottom:515.573333pt;}
.y109{bottom:522.133333pt;}
.ye4{bottom:523.573333pt;}
.y13{bottom:525.413333pt;}
.y135{bottom:525.813333pt;}
.y1bd{bottom:526.533333pt;}
.ybe{bottom:526.773333pt;}
.y9a{bottom:529.013333pt;}
.y46{bottom:531.253333pt;}
.y12{bottom:541.013333pt;}
.y134{bottom:541.493333pt;}
.y71{bottom:542.213333pt;}
.y99{bottom:544.613333pt;}
.y108{bottom:545.733333pt;}
.y1bc{bottom:550.453333pt;}
.ybd{bottom:551.093333pt;}
.y15d{bottom:553.093333pt;}
.y45{bottom:554.853333pt;}
.y11{bottom:556.613333pt;}
.y133{bottom:557.093333pt;}
.y70{bottom:563.573333pt;}
.ye3{bottom:567.493333pt;}
.y98{bottom:568.293333pt;}
.y10{bottom:572.293333pt;}
.y132{bottom:572.773333pt;}
.ybc{bottom:575.333333pt;}
.y107{bottom:577.333333pt;}
.ye2{bottom:583.173333pt;}
.y1bb{bottom:583.653333pt;}
.y44{bottom:586.453333pt;}
.y6f{bottom:587.813333pt;}
.yf{bottom:587.893333pt;}
.y106{bottom:593.013333pt;}
.ybb{bottom:599.653333pt;}
.y97{bottom:599.893333pt;}
.y43{bottom:602.133333pt;}
.ye{bottom:603.573333pt;}
.y131{bottom:603.733333pt;}
.ye1{bottom:606.773333pt;}
.y105{bottom:608.613333pt;}
.y6e{bottom:612.133333pt;}
.y12e{bottom:614.533333pt;}
.y96{bottom:615.573333pt;}
.y42{bottom:617.733333pt;}
.yd{bottom:619.173333pt;}
.yba{bottom:623.973333pt;}
.y1ba{bottom:626.533333pt;}
.y95{bottom:631.173333pt;}
.yc{bottom:634.773333pt;}
.ye0{bottom:635.733333pt;}
.y6d{bottom:636.453333pt;}
.y130{bottom:638.853333pt;}
.y104{bottom:640.293333pt;}
.y41{bottom:641.653333pt;}
.y1b9{bottom:642.213333pt;}
.y94{bottom:646.773333pt;}
.yb9{bottom:648.213333pt;}
.yb{bottom:650.453333pt;}
.ydf{bottom:651.413333pt;}
.y103{bottom:655.893333pt;}
.y1dd{bottom:656.533333pt;}
.y6a{bottom:660.773333pt;}
.y12f{bottom:663.173333pt;}
.y93{bottom:670.453333pt;}
.y102{bottom:671.493333pt;}
.yb8{bottom:672.533333pt;}
.y1b8{bottom:673.813333pt;}
.ya{bottom:674.373333pt;}
.y155{bottom:679.253333pt;}
.yde{bottom:683.013333pt;}
.y40{bottom:684.613333pt;}
.y92{bottom:686.053333pt;}
.y101{bottom:687.173333pt;}
.y12a{bottom:687.413333pt;}
.y1b7{bottom:689.413333pt;}
.ydd{bottom:698.613333pt;}
.y1dc{bottom:699.493333pt;}
.y3f{bottom:700.213333pt;}
.y100{bottom:702.773333pt;}
.y1b6{bottom:705.093333pt;}
.y12d{bottom:711.733333pt;}
.ydc{bottom:714.293333pt;}
.y3e{bottom:715.813333pt;}
.y9{bottom:715.893333pt;}
.y91{bottom:717.733333pt;}
.y69{bottom:719.653333pt;}
.y1b5{bottom:720.693333pt;}
.y1db{bottom:723.093333pt;}
.ydb{bottom:729.893333pt;}
.y3d{bottom:731.493333pt;}
.y90{bottom:733.333333pt;}
.yff{bottom:733.813333pt;}
.y12c{bottom:736.053333pt;}
.y1b4{bottom:736.373333pt;}
.yfe{bottom:744.613333pt;}
.yda{bottom:745.573333pt;}
.y1da{bottom:746.693333pt;}
.y3c{bottom:747.093333pt;}
.y8{bottom:747.733333pt;}
.y8f{bottom:748.933333pt;}
.y68{bottom:751.333333pt;}
.y1b3{bottom:751.973333pt;}
.y125{bottom:760.373333pt;}
.yd9{bottom:760.533333pt;}
.y1d9{bottom:762.373333pt;}
.y3b{bottom:762.693333pt;}
.yb7{bottom:763.093333pt;}
.y67{bottom:766.933333pt;}
.y1b2{bottom:767.573333pt;}
.yfd{bottom:768.933333pt;}
.y8e{bottom:772.853333pt;}
.yd8{bottom:773.013333pt;}
.y3a{bottom:778.373333pt;}
.yb6{bottom:778.693333pt;}
.y7{bottom:779.733333pt;}
.y66{bottom:782.533333pt;}
.y1b1{bottom:783.253333pt;}
.yd7{bottom:783.893333pt;}
.y129{bottom:784.613333pt;}
.y14b{bottom:785.653333pt;}
.y1d8{bottom:785.973333pt;}
.yfc{bottom:793.173333pt;}
.y39{bottom:793.973333pt;}
.yb5{bottom:794.373333pt;}
.y65{bottom:798.213333pt;}
.y1b0{bottom:798.853333pt;}
.y1d7{bottom:801.653333pt;}
.yd6{bottom:808.133333pt;}
.y127{bottom:808.933333pt;}
.y38{bottom:809.653333pt;}
.yb4{bottom:809.973333pt;}
.y6{bottom:811.733333pt;}
.y64{bottom:813.813333pt;}
.y8d{bottom:815.813333pt;}
.yfb{bottom:817.493333pt;}
.y1af{bottom:822.773333pt;}
.y1d6{bottom:825.253333pt;}
.yb3{bottom:825.653333pt;}
.y63{bottom:829.413333pt;}
.y8c{bottom:831.413333pt;}
.yd5{bottom:832.453333pt;}
.y120{bottom:833.253333pt;}
.y1d5{bottom:840.853333pt;}
.y37{bottom:841.253333pt;}
.y5{bottom:843.813333pt;}
.y62{bottom:845.093333pt;}
.y8b{bottom:847.013333pt;}
.yd4{bottom:856.773333pt;}
.y36{bottom:856.853333pt;}
.yfa{bottom:857.413333pt;}
.y1a5{bottom:863.333333pt;}
.y8a{bottom:863.413333pt;}
.y1d4{bottom:864.533333pt;}
.y61{bottom:868.693333pt;}
.y35{bottom:872.533333pt;}
.y4{bottom:877.893333pt;}
.y89{bottom:879.013333pt;}
.y1d3{bottom:880.133333pt;}
.yd3{bottom:881.093333pt;}
.yf9{bottom:881.733333pt;}
.y34{bottom:888.133333pt;}
.yb2{bottom:888.533333pt;}
.y88{bottom:894.613333pt;}
.y1d2{bottom:895.813333pt;}
.y3{bottom:899.840000pt;}
.y60{bottom:900.400000pt;}
.y33{bottom:903.840000pt;}
.yb1{bottom:904.160000pt;}
.yd2{bottom:905.360000pt;}
.yf8{bottom:906.080000pt;}
.y5f{bottom:916.000000pt;}
.y32{bottom:919.440000pt;}
.yb0{bottom:919.840000pt;}
.y87{bottom:927.040000pt;}
.y11f{bottom:927.440000pt;}
.yd1{bottom:929.680000pt;}
.yf7{bottom:930.320000pt;}
.y31{bottom:935.040000pt;}
.yaf{bottom:935.440000pt;}
.y11e{bottom:943.040000pt;}
.y5d{bottom:945.280000pt;}
.y30{bottom:950.720000pt;}
.yae{bottom:951.040000pt;}
.yd0{bottom:954.000000pt;}
.y14a{bottom:954.640000pt;}
.y11d{bottom:958.720000pt;}
.y2f{bottom:966.320000pt;}
.yad{bottom:966.720000pt;}
.y5b{bottom:969.600000pt;}
.yf6{bottom:974.320000pt;}
.y86{bottom:982.320000pt;}
.yf5{bottom:990.000000pt;}
.y2e{bottom:998.000000pt;}
.y2d{bottom:1013.600000pt;}
.y2a{bottom:1061.600000pt;}
.hc{height:23.600000pt;}
.he{height:23.626667pt;}
.ha{height:23.680000pt;}
.h9{height:24.320000pt;}
.h13{height:24.400000pt;}
.h2{height:26.686562pt;}
.h1c{height:27.773438pt;}
.h1f{height:32.400000pt;}
.h3{height:33.867188pt;}
.h11{height:36.034687pt;}
.hb{height:39.200000pt;}
.hd{height:39.280000pt;}
.h1d{height:41.113697pt;}
.h6{height:45.246562pt;}
.h5{height:49.581562pt;}
.h10{height:53.309531pt;}
.hf{height:54.927899pt;}
.h8{height:55.631875pt;}
.h7{height:60.961875pt;}
.h4{height:63.128437pt;}
.h12{height:71.806563pt;}
.h15{height:72.160000pt;}
.h16{height:72.240000pt;}
.h14{height:74.506667pt;}
.h1a{height:83.360000pt;}
.h1b{height:87.386667pt;}
.h18{height:105.760000pt;}
.h19{height:125.440000pt;}
.h21{height:160.000000pt;}
.h20{height:162.266667pt;}
.h17{height:168.346667pt;}
.h1e{height:237.280000pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.we{width:26.880000pt;}
.wb{width:40.560000pt;}
.w12{width:47.120000pt;}
.wc{width:49.120000pt;}
.w11{width:57.360000pt;}
.w6{width:59.040000pt;}
.w14{width:66.560000pt;}
.w13{width:73.920000pt;}
.w4{width:81.440000pt;}
.w15{width:82.480000pt;}
.w19{width:82.960000pt;}
.w7{width:89.360000pt;}
.w16{width:111.760000pt;}
.w18{width:113.066667pt;}
.w1a{width:121.600000pt;}
.w8{width:125.386667pt;}
.w1c{width:132.400000pt;}
.w3{width:135.840000pt;}
.w9{width:143.360000pt;}
.w17{width:156.640000pt;}
.w5{width:167.546667pt;}
.wf{width:204.346667pt;}
.w10{width:218.906667pt;}
.wa{width:437.093333pt;}
.wd{width:469.733333pt;}
.w1b{width:538.693333pt;}
.w2{width:793.919988pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x22{left:-7.600000pt;}
.x23{left:-2.800000pt;}
.x0{left:0.000000pt;}
.x6{left:6.880000pt;}
.x21{left:20.960000pt;}
.x1{left:60.480000pt;}
.x2{left:62.400000pt;}
.xd{left:84.479988pt;}
.x24{left:98.879988pt;}
.x16{left:105.519988pt;}
.x15{left:107.119988pt;}
.xe{left:108.479988pt;}
.x26{left:125.520000pt;}
.x12{left:127.760000pt;}
.xf{left:132.960000pt;}
.x1d{left:144.266667pt;}
.x3{left:180.266655pt;}
.x9{left:187.466667pt;}
.x5{left:203.946667pt;}
.x1c{left:225.706655pt;}
.xa{left:247.146667pt;}
.x1e{left:256.666667pt;}
.x17{left:266.186667pt;}
.xb{left:337.146667pt;}
.x7{left:340.426667pt;}
.x1f{left:413.946667pt;}
.x8{left:422.506667pt;}
.xc{left:463.173333pt;}
.x18{left:485.813333pt;}
.x20{left:527.653333pt;}
.x19{left:543.893333pt;}
.x10{left:570.693333pt;}
.x1a{left:591.653333pt;}
.x13{left:598.133333pt;}
.x25{left:600.453333pt;}
.x11{left:611.893333pt;}
.x14{left:639.333333pt;}
.x1b{left:666.293333pt;}
.x4{left:704.053322pt;}
}




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