
    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_98aac0f2d5ffa74f42a475d0.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_e4949adbe8629ae61dcce371.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_25c824f0e7b4bdbd06876c46.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.104004;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_2cd1efec4b6b25518ebbb9e8.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.691406;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_1b48c2c58b32847fb7c585a5.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_4685c43299e3d0c4483d4502.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.691406;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_fdfa3beead45721a2d51137e.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.104004;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_a5db5f3e28e92960d003c73e.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.694336;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_c76098ae173c61c3fed3a1df.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_401dd35f94a5186896fcd10d.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.727539;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_583f6bbccbaf8786a6a2fd1b.woff2')format("woff");}.ffb{font-family:ffb;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;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-27.000000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:24.120000px;}
.lsb{letter-spacing:-16.440000px;}
.lsc{letter-spacing:-1.296000px;}
.lsd{letter-spacing:-0.720000px;}
.ls12{letter-spacing:-0.648000px;}
.lse{letter-spacing:-0.576000px;}
.lsf{letter-spacing:-0.360000px;}
.ls15{letter-spacing:-0.288000px;}
.ls9{letter-spacing:-0.216000px;}
.ls6{letter-spacing:-0.144000px;}
.ls19{letter-spacing:-0.126000px;}
.ls18{letter-spacing:-0.108000px;}
.ls1d{letter-spacing:-0.090600px;}
.ls11{letter-spacing:-0.072000px;}
.ls1e{letter-spacing:-0.045360px;}
.ls16{letter-spacing:-0.018000px;}
.ls3{letter-spacing:0.000000px;}
.ls1a{letter-spacing:0.018000px;}
.ls1b{letter-spacing:0.021960px;}
.ls4{letter-spacing:0.036000px;}
.ls1c{letter-spacing:0.045360px;}
.ls0{letter-spacing:0.072000px;}
.ls7{letter-spacing:0.120000px;}
.ls17{letter-spacing:0.126000px;}
.ls5{letter-spacing:0.144000px;}
.ls1{letter-spacing:0.180000px;}
.ls13{letter-spacing:0.192000px;}
.ls2{letter-spacing:0.300000px;}
.lsa{letter-spacing:0.360000px;}
.ls10{letter-spacing:0.432000px;}
.ls28{letter-spacing:0.720000px;}
.ls2b{letter-spacing:2.880000px;}
.ls26{letter-spacing:3.600000px;}
.ls2a{letter-spacing:5.760000px;}
.ls25{letter-spacing:6.120000px;}
.ls1f{letter-spacing:6.840000px;}
.ls8{letter-spacing:10.800000px;}
.ls23{letter-spacing:11.520000px;}
.ls20{letter-spacing:11.880000px;}
.ls27{letter-spacing:13.680000px;}
.ls29{letter-spacing:19.080000px;}
.ls24{letter-spacing:26.064000px;}
.ls21{letter-spacing:54.264000px;}
.ls22{letter-spacing:62.064000px;}
.ls14{letter-spacing:849.231120px;}
.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;}
}
.ws20{word-spacing:-72.000000px;}
.ws19{word-spacing:-65.880000px;}
.wsf{word-spacing:-54.000000px;}
.ws21{word-spacing:-48.600000px;}
.ws2{word-spacing:-27.072000px;}
.ws1{word-spacing:-27.000000px;}
.ws6{word-spacing:-18.144000px;}
.wsd{word-spacing:-18.072000px;}
.ws0{word-spacing:-18.000000px;}
.wsb{word-spacing:-17.928000px;}
.ws5{word-spacing:-17.856000px;}
.ws8{word-spacing:-17.784000px;}
.wsc{word-spacing:-17.712000px;}
.wsa{word-spacing:-17.640000px;}
.ws9{word-spacing:-17.424000px;}
.ws1f{word-spacing:-17.352000px;}
.ws22{word-spacing:-17.280000px;}
.ws1a{word-spacing:-16.650000px;}
.ws1c{word-spacing:-16.515360px;}
.ws1b{word-spacing:-16.470000px;}
.ws1e{word-spacing:-16.424640px;}
.ws1d{word-spacing:-16.379400px;}
.ws18{word-spacing:-15.030000px;}
.ws16{word-spacing:-13.644000px;}
.ws12{word-spacing:-13.626000px;}
.ws17{word-spacing:-13.518000px;}
.ws11{word-spacing:-13.500000px;}
.wse{word-spacing:-13.482000px;}
.ws14{word-spacing:-13.392000px;}
.ws15{word-spacing:-13.374000px;}
.ws10{word-spacing:-13.356000px;}
.ws13{word-spacing:-13.284000px;}
.ws4{word-spacing:-12.150000px;}
.ws3{word-spacing:-11.970000px;}
.ws7{word-spacing:0.000000px;}
._4{margin-left:-36.192000px;}
._26{margin-left:-34.992000px;}
._2b{margin-left:-27.336000px;}
._28{margin-left:-24.696000px;}
._0{margin-left:-23.640000px;}
._2{margin-left:-20.568000px;}
._27{margin-left:-19.248000px;}
._23{margin-left:-5.400000px;}
._1{margin-left:-4.392000px;}
._10{margin-left:-3.384000px;}
._a{margin-left:-2.328000px;}
._5{margin-left:-1.008000px;}
._6{width:1.152000px;}
._b{width:2.184000px;}
._9{width:3.192000px;}
._8{width:4.224000px;}
._d{width:5.472000px;}
._e{width:6.480000px;}
._14{width:7.680000px;}
._13{width:8.688000px;}
._15{width:9.720000px;}
._16{width:10.728000px;}
._17{width:11.760000px;}
._f{width:13.368000px;}
._11{width:14.784000px;}
._1b{width:15.936000px;}
._1e{width:16.944000px;}
._12{width:19.296000px;}
._22{width:20.520000px;}
._18{width:21.816000px;}
._19{width:23.040000px;}
._1a{width:24.408000px;}
._20{width:25.488000px;}
._21{width:26.664000px;}
._7{width:31.320000px;}
._2a{width:33.048000px;}
._25{width:34.416000px;}
._24{width:35.424000px;}
._2d{width:38.088000px;}
._2c{width:39.096000px;}
._2e{width:40.320000px;}
._2f{width:41.328000px;}
._3{width:43.200000px;}
._29{width:44.472000px;}
._1c{width:46.920000px;}
._1f{width:849.231120px;}
._c{width:2312.784000px;}
._1d{width:3792.384000px;}
.fc3{color:rgb(0,176,240);}
.fc1{color:rgb(51,102,51);}
.fc4{color:rgb(51,51,51);}
.fc2{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:47.880000px;}
.fs6{font-size:54.000000px;}
.fs1{font-size:60.120000px;}
.fs5{font-size:65.880000px;}
.fs7{font-size:69.120000px;}
.fs0{font-size:72.000000px;}
.fs3{font-size:108.000000px;}
.fs2{font-size:191.880000px;}
.yba{bottom:-5.670000px;}
.y0{bottom:0.000000px;}
.y28{bottom:3.420000px;}
.ya7{bottom:3.870000px;}
.ya4{bottom:3.960000px;}
.y97{bottom:4.050000px;}
.ybf{bottom:4.500000px;}
.y16a{bottom:4.530000px;}
.y94{bottom:5.130000px;}
.ybd{bottom:5.580000px;}
.y96{bottom:6.210000px;}
.ybb{bottom:6.660000px;}
.yae{bottom:13.680000px;}
.yc3{bottom:15.750000px;}
.yad{bottom:23.400000px;}
.y9c{bottom:24.300000px;}
.y93{bottom:25.380000px;}
.yc2{bottom:27.000000px;}
.y2b{bottom:46.530000px;}
.y8f{bottom:58.050000px;}
.y192{bottom:81.090000px;}
.y52{bottom:83.340000px;}
.yb7{bottom:86.850000px;}
.y26{bottom:89.550000px;}
.y6b{bottom:90.360000px;}
.y121{bottom:90.630000px;}
.y1a1{bottom:96.120000px;}
.y17f{bottom:103.590000px;}
.yb6{bottom:103.860000px;}
.y191{bottom:106.650000px;}
.y120{bottom:107.010000px;}
.y51{bottom:108.900000px;}
.y6a{bottom:111.150000px;}
.yf5{bottom:112.410000px;}
.y25{bottom:115.020000px;}
.y1bf{bottom:118.620000px;}
.y1a0{bottom:121.590000px;}
.y16e{bottom:121.770000px;}
.y16f{bottom:121.950000px;}
.yb5{bottom:123.390000px;}
.yf4{bottom:128.790000px;}
.y17e{bottom:129.150000px;}
.y11f{bottom:129.510000px;}
.y190{bottom:132.120000px;}
.y50{bottom:134.370000px;}
.y69{bottom:136.620000px;}
.y16d{bottom:140.040000px;}
.y24{bottom:140.490000px;}
.yb4{bottom:142.920000px;}
.y1be{bottom:144.090000px;}
.y19f{bottom:147.150000px;}
.yf3{bottom:151.290000px;}
.y11e{bottom:152.010000px;}
.y17d{bottom:154.620000px;}
.y18f{bottom:157.590000px;}
.y4f{bottom:159.840000px;}
.y68{bottom:162.090000px;}
.yb3{bottom:162.360000px;}
.y16c{bottom:162.540000px;}
.y23{bottom:166.050000px;}
.y1bd{bottom:169.650000px;}
.y19e{bottom:172.620000px;}
.yf2{bottom:173.790000px;}
.y11d{bottom:174.510000px;}
.y17c{bottom:180.090000px;}
.yb2{bottom:181.890000px;}
.y18e{bottom:183.150000px;}
.y16b{bottom:185.040000px;}
.y4e{bottom:185.400000px;}
.y67{bottom:187.650000px;}
.y22{bottom:191.520000px;}
.y1aa{bottom:192.330000px;}
.y1bc{bottom:195.120000px;}
.yf1{bottom:196.290000px;}
.y11c{bottom:197.010000px;}
.y19d{bottom:198.090000px;}
.yb1{bottom:201.420000px;}
.y17b{bottom:205.650000px;}
.y169{bottom:207.540000px;}
.y18d{bottom:208.620000px;}
.y4d{bottom:210.870000px;}
.y66{bottom:213.150000px;}
.y21{bottom:217.020000px;}
.yf0{bottom:218.820000px;}
.y11b{bottom:220.350000px;}
.y1bb{bottom:220.620000px;}
.yb0{bottom:220.860000px;}
.y19c{bottom:223.680000px;}
.y168{bottom:230.070000px;}
.y17a{bottom:231.150000px;}
.y18c{bottom:234.120000px;}
.y8c{bottom:235.830000px;}
.y4c{bottom:236.370000px;}
.y65{bottom:238.620000px;}
.yaf{bottom:240.390000px;}
.yef{bottom:241.320000px;}
.y11a{bottom:242.850000px;}
.y1ba{bottom:246.180000px;}
.y19b{bottom:249.150000px;}
.y167{bottom:252.570000px;}
.y8b{bottom:256.620000px;}
.y18b{bottom:259.680000px;}
.yac{bottom:259.920000px;}
.y4b{bottom:261.930000px;}
.y20{bottom:262.740000px;}
.yee{bottom:263.820000px;}
.y64{bottom:264.180000px;}
.y119{bottom:265.350000px;}
.y1b9{bottom:271.650000px;}
.y19a{bottom:274.620000px;}
.y166{bottom:275.070000px;}
.y8a{bottom:282.180000px;}
.y142{bottom:283.080000px;}
.y18a{bottom:285.150000px;}
.yed{bottom:286.320000px;}
.y4a{bottom:287.400000px;}
.y1f{bottom:288.210000px;}
.y118{bottom:288.570000px;}
.y63{bottom:289.650000px;}
.y1b8{bottom:297.120000px;}
.y165{bottom:297.570000px;}
.yab{bottom:298.920000px;}
.y199{bottom:300.180000px;}
.y141{bottom:301.350000px;}
.y89{bottom:307.650000px;}
.yec{bottom:308.820000px;}
.y189{bottom:310.620000px;}
.y49{bottom:312.870000px;}
.ycf{bottom:314.670000px;}
.y62{bottom:315.120000px;}
.yaa{bottom:318.450000px;}
.y164{bottom:320.070000px;}
.y1b7{bottom:322.680000px;}
.y140{bottom:323.850000px;}
.y117{bottom:325.650000px;}
.yeb{bottom:331.320000px;}
.y1e{bottom:331.770000px;}
.y1a9{bottom:332.940000px;}
.y88{bottom:333.120000px;}
.yce{bottom:334.920000px;}
.y188{bottom:336.180000px;}
.ya9{bottom:337.890000px;}
.y48{bottom:338.430000px;}
.y61{bottom:340.680000px;}
.y163{bottom:342.570000px;}
.y1c3{bottom:343.650000px;}
.y13f{bottom:346.350000px;}
.y1b6{bottom:348.150000px;}
.y116{bottom:351.120000px;}
.yea{bottom:353.820000px;}
.ycd{bottom:354.450000px;}
.y1d{bottom:357.330000px;}
.ya8{bottom:357.420000px;}
.y87{bottom:358.680000px;}
.y187{bottom:361.650000px;}
.y47{bottom:363.900000px;}
.y162{bottom:365.070000px;}
.y60{bottom:366.150000px;}
.y13e{bottom:368.850000px;}
.y1c2{bottom:369.120000px;}
.y1b5{bottom:373.620000px;}
.ye9{bottom:376.320000px;}
.y198{bottom:376.680000px;}
.ya6{bottom:376.950000px;}
.y86{bottom:384.150000px;}
.y186{bottom:387.120000px;}
.y161{bottom:387.570000px;}
.y46{bottom:389.370000px;}
.y13d{bottom:391.350000px;}
.y5f{bottom:391.620000px;}
.y1c1{bottom:394.680000px;}
.y115{bottom:395.040000px;}
.ya5{bottom:396.390000px;}
.ye8{bottom:398.820000px;}
.y1b4{bottom:399.180000px;}
.ycc{bottom:399.450000px;}
.y1c{bottom:400.800000px;}
.y197{bottom:402.150000px;}
.y85{bottom:409.620000px;}
.y160{bottom:410.070000px;}
.y185{bottom:412.680000px;}
.y13c{bottom:413.850000px;}
.y114{bottom:414.570000px;}
.y45{bottom:414.930000px;}
.ya3{bottom:416.640000px;}
.y5e{bottom:417.180000px;}
.ye7{bottom:421.320000px;}
.ycb{bottom:421.950000px;}
.y1b3{bottom:424.650000px;}
.y196{bottom:427.620000px;}
.y15f{bottom:432.570000px;}
.y1b{bottom:433.020000px;}
.y179{bottom:435.180000px;}
.y13b{bottom:436.350000px;}
.y113{bottom:437.070000px;}
.y184{bottom:438.150000px;}
.y44{bottom:440.400000px;}
.y5d{bottom:442.650000px;}
.ye6{bottom:443.820000px;}
.yca{bottom:444.450000px;}
.y1b2{bottom:450.120000px;}
.ya2{bottom:450.750000px;}
.y1a{bottom:451.830000px;}
.y84{bottom:453.090000px;}
.y195{bottom:453.180000px;}
.y15e{bottom:455.070000px;}
.y13a{bottom:458.850000px;}
.y112{bottom:459.570000px;}
.y183{bottom:463.620000px;}
.y43{bottom:465.870000px;}
.ye5{bottom:466.320000px;}
.yc9{bottom:466.950000px;}
.y5c{bottom:468.120000px;}
.y1b1{bottom:475.680000px;}
.y19{bottom:477.300000px;}
.y15d{bottom:477.570000px;}
.y178{bottom:478.560000px;}
.y194{bottom:478.650000px;}
.y139{bottom:481.350000px;}
.y111{bottom:482.070000px;}
.y182{bottom:489.180000px;}
.yc8{bottom:489.450000px;}
.ye4{bottom:489.540000px;}
.y42{bottom:491.430000px;}
.y5b{bottom:493.680000px;}
.ya1{bottom:494.130000px;}
.y83{bottom:496.650000px;}
.y15c{bottom:500.070000px;}
.y1b0{bottom:501.060000px;}
.y138{bottom:503.850000px;}
.y1a8{bottom:504.120000px;}
.y110{bottom:504.570000px;}
.y18{bottom:509.520000px;}
.ya0{bottom:511.140000px;}
.yc7{bottom:511.950000px;}
.y1c0{bottom:514.560000px;}
.y181{bottom:514.650000px;}
.y41{bottom:516.900000px;}
.y5a{bottom:519.150000px;}
.y177{bottom:521.940000px;}
.y193{bottom:522.030000px;}
.y82{bottom:522.120000px;}
.y15b{bottom:522.570000px;}
.y137{bottom:526.350000px;}
.ye3{bottom:526.620000px;}
.y10f{bottom:527.070000px;}
.y17{bottom:528.330000px;}
.y1a7{bottom:529.680000px;}
.y9f{bottom:531.420000px;}
.yc6{bottom:534.480000px;}
.y180{bottom:540.120000px;}
.y40{bottom:542.370000px;}
.y59{bottom:544.620000px;}
.y15a{bottom:545.070000px;}
.y81{bottom:547.680000px;}
.y136{bottom:548.850000px;}
.y10e{bottom:549.570000px;}
.y9e{bottom:551.670000px;}
.ye2{bottom:552.180000px;}
.y1a6{bottom:555.150000px;}
.yc5{bottom:556.980000px;}
.y16{bottom:560.550000px;}
.y176{bottom:565.680000px;}
.y159{bottom:567.570000px;}
.y3f{bottom:567.930000px;}
.y1af{bottom:570.000000px;}
.y58{bottom:570.180000px;}
.y135{bottom:571.350000px;}
.y9b{bottom:571.920000px;}
.y10d{bottom:572.070000px;}
.y80{bottom:573.150000px;}
.y15{bottom:579.270000px;}
.yc4{bottom:579.480000px;}
.y1a5{bottom:580.620000px;}
.y158{bottom:590.070000px;}
.y175{bottom:591.150000px;}
.y9d{bottom:592.170000px;}
.y134{bottom:593.850000px;}
.y10c{bottom:594.570000px;}
.y57{bottom:595.650000px;}
.y7f{bottom:598.620000px;}
.yc1{bottom:601.980000px;}
.y1a4{bottom:606.180000px;}
.y3e{bottom:611.220000px;}
.y14{bottom:611.580000px;}
.y9a{bottom:612.420000px;}
.y157{bottom:612.570000px;}
.y1ae{bottom:613.650000px;}
.y133{bottom:616.350000px;}
.y174{bottom:616.620000px;}
.y10b{bottom:617.070000px;}
.ye1{bottom:621.120000px;}
.y7e{bottom:624.180000px;}
.y13{bottom:630.300000px;}
.y1a3{bottom:631.650000px;}
.y99{bottom:632.670000px;}
.y156{bottom:635.100000px;}
.y132{bottom:638.880000px;}
.y56{bottom:639.060000px;}
.y1ad{bottom:639.150000px;}
.y10a{bottom:639.600000px;}
.y173{bottom:642.210000px;}
.yc0{bottom:646.980000px;}
.y7d{bottom:649.680000px;}
.y98{bottom:652.920000px;}
.y12{bottom:655.800000px;}
.y1a2{bottom:657.150000px;}
.y155{bottom:657.600000px;}
.y131{bottom:661.380000px;}
.y109{bottom:662.100000px;}
.ye0{bottom:664.620000px;}
.y1ac{bottom:664.710000px;}
.y172{bottom:667.680000px;}
.ybe{bottom:670.200000px;}
.y92{bottom:673.980000px;}
.y7c{bottom:675.150000px;}
.y3d{bottom:675.420000px;}
.y154{bottom:680.100000px;}
.y55{bottom:682.710000px;}
.y130{bottom:683.880000px;}
.y108{bottom:684.600000px;}
.y11{bottom:688.110000px;}
.ybc{bottom:692.700000px;}
.y171{bottom:693.150000px;}
.y95{bottom:694.230000px;}
.y3c{bottom:700.710000px;}
.y153{bottom:702.600000px;}
.y12f{bottom:706.380000px;}
.y10{bottom:706.830000px;}
.y107{bottom:707.100000px;}
.y1ab{bottom:708.000000px;}
.y54{bottom:708.180000px;}
.yb9{bottom:717.450000px;}
.y170{bottom:718.710000px;}
.y152{bottom:725.100000px;}
.y7b{bottom:726.180000px;}
.y12e{bottom:728.880000px;}
.y106{bottom:729.600000px;}
.y91{bottom:731.310000px;}
.ydf{bottom:733.650000px;}
.yf{bottom:739.050000px;}
.y3b{bottom:744.180000px;}
.y151{bottom:747.600000px;}
.y12d{bottom:751.380000px;}
.y53{bottom:751.470000px;}
.y7a{bottom:751.650000px;}
.y105{bottom:752.100000px;}
.y90{bottom:756.780000px;}
.ye{bottom:757.860000px;}
.yde{bottom:759.210000px;}
.y3a{bottom:769.650000px;}
.y150{bottom:770.100000px;}
.y12c{bottom:773.880000px;}
.y104{bottom:774.600000px;}
.y79{bottom:777.210000px;}
.yb8{bottom:782.100000px;}
.y8e{bottom:782.280000px;}
.yd{bottom:783.330000px;}
.ydd{bottom:784.680000px;}
.y14f{bottom:792.600000px;}
.y39{bottom:795.210000px;}
.y12b{bottom:796.380000px;}
.y103{bottom:797.100000px;}
.y78{bottom:802.680000px;}
.y8d{bottom:807.840000px;}
.ydc{bottom:810.150000px;}
.y14e{bottom:815.100000px;}
.yc{bottom:815.550000px;}
.y12a{bottom:818.880000px;}
.y102{bottom:819.600000px;}
.y38{bottom:820.680000px;}
.y77{bottom:828.150000px;}
.ydb{bottom:835.710000px;}
.y14d{bottom:837.600000px;}
.y129{bottom:841.380000px;}
.y101{bottom:842.100000px;}
.y37{bottom:846.150000px;}
.yb{bottom:852.180000px;}
.y76{bottom:853.710000px;}
.y14c{bottom:860.100000px;}
.yda{bottom:861.180000px;}
.y128{bottom:863.880000px;}
.y100{bottom:864.600000px;}
.y36{bottom:871.710000px;}
.ya{bottom:877.650000px;}
.y75{bottom:879.180000px;}
.y14b{bottom:882.600000px;}
.y127{bottom:886.380000px;}
.yd9{bottom:886.650000px;}
.yff{bottom:887.100000px;}
.y35{bottom:897.180000px;}
.y9{bottom:903.120000px;}
.y74{bottom:904.650000px;}
.y14a{bottom:905.100000px;}
.y126{bottom:908.880000px;}
.yfe{bottom:909.600000px;}
.yd8{bottom:912.210000px;}
.y34{bottom:922.650000px;}
.y149{bottom:927.600000px;}
.y73{bottom:930.210000px;}
.y125{bottom:931.380000px;}
.yfd{bottom:932.100000px;}
.yd7{bottom:937.680000px;}
.y33{bottom:948.210000px;}
.y8{bottom:948.660000px;}
.y148{bottom:950.100000px;}
.y124{bottom:953.880000px;}
.yfc{bottom:954.600000px;}
.y72{bottom:955.680000px;}
.yd6{bottom:963.150000px;}
.y147{bottom:972.600000px;}
.y32{bottom:973.680000px;}
.y123{bottom:976.380000px;}
.yfb{bottom:977.100000px;}
.y7{bottom:979.710000px;}
.y71{bottom:981.150000px;}
.yd5{bottom:988.710000px;}
.y146{bottom:995.820000px;}
.y122{bottom:998.880000px;}
.y31{bottom:999.150000px;}
.yfa{bottom:999.600000px;}
.y70{bottom:1006.710000px;}
.yd4{bottom:1014.180000px;}
.y145{bottom:1018.320000px;}
.yf9{bottom:1022.100000px;}
.y30{bottom:1024.710000px;}
.y6{bottom:1026.870000px;}
.y6f{bottom:1032.180000px;}
.yd3{bottom:1039.650000px;}
.y144{bottom:1040.820000px;}
.yf8{bottom:1044.600000px;}
.y2f{bottom:1050.180000px;}
.y5{bottom:1052.520000px;}
.y6e{bottom:1057.680000px;}
.y143{bottom:1064.160000px;}
.yf7{bottom:1067.130000px;}
.y4{bottom:1073.070000px;}
.y2e{bottom:1075.680000px;}
.yd2{bottom:1083.150000px;}
.y6d{bottom:1083.240000px;}
.yf6{bottom:1090.350000px;}
.y3{bottom:1100.160000px;}
.y2d{bottom:1101.240000px;}
.yd1{bottom:1126.530000px;}
.y6c{bottom:1126.620000px;}
.y2c{bottom:1126.710000px;}
.y2{bottom:1144.980000px;}
.y27{bottom:1145.610000px;}
.y2a{bottom:1152.000000px;}
.yd0{bottom:1152.180000px;}
.y1{bottom:1167.030000px;}
.y29{bottom:1177.740000px;}
.ha{height:17.370000px;}
.h1b{height:19.440000px;}
.h1a{height:19.530000px;}
.h13{height:20.250000px;}
.h18{height:20.272500px;}
.h12{height:22.500000px;}
.h1f{height:22.522500px;}
.h20{height:22.530000px;}
.h1d{height:24.750000px;}
.h14{height:36.571289px;}
.hf{height:36.834961px;}
.h16{height:37.494141px;}
.h1c{height:39.000000px;}
.h17{height:40.500000px;}
.h10{height:42.750000px;}
.h9{height:42.923672px;}
.h22{height:44.616973px;}
.hc{height:44.938652px;}
.h1e{height:45.000000px;}
.h11{height:47.961914px;}
.h15{height:48.410156px;}
.h6{height:49.992188px;}
.hb{height:53.397598px;}
.h3{height:53.896641px;}
.h19{height:58.513535px;}
.h21{height:59.060391px;}
.h5{height:63.949219px;}
.h2{height:64.546875px;}
.h8{height:66.646230px;}
.h7{height:95.923828px;}
.h4{height:129.949980px;}
.hd{height:892.980000px;}
.he{height:893.250000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.wc{width:48.150000px;}
.wd{width:48.172500px;}
.wb{width:48.240000px;}
.wa{width:48.270000px;}
.wf{width:51.480000px;}
.w16{width:53.100000px;}
.w17{width:53.190000px;}
.w15{width:53.212500px;}
.w13{width:57.150000px;}
.w14{width:58.770000px;}
.w10{width:63.720000px;}
.w1e{width:65.880000px;}
.w20{width:65.902500px;}
.w1f{width:65.970000px;}
.w1d{width:66.000000px;}
.w11{width:67.410000px;}
.w12{width:67.500000px;}
.w22{width:78.322500px;}
.w18{width:80.040000px;}
.w19{width:80.460000px;}
.w5{width:85.050000px;}
.w2f{width:85.080000px;}
.w28{width:88.560000px;}
.w29{width:88.590000px;}
.w2a{width:88.650000px;}
.w25{width:100.800000px;}
.w23{width:100.890000px;}
.w2{width:118.980000px;}
.w1a{width:127.440000px;}
.w24{width:127.560000px;}
.we{width:144.660000px;}
.w8{width:192.870000px;}
.w6{width:192.900000px;}
.w7{width:192.960000px;}
.w9{width:192.990000px;}
.w1c{width:197.730000px;}
.w1b{width:197.850000px;}
.w21{width:228.630000px;}
.w2e{width:255.180000px;}
.w27{width:265.800000px;}
.w26{width:271.185000px;}
.w2d{width:271.200000px;}
.w2c{width:292.440000px;}
.w2b{width:303.150000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.w3{width:1262.880000px;}
.w4{width:1263.000000px;}
.x0{left:0.000000px;}
.x9{left:7.200000px;}
.x1a{left:9.450000px;}
.x27{left:10.530000px;}
.x28{left:12.240000px;}
.xb{left:13.590000px;}
.x18{left:15.390000px;}
.x2a{left:17.370000px;}
.x3e{left:18.630000px;}
.x11{left:20.070000px;}
.x2f{left:22.050000px;}
.x66{left:23.220000px;}
.x33{left:25.110000px;}
.x26{left:27.090000px;}
.x76{left:28.260000px;}
.x29{left:30.060000px;}
.xf{left:31.860000px;}
.x15{left:32.940000px;}
.x79{left:34.020000px;}
.x13{left:35.100000px;}
.x59{left:37.710000px;}
.x57{left:39.510000px;}
.x7d{left:41.220000px;}
.x58{left:42.930000px;}
.x6e{left:44.400000px;}
.x7b{left:45.540000px;}
.x8a{left:47.340000px;}
.x70{left:48.360000px;}
.x61{left:50.220000px;}
.x3d{left:51.840000px;}
.x60{left:53.550000px;}
.x64{left:55.260000px;}
.x6c{left:57.360000px;}
.x6d{left:58.440000px;}
.x3f{left:59.940000px;}
.x6f{left:61.860000px;}
.x42{left:63.720000px;}
.x47{left:64.740000px;}
.x4c{left:66.810000px;}
.x97{left:69.120000px;}
.x62{left:70.860000px;}
.x99{left:72.180000px;}
.x41{left:73.260000px;}
.x1{left:74.430000px;}
.xd{left:75.990000px;}
.x4b{left:77.520000px;}
.x49{left:79.740000px;}
.x94{left:81.540000px;}
.x44{left:83.460000px;}
.x5a{left:84.900000px;}
.x7c{left:86.130000px;}
.x69{left:87.510000px;}
.x7f{left:89.100000px;}
.x68{left:90.570000px;}
.x84{left:91.620000px;}
.x7e{left:92.700000px;}
.x86{left:94.320000px;}
.x6{left:95.760000px;}
.x63{left:97.860000px;}
.x65{left:98.940000px;}
.x67{left:100.470000px;}
.x6b{left:102.000000px;}
.x98{left:103.320000px;}
.x8b{left:105.120000px;}
.xa{left:106.650000px;}
.x89{left:108.720000px;}
.x5f{left:110.640000px;}
.x7a{left:111.780000px;}
.x96{left:113.400000px;}
.x2d{left:114.930000px;}
.x7{left:117.000000px;}
.x78{left:118.620000px;}
.x85{left:122.490000px;}
.x95{left:125.010000px;}
.x92{left:126.450000px;}
.x88{left:127.800000px;}
.x93{left:129.150000px;}
.x77{left:130.950000px;}
.x87{left:132.300000px;}
.x2c{left:133.830000px;}
.x73{left:135.540000px;}
.x91{left:141.570000px;}
.x8d{left:146.160000px;}
.x71{left:147.450000px;}
.x81{left:151.560000px;}
.x80{left:162.030000px;}
.x8c{left:167.430000px;}
.x40{left:174.240000px;}
.x72{left:178.050000px;}
.x9a{left:183.360000px;}
.xc{left:191.700000px;}
.x43{left:200.700000px;}
.x16{left:239.970000px;}
.x2e{left:259.590000px;}
.x4d{left:266.700000px;}
.x17{left:288.210000px;}
.x5b{left:306.570000px;}
.x30{left:311.070000px;}
.x4e{left:332.580000px;}
.x19{left:336.450000px;}
.x2b{left:342.120000px;}
.x31{left:374.790000px;}
.xe{left:384.600000px;}
.x6a{left:393.540000px;}
.x45{left:398.550000px;}
.x1b{left:432.840000px;}
.x32{left:442.200000px;}
.x74{left:449.250000px;}
.x9b{left:454.560000px;}
.x8e{left:459.870000px;}
.x4f{left:464.430000px;}
.x1c{left:481.080000px;}
.x5c{left:485.790000px;}
.x34{left:509.700000px;}
.x1d{left:529.320000px;}
.x50{left:530.400000px;}
.x75{left:537.810000px;}
.x9c{left:539.610000px;}
.x8f{left:548.430000px;}
.x82{left:553.740000px;}
.x35{left:566.850000px;}
.x10{left:577.560000px;}
.x5{left:578.670000px;}
.x46{left:596.280000px;}
.x5d{left:613.350000px;}
.x9d{left:624.690000px;}
.x1e{left:625.800000px;}
.x90{left:637.020000px;}
.x3{left:639.810000px;}
.x83{left:642.330000px;}
.x51{left:662.280000px;}
.x1f{left:673.980000px;}
.x36{left:678.840000px;}
.x4{left:696.150000px;}
.x8{left:699.390000px;}
.x5e{left:714.240000px;}
.x20{left:722.220000px;}
.x52{left:728.160000px;}
.x37{left:731.940000px;}
.x12{left:770.460000px;}
.x38{left:785.130000px;}
.x48{left:794.130000px;}
.x2{left:818.640000px;}
.x39{left:852.630000px;}
.x53{left:860.010000px;}
.x21{left:866.940000px;}
.x22{left:915.180000px;}
.x3a{left:920.040000px;}
.x54{left:925.980000px;}
.x14{left:963.330000px;}
.x3b{left:987.540000px;}
.x4a{left:991.860000px;}
.x23{left:1011.570000px;}
.x55{left:1057.860000px;}
.x24{left:1059.840000px;}
.x3c{left:1067.580000px;}
.x25{left:1108.080000px;}
.x56{left:1123.740000px;}
@media print{
.v2{vertical-align:-24.000000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.440000pt;}
.lsb{letter-spacing:-14.613333pt;}
.lsc{letter-spacing:-1.152000pt;}
.lsd{letter-spacing:-0.640000pt;}
.ls12{letter-spacing:-0.576000pt;}
.lse{letter-spacing:-0.512000pt;}
.lsf{letter-spacing:-0.320000pt;}
.ls15{letter-spacing:-0.256000pt;}
.ls9{letter-spacing:-0.192000pt;}
.ls6{letter-spacing:-0.128000pt;}
.ls19{letter-spacing:-0.112000pt;}
.ls18{letter-spacing:-0.096000pt;}
.ls1d{letter-spacing:-0.080533pt;}
.ls11{letter-spacing:-0.064000pt;}
.ls1e{letter-spacing:-0.040320pt;}
.ls16{letter-spacing:-0.016000pt;}
.ls3{letter-spacing:0.000000pt;}
.ls1a{letter-spacing:0.016000pt;}
.ls1b{letter-spacing:0.019520pt;}
.ls4{letter-spacing:0.032000pt;}
.ls1c{letter-spacing:0.040320pt;}
.ls0{letter-spacing:0.064000pt;}
.ls7{letter-spacing:0.106667pt;}
.ls17{letter-spacing:0.112000pt;}
.ls5{letter-spacing:0.128000pt;}
.ls1{letter-spacing:0.160000pt;}
.ls13{letter-spacing:0.170667pt;}
.ls2{letter-spacing:0.266667pt;}
.lsa{letter-spacing:0.320000pt;}
.ls10{letter-spacing:0.384000pt;}
.ls28{letter-spacing:0.640000pt;}
.ls2b{letter-spacing:2.560000pt;}
.ls26{letter-spacing:3.200000pt;}
.ls2a{letter-spacing:5.120000pt;}
.ls25{letter-spacing:5.440000pt;}
.ls1f{letter-spacing:6.080000pt;}
.ls8{letter-spacing:9.600000pt;}
.ls23{letter-spacing:10.240000pt;}
.ls20{letter-spacing:10.560000pt;}
.ls27{letter-spacing:12.160000pt;}
.ls29{letter-spacing:16.960000pt;}
.ls24{letter-spacing:23.168000pt;}
.ls21{letter-spacing:48.234667pt;}
.ls22{letter-spacing:55.168000pt;}
.ls14{letter-spacing:754.872107pt;}
.ws20{word-spacing:-64.000000pt;}
.ws19{word-spacing:-58.560000pt;}
.wsf{word-spacing:-48.000000pt;}
.ws21{word-spacing:-43.200000pt;}
.ws2{word-spacing:-24.064000pt;}
.ws1{word-spacing:-24.000000pt;}
.ws6{word-spacing:-16.128000pt;}
.wsd{word-spacing:-16.064000pt;}
.ws0{word-spacing:-16.000000pt;}
.wsb{word-spacing:-15.936000pt;}
.ws5{word-spacing:-15.872000pt;}
.ws8{word-spacing:-15.808000pt;}
.wsc{word-spacing:-15.744000pt;}
.wsa{word-spacing:-15.680000pt;}
.ws9{word-spacing:-15.488000pt;}
.ws1f{word-spacing:-15.424000pt;}
.ws22{word-spacing:-15.360000pt;}
.ws1a{word-spacing:-14.800000pt;}
.ws1c{word-spacing:-14.680320pt;}
.ws1b{word-spacing:-14.640000pt;}
.ws1e{word-spacing:-14.599680pt;}
.ws1d{word-spacing:-14.559467pt;}
.ws18{word-spacing:-13.360000pt;}
.ws16{word-spacing:-12.128000pt;}
.ws12{word-spacing:-12.112000pt;}
.ws17{word-spacing:-12.016000pt;}
.ws11{word-spacing:-12.000000pt;}
.wse{word-spacing:-11.984000pt;}
.ws14{word-spacing:-11.904000pt;}
.ws15{word-spacing:-11.888000pt;}
.ws10{word-spacing:-11.872000pt;}
.ws13{word-spacing:-11.808000pt;}
.ws4{word-spacing:-10.800000pt;}
.ws3{word-spacing:-10.640000pt;}
.ws7{word-spacing:0.000000pt;}
._4{margin-left:-32.170667pt;}
._26{margin-left:-31.104000pt;}
._2b{margin-left:-24.298667pt;}
._28{margin-left:-21.952000pt;}
._0{margin-left:-21.013333pt;}
._2{margin-left:-18.282667pt;}
._27{margin-left:-17.109333pt;}
._23{margin-left:-4.800000pt;}
._1{margin-left:-3.904000pt;}
._10{margin-left:-3.008000pt;}
._a{margin-left:-2.069333pt;}
._5{margin-left:-0.896000pt;}
._6{width:1.024000pt;}
._b{width:1.941333pt;}
._9{width:2.837333pt;}
._8{width:3.754667pt;}
._d{width:4.864000pt;}
._e{width:5.760000pt;}
._14{width:6.826667pt;}
._13{width:7.722667pt;}
._15{width:8.640000pt;}
._16{width:9.536000pt;}
._17{width:10.453333pt;}
._f{width:11.882667pt;}
._11{width:13.141333pt;}
._1b{width:14.165333pt;}
._1e{width:15.061333pt;}
._12{width:17.152000pt;}
._22{width:18.240000pt;}
._18{width:19.392000pt;}
._19{width:20.480000pt;}
._1a{width:21.696000pt;}
._20{width:22.656000pt;}
._21{width:23.701333pt;}
._7{width:27.840000pt;}
._2a{width:29.376000pt;}
._25{width:30.592000pt;}
._24{width:31.488000pt;}
._2d{width:33.856000pt;}
._2c{width:34.752000pt;}
._2e{width:35.840000pt;}
._2f{width:36.736000pt;}
._3{width:38.400000pt;}
._29{width:39.530667pt;}
._1c{width:41.706667pt;}
._1f{width:754.872107pt;}
._c{width:2055.808000pt;}
._1d{width:3371.008000pt;}
.fs4{font-size:42.560000pt;}
.fs6{font-size:48.000000pt;}
.fs1{font-size:53.440000pt;}
.fs5{font-size:58.560000pt;}
.fs7{font-size:61.440000pt;}
.fs0{font-size:64.000000pt;}
.fs3{font-size:96.000000pt;}
.fs2{font-size:170.560000pt;}
.yba{bottom:-5.040000pt;}
.y0{bottom:0.000000pt;}
.y28{bottom:3.040000pt;}
.ya7{bottom:3.440000pt;}
.ya4{bottom:3.520000pt;}
.y97{bottom:3.600000pt;}
.ybf{bottom:4.000000pt;}
.y16a{bottom:4.026667pt;}
.y94{bottom:4.560000pt;}
.ybd{bottom:4.960000pt;}
.y96{bottom:5.520000pt;}
.ybb{bottom:5.920000pt;}
.yae{bottom:12.160000pt;}
.yc3{bottom:14.000000pt;}
.yad{bottom:20.800000pt;}
.y9c{bottom:21.600000pt;}
.y93{bottom:22.560000pt;}
.yc2{bottom:24.000000pt;}
.y2b{bottom:41.360000pt;}
.y8f{bottom:51.600000pt;}
.y192{bottom:72.080000pt;}
.y52{bottom:74.080000pt;}
.yb7{bottom:77.200000pt;}
.y26{bottom:79.600000pt;}
.y6b{bottom:80.320000pt;}
.y121{bottom:80.560000pt;}
.y1a1{bottom:85.440000pt;}
.y17f{bottom:92.080000pt;}
.yb6{bottom:92.320000pt;}
.y191{bottom:94.800000pt;}
.y120{bottom:95.120000pt;}
.y51{bottom:96.800000pt;}
.y6a{bottom:98.800000pt;}
.yf5{bottom:99.920000pt;}
.y25{bottom:102.240000pt;}
.y1bf{bottom:105.440000pt;}
.y1a0{bottom:108.080000pt;}
.y16e{bottom:108.240000pt;}
.y16f{bottom:108.400000pt;}
.yb5{bottom:109.680000pt;}
.yf4{bottom:114.480000pt;}
.y17e{bottom:114.800000pt;}
.y11f{bottom:115.120000pt;}
.y190{bottom:117.440000pt;}
.y50{bottom:119.440000pt;}
.y69{bottom:121.440000pt;}
.y16d{bottom:124.480000pt;}
.y24{bottom:124.880000pt;}
.yb4{bottom:127.040000pt;}
.y1be{bottom:128.080000pt;}
.y19f{bottom:130.800000pt;}
.yf3{bottom:134.480000pt;}
.y11e{bottom:135.120000pt;}
.y17d{bottom:137.440000pt;}
.y18f{bottom:140.080000pt;}
.y4f{bottom:142.080000pt;}
.y68{bottom:144.080000pt;}
.yb3{bottom:144.320000pt;}
.y16c{bottom:144.480000pt;}
.y23{bottom:147.600000pt;}
.y1bd{bottom:150.800000pt;}
.y19e{bottom:153.440000pt;}
.yf2{bottom:154.480000pt;}
.y11d{bottom:155.120000pt;}
.y17c{bottom:160.080000pt;}
.yb2{bottom:161.680000pt;}
.y18e{bottom:162.800000pt;}
.y16b{bottom:164.480000pt;}
.y4e{bottom:164.800000pt;}
.y67{bottom:166.800000pt;}
.y22{bottom:170.240000pt;}
.y1aa{bottom:170.960000pt;}
.y1bc{bottom:173.440000pt;}
.yf1{bottom:174.480000pt;}
.y11c{bottom:175.120000pt;}
.y19d{bottom:176.080000pt;}
.yb1{bottom:179.040000pt;}
.y17b{bottom:182.800000pt;}
.y169{bottom:184.480000pt;}
.y18d{bottom:185.440000pt;}
.y4d{bottom:187.440000pt;}
.y66{bottom:189.466667pt;}
.y21{bottom:192.906667pt;}
.yf0{bottom:194.506667pt;}
.y11b{bottom:195.866667pt;}
.y1bb{bottom:196.106667pt;}
.yb0{bottom:196.320000pt;}
.y19c{bottom:198.826667pt;}
.y168{bottom:204.506667pt;}
.y17a{bottom:205.466667pt;}
.y18c{bottom:208.106667pt;}
.y8c{bottom:209.626667pt;}
.y4c{bottom:210.106667pt;}
.y65{bottom:212.106667pt;}
.yaf{bottom:213.680000pt;}
.yef{bottom:214.506667pt;}
.y11a{bottom:215.866667pt;}
.y1ba{bottom:218.826667pt;}
.y19b{bottom:221.466667pt;}
.y167{bottom:224.506667pt;}
.y8b{bottom:228.106667pt;}
.y18b{bottom:230.826667pt;}
.yac{bottom:231.040000pt;}
.y4b{bottom:232.826667pt;}
.y20{bottom:233.546667pt;}
.yee{bottom:234.506667pt;}
.y64{bottom:234.826667pt;}
.y119{bottom:235.866667pt;}
.y1b9{bottom:241.466667pt;}
.y19a{bottom:244.106667pt;}
.y166{bottom:244.506667pt;}
.y8a{bottom:250.826667pt;}
.y142{bottom:251.626667pt;}
.y18a{bottom:253.466667pt;}
.yed{bottom:254.506667pt;}
.y4a{bottom:255.466667pt;}
.y1f{bottom:256.186667pt;}
.y118{bottom:256.506667pt;}
.y63{bottom:257.466667pt;}
.y1b8{bottom:264.106667pt;}
.y165{bottom:264.506667pt;}
.yab{bottom:265.706667pt;}
.y199{bottom:266.826667pt;}
.y141{bottom:267.866667pt;}
.y89{bottom:273.466667pt;}
.yec{bottom:274.506667pt;}
.y189{bottom:276.106667pt;}
.y49{bottom:278.106667pt;}
.ycf{bottom:279.706667pt;}
.y62{bottom:280.106667pt;}
.yaa{bottom:283.066667pt;}
.y164{bottom:284.506667pt;}
.y1b7{bottom:286.826667pt;}
.y140{bottom:287.866667pt;}
.y117{bottom:289.466667pt;}
.yeb{bottom:294.506667pt;}
.y1e{bottom:294.906667pt;}
.y1a9{bottom:295.946667pt;}
.y88{bottom:296.106667pt;}
.yce{bottom:297.706667pt;}
.y188{bottom:298.826667pt;}
.ya9{bottom:300.346667pt;}
.y48{bottom:300.826667pt;}
.y61{bottom:302.826667pt;}
.y163{bottom:304.506667pt;}
.y1c3{bottom:305.466667pt;}
.y13f{bottom:307.866667pt;}
.y1b6{bottom:309.466667pt;}
.y116{bottom:312.106667pt;}
.yea{bottom:314.506667pt;}
.ycd{bottom:315.066667pt;}
.y1d{bottom:317.626667pt;}
.ya8{bottom:317.706667pt;}
.y87{bottom:318.826667pt;}
.y187{bottom:321.466667pt;}
.y47{bottom:323.466667pt;}
.y162{bottom:324.506667pt;}
.y60{bottom:325.466667pt;}
.y13e{bottom:327.866667pt;}
.y1c2{bottom:328.106667pt;}
.y1b5{bottom:332.106667pt;}
.ye9{bottom:334.506667pt;}
.y198{bottom:334.826667pt;}
.ya6{bottom:335.066667pt;}
.y86{bottom:341.466667pt;}
.y186{bottom:344.106667pt;}
.y161{bottom:344.506667pt;}
.y46{bottom:346.106667pt;}
.y13d{bottom:347.866667pt;}
.y5f{bottom:348.106667pt;}
.y1c1{bottom:350.826667pt;}
.y115{bottom:351.146667pt;}
.ya5{bottom:352.346667pt;}
.ye8{bottom:354.506667pt;}
.y1b4{bottom:354.826667pt;}
.ycc{bottom:355.066667pt;}
.y1c{bottom:356.266667pt;}
.y197{bottom:357.466667pt;}
.y85{bottom:364.106667pt;}
.y160{bottom:364.506667pt;}
.y185{bottom:366.826667pt;}
.y13c{bottom:367.866667pt;}
.y114{bottom:368.506667pt;}
.y45{bottom:368.826667pt;}
.ya3{bottom:370.346667pt;}
.y5e{bottom:370.826667pt;}
.ye7{bottom:374.506667pt;}
.ycb{bottom:375.066667pt;}
.y1b3{bottom:377.466667pt;}
.y196{bottom:380.106667pt;}
.y15f{bottom:384.506667pt;}
.y1b{bottom:384.906667pt;}
.y179{bottom:386.826667pt;}
.y13b{bottom:387.866667pt;}
.y113{bottom:388.506667pt;}
.y184{bottom:389.466667pt;}
.y44{bottom:391.466667pt;}
.y5d{bottom:393.466667pt;}
.ye6{bottom:394.506667pt;}
.yca{bottom:395.066667pt;}
.y1b2{bottom:400.106667pt;}
.ya2{bottom:400.666667pt;}
.y1a{bottom:401.626667pt;}
.y84{bottom:402.746667pt;}
.y195{bottom:402.826667pt;}
.y15e{bottom:404.506667pt;}
.y13a{bottom:407.866667pt;}
.y112{bottom:408.506667pt;}
.y183{bottom:412.106667pt;}
.y43{bottom:414.106667pt;}
.ye5{bottom:414.506667pt;}
.yc9{bottom:415.066667pt;}
.y5c{bottom:416.106667pt;}
.y1b1{bottom:422.826667pt;}
.y19{bottom:424.266667pt;}
.y15d{bottom:424.506667pt;}
.y178{bottom:425.386667pt;}
.y194{bottom:425.466667pt;}
.y139{bottom:427.866667pt;}
.y111{bottom:428.506667pt;}
.y182{bottom:434.826667pt;}
.yc8{bottom:435.066667pt;}
.ye4{bottom:435.146667pt;}
.y42{bottom:436.826667pt;}
.y5b{bottom:438.826667pt;}
.ya1{bottom:439.226667pt;}
.y83{bottom:441.466667pt;}
.y15c{bottom:444.506667pt;}
.y1b0{bottom:445.386667pt;}
.y138{bottom:447.866667pt;}
.y1a8{bottom:448.106667pt;}
.y110{bottom:448.506667pt;}
.y18{bottom:452.906667pt;}
.ya0{bottom:454.346667pt;}
.yc7{bottom:455.066667pt;}
.y1c0{bottom:457.386667pt;}
.y181{bottom:457.466667pt;}
.y41{bottom:459.466667pt;}
.y5a{bottom:461.466667pt;}
.y177{bottom:463.946667pt;}
.y193{bottom:464.026667pt;}
.y82{bottom:464.106667pt;}
.y15b{bottom:464.506667pt;}
.y137{bottom:467.866667pt;}
.ye3{bottom:468.106667pt;}
.y10f{bottom:468.506667pt;}
.y17{bottom:469.626667pt;}
.y1a7{bottom:470.826667pt;}
.y9f{bottom:472.373333pt;}
.yc6{bottom:475.093333pt;}
.y180{bottom:480.106667pt;}
.y40{bottom:482.106667pt;}
.y59{bottom:484.106667pt;}
.y15a{bottom:484.506667pt;}
.y81{bottom:486.826667pt;}
.y136{bottom:487.866667pt;}
.y10e{bottom:488.506667pt;}
.y9e{bottom:490.373333pt;}
.ye2{bottom:490.826667pt;}
.y1a6{bottom:493.466667pt;}
.yc5{bottom:495.093333pt;}
.y16{bottom:498.266667pt;}
.y176{bottom:502.826667pt;}
.y159{bottom:504.506667pt;}
.y3f{bottom:504.826667pt;}
.y1af{bottom:506.666667pt;}
.y58{bottom:506.826667pt;}
.y135{bottom:507.866667pt;}
.y9b{bottom:508.373333pt;}
.y10d{bottom:508.506667pt;}
.y80{bottom:509.466667pt;}
.y15{bottom:514.906667pt;}
.yc4{bottom:515.093333pt;}
.y1a5{bottom:516.106667pt;}
.y158{bottom:524.506667pt;}
.y175{bottom:525.466667pt;}
.y9d{bottom:526.373333pt;}
.y134{bottom:527.866667pt;}
.y10c{bottom:528.506667pt;}
.y57{bottom:529.466667pt;}
.y7f{bottom:532.106667pt;}
.yc1{bottom:535.093333pt;}
.y1a4{bottom:538.826667pt;}
.y3e{bottom:543.306667pt;}
.y14{bottom:543.626667pt;}
.y9a{bottom:544.373333pt;}
.y157{bottom:544.506667pt;}
.y1ae{bottom:545.466667pt;}
.y133{bottom:547.866667pt;}
.y174{bottom:548.106667pt;}
.y10b{bottom:548.506667pt;}
.ye1{bottom:552.106667pt;}
.y7e{bottom:554.826667pt;}
.y13{bottom:560.266667pt;}
.y1a3{bottom:561.466667pt;}
.y99{bottom:562.373333pt;}
.y156{bottom:564.533333pt;}
.y132{bottom:567.893333pt;}
.y56{bottom:568.053333pt;}
.y1ad{bottom:568.133333pt;}
.y10a{bottom:568.533333pt;}
.y173{bottom:570.853333pt;}
.yc0{bottom:575.093333pt;}
.y7d{bottom:577.493333pt;}
.y98{bottom:580.373333pt;}
.y12{bottom:582.933333pt;}
.y1a2{bottom:584.133333pt;}
.y155{bottom:584.533333pt;}
.y131{bottom:587.893333pt;}
.y109{bottom:588.533333pt;}
.ye0{bottom:590.773333pt;}
.y1ac{bottom:590.853333pt;}
.y172{bottom:593.493333pt;}
.ybe{bottom:595.733333pt;}
.y92{bottom:599.093333pt;}
.y7c{bottom:600.133333pt;}
.y3d{bottom:600.373333pt;}
.y154{bottom:604.533333pt;}
.y55{bottom:606.853333pt;}
.y130{bottom:607.893333pt;}
.y108{bottom:608.533333pt;}
.y11{bottom:611.653333pt;}
.ybc{bottom:615.733333pt;}
.y171{bottom:616.133333pt;}
.y95{bottom:617.093333pt;}
.y3c{bottom:622.853333pt;}
.y153{bottom:624.533333pt;}
.y12f{bottom:627.893333pt;}
.y10{bottom:628.293333pt;}
.y107{bottom:628.533333pt;}
.y1ab{bottom:629.333333pt;}
.y54{bottom:629.493333pt;}
.yb9{bottom:637.733333pt;}
.y170{bottom:638.853333pt;}
.y152{bottom:644.533333pt;}
.y7b{bottom:645.493333pt;}
.y12e{bottom:647.893333pt;}
.y106{bottom:648.533333pt;}
.y91{bottom:650.053333pt;}
.ydf{bottom:652.133333pt;}
.yf{bottom:656.933333pt;}
.y3b{bottom:661.493333pt;}
.y151{bottom:664.533333pt;}
.y12d{bottom:667.893333pt;}
.y53{bottom:667.973333pt;}
.y7a{bottom:668.133333pt;}
.y105{bottom:668.533333pt;}
.y90{bottom:672.693333pt;}
.ye{bottom:673.653333pt;}
.yde{bottom:674.853333pt;}
.y3a{bottom:684.133333pt;}
.y150{bottom:684.533333pt;}
.y12c{bottom:687.893333pt;}
.y104{bottom:688.533333pt;}
.y79{bottom:690.853333pt;}
.yb8{bottom:695.200000pt;}
.y8e{bottom:695.360000pt;}
.yd{bottom:696.293333pt;}
.ydd{bottom:697.493333pt;}
.y14f{bottom:704.533333pt;}
.y39{bottom:706.853333pt;}
.y12b{bottom:707.893333pt;}
.y103{bottom:708.533333pt;}
.y78{bottom:713.493333pt;}
.y8d{bottom:718.080000pt;}
.ydc{bottom:720.133333pt;}
.y14e{bottom:724.533333pt;}
.yc{bottom:724.933333pt;}
.y12a{bottom:727.893333pt;}
.y102{bottom:728.533333pt;}
.y38{bottom:729.493333pt;}
.y77{bottom:736.133333pt;}
.ydb{bottom:742.853333pt;}
.y14d{bottom:744.533333pt;}
.y129{bottom:747.893333pt;}
.y101{bottom:748.533333pt;}
.y37{bottom:752.133333pt;}
.yb{bottom:757.493333pt;}
.y76{bottom:758.853333pt;}
.y14c{bottom:764.533333pt;}
.yda{bottom:765.493333pt;}
.y128{bottom:767.893333pt;}
.y100{bottom:768.533333pt;}
.y36{bottom:774.853333pt;}
.ya{bottom:780.133333pt;}
.y75{bottom:781.493333pt;}
.y14b{bottom:784.533333pt;}
.y127{bottom:787.893333pt;}
.yd9{bottom:788.133333pt;}
.yff{bottom:788.533333pt;}
.y35{bottom:797.493333pt;}
.y9{bottom:802.773333pt;}
.y74{bottom:804.133333pt;}
.y14a{bottom:804.533333pt;}
.y126{bottom:807.893333pt;}
.yfe{bottom:808.533333pt;}
.yd8{bottom:810.853333pt;}
.y34{bottom:820.133333pt;}
.y149{bottom:824.533333pt;}
.y73{bottom:826.853333pt;}
.y125{bottom:827.893333pt;}
.yfd{bottom:828.533333pt;}
.yd7{bottom:833.493333pt;}
.y33{bottom:842.853333pt;}
.y8{bottom:843.253333pt;}
.y148{bottom:844.533333pt;}
.y124{bottom:847.893333pt;}
.yfc{bottom:848.533333pt;}
.y72{bottom:849.493333pt;}
.yd6{bottom:856.133333pt;}
.y147{bottom:864.533333pt;}
.y32{bottom:865.493333pt;}
.y123{bottom:867.893333pt;}
.yfb{bottom:868.533333pt;}
.y7{bottom:870.853333pt;}
.y71{bottom:872.133333pt;}
.yd5{bottom:878.853333pt;}
.y146{bottom:885.173333pt;}
.y122{bottom:887.893333pt;}
.y31{bottom:888.133333pt;}
.yfa{bottom:888.533333pt;}
.y70{bottom:894.853333pt;}
.yd4{bottom:901.493333pt;}
.y145{bottom:905.173333pt;}
.yf9{bottom:908.533333pt;}
.y30{bottom:910.853333pt;}
.y6{bottom:912.773333pt;}
.y6f{bottom:917.493333pt;}
.yd3{bottom:924.133333pt;}
.y144{bottom:925.173333pt;}
.yf8{bottom:928.533333pt;}
.y2f{bottom:933.493333pt;}
.y5{bottom:935.573333pt;}
.y6e{bottom:940.160000pt;}
.y143{bottom:945.920000pt;}
.yf7{bottom:948.560000pt;}
.y4{bottom:953.840000pt;}
.y2e{bottom:956.160000pt;}
.yd2{bottom:962.800000pt;}
.y6d{bottom:962.880000pt;}
.yf6{bottom:969.200000pt;}
.y3{bottom:977.920000pt;}
.y2d{bottom:978.880000pt;}
.yd1{bottom:1001.360000pt;}
.y6c{bottom:1001.440000pt;}
.y2c{bottom:1001.520000pt;}
.y2{bottom:1017.760000pt;}
.y27{bottom:1018.320000pt;}
.y2a{bottom:1024.000000pt;}
.yd0{bottom:1024.160000pt;}
.y1{bottom:1037.360000pt;}
.y29{bottom:1046.880000pt;}
.ha{height:15.440000pt;}
.h1b{height:17.280000pt;}
.h1a{height:17.360000pt;}
.h13{height:18.000000pt;}
.h18{height:18.020000pt;}
.h12{height:20.000000pt;}
.h1f{height:20.020000pt;}
.h20{height:20.026667pt;}
.h1d{height:22.000000pt;}
.h14{height:32.507812pt;}
.hf{height:32.742188pt;}
.h16{height:33.328125pt;}
.h1c{height:34.666667pt;}
.h17{height:36.000000pt;}
.h10{height:38.000000pt;}
.h9{height:38.154375pt;}
.h22{height:39.659531pt;}
.hc{height:39.945469pt;}
.h1e{height:40.000000pt;}
.h11{height:42.632812pt;}
.h15{height:43.031250pt;}
.h6{height:44.437500pt;}
.hb{height:47.464531pt;}
.h3{height:47.908125pt;}
.h19{height:52.012031pt;}
.h21{height:52.498125pt;}
.h5{height:56.843750pt;}
.h2{height:57.375000pt;}
.h8{height:59.241094pt;}
.h7{height:85.265625pt;}
.h4{height:115.511094pt;}
.hd{height:793.760000pt;}
.he{height:794.000000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.wc{width:42.800000pt;}
.wd{width:42.820000pt;}
.wb{width:42.880000pt;}
.wa{width:42.906667pt;}
.wf{width:45.760000pt;}
.w16{width:47.200000pt;}
.w17{width:47.280000pt;}
.w15{width:47.300000pt;}
.w13{width:50.800000pt;}
.w14{width:52.240000pt;}
.w10{width:56.640000pt;}
.w1e{width:58.560000pt;}
.w20{width:58.580000pt;}
.w1f{width:58.640000pt;}
.w1d{width:58.666667pt;}
.w11{width:59.920000pt;}
.w12{width:60.000000pt;}
.w22{width:69.620000pt;}
.w18{width:71.146667pt;}
.w19{width:71.520000pt;}
.w5{width:75.600000pt;}
.w2f{width:75.626667pt;}
.w28{width:78.720000pt;}
.w29{width:78.746667pt;}
.w2a{width:78.800000pt;}
.w25{width:89.600000pt;}
.w23{width:89.680000pt;}
.w2{width:105.760000pt;}
.w1a{width:113.280000pt;}
.w24{width:113.386667pt;}
.we{width:128.586667pt;}
.w8{width:171.440000pt;}
.w6{width:171.466667pt;}
.w7{width:171.520000pt;}
.w9{width:171.546667pt;}
.w1c{width:175.760000pt;}
.w1b{width:175.866667pt;}
.w21{width:203.226667pt;}
.w2e{width:226.826667pt;}
.w27{width:236.266667pt;}
.w26{width:241.053333pt;}
.w2d{width:241.066667pt;}
.w2c{width:259.946667pt;}
.w2b{width:269.466667pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.w3{width:1122.560000pt;}
.w4{width:1122.666667pt;}
.x0{left:0.000000pt;}
.x9{left:6.400000pt;}
.x1a{left:8.400000pt;}
.x27{left:9.360000pt;}
.x28{left:10.880000pt;}
.xb{left:12.080000pt;}
.x18{left:13.680000pt;}
.x2a{left:15.440000pt;}
.x3e{left:16.560000pt;}
.x11{left:17.840000pt;}
.x2f{left:19.600000pt;}
.x66{left:20.640000pt;}
.x33{left:22.320000pt;}
.x26{left:24.080000pt;}
.x76{left:25.120000pt;}
.x29{left:26.720000pt;}
.xf{left:28.320000pt;}
.x15{left:29.280000pt;}
.x79{left:30.240000pt;}
.x13{left:31.200000pt;}
.x59{left:33.520000pt;}
.x57{left:35.120000pt;}
.x7d{left:36.640000pt;}
.x58{left:38.160000pt;}
.x6e{left:39.466667pt;}
.x7b{left:40.480000pt;}
.x8a{left:42.080000pt;}
.x70{left:42.986667pt;}
.x61{left:44.640000pt;}
.x3d{left:46.080000pt;}
.x60{left:47.600000pt;}
.x64{left:49.120000pt;}
.x6c{left:50.986667pt;}
.x6d{left:51.946667pt;}
.x3f{left:53.280000pt;}
.x6f{left:54.986667pt;}
.x42{left:56.640000pt;}
.x47{left:57.546667pt;}
.x4c{left:59.386667pt;}
.x97{left:61.440000pt;}
.x62{left:62.986667pt;}
.x99{left:64.160000pt;}
.x41{left:65.120000pt;}
.x1{left:66.160000pt;}
.xd{left:67.546667pt;}
.x4b{left:68.906667pt;}
.x49{left:70.880000pt;}
.x94{left:72.480000pt;}
.x44{left:74.186667pt;}
.x5a{left:75.466667pt;}
.x7c{left:76.560000pt;}
.x69{left:77.786667pt;}
.x7f{left:79.200000pt;}
.x68{left:80.506667pt;}
.x84{left:81.440000pt;}
.x7e{left:82.400000pt;}
.x86{left:83.840000pt;}
.x6{left:85.120000pt;}
.x63{left:86.986667pt;}
.x65{left:87.946667pt;}
.x67{left:89.306667pt;}
.x6b{left:90.666667pt;}
.x98{left:91.840000pt;}
.x8b{left:93.440000pt;}
.xa{left:94.800000pt;}
.x89{left:96.640000pt;}
.x5f{left:98.346667pt;}
.x7a{left:99.360000pt;}
.x96{left:100.800000pt;}
.x2d{left:102.160000pt;}
.x7{left:104.000000pt;}
.x78{left:105.440000pt;}
.x85{left:108.880000pt;}
.x95{left:111.120000pt;}
.x92{left:112.400000pt;}
.x88{left:113.600000pt;}
.x93{left:114.800000pt;}
.x77{left:116.400000pt;}
.x87{left:117.600000pt;}
.x2c{left:118.960000pt;}
.x73{left:120.480000pt;}
.x91{left:125.840000pt;}
.x8d{left:129.920000pt;}
.x71{left:131.066667pt;}
.x81{left:134.720000pt;}
.x80{left:144.026667pt;}
.x8c{left:148.826667pt;}
.x40{left:154.880000pt;}
.x72{left:158.266667pt;}
.x9a{left:162.986667pt;}
.xc{left:170.400000pt;}
.x43{left:178.400000pt;}
.x16{left:213.306667pt;}
.x2e{left:230.746667pt;}
.x4d{left:237.066667pt;}
.x17{left:256.186667pt;}
.x5b{left:272.506667pt;}
.x30{left:276.506667pt;}
.x4e{left:295.626667pt;}
.x19{left:299.066667pt;}
.x2b{left:304.106667pt;}
.x31{left:333.146667pt;}
.xe{left:341.866667pt;}
.x6a{left:349.813333pt;}
.x45{left:354.266667pt;}
.x1b{left:384.746667pt;}
.x32{left:393.066667pt;}
.x74{left:399.333333pt;}
.x9b{left:404.053333pt;}
.x8e{left:408.773333pt;}
.x4f{left:412.826667pt;}
.x1c{left:427.626667pt;}
.x5c{left:431.813333pt;}
.x34{left:453.066667pt;}
.x1d{left:470.506667pt;}
.x50{left:471.466667pt;}
.x75{left:478.053333pt;}
.x9c{left:479.653333pt;}
.x8f{left:487.493333pt;}
.x82{left:492.213333pt;}
.x35{left:503.866667pt;}
.x10{left:513.386667pt;}
.x5{left:514.373333pt;}
.x46{left:530.026667pt;}
.x5d{left:545.200000pt;}
.x9d{left:555.280000pt;}
.x1e{left:556.266667pt;}
.x90{left:566.240000pt;}
.x3{left:568.720000pt;}
.x83{left:570.960000pt;}
.x51{left:588.693333pt;}
.x1f{left:599.093333pt;}
.x36{left:603.413333pt;}
.x4{left:618.800000pt;}
.x8{left:621.680000pt;}
.x5e{left:634.880000pt;}
.x20{left:641.973333pt;}
.x52{left:647.253333pt;}
.x37{left:650.613333pt;}
.x12{left:684.853333pt;}
.x38{left:697.893333pt;}
.x48{left:705.893333pt;}
.x2{left:727.680000pt;}
.x39{left:757.893333pt;}
.x53{left:764.453333pt;}
.x21{left:770.613333pt;}
.x22{left:813.493333pt;}
.x3a{left:817.813333pt;}
.x54{left:823.093333pt;}
.x14{left:856.293333pt;}
.x3b{left:877.813333pt;}
.x4a{left:881.653333pt;}
.x23{left:899.173333pt;}
.x55{left:940.320000pt;}
.x24{left:942.080000pt;}
.x3c{left:948.960000pt;}
.x25{left:984.960000pt;}
.x56{left:998.880000pt;}
}




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