
    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_947249027398a257ad22cf32.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_dfa1d793fe1b394ccfc435db.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_f31d6a4c7cab31ada9795a5f.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_1116703c62bfeb3f1ffedc91.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_11fc3e987a90d802af829458.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.061035;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_d4d6e9a7749989fc71572860.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.003906;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_1fb1ef93f9974440deef73e7.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_e9b247a9708898bdef30de2d.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.914062;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_a9fff2de1b9ca451c5f7d7ea.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_138417d75f1392febba625eb.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.921387;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.ls3{letter-spacing:-0.720000px;}
.ls10{letter-spacing:-0.702000px;}
.lsc{letter-spacing:-0.540000px;}
.ls15{letter-spacing:-0.360000px;}
.lsf{letter-spacing:-0.216000px;}
.lsb{letter-spacing:-0.126000px;}
.ls1{letter-spacing:0.000000px;}
.lse{letter-spacing:0.017280px;}
.lsd{letter-spacing:0.018000px;}
.ls0{letter-spacing:0.023040px;}
.ls7{letter-spacing:0.108000px;}
.ls11{letter-spacing:0.180000px;}
.ls2{letter-spacing:0.181200px;}
.ls9{letter-spacing:0.216000px;}
.lsa{letter-spacing:0.324000px;}
.ls5{letter-spacing:0.360000px;}
.ls13{letter-spacing:8.820000px;}
.ls12{letter-spacing:9.540000px;}
.ls14{letter-spacing:25.308000px;}
.ls4{letter-spacing:52.668000px;}
.ls6{letter-spacing:92.268000px;}
.ls8{letter-spacing:92.988000px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsc{word-spacing:-19.457280px;}
.ws6{word-spacing:-19.440000px;}
.ws3{word-spacing:-16.560000px;}
.ws4{word-spacing:-15.840000px;}
.ws7{word-spacing:-13.860000px;}
.wsa{word-spacing:-13.716000px;}
.ws8{word-spacing:-13.608000px;}
.ws2{word-spacing:-13.500000px;}
.ws9{word-spacing:-13.374000px;}
.wsb{word-spacing:-13.284000px;}
.wsd{word-spacing:-13.140000px;}
.ws1{word-spacing:-12.241200px;}
.ws0{word-spacing:-12.060000px;}
.ws5{word-spacing:0.000000px;}
._0{margin-left:-1.212720px;}
._2{width:1.122720px;}
._1{width:2.316000px;}
._9{width:3.458880px;}
._6{width:4.586160px;}
._b{width:6.063840px;}
._5{width:7.230960px;}
._8{width:8.319360px;}
._7{width:9.322560px;}
._a{width:11.068320px;}
._c{width:12.669120px;}
._f{width:15.228000px;}
._13{width:16.470000px;}
._12{width:17.658000px;}
._15{width:19.140720px;}
._14{width:20.196000px;}
._19{width:21.330000px;}
._e{width:22.763280px;}
._d{width:23.784720px;}
._1b{width:24.817440px;}
._1a{width:25.834560px;}
._11{width:27.810000px;}
._10{width:28.890000px;}
._1d{width:30.564000px;}
._1c{width:31.806000px;}
._25{width:32.984880px;}
._1e{width:34.074000px;}
._22{width:35.124720px;}
._18{width:36.180000px;}
._16{width:38.232000px;}
._17{width:39.726000px;}
._21{width:41.382000px;}
._24{width:45.609840px;}
._23{width:47.112720px;}
._1f{width:75.870000px;}
._20{width:77.058000px;}
._4{width:1634.280000px;}
._3{width:2903.467200px;}
.fc4{color:transparent;}
.fc3{color:rgb(0,0,255);}
.fc2{color:rgb(0,176,240);}
.fc5{color:rgb(0,176,80);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(255,255,255);}
.fs0{font-size:48.240000px;}
.fs1{font-size:51.120000px;}
.fs3{font-size:54.000000px;}
.fs5{font-size:59.760000px;}
.fs2{font-size:66.240000px;}
.fs6{font-size:77.760000px;}
.fs4{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.y9{bottom:3.960000px;}
.y2{bottom:5.040000px;}
.y4{bottom:6.120000px;}
.y3a{bottom:6.990000px;}
.yd0{bottom:9.720000px;}
.y21{bottom:9.795000px;}
.yd8{bottom:10.065000px;}
.yd4{bottom:10.080000px;}
.y126{bottom:10.110000px;}
.ydf{bottom:10.245000px;}
.ye4{bottom:10.260000px;}
.y17e{bottom:10.290000px;}
.y193{bottom:12.765000px;}
.yd7{bottom:14.565000px;}
.yd3{bottom:14.580000px;}
.y162{bottom:14.610000px;}
.yde{bottom:14.745000px;}
.ye3{bottom:14.760000px;}
.y8{bottom:22.500000px;}
.y15d{bottom:23.385000px;}
.y12c{bottom:23.400000px;}
.y130{bottom:23.430000px;}
.y120{bottom:23.565000px;}
.y158{bottom:23.580000px;}
.y127{bottom:23.610000px;}
.y191{bottom:23.925000px;}
.y180{bottom:23.940000px;}
.y15c{bottom:27.885000px;}
.y12b{bottom:27.900000px;}
.y12f{bottom:27.930000px;}
.y11f{bottom:28.065000px;}
.y157{bottom:28.080000px;}
.y125{bottom:28.110000px;}
.yda{bottom:32.385000px;}
.yd2{bottom:32.400000px;}
.yd6{bottom:32.430000px;}
.ydd{bottom:32.565000px;}
.ye2{bottom:32.580000px;}
.y192{bottom:35.085000px;}
.y7{bottom:41.040000px;}
.y17{bottom:41.145000px;}
.y12e{bottom:45.750000px;}
.y15b{bottom:45.885000px;}
.y12a{bottom:45.900000px;}
.y11e{bottom:45.930000px;}
.y6{bottom:56.880000px;}
.y1b{bottom:60.585000px;}
.y16{bottom:65.265000px;}
.y32{bottom:71.820000px;}
.y129{bottom:83.880000px;}
.y1ac{bottom:86.580000px;}
.y12{bottom:90.180000px;}
.y31{bottom:91.650000px;}
.y164{bottom:92.880000px;}
.y1f3{bottom:94.140000px;}
.y75{bottom:101.340000px;}
.y1ab{bottom:104.400000px;}
.y1a0{bottom:111.420000px;}
.y30{bottom:111.450000px;}
.y1f2{bottom:111.960000px;}
.ye5{bottom:114.660000px;}
.yaf{bottom:118.080000px;}
.y74{bottom:119.160000px;}
.y11{bottom:119.700000px;}
.y1aa{bottom:122.220000px;}
.y19f{bottom:129.240000px;}
.yae{bottom:135.540000px;}
.y1c3{bottom:135.900000px;}
.y73{bottom:136.980000px;}
.y22{bottom:137.880000px;}
.y1f1{bottom:138.960000px;}
.y1a9{bottom:140.040000px;}
.y163{bottom:142.740000px;}
.y14{bottom:144.870000px;}
.y19e{bottom:147.060000px;}
.y128{bottom:147.240000px;}
.y1c2{bottom:153.900000px;}
.y72{bottom:154.980000px;}
.y1f0{bottom:156.780000px;}
.y1a8{bottom:157.860000px;}
.y2e{bottom:160.230000px;}
.y34{bottom:160.380000px;}
.yad{bottom:162.900000px;}
.ye1{bottom:164.520000px;}
.y19d{bottom:164.880000px;}
.y1c1{bottom:171.720000px;}
.y71{bottom:172.800000px;}
.y1ef{bottom:174.600000px;}
.y1a7{bottom:175.860000px;}
.y2d{bottom:180.030000px;}
.yac{bottom:180.720000px;}
.y19c{bottom:182.880000px;}
.y1c0{bottom:189.540000px;}
.y33{bottom:189.900000px;}
.y70{bottom:190.620000px;}
.y1ee{bottom:192.420000px;}
.y161{bottom:192.780000px;}
.y1a6{bottom:193.680000px;}
.y124{bottom:197.100000px;}
.yab{bottom:198.540000px;}
.y2c{bottom:199.830000px;}
.y19b{bottom:200.700000px;}
.y1bf{bottom:207.390000px;}
.y6f{bottom:208.470000px;}
.y1a5{bottom:211.530000px;}
.ye0{bottom:214.605000px;}
.yaa{bottom:216.390000px;}
.y19a{bottom:218.550000px;}
.y1ed{bottom:219.270000px;}
.y2b{bottom:219.630000px;}
.y1be{bottom:225.210000px;}
.y1a4{bottom:229.350000px;}
.ya9{bottom:234.210000px;}
.y6e{bottom:235.290000px;}
.y199{bottom:236.370000px;}
.y1ec{bottom:237.090000px;}
.y160{bottom:242.865000px;}
.y1bd{bottom:243.030000px;}
.y1a3{bottom:247.170000px;}
.ya8{bottom:252.030000px;}
.y6d{bottom:253.110000px;}
.y198{bottom:254.190000px;}
.y1eb{bottom:255.090000px;}
.y123{bottom:260.505000px;}
.y1bc{bottom:261.030000px;}
.ydc{bottom:264.465000px;}
.y1a2{bottom:267.690000px;}
.y29{bottom:268.410000px;}
.ya7{bottom:270.030000px;}
.y6c{bottom:271.110000px;}
.y197{bottom:272.010000px;}
.y1ea{bottom:272.910000px;}
.y2f{bottom:278.130000px;}
.y1bb{bottom:278.850000px;}
.ya6{bottom:287.850000px;}
.y28{bottom:288.210000px;}
.y6b{bottom:288.930000px;}
.y196{bottom:290.010000px;}
.y1e9{bottom:292.710000px;}
.y15f{bottom:292.725000px;}
.y1ba{bottom:296.670000px;}
.y1a1{bottom:301.890000px;}
.ya5{bottom:305.670000px;}
.y6a{bottom:306.750000px;}
.y195{bottom:307.830000px;}
.y27{bottom:308.010000px;}
.y122{bottom:310.365000px;}
.ydb{bottom:314.505000px;}
.y1b9{bottom:323.490000px;}
.y69{bottom:324.570000px;}
.y1e8{bottom:325.470000px;}
.y26{bottom:327.855000px;}
.ya4{bottom:332.490000px;}
.y194{bottom:334.650000px;}
.y1b8{bottom:341.310000px;}
.y68{bottom:342.390000px;}
.y15e{bottom:342.765000px;}
.y1e7{bottom:343.290000px;}
.y25{bottom:347.655000px;}
.ya3{bottom:350.310000px;}
.y190{bottom:356.625000px;}
.y1b7{bottom:359.310000px;}
.y121{bottom:360.405000px;}
.y1e6{bottom:361.290000px;}
.yd9{bottom:364.545000px;}
.y24{bottom:367.635000px;}
.ya2{bottom:368.310000px;}
.y67{bottom:369.210000px;}
.y1b6{bottom:377.130000px;}
.y1e5{bottom:379.110000px;}
.y18f{bottom:384.165000px;}
.ya1{bottom:386.130000px;}
.y2a{bottom:386.310000px;}
.y66{bottom:387.210000px;}
.y23{bottom:387.435000px;}
.y15a{bottom:392.625000px;}
.y1b5{bottom:394.950000px;}
.y1e4{bottom:396.930000px;}
.ya0{bottom:403.950000px;}
.y65{bottom:405.030000px;}
.y11d{bottom:410.265000px;}
.y18e{bottom:411.885000px;}
.yd5{bottom:414.405000px;}
.y1e3{bottom:414.750000px;}
.y9f{bottom:421.770000px;}
.y64{bottom:422.850000px;}
.y9e{bottom:439.590000px;}
.y63{bottom:440.715000px;}
.y1e2{bottom:441.615000px;}
.y18d{bottom:445.035000px;}
.y159{bottom:456.015000px;}
.y9d{bottom:457.455000px;}
.y1e1{bottom:459.435000px;}
.y18c{bottom:463.035000px;}
.yd1{bottom:464.475000px;}
.y62{bottom:467.535000px;}
.y11c{bottom:473.655000px;}
.y1b4{bottom:475.455000px;}
.y1e0{bottom:477.435000px;}
.y9c{bottom:484.455000px;}
.y61{bottom:485.535000px;}
.y188{bottom:489.855000px;}
.y1b3{bottom:493.275000px;}
.y1df{bottom:495.255000px;}
.y9b{bottom:502.275000px;}
.y60{bottom:503.355000px;}
.y156{bottom:505.875000px;}
.y187{bottom:507.675000px;}
.y1b2{bottom:511.095000px;}
.y1de{bottom:513.075000px;}
.ycf{bottom:514.335000px;}
.y9a{bottom:520.095000px;}
.y5f{bottom:521.175000px;}
.y11b{bottom:523.695000px;}
.y186{bottom:525.495000px;}
.y99{bottom:537.915000px;}
.y5e{bottom:538.995000px;}
.y1dd{bottom:539.895000px;}
.y220{bottom:542.775000px;}
.y185{bottom:543.315000px;}
.yce{bottom:547.275000px;}
.y98{bottom:555.735000px;}
.y5d{bottom:556.815000px;}
.y1dc{bottom:557.715000px;}
.y10{bottom:560.955000px;}
.y184{bottom:561.135000px;}
.ycd{bottom:565.095000px;}
.y21f{bottom:568.335000px;}
.y155{bottom:569.235000px;}
.y18b{bottom:570.135000px;}
.y11a{bottom:573.555000px;}
.y97{bottom:573.735000px;}
.y5c{bottom:574.635000px;}
.y1db{bottom:575.715000px;}
.y183{bottom:579.135000px;}
.y202{bottom:587.415000px;}
.y18a{bottom:588.135000px;}
.y96{bottom:591.555000px;}
.yc7{bottom:592.275000px;}
.y5b{bottom:592.635000px;}
.y1da{bottom:593.535000px;}
.y182{bottom:596.955000px;}
.yf{bottom:602.175000px;}
.y189{bottom:605.955000px;}
.y201{bottom:606.315000px;}
.y119{bottom:606.495000px;}
.ycc{bottom:609.015000px;}
.y95{bottom:609.375000px;}
.yc6{bottom:610.095000px;}
.y5a{bottom:610.455000px;}
.y1d9{bottom:611.355000px;}
.ye{bottom:617.835000px;}
.y154{bottom:619.275000px;}
.y181{bottom:623.775000px;}
.y20{bottom:623.880000px;}
.y118{bottom:624.315000px;}
.ycb{bottom:626.835000px;}
.y94{bottom:627.195000px;}
.yc5{bottom:627.915000px;}
.y1d8{bottom:629.175000px;}
.y21e{bottom:636.915000px;}
.y59{bottom:637.275000px;}
.yca{bottom:644.655000px;}
.y200{bottom:644.835000px;}
.y93{bottom:645.015000px;}
.y17f{bottom:645.735000px;}
.yff{bottom:651.495000px;}
.y153{bottom:652.035000px;}
.y1f{bottom:652.935000px;}
.yc4{bottom:654.915000px;}
.y58{bottom:655.095000px;}
.y21d{bottom:655.815000px;}
.y1d7{bottom:655.995000px;}
.y117{bottom:660.135000px;}
.yc9{bottom:662.475000px;}
.y1ff{bottom:662.655000px;}
.y92{bottom:662.835000px;}
.yc3{bottom:672.735000px;}
.y57{bottom:672.915000px;}
.y17d{bottom:673.275000px;}
.y1d6{bottom:673.815000px;}
.y21c{bottom:674.715000px;}
.y116{bottom:677.985000px;}
.yfe{bottom:678.345000px;}
.y149{bottom:679.245000px;}
.y1fe{bottom:680.505000px;}
.y91{bottom:680.865000px;}
.y1e{bottom:681.015000px;}
.yc8{bottom:689.865000px;}
.yc2{bottom:690.585000px;}
.y56{bottom:690.945000px;}
.y1d5{bottom:691.845000px;}
.y21b{bottom:693.825000px;}
.y115{bottom:695.805000px;}
.yfd{bottom:696.165000px;}
.y1a{bottom:696.420000px;}
.y148{bottom:697.065000px;}
.y1b1{bottom:698.685000px;}
.y17c{bottom:701.025000px;}
.y152{bottom:705.705000px;}
.y1fd{bottom:707.325000px;}
.y90{bottom:707.685000px;}
.yd{bottom:707.865000px;}
.yc1{bottom:708.405000px;}
.y55{bottom:708.765000px;}
.y1d4{bottom:709.665000px;}
.y21a{bottom:712.725000px;}
.yfc{bottom:714.165000px;}
.y147{bottom:715.065000px;}
.y1b0{bottom:716.505000px;}
.y114{bottom:723.165000px;}
.y151{bottom:723.525000px;}
.y1fc{bottom:725.145000px;}
.y8f{bottom:725.505000px;}
.yc0{bottom:726.225000px;}
.y54{bottom:726.585000px;}
.y1d3{bottom:727.485000px;}
.y1d{bottom:727.665000px;}
.y219{bottom:731.805000px;}
.yfb{bottom:731.985000px;}
.y146{bottom:732.885000px;}
.y17b{bottom:733.785000px;}
.y1af{bottom:734.325000px;}
.y113{bottom:740.985000px;}
.y150{bottom:741.345000px;}
.y1fb{bottom:743.145000px;}
.y8e{bottom:743.325000px;}
.ybf{bottom:744.045000px;}
.y53{bottom:744.405000px;}
.y1d2{bottom:745.305000px;}
.y1c{bottom:746.565000px;}
.yfa{bottom:749.805000px;}
.y145{bottom:750.705000px;}
.y1ae{bottom:752.145000px;}
.y112{bottom:758.805000px;}
.y1fa{bottom:760.965000px;}
.y8d{bottom:761.145000px;}
.ybe{bottom:762.045000px;}
.y52{bottom:762.225000px;}
.y1d1{bottom:763.125000px;}
.yf9{bottom:767.625000px;}
.y144{bottom:768.525000px;}
.y218{bottom:769.785000px;}
.y1ad{bottom:770.145000px;}
.yc{bottom:776.265000px;}
.y111{bottom:776.625000px;}
.y173{bottom:778.965000px;}
.y8c{bottom:779.145000px;}
.ybd{bottom:779.865000px;}
.y51{bottom:780.045000px;}
.y1d0{bottom:781.125000px;}
.yf8{bottom:785.445000px;}
.y143{bottom:786.345000px;}
.y1f9{bottom:787.785000px;}
.y217{bottom:788.685000px;}
.y110{bottom:794.445000px;}
.y19{bottom:796.065000px;}
.y172{bottom:796.785000px;}
.y8b{bottom:796.965000px;}
.y50{bottom:798.045000px;}
.y1cf{bottom:798.945000px;}
.ybc{bottom:799.665000px;}
.yf7{bottom:803.445000px;}
.y14f{bottom:804.345000px;}
.y1f8{bottom:805.605000px;}
.y216{bottom:807.585000px;}
.y10f{bottom:812.445000px;}
.y142{bottom:813.345000px;}
.y171{bottom:814.605000px;}
.y8a{bottom:814.785000px;}
.y4f{bottom:815.865000px;}
.y1ce{bottom:816.765000px;}
.y14e{bottom:822.165000px;}
.y1f7{bottom:823.425000px;}
.y215{bottom:826.665000px;}
.yf6{bottom:830.265000px;}
.y141{bottom:831.165000px;}
.ybb{bottom:832.425000px;}
.y89{bottom:832.605000px;}
.y4e{bottom:833.685000px;}
.y1cd{bottom:834.585000px;}
.y15{bottom:834.840000px;}
.y10e{bottom:839.265000px;}
.y14d{bottom:839.985000px;}
.y1f6{bottom:841.245000px;}
.y17a{bottom:841.425000px;}
.y214{bottom:845.565000px;}
.yf5{bottom:848.085000px;}
.y140{bottom:848.985000px;}
.yba{bottom:850.245000px;}
.y88{bottom:850.425000px;}
.y18{bottom:851.325000px;}
.y4d{bottom:851.505000px;}
.y10d{bottom:857.085000px;}
.y14c{bottom:857.805000px;}
.y179{bottom:858.885000px;}
.y1cc{bottom:861.405000px;}
.y213{bottom:864.645000px;}
.yf4{bottom:865.905000px;}
.y13f{bottom:866.805000px;}
.y87{bottom:867.885000px;}
.yb9{bottom:868.245000px;}
.y4c{bottom:869.325000px;}
.y10c{bottom:874.905000px;}
.y1cb{bottom:879.225000px;}
.y212{bottom:883.545000px;}
.yf3{bottom:883.725000px;}
.y13e{bottom:884.625000px;}
.yb8{bottom:886.065000px;}
.y178{bottom:886.245000px;}
.y4b{bottom:887.325000px;}
.y10b{bottom:892.725000px;}
.y86{bottom:895.245000px;}
.y1ca{bottom:899.745000px;}
.yf2{bottom:901.545000px;}
.y13d{bottom:902.445000px;}
.yb7{bottom:903.885000px;}
.y177{bottom:904.065000px;}
.y4a{bottom:905.145000px;}
.y10a{bottom:910.590000px;}
.y170{bottom:912.930000px;}
.y85{bottom:913.110000px;}
.yf1{bottom:919.590000px;}
.y13c{bottom:920.490000px;}
.y211{bottom:921.570000px;}
.yb6{bottom:921.750000px;}
.y176{bottom:921.930000px;}
.y49{bottom:923.010000px;}
.y109{bottom:928.590000px;}
.y16f{bottom:930.750000px;}
.y84{bottom:930.930000px;}
.y1c9{bottom:932.010000px;}
.yb{bottom:934.350000px;}
.yf0{bottom:937.410000px;}
.y13b{bottom:938.310000px;}
.yb5{bottom:939.570000px;}
.y175{bottom:939.750000px;}
.y210{bottom:940.470000px;}
.y48{bottom:940.830000px;}
.y13{bottom:941.400000px;}
.y108{bottom:946.410000px;}
.y16e{bottom:948.570000px;}
.y83{bottom:948.750000px;}
.y1c8{bottom:949.830000px;}
.yef{bottom:955.230000px;}
.y39{bottom:955.800000px;}
.y13a{bottom:956.130000px;}
.y47{bottom:958.650000px;}
.y20f{bottom:959.550000px;}
.y107{bottom:964.230000px;}
.y82{bottom:966.570000px;}
.y1c7{bottom:967.650000px;}
.yee{bottom:973.050000px;}
.y139{bottom:973.950000px;}
.y46{bottom:976.470000px;}
.y20e{bottom:978.450000px;}
.y106{bottom:982.050000px;}
.y1f5{bottom:984.390000px;}
.y81{bottom:984.570000px;}
.y1c6{bottom:985.470000px;}
.y38{bottom:989.430000px;}
.yed{bottom:990.870000px;}
.y138{bottom:991.770000px;}
.yb4{bottom:993.030000px;}
.y16d{bottom:993.390000px;}
.y45{bottom:994.470000px;}
.y20d{bottom:997.350000px;}
.y105{bottom:999.870000px;}
.y1f4{bottom:1002.210000px;}
.y80{bottom:1002.390000px;}
.y1c5{bottom:1003.470000px;}
.yec{bottom:1008.870000px;}
.y137{bottom:1009.770000px;}
.y16c{bottom:1011.210000px;}
.y44{bottom:1012.290000px;}
.y37{bottom:1015.710000px;}
.y20c{bottom:1016.430000px;}
.y104{bottom:1017.870000px;}
.y7f{bottom:1020.210000px;}
.y1c4{bottom:1021.290000px;}
.yeb{bottom:1026.690000px;}
.y136{bottom:1027.590000px;}
.y16b{bottom:1029.030000px;}
.y20b{bottom:1035.330000px;}
.y103{bottom:1035.690000px;}
.y7e{bottom:1038.030000px;}
.y43{bottom:1039.110000px;}
.y36{bottom:1041.990000px;}
.yea{bottom:1044.510000px;}
.y135{bottom:1045.410000px;}
.y16a{bottom:1046.850000px;}
.y174{bottom:1047.030000px;}
.y102{bottom:1053.510000px;}
.y20a{bottom:1054.410000px;}
.yb3{bottom:1055.850000px;}
.y42{bottom:1056.930000px;}
.ye9{bottom:1062.330000px;}
.y134{bottom:1063.230000px;}
.y169{bottom:1064.670000px;}
.y7d{bottom:1064.850000px;}
.y35{bottom:1068.450000px;}
.y101{bottom:1071.330000px;}
.y209{bottom:1073.310000px;}
.yb2{bottom:1073.670000px;}
.y41{bottom:1074.750000px;}
.ye8{bottom:1080.150000px;}
.y133{bottom:1081.050000px;}
.y7c{bottom:1082.670000px;}
.y100{bottom:1089.150000px;}
.yb1{bottom:1091.670000px;}
.y208{bottom:1092.210000px;}
.y40{bottom:1092.750000px;}
.y132{bottom:1098.870000px;}
.y7b{bottom:1100.670000px;}
.ye7{bottom:1102.110000px;}
.ya{bottom:1107.690000px;}
.y14b{bottom:1107.870000px;}
.yb0{bottom:1109.490000px;}
.y3f{bottom:1110.570000px;}
.y207{bottom:1111.290000px;}
.y131{bottom:1116.870000px;}
.y7a{bottom:1118.490000px;}
.y14a{bottom:1125.870000px;}
.y168{bottom:1127.310000px;}
.y3e{bottom:1128.390000px;}
.y206{bottom:1130.190000px;}
.y79{bottom:1136.310000px;}
.y12d{bottom:1138.830000px;}
.y167{bottom:1145.130000px;}
.y3d{bottom:1146.240000px;}
.y205{bottom:1149.300000px;}
.ye6{bottom:1152.180000px;}
.y78{bottom:1154.160000px;}
.y166{bottom:1162.980000px;}
.y3c{bottom:1164.060000px;}
.y204{bottom:1168.200000px;}
.y77{bottom:1171.980000px;}
.y165{bottom:1180.800000px;}
.y3b{bottom:1183.860000px;}
.y203{bottom:1187.100000px;}
.y76{bottom:1189.800000px;}
.y1{bottom:1195.560000px;}
.y5{bottom:1215.360000px;}
.y3{bottom:1224.180000px;}
.h2{height:17.460000px;}
.h4{height:21.780000px;}
.h1c{height:26.805000px;}
.h2c{height:26.820000px;}
.h2f{height:26.985000px;}
.h2d{height:27.030000px;}
.h18{height:37.705078px;}
.h24{height:38.100586px;}
.h1b{height:44.507812px;}
.h3{height:48.616875px;}
.h1d{height:49.125000px;}
.h21{height:49.135500px;}
.h22{height:49.140000px;}
.h1e{height:49.161000px;}
.h2a{height:49.176000px;}
.h14{height:49.255313px;}
.h1f{height:49.305000px;}
.h2b{height:49.315500px;}
.h23{height:49.342500px;}
.h20{height:49.356000px;}
.h5{height:51.519375px;}
.h7{height:52.971680px;}
.ha{height:52.998047px;}
.h9{height:53.709961px;}
.h19{height:54.421875px;}
.h30{height:54.525000px;}
.h2e{height:54.570000px;}
.h1a{height:55.503491px;}
.h8{height:55.825312px;}
.h13{height:58.621992px;}
.h10{height:58.651172px;}
.h15{height:60.226875px;}
.h28{height:62.482500px;}
.h29{height:62.625000px;}
.h27{height:62.635500px;}
.h25{height:62.661000px;}
.h26{height:62.676000px;}
.h6{height:65.010937px;}
.he{height:66.757500px;}
.hf{height:74.160000px;}
.h11{height:78.300000px;}
.h17{height:78.367500px;}
.hd{height:84.898125px;}
.hc{height:93.780000px;}
.h16{height:132.480000px;}
.hb{height:160.380000px;}
.h12{height:410.220000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w6{width:20.340000px;}
.w12{width:36.562500px;}
.w2a{width:40.140000px;}
.w2c{width:44.445000px;}
.w10{width:45.705000px;}
.w1a{width:45.742500px;}
.wa{width:46.462500px;}
.w23{width:50.220000px;}
.w18{width:51.465000px;}
.w2b{width:51.696000px;}
.w20{width:53.085000px;}
.w25{width:55.476000px;}
.wd{width:59.025000px;}
.wf{width:59.205000px;}
.we{width:59.601000px;}
.wc{width:59.745000px;}
.w1c{width:61.365000px;}
.w17{width:62.625000px;}
.w14{width:63.936000px;}
.w15{width:64.065000px;}
.w24{width:64.620000px;}
.w1e{width:66.261000px;}
.w1f{width:66.765000px;}
.w1d{width:67.125000px;}
.w11{width:68.970000px;}
.w21{width:72.570000px;}
.w16{width:72.921000px;}
.w19{width:80.850000px;}
.w2{width:85.320000px;}
.w2d{width:88.905000px;}
.w26{width:90.165000px;}
.w2e{width:103.161000px;}
.w27{width:133.401000px;}
.w2f{width:134.310000px;}
.w28{width:143.310000px;}
.w22{width:236.590500px;}
.w29{width:315.790500px;}
.w13{width:333.390000px;}
.w1b{width:340.275000px;}
.wb{width:388.515000px;}
.w3{width:470.160000px;}
.w9{width:500.940000px;}
.w8{width:774.540000px;}
.w4{width:783.360000px;}
.w5{width:784.080000px;}
.w7{width:784.440000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:1.476000px;}
.x2b{left:7.920000px;}
.x2d{left:9.705000px;}
.xc{left:10.800000px;}
.x32{left:12.420000px;}
.x29{left:14.395500px;}
.xe{left:15.660000px;}
.xd{left:17.280000px;}
.x49{left:20.880000px;}
.x4a{left:30.225000px;}
.x53{left:36.750000px;}
.x54{left:37.980000px;}
.x28{left:50.404500px;}
.x11{left:51.660000px;}
.x5{left:54.000000px;}
.x4c{left:55.084500px;}
.x26{left:57.060000px;}
.x15{left:61.200000px;}
.x14{left:65.160000px;}
.x16{left:72.000000px;}
.x1e{left:81.000000px;}
.x20{left:88.236000px;}
.x42{left:93.636000px;}
.x2a{left:97.596000px;}
.x1{left:100.080000px;}
.x3b{left:103.716000px;}
.x1f{left:108.036000px;}
.x12{left:110.916000px;}
.x21{left:115.236000px;}
.x3a{left:131.436000px;}
.x13{left:143.676000px;}
.x6{left:161.670000px;}
.x1c{left:170.895000px;}
.xa{left:174.090000px;}
.x1b{left:198.360000px;}
.x19{left:254.730000px;}
.x1a{left:282.315000px;}
.x17{left:288.435000px;}
.x43{left:294.735000px;}
.x27{left:315.975000px;}
.x10{left:324.795000px;}
.x44{left:345.675000px;}
.x7{left:356.655000px;}
.x18{left:358.635000px;}
.x3{left:367.920000px;}
.x4d{left:371.595000px;}
.x33{left:372.855000px;}
.xf{left:376.455000px;}
.x4b{left:398.955000px;}
.x45{left:411.015000px;}
.x4e{left:412.455000px;}
.x34{left:432.435000px;}
.x3c{left:444.720000px;}
.x4{left:462.960000px;}
.x4f{left:464.880000px;}
.x1d{left:465.945000px;}
.x46{left:467.220000px;}
.x25{left:479.085000px;}
.x24{left:482.865000px;}
.x22{left:486.645000px;}
.x55{left:492.945000px;}
.x35{left:497.280000px;}
.x3d{left:506.820000px;}
.x50{left:510.060000px;}
.x23{left:520.665000px;}
.x2c{left:547.320000px;}
.x47{left:558.120000px;}
.x36{left:562.080000px;}
.x3e{left:574.860000px;}
.x51{left:599.700000px;}
.x2e{left:607.080000px;}
.x37{left:635.730000px;}
.x3f{left:641.850000px;}
.x2f{left:667.410000px;}
.x48{left:692.250000px;}
.x38{left:699.090000px;}
.x52{left:703.590000px;}
.x40{left:709.350000px;}
.x30{left:727.350000px;}
.x39{left:751.290000px;}
.x41{left:763.350000px;}
.x31{left:773.790000px;}
.x8{left:837.180000px;}
.x9{left:839.340000px;}
.xb{left:846.180000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls3{letter-spacing:-0.640000pt;}
.ls10{letter-spacing:-0.624000pt;}
.lsc{letter-spacing:-0.480000pt;}
.ls15{letter-spacing:-0.320000pt;}
.lsf{letter-spacing:-0.192000pt;}
.lsb{letter-spacing:-0.112000pt;}
.ls1{letter-spacing:0.000000pt;}
.lse{letter-spacing:0.015360pt;}
.lsd{letter-spacing:0.016000pt;}
.ls0{letter-spacing:0.020480pt;}
.ls7{letter-spacing:0.096000pt;}
.ls11{letter-spacing:0.160000pt;}
.ls2{letter-spacing:0.161067pt;}
.ls9{letter-spacing:0.192000pt;}
.lsa{letter-spacing:0.288000pt;}
.ls5{letter-spacing:0.320000pt;}
.ls13{letter-spacing:7.840000pt;}
.ls12{letter-spacing:8.480000pt;}
.ls14{letter-spacing:22.496000pt;}
.ls4{letter-spacing:46.816000pt;}
.ls6{letter-spacing:82.016000pt;}
.ls8{letter-spacing:82.656000pt;}
.wsc{word-spacing:-17.295360pt;}
.ws6{word-spacing:-17.280000pt;}
.ws3{word-spacing:-14.720000pt;}
.ws4{word-spacing:-14.080000pt;}
.ws7{word-spacing:-12.320000pt;}
.wsa{word-spacing:-12.192000pt;}
.ws8{word-spacing:-12.096000pt;}
.ws2{word-spacing:-12.000000pt;}
.ws9{word-spacing:-11.888000pt;}
.wsb{word-spacing:-11.808000pt;}
.wsd{word-spacing:-11.680000pt;}
.ws1{word-spacing:-10.881067pt;}
.ws0{word-spacing:-10.720000pt;}
.ws5{word-spacing:0.000000pt;}
._0{margin-left:-1.077973pt;}
._2{width:0.997973pt;}
._1{width:2.058667pt;}
._9{width:3.074560pt;}
._6{width:4.076587pt;}
._b{width:5.390080pt;}
._5{width:6.427520pt;}
._8{width:7.394987pt;}
._7{width:8.286720pt;}
._a{width:9.838507pt;}
._c{width:11.261440pt;}
._f{width:13.536000pt;}
._13{width:14.640000pt;}
._12{width:15.696000pt;}
._15{width:17.013973pt;}
._14{width:17.952000pt;}
._19{width:18.960000pt;}
._e{width:20.234027pt;}
._d{width:21.141973pt;}
._1b{width:22.059947pt;}
._1a{width:22.964053pt;}
._11{width:24.720000pt;}
._10{width:25.680000pt;}
._1d{width:27.168000pt;}
._1c{width:28.272000pt;}
._25{width:29.319893pt;}
._1e{width:30.288000pt;}
._22{width:31.221973pt;}
._18{width:32.160000pt;}
._16{width:33.984000pt;}
._17{width:35.312000pt;}
._21{width:36.784000pt;}
._24{width:40.542080pt;}
._23{width:41.877973pt;}
._1f{width:67.440000pt;}
._20{width:68.496000pt;}
._4{width:1452.693333pt;}
._3{width:2580.859733pt;}
.fs0{font-size:42.880000pt;}
.fs1{font-size:45.440000pt;}
.fs3{font-size:48.000000pt;}
.fs5{font-size:53.120000pt;}
.fs2{font-size:58.880000pt;}
.fs6{font-size:69.120000pt;}
.fs4{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.y9{bottom:3.520000pt;}
.y2{bottom:4.480000pt;}
.y4{bottom:5.440000pt;}
.y3a{bottom:6.213333pt;}
.yd0{bottom:8.640000pt;}
.y21{bottom:8.706667pt;}
.yd8{bottom:8.946667pt;}
.yd4{bottom:8.960000pt;}
.y126{bottom:8.986667pt;}
.ydf{bottom:9.106667pt;}
.ye4{bottom:9.120000pt;}
.y17e{bottom:9.146667pt;}
.y193{bottom:11.346667pt;}
.yd7{bottom:12.946667pt;}
.yd3{bottom:12.960000pt;}
.y162{bottom:12.986667pt;}
.yde{bottom:13.106667pt;}
.ye3{bottom:13.120000pt;}
.y8{bottom:20.000000pt;}
.y15d{bottom:20.786667pt;}
.y12c{bottom:20.800000pt;}
.y130{bottom:20.826667pt;}
.y120{bottom:20.946667pt;}
.y158{bottom:20.960000pt;}
.y127{bottom:20.986667pt;}
.y191{bottom:21.266667pt;}
.y180{bottom:21.280000pt;}
.y15c{bottom:24.786667pt;}
.y12b{bottom:24.800000pt;}
.y12f{bottom:24.826667pt;}
.y11f{bottom:24.946667pt;}
.y157{bottom:24.960000pt;}
.y125{bottom:24.986667pt;}
.yda{bottom:28.786667pt;}
.yd2{bottom:28.800000pt;}
.yd6{bottom:28.826667pt;}
.ydd{bottom:28.946667pt;}
.ye2{bottom:28.960000pt;}
.y192{bottom:31.186667pt;}
.y7{bottom:36.480000pt;}
.y17{bottom:36.573333pt;}
.y12e{bottom:40.666667pt;}
.y15b{bottom:40.786667pt;}
.y12a{bottom:40.800000pt;}
.y11e{bottom:40.826667pt;}
.y6{bottom:50.560000pt;}
.y1b{bottom:53.853333pt;}
.y16{bottom:58.013333pt;}
.y32{bottom:63.840000pt;}
.y129{bottom:74.560000pt;}
.y1ac{bottom:76.960000pt;}
.y12{bottom:80.160000pt;}
.y31{bottom:81.466667pt;}
.y164{bottom:82.560000pt;}
.y1f3{bottom:83.680000pt;}
.y75{bottom:90.080000pt;}
.y1ab{bottom:92.800000pt;}
.y1a0{bottom:99.040000pt;}
.y30{bottom:99.066667pt;}
.y1f2{bottom:99.520000pt;}
.ye5{bottom:101.920000pt;}
.yaf{bottom:104.960000pt;}
.y74{bottom:105.920000pt;}
.y11{bottom:106.400000pt;}
.y1aa{bottom:108.640000pt;}
.y19f{bottom:114.880000pt;}
.yae{bottom:120.480000pt;}
.y1c3{bottom:120.800000pt;}
.y73{bottom:121.760000pt;}
.y22{bottom:122.560000pt;}
.y1f1{bottom:123.520000pt;}
.y1a9{bottom:124.480000pt;}
.y163{bottom:126.880000pt;}
.y14{bottom:128.773333pt;}
.y19e{bottom:130.720000pt;}
.y128{bottom:130.880000pt;}
.y1c2{bottom:136.800000pt;}
.y72{bottom:137.760000pt;}
.y1f0{bottom:139.360000pt;}
.y1a8{bottom:140.320000pt;}
.y2e{bottom:142.426667pt;}
.y34{bottom:142.560000pt;}
.yad{bottom:144.800000pt;}
.ye1{bottom:146.240000pt;}
.y19d{bottom:146.560000pt;}
.y1c1{bottom:152.640000pt;}
.y71{bottom:153.600000pt;}
.y1ef{bottom:155.200000pt;}
.y1a7{bottom:156.320000pt;}
.y2d{bottom:160.026667pt;}
.yac{bottom:160.640000pt;}
.y19c{bottom:162.560000pt;}
.y1c0{bottom:168.480000pt;}
.y33{bottom:168.800000pt;}
.y70{bottom:169.440000pt;}
.y1ee{bottom:171.040000pt;}
.y161{bottom:171.360000pt;}
.y1a6{bottom:172.160000pt;}
.y124{bottom:175.200000pt;}
.yab{bottom:176.480000pt;}
.y2c{bottom:177.626667pt;}
.y19b{bottom:178.400000pt;}
.y1bf{bottom:184.346667pt;}
.y6f{bottom:185.306667pt;}
.y1a5{bottom:188.026667pt;}
.ye0{bottom:190.760000pt;}
.yaa{bottom:192.346667pt;}
.y19a{bottom:194.266667pt;}
.y1ed{bottom:194.906667pt;}
.y2b{bottom:195.226667pt;}
.y1be{bottom:200.186667pt;}
.y1a4{bottom:203.866667pt;}
.ya9{bottom:208.186667pt;}
.y6e{bottom:209.146667pt;}
.y199{bottom:210.106667pt;}
.y1ec{bottom:210.746667pt;}
.y160{bottom:215.880000pt;}
.y1bd{bottom:216.026667pt;}
.y1a3{bottom:219.706667pt;}
.ya8{bottom:224.026667pt;}
.y6d{bottom:224.986667pt;}
.y198{bottom:225.946667pt;}
.y1eb{bottom:226.746667pt;}
.y123{bottom:231.560000pt;}
.y1bc{bottom:232.026667pt;}
.ydc{bottom:235.080000pt;}
.y1a2{bottom:237.946667pt;}
.y29{bottom:238.586667pt;}
.ya7{bottom:240.026667pt;}
.y6c{bottom:240.986667pt;}
.y197{bottom:241.786667pt;}
.y1ea{bottom:242.586667pt;}
.y2f{bottom:247.226667pt;}
.y1bb{bottom:247.866667pt;}
.ya6{bottom:255.866667pt;}
.y28{bottom:256.186667pt;}
.y6b{bottom:256.826667pt;}
.y196{bottom:257.786667pt;}
.y1e9{bottom:260.186667pt;}
.y15f{bottom:260.200000pt;}
.y1ba{bottom:263.706667pt;}
.y1a1{bottom:268.346667pt;}
.ya5{bottom:271.706667pt;}
.y6a{bottom:272.666667pt;}
.y195{bottom:273.626667pt;}
.y27{bottom:273.786667pt;}
.y122{bottom:275.880000pt;}
.ydb{bottom:279.560000pt;}
.y1b9{bottom:287.546667pt;}
.y69{bottom:288.506667pt;}
.y1e8{bottom:289.306667pt;}
.y26{bottom:291.426667pt;}
.ya4{bottom:295.546667pt;}
.y194{bottom:297.466667pt;}
.y1b8{bottom:303.386667pt;}
.y68{bottom:304.346667pt;}
.y15e{bottom:304.680000pt;}
.y1e7{bottom:305.146667pt;}
.y25{bottom:309.026667pt;}
.ya3{bottom:311.386667pt;}
.y190{bottom:317.000000pt;}
.y1b7{bottom:319.386667pt;}
.y121{bottom:320.360000pt;}
.y1e6{bottom:321.146667pt;}
.yd9{bottom:324.040000pt;}
.y24{bottom:326.786667pt;}
.ya2{bottom:327.386667pt;}
.y67{bottom:328.186667pt;}
.y1b6{bottom:335.226667pt;}
.y1e5{bottom:336.986667pt;}
.y18f{bottom:341.480000pt;}
.ya1{bottom:343.226667pt;}
.y2a{bottom:343.386667pt;}
.y66{bottom:344.186667pt;}
.y23{bottom:344.386667pt;}
.y15a{bottom:349.000000pt;}
.y1b5{bottom:351.066667pt;}
.y1e4{bottom:352.826667pt;}
.ya0{bottom:359.066667pt;}
.y65{bottom:360.026667pt;}
.y11d{bottom:364.680000pt;}
.y18e{bottom:366.120000pt;}
.yd5{bottom:368.360000pt;}
.y1e3{bottom:368.666667pt;}
.y9f{bottom:374.906667pt;}
.y64{bottom:375.866667pt;}
.y9e{bottom:390.746667pt;}
.y63{bottom:391.746667pt;}
.y1e2{bottom:392.546667pt;}
.y18d{bottom:395.586667pt;}
.y159{bottom:405.346667pt;}
.y9d{bottom:406.626667pt;}
.y1e1{bottom:408.386667pt;}
.y18c{bottom:411.586667pt;}
.yd1{bottom:412.866667pt;}
.y62{bottom:415.586667pt;}
.y11c{bottom:421.026667pt;}
.y1b4{bottom:422.626667pt;}
.y1e0{bottom:424.386667pt;}
.y9c{bottom:430.626667pt;}
.y61{bottom:431.586667pt;}
.y188{bottom:435.426667pt;}
.y1b3{bottom:438.466667pt;}
.y1df{bottom:440.226667pt;}
.y9b{bottom:446.466667pt;}
.y60{bottom:447.426667pt;}
.y156{bottom:449.666667pt;}
.y187{bottom:451.266667pt;}
.y1b2{bottom:454.306667pt;}
.y1de{bottom:456.066667pt;}
.ycf{bottom:457.186667pt;}
.y9a{bottom:462.306667pt;}
.y5f{bottom:463.266667pt;}
.y11b{bottom:465.506667pt;}
.y186{bottom:467.106667pt;}
.y99{bottom:478.146667pt;}
.y5e{bottom:479.106667pt;}
.y1dd{bottom:479.906667pt;}
.y220{bottom:482.466667pt;}
.y185{bottom:482.946667pt;}
.yce{bottom:486.466667pt;}
.y98{bottom:493.986667pt;}
.y5d{bottom:494.946667pt;}
.y1dc{bottom:495.746667pt;}
.y10{bottom:498.626667pt;}
.y184{bottom:498.786667pt;}
.ycd{bottom:502.306667pt;}
.y21f{bottom:505.186667pt;}
.y155{bottom:505.986667pt;}
.y18b{bottom:506.786667pt;}
.y11a{bottom:509.826667pt;}
.y97{bottom:509.986667pt;}
.y5c{bottom:510.786667pt;}
.y1db{bottom:511.746667pt;}
.y183{bottom:514.786667pt;}
.y202{bottom:522.146667pt;}
.y18a{bottom:522.786667pt;}
.y96{bottom:525.826667pt;}
.yc7{bottom:526.466667pt;}
.y5b{bottom:526.786667pt;}
.y1da{bottom:527.586667pt;}
.y182{bottom:530.626667pt;}
.yf{bottom:535.266667pt;}
.y189{bottom:538.626667pt;}
.y201{bottom:538.946667pt;}
.y119{bottom:539.106667pt;}
.ycc{bottom:541.346667pt;}
.y95{bottom:541.666667pt;}
.yc6{bottom:542.306667pt;}
.y5a{bottom:542.626667pt;}
.y1d9{bottom:543.426667pt;}
.ye{bottom:549.186667pt;}
.y154{bottom:550.466667pt;}
.y181{bottom:554.466667pt;}
.y20{bottom:554.560000pt;}
.y118{bottom:554.946667pt;}
.ycb{bottom:557.186667pt;}
.y94{bottom:557.506667pt;}
.yc5{bottom:558.146667pt;}
.y1d8{bottom:559.266667pt;}
.y21e{bottom:566.146667pt;}
.y59{bottom:566.466667pt;}
.yca{bottom:573.026667pt;}
.y200{bottom:573.186667pt;}
.y93{bottom:573.346667pt;}
.y17f{bottom:573.986667pt;}
.yff{bottom:579.106667pt;}
.y153{bottom:579.586667pt;}
.y1f{bottom:580.386667pt;}
.yc4{bottom:582.146667pt;}
.y58{bottom:582.306667pt;}
.y21d{bottom:582.946667pt;}
.y1d7{bottom:583.106667pt;}
.y117{bottom:586.786667pt;}
.yc9{bottom:588.866667pt;}
.y1ff{bottom:589.026667pt;}
.y92{bottom:589.186667pt;}
.yc3{bottom:597.986667pt;}
.y57{bottom:598.146667pt;}
.y17d{bottom:598.466667pt;}
.y1d6{bottom:598.946667pt;}
.y21c{bottom:599.746667pt;}
.y116{bottom:602.653333pt;}
.yfe{bottom:602.973333pt;}
.y149{bottom:603.773333pt;}
.y1fe{bottom:604.893333pt;}
.y91{bottom:605.213333pt;}
.y1e{bottom:605.346667pt;}
.yc8{bottom:613.213333pt;}
.yc2{bottom:613.853333pt;}
.y56{bottom:614.173333pt;}
.y1d5{bottom:614.973333pt;}
.y21b{bottom:616.733333pt;}
.y115{bottom:618.493333pt;}
.yfd{bottom:618.813333pt;}
.y1a{bottom:619.040000pt;}
.y148{bottom:619.613333pt;}
.y1b1{bottom:621.053333pt;}
.y17c{bottom:623.133333pt;}
.y152{bottom:627.293333pt;}
.y1fd{bottom:628.733333pt;}
.y90{bottom:629.053333pt;}
.yd{bottom:629.213333pt;}
.yc1{bottom:629.693333pt;}
.y55{bottom:630.013333pt;}
.y1d4{bottom:630.813333pt;}
.y21a{bottom:633.533333pt;}
.yfc{bottom:634.813333pt;}
.y147{bottom:635.613333pt;}
.y1b0{bottom:636.893333pt;}
.y114{bottom:642.813333pt;}
.y151{bottom:643.133333pt;}
.y1fc{bottom:644.573333pt;}
.y8f{bottom:644.893333pt;}
.yc0{bottom:645.533333pt;}
.y54{bottom:645.853333pt;}
.y1d3{bottom:646.653333pt;}
.y1d{bottom:646.813333pt;}
.y219{bottom:650.493333pt;}
.yfb{bottom:650.653333pt;}
.y146{bottom:651.453333pt;}
.y17b{bottom:652.253333pt;}
.y1af{bottom:652.733333pt;}
.y113{bottom:658.653333pt;}
.y150{bottom:658.973333pt;}
.y1fb{bottom:660.573333pt;}
.y8e{bottom:660.733333pt;}
.ybf{bottom:661.373333pt;}
.y53{bottom:661.693333pt;}
.y1d2{bottom:662.493333pt;}
.y1c{bottom:663.613333pt;}
.yfa{bottom:666.493333pt;}
.y145{bottom:667.293333pt;}
.y1ae{bottom:668.573333pt;}
.y112{bottom:674.493333pt;}
.y1fa{bottom:676.413333pt;}
.y8d{bottom:676.573333pt;}
.ybe{bottom:677.373333pt;}
.y52{bottom:677.533333pt;}
.y1d1{bottom:678.333333pt;}
.yf9{bottom:682.333333pt;}
.y144{bottom:683.133333pt;}
.y218{bottom:684.253333pt;}
.y1ad{bottom:684.573333pt;}
.yc{bottom:690.013333pt;}
.y111{bottom:690.333333pt;}
.y173{bottom:692.413333pt;}
.y8c{bottom:692.573333pt;}
.ybd{bottom:693.213333pt;}
.y51{bottom:693.373333pt;}
.y1d0{bottom:694.333333pt;}
.yf8{bottom:698.173333pt;}
.y143{bottom:698.973333pt;}
.y1f9{bottom:700.253333pt;}
.y217{bottom:701.053333pt;}
.y110{bottom:706.173333pt;}
.y19{bottom:707.613333pt;}
.y172{bottom:708.253333pt;}
.y8b{bottom:708.413333pt;}
.y50{bottom:709.373333pt;}
.y1cf{bottom:710.173333pt;}
.ybc{bottom:710.813333pt;}
.yf7{bottom:714.173333pt;}
.y14f{bottom:714.973333pt;}
.y1f8{bottom:716.093333pt;}
.y216{bottom:717.853333pt;}
.y10f{bottom:722.173333pt;}
.y142{bottom:722.973333pt;}
.y171{bottom:724.093333pt;}
.y8a{bottom:724.253333pt;}
.y4f{bottom:725.213333pt;}
.y1ce{bottom:726.013333pt;}
.y14e{bottom:730.813333pt;}
.y1f7{bottom:731.933333pt;}
.y215{bottom:734.813333pt;}
.yf6{bottom:738.013333pt;}
.y141{bottom:738.813333pt;}
.ybb{bottom:739.933333pt;}
.y89{bottom:740.093333pt;}
.y4e{bottom:741.053333pt;}
.y1cd{bottom:741.853333pt;}
.y15{bottom:742.080000pt;}
.y10e{bottom:746.013333pt;}
.y14d{bottom:746.653333pt;}
.y1f6{bottom:747.773333pt;}
.y17a{bottom:747.933333pt;}
.y214{bottom:751.613333pt;}
.yf5{bottom:753.853333pt;}
.y140{bottom:754.653333pt;}
.yba{bottom:755.773333pt;}
.y88{bottom:755.933333pt;}
.y18{bottom:756.733333pt;}
.y4d{bottom:756.893333pt;}
.y10d{bottom:761.853333pt;}
.y14c{bottom:762.493333pt;}
.y179{bottom:763.453333pt;}
.y1cc{bottom:765.693333pt;}
.y213{bottom:768.573333pt;}
.yf4{bottom:769.693333pt;}
.y13f{bottom:770.493333pt;}
.y87{bottom:771.453333pt;}
.yb9{bottom:771.773333pt;}
.y4c{bottom:772.733333pt;}
.y10c{bottom:777.693333pt;}
.y1cb{bottom:781.533333pt;}
.y212{bottom:785.373333pt;}
.yf3{bottom:785.533333pt;}
.y13e{bottom:786.333333pt;}
.yb8{bottom:787.613333pt;}
.y178{bottom:787.773333pt;}
.y4b{bottom:788.733333pt;}
.y10b{bottom:793.533333pt;}
.y86{bottom:795.773333pt;}
.y1ca{bottom:799.773333pt;}
.yf2{bottom:801.373333pt;}
.y13d{bottom:802.173333pt;}
.yb7{bottom:803.453333pt;}
.y177{bottom:803.613333pt;}
.y4a{bottom:804.573333pt;}
.y10a{bottom:809.413333pt;}
.y170{bottom:811.493333pt;}
.y85{bottom:811.653333pt;}
.yf1{bottom:817.413333pt;}
.y13c{bottom:818.213333pt;}
.y211{bottom:819.173333pt;}
.yb6{bottom:819.333333pt;}
.y176{bottom:819.493333pt;}
.y49{bottom:820.453333pt;}
.y109{bottom:825.413333pt;}
.y16f{bottom:827.333333pt;}
.y84{bottom:827.493333pt;}
.y1c9{bottom:828.453333pt;}
.yb{bottom:830.533333pt;}
.yf0{bottom:833.253333pt;}
.y13b{bottom:834.053333pt;}
.yb5{bottom:835.173333pt;}
.y175{bottom:835.333333pt;}
.y210{bottom:835.973333pt;}
.y48{bottom:836.293333pt;}
.y13{bottom:836.800000pt;}
.y108{bottom:841.253333pt;}
.y16e{bottom:843.173333pt;}
.y83{bottom:843.333333pt;}
.y1c8{bottom:844.293333pt;}
.yef{bottom:849.093333pt;}
.y39{bottom:849.600000pt;}
.y13a{bottom:849.893333pt;}
.y47{bottom:852.133333pt;}
.y20f{bottom:852.933333pt;}
.y107{bottom:857.093333pt;}
.y82{bottom:859.173333pt;}
.y1c7{bottom:860.133333pt;}
.yee{bottom:864.933333pt;}
.y139{bottom:865.733333pt;}
.y46{bottom:867.973333pt;}
.y20e{bottom:869.733333pt;}
.y106{bottom:872.933333pt;}
.y1f5{bottom:875.013333pt;}
.y81{bottom:875.173333pt;}
.y1c6{bottom:875.973333pt;}
.y38{bottom:879.493333pt;}
.yed{bottom:880.773333pt;}
.y138{bottom:881.573333pt;}
.yb4{bottom:882.693333pt;}
.y16d{bottom:883.013333pt;}
.y45{bottom:883.973333pt;}
.y20d{bottom:886.533333pt;}
.y105{bottom:888.773333pt;}
.y1f4{bottom:890.853333pt;}
.y80{bottom:891.013333pt;}
.y1c5{bottom:891.973333pt;}
.yec{bottom:896.773333pt;}
.y137{bottom:897.573333pt;}
.y16c{bottom:898.853333pt;}
.y44{bottom:899.813333pt;}
.y37{bottom:902.853333pt;}
.y20c{bottom:903.493333pt;}
.y104{bottom:904.773333pt;}
.y7f{bottom:906.853333pt;}
.y1c4{bottom:907.813333pt;}
.yeb{bottom:912.613333pt;}
.y136{bottom:913.413333pt;}
.y16b{bottom:914.693333pt;}
.y20b{bottom:920.293333pt;}
.y103{bottom:920.613333pt;}
.y7e{bottom:922.693333pt;}
.y43{bottom:923.653333pt;}
.y36{bottom:926.213333pt;}
.yea{bottom:928.453333pt;}
.y135{bottom:929.253333pt;}
.y16a{bottom:930.533333pt;}
.y174{bottom:930.693333pt;}
.y102{bottom:936.453333pt;}
.y20a{bottom:937.253333pt;}
.yb3{bottom:938.533333pt;}
.y42{bottom:939.493333pt;}
.ye9{bottom:944.293333pt;}
.y134{bottom:945.093333pt;}
.y169{bottom:946.373333pt;}
.y7d{bottom:946.533333pt;}
.y35{bottom:949.733333pt;}
.y101{bottom:952.293333pt;}
.y209{bottom:954.053333pt;}
.yb2{bottom:954.373333pt;}
.y41{bottom:955.333333pt;}
.ye8{bottom:960.133333pt;}
.y133{bottom:960.933333pt;}
.y7c{bottom:962.373333pt;}
.y100{bottom:968.133333pt;}
.yb1{bottom:970.373333pt;}
.y208{bottom:970.853333pt;}
.y40{bottom:971.333333pt;}
.y132{bottom:976.773333pt;}
.y7b{bottom:978.373333pt;}
.ye7{bottom:979.653333pt;}
.ya{bottom:984.613333pt;}
.y14b{bottom:984.773333pt;}
.yb0{bottom:986.213333pt;}
.y3f{bottom:987.173333pt;}
.y207{bottom:987.813333pt;}
.y131{bottom:992.773333pt;}
.y7a{bottom:994.213333pt;}
.y14a{bottom:1000.773333pt;}
.y168{bottom:1002.053333pt;}
.y3e{bottom:1003.013333pt;}
.y206{bottom:1004.613333pt;}
.y79{bottom:1010.053333pt;}
.y12d{bottom:1012.293333pt;}
.y167{bottom:1017.893333pt;}
.y3d{bottom:1018.880000pt;}
.y205{bottom:1021.600000pt;}
.ye6{bottom:1024.160000pt;}
.y78{bottom:1025.920000pt;}
.y166{bottom:1033.760000pt;}
.y3c{bottom:1034.720000pt;}
.y204{bottom:1038.400000pt;}
.y77{bottom:1041.760000pt;}
.y165{bottom:1049.600000pt;}
.y3b{bottom:1052.320000pt;}
.y203{bottom:1055.200000pt;}
.y76{bottom:1057.600000pt;}
.y1{bottom:1062.720000pt;}
.y5{bottom:1080.320000pt;}
.y3{bottom:1088.160000pt;}
.h2{height:15.520000pt;}
.h4{height:19.360000pt;}
.h1c{height:23.826667pt;}
.h2c{height:23.840000pt;}
.h2f{height:23.986667pt;}
.h2d{height:24.026667pt;}
.h18{height:33.515625pt;}
.h24{height:33.867188pt;}
.h1b{height:39.562500pt;}
.h3{height:43.215000pt;}
.h1d{height:43.666667pt;}
.h21{height:43.676000pt;}
.h22{height:43.680000pt;}
.h1e{height:43.698667pt;}
.h2a{height:43.712000pt;}
.h14{height:43.782500pt;}
.h1f{height:43.826667pt;}
.h2b{height:43.836000pt;}
.h23{height:43.860000pt;}
.h20{height:43.872000pt;}
.h5{height:45.795000pt;}
.h7{height:47.085938pt;}
.ha{height:47.109375pt;}
.h9{height:47.742188pt;}
.h19{height:48.375000pt;}
.h30{height:48.466667pt;}
.h2e{height:48.506667pt;}
.h1a{height:49.336436pt;}
.h8{height:49.622500pt;}
.h13{height:52.108438pt;}
.h10{height:52.134375pt;}
.h15{height:53.535000pt;}
.h28{height:55.540000pt;}
.h29{height:55.666667pt;}
.h27{height:55.676000pt;}
.h25{height:55.698667pt;}
.h26{height:55.712000pt;}
.h6{height:57.787500pt;}
.he{height:59.340000pt;}
.hf{height:65.920000pt;}
.h11{height:69.600000pt;}
.h17{height:69.660000pt;}
.hd{height:75.465000pt;}
.hc{height:83.360000pt;}
.h16{height:117.760000pt;}
.hb{height:142.560000pt;}
.h12{height:364.640000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w6{width:18.080000pt;}
.w12{width:32.500000pt;}
.w2a{width:35.680000pt;}
.w2c{width:39.506667pt;}
.w10{width:40.626667pt;}
.w1a{width:40.660000pt;}
.wa{width:41.300000pt;}
.w23{width:44.640000pt;}
.w18{width:45.746667pt;}
.w2b{width:45.952000pt;}
.w20{width:47.186667pt;}
.w25{width:49.312000pt;}
.wd{width:52.466667pt;}
.wf{width:52.626667pt;}
.we{width:52.978667pt;}
.wc{width:53.106667pt;}
.w1c{width:54.546667pt;}
.w17{width:55.666667pt;}
.w14{width:56.832000pt;}
.w15{width:56.946667pt;}
.w24{width:57.440000pt;}
.w1e{width:58.898667pt;}
.w1f{width:59.346667pt;}
.w1d{width:59.666667pt;}
.w11{width:61.306667pt;}
.w21{width:64.506667pt;}
.w16{width:64.818667pt;}
.w19{width:71.866667pt;}
.w2{width:75.840000pt;}
.w2d{width:79.026667pt;}
.w26{width:80.146667pt;}
.w2e{width:91.698667pt;}
.w27{width:118.578667pt;}
.w2f{width:119.386667pt;}
.w28{width:127.386667pt;}
.w22{width:210.302667pt;}
.w29{width:280.702667pt;}
.w13{width:296.346667pt;}
.w1b{width:302.466667pt;}
.wb{width:345.346667pt;}
.w3{width:417.920000pt;}
.w9{width:445.280000pt;}
.w8{width:688.480000pt;}
.w4{width:696.320000pt;}
.w5{width:696.960000pt;}
.w7{width:697.280000pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:1.312000pt;}
.x2b{left:7.040000pt;}
.x2d{left:8.626667pt;}
.xc{left:9.600000pt;}
.x32{left:11.040000pt;}
.x29{left:12.796000pt;}
.xe{left:13.920000pt;}
.xd{left:15.360000pt;}
.x49{left:18.560000pt;}
.x4a{left:26.866667pt;}
.x53{left:32.666667pt;}
.x54{left:33.760000pt;}
.x28{left:44.804000pt;}
.x11{left:45.920000pt;}
.x5{left:48.000000pt;}
.x4c{left:48.964000pt;}
.x26{left:50.720000pt;}
.x15{left:54.400000pt;}
.x14{left:57.920000pt;}
.x16{left:64.000000pt;}
.x1e{left:72.000000pt;}
.x20{left:78.432000pt;}
.x42{left:83.232000pt;}
.x2a{left:86.752000pt;}
.x1{left:88.960000pt;}
.x3b{left:92.192000pt;}
.x1f{left:96.032000pt;}
.x12{left:98.592000pt;}
.x21{left:102.432000pt;}
.x3a{left:116.832000pt;}
.x13{left:127.712000pt;}
.x6{left:143.706667pt;}
.x1c{left:151.906667pt;}
.xa{left:154.746667pt;}
.x1b{left:176.320000pt;}
.x19{left:226.426667pt;}
.x1a{left:250.946667pt;}
.x17{left:256.386667pt;}
.x43{left:261.986667pt;}
.x27{left:280.866667pt;}
.x10{left:288.706667pt;}
.x44{left:307.266667pt;}
.x7{left:317.026667pt;}
.x18{left:318.786667pt;}
.x3{left:327.040000pt;}
.x4d{left:330.306667pt;}
.x33{left:331.426667pt;}
.xf{left:334.626667pt;}
.x4b{left:354.626667pt;}
.x45{left:365.346667pt;}
.x4e{left:366.626667pt;}
.x34{left:384.386667pt;}
.x3c{left:395.306667pt;}
.x4{left:411.520000pt;}
.x4f{left:413.226667pt;}
.x1d{left:414.173333pt;}
.x46{left:415.306667pt;}
.x25{left:425.853333pt;}
.x24{left:429.213333pt;}
.x22{left:432.573333pt;}
.x55{left:438.173333pt;}
.x35{left:442.026667pt;}
.x3d{left:450.506667pt;}
.x50{left:453.386667pt;}
.x23{left:462.813333pt;}
.x2c{left:486.506667pt;}
.x47{left:496.106667pt;}
.x36{left:499.626667pt;}
.x3e{left:510.986667pt;}
.x51{left:533.066667pt;}
.x2e{left:539.626667pt;}
.x37{left:565.093333pt;}
.x3f{left:570.533333pt;}
.x2f{left:593.253333pt;}
.x48{left:615.333333pt;}
.x38{left:621.413333pt;}
.x52{left:625.413333pt;}
.x40{left:630.533333pt;}
.x30{left:646.533333pt;}
.x39{left:667.813333pt;}
.x41{left:678.533333pt;}
.x31{left:687.813333pt;}
.x8{left:744.160000pt;}
.x9{left:746.080000pt;}
.xb{left:752.160000pt;}
}




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