
    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_bc7c5a7c11a0861d556759d2.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.969238;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_b47c18db537a44116744b1d9.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.040039;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_53af9128b7a5a2f933883b40.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.172363;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_3f09949fb8b5630900c2ac94.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_0ff2b1c03080abdcf8d4f912.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_1a56997aecf6125e34d348d2.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.921387;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_967c880999a57d29fe07a45a.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.921387;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_35a85d93a95340725407e180.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.040039;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_d68e47b4b0c0f9e4e685fc04.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_5ad189b37a58e274b8a07206.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_27fb3c20856f0669d0fa40a0.woff2')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_01ce8cbd34e42b9a86a59126.woff2')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_cf5b54b838ee9f69dcdff9c4.woff2')format("woff");}.ffd{font-family:ffd;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:ffe;src:url('chunks/assets/font_40f350ed20b25c8db3585f93.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.969238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_d24a460ba52f61f605901d05.woff2')format("woff");}.fff{font-family:fff;line-height:1.196289;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:ff10;src:url('chunks/assets/font_25338204c4fb6706247b66bf.woff2')format("woff");}.ff10{font-family:ff10;line-height:1.172363;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-20.880000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:20.880000px;}
.ls6{letter-spacing:-0.774000px;}
.ls11{letter-spacing:-0.666000px;}
.ls4{letter-spacing:-0.540000px;}
.lsc{letter-spacing:-0.360000px;}
.ls1b{letter-spacing:-0.106800px;}
.ls1c{letter-spacing:-0.053280px;}
.ls3{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.045360px;}
.lsf{letter-spacing:0.053280px;}
.ls16{letter-spacing:0.079920px;}
.ls13{letter-spacing:0.173280px;}
.ls0{letter-spacing:0.180000px;}
.ls5{letter-spacing:0.206400px;}
.ls9{letter-spacing:0.259800px;}
.ls17{letter-spacing:0.259920px;}
.ls19{letter-spacing:0.288000px;}
.ls8{letter-spacing:0.298800px;}
.ls14{letter-spacing:0.326640px;}
.ls1{letter-spacing:0.360000px;}
.ls10{letter-spacing:0.460080px;}
.ls15{letter-spacing:0.773280px;}
.ls1a{letter-spacing:1.080000px;}
.ls18{letter-spacing:3.336480px;}
.lsb{letter-spacing:19.620000px;}
.ls12{letter-spacing:22.986720px;}
.lse{letter-spacing:40.986720px;}
.lsa{letter-spacing:120.906720px;}
.ls7{letter-spacing:150.402720px;}
.lsd{letter-spacing:150.426720px;}
.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;}
}
.wsa{word-spacing:-59.760000px;}
.wsd{word-spacing:-28.476000px;}
.ws8{word-spacing:-21.060000px;}
.ws7{word-spacing:-18.000000px;}
.ws3{word-spacing:-15.300000px;}
.wsc{word-spacing:-15.238800px;}
.ws9{word-spacing:-15.199800px;}
.ws6{word-spacing:-15.146400px;}
.ws4{word-spacing:-14.940000px;}
.ws10{word-spacing:-14.886720px;}
.wsf{word-spacing:-14.833200px;}
.wsb{word-spacing:-14.274000px;}
.ws0{word-spacing:-12.420000px;}
.ws1{word-spacing:-12.105360px;}
.wse{word-spacing:-10.902240px;}
.ws2{word-spacing:-9.720000px;}
.ws5{word-spacing:0.000000px;}
._40{margin-left:-7.433280px;}
._5{margin-left:-6.322320px;}
._1{margin-left:-5.258880px;}
._4{margin-left:-3.824640px;}
._3{margin-left:-2.748960px;}
._0{margin-left:-1.373280px;}
._2{width:1.374480px;}
._6{width:2.748960px;}
._12{width:3.823440px;}
._f{width:4.900320px;}
._9{width:6.334560px;}
._d{width:7.529760px;}
._1a{width:8.844480px;}
._23{width:9.920160px;}
._e{width:11.772720px;}
._a{width:13.146000px;}
._25{width:16.136400px;}
._b{width:17.151120px;}
._c{width:18.226800px;}
._27{width:19.242720px;}
._22{width:20.378160px;}
._11{width:21.453840px;}
._10{width:22.947840px;}
._8{width:24.261360px;}
._7{width:25.338240px;}
._18{width:26.473680px;}
._19{width:27.549360px;}
._28{width:28.804320px;}
._1f{width:30.178800px;}
._1e{width:31.971600px;}
._17{width:33.583920px;}
._16{width:34.780320px;}
._21{width:35.796240px;}
._13{width:36.991440px;}
._14{width:38.186640px;}
._1c{width:39.320880px;}
._15{width:40.457520px;}
._32{width:41.951520px;}
._2f{width:43.445520px;}
._26{width:44.579760px;}
._20{width:45.656640px;}
._38{width:46.792080px;}
._37{width:48.226320px;}
._2b{width:49.361760px;}
._2e{width:51.393600px;}
._2d{width:52.409520px;}
._2c{width:53.425440px;}
._2a{width:55.097520px;}
._29{width:56.114640px;}
._24{width:57.967200px;}
._33{width:59.602080px;}
._34{width:61.493040px;}
._3f{width:64.660320px;}
._3e{width:66.154320px;}
._1d{width:68.365440px;}
._35{width:70.636320px;}
._3a{width:73.206000px;}
._1b{width:76.547280px;}
._3b{width:87.787440px;}
._36{width:95.496480px;}
._31{width:101.293200px;}
._30{width:102.548160px;}
._39{width:106.850880px;}
._3c{width:229.000320px;}
._3d{width:350.313120px;}
.fc4{color:rgb(0,32,96);}
.fc3{color:rgb(0,0,255);}
.fc2{color:transparent;}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:38.880000px;}
.fs0{font-size:48.240000px;}
.fs4{font-size:59.760000px;}
.fs2{font-size:66.240000px;}
.fs3{font-size:72.000000px;}
.fs1{font-size:84.240000px;}
.fs6{font-size:84.384000px;}
.fs7{font-size:126.000000px;}
.ya1{bottom:-14.865000px;}
.y0{bottom:0.000000px;}
.y92{bottom:0.105000px;}
.y81{bottom:1.260000px;}
.y7f{bottom:2.160000px;}
.yb2{bottom:3.240000px;}
.yc9{bottom:3.270000px;}
.yc1{bottom:3.285000px;}
.yae{bottom:5.070000px;}
.y95{bottom:8.025000px;}
.y9b{bottom:10.725000px;}
.yaa{bottom:11.190000px;}
.ya0{bottom:11.235000px;}
.y99{bottom:11.445000px;}
.y9d{bottom:11.625000px;}
.yb0{bottom:11.880000px;}
.yc7{bottom:11.910000px;}
.y85{bottom:12.420000px;}
.y97{bottom:13.425000px;}
.y145{bottom:15.480000px;}
.y7d{bottom:16.920000px;}
.yb7{bottom:20.340000px;}
.y1b5{bottom:20.385000px;}
.yb1{bottom:20.520000px;}
.yc8{bottom:20.550000px;}
.yc0{bottom:20.565000px;}
.y147{bottom:27.180000px;}
.y148{bottom:27.360000px;}
.ya9{bottom:27.750000px;}
.y9f{bottom:37.335000px;}
.ybc{bottom:37.620000px;}
.yb6{bottom:37.650000px;}
.y161{bottom:37.794000px;}
.yb9{bottom:37.800000px;}
.yda{bottom:37.830000px;}
.ybf{bottom:37.845000px;}
.y168{bottom:53.925000px;}
.yb5{bottom:54.930000px;}
.y15b{bottom:54.945000px;}
.y160{bottom:55.074000px;}
.ycf{bottom:55.080000px;}
.yd3{bottom:55.125000px;}
.y91{bottom:55.905000px;}
.y4{bottom:56.916000px;}
.y177{bottom:57.030000px;}
.yac{bottom:57.315000px;}
.ya3{bottom:58.395000px;}
.yad{bottom:61.230000px;}
.y8e{bottom:67.065000px;}
.y176{bottom:70.170000px;}
.ya7{bottom:70.590000px;}
.yce{bottom:72.180000px;}
.y15a{bottom:72.225000px;}
.y15f{bottom:72.354000px;}
.y93{bottom:75.345000px;}
.y90{bottom:78.225000px;}
.y175{bottom:83.310000px;}
.y167{bottom:88.665000px;}
.ycd{bottom:89.460000px;}
.y15e{bottom:89.634000px;}
.yeb{bottom:89.676000px;}
.y193{bottom:92.736000px;}
.y1ae{bottom:94.176000px;}
.y8c{bottom:95.436000px;}
.y7b{bottom:95.796000px;}
.y174{bottom:96.630000px;}
.yc5{bottom:100.656000px;}
.yde{bottom:101.016000px;}
.y1bc{bottom:103.176000px;}
.ycc{bottom:106.740000px;}
.yea{bottom:106.956000px;}
.y192{bottom:110.016000px;}
.y1ad{bottom:111.456000px;}
.y8b{bottom:112.716000px;}
.y7a{bottom:112.896000px;}
.y40{bottom:118.296000px;}
.y1bb{bottom:120.456000px;}
.y128{bottom:123.696000px;}
.ycb{bottom:124.020000px;}
.ye9{bottom:124.236000px;}
.ye4{bottom:126.396000px;}
.y15d{bottom:126.576000px;}
.y191{bottom:127.116000px;}
.y1ac{bottom:128.736000px;}
.y8a{bottom:129.996000px;}
.y79{bottom:130.176000px;}
.y3f{bottom:135.396000px;}
.y1ba{bottom:137.736000px;}
.y127{bottom:140.976000px;}
.ye8{bottom:141.516000px;}
.y173{bottom:142.635000px;}
.ye3{bottom:143.676000px;}
.y190{bottom:144.396000px;}
.y1ab{bottom:146.016000px;}
.y166{bottom:146.085000px;}
.y89{bottom:147.276000px;}
.y78{bottom:147.456000px;}
.y3e{bottom:152.670000px;}
.yc4{bottom:153.210000px;}
.y1b9{bottom:155.010000px;}
.y172{bottom:155.775000px;}
.y126{bottom:158.250000px;}
.ye7{bottom:159.870000px;}
.ye2{bottom:160.950000px;}
.y18f{bottom:161.670000px;}
.y1aa{bottom:163.290000px;}
.y88{bottom:163.830000px;}
.y77{bottom:164.730000px;}
.y171{bottom:168.915000px;}
.y3d{bottom:169.950000px;}
.yc3{bottom:171.210000px;}
.y1b8{bottom:172.290000px;}
.y125{bottom:175.350000px;}
.ye6{bottom:177.150000px;}
.y87{bottom:177.510000px;}
.ye1{bottom:178.050000px;}
.y18e{bottom:178.950000px;}
.y1a9{bottom:180.390000px;}
.y165{bottom:180.825000px;}
.y76{bottom:182.010000px;}
.y170{bottom:182.055000px;}
.y3c{bottom:187.230000px;}
.y86{bottom:191.370000px;}
.y124{bottom:192.630000px;}
.ye5{bottom:194.250000px;}
.ye0{bottom:195.330000px;}
.y16f{bottom:195.375000px;}
.y18d{bottom:196.230000px;}
.y1a8{bottom:197.670000px;}
.y75{bottom:199.290000px;}
.y84{bottom:202.710000px;}
.ya6{bottom:202.860000px;}
.y3b{bottom:204.510000px;}
.y123{bottom:209.910000px;}
.y1b7{bottom:211.350000px;}
.ydf{bottom:212.610000px;}
.y18c{bottom:213.330000px;}
.y1a7{bottom:214.950000px;}
.y74{bottom:216.390000px;}
.y3a{bottom:221.790000px;}
.yc2{bottom:223.770000px;}
.y122{bottom:227.190000px;}
.y104{bottom:227.370000px;}
.y16e{bottom:228.060000px;}
.y15c{bottom:230.070000px;}
.y18b{bottom:230.610000px;}
.y1a6{bottom:232.230000px;}
.yab{bottom:232.920000px;}
.y73{bottom:233.670000px;}
.y1b6{bottom:237.630000px;}
.y164{bottom:238.215000px;}
.y39{bottom:238.890000px;}
.y16d{bottom:241.380000px;}
.y121{bottom:244.470000px;}
.y103{bottom:245.370000px;}
.ya8{bottom:245.700000px;}
.y18a{bottom:247.890000px;}
.y1a5{bottom:249.510000px;}
.y72{bottom:250.950000px;}
.y16c{bottom:254.520000px;}
.y38{bottom:256.170000px;}
.y120{bottom:261.750000px;}
.y102{bottom:263.370000px;}
.y1b4{bottom:263.910000px;}
.y159{bottom:264.630000px;}
.y189{bottom:265.170000px;}
.y1a4{bottom:266.610000px;}
.y16b{bottom:267.660000px;}
.y71{bottom:268.230000px;}
.y163{bottom:272.955000px;}
.y37{bottom:273.450000px;}
.ybe{bottom:276.150000px;}
.y11f{bottom:278.895000px;}
.y16a{bottom:280.800000px;}
.y188{bottom:282.495000px;}
.y1a3{bottom:283.935000px;}
.y70{bottom:285.555000px;}
.y36{bottom:290.775000px;}
.y169{bottom:294.120000px;}
.y11e{bottom:296.175000px;}
.y101{bottom:298.695000px;}
.y187{bottom:299.775000px;}
.y1a2{bottom:301.215000px;}
.y6f{bottom:302.835000px;}
.y1b3{bottom:307.335000px;}
.y35{bottom:308.055000px;}
.y11d{bottom:313.455000px;}
.y186{bottom:316.875000px;}
.y1a1{bottom:318.495000px;}
.y6e{bottom:319.935000px;}
.y34{bottom:325.335000px;}
.ybd{bottom:328.755000px;}
.y11c{bottom:330.735000px;}
.y1b2{bottom:333.615000px;}
.y100{bottom:333.975000px;}
.y185{bottom:334.155000px;}
.y1a0{bottom:335.775000px;}
.y6d{bottom:337.215000px;}
.y83{bottom:339.915000px;}
.ya5{bottom:340.020000px;}
.y33{bottom:342.435000px;}
.y13c{bottom:345.495000px;}
.y184{bottom:351.435000px;}
.y158{bottom:351.615000px;}
.yff{bottom:351.975000px;}
.y19f{bottom:353.055000px;}
.y6c{bottom:354.495000px;}
.y32{bottom:359.715000px;}
.y1b1{bottom:359.895000px;}
.y13b{bottom:363.495000px;}
.y183{bottom:368.715000px;}
.y19e{bottom:370.155000px;}
.ya4{bottom:370.620000px;}
.y6b{bottom:371.775000px;}
.y157{bottom:372.135000px;}
.y31{bottom:376.995000px;}
.ybb{bottom:381.315000px;}
.y13a{bottom:381.495000px;}
.y182{bottom:385.995000px;}
.y1b0{bottom:386.175000px;}
.yfe{bottom:387.255000px;}
.y19d{bottom:387.435000px;}
.y6a{bottom:389.055000px;}
.y156{bottom:389.415000px;}
.y30{bottom:394.275000px;}
.y139{bottom:399.495000px;}
.y181{bottom:403.275000px;}
.yfd{bottom:405.255000px;}
.y69{bottom:406.155000px;}
.y155{bottom:406.695000px;}
.ydd{bottom:409.755000px;}
.y2f{bottom:411.555000px;}
.y138{bottom:417.495000px;}
.y180{bottom:420.375000px;}
.yfc{bottom:423.255000px;}
.y68{bottom:423.435000px;}
.y154{bottom:423.975000px;}
.y19c{bottom:426.675000px;}
.y2e{bottom:428.655000px;}
.y1af{bottom:429.555000px;}
.yba{bottom:433.695000px;}
.y137{bottom:435.495000px;}
.y17f{bottom:437.655000px;}
.y67{bottom:440.715000px;}
.y153{bottom:441.075000px;}
.yfb{bottom:441.255000px;}
.y2d{bottom:445.935000px;}
.y82{bottom:452.415000px;}
.ya2{bottom:452.520000px;}
.y136{bottom:453.495000px;}
.y17e{bottom:454.935000px;}
.y66{bottom:457.995000px;}
.y152{bottom:458.355000px;}
.ydc{bottom:462.315000px;}
.y2c{bottom:463.215000px;}
.y19b{bottom:470.055000px;}
.y135{bottom:471.495000px;}
.y17d{bottom:472.215000px;}
.y65{bottom:475.275000px;}
.y151{bottom:475.635000px;}
.yfa{bottom:476.355000px;}
.y2b{bottom:480.495000px;}
.y9e{bottom:483.120000px;}
.yb8{bottom:486.255000px;}
.y134{bottom:489.495000px;}
.y64{bottom:492.555000px;}
.y150{bottom:492.915000px;}
.yf9{bottom:494.355000px;}
.y2a{bottom:497.775000px;}
.y17c{bottom:506.775000px;}
.y133{bottom:507.495000px;}
.y63{bottom:509.655000px;}
.y14f{bottom:510.195000px;}
.ydb{bottom:514.695000px;}
.y29{bottom:515.055000px;}
.y17b{bottom:523.875000px;}
.y132{bottom:525.495000px;}
.y62{bottom:526.935000px;}
.y14e{bottom:527.475000px;}
.yf8{bottom:529.635000px;}
.y19a{bottom:530.895000px;}
.y28{bottom:532.155000px;}
.yd9{bottom:532.695000px;}
.yb4{bottom:538.815000px;}
.y17a{bottom:541.155000px;}
.y131{bottom:543.495000px;}
.y61{bottom:544.215000px;}
.y14d{bottom:544.575000px;}
.yf7{bottom:547.635000px;}
.y27{bottom:549.435000px;}
.y179{bottom:558.435000px;}
.y14c{bottom:559.335000px;}
.y60{bottom:561.525000px;}
.y80{bottom:564.945000px;}
.y26{bottom:566.745000px;}
.y178{bottom:572.505000px;}
.y199{bottom:574.305000px;}
.y14b{bottom:577.365000px;}
.y5f{bottom:578.805000px;}
.y130{bottom:579.525000px;}
.y25{bottom:584.025000px;}
.yd8{bottom:585.285000px;}
.y98{bottom:590.580000px;}
.y9a{bottom:591.480000px;}
.y9c{bottom:591.660000px;}
.y14a{bottom:595.365000px;}
.y5e{bottom:596.085000px;}
.y12f{bottom:597.525000px;}
.yf6{bottom:600.225000px;}
.y24{bottom:601.305000px;}
.yb3{bottom:608.505000px;}
.y5d{bottom:613.185000px;}
.y149{bottom:613.365000px;}
.y12e{bottom:615.525000px;}
.y23{bottom:618.585000px;}
.yaf{bottom:626.505000px;}
.y5c{bottom:630.465000px;}
.y143{bottom:631.365000px;}
.y12d{bottom:633.525000px;}
.y198{bottom:635.145000px;}
.yf5{bottom:635.505000px;}
.y22{bottom:635.685000px;}
.yd7{bottom:637.845000px;}
.y7e{bottom:643.785000px;}
.y5b{bottom:647.745000px;}
.y12c{bottom:651.525000px;}
.y21{bottom:652.965000px;}
.yf4{bottom:653.505000px;}
.y5a{bottom:665.025000px;}
.y96{bottom:668.340000px;}
.y12b{bottom:669.525000px;}
.y20{bottom:670.245000px;}
.yf3{bottom:671.505000px;}
.y94{bottom:672.120000px;}
.y146{bottom:673.485000px;}
.y59{bottom:682.305000px;}
.y1f{bottom:687.525000px;}
.yf2{bottom:689.505000px;}
.yd6{bottom:690.225000px;}
.y197{bottom:695.805000px;}
.y58{bottom:699.585000px;}
.y1e{bottom:704.805000px;}
.y12a{bottom:705.525000px;}
.yf1{bottom:707.505000px;}
.y144{bottom:715.425000px;}
.y57{bottom:716.685000px;}
.y1d{bottom:721.905000px;}
.y7c{bottom:722.445000px;}
.y8f{bottom:722.520000px;}
.y129{bottom:723.525000px;}
.y56{bottom:733.965000px;}
.y1c{bottom:739.185000px;}
.yf0{bottom:742.605000px;}
.yd5{bottom:742.785000px;}
.y11b{bottom:744.765000px;}
.y142{bottom:748.905000px;}
.y55{bottom:751.245000px;}
.y8d{bottom:756.000000px;}
.y1b{bottom:756.465000px;}
.y196{bottom:756.645000px;}
.y11a{bottom:762.045000px;}
.y141{bottom:766.185000px;}
.y54{bottom:768.525000px;}
.y1a{bottom:773.745000px;}
.y119{bottom:779.325000px;}
.y140{bottom:783.465000px;}
.y53{bottom:785.805000px;}
.y19{bottom:791.025000px;}
.yd4{bottom:795.165000px;}
.y118{bottom:796.605000px;}
.y13f{bottom:800.745000px;}
.y52{bottom:802.905000px;}
.y18{bottom:808.305000px;}
.yd2{bottom:813.165000px;}
.y117{bottom:813.705000px;}
.y195{bottom:817.305000px;}
.y13e{bottom:818.025000px;}
.y51{bottom:820.185000px;}
.y17{bottom:825.405000px;}
.y116{bottom:830.985000px;}
.yef{bottom:831.165000px;}
.y13d{bottom:835.125000px;}
.y50{bottom:837.465000px;}
.y16{bottom:842.685000px;}
.y115{bottom:848.310000px;}
.yee{bottom:849.210000px;}
.y162{bottom:849.240000px;}
.y4f{bottom:854.790000px;}
.y15{bottom:860.010000px;}
.y114{bottom:865.590000px;}
.yed{bottom:867.210000px;}
.y4e{bottom:872.070000px;}
.y14{bottom:877.290000px;}
.yd1{bottom:883.050000px;}
.y113{bottom:883.950000px;}
.yec{bottom:885.210000px;}
.y4d{bottom:889.350000px;}
.y13{bottom:894.570000px;}
.y194{bottom:895.470000px;}
.y112{bottom:901.050000px;}
.y4c{bottom:906.450000px;}
.y12{bottom:911.850000px;}
.y111{bottom:918.330000px;}
.y4b{bottom:923.730000px;}
.y11{bottom:928.950000px;}
.yd0{bottom:935.610000px;}
.y4a{bottom:941.010000px;}
.y10{bottom:951.450000px;}
.y110{bottom:953.970000px;}
.y49{bottom:958.290000px;}
.yf{bottom:968.730000px;}
.y10f{bottom:971.250000px;}
.y48{bottom:975.570000px;}
.ye{bottom:980.790000px;}
.yca{bottom:987.990000px;}
.y10e{bottom:989.610000px;}
.y47{bottom:992.850000px;}
.yd{bottom:1003.290000px;}
.y10d{bottom:1006.710000px;}
.y46{bottom:1009.950000px;}
.yc{bottom:1020.570000px;}
.y10c{bottom:1023.990000px;}
.y45{bottom:1027.230000px;}
.yb{bottom:1032.450000px;}
.y10b{bottom:1041.270000px;}
.y44{bottom:1044.510000px;}
.ya{bottom:1049.730000px;}
.y10a{bottom:1058.550000px;}
.y43{bottom:1061.790000px;}
.y9{bottom:1067.010000px;}
.y109{bottom:1076.910000px;}
.y42{bottom:1079.070000px;}
.y8{bottom:1084.290000px;}
.y108{bottom:1094.190000px;}
.y41{bottom:1096.170000px;}
.y107{bottom:1112.370000px;}
.y7{bottom:1113.450000px;}
.yc6{bottom:1126.770000px;}
.y106{bottom:1129.680000px;}
.y6{bottom:1130.760000px;}
.y105{bottom:1146.960000px;}
.y5{bottom:1148.040000px;}
.y3{bottom:1166.580000px;}
.y2{bottom:1184.760000px;}
.y1{bottom:1198.440000px;}
.h2b{height:17.100000px;}
.h1f{height:17.280000px;}
.h29{height:17.316000px;}
.h9{height:27.432422px;}
.h15{height:27.720000px;}
.h2d{height:29.520000px;}
.h18{height:30.420000px;}
.h17{height:31.140000px;}
.h19{height:31.320000px;}
.h16{height:33.120000px;}
.h2a{height:34.380000px;}
.h36{height:34.416000px;}
.h1e{height:34.560000px;}
.h25{height:34.596000px;}
.h2{height:39.760312px;}
.h2e{height:41.220000px;}
.h6{height:42.164648px;}
.h21{height:43.506914px;}
.h2f{height:45.024258px;}
.h35{height:47.980898px;}
.h7{height:48.312422px;}
.ha{height:49.255313px;}
.h12{height:49.992188px;}
.h22{height:51.660000px;}
.h23{height:51.840000px;}
.h24{height:51.876000px;}
.h8{height:53.573906px;}
.h1a{height:57.060000px;}
.h4{height:65.884219px;}
.h20{height:68.976000px;}
.h28{height:69.120000px;}
.h27{height:69.156000px;}
.h14{height:71.613281px;}
.h5{height:75.519844px;}
.h1c{height:75.648938px;}
.h1d{height:77.040000px;}
.hc{height:78.660000px;}
.hd{height:78.840000px;}
.h3{height:83.787539px;}
.h11{height:83.880000px;}
.h30{height:86.256000px;}
.h31{height:103.500000px;}
.hf{height:112.500000px;}
.he{height:112.536000px;}
.h2c{height:113.580000px;}
.h34{height:125.323242px;}
.h33{height:129.014648px;}
.h1b{height:137.160000px;}
.h10{height:137.196000px;}
.h26{height:138.060000px;}
.h13{height:146.340000px;}
.hb{height:146.376000px;}
.h32{height:312.840000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w1b{width:37.620000px;}
.w14{width:37.980000px;}
.w27{width:47.340000px;}
.w21{width:47.700000px;}
.w46{width:54.180000px;}
.w42{width:54.540000px;}
.w36{width:63.396000px;}
.w41{width:63.540000px;}
.w3a{width:64.440000px;}
.w38{width:64.476000px;}
.w3d{width:68.940000px;}
.w3f{width:70.596000px;}
.w3c{width:75.420000px;}
.w3e{width:76.500000px;}
.w35{width:81.000000px;}
.w31{width:82.620000px;}
.w2d{width:82.980000px;}
.w40{width:86.436000px;}
.w1d{width:92.520000px;}
.w16{width:93.240000px;}
.w2b{width:94.680000px;}
.w25{width:95.400000px;}
.w1e{width:97.236000px;}
.w17{width:97.956000px;}
.w2a{width:105.696000px;}
.w24{width:106.416000px;}
.w2c{width:110.916000px;}
.w26{width:111.276000px;}
.wf{width:121.860000px;}
.we{width:122.220000px;}
.wa{width:122.940000px;}
.w1c{width:126.576000px;}
.w15{width:127.296000px;}
.w20{width:129.816000px;}
.w19{width:130.176000px;}
.w47{width:140.436000px;}
.w29{width:141.516000px;}
.w23{width:142.236000px;}
.w37{width:145.080000px;}
.wb{width:145.440000px;}
.w39{width:147.816000px;}
.w3b{width:150.690000px;}
.w34{width:150.870000px;}
.w30{width:151.230000px;}
.wc{width:153.000000px;}
.w4a{width:160.410000px;}
.w10{width:163.440000px;}
.w12{width:163.620000px;}
.w13{width:164.160000px;}
.wd{width:171.540000px;}
.w6{width:177.840000px;}
.w11{width:179.100000px;}
.w49{width:200.010000px;}
.w28{width:217.830000px;}
.w22{width:218.550000px;}
.w45{width:218.910000px;}
.w43{width:221.970000px;}
.w44{width:227.595000px;}
.w9{width:233.640000px;}
.w5{width:233.670000px;}
.w1f{width:234.210000px;}
.w18{width:234.930000px;}
.w8{width:238.860000px;}
.w4{width:238.935000px;}
.w33{width:241.590000px;}
.w2f{width:242.310000px;}
.w32{width:244.335000px;}
.w2e{width:245.055000px;}
.w7{width:245.700000px;}
.w3{width:245.730000px;}
.w48{width:357.915000px;}
.w4b{width:544.785000px;}
.w1a{width:721.590000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x7c{left:1.080000px;}
.x79{left:2.160000px;}
.x41{left:7.740000px;}
.x55{left:9.360000px;}
.x53{left:11.160000px;}
.x4d{left:12.780000px;}
.x5e{left:14.400000px;}
.x36{left:17.355000px;}
.x51{left:18.900000px;}
.x2f{left:21.525000px;}
.x2d{left:23.790000px;}
.x3d{left:25.125000px;}
.x28{left:27.030000px;}
.x5d{left:28.440000px;}
.x6d{left:29.700000px;}
.x44{left:30.780000px;}
.x31{left:31.830000px;}
.x48{left:33.120000px;}
.x39{left:34.410000px;}
.x40{left:35.610000px;}
.x22{left:36.930000px;}
.x33{left:39.630000px;}
.x3e{left:41.505000px;}
.x35{left:43.485000px;}
.x42{left:44.820000px;}
.x5b{left:46.620000px;}
.x59{left:48.090000px;}
.x56{left:50.070000px;}
.x2a{left:51.225000px;}
.x5c{left:53.100000px;}
.x3b{left:56.370000px;}
.x24{left:58.530000px;}
.x57{left:61.560000px;}
.x68{left:66.960000px;}
.x38{left:68.550000px;}
.x25{left:70.410000px;}
.x3f{left:72.690000px;}
.x23{left:75.090000px;}
.x5a{left:80.145000px;}
.x37{left:81.465000px;}
.x58{left:88.425000px;}
.x26{left:93.885000px;}
.x62{left:95.400000px;}
.x65{left:98.100000px;}
.x63{left:101.160000px;}
.x71{left:104.040000px;}
.x6f{left:105.885000px;}
.x64{left:107.820000px;}
.x1{left:127.655987px;}
.xa{left:129.815987px;}
.x78{left:133.236000px;}
.x9{left:138.275987px;}
.x5{left:140.255987px;}
.xd{left:144.035987px;}
.xb{left:147.815987px;}
.x2{left:150.329987px;}
.x3{left:154.469987px;}
.x7{left:156.989987px;}
.x21{left:161.460000px;}
.x2c{left:165.780000px;}
.x32{left:168.660000px;}
.x13{left:170.129987px;}
.x4e{left:176.070000px;}
.xf{left:180.749987px;}
.x6e{left:182.190000px;}
.x27{left:190.080000px;}
.x4b{left:191.559000px;}
.x4{left:193.349987px;}
.x1d{left:194.430000px;}
.x18{left:195.510000px;}
.x1c{left:197.130000px;}
.x16{left:198.210000px;}
.x19{left:200.379000px;}
.xe{left:202.889987px;}
.x1a{left:210.630000px;}
.x61{left:211.710000px;}
.x20{left:220.350000px;}
.x4c{left:221.979000px;}
.xc{left:223.049987px;}
.x1e{left:226.299000px;}
.x1b{left:227.379000px;}
.x1f{left:230.835000px;}
.x14{left:237.639000px;}
.x6{left:241.409987px;}
.x49{left:243.039000px;}
.x7e{left:246.630000px;}
.x67{left:274.575000px;}
.x4a{left:276.699000px;}
.x7a{left:280.335000px;}
.x43{left:293.655000px;}
.x74{left:296.969987px;}
.x7d{left:300.315000px;}
.x8{left:303.014987px;}
.x72{left:328.829987px;}
.x73{left:338.729987px;}
.x6a{left:350.715000px;}
.x15{left:373.395000px;}
.x45{left:386.895000px;}
.x4f{left:394.635000px;}
.x34{left:403.200000px;}
.x3c{left:410.940000px;}
.x29{left:421.200000px;}
.x2e{left:432.720000px;}
.x5f{left:456.405000px;}
.x46{left:484.845000px;}
.x75{left:494.384987px;}
.x10{left:499.784987px;}
.x76{left:501.224987px;}
.x50{left:536.865000px;}
.x12{left:542.264987px;}
.x11{left:552.884987px;}
.x6b{left:562.785000px;}
.x17{left:612.330000px;}
.x70{left:631.770000px;}
.x69{left:634.110000px;}
.x52{left:643.290000px;}
.x7b{left:645.090000px;}
.x3a{left:647.280000px;}
.x2b{left:652.500000px;}
.x30{left:669.240000px;}
.x60{left:698.730000px;}
.x66{left:701.429987px;}
.x47{left:719.790000px;}
.x54{left:738.690000px;}
.x77{left:756.869987px;}
.x6c{left:786.420000px;}
@media print{
.v2{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:18.560000pt;}
.ls6{letter-spacing:-0.688000pt;}
.ls11{letter-spacing:-0.592000pt;}
.ls4{letter-spacing:-0.480000pt;}
.lsc{letter-spacing:-0.320000pt;}
.ls1b{letter-spacing:-0.094933pt;}
.ls1c{letter-spacing:-0.047360pt;}
.ls3{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.040320pt;}
.lsf{letter-spacing:0.047360pt;}
.ls16{letter-spacing:0.071040pt;}
.ls13{letter-spacing:0.154027pt;}
.ls0{letter-spacing:0.160000pt;}
.ls5{letter-spacing:0.183467pt;}
.ls9{letter-spacing:0.230933pt;}
.ls17{letter-spacing:0.231040pt;}
.ls19{letter-spacing:0.256000pt;}
.ls8{letter-spacing:0.265600pt;}
.ls14{letter-spacing:0.290347pt;}
.ls1{letter-spacing:0.320000pt;}
.ls10{letter-spacing:0.408960pt;}
.ls15{letter-spacing:0.687360pt;}
.ls1a{letter-spacing:0.960000pt;}
.ls18{letter-spacing:2.965760pt;}
.lsb{letter-spacing:17.440000pt;}
.ls12{letter-spacing:20.432640pt;}
.lse{letter-spacing:36.432640pt;}
.lsa{letter-spacing:107.472640pt;}
.ls7{letter-spacing:133.691307pt;}
.lsd{letter-spacing:133.712640pt;}
.wsa{word-spacing:-53.120000pt;}
.wsd{word-spacing:-25.312000pt;}
.ws8{word-spacing:-18.720000pt;}
.ws7{word-spacing:-16.000000pt;}
.ws3{word-spacing:-13.600000pt;}
.wsc{word-spacing:-13.545600pt;}
.ws9{word-spacing:-13.510933pt;}
.ws6{word-spacing:-13.463467pt;}
.ws4{word-spacing:-13.280000pt;}
.ws10{word-spacing:-13.232640pt;}
.wsf{word-spacing:-13.185067pt;}
.wsb{word-spacing:-12.688000pt;}
.ws0{word-spacing:-11.040000pt;}
.ws1{word-spacing:-10.760320pt;}
.wse{word-spacing:-9.690880pt;}
.ws2{word-spacing:-8.640000pt;}
.ws5{word-spacing:0.000000pt;}
._40{margin-left:-6.607360pt;}
._5{margin-left:-5.619840pt;}
._1{margin-left:-4.674560pt;}
._4{margin-left:-3.399680pt;}
._3{margin-left:-2.443520pt;}
._0{margin-left:-1.220693pt;}
._2{width:1.221760pt;}
._6{width:2.443520pt;}
._12{width:3.398613pt;}
._f{width:4.355840pt;}
._9{width:5.630720pt;}
._d{width:6.693120pt;}
._1a{width:7.861760pt;}
._23{width:8.817920pt;}
._e{width:10.464640pt;}
._a{width:11.685333pt;}
._25{width:14.343467pt;}
._b{width:15.245440pt;}
._c{width:16.201600pt;}
._27{width:17.104640pt;}
._22{width:18.113920pt;}
._11{width:19.070080pt;}
._10{width:20.398080pt;}
._8{width:21.565653pt;}
._7{width:22.522880pt;}
._18{width:23.532160pt;}
._19{width:24.488320pt;}
._28{width:25.603840pt;}
._1f{width:26.825600pt;}
._1e{width:28.419200pt;}
._17{width:29.852373pt;}
._16{width:30.915840pt;}
._21{width:31.818880pt;}
._13{width:32.881280pt;}
._14{width:33.943680pt;}
._1c{width:34.951893pt;}
._15{width:35.962240pt;}
._32{width:37.290240pt;}
._2f{width:38.618240pt;}
._26{width:39.626453pt;}
._20{width:40.583680pt;}
._38{width:41.592960pt;}
._37{width:42.867840pt;}
._2b{width:43.877120pt;}
._2e{width:45.683200pt;}
._2d{width:46.586240pt;}
._2c{width:47.489280pt;}
._2a{width:48.975573pt;}
._29{width:49.879680pt;}
._24{width:51.526400pt;}
._33{width:52.979627pt;}
._34{width:54.660480pt;}
._3f{width:57.475840pt;}
._3e{width:58.803840pt;}
._1d{width:60.769280pt;}
._35{width:62.787840pt;}
._3a{width:65.072000pt;}
._1b{width:68.042027pt;}
._3b{width:78.033280pt;}
._36{width:84.885760pt;}
._31{width:90.038400pt;}
._30{width:91.153920pt;}
._39{width:94.978560pt;}
._3c{width:203.555840pt;}
._3d{width:311.389440pt;}
.fs5{font-size:34.560000pt;}
.fs0{font-size:42.880000pt;}
.fs4{font-size:53.120000pt;}
.fs2{font-size:58.880000pt;}
.fs3{font-size:64.000000pt;}
.fs1{font-size:74.880000pt;}
.fs6{font-size:75.008000pt;}
.fs7{font-size:112.000000pt;}
.ya1{bottom:-13.213333pt;}
.y0{bottom:0.000000pt;}
.y92{bottom:0.093333pt;}
.y81{bottom:1.120000pt;}
.y7f{bottom:1.920000pt;}
.yb2{bottom:2.880000pt;}
.yc9{bottom:2.906667pt;}
.yc1{bottom:2.920000pt;}
.yae{bottom:4.506667pt;}
.y95{bottom:7.133333pt;}
.y9b{bottom:9.533333pt;}
.yaa{bottom:9.946667pt;}
.ya0{bottom:9.986667pt;}
.y99{bottom:10.173333pt;}
.y9d{bottom:10.333333pt;}
.yb0{bottom:10.560000pt;}
.yc7{bottom:10.586667pt;}
.y85{bottom:11.040000pt;}
.y97{bottom:11.933333pt;}
.y145{bottom:13.760000pt;}
.y7d{bottom:15.040000pt;}
.yb7{bottom:18.080000pt;}
.y1b5{bottom:18.120000pt;}
.yb1{bottom:18.240000pt;}
.yc8{bottom:18.266667pt;}
.yc0{bottom:18.280000pt;}
.y147{bottom:24.160000pt;}
.y148{bottom:24.320000pt;}
.ya9{bottom:24.666667pt;}
.y9f{bottom:33.186667pt;}
.ybc{bottom:33.440000pt;}
.yb6{bottom:33.466667pt;}
.y161{bottom:33.594667pt;}
.yb9{bottom:33.600000pt;}
.yda{bottom:33.626667pt;}
.ybf{bottom:33.640000pt;}
.y168{bottom:47.933333pt;}
.yb5{bottom:48.826667pt;}
.y15b{bottom:48.840000pt;}
.y160{bottom:48.954667pt;}
.ycf{bottom:48.960000pt;}
.yd3{bottom:49.000000pt;}
.y91{bottom:49.693333pt;}
.y4{bottom:50.592000pt;}
.y177{bottom:50.693333pt;}
.yac{bottom:50.946667pt;}
.ya3{bottom:51.906667pt;}
.yad{bottom:54.426667pt;}
.y8e{bottom:59.613333pt;}
.y176{bottom:62.373333pt;}
.ya7{bottom:62.746667pt;}
.yce{bottom:64.160000pt;}
.y15a{bottom:64.200000pt;}
.y15f{bottom:64.314667pt;}
.y93{bottom:66.973333pt;}
.y90{bottom:69.533333pt;}
.y175{bottom:74.053333pt;}
.y167{bottom:78.813333pt;}
.ycd{bottom:79.520000pt;}
.y15e{bottom:79.674667pt;}
.yeb{bottom:79.712000pt;}
.y193{bottom:82.432000pt;}
.y1ae{bottom:83.712000pt;}
.y8c{bottom:84.832000pt;}
.y7b{bottom:85.152000pt;}
.y174{bottom:85.893333pt;}
.yc5{bottom:89.472000pt;}
.yde{bottom:89.792000pt;}
.y1bc{bottom:91.712000pt;}
.ycc{bottom:94.880000pt;}
.yea{bottom:95.072000pt;}
.y192{bottom:97.792000pt;}
.y1ad{bottom:99.072000pt;}
.y8b{bottom:100.192000pt;}
.y7a{bottom:100.352000pt;}
.y40{bottom:105.152000pt;}
.y1bb{bottom:107.072000pt;}
.y128{bottom:109.952000pt;}
.ycb{bottom:110.240000pt;}
.ye9{bottom:110.432000pt;}
.ye4{bottom:112.352000pt;}
.y15d{bottom:112.512000pt;}
.y191{bottom:112.992000pt;}
.y1ac{bottom:114.432000pt;}
.y8a{bottom:115.552000pt;}
.y79{bottom:115.712000pt;}
.y3f{bottom:120.352000pt;}
.y1ba{bottom:122.432000pt;}
.y127{bottom:125.312000pt;}
.ye8{bottom:125.792000pt;}
.y173{bottom:126.786667pt;}
.ye3{bottom:127.712000pt;}
.y190{bottom:128.352000pt;}
.y1ab{bottom:129.792000pt;}
.y166{bottom:129.853333pt;}
.y89{bottom:130.912000pt;}
.y78{bottom:131.072000pt;}
.y3e{bottom:135.706667pt;}
.yc4{bottom:136.186667pt;}
.y1b9{bottom:137.786667pt;}
.y172{bottom:138.466667pt;}
.y126{bottom:140.666667pt;}
.ye7{bottom:142.106667pt;}
.ye2{bottom:143.066667pt;}
.y18f{bottom:143.706667pt;}
.y1aa{bottom:145.146667pt;}
.y88{bottom:145.626667pt;}
.y77{bottom:146.426667pt;}
.y171{bottom:150.146667pt;}
.y3d{bottom:151.066667pt;}
.yc3{bottom:152.186667pt;}
.y1b8{bottom:153.146667pt;}
.y125{bottom:155.866667pt;}
.ye6{bottom:157.466667pt;}
.y87{bottom:157.786667pt;}
.ye1{bottom:158.266667pt;}
.y18e{bottom:159.066667pt;}
.y1a9{bottom:160.346667pt;}
.y165{bottom:160.733333pt;}
.y76{bottom:161.786667pt;}
.y170{bottom:161.826667pt;}
.y3c{bottom:166.426667pt;}
.y86{bottom:170.106667pt;}
.y124{bottom:171.226667pt;}
.ye5{bottom:172.666667pt;}
.ye0{bottom:173.626667pt;}
.y16f{bottom:173.666667pt;}
.y18d{bottom:174.426667pt;}
.y1a8{bottom:175.706667pt;}
.y75{bottom:177.146667pt;}
.y84{bottom:180.186667pt;}
.ya6{bottom:180.320000pt;}
.y3b{bottom:181.786667pt;}
.y123{bottom:186.586667pt;}
.y1b7{bottom:187.866667pt;}
.ydf{bottom:188.986667pt;}
.y18c{bottom:189.626667pt;}
.y1a7{bottom:191.066667pt;}
.y74{bottom:192.346667pt;}
.y3a{bottom:197.146667pt;}
.yc2{bottom:198.906667pt;}
.y122{bottom:201.946667pt;}
.y104{bottom:202.106667pt;}
.y16e{bottom:202.720000pt;}
.y15c{bottom:204.506667pt;}
.y18b{bottom:204.986667pt;}
.y1a6{bottom:206.426667pt;}
.yab{bottom:207.040000pt;}
.y73{bottom:207.706667pt;}
.y1b6{bottom:211.226667pt;}
.y164{bottom:211.746667pt;}
.y39{bottom:212.346667pt;}
.y16d{bottom:214.560000pt;}
.y121{bottom:217.306667pt;}
.y103{bottom:218.106667pt;}
.ya8{bottom:218.400000pt;}
.y18a{bottom:220.346667pt;}
.y1a5{bottom:221.786667pt;}
.y72{bottom:223.066667pt;}
.y16c{bottom:226.240000pt;}
.y38{bottom:227.706667pt;}
.y120{bottom:232.666667pt;}
.y102{bottom:234.106667pt;}
.y1b4{bottom:234.586667pt;}
.y159{bottom:235.226667pt;}
.y189{bottom:235.706667pt;}
.y1a4{bottom:236.986667pt;}
.y16b{bottom:237.920000pt;}
.y71{bottom:238.426667pt;}
.y163{bottom:242.626667pt;}
.y37{bottom:243.066667pt;}
.ybe{bottom:245.466667pt;}
.y11f{bottom:247.906667pt;}
.y16a{bottom:249.600000pt;}
.y188{bottom:251.106667pt;}
.y1a3{bottom:252.386667pt;}
.y70{bottom:253.826667pt;}
.y36{bottom:258.466667pt;}
.y169{bottom:261.440000pt;}
.y11e{bottom:263.266667pt;}
.y101{bottom:265.506667pt;}
.y187{bottom:266.466667pt;}
.y1a2{bottom:267.746667pt;}
.y6f{bottom:269.186667pt;}
.y1b3{bottom:273.186667pt;}
.y35{bottom:273.826667pt;}
.y11d{bottom:278.626667pt;}
.y186{bottom:281.666667pt;}
.y1a1{bottom:283.106667pt;}
.y6e{bottom:284.386667pt;}
.y34{bottom:289.186667pt;}
.ybd{bottom:292.226667pt;}
.y11c{bottom:293.986667pt;}
.y1b2{bottom:296.546667pt;}
.y100{bottom:296.866667pt;}
.y185{bottom:297.026667pt;}
.y1a0{bottom:298.466667pt;}
.y6d{bottom:299.746667pt;}
.y83{bottom:302.146667pt;}
.ya5{bottom:302.240000pt;}
.y33{bottom:304.386667pt;}
.y13c{bottom:307.106667pt;}
.y184{bottom:312.386667pt;}
.y158{bottom:312.546667pt;}
.yff{bottom:312.866667pt;}
.y19f{bottom:313.826667pt;}
.y6c{bottom:315.106667pt;}
.y32{bottom:319.746667pt;}
.y1b1{bottom:319.906667pt;}
.y13b{bottom:323.106667pt;}
.y183{bottom:327.746667pt;}
.y19e{bottom:329.026667pt;}
.ya4{bottom:329.440000pt;}
.y6b{bottom:330.466667pt;}
.y157{bottom:330.786667pt;}
.y31{bottom:335.106667pt;}
.ybb{bottom:338.946667pt;}
.y13a{bottom:339.106667pt;}
.y182{bottom:343.106667pt;}
.y1b0{bottom:343.266667pt;}
.yfe{bottom:344.226667pt;}
.y19d{bottom:344.386667pt;}
.y6a{bottom:345.826667pt;}
.y156{bottom:346.146667pt;}
.y30{bottom:350.466667pt;}
.y139{bottom:355.106667pt;}
.y181{bottom:358.466667pt;}
.yfd{bottom:360.226667pt;}
.y69{bottom:361.026667pt;}
.y155{bottom:361.506667pt;}
.ydd{bottom:364.226667pt;}
.y2f{bottom:365.826667pt;}
.y138{bottom:371.106667pt;}
.y180{bottom:373.666667pt;}
.yfc{bottom:376.226667pt;}
.y68{bottom:376.386667pt;}
.y154{bottom:376.866667pt;}
.y19c{bottom:379.266667pt;}
.y2e{bottom:381.026667pt;}
.y1af{bottom:381.826667pt;}
.yba{bottom:385.506667pt;}
.y137{bottom:387.106667pt;}
.y17f{bottom:389.026667pt;}
.y67{bottom:391.746667pt;}
.y153{bottom:392.066667pt;}
.yfb{bottom:392.226667pt;}
.y2d{bottom:396.386667pt;}
.y82{bottom:402.146667pt;}
.ya2{bottom:402.240000pt;}
.y136{bottom:403.106667pt;}
.y17e{bottom:404.386667pt;}
.y66{bottom:407.106667pt;}
.y152{bottom:407.426667pt;}
.ydc{bottom:410.946667pt;}
.y2c{bottom:411.746667pt;}
.y19b{bottom:417.826667pt;}
.y135{bottom:419.106667pt;}
.y17d{bottom:419.746667pt;}
.y65{bottom:422.466667pt;}
.y151{bottom:422.786667pt;}
.yfa{bottom:423.426667pt;}
.y2b{bottom:427.106667pt;}
.y9e{bottom:429.440000pt;}
.yb8{bottom:432.226667pt;}
.y134{bottom:435.106667pt;}
.y64{bottom:437.826667pt;}
.y150{bottom:438.146667pt;}
.yf9{bottom:439.426667pt;}
.y2a{bottom:442.466667pt;}
.y17c{bottom:450.466667pt;}
.y133{bottom:451.106667pt;}
.y63{bottom:453.026667pt;}
.y14f{bottom:453.506667pt;}
.ydb{bottom:457.506667pt;}
.y29{bottom:457.826667pt;}
.y17b{bottom:465.666667pt;}
.y132{bottom:467.106667pt;}
.y62{bottom:468.386667pt;}
.y14e{bottom:468.866667pt;}
.yf8{bottom:470.786667pt;}
.y19a{bottom:471.906667pt;}
.y28{bottom:473.026667pt;}
.yd9{bottom:473.506667pt;}
.yb4{bottom:478.946667pt;}
.y17a{bottom:481.026667pt;}
.y131{bottom:483.106667pt;}
.y61{bottom:483.746667pt;}
.y14d{bottom:484.066667pt;}
.yf7{bottom:486.786667pt;}
.y27{bottom:488.386667pt;}
.y179{bottom:496.386667pt;}
.y14c{bottom:497.186667pt;}
.y60{bottom:499.133333pt;}
.y80{bottom:502.173333pt;}
.y26{bottom:503.773333pt;}
.y178{bottom:508.893333pt;}
.y199{bottom:510.493333pt;}
.y14b{bottom:513.213333pt;}
.y5f{bottom:514.493333pt;}
.y130{bottom:515.133333pt;}
.y25{bottom:519.133333pt;}
.yd8{bottom:520.253333pt;}
.y98{bottom:524.960000pt;}
.y9a{bottom:525.760000pt;}
.y9c{bottom:525.920000pt;}
.y14a{bottom:529.213333pt;}
.y5e{bottom:529.853333pt;}
.y12f{bottom:531.133333pt;}
.yf6{bottom:533.533333pt;}
.y24{bottom:534.493333pt;}
.yb3{bottom:540.893333pt;}
.y5d{bottom:545.053333pt;}
.y149{bottom:545.213333pt;}
.y12e{bottom:547.133333pt;}
.y23{bottom:549.853333pt;}
.yaf{bottom:556.893333pt;}
.y5c{bottom:560.413333pt;}
.y143{bottom:561.213333pt;}
.y12d{bottom:563.133333pt;}
.y198{bottom:564.573333pt;}
.yf5{bottom:564.893333pt;}
.y22{bottom:565.053333pt;}
.yd7{bottom:566.973333pt;}
.y7e{bottom:572.253333pt;}
.y5b{bottom:575.773333pt;}
.y12c{bottom:579.133333pt;}
.y21{bottom:580.413333pt;}
.yf4{bottom:580.893333pt;}
.y5a{bottom:591.133333pt;}
.y96{bottom:594.080000pt;}
.y12b{bottom:595.133333pt;}
.y20{bottom:595.773333pt;}
.yf3{bottom:596.893333pt;}
.y94{bottom:597.440000pt;}
.y146{bottom:598.653333pt;}
.y59{bottom:606.493333pt;}
.y1f{bottom:611.133333pt;}
.yf2{bottom:612.893333pt;}
.yd6{bottom:613.533333pt;}
.y197{bottom:618.493333pt;}
.y58{bottom:621.853333pt;}
.y1e{bottom:626.493333pt;}
.y12a{bottom:627.133333pt;}
.yf1{bottom:628.893333pt;}
.y144{bottom:635.933333pt;}
.y57{bottom:637.053333pt;}
.y1d{bottom:641.693333pt;}
.y7c{bottom:642.173333pt;}
.y8f{bottom:642.240000pt;}
.y129{bottom:643.133333pt;}
.y56{bottom:652.413333pt;}
.y1c{bottom:657.053333pt;}
.yf0{bottom:660.093333pt;}
.yd5{bottom:660.253333pt;}
.y11b{bottom:662.013333pt;}
.y142{bottom:665.693333pt;}
.y55{bottom:667.773333pt;}
.y8d{bottom:672.000000pt;}
.y1b{bottom:672.413333pt;}
.y196{bottom:672.573333pt;}
.y11a{bottom:677.373333pt;}
.y141{bottom:681.053333pt;}
.y54{bottom:683.133333pt;}
.y1a{bottom:687.773333pt;}
.y119{bottom:692.733333pt;}
.y140{bottom:696.413333pt;}
.y53{bottom:698.493333pt;}
.y19{bottom:703.133333pt;}
.yd4{bottom:706.813333pt;}
.y118{bottom:708.093333pt;}
.y13f{bottom:711.773333pt;}
.y52{bottom:713.693333pt;}
.y18{bottom:718.493333pt;}
.yd2{bottom:722.813333pt;}
.y117{bottom:723.293333pt;}
.y195{bottom:726.493333pt;}
.y13e{bottom:727.133333pt;}
.y51{bottom:729.053333pt;}
.y17{bottom:733.693333pt;}
.y116{bottom:738.653333pt;}
.yef{bottom:738.813333pt;}
.y13d{bottom:742.333333pt;}
.y50{bottom:744.413333pt;}
.y16{bottom:749.053333pt;}
.y115{bottom:754.053333pt;}
.yee{bottom:754.853333pt;}
.y162{bottom:754.880000pt;}
.y4f{bottom:759.813333pt;}
.y15{bottom:764.453333pt;}
.y114{bottom:769.413333pt;}
.yed{bottom:770.853333pt;}
.y4e{bottom:775.173333pt;}
.y14{bottom:779.813333pt;}
.yd1{bottom:784.933333pt;}
.y113{bottom:785.733333pt;}
.yec{bottom:786.853333pt;}
.y4d{bottom:790.533333pt;}
.y13{bottom:795.173333pt;}
.y194{bottom:795.973333pt;}
.y112{bottom:800.933333pt;}
.y4c{bottom:805.733333pt;}
.y12{bottom:810.533333pt;}
.y111{bottom:816.293333pt;}
.y4b{bottom:821.093333pt;}
.y11{bottom:825.733333pt;}
.yd0{bottom:831.653333pt;}
.y4a{bottom:836.453333pt;}
.y10{bottom:845.733333pt;}
.y110{bottom:847.973333pt;}
.y49{bottom:851.813333pt;}
.yf{bottom:861.093333pt;}
.y10f{bottom:863.333333pt;}
.y48{bottom:867.173333pt;}
.ye{bottom:871.813333pt;}
.yca{bottom:878.213333pt;}
.y10e{bottom:879.653333pt;}
.y47{bottom:882.533333pt;}
.yd{bottom:891.813333pt;}
.y10d{bottom:894.853333pt;}
.y46{bottom:897.733333pt;}
.yc{bottom:907.173333pt;}
.y10c{bottom:910.213333pt;}
.y45{bottom:913.093333pt;}
.yb{bottom:917.733333pt;}
.y10b{bottom:925.573333pt;}
.y44{bottom:928.453333pt;}
.ya{bottom:933.093333pt;}
.y10a{bottom:940.933333pt;}
.y43{bottom:943.813333pt;}
.y9{bottom:948.453333pt;}
.y109{bottom:957.253333pt;}
.y42{bottom:959.173333pt;}
.y8{bottom:963.813333pt;}
.y108{bottom:972.613333pt;}
.y41{bottom:974.373333pt;}
.y107{bottom:988.773333pt;}
.y7{bottom:989.733333pt;}
.yc6{bottom:1001.573333pt;}
.y106{bottom:1004.160000pt;}
.y6{bottom:1005.120000pt;}
.y105{bottom:1019.520000pt;}
.y5{bottom:1020.480000pt;}
.y3{bottom:1036.960000pt;}
.y2{bottom:1053.120000pt;}
.y1{bottom:1065.280000pt;}
.h2b{height:15.200000pt;}
.h1f{height:15.360000pt;}
.h29{height:15.392000pt;}
.h9{height:24.384375pt;}
.h15{height:24.640000pt;}
.h2d{height:26.240000pt;}
.h18{height:27.040000pt;}
.h17{height:27.680000pt;}
.h19{height:27.840000pt;}
.h16{height:29.440000pt;}
.h2a{height:30.560000pt;}
.h36{height:30.592000pt;}
.h1e{height:30.720000pt;}
.h25{height:30.752000pt;}
.h2{height:35.342500pt;}
.h2e{height:36.640000pt;}
.h6{height:37.479688pt;}
.h21{height:38.672812pt;}
.h2f{height:40.021563pt;}
.h35{height:42.649687pt;}
.h7{height:42.944375pt;}
.ha{height:43.782500pt;}
.h12{height:44.437500pt;}
.h22{height:45.920000pt;}
.h23{height:46.080000pt;}
.h24{height:46.112000pt;}
.h8{height:47.621250pt;}
.h1a{height:50.720000pt;}
.h4{height:58.563750pt;}
.h20{height:61.312000pt;}
.h28{height:61.440000pt;}
.h27{height:61.472000pt;}
.h14{height:63.656250pt;}
.h5{height:67.128750pt;}
.h1c{height:67.243500pt;}
.h1d{height:68.480000pt;}
.hc{height:69.920000pt;}
.hd{height:70.080000pt;}
.h3{height:74.477812pt;}
.h11{height:74.560000pt;}
.h30{height:76.672000pt;}
.h31{height:92.000000pt;}
.hf{height:100.000000pt;}
.he{height:100.032000pt;}
.h2c{height:100.960000pt;}
.h34{height:111.398438pt;}
.h33{height:114.679688pt;}
.h1b{height:121.920000pt;}
.h10{height:121.952000pt;}
.h26{height:122.720000pt;}
.h13{height:130.080000pt;}
.hb{height:130.112000pt;}
.h32{height:278.080000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w1b{width:33.440000pt;}
.w14{width:33.760000pt;}
.w27{width:42.080000pt;}
.w21{width:42.400000pt;}
.w46{width:48.160000pt;}
.w42{width:48.480000pt;}
.w36{width:56.352000pt;}
.w41{width:56.480000pt;}
.w3a{width:57.280000pt;}
.w38{width:57.312000pt;}
.w3d{width:61.280000pt;}
.w3f{width:62.752000pt;}
.w3c{width:67.040000pt;}
.w3e{width:68.000000pt;}
.w35{width:72.000000pt;}
.w31{width:73.440000pt;}
.w2d{width:73.760000pt;}
.w40{width:76.832000pt;}
.w1d{width:82.240000pt;}
.w16{width:82.880000pt;}
.w2b{width:84.160000pt;}
.w25{width:84.800000pt;}
.w1e{width:86.432000pt;}
.w17{width:87.072000pt;}
.w2a{width:93.952000pt;}
.w24{width:94.592000pt;}
.w2c{width:98.592000pt;}
.w26{width:98.912000pt;}
.wf{width:108.320000pt;}
.we{width:108.640000pt;}
.wa{width:109.280000pt;}
.w1c{width:112.512000pt;}
.w15{width:113.152000pt;}
.w20{width:115.392000pt;}
.w19{width:115.712000pt;}
.w47{width:124.832000pt;}
.w29{width:125.792000pt;}
.w23{width:126.432000pt;}
.w37{width:128.960000pt;}
.wb{width:129.280000pt;}
.w39{width:131.392000pt;}
.w3b{width:133.946667pt;}
.w34{width:134.106667pt;}
.w30{width:134.426667pt;}
.wc{width:136.000000pt;}
.w4a{width:142.586667pt;}
.w10{width:145.280000pt;}
.w12{width:145.440000pt;}
.w13{width:145.920000pt;}
.wd{width:152.480000pt;}
.w6{width:158.080000pt;}
.w11{width:159.200000pt;}
.w49{width:177.786667pt;}
.w28{width:193.626667pt;}
.w22{width:194.266667pt;}
.w45{width:194.586667pt;}
.w43{width:197.306667pt;}
.w44{width:202.306667pt;}
.w9{width:207.680000pt;}
.w5{width:207.706667pt;}
.w1f{width:208.186667pt;}
.w18{width:208.826667pt;}
.w8{width:212.320000pt;}
.w4{width:212.386667pt;}
.w33{width:214.746667pt;}
.w2f{width:215.386667pt;}
.w32{width:217.186667pt;}
.w2e{width:217.826667pt;}
.w7{width:218.400000pt;}
.w3{width:218.426667pt;}
.w48{width:318.146667pt;}
.w4b{width:484.253333pt;}
.w1a{width:641.413333pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x7c{left:0.960000pt;}
.x79{left:1.920000pt;}
.x41{left:6.880000pt;}
.x55{left:8.320000pt;}
.x53{left:9.920000pt;}
.x4d{left:11.360000pt;}
.x5e{left:12.800000pt;}
.x36{left:15.426667pt;}
.x51{left:16.800000pt;}
.x2f{left:19.133333pt;}
.x2d{left:21.146667pt;}
.x3d{left:22.333333pt;}
.x28{left:24.026667pt;}
.x5d{left:25.280000pt;}
.x6d{left:26.400000pt;}
.x44{left:27.360000pt;}
.x31{left:28.293333pt;}
.x48{left:29.440000pt;}
.x39{left:30.586667pt;}
.x40{left:31.653333pt;}
.x22{left:32.826667pt;}
.x33{left:35.226667pt;}
.x3e{left:36.893333pt;}
.x35{left:38.653333pt;}
.x42{left:39.840000pt;}
.x5b{left:41.440000pt;}
.x59{left:42.746667pt;}
.x56{left:44.506667pt;}
.x2a{left:45.533333pt;}
.x5c{left:47.200000pt;}
.x3b{left:50.106667pt;}
.x24{left:52.026667pt;}
.x57{left:54.720000pt;}
.x68{left:59.520000pt;}
.x38{left:60.933333pt;}
.x25{left:62.586667pt;}
.x3f{left:64.613333pt;}
.x23{left:66.746667pt;}
.x5a{left:71.240000pt;}
.x37{left:72.413333pt;}
.x58{left:78.600000pt;}
.x26{left:83.453333pt;}
.x62{left:84.800000pt;}
.x65{left:87.200000pt;}
.x63{left:89.920000pt;}
.x71{left:92.480000pt;}
.x6f{left:94.120000pt;}
.x64{left:95.840000pt;}
.x1{left:113.471988pt;}
.xa{left:115.391988pt;}
.x78{left:118.432000pt;}
.x9{left:122.911988pt;}
.x5{left:124.671988pt;}
.xd{left:128.031988pt;}
.xb{left:131.391988pt;}
.x2{left:133.626655pt;}
.x3{left:137.306655pt;}
.x7{left:139.546655pt;}
.x21{left:143.520000pt;}
.x2c{left:147.360000pt;}
.x32{left:149.920000pt;}
.x13{left:151.226655pt;}
.x4e{left:156.506667pt;}
.xf{left:160.666655pt;}
.x6e{left:161.946667pt;}
.x27{left:168.960000pt;}
.x4b{left:170.274667pt;}
.x4{left:171.866655pt;}
.x1d{left:172.826667pt;}
.x18{left:173.786667pt;}
.x1c{left:175.226667pt;}
.x16{left:176.186667pt;}
.x19{left:178.114667pt;}
.xe{left:180.346655pt;}
.x1a{left:187.226667pt;}
.x61{left:188.186667pt;}
.x20{left:195.866667pt;}
.x4c{left:197.314667pt;}
.xc{left:198.266655pt;}
.x1e{left:201.154667pt;}
.x1b{left:202.114667pt;}
.x1f{left:205.186667pt;}
.x14{left:211.234667pt;}
.x6{left:214.586655pt;}
.x49{left:216.034667pt;}
.x7e{left:219.226667pt;}
.x67{left:244.066667pt;}
.x4a{left:245.954667pt;}
.x7a{left:249.186667pt;}
.x43{left:261.026667pt;}
.x74{left:263.973322pt;}
.x7d{left:266.946667pt;}
.x8{left:269.346655pt;}
.x72{left:292.293322pt;}
.x73{left:301.093322pt;}
.x6a{left:311.746667pt;}
.x15{left:331.906667pt;}
.x45{left:343.906667pt;}
.x4f{left:350.786667pt;}
.x34{left:358.400000pt;}
.x3c{left:365.280000pt;}
.x29{left:374.400000pt;}
.x2e{left:384.640000pt;}
.x5f{left:405.693333pt;}
.x46{left:430.973333pt;}
.x75{left:439.453322pt;}
.x10{left:444.253322pt;}
.x76{left:445.533322pt;}
.x50{left:477.213333pt;}
.x12{left:482.013322pt;}
.x11{left:491.453322pt;}
.x6b{left:500.253333pt;}
.x17{left:544.293333pt;}
.x70{left:561.573333pt;}
.x69{left:563.653333pt;}
.x52{left:571.813333pt;}
.x7b{left:573.413333pt;}
.x3a{left:575.360000pt;}
.x2b{left:580.000000pt;}
.x30{left:594.880000pt;}
.x60{left:621.093333pt;}
.x66{left:623.493322pt;}
.x47{left:639.813333pt;}
.x54{left:656.613333pt;}
.x77{left:672.773322pt;}
.x6c{left:699.040000pt;}
}




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