
    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_50a7cff37dfabfb5616965fc.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.003906;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_0a00da923362255ffd13cc3d.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_2d010e19dc735d557185c14e.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.088379;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_d42bc7d6e6705ecedac0bd82.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.088379;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_dfe6ade648713ab67ecd4f2f.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_4d6639831a08cc5314ed011d.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_cf5b54b838ee9f69dcdff9c4.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.739746;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_2d2bd45d03673158bdb3331f.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_7e8e98b7e12aa7ff594de572.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;}
.m2{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:15.120000px;}
.ls1{letter-spacing:-0.774000px;}
.ls14{letter-spacing:-0.750000px;}
.ls5{letter-spacing:-0.541200px;}
.ls2{letter-spacing:-0.334200px;}
.lsa{letter-spacing:-0.299400px;}
.ls7{letter-spacing:-0.259200px;}
.ls4{letter-spacing:-0.166800px;}
.ls12{letter-spacing:-0.097800px;}
.ls3{letter-spacing:-0.028800px;}
.ls0{letter-spacing:0.000000px;}
.ls11{letter-spacing:0.120000px;}
.ls6{letter-spacing:0.178800px;}
.ls13{letter-spacing:0.241800px;}
.lse{letter-spacing:0.265200px;}
.lsd{letter-spacing:1.180800px;}
.lsb{letter-spacing:4.060800px;}
.ls10{letter-spacing:7.585920px;}
.ls9{letter-spacing:11.980800px;}
.lsc{letter-spacing:24.940800px;}
.ls8{letter-spacing:31.345920px;}
.lsf{letter-spacing:42.865920px;}
.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;}
}
.ws6{word-spacing:-63.360000px;}
.wsa{word-spacing:-14.204400px;}
.wsc{word-spacing:-14.181000px;}
.ws4{word-spacing:-14.118000px;}
.ws2{word-spacing:-13.939200px;}
.ws7{word-spacing:-13.910400px;}
.wsb{word-spacing:-13.841400px;}
.ws1{word-spacing:-13.605000px;}
.ws3{word-spacing:-13.398000px;}
.ws0{word-spacing:-13.165200px;}
.ws8{word-spacing:-9.187200px;}
.ws9{word-spacing:-0.063360px;}
.ws5{word-spacing:0.000000px;}
._1c{margin-left:-2.316480px;}
._0{margin-left:-1.267200px;}
._2{width:1.233600px;}
._a{width:2.546880px;}
._10{width:3.592320px;}
._8{width:4.634880px;}
._7{width:5.747520px;}
._9{width:6.774720px;}
._b{width:8.110080px;}
._11{width:9.820800px;}
._15{width:11.083200px;}
._f{width:12.169920px;}
._14{width:14.952960px;}
._5{width:16.030080px;}
._6{width:17.233920px;}
._2f{width:18.247680px;}
._c{width:19.261440px;}
._4{width:20.268720px;}
._3{width:21.438720px;}
._1a{width:22.626000px;}
._1e{width:23.810400px;}
._1{width:25.060800px;}
._1b{width:26.894400px;}
._24{width:28.102080px;}
._13{width:29.715840px;}
._12{width:31.616640px;}
._17{width:32.757120px;}
._16{width:34.024320px;}
._30{width:35.671680px;}
._19{width:37.002240px;}
._18{width:38.206080px;}
._2e{width:39.663360px;}
._3c{width:41.627520px;}
._d{width:42.768000px;}
._e{width:44.225280px;}
._3a{width:45.302400px;}
._31{width:46.949760px;}
._2a{width:48.533760px;}
._2b{width:49.610880px;}
._22{width:51.258240px;}
._23{width:52.624320px;}
._1f{width:53.850240px;}
._3b{width:55.348800px;}
._26{width:57.214080px;}
._25{width:58.354560px;}
._39{width:59.748480px;}
._29{width:61.332480px;}
._32{width:63.169920px;}
._34{width:64.759680px;}
._28{width:68.618880px;}
._27{width:70.370880px;}
._21{width:71.371200px;}
._20{width:72.709440px;}
._33{width:80.150400px;}
._37{width:81.227520px;}
._3d{width:84.965760px;}
._36{width:94.533120px;}
._35{width:95.863680px;}
._38{width:99.982080px;}
._2d{width:120.384000px;}
._2c{width:121.611840px;}
._3e{width:371.479680px;}
._1d{width:1732.336800px;}
.fc1{color:transparent;}
.fc0{color:rgb(0,0,0);}
.fs2{font-size:30.240000px;}
.fs6{font-size:41.760000px;}
.fs5{font-size:48.240000px;}
.fs0{font-size:54.000000px;}
.fs1{font-size:63.360000px;}
.fs3{font-size:66.240000px;}
.fs7{font-size:84.240000px;}
.fs4{font-size:90.000000px;}
.fs9{font-size:95.760000px;}
.fsa{font-size:99.360000px;}
.fs8{font-size:149.760000px;}
.yad{bottom:-268.785000px;}
.ybe{bottom:-236.565000px;}
.yac{bottom:-230.625000px;}
.ybd{bottom:-198.405000px;}
.yab{bottom:-192.465000px;}
.ybc{bottom:-160.245000px;}
.yaa{bottom:-154.305000px;}
.ybb{bottom:-122.040000px;}
.ya9{bottom:-116.100000px;}
.yba{bottom:-83.880000px;}
.ya8{bottom:-77.760000px;}
.yb9{bottom:-45.720000px;}
.ya7{bottom:-39.600000px;}
.yb8{bottom:-7.560000px;}
.ya6{bottom:-1.440000px;}
.y0{bottom:0.000000px;}
.ycd{bottom:2.700000px;}
.y6{bottom:3.420000px;}
.y161{bottom:3.450000px;}
.yd2{bottom:4.860000px;}
.ycc{bottom:5.040000px;}
.yb7{bottom:11.520000px;}
.yca{bottom:13.320000px;}
.ycf{bottom:16.740000px;}
.ya5{bottom:17.640000px;}
.yce{bottom:19.440000px;}
.yd3{bottom:20.880000px;}
.yd5{bottom:21.780000px;}
.y105{bottom:21.810000px;}
.y142{bottom:21.825000px;}
.y5{bottom:21.960000px;}
.ydb{bottom:21.990000px;}
.yff{bottom:22.005000px;}
.y1e8{bottom:22.500000px;}
.y1a7{bottom:23.400000px;}
.ycb{bottom:23.580000px;}
.y134{bottom:24.120000px;}
.yb6{bottom:30.060000px;}
.ya4{bottom:36.000000px;}
.yd8{bottom:40.320000px;}
.y4{bottom:40.350000px;}
.y1b4{bottom:40.365000px;}
.y1d9{bottom:40.500000px;}
.y1d2{bottom:40.545000px;}
.yc5{bottom:40.905000px;}
.y1d7{bottom:41.040000px;}
.y1b1{bottom:41.760000px;}
.y1a6{bottom:41.940000px;}
.y133{bottom:42.660000px;}
.yd0{bottom:43.560000px;}
.yf5{bottom:43.740000px;}
.yc2{bottom:46.440000px;}
.yb5{bottom:48.600000px;}
.yd1{bottom:54.180000px;}
.ya3{bottom:54.540000px;}
.y9{bottom:55.440000px;}
.y8{bottom:58.320000px;}
.y1d0{bottom:58.680000px;}
.y1cd{bottom:58.710000px;}
.y1aa{bottom:58.860000px;}
.y3{bottom:58.890000px;}
.y1d6{bottom:59.400000px;}
.y1e7{bottom:59.580000px;}
.y1a5{bottom:60.300000px;}
.y1b0{bottom:60.345000px;}
.y132{bottom:61.020000px;}
.yc4{bottom:62.145000px;}
.yc1{bottom:67.725000px;}
.yb4{bottom:68.400000px;}
.ya2{bottom:74.340000px;}
.y1cf{bottom:77.220000px;}
.y1d5{bottom:77.940000px;}
.y19e{bottom:78.660000px;}
.y1a4{bottom:78.840000px;}
.y1af{bottom:78.885000px;}
.y156{bottom:79.560000px;}
.y15e{bottom:79.590000px;}
.yb3{bottom:85.860000px;}
.y23c{bottom:86.220000px;}
.y1c5{bottom:87.120000px;}
.y3e{bottom:87.840000px;}
.y8c{bottom:88.605000px;}
.yc0{bottom:88.965000px;}
.ya1{bottom:90.540000px;}
.yf4{bottom:92.700000px;}
.y79{bottom:95.400000px;}
.y1d4{bottom:96.480000px;}
.y19d{bottom:97.200000px;}
.y1ae{bottom:97.245000px;}
.y199{bottom:97.380000px;}
.y12f{bottom:97.560000px;}
.y155{bottom:97.920000px;}
.y1f3{bottom:98.100000px;}
.y15d{bottom:98.130000px;}
.y150{bottom:100.260000px;}
.y9b{bottom:101.520000px;}
.y23b{bottom:104.580000px;}
.y1c4{bottom:105.480000px;}
.y3d{bottom:106.200000px;}
.y16e{bottom:106.380000px;}
.yc8{bottom:107.100000px;}
.yb2{bottom:107.130000px;}
.y8b{bottom:107.145000px;}
.ya0{bottom:108.030000px;}
.yf3{bottom:111.060000px;}
.y78{bottom:113.760000px;}
.y21c{bottom:114.840000px;}
.y1e3{bottom:115.605000px;}
.y198{bottom:115.740000px;}
.y1dd{bottom:115.770000px;}
.y1ad{bottom:115.785000px;}
.y154{bottom:116.460000px;}
.y15c{bottom:116.490000px;}
.y1f2{bottom:116.640000px;}
.y14f{bottom:118.800000px;}
.y9a{bottom:120.060000px;}
.y23a{bottom:123.120000px;}
.y1c3{bottom:124.020000px;}
.y3c{bottom:124.740000px;}
.yfc{bottom:125.460000px;}
.yc7{bottom:125.640000px;}
.y8a{bottom:125.685000px;}
.yb1{bottom:128.370000px;}
.y9f{bottom:129.270000px;}
.yf2{bottom:129.600000px;}
.y77{bottom:132.300000px;}
.y19c{bottom:134.100000px;}
.y1a3{bottom:134.130000px;}
.y1ac{bottom:134.145000px;}
.y197{bottom:134.280000px;}
.y153{bottom:134.820000px;}
.y15b{bottom:135.030000px;}
.y12e{bottom:135.360000px;}
.y14e{bottom:137.160000px;}
.y99{bottom:138.420000px;}
.y239{bottom:141.480000px;}
.y1c2{bottom:142.560000px;}
.y3b{bottom:143.280000px;}
.y21b{bottom:143.820000px;}
.y89{bottom:144.045000px;}
.y1f1{bottom:145.620000px;}
.yf1{bottom:148.140000px;}
.yb0{bottom:149.610000px;}
.y9e{bottom:150.510000px;}
.y76{bottom:150.660000px;}
.y196{bottom:152.640000px;}
.y1a2{bottom:152.670000px;}
.y1e2{bottom:152.685000px;}
.y14d{bottom:155.700000px;}
.y98{bottom:156.960000px;}
.y238{bottom:160.020000px;}
.y1c1{bottom:160.920000px;}
.y3a{bottom:161.640000px;}
.y21a{bottom:162.360000px;}
.y88{bottom:162.585000px;}
.y1f0{bottom:164.160000px;}
.yf0{bottom:166.500000px;}
.y75{bottom:169.200000px;}
.yaf{bottom:170.850000px;}
.y1dc{bottom:171.030000px;}
.y1e1{bottom:171.045000px;}
.y195{bottom:171.180000px;}
.y9d{bottom:171.750000px;}
.y1cb{bottom:171.945000px;}
.y12d{bottom:172.980000px;}
.y14c{bottom:174.240000px;}
.y97{bottom:175.320000px;}
.y237{bottom:178.380000px;}
.y1c0{bottom:179.460000px;}
.y39{bottom:180.180000px;}
.y87{bottom:180.945000px;}
.yef{bottom:185.040000px;}
.y74{bottom:187.740000px;}
.y194{bottom:189.540000px;}
.y1ca{bottom:190.485000px;}
.y219{bottom:191.160000px;}
.y14b{bottom:192.600000px;}
.y1ef{bottom:192.960000px;}
.y96{bottom:193.860000px;}
.y236{bottom:196.920000px;}
.y1bf{bottom:197.820000px;}
.y38{bottom:198.540000px;}
.y86{bottom:199.485000px;}
.yee{bottom:203.400000px;}
.y73{bottom:206.100000px;}
.y193{bottom:208.080000px;}
.y1c9{bottom:208.845000px;}
.y218{bottom:209.730000px;}
.y12c{bottom:210.630000px;}
.y14a{bottom:211.170000px;}
.y1ee{bottom:211.530000px;}
.y95{bottom:212.430000px;}
.y1be{bottom:216.390000px;}
.y37{bottom:217.110000px;}
.y235{bottom:217.470000px;}
.y85{bottom:217.845000px;}
.yed{bottom:221.970000px;}
.y72{bottom:224.670000px;}
.y192{bottom:226.650000px;}
.y1c8{bottom:227.385000px;}
.y149{bottom:229.530000px;}
.y94{bottom:230.790000px;}
.y1bd{bottom:234.750000px;}
.y36{bottom:235.470000px;}
.y16d{bottom:235.650000px;}
.y84{bottom:236.385000px;}
.y217{bottom:238.710000px;}
.yec{bottom:240.510000px;}
.y71{bottom:243.030000px;}
.y191{bottom:245.010000px;}
.y1c7{bottom:245.775000px;}
.y234{bottom:246.450000px;}
.y148{bottom:248.070000px;}
.y12b{bottom:248.430000px;}
.y93{bottom:249.330000px;}
.y1bc{bottom:253.290000px;}
.y35{bottom:254.010000px;}
.y83{bottom:254.925000px;}
.y216{bottom:257.250000px;}
.yeb{bottom:258.870000px;}
.y1ed{bottom:259.050000px;}
.y70{bottom:261.570000px;}
.y190{bottom:263.550000px;}
.y147{bottom:263.910000px;}
.y92{bottom:267.690000px;}
.y1bb{bottom:271.830000px;}
.y34{bottom:272.550000px;}
.y82{bottom:273.285000px;}
.y233{bottom:275.430000px;}
.yea{bottom:277.410000px;}
.y6f{bottom:279.930000px;}
.y18f{bottom:281.910000px;}
.y12a{bottom:286.050000px;}
.y91{bottom:286.230000px;}
.y1ba{bottom:290.190000px;}
.y33{bottom:290.910000px;}
.y81{bottom:291.825000px;}
.ye9{bottom:295.770000px;}
.y6e{bottom:298.470000px;}
.y18e{bottom:300.450000px;}
.y146{bottom:301.530000px;}
.y232{bottom:304.230000px;}
.y90{bottom:304.590000px;}
.y1ec{bottom:306.390000px;}
.y1b9{bottom:308.730000px;}
.y32{bottom:309.450000px;}
.y80{bottom:310.215000px;}
.ye8{bottom:314.310000px;}
.y6d{bottom:317.010000px;}
.y18d{bottom:318.990000px;}
.y8f{bottom:323.130000px;}
.y129{bottom:323.670000px;}
.y1d3{bottom:324.570000px;}
.y1eb{bottom:324.930000px;}
.y1e6{bottom:325.290000px;}
.y1b8{bottom:327.090000px;}
.y31{bottom:327.810000px;}
.y16c{bottom:327.990000px;}
.y7f{bottom:328.755000px;}
.ye7{bottom:332.670000px;}
.y215{bottom:333.570000px;}
.y6c{bottom:335.370000px;}
.y231{bottom:335.550000px;}
.y18c{bottom:337.350000px;}
.y145{bottom:339.150000px;}
.y8e{bottom:341.670000px;}
.y1ea{bottom:343.290000px;}
.y1b7{bottom:345.630000px;}
.y30{bottom:346.350000px;}
.y7e{bottom:347.295000px;}
.ye6{bottom:351.210000px;}
.y214{bottom:352.110000px;}
.y6b{bottom:353.910000px;}
.y18b{bottom:355.890000px;}
.y8d{bottom:360.030000px;}
.y128{bottom:361.470000px;}
.y1b6{bottom:364.170000px;}
.y2f{bottom:364.890000px;}
.y7d{bottom:365.655000px;}
.ye5{bottom:369.750000px;}
.y213{bottom:370.470000px;}
.y6a{bottom:372.270000px;}
.y18a{bottom:374.250000px;}
.y7b{bottom:375.150000px;}
.y144{bottom:376.950000px;}
.y230{bottom:379.470000px;}
.y1d8{bottom:380.550000px;}
.y1e9{bottom:381.450000px;}
.y1b5{bottom:382.530000px;}
.y2e{bottom:383.250000px;}
.y7c{bottom:384.195000px;}
.ye4{bottom:388.110000px;}
.y69{bottom:390.810000px;}
.y189{bottom:392.790000px;}
.ybf{bottom:395.670000px;}
.y1ab{bottom:398.370000px;}
.y127{bottom:399.090000px;}
.y212{bottom:399.450000px;}
.y2d{bottom:401.790000px;}
.ye3{bottom:406.650000px;}
.y68{bottom:409.350000px;}
.y188{bottom:411.150000px;}
.yc3{bottom:411.870000px;}
.y143{bottom:414.570000px;}
.y211{bottom:417.990000px;}
.y2c{bottom:420.150000px;}
.yfa{bottom:422.490000px;}
.y22f{bottom:423.390000px;}
.ye2{bottom:425.010000px;}
.y67{bottom:427.710000px;}
.y187{bottom:429.690000px;}
.y141{bottom:433.830000px;}
.y1b3{bottom:435.990000px;}
.y126{bottom:436.710000px;}
.y1e0{bottom:437.610000px;}
.y16b{bottom:438.690000px;}
.y2b{bottom:442.470000px;}
.ye1{bottom:443.550000px;}
.y66{bottom:446.295000px;}
.y210{bottom:446.835000px;}
.y186{bottom:448.275000px;}
.y16a{bottom:457.275000px;}
.ye0{bottom:459.435000px;}
.yf9{bottom:460.155000px;}
.y2a{bottom:460.875000px;}
.y65{bottom:464.655000px;}
.y20f{bottom:465.375000px;}
.y185{bottom:466.635000px;}
.y22e{bottom:467.355000px;}
.y140{bottom:471.495000px;}
.y125{bottom:474.555000px;}
.y169{bottom:475.635000px;}
.y29{bottom:479.415000px;}
.y184{bottom:482.475000px;}
.y64{bottom:483.195000px;}
.y20e{bottom:483.915000px;}
.y1b2{bottom:492.195000px;}
.y1d1{bottom:492.915000px;}
.y1e5{bottom:493.635000px;}
.y168{bottom:494.175000px;}
.ydf{bottom:497.055000px;}
.y28{bottom:497.775000px;}
.y63{bottom:501.555000px;}
.y183{bottom:501.735000px;}
.y13f{bottom:509.115000px;}
.y22d{bottom:511.455000px;}
.y167{bottom:512.535000px;}
.y20d{bottom:512.715000px;}
.y124{bottom:515.595000px;}
.y27{bottom:516.315000px;}
.y62{bottom:520.095000px;}
.y182{bottom:520.815000px;}
.y1ce{bottom:530.715000px;}
.y166{bottom:531.075000px;}
.y20c{bottom:531.255000px;}
.y123{bottom:534.135000px;}
.yde{bottom:534.675000px;}
.y26{bottom:534.855000px;}
.y61{bottom:538.635000px;}
.y181{bottom:540.075000px;}
.y13e{bottom:546.915000px;}
.y1a1{bottom:548.355000px;}
.y165{bottom:549.615000px;}
.y1e4{bottom:549.795000px;}
.y122{bottom:552.495000px;}
.y25{bottom:553.215000px;}
.y22c{bottom:555.375000px;}
.y60{bottom:556.995000px;}
.y180{bottom:559.335000px;}
.y20b{bottom:560.235000px;}
.y164{bottom:567.975000px;}
.y121{bottom:571.035000px;}
.y24{bottom:571.755000px;}
.ydd{bottom:572.475000px;}
.y9c{bottom:573.915000px;}
.y5f{bottom:575.535000px;}
.yae{bottom:576.615000px;}
.y17f{bottom:578.595000px;}
.y20a{bottom:578.775000px;}
.y13d{bottom:584.535000px;}
.y163{bottom:586.515000px;}
.y120{bottom:589.395000px;}
.y23{bottom:590.115000px;}
.y5e{bottom:593.895000px;}
.y17e{bottom:597.675000px;}
.y22b{bottom:599.295000px;}
.y15a{bottom:602.175000px;}
.y1a9{bottom:604.515000px;}
.y209{bottom:607.575000px;}
.y11f{bottom:607.935000px;}
.y22{bottom:608.655000px;}
.y106{bottom:609.375000px;}
.y5d{bottom:612.435000px;}
.y17d{bottom:616.935000px;}
.y13c{bottom:622.155000px;}
.y1cc{bottom:623.775000px;}
.y1db{bottom:624.495000px;}
.y208{bottom:626.115000px;}
.y11e{bottom:626.475000px;}
.y21{bottom:627.195000px;}
.ydc{bottom:628.635000px;}
.y5c{bottom:630.975000px;}
.y17c{bottom:636.195000px;}
.y162{bottom:639.975000px;}
.y22a{bottom:643.215000px;}
.y11d{bottom:644.835000px;}
.y20{bottom:645.555000px;}
.y5b{bottom:649.335000px;}
.y207{bottom:655.095000px;}
.y17b{bottom:658.875000px;}
.y1df{bottom:662.115000px;}
.y11c{bottom:663.375000px;}
.y1f{bottom:664.095000px;}
.y104{bottom:665.535000px;}
.yda{bottom:666.255000px;}
.y5a{bottom:667.875000px;}
.y206{bottom:673.635000px;}
.y17a{bottom:677.235000px;}
.y160{bottom:677.595000px;}
.y1a8{bottom:679.035000px;}
.y11b{bottom:681.765000px;}
.y1e{bottom:682.485000px;}
.yf8{bottom:684.825000px;}
.y59{bottom:686.265000px;}
.y205{bottom:692.025000px;}
.y179{bottom:695.805000px;}
.y229{bottom:697.785000px;}
.y1c6{bottom:698.325000px;}
.y11a{bottom:700.305000px;}
.y1d{bottom:701.025000px;}
.y103{bottom:703.185000px;}
.yd9{bottom:703.905000px;}
.y58{bottom:704.805000px;}
.y204{bottom:710.565000px;}
.y178{bottom:711.645000px;}
.y15f{bottom:715.245000px;}
.y19b{bottom:716.865000px;}
.y119{bottom:718.665000px;}
.y1c{bottom:719.385000px;}
.yf7{bottom:722.445000px;}
.y57{bottom:723.165000px;}
.y228{bottom:731.445000px;}
.y1de{bottom:736.845000px;}
.y118{bottom:737.205000px;}
.y1b{bottom:737.925000px;}
.y203{bottom:739.545000px;}
.y102{bottom:740.805000px;}
.y56{bottom:741.705000px;}
.y177{bottom:749.265000px;}
.y227{bottom:749.985000px;}
.y152{bottom:753.045000px;}
.y117{bottom:755.745000px;}
.y1a{bottom:756.465000px;}
.yf6{bottom:760.065000px;}
.y55{bottom:760.245000px;}
.y202{bottom:768.345000px;}
.y1a0{bottom:773.025000px;}
.y116{bottom:774.105000px;}
.y19{bottom:774.825000px;}
.y7a{bottom:778.065000px;}
.y54{bottom:778.605000px;}
.y226{bottom:778.965000px;}
.y176{bottom:786.885000px;}
.y159{bottom:790.665000px;}
.y115{bottom:792.645000px;}
.y18{bottom:793.365000px;}
.y53{bottom:797.145000px;}
.y225{bottom:797.505000px;}
.yd7{bottom:797.865000px;}
.y114{bottom:811.005000px;}
.y1da{bottom:811.365000px;}
.y17{bottom:811.725000px;}
.y52{bottom:815.505000px;}
.y201{bottom:815.865000px;}
.y101{bottom:816.225000px;}
.y175{bottom:824.685000px;}
.y158{bottom:828.285000px;}
.y19f{bottom:829.185000px;}
.y113{bottom:829.545000px;}
.y16{bottom:830.265000px;}
.y51{bottom:834.045000px;}
.y200{bottom:834.405000px;}
.y224{bottom:844.845000px;}
.y112{bottom:848.085000px;}
.y15{bottom:850.965000px;}
.y50{bottom:852.585000px;}
.yd6{bottom:853.845000px;}
.y174{bottom:862.305000px;}
.y1ff{bottom:863.205000px;}
.y223{bottom:863.385000px;}
.y157{bottom:866.085000px;}
.y111{bottom:866.445000px;}
.y14{bottom:869.505000px;}
.y4f{bottom:870.945000px;}
.y100{bottom:872.385000px;}
.y1fe{bottom:881.745000px;}
.y110{bottom:884.985000px;}
.y19a{bottom:885.345000px;}
.y13{bottom:887.865000px;}
.y4e{bottom:889.485000px;}
.yd4{bottom:891.645000px;}
.y222{bottom:892.185000px;}
.y173{bottom:899.925000px;}
.y10f{bottom:903.345000px;}
.y151{bottom:903.705000px;}
.y12{bottom:906.405000px;}
.y4d{bottom:907.845000px;}
.yfe{bottom:910.005000px;}
.y1fd{bottom:910.725000px;}
.y10e{bottom:921.930000px;}
.y11{bottom:924.810000px;}
.y4c{bottom:926.430000px;}
.yc6{bottom:929.310000px;}
.y172{bottom:937.770000px;}
.y221{bottom:939.750000px;}
.y10d{bottom:940.290000px;}
.y10{bottom:943.350000px;}
.y4b{bottom:944.790000px;}
.yfb{bottom:947.850000px;}
.y1fc{bottom:958.110000px;}
.y220{bottom:958.290000px;}
.y10c{bottom:958.830000px;}
.yf{bottom:961.890000px;}
.y4a{bottom:963.330000px;}
.yc9{bottom:971.970000px;}
.y10b{bottom:974.670000px;}
.y171{bottom:975.390000px;}
.y1fb{bottom:976.650000px;}
.y13b{bottom:977.370000px;}
.ye{bottom:980.250000px;}
.y49{bottom:981.870000px;}
.y21f{bottom:987.090000px;}
.yfd{bottom:990.510000px;}
.y10a{bottom:993.930000px;}
.y13a{bottom:995.730000px;}
.yd{bottom:998.790000px;}
.y48{bottom:1000.230000px;}
.y1fa{bottom:1005.630000px;}
.y109{bottom:1013.010000px;}
.y139{bottom:1014.270000px;}
.yc{bottom:1018.770000px;}
.y1f9{bottom:1024.170000px;}
.y108{bottom:1032.270000px;}
.y138{bottom:1032.630000px;}
.y21e{bottom:1034.610000px;}
.y47{bottom:1037.130000px;}
.yb{bottom:1045.230000px;}
.y131{bottom:1048.470000px;}
.y170{bottom:1050.810000px;}
.y107{bottom:1051.530000px;}
.y1f8{bottom:1052.970000px;}
.y21d{bottom:1053.150000px;}
.y46{bottom:1055.670000px;}
.y137{bottom:1067.730000px;}
.y16f{bottom:1069.890000px;}
.y1f7{bottom:1071.510000px;}
.y45{bottom:1074.210000px;}
.ya{bottom:1081.950000px;}
.y136{bottom:1086.990000px;}
.y44{bottom:1092.570000px;}
.y1f6{bottom:1100.490000px;}
.y135{bottom:1106.070000px;}
.y7{bottom:1110.930000px;}
.y43{bottom:1111.110000px;}
.y2{bottom:1118.130000px;}
.y1f5{bottom:1119.030000px;}
.y130{bottom:1125.330000px;}
.y42{bottom:1129.470000px;}
.y1f4{bottom:1147.830000px;}
.y41{bottom:1148.010000px;}
.y40{bottom:1166.400000px;}
.y1{bottom:1191.960000px;}
.y3f{bottom:1193.400000px;}
.h8{height:18.360000px;}
.h1b{height:18.540000px;}
.h6{height:30.077578px;}
.h17{height:36.900000px;}
.h14{height:36.936000px;}
.h15{height:37.080000px;}
.h1a{height:37.116000px;}
.h13{height:41.940000px;}
.hd{height:41.974453px;}
.h4{height:53.645625px;}
.h2{height:53.709961px;}
.h5{height:55.130625px;}
.h16{height:55.260000px;}
.h18{height:55.296000px;}
.h19{height:55.440000px;}
.h23{height:55.476000px;}
.ha{height:57.636562px;}
.h7{height:65.884219px;}
.h2b{height:73.298672px;}
.h21{height:73.800000px;}
.h3{height:73.836000px;}
.h25{height:73.980000px;}
.h2a{height:74.016000px;}
.h1c{height:76.140000px;}
.h9{height:76.201172px;}
.h2d{height:83.322422px;}
.h2e{height:86.454844px;}
.h27{height:92.340000px;}
.h10{height:96.876000px;}
.h12{height:97.920000px;}
.h28{height:111.420000px;}
.hf{height:129.276000px;}
.h2c{height:130.308750px;}
.h11{height:140.580000px;}
.h22{height:149.256000px;}
.h1d{height:149.940000px;}
.h1e{height:150.150000px;}
.h1f{height:167.580000px;}
.h20{height:167.790000px;}
.he{height:185.970000px;}
.h24{height:186.120000px;}
.h29{height:186.150000px;}
.hc{height:186.870000px;}
.h26{height:260.895000px;}
.hb{height:399.135000px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.w5{width:26.136000px;}
.wc{width:47.016000px;}
.we{width:47.160000px;}
.wf{width:47.196000px;}
.w14{width:47.340000px;}
.wd{width:50.580000px;}
.w13{width:52.020000px;}
.w10{width:53.820000px;}
.w20{width:60.300000px;}
.w28{width:60.480000px;}
.w2a{width:67.716000px;}
.w22{width:72.900000px;}
.w2e{width:73.620000px;}
.w18{width:73.656000px;}
.w23{width:74.016000px;}
.w25{width:84.276000px;}
.w19{width:84.420000px;}
.w2c{width:96.696000px;}
.w1d{width:104.436000px;}
.w29{width:106.776000px;}
.w27{width:108.576000px;}
.w1f{width:110.196000px;}
.w1c{width:112.356000px;}
.w15{width:120.276000px;}
.w11{width:122.076000px;}
.w24{width:131.976000px;}
.w21{width:142.596000px;}
.w31{width:156.990000px;}
.w34{width:165.270000px;}
.w37{width:171.390000px;}
.w2f{width:177.510000px;}
.w32{width:203.250000px;}
.w35{width:204.150000px;}
.w1a{width:217.515000px;}
.wa{width:249.690000px;}
.w1e{width:254.370000px;}
.w26{width:296.850000px;}
.w7{width:320.070000px;}
.w9{width:331.770000px;}
.w8{width:338.070000px;}
.w17{width:340.590000px;}
.w36{width:341.175000px;}
.wb{width:344.910000px;}
.w12{width:345.090000px;}
.w33{width:348.195000px;}
.w16{width:349.950000px;}
.w3{width:364.605000px;}
.w4{width:366.735000px;}
.w30{width:382.035000px;}
.w2d{width:454.035000px;}
.w2b{width:500.115000px;}
.w1b{width:500.475000px;}
.w6{width:716.910000px;}
.w2{width:893.159987px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x6{left:5.940000px;}
.x11{left:8.100000px;}
.x2b{left:9.360000px;}
.x14{left:10.800000px;}
.x19{left:12.600000px;}
.x4b{left:14.040000px;}
.x38{left:15.120000px;}
.x2a{left:16.200000px;}
.x4c{left:17.820000px;}
.x67{left:19.440000px;}
.x49{left:20.700000px;}
.x21{left:22.890000px;}
.x3f{left:25.020000px;}
.x1c{left:26.460000px;}
.x42{left:27.540000px;}
.x40{left:29.340000px;}
.x28{left:31.680000px;}
.x41{left:33.120000px;}
.x3c{left:34.230000px;}
.x59{left:35.865000px;}
.x50{left:37.485000px;}
.x47{left:39.960000px;}
.x22{left:41.790000px;}
.x2c{left:44.280000px;}
.x29{left:45.540000px;}
.x3b{left:46.845000px;}
.x5d{left:47.880000px;}
.x18{left:48.960000px;}
.x68{left:54.900000px;}
.x3a{left:56.385000px;}
.x69{left:58.860000px;}
.x64{left:65.160000px;}
.x2{left:81.000000px;}
.x3d{left:82.259987px;}
.x1e{left:85.355987px;}
.x57{left:86.435987px;}
.xc{left:88.235987px;}
.x13{left:94.716000px;}
.x1a{left:100.434000px;}
.x4{left:102.420000px;}
.x1d{left:108.035987px;}
.x4d{left:112.355987px;}
.x5{left:119.880000px;}
.x10{left:135.035987px;}
.x8{left:138.815987px;}
.x56{left:148.494000px;}
.x9{left:154.469987px;}
.x15{left:160.014000px;}
.x17{left:169.065000px;}
.x51{left:182.369987px;}
.x35{left:196.949987px;}
.x43{left:198.389987px;}
.x2d{left:241.049987px;}
.xd{left:247.889987px;}
.x1f{left:257.069987px;}
.x32{left:261.209987px;}
.x5f{left:265.755000px;}
.x61{left:282.494987px;}
.x12{left:284.834987px;}
.x62{left:291.495000px;}
.x5e{left:298.694987px;}
.x65{left:302.834987px;}
.x44{left:342.615000px;}
.xe{left:348.374987px;}
.xb{left:375.914987px;}
.xf{left:381.494987px;}
.x52{left:385.815000px;}
.x4e{left:402.194987px;}
.x5a{left:409.934987px;}
.x36{left:428.835000px;}
.x20{left:433.695000px;}
.x33{left:438.915000px;}
.x3{left:445.605000px;}
.xa{left:446.684987px;}
.x45{left:453.705000px;}
.x16{left:458.745000px;}
.x23{left:481.605000px;}
.x34{left:486.645000px;}
.x1b{left:495.825000px;}
.x37{left:503.205000px;}
.x46{left:514.905000px;}
.x24{left:532.905000px;}
.x2e{left:534.525000px;}
.x5b{left:542.085000px;}
.x53{left:556.305000px;}
.x25{left:580.785000px;}
.x2f{left:582.585000px;}
.x39{left:588.345000px;}
.x5c{left:616.425000px;}
.x26{left:628.710000px;}
.x30{left:630.510000px;}
.x66{left:634.290000px;}
.x63{left:640.410000px;}
.x60{left:648.690000px;}
.x48{left:658.230000px;}
.x54{left:663.990000px;}
.x27{left:683.250000px;}
.x31{left:685.050000px;}
.x3e{left:701.610000px;}
.x58{left:709.350000px;}
.x4f{left:721.410000px;}
.x4a{left:731.850000px;}
.x55{left:737.610000px;}
.x7{left:786.210000px;}
.x1{left:812.339987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:13.440000pt;}
.ls1{letter-spacing:-0.688000pt;}
.ls14{letter-spacing:-0.666667pt;}
.ls5{letter-spacing:-0.481067pt;}
.ls2{letter-spacing:-0.297067pt;}
.lsa{letter-spacing:-0.266133pt;}
.ls7{letter-spacing:-0.230400pt;}
.ls4{letter-spacing:-0.148267pt;}
.ls12{letter-spacing:-0.086933pt;}
.ls3{letter-spacing:-0.025600pt;}
.ls0{letter-spacing:0.000000pt;}
.ls11{letter-spacing:0.106667pt;}
.ls6{letter-spacing:0.158933pt;}
.ls13{letter-spacing:0.214933pt;}
.lse{letter-spacing:0.235733pt;}
.lsd{letter-spacing:1.049600pt;}
.lsb{letter-spacing:3.609600pt;}
.ls10{letter-spacing:6.743040pt;}
.ls9{letter-spacing:10.649600pt;}
.lsc{letter-spacing:22.169600pt;}
.ls8{letter-spacing:27.863040pt;}
.lsf{letter-spacing:38.103040pt;}
.ws6{word-spacing:-56.320000pt;}
.wsa{word-spacing:-12.626133pt;}
.wsc{word-spacing:-12.605333pt;}
.ws4{word-spacing:-12.549333pt;}
.ws2{word-spacing:-12.390400pt;}
.ws7{word-spacing:-12.364800pt;}
.wsb{word-spacing:-12.303467pt;}
.ws1{word-spacing:-12.093333pt;}
.ws3{word-spacing:-11.909333pt;}
.ws0{word-spacing:-11.702400pt;}
.ws8{word-spacing:-8.166400pt;}
.ws9{word-spacing:-0.056320pt;}
.ws5{word-spacing:0.000000pt;}
._1c{margin-left:-2.059093pt;}
._0{margin-left:-1.126400pt;}
._2{width:1.096533pt;}
._a{width:2.263893pt;}
._10{width:3.193173pt;}
._8{width:4.119893pt;}
._7{width:5.108907pt;}
._9{width:6.021973pt;}
._b{width:7.208960pt;}
._11{width:8.729600pt;}
._15{width:9.851733pt;}
._f{width:10.817707pt;}
._14{width:13.291520pt;}
._5{width:14.248960pt;}
._6{width:15.319040pt;}
._2f{width:16.220160pt;}
._c{width:17.121280pt;}
._4{width:18.016640pt;}
._3{width:19.056640pt;}
._1a{width:20.112000pt;}
._1e{width:21.164800pt;}
._1{width:22.276267pt;}
._1b{width:23.906133pt;}
._24{width:24.979627pt;}
._13{width:26.414080pt;}
._12{width:28.103680pt;}
._17{width:29.117440pt;}
._16{width:30.243840pt;}
._30{width:31.708160pt;}
._19{width:32.890880pt;}
._18{width:33.960960pt;}
._2e{width:35.256320pt;}
._3c{width:37.002240pt;}
._d{width:38.016000pt;}
._e{width:39.311360pt;}
._3a{width:40.268800pt;}
._31{width:41.733120pt;}
._2a{width:43.141120pt;}
._2b{width:44.098560pt;}
._22{width:45.562880pt;}
._23{width:46.777173pt;}
._1f{width:47.866880pt;}
._3b{width:49.198933pt;}
._26{width:50.856960pt;}
._25{width:51.870720pt;}
._39{width:53.109760pt;}
._29{width:54.517760pt;}
._32{width:56.151040pt;}
._34{width:57.564160pt;}
._28{width:60.994560pt;}
._27{width:62.551893pt;}
._21{width:63.441067pt;}
._20{width:64.630613pt;}
._33{width:71.244800pt;}
._37{width:72.202240pt;}
._3d{width:75.525120pt;}
._36{width:84.029440pt;}
._35{width:85.212160pt;}
._38{width:88.872960pt;}
._2d{width:107.008000pt;}
._2c{width:108.099413pt;}
._3e{width:330.204160pt;}
._1d{width:1539.854933pt;}
.fs2{font-size:26.880000pt;}
.fs6{font-size:37.120000pt;}
.fs5{font-size:42.880000pt;}
.fs0{font-size:48.000000pt;}
.fs1{font-size:56.320000pt;}
.fs3{font-size:58.880000pt;}
.fs7{font-size:74.880000pt;}
.fs4{font-size:80.000000pt;}
.fs9{font-size:85.120000pt;}
.fsa{font-size:88.320000pt;}
.fs8{font-size:133.120000pt;}
.yad{bottom:-238.920000pt;}
.ybe{bottom:-210.280000pt;}
.yac{bottom:-205.000000pt;}
.ybd{bottom:-176.360000pt;}
.yab{bottom:-171.080000pt;}
.ybc{bottom:-142.440000pt;}
.yaa{bottom:-137.160000pt;}
.ybb{bottom:-108.480000pt;}
.ya9{bottom:-103.200000pt;}
.yba{bottom:-74.560000pt;}
.ya8{bottom:-69.120000pt;}
.yb9{bottom:-40.640000pt;}
.ya7{bottom:-35.200000pt;}
.yb8{bottom:-6.720000pt;}
.ya6{bottom:-1.280000pt;}
.y0{bottom:0.000000pt;}
.ycd{bottom:2.400000pt;}
.y6{bottom:3.040000pt;}
.y161{bottom:3.066667pt;}
.yd2{bottom:4.320000pt;}
.ycc{bottom:4.480000pt;}
.yb7{bottom:10.240000pt;}
.yca{bottom:11.840000pt;}
.ycf{bottom:14.880000pt;}
.ya5{bottom:15.680000pt;}
.yce{bottom:17.280000pt;}
.yd3{bottom:18.560000pt;}
.yd5{bottom:19.360000pt;}
.y105{bottom:19.386667pt;}
.y142{bottom:19.400000pt;}
.y5{bottom:19.520000pt;}
.ydb{bottom:19.546667pt;}
.yff{bottom:19.560000pt;}
.y1e8{bottom:20.000000pt;}
.y1a7{bottom:20.800000pt;}
.ycb{bottom:20.960000pt;}
.y134{bottom:21.440000pt;}
.yb6{bottom:26.720000pt;}
.ya4{bottom:32.000000pt;}
.yd8{bottom:35.840000pt;}
.y4{bottom:35.866667pt;}
.y1b4{bottom:35.880000pt;}
.y1d9{bottom:36.000000pt;}
.y1d2{bottom:36.040000pt;}
.yc5{bottom:36.360000pt;}
.y1d7{bottom:36.480000pt;}
.y1b1{bottom:37.120000pt;}
.y1a6{bottom:37.280000pt;}
.y133{bottom:37.920000pt;}
.yd0{bottom:38.720000pt;}
.yf5{bottom:38.880000pt;}
.yc2{bottom:41.280000pt;}
.yb5{bottom:43.200000pt;}
.yd1{bottom:48.160000pt;}
.ya3{bottom:48.480000pt;}
.y9{bottom:49.280000pt;}
.y8{bottom:51.840000pt;}
.y1d0{bottom:52.160000pt;}
.y1cd{bottom:52.186667pt;}
.y1aa{bottom:52.320000pt;}
.y3{bottom:52.346667pt;}
.y1d6{bottom:52.800000pt;}
.y1e7{bottom:52.960000pt;}
.y1a5{bottom:53.600000pt;}
.y1b0{bottom:53.640000pt;}
.y132{bottom:54.240000pt;}
.yc4{bottom:55.240000pt;}
.yc1{bottom:60.200000pt;}
.yb4{bottom:60.800000pt;}
.ya2{bottom:66.080000pt;}
.y1cf{bottom:68.640000pt;}
.y1d5{bottom:69.280000pt;}
.y19e{bottom:69.920000pt;}
.y1a4{bottom:70.080000pt;}
.y1af{bottom:70.120000pt;}
.y156{bottom:70.720000pt;}
.y15e{bottom:70.746667pt;}
.yb3{bottom:76.320000pt;}
.y23c{bottom:76.640000pt;}
.y1c5{bottom:77.440000pt;}
.y3e{bottom:78.080000pt;}
.y8c{bottom:78.760000pt;}
.yc0{bottom:79.080000pt;}
.ya1{bottom:80.480000pt;}
.yf4{bottom:82.400000pt;}
.y79{bottom:84.800000pt;}
.y1d4{bottom:85.760000pt;}
.y19d{bottom:86.400000pt;}
.y1ae{bottom:86.440000pt;}
.y199{bottom:86.560000pt;}
.y12f{bottom:86.720000pt;}
.y155{bottom:87.040000pt;}
.y1f3{bottom:87.200000pt;}
.y15d{bottom:87.226667pt;}
.y150{bottom:89.120000pt;}
.y9b{bottom:90.240000pt;}
.y23b{bottom:92.960000pt;}
.y1c4{bottom:93.760000pt;}
.y3d{bottom:94.400000pt;}
.y16e{bottom:94.560000pt;}
.yc8{bottom:95.200000pt;}
.yb2{bottom:95.226667pt;}
.y8b{bottom:95.240000pt;}
.ya0{bottom:96.026667pt;}
.yf3{bottom:98.720000pt;}
.y78{bottom:101.120000pt;}
.y21c{bottom:102.080000pt;}
.y1e3{bottom:102.760000pt;}
.y198{bottom:102.880000pt;}
.y1dd{bottom:102.906667pt;}
.y1ad{bottom:102.920000pt;}
.y154{bottom:103.520000pt;}
.y15c{bottom:103.546667pt;}
.y1f2{bottom:103.680000pt;}
.y14f{bottom:105.600000pt;}
.y9a{bottom:106.720000pt;}
.y23a{bottom:109.440000pt;}
.y1c3{bottom:110.240000pt;}
.y3c{bottom:110.880000pt;}
.yfc{bottom:111.520000pt;}
.yc7{bottom:111.680000pt;}
.y8a{bottom:111.720000pt;}
.yb1{bottom:114.106667pt;}
.y9f{bottom:114.906667pt;}
.yf2{bottom:115.200000pt;}
.y77{bottom:117.600000pt;}
.y19c{bottom:119.200000pt;}
.y1a3{bottom:119.226667pt;}
.y1ac{bottom:119.240000pt;}
.y197{bottom:119.360000pt;}
.y153{bottom:119.840000pt;}
.y15b{bottom:120.026667pt;}
.y12e{bottom:120.320000pt;}
.y14e{bottom:121.920000pt;}
.y99{bottom:123.040000pt;}
.y239{bottom:125.760000pt;}
.y1c2{bottom:126.720000pt;}
.y3b{bottom:127.360000pt;}
.y21b{bottom:127.840000pt;}
.y89{bottom:128.040000pt;}
.y1f1{bottom:129.440000pt;}
.yf1{bottom:131.680000pt;}
.yb0{bottom:132.986667pt;}
.y9e{bottom:133.786667pt;}
.y76{bottom:133.920000pt;}
.y196{bottom:135.680000pt;}
.y1a2{bottom:135.706667pt;}
.y1e2{bottom:135.720000pt;}
.y14d{bottom:138.400000pt;}
.y98{bottom:139.520000pt;}
.y238{bottom:142.240000pt;}
.y1c1{bottom:143.040000pt;}
.y3a{bottom:143.680000pt;}
.y21a{bottom:144.320000pt;}
.y88{bottom:144.520000pt;}
.y1f0{bottom:145.920000pt;}
.yf0{bottom:148.000000pt;}
.y75{bottom:150.400000pt;}
.yaf{bottom:151.866667pt;}
.y1dc{bottom:152.026667pt;}
.y1e1{bottom:152.040000pt;}
.y195{bottom:152.160000pt;}
.y9d{bottom:152.666667pt;}
.y1cb{bottom:152.840000pt;}
.y12d{bottom:153.760000pt;}
.y14c{bottom:154.880000pt;}
.y97{bottom:155.840000pt;}
.y237{bottom:158.560000pt;}
.y1c0{bottom:159.520000pt;}
.y39{bottom:160.160000pt;}
.y87{bottom:160.840000pt;}
.yef{bottom:164.480000pt;}
.y74{bottom:166.880000pt;}
.y194{bottom:168.480000pt;}
.y1ca{bottom:169.320000pt;}
.y219{bottom:169.920000pt;}
.y14b{bottom:171.200000pt;}
.y1ef{bottom:171.520000pt;}
.y96{bottom:172.320000pt;}
.y236{bottom:175.040000pt;}
.y1bf{bottom:175.840000pt;}
.y38{bottom:176.480000pt;}
.y86{bottom:177.320000pt;}
.yee{bottom:180.800000pt;}
.y73{bottom:183.200000pt;}
.y193{bottom:184.960000pt;}
.y1c9{bottom:185.640000pt;}
.y218{bottom:186.426667pt;}
.y12c{bottom:187.226667pt;}
.y14a{bottom:187.706667pt;}
.y1ee{bottom:188.026667pt;}
.y95{bottom:188.826667pt;}
.y1be{bottom:192.346667pt;}
.y37{bottom:192.986667pt;}
.y235{bottom:193.306667pt;}
.y85{bottom:193.640000pt;}
.yed{bottom:197.306667pt;}
.y72{bottom:199.706667pt;}
.y192{bottom:201.466667pt;}
.y1c8{bottom:202.120000pt;}
.y149{bottom:204.026667pt;}
.y94{bottom:205.146667pt;}
.y1bd{bottom:208.666667pt;}
.y36{bottom:209.306667pt;}
.y16d{bottom:209.466667pt;}
.y84{bottom:210.120000pt;}
.y217{bottom:212.186667pt;}
.yec{bottom:213.786667pt;}
.y71{bottom:216.026667pt;}
.y191{bottom:217.786667pt;}
.y1c7{bottom:218.466667pt;}
.y234{bottom:219.066667pt;}
.y148{bottom:220.506667pt;}
.y12b{bottom:220.826667pt;}
.y93{bottom:221.626667pt;}
.y1bc{bottom:225.146667pt;}
.y35{bottom:225.786667pt;}
.y83{bottom:226.600000pt;}
.y216{bottom:228.666667pt;}
.yeb{bottom:230.106667pt;}
.y1ed{bottom:230.266667pt;}
.y70{bottom:232.506667pt;}
.y190{bottom:234.266667pt;}
.y147{bottom:234.586667pt;}
.y92{bottom:237.946667pt;}
.y1bb{bottom:241.626667pt;}
.y34{bottom:242.266667pt;}
.y82{bottom:242.920000pt;}
.y233{bottom:244.826667pt;}
.yea{bottom:246.586667pt;}
.y6f{bottom:248.826667pt;}
.y18f{bottom:250.586667pt;}
.y12a{bottom:254.266667pt;}
.y91{bottom:254.426667pt;}
.y1ba{bottom:257.946667pt;}
.y33{bottom:258.586667pt;}
.y81{bottom:259.400000pt;}
.ye9{bottom:262.906667pt;}
.y6e{bottom:265.306667pt;}
.y18e{bottom:267.066667pt;}
.y146{bottom:268.026667pt;}
.y232{bottom:270.426667pt;}
.y90{bottom:270.746667pt;}
.y1ec{bottom:272.346667pt;}
.y1b9{bottom:274.426667pt;}
.y32{bottom:275.066667pt;}
.y80{bottom:275.746667pt;}
.ye8{bottom:279.386667pt;}
.y6d{bottom:281.786667pt;}
.y18d{bottom:283.546667pt;}
.y8f{bottom:287.226667pt;}
.y129{bottom:287.706667pt;}
.y1d3{bottom:288.506667pt;}
.y1eb{bottom:288.826667pt;}
.y1e6{bottom:289.146667pt;}
.y1b8{bottom:290.746667pt;}
.y31{bottom:291.386667pt;}
.y16c{bottom:291.546667pt;}
.y7f{bottom:292.226667pt;}
.ye7{bottom:295.706667pt;}
.y215{bottom:296.506667pt;}
.y6c{bottom:298.106667pt;}
.y231{bottom:298.266667pt;}
.y18c{bottom:299.866667pt;}
.y145{bottom:301.466667pt;}
.y8e{bottom:303.706667pt;}
.y1ea{bottom:305.146667pt;}
.y1b7{bottom:307.226667pt;}
.y30{bottom:307.866667pt;}
.y7e{bottom:308.706667pt;}
.ye6{bottom:312.186667pt;}
.y214{bottom:312.986667pt;}
.y6b{bottom:314.586667pt;}
.y18b{bottom:316.346667pt;}
.y8d{bottom:320.026667pt;}
.y128{bottom:321.306667pt;}
.y1b6{bottom:323.706667pt;}
.y2f{bottom:324.346667pt;}
.y7d{bottom:325.026667pt;}
.ye5{bottom:328.666667pt;}
.y213{bottom:329.306667pt;}
.y6a{bottom:330.906667pt;}
.y18a{bottom:332.666667pt;}
.y7b{bottom:333.466667pt;}
.y144{bottom:335.066667pt;}
.y230{bottom:337.306667pt;}
.y1d8{bottom:338.266667pt;}
.y1e9{bottom:339.066667pt;}
.y1b5{bottom:340.026667pt;}
.y2e{bottom:340.666667pt;}
.y7c{bottom:341.506667pt;}
.ye4{bottom:344.986667pt;}
.y69{bottom:347.386667pt;}
.y189{bottom:349.146667pt;}
.ybf{bottom:351.706667pt;}
.y1ab{bottom:354.106667pt;}
.y127{bottom:354.746667pt;}
.y212{bottom:355.066667pt;}
.y2d{bottom:357.146667pt;}
.ye3{bottom:361.466667pt;}
.y68{bottom:363.866667pt;}
.y188{bottom:365.466667pt;}
.yc3{bottom:366.106667pt;}
.y143{bottom:368.506667pt;}
.y211{bottom:371.546667pt;}
.y2c{bottom:373.466667pt;}
.yfa{bottom:375.546667pt;}
.y22f{bottom:376.346667pt;}
.ye2{bottom:377.786667pt;}
.y67{bottom:380.186667pt;}
.y187{bottom:381.946667pt;}
.y141{bottom:385.626667pt;}
.y1b3{bottom:387.546667pt;}
.y126{bottom:388.186667pt;}
.y1e0{bottom:388.986667pt;}
.y16b{bottom:389.946667pt;}
.y2b{bottom:393.306667pt;}
.ye1{bottom:394.266667pt;}
.y66{bottom:396.706667pt;}
.y210{bottom:397.186667pt;}
.y186{bottom:398.466667pt;}
.y16a{bottom:406.466667pt;}
.ye0{bottom:408.386667pt;}
.yf9{bottom:409.026667pt;}
.y2a{bottom:409.666667pt;}
.y65{bottom:413.026667pt;}
.y20f{bottom:413.666667pt;}
.y185{bottom:414.786667pt;}
.y22e{bottom:415.426667pt;}
.y140{bottom:419.106667pt;}
.y125{bottom:421.826667pt;}
.y169{bottom:422.786667pt;}
.y29{bottom:426.146667pt;}
.y184{bottom:428.866667pt;}
.y64{bottom:429.506667pt;}
.y20e{bottom:430.146667pt;}
.y1b2{bottom:437.506667pt;}
.y1d1{bottom:438.146667pt;}
.y1e5{bottom:438.786667pt;}
.y168{bottom:439.266667pt;}
.ydf{bottom:441.826667pt;}
.y28{bottom:442.466667pt;}
.y63{bottom:445.826667pt;}
.y183{bottom:445.986667pt;}
.y13f{bottom:452.546667pt;}
.y22d{bottom:454.626667pt;}
.y167{bottom:455.586667pt;}
.y20d{bottom:455.746667pt;}
.y124{bottom:458.306667pt;}
.y27{bottom:458.946667pt;}
.y62{bottom:462.306667pt;}
.y182{bottom:462.946667pt;}
.y1ce{bottom:471.746667pt;}
.y166{bottom:472.066667pt;}
.y20c{bottom:472.226667pt;}
.y123{bottom:474.786667pt;}
.yde{bottom:475.266667pt;}
.y26{bottom:475.426667pt;}
.y61{bottom:478.786667pt;}
.y181{bottom:480.066667pt;}
.y13e{bottom:486.146667pt;}
.y1a1{bottom:487.426667pt;}
.y165{bottom:488.546667pt;}
.y1e4{bottom:488.706667pt;}
.y122{bottom:491.106667pt;}
.y25{bottom:491.746667pt;}
.y22c{bottom:493.666667pt;}
.y60{bottom:495.106667pt;}
.y180{bottom:497.186667pt;}
.y20b{bottom:497.986667pt;}
.y164{bottom:504.866667pt;}
.y121{bottom:507.586667pt;}
.y24{bottom:508.226667pt;}
.ydd{bottom:508.866667pt;}
.y9c{bottom:510.146667pt;}
.y5f{bottom:511.586667pt;}
.yae{bottom:512.546667pt;}
.y17f{bottom:514.306667pt;}
.y20a{bottom:514.466667pt;}
.y13d{bottom:519.586667pt;}
.y163{bottom:521.346667pt;}
.y120{bottom:523.906667pt;}
.y23{bottom:524.546667pt;}
.y5e{bottom:527.906667pt;}
.y17e{bottom:531.266667pt;}
.y22b{bottom:532.706667pt;}
.y15a{bottom:535.266667pt;}
.y1a9{bottom:537.346667pt;}
.y209{bottom:540.066667pt;}
.y11f{bottom:540.386667pt;}
.y22{bottom:541.026667pt;}
.y106{bottom:541.666667pt;}
.y5d{bottom:544.386667pt;}
.y17d{bottom:548.386667pt;}
.y13c{bottom:553.026667pt;}
.y1cc{bottom:554.466667pt;}
.y1db{bottom:555.106667pt;}
.y208{bottom:556.546667pt;}
.y11e{bottom:556.866667pt;}
.y21{bottom:557.506667pt;}
.ydc{bottom:558.786667pt;}
.y5c{bottom:560.866667pt;}
.y17c{bottom:565.506667pt;}
.y162{bottom:568.866667pt;}
.y22a{bottom:571.746667pt;}
.y11d{bottom:573.186667pt;}
.y20{bottom:573.826667pt;}
.y5b{bottom:577.186667pt;}
.y207{bottom:582.306667pt;}
.y17b{bottom:585.666667pt;}
.y1df{bottom:588.546667pt;}
.y11c{bottom:589.666667pt;}
.y1f{bottom:590.306667pt;}
.y104{bottom:591.586667pt;}
.yda{bottom:592.226667pt;}
.y5a{bottom:593.666667pt;}
.y206{bottom:598.786667pt;}
.y17a{bottom:601.986667pt;}
.y160{bottom:602.306667pt;}
.y1a8{bottom:603.586667pt;}
.y11b{bottom:606.013333pt;}
.y1e{bottom:606.653333pt;}
.yf8{bottom:608.733333pt;}
.y59{bottom:610.013333pt;}
.y205{bottom:615.133333pt;}
.y179{bottom:618.493333pt;}
.y229{bottom:620.253333pt;}
.y1c6{bottom:620.733333pt;}
.y11a{bottom:622.493333pt;}
.y1d{bottom:623.133333pt;}
.y103{bottom:625.053333pt;}
.yd9{bottom:625.693333pt;}
.y58{bottom:626.493333pt;}
.y204{bottom:631.613333pt;}
.y178{bottom:632.573333pt;}
.y15f{bottom:635.773333pt;}
.y19b{bottom:637.213333pt;}
.y119{bottom:638.813333pt;}
.y1c{bottom:639.453333pt;}
.yf7{bottom:642.173333pt;}
.y57{bottom:642.813333pt;}
.y228{bottom:650.173333pt;}
.y1de{bottom:654.973333pt;}
.y118{bottom:655.293333pt;}
.y1b{bottom:655.933333pt;}
.y203{bottom:657.373333pt;}
.y102{bottom:658.493333pt;}
.y56{bottom:659.293333pt;}
.y177{bottom:666.013333pt;}
.y227{bottom:666.653333pt;}
.y152{bottom:669.373333pt;}
.y117{bottom:671.773333pt;}
.y1a{bottom:672.413333pt;}
.yf6{bottom:675.613333pt;}
.y55{bottom:675.773333pt;}
.y202{bottom:682.973333pt;}
.y1a0{bottom:687.133333pt;}
.y116{bottom:688.093333pt;}
.y19{bottom:688.733333pt;}
.y7a{bottom:691.613333pt;}
.y54{bottom:692.093333pt;}
.y226{bottom:692.413333pt;}
.y176{bottom:699.453333pt;}
.y159{bottom:702.813333pt;}
.y115{bottom:704.573333pt;}
.y18{bottom:705.213333pt;}
.y53{bottom:708.573333pt;}
.y225{bottom:708.893333pt;}
.yd7{bottom:709.213333pt;}
.y114{bottom:720.893333pt;}
.y1da{bottom:721.213333pt;}
.y17{bottom:721.533333pt;}
.y52{bottom:724.893333pt;}
.y201{bottom:725.213333pt;}
.y101{bottom:725.533333pt;}
.y175{bottom:733.053333pt;}
.y158{bottom:736.253333pt;}
.y19f{bottom:737.053333pt;}
.y113{bottom:737.373333pt;}
.y16{bottom:738.013333pt;}
.y51{bottom:741.373333pt;}
.y200{bottom:741.693333pt;}
.y224{bottom:750.973333pt;}
.y112{bottom:753.853333pt;}
.y15{bottom:756.413333pt;}
.y50{bottom:757.853333pt;}
.yd6{bottom:758.973333pt;}
.y174{bottom:766.493333pt;}
.y1ff{bottom:767.293333pt;}
.y223{bottom:767.453333pt;}
.y157{bottom:769.853333pt;}
.y111{bottom:770.173333pt;}
.y14{bottom:772.893333pt;}
.y4f{bottom:774.173333pt;}
.y100{bottom:775.453333pt;}
.y1fe{bottom:783.773333pt;}
.y110{bottom:786.653333pt;}
.y19a{bottom:786.973333pt;}
.y13{bottom:789.213333pt;}
.y4e{bottom:790.653333pt;}
.yd4{bottom:792.573333pt;}
.y222{bottom:793.053333pt;}
.y173{bottom:799.933333pt;}
.y10f{bottom:802.973333pt;}
.y151{bottom:803.293333pt;}
.y12{bottom:805.693333pt;}
.y4d{bottom:806.973333pt;}
.yfe{bottom:808.893333pt;}
.y1fd{bottom:809.533333pt;}
.y10e{bottom:819.493333pt;}
.y11{bottom:822.053333pt;}
.y4c{bottom:823.493333pt;}
.yc6{bottom:826.053333pt;}
.y172{bottom:833.573333pt;}
.y221{bottom:835.333333pt;}
.y10d{bottom:835.813333pt;}
.y10{bottom:838.533333pt;}
.y4b{bottom:839.813333pt;}
.yfb{bottom:842.533333pt;}
.y1fc{bottom:851.653333pt;}
.y220{bottom:851.813333pt;}
.y10c{bottom:852.293333pt;}
.yf{bottom:855.013333pt;}
.y4a{bottom:856.293333pt;}
.yc9{bottom:863.973333pt;}
.y10b{bottom:866.373333pt;}
.y171{bottom:867.013333pt;}
.y1fb{bottom:868.133333pt;}
.y13b{bottom:868.773333pt;}
.ye{bottom:871.333333pt;}
.y49{bottom:872.773333pt;}
.y21f{bottom:877.413333pt;}
.yfd{bottom:880.453333pt;}
.y10a{bottom:883.493333pt;}
.y13a{bottom:885.093333pt;}
.yd{bottom:887.813333pt;}
.y48{bottom:889.093333pt;}
.y1fa{bottom:893.893333pt;}
.y109{bottom:900.453333pt;}
.y139{bottom:901.573333pt;}
.yc{bottom:905.573333pt;}
.y1f9{bottom:910.373333pt;}
.y108{bottom:917.573333pt;}
.y138{bottom:917.893333pt;}
.y21e{bottom:919.653333pt;}
.y47{bottom:921.893333pt;}
.yb{bottom:929.093333pt;}
.y131{bottom:931.973333pt;}
.y170{bottom:934.053333pt;}
.y107{bottom:934.693333pt;}
.y1f8{bottom:935.973333pt;}
.y21d{bottom:936.133333pt;}
.y46{bottom:938.373333pt;}
.y137{bottom:949.093333pt;}
.y16f{bottom:951.013333pt;}
.y1f7{bottom:952.453333pt;}
.y45{bottom:954.853333pt;}
.ya{bottom:961.733333pt;}
.y136{bottom:966.213333pt;}
.y44{bottom:971.173333pt;}
.y1f6{bottom:978.213333pt;}
.y135{bottom:983.173333pt;}
.y7{bottom:987.493333pt;}
.y43{bottom:987.653333pt;}
.y2{bottom:993.893333pt;}
.y1f5{bottom:994.693333pt;}
.y130{bottom:1000.293333pt;}
.y42{bottom:1003.973333pt;}
.y1f4{bottom:1020.293333pt;}
.y41{bottom:1020.453333pt;}
.y40{bottom:1036.800000pt;}
.y1{bottom:1059.520000pt;}
.y3f{bottom:1060.800000pt;}
.h8{height:16.320000pt;}
.h1b{height:16.480000pt;}
.h6{height:26.735625pt;}
.h17{height:32.800000pt;}
.h14{height:32.832000pt;}
.h15{height:32.960000pt;}
.h1a{height:32.992000pt;}
.h13{height:37.280000pt;}
.hd{height:37.310625pt;}
.h4{height:47.685000pt;}
.h2{height:47.742188pt;}
.h5{height:49.005000pt;}
.h16{height:49.120000pt;}
.h18{height:49.152000pt;}
.h19{height:49.280000pt;}
.h23{height:49.312000pt;}
.ha{height:51.232500pt;}
.h7{height:58.563750pt;}
.h2b{height:65.154375pt;}
.h21{height:65.600000pt;}
.h3{height:65.632000pt;}
.h25{height:65.760000pt;}
.h2a{height:65.792000pt;}
.h1c{height:67.680000pt;}
.h9{height:67.734375pt;}
.h2d{height:74.064375pt;}
.h2e{height:76.848750pt;}
.h27{height:82.080000pt;}
.h10{height:86.112000pt;}
.h12{height:87.040000pt;}
.h28{height:99.040000pt;}
.hf{height:114.912000pt;}
.h2c{height:115.830000pt;}
.h11{height:124.960000pt;}
.h22{height:132.672000pt;}
.h1d{height:133.280000pt;}
.h1e{height:133.466667pt;}
.h1f{height:148.960000pt;}
.h20{height:149.146667pt;}
.he{height:165.306667pt;}
.h24{height:165.440000pt;}
.h29{height:165.466667pt;}
.hc{height:166.106667pt;}
.h26{height:231.906667pt;}
.hb{height:354.786667pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.w5{width:23.232000pt;}
.wc{width:41.792000pt;}
.we{width:41.920000pt;}
.wf{width:41.952000pt;}
.w14{width:42.080000pt;}
.wd{width:44.960000pt;}
.w13{width:46.240000pt;}
.w10{width:47.840000pt;}
.w20{width:53.600000pt;}
.w28{width:53.760000pt;}
.w2a{width:60.192000pt;}
.w22{width:64.800000pt;}
.w2e{width:65.440000pt;}
.w18{width:65.472000pt;}
.w23{width:65.792000pt;}
.w25{width:74.912000pt;}
.w19{width:75.040000pt;}
.w2c{width:85.952000pt;}
.w1d{width:92.832000pt;}
.w29{width:94.912000pt;}
.w27{width:96.512000pt;}
.w1f{width:97.952000pt;}
.w1c{width:99.872000pt;}
.w15{width:106.912000pt;}
.w11{width:108.512000pt;}
.w24{width:117.312000pt;}
.w21{width:126.752000pt;}
.w31{width:139.546667pt;}
.w34{width:146.906667pt;}
.w37{width:152.346667pt;}
.w2f{width:157.786667pt;}
.w32{width:180.666667pt;}
.w35{width:181.466667pt;}
.w1a{width:193.346667pt;}
.wa{width:221.946667pt;}
.w1e{width:226.106667pt;}
.w26{width:263.866667pt;}
.w7{width:284.506667pt;}
.w9{width:294.906667pt;}
.w8{width:300.506667pt;}
.w17{width:302.746667pt;}
.w36{width:303.266667pt;}
.wb{width:306.586667pt;}
.w12{width:306.746667pt;}
.w33{width:309.506667pt;}
.w16{width:311.066667pt;}
.w3{width:324.093333pt;}
.w4{width:325.986667pt;}
.w30{width:339.586667pt;}
.w2d{width:403.586667pt;}
.w2b{width:444.546667pt;}
.w1b{width:444.866667pt;}
.w6{width:637.253333pt;}
.w2{width:793.919988pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x6{left:5.280000pt;}
.x11{left:7.200000pt;}
.x2b{left:8.320000pt;}
.x14{left:9.600000pt;}
.x19{left:11.200000pt;}
.x4b{left:12.480000pt;}
.x38{left:13.440000pt;}
.x2a{left:14.400000pt;}
.x4c{left:15.840000pt;}
.x67{left:17.280000pt;}
.x49{left:18.400000pt;}
.x21{left:20.346667pt;}
.x3f{left:22.240000pt;}
.x1c{left:23.520000pt;}
.x42{left:24.480000pt;}
.x40{left:26.080000pt;}
.x28{left:28.160000pt;}
.x41{left:29.440000pt;}
.x3c{left:30.426667pt;}
.x59{left:31.880000pt;}
.x50{left:33.320000pt;}
.x47{left:35.520000pt;}
.x22{left:37.146667pt;}
.x2c{left:39.360000pt;}
.x29{left:40.480000pt;}
.x3b{left:41.640000pt;}
.x5d{left:42.560000pt;}
.x18{left:43.520000pt;}
.x68{left:48.800000pt;}
.x3a{left:50.120000pt;}
.x69{left:52.320000pt;}
.x64{left:57.920000pt;}
.x2{left:72.000000pt;}
.x3d{left:73.119988pt;}
.x1e{left:75.871988pt;}
.x57{left:76.831988pt;}
.xc{left:78.431988pt;}
.x13{left:84.192000pt;}
.x1a{left:89.274667pt;}
.x4{left:91.040000pt;}
.x1d{left:96.031988pt;}
.x4d{left:99.871988pt;}
.x5{left:106.560000pt;}
.x10{left:120.031988pt;}
.x8{left:123.391988pt;}
.x56{left:131.994667pt;}
.x9{left:137.306655pt;}
.x15{left:142.234667pt;}
.x17{left:150.280000pt;}
.x51{left:162.106655pt;}
.x35{left:175.066655pt;}
.x43{left:176.346655pt;}
.x2d{left:214.266655pt;}
.xd{left:220.346655pt;}
.x1f{left:228.506655pt;}
.x32{left:232.186655pt;}
.x5f{left:236.226667pt;}
.x61{left:251.106655pt;}
.x12{left:253.186655pt;}
.x62{left:259.106667pt;}
.x5e{left:265.506655pt;}
.x65{left:269.186655pt;}
.x44{left:304.546667pt;}
.xe{left:309.666655pt;}
.xb{left:334.146655pt;}
.xf{left:339.106655pt;}
.x52{left:342.946667pt;}
.x4e{left:357.506655pt;}
.x5a{left:364.386655pt;}
.x36{left:381.186667pt;}
.x20{left:385.506667pt;}
.x33{left:390.146667pt;}
.x3{left:396.093333pt;}
.xa{left:397.053322pt;}
.x45{left:403.293333pt;}
.x16{left:407.773333pt;}
.x23{left:428.093333pt;}
.x34{left:432.573333pt;}
.x1b{left:440.733333pt;}
.x37{left:447.293333pt;}
.x46{left:457.693333pt;}
.x24{left:473.693333pt;}
.x2e{left:475.133333pt;}
.x5b{left:481.853333pt;}
.x53{left:494.493333pt;}
.x25{left:516.253333pt;}
.x2f{left:517.853333pt;}
.x39{left:522.973333pt;}
.x5c{left:547.933333pt;}
.x26{left:558.853333pt;}
.x30{left:560.453333pt;}
.x66{left:563.813333pt;}
.x63{left:569.253333pt;}
.x60{left:576.613333pt;}
.x48{left:585.093333pt;}
.x54{left:590.213333pt;}
.x27{left:607.333333pt;}
.x31{left:608.933333pt;}
.x3e{left:623.653333pt;}
.x58{left:630.533333pt;}
.x4f{left:641.253333pt;}
.x4a{left:650.533333pt;}
.x55{left:655.653333pt;}
.x7{left:698.853333pt;}
.x1{left:722.079988pt;}
}




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