
    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_38700db4278ad8d7f43fddc1.woff')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_aa6801eeced4985e2d786b19.woff')format("woff");}.ff2{font-family:ff2;line-height:0.750000;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_af3937debfc4a1d489d253c2.woff')format("woff");}.ff3{font-family:ff3;line-height:0.940430;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_008f41759461a2dbe59e87a8.woff')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_7e5ddc301d43315b7241b3ac.woff')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_0b70667d96707038593fc7c5.woff')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_4109ef31b3161957e6848a6f.woff')format("woff");}.ff7{font-family:ff7;line-height:0.910645;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_341aff44d1a8b53bd7005229.woff')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_80a2afb162bd2267a3ded28b.woff')format("woff");}.ff9{font-family:ff9;line-height:0.908203;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_553a0f6c755907951ea91866.woff')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_1b573339af8c2d86d0a7aa07.woff')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_d7265e724a1360f6a561d78b.woff')format("woff");}.ffc{font-family:ffc;line-height:0.877441;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_102cafd343c0cd467c5388a0.woff')format("woff");}.ffd{font-family:ffd;line-height:1.435059;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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:-70.740000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:27.360000px;}
.ls8{letter-spacing:-0.666000px;}
.ls1a{letter-spacing:-0.540000px;}
.ls13{letter-spacing:-0.460200px;}
.ls7{letter-spacing:-0.360000px;}
.ls14{letter-spacing:-0.106800px;}
.ls10{letter-spacing:-0.053280px;}
.ls3{letter-spacing:0.000000px;}
.ls9{letter-spacing:0.053280px;}
.lsf{letter-spacing:0.106800px;}
.lse{letter-spacing:0.120000px;}
.lsd{letter-spacing:0.180000px;}
.ls11{letter-spacing:0.259800px;}
.ls16{letter-spacing:0.259920px;}
.ls1{letter-spacing:0.298800px;}
.ls2{letter-spacing:0.360000px;}
.lsb{letter-spacing:0.855360px;}
.ls18{letter-spacing:0.900000px;}
.ls19{letter-spacing:0.979920px;}
.ls5{letter-spacing:2.424000px;}
.ls6{letter-spacing:2.748000px;}
.ls0{letter-spacing:2.880000px;}
.lsc{letter-spacing:3.060000px;}
.ls4{letter-spacing:3.144000px;}
.ls15{letter-spacing:6.660000px;}
.ls12{letter-spacing:11.466720px;}
.lsa{letter-spacing:41.682720px;}
.ls17{letter-spacing:71.226720px;}
.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;}
}
.wsb{word-spacing:-38.880000px;}
.ws3{word-spacing:-21.420000px;}
.ws0{word-spacing:-19.642080px;}
.ws1{word-spacing:-18.922080px;}
.ws2{word-spacing:-15.300000px;}
.ws5{word-spacing:-15.238800px;}
.wsc{word-spacing:-15.199800px;}
.wsd{word-spacing:-15.046800px;}
.wsa{word-spacing:-14.993280px;}
.ws8{word-spacing:-14.940000px;}
.wse{word-spacing:-14.886720px;}
.ws10{word-spacing:-14.833200px;}
.ws4{word-spacing:-14.580000px;}
.wsf{word-spacing:-14.479800px;}
.ws7{word-spacing:-14.274000px;}
.ws9{word-spacing:-9.720000px;}
.ws6{word-spacing:0.000000px;}
._1d{margin-left:-2.321040px;}
._3{margin-left:-1.314720px;}
._1{width:1.842960px;}
._0{width:2.914560px;}
._2{width:4.384800px;}
._10{width:5.396880px;}
._7{width:7.190400px;}
._6{width:8.306640px;}
._a{width:9.800640px;}
._f{width:11.603040px;}
._e{width:13.087440px;}
._1b{width:15.965520px;}
._b{width:17.031600px;}
._d{width:18.954480px;}
._c{width:20.080800px;}
._1f{width:21.218400px;}
._17{width:22.464000px;}
._16{width:24.132000px;}
._19{width:25.309920px;}
._20{width:26.892000px;}
._14{width:28.156560px;}
._15{width:29.282400px;}
._9{width:30.845760px;}
._8{width:32.509440px;}
._18{width:34.192320px;}
._1a{width:35.667120px;}
._1e{width:36.692640px;}
._1c{width:39.142800px;}
._12{width:41.789280px;}
._11{width:43.086960px;}
._13{width:75.174000px;}
._4{width:1042.896000px;}
._5{width:1141.680000px;}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(68,84,106);}
.fs5{font-size:38.880000px;}
.fs2{font-size:48.240000px;}
.fs1{font-size:54.000000px;}
.fs3{font-size:59.760000px;}
.fs0{font-size:66.240000px;}
.fs4{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.y7{bottom:2.700000px;}
.y131{bottom:3.240000px;}
.y12{bottom:3.420000px;}
.y10e{bottom:3.465000px;}
.y2b{bottom:3.600000px;}
.y18{bottom:3.780000px;}
.y10f{bottom:3.825000px;}
.y6{bottom:4.140000px;}
.y9d{bottom:5.760000px;}
.y99{bottom:7.920000px;}
.y5{bottom:8.100000px;}
.y170{bottom:11.880000px;}
.y113{bottom:12.060000px;}
.y132{bottom:12.240000px;}
.y114{bottom:12.420000px;}
.y3{bottom:12.780000px;}
.y11d{bottom:20.520000px;}
.ya8{bottom:20.700000px;}
.y17{bottom:20.880000px;}
.y16e{bottom:20.910000px;}
.y148{bottom:21.054000px;}
.y128{bottom:21.060000px;}
.y2e{bottom:21.105000px;}
.y1a1{bottom:22.854000px;}
.y192{bottom:22.860000px;}
.y1a8{bottom:23.040000px;}
.y2{bottom:28.980000px;}
.y9b{bottom:29.340000px;}
.y129{bottom:29.700000px;}
.y123{bottom:29.745000px;}
.y190{bottom:31.500000px;}
.ya2{bottom:32.400000px;}
.y12f{bottom:37.800000px;}
.ya7{bottom:37.980000px;}
.y2f{bottom:38.025000px;}
.y147{bottom:38.154000px;}
.y16{bottom:38.160000px;}
.y127{bottom:38.340000px;}
.y2d{bottom:38.385000px;}
.y191{bottom:40.140000px;}
.ya0{bottom:41.040000px;}
.y1be{bottom:42.300000px;}
.y1ba{bottom:42.480000px;}
.ya1{bottom:49.680000px;}
.y121{bottom:55.125000px;}
.y125{bottom:55.260000px;}
.y15{bottom:55.440000px;}
.y122{bottom:55.485000px;}
.y126{bottom:55.620000px;}
.yb{bottom:56.700000px;}
.y1b5{bottom:59.580000px;}
.y1b9{bottom:59.760000px;}
.y19c{bottom:61.914000px;}
.y14{bottom:72.360000px;}
.y19{bottom:72.720000px;}
.y13f{bottom:72.900000px;}
.ya{bottom:73.980000px;}
.y195{bottom:81.360000px;}
.y1a6{bottom:81.540000px;}
.y2a{bottom:90.000000px;}
.y36{bottom:105.660000px;}
.y29{bottom:107.100000px;}
.y14d{bottom:107.280000px;}
.y149{bottom:115.956000px;}
.y19b{bottom:119.556000px;}
.yd6{bottom:120.456000px;}
.y35{bottom:122.580000px;}
.y12c{bottom:122.616000px;}
.y92{bottom:123.336000px;}
.y28{bottom:124.380000px;}
.y14c{bottom:124.560000px;}
.y16c{bottom:124.956000px;}
.yfc{bottom:126.036000px;}
.y1d2{bottom:127.116000px;}
.y54{bottom:128.376000px;}
.y146{bottom:135.396000px;}
.yd5{bottom:137.736000px;}
.y1a0{bottom:139.176000px;}
.y34{bottom:140.220000px;}
.y91{bottom:140.616000px;}
.y27{bottom:141.660000px;}
.y14b{bottom:141.690000px;}
.yfb{bottom:143.316000px;}
.y1d1{bottom:144.396000px;}
.y53{bottom:145.476000px;}
.yd4{bottom:155.010000px;}
.y33{bottom:157.500000px;}
.y90{bottom:157.890000px;}
.y1a3{bottom:158.610000px;}
.y26{bottom:158.940000px;}
.y12b{bottom:159.330000px;}
.yfa{bottom:160.590000px;}
.y1d0{bottom:161.670000px;}
.y52{bottom:162.750000px;}
.yd3{bottom:172.290000px;}
.y32{bottom:174.600000px;}
.y8f{bottom:175.170000px;}
.y25{bottom:176.220000px;}
.yf9{bottom:177.690000px;}
.y1a2{bottom:178.050000px;}
.y16b{bottom:178.950000px;}
.y51{bottom:180.030000px;}
.yd2{bottom:189.390000px;}
.y31{bottom:191.880000px;}
.y8e{bottom:192.450000px;}
.y24{bottom:193.500000px;}
.yf8{bottom:194.970000px;}
.y1cf{bottom:196.050000px;}
.y50{bottom:197.310000px;}
.y19d{bottom:197.670000px;}
.yd1{bottom:206.670000px;}
.y30{bottom:208.800000px;}
.y96{bottom:209.190000px;}
.y8d{bottom:209.550000px;}
.y23{bottom:210.600000px;}
.yf7{bottom:212.250000px;}
.y1ce{bottom:213.330000px;}
.y4f{bottom:214.230000px;}
.y16a{bottom:215.670000px;}
.y19f{bottom:217.110000px;}
.yd0{bottom:223.950000px;}
.y145{bottom:226.110000px;}
.y8c{bottom:226.830000px;}
.y22{bottom:227.880000px;}
.yf6{bottom:229.530000px;}
.y12a{bottom:230.610000px;}
.y4e{bottom:231.690000px;}
.y19e{bottom:236.550000px;}
.ycf{bottom:241.230000px;}
.y8b{bottom:244.110000px;}
.y21{bottom:245.205000px;}
.yf5{bottom:246.810000px;}
.y1cd{bottom:247.890000px;}
.y4d{bottom:248.970000px;}
.y169{bottom:252.390000px;}
.y194{bottom:256.170000px;}
.yce{bottom:258.510000px;}
.y8a{bottom:261.390000px;}
.y20{bottom:262.485000px;}
.yf4{bottom:263.550000px;}
.y1cc{bottom:265.170000px;}
.y4c{bottom:266.250000px;}
.y124{bottom:267.330000px;}
.ycd{bottom:275.610000px;}
.y95{bottom:278.310000px;}
.y89{bottom:278.670000px;}
.y1f{bottom:279.765000px;}
.y144{bottom:280.110000px;}
.yf3{bottom:281.190000px;}
.y1cb{bottom:282.450000px;}
.y4b{bottom:283.530000px;}
.y168{bottom:289.110000px;}
.ycc{bottom:292.890000px;}
.y19a{bottom:295.050000px;}
.y88{bottom:295.950000px;}
.y1e{bottom:296.865000px;}
.yf2{bottom:298.470000px;}
.y1ca{bottom:299.550000px;}
.y4a{bottom:300.810000px;}
.ycb{bottom:310.170000px;}
.y87{bottom:313.050000px;}
.y1d{bottom:314.145000px;}
.y198{bottom:314.670000px;}
.yf1{bottom:315.750000px;}
.y143{bottom:316.830000px;}
.y49{bottom:318.090000px;}
.y167{bottom:325.830000px;}
.yca{bottom:327.450000px;}
.y86{bottom:330.330000px;}
.y1c{bottom:331.425000px;}
.yf0{bottom:333.030000px;}
.y199{bottom:334.110000px;}
.y48{bottom:335.190000px;}
.y120{bottom:338.610000px;}
.yc9{bottom:344.730000px;}
.y85{bottom:347.610000px;}
.y1b{bottom:348.705000px;}
.yef{bottom:350.310000px;}
.y1c9{bottom:351.390000px;}
.y47{bottom:352.470000px;}
.y142{bottom:353.550000px;}
.yc8{bottom:362.055000px;}
.y166{bottom:362.595000px;}
.y84{bottom:364.935000px;}
.yee{bottom:367.455000px;}
.y1c8{bottom:368.715000px;}
.y46{bottom:369.795000px;}
.y141{bottom:373.215000px;}
.yc7{bottom:379.155000px;}
.y83{bottom:382.215000px;}
.yed{bottom:384.375000px;}
.y1c7{bottom:385.815000px;}
.y45{bottom:387.075000px;}
.y197{bottom:392.655000px;}
.yc6{bottom:396.435000px;}
.y82{bottom:399.495000px;}
.y1c4{bottom:401.655000px;}
.yec{bottom:402.015000px;}
.y44{bottom:404.355000px;}
.y11f{bottom:409.935000px;}
.y196{bottom:412.095000px;}
.yc5{bottom:413.715000px;}
.y81{bottom:416.595000px;}
.yeb{bottom:417.855000px;}
.y1c6{bottom:421.095000px;}
.y43{bottom:421.635000px;}
.yc4{bottom:430.995000px;}
.y18f{bottom:431.715000px;}
.y80{bottom:433.875000px;}
.yea{bottom:437.295000px;}
.y42{bottom:438.735000px;}
.y1c5{bottom:440.715000px;}
.yc3{bottom:448.275000px;}
.y7f{bottom:451.155000px;}
.y41{bottom:456.015000px;}
.ye9{bottom:456.735000px;}
.y140{bottom:461.595000px;}
.yc2{bottom:465.555000px;}
.y1d7{bottom:466.095000px;}
.y7e{bottom:468.435000px;}
.y40{bottom:473.295000px;}
.y1c1{bottom:477.435000px;}
.ye8{bottom:478.515000px;}
.y1d6{bottom:480.315000px;}
.yc1{bottom:482.655000px;}
.y94{bottom:485.355000px;}
.y7d{bottom:485.715000px;}
.y193{bottom:487.875000px;}
.y3f{bottom:490.575000px;}
.y1c3{bottom:496.875000px;}
.y1d5{bottom:497.595000px;}
.y11e{bottom:498.315000px;}
.yc0{bottom:499.935000px;}
.y7c{bottom:502.815000px;}
.y165{bottom:505.155000px;}
.y3e{bottom:507.855000px;}
.y18e{bottom:511.095000px;}
.y1c2{bottom:516.315000px;}
.ybf{bottom:517.215000px;}
.y11c{bottom:517.935000px;}
.y7b{bottom:520.095000px;}
.ye7{bottom:523.515000px;}
.y3d{bottom:524.955000px;}
.y18d{bottom:528.015000px;}
.y1d4{bottom:532.875000px;}
.ybe{bottom:534.495000px;}
.y7a{bottom:537.375000px;}
.ye6{bottom:541.155000px;}
.y3c{bottom:542.235000px;}
.y18c{bottom:545.295000px;}
.ybd{bottom:551.775000px;}
.y1bd{bottom:553.215000px;}
.y79{bottom:554.655000px;}
.y11b{bottom:558.075000px;}
.ye5{bottom:558.435000px;}
.y164{bottom:559.155000px;}
.y3b{bottom:559.515000px;}
.y18b{bottom:562.575000px;}
.ybc{bottom:568.875000px;}
.y78{bottom:571.935000px;}
.y1c0{bottom:572.655000px;}
.y11a{bottom:575.355000px;}
.ye4{bottom:575.715000px;}
.y3a{bottom:576.795000px;}
.y18a{bottom:580.215000px;}
.ybb{bottom:586.155000px;}
.y13e{bottom:586.875000px;}
.y77{bottom:589.215000px;}
.y1bf{bottom:592.095000px;}
.ye3{bottom:592.815000px;}
.y39{bottom:594.075000px;}
.y189{bottom:597.315000px;}
.y163{bottom:599.295000px;}
.yba{bottom:603.435000px;}
.y76{bottom:606.315000px;}
.ye2{bottom:610.095000px;}
.y38{bottom:610.995000px;}
.y188{bottom:614.595000px;}
.y162{bottom:616.935000px;}
.yb9{bottom:621.105000px;}
.y75{bottom:623.625000px;}
.y13d{bottom:627.045000px;}
.ye1{bottom:627.405000px;}
.y37{bottom:628.125000px;}
.y1b8{bottom:628.845000px;}
.y187{bottom:631.905000px;}
.y161{bottom:634.245000px;}
.yb8{bottom:638.385000px;}
.y74{bottom:640.905000px;}
.y1a{bottom:642.885000px;}
.ye0{bottom:644.685000px;}
.y1bc{bottom:648.465000px;}
.y186{bottom:649.185000px;}
.y160{bottom:651.345000px;}
.yb7{bottom:655.665000px;}
.y73{bottom:658.185000px;}
.ydf{bottom:661.965000px;}
.y185{bottom:666.465000px;}
.y1bb{bottom:667.905000px;}
.y15f{bottom:668.625000px;}
.yb6{bottom:672.765000px;}
.y72{bottom:675.465000px;}
.yde{bottom:679.245000px;}
.y184{bottom:683.745000px;}
.y15e{bottom:685.905000px;}
.yb5{bottom:690.045000px;}
.y71{bottom:692.745000px;}
.ydd{bottom:696.345000px;}
.y183{bottom:700.845000px;}
.y15d{bottom:703.185000px;}
.y1b4{bottom:704.625000px;}
.yb4{bottom:707.325000px;}
.y70{bottom:709.845000px;}
.ydc{bottom:712.185000px;}
.y119{bottom:713.625000px;}
.y182{bottom:717.765000px;}
.y15c{bottom:720.465000px;}
.y1b7{bottom:724.245000px;}
.yb3{bottom:724.605000px;}
.y6f{bottom:727.125000px;}
.y118{bottom:730.905000px;}
.ydb{bottom:731.625000px;}
.y181{bottom:735.045000px;}
.y15b{bottom:737.745000px;}
.yb2{bottom:741.885000px;}
.y1b6{bottom:743.685000px;}
.y6e{bottom:744.405000px;}
.y117{bottom:748.185000px;}
.yda{bottom:751.245000px;}
.y180{bottom:752.685000px;}
.y15a{bottom:754.845000px;}
.yb1{bottom:759.165000px;}
.y6d{bottom:761.685000px;}
.y116{bottom:765.465000px;}
.y17f{bottom:769.965000px;}
.yd9{bottom:770.685000px;}
.y159{bottom:772.125000px;}
.yb0{bottom:776.265000px;}
.y6c{bottom:778.965000px;}
.y1b3{bottom:780.405000px;}
.y115{bottom:782.565000px;}
.y17e{bottom:787.065000px;}
.y158{bottom:789.405000px;}
.yd8{bottom:790.125000px;}
.yaf{bottom:793.545000px;}
.y6b{bottom:796.065000px;}
.y112{bottom:798.405000px;}
.y13c{bottom:799.845000px;}
.y17d{bottom:804.345000px;}
.y157{bottom:806.685000px;}
.yae{bottom:810.825000px;}
.yd7{bottom:812.985000px;}
.y6a{bottom:813.345000px;}
.y13b{bottom:817.125000px;}
.y17c{bottom:821.625000px;}
.y156{bottom:823.965000px;}
.yad{bottom:828.105000px;}
.y69{bottom:830.625000px;}
.y13a{bottom:834.405000px;}
.y111{bottom:835.125000px;}
.y1b2{bottom:837.825000px;}
.y17b{bottom:838.905000px;}
.y155{bottom:841.065000px;}
.yac{bottom:845.025000px;}
.y68{bottom:847.905000px;}
.y139{bottom:851.685000px;}
.y110{bottom:854.565000px;}
.y1b1{bottom:855.105000px;}
.y17a{bottom:856.185000px;}
.y154{bottom:858.345000px;}
.yab{bottom:862.305000px;}
.y67{bottom:865.185000px;}
.y2c{bottom:866.265000px;}
.y138{bottom:868.965000px;}
.y107{bottom:870.045000px;}
.y179{bottom:873.465000px;}
.y10d{bottom:874.185000px;}
.y153{bottom:875.670000px;}
.ya6{bottom:878.370000px;}
.y66{bottom:882.510000px;}
.y137{bottom:886.110000px;}
.y106{bottom:889.530000px;}
.y1b0{bottom:889.890000px;}
.y178{bottom:890.610000px;}
.y152{bottom:892.950000px;}
.y10c{bottom:893.670000px;}
.y65{bottom:899.610000px;}
.yaa{bottom:901.950000px;}
.y136{bottom:903.390000px;}
.y1af{bottom:907.170000px;}
.y177{bottom:907.890000px;}
.y105{bottom:909.150000px;}
.y151{bottom:910.230000px;}
.y64{bottom:916.890000px;}
.y13{bottom:918.870000px;}
.y135{bottom:920.670000px;}
.y1ae{bottom:924.450000px;}
.y176{bottom:925.170000px;}
.ya9{bottom:925.530000px;}
.y150{bottom:927.510000px;}
.y104{bottom:928.590000px;}
.y10b{bottom:933.810000px;}
.y63{bottom:934.170000px;}
.y134{bottom:937.950000px;}
.y1a5{bottom:940.110000px;}
.y175{bottom:942.450000px;}
.y14f{bottom:944.610000px;}
.y103{bottom:948.030000px;}
.y9f{bottom:949.110000px;}
.y10a{bottom:951.090000px;}
.y62{bottom:951.450000px;}
.y133{bottom:953.610000px;}
.y174{bottom:959.730000px;}
.y14e{bottom:960.450000px;}
.y102{bottom:967.470000px;}
.y61{bottom:968.730000px;}
.ya5{bottom:972.510000px;}
.y173{bottom:977.010000px;}
.y1ad{bottom:979.170000px;}
.y60{bottom:986.010000px;}
.y101{bottom:987.090000px;}
.y130{bottom:990.510000px;}
.y172{bottom:994.110000px;}
.ya4{bottom:996.090000px;}
.y14a{bottom:997.170000px;}
.y1ab{bottom:998.610000px;}
.y93{bottom:1002.750000px;}
.y5f{bottom:1003.110000px;}
.y11{bottom:1005.810000px;}
.y100{bottom:1006.530000px;}
.y171{bottom:1011.390000px;}
.y1ac{bottom:1018.230000px;}
.ya3{bottom:1019.670000px;}
.y1d3{bottom:1020.030000px;}
.y5e{bottom:1020.390000px;}
.yff{bottom:1025.970000px;}
.y10{bottom:1027.230000px;}
.y109{bottom:1037.310000px;}
.y5d{bottom:1037.670000px;}
.y9a{bottom:1043.250000px;}
.yf{bottom:1044.510000px;}
.yfe{bottom:1045.590000px;}
.y108{bottom:1054.590000px;}
.y5c{bottom:1054.950000px;}
.y1a7{bottom:1057.110000px;}
.ye{bottom:1062.150000px;}
.y16f{bottom:1063.950000px;}
.yfd{bottom:1065.030000px;}
.y9e{bottom:1066.830000px;}
.y5b{bottom:1072.230000px;}
.y1aa{bottom:1076.730000px;}
.yd{bottom:1080.330000px;}
.y12e{bottom:1081.230000px;}
.y5a{bottom:1089.510000px;}
.y9c{bottom:1090.410000px;}
.y1a9{bottom:1096.170000px;}
.yc{bottom:1104.450000px;}
.y59{bottom:1106.610000px;}
.y98{bottom:1113.810000px;}
.y1a4{bottom:1115.610000px;}
.y16d{bottom:1117.950000px;}
.y58{bottom:1123.890000px;}
.y9{bottom:1127.670000px;}
.y12d{bottom:1135.260000px;}
.y97{bottom:1140.840000px;}
.y57{bottom:1141.200000px;}
.y8{bottom:1144.980000px;}
.y1{bottom:1158.480000px;}
.y56{bottom:1178.820000px;}
.y4{bottom:1179.360000px;}
.y55{bottom:1196.100000px;}
.h18{height:17.100000px;}
.hc{height:17.280000px;}
.h1c{height:17.316000px;}
.h1a{height:19.620000px;}
.h6{height:20.880000px;}
.h15{height:21.240000px;}
.h17{height:21.420000px;}
.h13{height:21.456000px;}
.h5{height:23.400000px;}
.h1f{height:34.380000px;}
.h27{height:34.416000px;}
.h1d{height:34.560000px;}
.h23{height:34.596000px;}
.h7{height:36.651094px;}
.h19{height:39.420000px;}
.h8{height:40.500000px;}
.h31{height:41.522695px;}
.h2{height:44.280000px;}
.h22{height:51.660000px;}
.h1b{height:51.840000px;}
.h10{height:51.876000px;}
.h4{height:54.421875px;}
.h2a{height:56.160000px;}
.h2b{height:56.196000px;}
.h2e{height:56.340000px;}
.he{height:58.621992px;}
.h9{height:58.651172px;}
.hb{height:60.226875px;}
.h12{height:61.423863px;}
.h1e{height:62.211094px;}
.h3{height:66.757500px;}
.h14{height:68.400000px;}
.h26{height:68.940000px;}
.h20{height:68.976000px;}
.h21{height:69.120000px;}
.h28{height:73.440000px;}
.h30{height:73.476000px;}
.h2f{height:73.620000px;}
.ha{height:84.898125px;}
.hd{height:86.220000px;}
.h24{height:86.400000px;}
.h16{height:91.800000px;}
.h2c{height:134.280000px;}
.h25{height:155.190000px;}
.h29{height:173.190000px;}
.h2d{height:173.340000px;}
.h11{height:222.660000px;}
.hf{height:362.190000px;}
.h0{height:1262.700000px;}
.h1{height:1263.000000px;}
.w7{width:31.140000px;}
.w37{width:33.840000px;}
.w25{width:39.960000px;}
.w1f{width:40.140000px;}
.w35{width:49.860000px;}
.w32{width:49.896000px;}
.w31{width:52.920000px;}
.w34{width:52.956000px;}
.w33{width:57.420000px;}
.w36{width:57.456000px;}
.w2b{width:63.036000px;}
.w24{width:67.680000px;}
.w15{width:70.920000px;}
.w17{width:70.956000px;}
.w16{width:71.100000px;}
.w18{width:71.136000px;}
.w3a{width:77.400000px;}
.w29{width:78.156000px;}
.w3c{width:79.920000px;}
.w3d{width:80.856000px;}
.w2c{width:82.080000px;}
.w3b{width:83.736000px;}
.w39{width:86.256000px;}
.w19{width:87.840000px;}
.w28{width:95.580000px;}
.w21{width:96.336000px;}
.w26{width:96.516000px;}
.w1d{width:97.056000px;}
.w1b{width:97.416000px;}
.w1e{width:100.116000px;}
.w2e{width:102.816000px;}
.w1c{width:105.120000px;}
.w2a{width:105.300000px;}
.w23{width:106.236000px;}
.wb{width:109.116000px;}
.w38{width:109.296000px;}
.wf{width:109.836000px;}
.w2f{width:110.340000px;}
.w30{width:110.376000px;}
.w22{width:117.000000px;}
.w27{width:117.036000px;}
.w14{width:127.656000px;}
.w9{width:127.800000px;}
.wd{width:127.836000px;}
.wc{width:127.980000px;}
.we{width:145.836000px;}
.w13{width:146.376000px;}
.w1a{width:151.590000px;}
.w6{width:176.250000px;}
.w20{width:211.890000px;}
.w10{width:212.970000px;}
.w11{width:213.150000px;}
.w2{width:216.570000px;}
.w5{width:225.795000px;}
.w4{width:269.850000px;}
.wa{width:274.395000px;}
.w3f{width:337.755000px;}
.w40{width:340.275000px;}
.w12{width:426.135000px;}
.w2d{width:426.345000px;}
.w8{width:470.625000px;}
.w3{width:495.645000px;}
.w3e{width:678.030000px;}
.w1{width:892.500000px;}
.w0{width:892.800000px;}
.x0{left:0.000000px;}
.x4{left:1.260000px;}
.x2{left:4.680000px;}
.xf{left:7.020000px;}
.xc{left:8.100000px;}
.x66{left:9.540000px;}
.x3c{left:11.340000px;}
.x3f{left:12.825000px;}
.x40{left:14.265000px;}
.x58{left:15.294000px;}
.x59{left:17.274000px;}
.x56{left:18.720000px;}
.x5a{left:19.794000px;}
.x64{left:21.240000px;}
.x45{left:22.320000px;}
.x32{left:24.480000px;}
.x3e{left:25.605000px;}
.x57{left:26.814000px;}
.x46{left:28.080000px;}
.x3b{left:29.340000px;}
.x20{left:31.365000px;}
.x4e{left:32.760000px;}
.x4f{left:33.840000px;}
.x5{left:34.920000px;}
.x4d{left:36.180000px;}
.x36{left:37.440000px;}
.x35{left:38.925000px;}
.x68{left:39.960000px;}
.x21{left:41.040000px;}
.x22{left:42.165000px;}
.x62{left:43.920000px;}
.x34{left:45.000000px;}
.x1f{left:46.845000px;}
.x37{left:48.780000px;}
.x1a{left:50.445000px;}
.x1e{left:52.200000px;}
.x1c{left:55.980000px;}
.x17{left:57.600000px;}
.x1d{left:59.220000px;}
.x23{left:62.280000px;}
.x65{left:64.620000px;}
.x19{left:66.240000px;}
.x14{left:68.574000px;}
.x2d{left:72.180000px;}
.x67{left:74.520000px;}
.x5b{left:77.574000px;}
.x5c{left:81.534000px;}
.x63{left:84.600000px;}
.x1{left:90.396000px;}
.x2e{left:93.465000px;}
.x2f{left:96.300000px;}
.x13{left:99.936000px;}
.x2a{left:105.834000px;}
.x7{left:108.036000px;}
.xa{left:111.816000px;}
.x9{left:119.376000px;}
.x30{left:124.014000px;}
.x10{left:125.136000px;}
.x47{left:126.936000px;}
.x11{left:129.276000px;}
.x38{left:135.036000px;}
.x51{left:140.076000px;}
.x79{left:150.510000px;}
.x12{left:156.270000px;}
.x39{left:162.030000px;}
.x5d{left:166.890000px;}
.x3a{left:170.850000px;}
.x6c{left:177.330000px;}
.x50{left:179.130000px;}
.x69{left:205.230000px;}
.x48{left:214.770000px;}
.x31{left:222.690000px;}
.x15{left:227.730000px;}
.x3d{left:241.950000px;}
.x73{left:248.610000px;}
.x6a{left:268.275000px;}
.x7a{left:274.539000px;}
.xd{left:283.755000px;}
.xb{left:301.395000px;}
.x3{left:306.975000px;}
.x2b{left:312.915000px;}
.xe{left:314.895000px;}
.x6b{left:350.355000px;}
.x52{left:351.975000px;}
.x1b{left:355.575000px;}
.x74{left:357.915000px;}
.x49{left:366.375000px;}
.x33{left:369.075000px;}
.x5e{left:378.795000px;}
.x41{left:384.015000px;}
.x6f{left:403.275000px;}
.x75{left:444.165000px;}
.x7b{left:445.245000px;}
.x53{left:448.305000px;}
.x6d{left:453.165000px;}
.x42{left:455.145000px;}
.x4a{left:463.785000px;}
.x5f{left:475.305000px;}
.x16{left:502.125000px;}
.x70{left:506.085000px;}
.x76{left:521.565000px;}
.x2c{left:526.065000px;}
.x6e{left:563.505000px;}
.x54{left:565.305000px;}
.x4b{left:568.905000px;}
.x6{left:576.825000px;}
.x60{left:592.350000px;}
.x43{left:597.210000px;}
.x77{left:605.310000px;}
.x18{left:611.250000px;}
.x71{left:616.470000px;}
.x4c{left:665.970000px;}
.x44{left:668.130000px;}
.x55{left:671.550000px;}
.x78{left:685.230000px;}
.x61{left:687.930000px;}
.x72{left:719.250000px;}
.x24{left:754.170000px;}
.x25{left:755.790000px;}
.x27{left:758.310000px;}
.x26{left:766.800000px;}
.x8{left:770.040000px;}
.x28{left:771.660000px;}
.x29{left:780.120000px;}
@media print{
.v2{vertical-align:-62.880000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:24.320000pt;}
.ls8{letter-spacing:-0.592000pt;}
.ls1a{letter-spacing:-0.480000pt;}
.ls13{letter-spacing:-0.409067pt;}
.ls7{letter-spacing:-0.320000pt;}
.ls14{letter-spacing:-0.094933pt;}
.ls10{letter-spacing:-0.047360pt;}
.ls3{letter-spacing:0.000000pt;}
.ls9{letter-spacing:0.047360pt;}
.lsf{letter-spacing:0.094933pt;}
.lse{letter-spacing:0.106667pt;}
.lsd{letter-spacing:0.160000pt;}
.ls11{letter-spacing:0.230933pt;}
.ls16{letter-spacing:0.231040pt;}
.ls1{letter-spacing:0.265600pt;}
.ls2{letter-spacing:0.320000pt;}
.lsb{letter-spacing:0.760320pt;}
.ls18{letter-spacing:0.800000pt;}
.ls19{letter-spacing:0.871040pt;}
.ls5{letter-spacing:2.154667pt;}
.ls6{letter-spacing:2.442667pt;}
.ls0{letter-spacing:2.560000pt;}
.lsc{letter-spacing:2.720000pt;}
.ls4{letter-spacing:2.794667pt;}
.ls15{letter-spacing:5.920000pt;}
.ls12{letter-spacing:10.192640pt;}
.lsa{letter-spacing:37.051307pt;}
.ls17{letter-spacing:63.312640pt;}
.wsb{word-spacing:-34.560000pt;}
.ws3{word-spacing:-19.040000pt;}
.ws0{word-spacing:-17.459627pt;}
.ws1{word-spacing:-16.819627pt;}
.ws2{word-spacing:-13.600000pt;}
.ws5{word-spacing:-13.545600pt;}
.wsc{word-spacing:-13.510933pt;}
.wsd{word-spacing:-13.374933pt;}
.wsa{word-spacing:-13.327360pt;}
.ws8{word-spacing:-13.280000pt;}
.wse{word-spacing:-13.232640pt;}
.ws10{word-spacing:-13.185067pt;}
.ws4{word-spacing:-12.960000pt;}
.wsf{word-spacing:-12.870933pt;}
.ws7{word-spacing:-12.688000pt;}
.ws9{word-spacing:-8.640000pt;}
.ws6{word-spacing:0.000000pt;}
._1d{margin-left:-2.063147pt;}
._3{margin-left:-1.168640pt;}
._1{width:1.638187pt;}
._0{width:2.590720pt;}
._2{width:3.897600pt;}
._10{width:4.797227pt;}
._7{width:6.391467pt;}
._6{width:7.383680pt;}
._a{width:8.711680pt;}
._f{width:10.313813pt;}
._e{width:11.633280pt;}
._1b{width:14.191573pt;}
._b{width:15.139200pt;}
._d{width:16.848427pt;}
._c{width:17.849600pt;}
._1f{width:18.860800pt;}
._17{width:19.968000pt;}
._16{width:21.450667pt;}
._19{width:22.497707pt;}
._20{width:23.904000pt;}
._14{width:25.028053pt;}
._15{width:26.028800pt;}
._9{width:27.418453pt;}
._8{width:28.897280pt;}
._18{width:30.393173pt;}
._1a{width:31.704107pt;}
._1e{width:32.615680pt;}
._1c{width:34.793600pt;}
._12{width:37.146027pt;}
._11{width:38.299520pt;}
._13{width:66.821333pt;}
._4{width:927.018667pt;}
._5{width:1014.826667pt;}
.fs5{font-size:34.560000pt;}
.fs2{font-size:42.880000pt;}
.fs1{font-size:48.000000pt;}
.fs3{font-size:53.120000pt;}
.fs0{font-size:58.880000pt;}
.fs4{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.y7{bottom:2.400000pt;}
.y131{bottom:2.880000pt;}
.y12{bottom:3.040000pt;}
.y10e{bottom:3.080000pt;}
.y2b{bottom:3.200000pt;}
.y18{bottom:3.360000pt;}
.y10f{bottom:3.400000pt;}
.y6{bottom:3.680000pt;}
.y9d{bottom:5.120000pt;}
.y99{bottom:7.040000pt;}
.y5{bottom:7.200000pt;}
.y170{bottom:10.560000pt;}
.y113{bottom:10.720000pt;}
.y132{bottom:10.880000pt;}
.y114{bottom:11.040000pt;}
.y3{bottom:11.360000pt;}
.y11d{bottom:18.240000pt;}
.ya8{bottom:18.400000pt;}
.y17{bottom:18.560000pt;}
.y16e{bottom:18.586667pt;}
.y148{bottom:18.714667pt;}
.y128{bottom:18.720000pt;}
.y2e{bottom:18.760000pt;}
.y1a1{bottom:20.314667pt;}
.y192{bottom:20.320000pt;}
.y1a8{bottom:20.480000pt;}
.y2{bottom:25.760000pt;}
.y9b{bottom:26.080000pt;}
.y129{bottom:26.400000pt;}
.y123{bottom:26.440000pt;}
.y190{bottom:28.000000pt;}
.ya2{bottom:28.800000pt;}
.y12f{bottom:33.600000pt;}
.ya7{bottom:33.760000pt;}
.y2f{bottom:33.800000pt;}
.y147{bottom:33.914667pt;}
.y16{bottom:33.920000pt;}
.y127{bottom:34.080000pt;}
.y2d{bottom:34.120000pt;}
.y191{bottom:35.680000pt;}
.ya0{bottom:36.480000pt;}
.y1be{bottom:37.600000pt;}
.y1ba{bottom:37.760000pt;}
.ya1{bottom:44.160000pt;}
.y121{bottom:49.000000pt;}
.y125{bottom:49.120000pt;}
.y15{bottom:49.280000pt;}
.y122{bottom:49.320000pt;}
.y126{bottom:49.440000pt;}
.yb{bottom:50.400000pt;}
.y1b5{bottom:52.960000pt;}
.y1b9{bottom:53.120000pt;}
.y19c{bottom:55.034667pt;}
.y14{bottom:64.320000pt;}
.y19{bottom:64.640000pt;}
.y13f{bottom:64.800000pt;}
.ya{bottom:65.760000pt;}
.y195{bottom:72.320000pt;}
.y1a6{bottom:72.480000pt;}
.y2a{bottom:80.000000pt;}
.y36{bottom:93.920000pt;}
.y29{bottom:95.200000pt;}
.y14d{bottom:95.360000pt;}
.y149{bottom:103.072000pt;}
.y19b{bottom:106.272000pt;}
.yd6{bottom:107.072000pt;}
.y35{bottom:108.960000pt;}
.y12c{bottom:108.992000pt;}
.y92{bottom:109.632000pt;}
.y28{bottom:110.560000pt;}
.y14c{bottom:110.720000pt;}
.y16c{bottom:111.072000pt;}
.yfc{bottom:112.032000pt;}
.y1d2{bottom:112.992000pt;}
.y54{bottom:114.112000pt;}
.y146{bottom:120.352000pt;}
.yd5{bottom:122.432000pt;}
.y1a0{bottom:123.712000pt;}
.y34{bottom:124.640000pt;}
.y91{bottom:124.992000pt;}
.y27{bottom:125.920000pt;}
.y14b{bottom:125.946667pt;}
.yfb{bottom:127.392000pt;}
.y1d1{bottom:128.352000pt;}
.y53{bottom:129.312000pt;}
.yd4{bottom:137.786667pt;}
.y33{bottom:140.000000pt;}
.y90{bottom:140.346667pt;}
.y1a3{bottom:140.986667pt;}
.y26{bottom:141.280000pt;}
.y12b{bottom:141.626667pt;}
.yfa{bottom:142.746667pt;}
.y1d0{bottom:143.706667pt;}
.y52{bottom:144.666667pt;}
.yd3{bottom:153.146667pt;}
.y32{bottom:155.200000pt;}
.y8f{bottom:155.706667pt;}
.y25{bottom:156.640000pt;}
.yf9{bottom:157.946667pt;}
.y1a2{bottom:158.266667pt;}
.y16b{bottom:159.066667pt;}
.y51{bottom:160.026667pt;}
.yd2{bottom:168.346667pt;}
.y31{bottom:170.560000pt;}
.y8e{bottom:171.066667pt;}
.y24{bottom:172.000000pt;}
.yf8{bottom:173.306667pt;}
.y1cf{bottom:174.266667pt;}
.y50{bottom:175.386667pt;}
.y19d{bottom:175.706667pt;}
.yd1{bottom:183.706667pt;}
.y30{bottom:185.600000pt;}
.y96{bottom:185.946667pt;}
.y8d{bottom:186.266667pt;}
.y23{bottom:187.200000pt;}
.yf7{bottom:188.666667pt;}
.y1ce{bottom:189.626667pt;}
.y4f{bottom:190.426667pt;}
.y16a{bottom:191.706667pt;}
.y19f{bottom:192.986667pt;}
.yd0{bottom:199.066667pt;}
.y145{bottom:200.986667pt;}
.y8c{bottom:201.626667pt;}
.y22{bottom:202.560000pt;}
.yf6{bottom:204.026667pt;}
.y12a{bottom:204.986667pt;}
.y4e{bottom:205.946667pt;}
.y19e{bottom:210.266667pt;}
.ycf{bottom:214.426667pt;}
.y8b{bottom:216.986667pt;}
.y21{bottom:217.960000pt;}
.yf5{bottom:219.386667pt;}
.y1cd{bottom:220.346667pt;}
.y4d{bottom:221.306667pt;}
.y169{bottom:224.346667pt;}
.y194{bottom:227.706667pt;}
.yce{bottom:229.786667pt;}
.y8a{bottom:232.346667pt;}
.y20{bottom:233.320000pt;}
.yf4{bottom:234.266667pt;}
.y1cc{bottom:235.706667pt;}
.y4c{bottom:236.666667pt;}
.y124{bottom:237.626667pt;}
.ycd{bottom:244.986667pt;}
.y95{bottom:247.386667pt;}
.y89{bottom:247.706667pt;}
.y1f{bottom:248.680000pt;}
.y144{bottom:248.986667pt;}
.yf3{bottom:249.946667pt;}
.y1cb{bottom:251.066667pt;}
.y4b{bottom:252.026667pt;}
.y168{bottom:256.986667pt;}
.ycc{bottom:260.346667pt;}
.y19a{bottom:262.266667pt;}
.y88{bottom:263.066667pt;}
.y1e{bottom:263.880000pt;}
.yf2{bottom:265.306667pt;}
.y1ca{bottom:266.266667pt;}
.y4a{bottom:267.386667pt;}
.ycb{bottom:275.706667pt;}
.y87{bottom:278.266667pt;}
.y1d{bottom:279.240000pt;}
.y198{bottom:279.706667pt;}
.yf1{bottom:280.666667pt;}
.y143{bottom:281.626667pt;}
.y49{bottom:282.746667pt;}
.y167{bottom:289.626667pt;}
.yca{bottom:291.066667pt;}
.y86{bottom:293.626667pt;}
.y1c{bottom:294.600000pt;}
.yf0{bottom:296.026667pt;}
.y199{bottom:296.986667pt;}
.y48{bottom:297.946667pt;}
.y120{bottom:300.986667pt;}
.yc9{bottom:306.426667pt;}
.y85{bottom:308.986667pt;}
.y1b{bottom:309.960000pt;}
.yef{bottom:311.386667pt;}
.y1c9{bottom:312.346667pt;}
.y47{bottom:313.306667pt;}
.y142{bottom:314.266667pt;}
.yc8{bottom:321.826667pt;}
.y166{bottom:322.306667pt;}
.y84{bottom:324.386667pt;}
.yee{bottom:326.626667pt;}
.y1c8{bottom:327.746667pt;}
.y46{bottom:328.706667pt;}
.y141{bottom:331.746667pt;}
.yc7{bottom:337.026667pt;}
.y83{bottom:339.746667pt;}
.yed{bottom:341.666667pt;}
.y1c7{bottom:342.946667pt;}
.y45{bottom:344.066667pt;}
.y197{bottom:349.026667pt;}
.yc6{bottom:352.386667pt;}
.y82{bottom:355.106667pt;}
.y1c4{bottom:357.026667pt;}
.yec{bottom:357.346667pt;}
.y44{bottom:359.426667pt;}
.y11f{bottom:364.386667pt;}
.y196{bottom:366.306667pt;}
.yc5{bottom:367.746667pt;}
.y81{bottom:370.306667pt;}
.yeb{bottom:371.426667pt;}
.y1c6{bottom:374.306667pt;}
.y43{bottom:374.786667pt;}
.yc4{bottom:383.106667pt;}
.y18f{bottom:383.746667pt;}
.y80{bottom:385.666667pt;}
.yea{bottom:388.706667pt;}
.y42{bottom:389.986667pt;}
.y1c5{bottom:391.746667pt;}
.yc3{bottom:398.466667pt;}
.y7f{bottom:401.026667pt;}
.y41{bottom:405.346667pt;}
.ye9{bottom:405.986667pt;}
.y140{bottom:410.306667pt;}
.yc2{bottom:413.826667pt;}
.y1d7{bottom:414.306667pt;}
.y7e{bottom:416.386667pt;}
.y40{bottom:420.706667pt;}
.y1c1{bottom:424.386667pt;}
.ye8{bottom:425.346667pt;}
.y1d6{bottom:426.946667pt;}
.yc1{bottom:429.026667pt;}
.y94{bottom:431.426667pt;}
.y7d{bottom:431.746667pt;}
.y193{bottom:433.666667pt;}
.y3f{bottom:436.066667pt;}
.y1c3{bottom:441.666667pt;}
.y1d5{bottom:442.306667pt;}
.y11e{bottom:442.946667pt;}
.yc0{bottom:444.386667pt;}
.y7c{bottom:446.946667pt;}
.y165{bottom:449.026667pt;}
.y3e{bottom:451.426667pt;}
.y18e{bottom:454.306667pt;}
.y1c2{bottom:458.946667pt;}
.ybf{bottom:459.746667pt;}
.y11c{bottom:460.386667pt;}
.y7b{bottom:462.306667pt;}
.ye7{bottom:465.346667pt;}
.y3d{bottom:466.626667pt;}
.y18d{bottom:469.346667pt;}
.y1d4{bottom:473.666667pt;}
.ybe{bottom:475.106667pt;}
.y7a{bottom:477.666667pt;}
.ye6{bottom:481.026667pt;}
.y3c{bottom:481.986667pt;}
.y18c{bottom:484.706667pt;}
.ybd{bottom:490.466667pt;}
.y1bd{bottom:491.746667pt;}
.y79{bottom:493.026667pt;}
.y11b{bottom:496.066667pt;}
.ye5{bottom:496.386667pt;}
.y164{bottom:497.026667pt;}
.y3b{bottom:497.346667pt;}
.y18b{bottom:500.066667pt;}
.ybc{bottom:505.666667pt;}
.y78{bottom:508.386667pt;}
.y1c0{bottom:509.026667pt;}
.y11a{bottom:511.426667pt;}
.ye4{bottom:511.746667pt;}
.y3a{bottom:512.706667pt;}
.y18a{bottom:515.746667pt;}
.ybb{bottom:521.026667pt;}
.y13e{bottom:521.666667pt;}
.y77{bottom:523.746667pt;}
.y1bf{bottom:526.306667pt;}
.ye3{bottom:526.946667pt;}
.y39{bottom:528.066667pt;}
.y189{bottom:530.946667pt;}
.y163{bottom:532.706667pt;}
.yba{bottom:536.386667pt;}
.y76{bottom:538.946667pt;}
.ye2{bottom:542.306667pt;}
.y38{bottom:543.106667pt;}
.y188{bottom:546.306667pt;}
.y162{bottom:548.386667pt;}
.yb9{bottom:552.093333pt;}
.y75{bottom:554.333333pt;}
.y13d{bottom:557.373333pt;}
.ye1{bottom:557.693333pt;}
.y37{bottom:558.333333pt;}
.y1b8{bottom:558.973333pt;}
.y187{bottom:561.693333pt;}
.y161{bottom:563.773333pt;}
.yb8{bottom:567.453333pt;}
.y74{bottom:569.693333pt;}
.y1a{bottom:571.453333pt;}
.ye0{bottom:573.053333pt;}
.y1bc{bottom:576.413333pt;}
.y186{bottom:577.053333pt;}
.y160{bottom:578.973333pt;}
.yb7{bottom:582.813333pt;}
.y73{bottom:585.053333pt;}
.ydf{bottom:588.413333pt;}
.y185{bottom:592.413333pt;}
.y1bb{bottom:593.693333pt;}
.y15f{bottom:594.333333pt;}
.yb6{bottom:598.013333pt;}
.y72{bottom:600.413333pt;}
.yde{bottom:603.773333pt;}
.y184{bottom:607.773333pt;}
.y15e{bottom:609.693333pt;}
.yb5{bottom:613.373333pt;}
.y71{bottom:615.773333pt;}
.ydd{bottom:618.973333pt;}
.y183{bottom:622.973333pt;}
.y15d{bottom:625.053333pt;}
.y1b4{bottom:626.333333pt;}
.yb4{bottom:628.733333pt;}
.y70{bottom:630.973333pt;}
.ydc{bottom:633.053333pt;}
.y119{bottom:634.333333pt;}
.y182{bottom:638.013333pt;}
.y15c{bottom:640.413333pt;}
.y1b7{bottom:643.773333pt;}
.yb3{bottom:644.093333pt;}
.y6f{bottom:646.333333pt;}
.y118{bottom:649.693333pt;}
.ydb{bottom:650.333333pt;}
.y181{bottom:653.373333pt;}
.y15b{bottom:655.773333pt;}
.yb2{bottom:659.453333pt;}
.y1b6{bottom:661.053333pt;}
.y6e{bottom:661.693333pt;}
.y117{bottom:665.053333pt;}
.yda{bottom:667.773333pt;}
.y180{bottom:669.053333pt;}
.y15a{bottom:670.973333pt;}
.yb1{bottom:674.813333pt;}
.y6d{bottom:677.053333pt;}
.y116{bottom:680.413333pt;}
.y17f{bottom:684.413333pt;}
.yd9{bottom:685.053333pt;}
.y159{bottom:686.333333pt;}
.yb0{bottom:690.013333pt;}
.y6c{bottom:692.413333pt;}
.y1b3{bottom:693.693333pt;}
.y115{bottom:695.613333pt;}
.y17e{bottom:699.613333pt;}
.y158{bottom:701.693333pt;}
.yd8{bottom:702.333333pt;}
.yaf{bottom:705.373333pt;}
.y6b{bottom:707.613333pt;}
.y112{bottom:709.693333pt;}
.y13c{bottom:710.973333pt;}
.y17d{bottom:714.973333pt;}
.y157{bottom:717.053333pt;}
.yae{bottom:720.733333pt;}
.yd7{bottom:722.653333pt;}
.y6a{bottom:722.973333pt;}
.y13b{bottom:726.333333pt;}
.y17c{bottom:730.333333pt;}
.y156{bottom:732.413333pt;}
.yad{bottom:736.093333pt;}
.y69{bottom:738.333333pt;}
.y13a{bottom:741.693333pt;}
.y111{bottom:742.333333pt;}
.y1b2{bottom:744.733333pt;}
.y17b{bottom:745.693333pt;}
.y155{bottom:747.613333pt;}
.yac{bottom:751.133333pt;}
.y68{bottom:753.693333pt;}
.y139{bottom:757.053333pt;}
.y110{bottom:759.613333pt;}
.y1b1{bottom:760.093333pt;}
.y17a{bottom:761.053333pt;}
.y154{bottom:762.973333pt;}
.yab{bottom:766.493333pt;}
.y67{bottom:769.053333pt;}
.y2c{bottom:770.013333pt;}
.y138{bottom:772.413333pt;}
.y107{bottom:773.373333pt;}
.y179{bottom:776.413333pt;}
.y10d{bottom:777.053333pt;}
.y153{bottom:778.373333pt;}
.ya6{bottom:780.773333pt;}
.y66{bottom:784.453333pt;}
.y137{bottom:787.653333pt;}
.y106{bottom:790.693333pt;}
.y1b0{bottom:791.013333pt;}
.y178{bottom:791.653333pt;}
.y152{bottom:793.733333pt;}
.y10c{bottom:794.373333pt;}
.y65{bottom:799.653333pt;}
.yaa{bottom:801.733333pt;}
.y136{bottom:803.013333pt;}
.y1af{bottom:806.373333pt;}
.y177{bottom:807.013333pt;}
.y105{bottom:808.133333pt;}
.y151{bottom:809.093333pt;}
.y64{bottom:815.013333pt;}
.y13{bottom:816.773333pt;}
.y135{bottom:818.373333pt;}
.y1ae{bottom:821.733333pt;}
.y176{bottom:822.373333pt;}
.ya9{bottom:822.693333pt;}
.y150{bottom:824.453333pt;}
.y104{bottom:825.413333pt;}
.y10b{bottom:830.053333pt;}
.y63{bottom:830.373333pt;}
.y134{bottom:833.733333pt;}
.y1a5{bottom:835.653333pt;}
.y175{bottom:837.733333pt;}
.y14f{bottom:839.653333pt;}
.y103{bottom:842.693333pt;}
.y9f{bottom:843.653333pt;}
.y10a{bottom:845.413333pt;}
.y62{bottom:845.733333pt;}
.y133{bottom:847.653333pt;}
.y174{bottom:853.093333pt;}
.y14e{bottom:853.733333pt;}
.y102{bottom:859.973333pt;}
.y61{bottom:861.093333pt;}
.ya5{bottom:864.453333pt;}
.y173{bottom:868.453333pt;}
.y1ad{bottom:870.373333pt;}
.y60{bottom:876.453333pt;}
.y101{bottom:877.413333pt;}
.y130{bottom:880.453333pt;}
.y172{bottom:883.653333pt;}
.ya4{bottom:885.413333pt;}
.y14a{bottom:886.373333pt;}
.y1ab{bottom:887.653333pt;}
.y93{bottom:891.333333pt;}
.y5f{bottom:891.653333pt;}
.y11{bottom:894.053333pt;}
.y100{bottom:894.693333pt;}
.y171{bottom:899.013333pt;}
.y1ac{bottom:905.093333pt;}
.ya3{bottom:906.373333pt;}
.y1d3{bottom:906.693333pt;}
.y5e{bottom:907.013333pt;}
.yff{bottom:911.973333pt;}
.y10{bottom:913.093333pt;}
.y109{bottom:922.053333pt;}
.y5d{bottom:922.373333pt;}
.y9a{bottom:927.333333pt;}
.yf{bottom:928.453333pt;}
.yfe{bottom:929.413333pt;}
.y108{bottom:937.413333pt;}
.y5c{bottom:937.733333pt;}
.y1a7{bottom:939.653333pt;}
.ye{bottom:944.133333pt;}
.y16f{bottom:945.733333pt;}
.yfd{bottom:946.693333pt;}
.y9e{bottom:948.293333pt;}
.y5b{bottom:953.093333pt;}
.y1aa{bottom:957.093333pt;}
.yd{bottom:960.293333pt;}
.y12e{bottom:961.093333pt;}
.y5a{bottom:968.453333pt;}
.y9c{bottom:969.253333pt;}
.y1a9{bottom:974.373333pt;}
.yc{bottom:981.733333pt;}
.y59{bottom:983.653333pt;}
.y98{bottom:990.053333pt;}
.y1a4{bottom:991.653333pt;}
.y16d{bottom:993.733333pt;}
.y58{bottom:999.013333pt;}
.y9{bottom:1002.373333pt;}
.y12d{bottom:1009.120000pt;}
.y97{bottom:1014.080000pt;}
.y57{bottom:1014.400000pt;}
.y8{bottom:1017.760000pt;}
.y1{bottom:1029.760000pt;}
.y56{bottom:1047.840000pt;}
.y4{bottom:1048.320000pt;}
.y55{bottom:1063.200000pt;}
.h18{height:15.200000pt;}
.hc{height:15.360000pt;}
.h1c{height:15.392000pt;}
.h1a{height:17.440000pt;}
.h6{height:18.560000pt;}
.h15{height:18.880000pt;}
.h17{height:19.040000pt;}
.h13{height:19.072000pt;}
.h5{height:20.800000pt;}
.h1f{height:30.560000pt;}
.h27{height:30.592000pt;}
.h1d{height:30.720000pt;}
.h23{height:30.752000pt;}
.h7{height:32.578750pt;}
.h19{height:35.040000pt;}
.h8{height:36.000000pt;}
.h31{height:36.909063pt;}
.h2{height:39.360000pt;}
.h22{height:45.920000pt;}
.h1b{height:46.080000pt;}
.h10{height:46.112000pt;}
.h4{height:48.375000pt;}
.h2a{height:49.920000pt;}
.h2b{height:49.952000pt;}
.h2e{height:50.080000pt;}
.he{height:52.108438pt;}
.h9{height:52.134375pt;}
.hb{height:53.535000pt;}
.h12{height:54.598989pt;}
.h1e{height:55.298750pt;}
.h3{height:59.340000pt;}
.h14{height:60.800000pt;}
.h26{height:61.280000pt;}
.h20{height:61.312000pt;}
.h21{height:61.440000pt;}
.h28{height:65.280000pt;}
.h30{height:65.312000pt;}
.h2f{height:65.440000pt;}
.ha{height:75.465000pt;}
.hd{height:76.640000pt;}
.h24{height:76.800000pt;}
.h16{height:81.600000pt;}
.h2c{height:119.360000pt;}
.h25{height:137.946667pt;}
.h29{height:153.946667pt;}
.h2d{height:154.080000pt;}
.h11{height:197.920000pt;}
.hf{height:321.946667pt;}
.h0{height:1122.400000pt;}
.h1{height:1122.666667pt;}
.w7{width:27.680000pt;}
.w37{width:30.080000pt;}
.w25{width:35.520000pt;}
.w1f{width:35.680000pt;}
.w35{width:44.320000pt;}
.w32{width:44.352000pt;}
.w31{width:47.040000pt;}
.w34{width:47.072000pt;}
.w33{width:51.040000pt;}
.w36{width:51.072000pt;}
.w2b{width:56.032000pt;}
.w24{width:60.160000pt;}
.w15{width:63.040000pt;}
.w17{width:63.072000pt;}
.w16{width:63.200000pt;}
.w18{width:63.232000pt;}
.w3a{width:68.800000pt;}
.w29{width:69.472000pt;}
.w3c{width:71.040000pt;}
.w3d{width:71.872000pt;}
.w2c{width:72.960000pt;}
.w3b{width:74.432000pt;}
.w39{width:76.672000pt;}
.w19{width:78.080000pt;}
.w28{width:84.960000pt;}
.w21{width:85.632000pt;}
.w26{width:85.792000pt;}
.w1d{width:86.272000pt;}
.w1b{width:86.592000pt;}
.w1e{width:88.992000pt;}
.w2e{width:91.392000pt;}
.w1c{width:93.440000pt;}
.w2a{width:93.600000pt;}
.w23{width:94.432000pt;}
.wb{width:96.992000pt;}
.w38{width:97.152000pt;}
.wf{width:97.632000pt;}
.w2f{width:98.080000pt;}
.w30{width:98.112000pt;}
.w22{width:104.000000pt;}
.w27{width:104.032000pt;}
.w14{width:113.472000pt;}
.w9{width:113.600000pt;}
.wd{width:113.632000pt;}
.wc{width:113.760000pt;}
.we{width:129.632000pt;}
.w13{width:130.112000pt;}
.w1a{width:134.746667pt;}
.w6{width:156.666667pt;}
.w20{width:188.346667pt;}
.w10{width:189.306667pt;}
.w11{width:189.466667pt;}
.w2{width:192.506667pt;}
.w5{width:200.706667pt;}
.w4{width:239.866667pt;}
.wa{width:243.906667pt;}
.w3f{width:300.226667pt;}
.w40{width:302.466667pt;}
.w12{width:378.786667pt;}
.w2d{width:378.973333pt;}
.w8{width:418.333333pt;}
.w3{width:440.573333pt;}
.w3e{width:602.693333pt;}
.w1{width:793.333333pt;}
.w0{width:793.600000pt;}
.x0{left:0.000000pt;}
.x4{left:1.120000pt;}
.x2{left:4.160000pt;}
.xf{left:6.240000pt;}
.xc{left:7.200000pt;}
.x66{left:8.480000pt;}
.x3c{left:10.080000pt;}
.x3f{left:11.400000pt;}
.x40{left:12.680000pt;}
.x58{left:13.594667pt;}
.x59{left:15.354667pt;}
.x56{left:16.640000pt;}
.x5a{left:17.594667pt;}
.x64{left:18.880000pt;}
.x45{left:19.840000pt;}
.x32{left:21.760000pt;}
.x3e{left:22.760000pt;}
.x57{left:23.834667pt;}
.x46{left:24.960000pt;}
.x3b{left:26.080000pt;}
.x20{left:27.880000pt;}
.x4e{left:29.120000pt;}
.x4f{left:30.080000pt;}
.x5{left:31.040000pt;}
.x4d{left:32.160000pt;}
.x36{left:33.280000pt;}
.x35{left:34.600000pt;}
.x68{left:35.520000pt;}
.x21{left:36.480000pt;}
.x22{left:37.480000pt;}
.x62{left:39.040000pt;}
.x34{left:40.000000pt;}
.x1f{left:41.640000pt;}
.x37{left:43.360000pt;}
.x1a{left:44.840000pt;}
.x1e{left:46.400000pt;}
.x1c{left:49.760000pt;}
.x17{left:51.200000pt;}
.x1d{left:52.640000pt;}
.x23{left:55.360000pt;}
.x65{left:57.440000pt;}
.x19{left:58.880000pt;}
.x14{left:60.954667pt;}
.x2d{left:64.160000pt;}
.x67{left:66.240000pt;}
.x5b{left:68.954667pt;}
.x5c{left:72.474667pt;}
.x63{left:75.200000pt;}
.x1{left:80.352000pt;}
.x2e{left:83.080000pt;}
.x2f{left:85.600000pt;}
.x13{left:88.832000pt;}
.x2a{left:94.074667pt;}
.x7{left:96.032000pt;}
.xa{left:99.392000pt;}
.x9{left:106.112000pt;}
.x30{left:110.234667pt;}
.x10{left:111.232000pt;}
.x47{left:112.832000pt;}
.x11{left:114.912000pt;}
.x38{left:120.032000pt;}
.x51{left:124.512000pt;}
.x79{left:133.786667pt;}
.x12{left:138.906667pt;}
.x39{left:144.026667pt;}
.x5d{left:148.346667pt;}
.x3a{left:151.866667pt;}
.x6c{left:157.626667pt;}
.x50{left:159.226667pt;}
.x69{left:182.426667pt;}
.x48{left:190.906667pt;}
.x31{left:197.946667pt;}
.x15{left:202.426667pt;}
.x3d{left:215.066667pt;}
.x73{left:220.986667pt;}
.x6a{left:238.466667pt;}
.x7a{left:244.034667pt;}
.xd{left:252.226667pt;}
.xb{left:267.906667pt;}
.x3{left:272.866667pt;}
.x2b{left:278.146667pt;}
.xe{left:279.906667pt;}
.x6b{left:311.426667pt;}
.x52{left:312.866667pt;}
.x1b{left:316.066667pt;}
.x74{left:318.146667pt;}
.x49{left:325.666667pt;}
.x33{left:328.066667pt;}
.x5e{left:336.706667pt;}
.x41{left:341.346667pt;}
.x6f{left:358.466667pt;}
.x75{left:394.813333pt;}
.x7b{left:395.773333pt;}
.x53{left:398.493333pt;}
.x6d{left:402.813333pt;}
.x42{left:404.573333pt;}
.x4a{left:412.253333pt;}
.x5f{left:422.493333pt;}
.x16{left:446.333333pt;}
.x70{left:449.853333pt;}
.x76{left:463.613333pt;}
.x2c{left:467.613333pt;}
.x6e{left:500.893333pt;}
.x54{left:502.493333pt;}
.x4b{left:505.693333pt;}
.x6{left:512.733333pt;}
.x60{left:526.533333pt;}
.x43{left:530.853333pt;}
.x77{left:538.053333pt;}
.x18{left:543.333333pt;}
.x71{left:547.973333pt;}
.x4c{left:591.973333pt;}
.x44{left:593.893333pt;}
.x55{left:596.933333pt;}
.x78{left:609.093333pt;}
.x61{left:611.493333pt;}
.x72{left:639.333333pt;}
.x24{left:670.373333pt;}
.x25{left:671.813333pt;}
.x27{left:674.053333pt;}
.x26{left:681.600000pt;}
.x8{left:684.480000pt;}
.x28{left:685.920000pt;}
.x29{left:693.440000pt;}
}




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