
    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_e71f2982500fc4a0b8d0082d.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.005000;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_86555b0d3b0cd41f16dd3329.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.005000;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_e7c2194ca8b26d34bf1654a7.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.005000;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_3cd3049811cb9db06949c640.woff2')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_bf7de3f420b2d8b27a858c98.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_adc0377bdfa460042066b551.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_aa072bc55772dae9b262b30b.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_2abf2d352b54f6466295e65e.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.758789;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_2f47f3a69151db95c7f9e5b8.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_7a317d54f6cd0d8133b3a043.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;}
@font-face{font-family:ffb;src:url('chunks/assets/font_b7120cf9449fed167ed1a24c.woff2')format("woff");}.ffb{font-family:ffb;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;}
.m2{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v4{vertical-align:-72.000000px;}
.v1{vertical-align:-63.360000px;}
.v5{vertical-align:-30.240000px;}
.v2{vertical-align:-5.760000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:20.880000px;}
.ls6{letter-spacing:-1.260000px;}
.ls12{letter-spacing:-1.134000px;}
.ls11{letter-spacing:-0.612000px;}
.ls2{letter-spacing:-0.531600px;}
.ls3{letter-spacing:-0.360000px;}
.lsc{letter-spacing:-0.106800px;}
.ls4{letter-spacing:-0.053280px;}
.ls0{letter-spacing:0.000000px;}
.ls5{letter-spacing:0.053280px;}
.ls7{letter-spacing:0.070560px;}
.ls10{letter-spacing:0.108000px;}
.lsb{letter-spacing:0.135600px;}
.lsa{letter-spacing:0.180000px;}
.ls9{letter-spacing:0.259800px;}
.ls14{letter-spacing:0.259920px;}
.lsf{letter-spacing:0.298800px;}
.ls1{letter-spacing:0.360000px;}
.lsd{letter-spacing:0.460080px;}
.lse{letter-spacing:0.580080px;}
.ls15{letter-spacing:10.260000px;}
.ls16{letter-spacing:41.706720px;}
.ls8{letter-spacing:43.866720px;}
.ls13{letter-spacing:863.640000px;}
.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;}
}
.ws9{word-spacing:-59.760000px;}
.ws1{word-spacing:-15.300000px;}
.wse{word-spacing:-15.238800px;}
.ws8{word-spacing:-15.120000px;}
.wsc{word-spacing:-14.993280px;}
.wsb{word-spacing:-14.940000px;}
.ws6{word-spacing:-14.886720px;}
.wsa{word-spacing:-14.833200px;}
.wsd{word-spacing:-14.580000px;}
.ws4{word-spacing:-12.780000px;}
.ws3{word-spacing:-12.420000px;}
.ws2{word-spacing:-12.060000px;}
.ws5{word-spacing:-11.700000px;}
.ws7{word-spacing:-9.720000px;}
.ws0{word-spacing:0.000000px;}
._6{margin-left:-3.525840px;}
._5{margin-left:-2.450160px;}
._1{margin-left:-1.131120px;}
._0{width:1.135440px;}
._3{width:2.674560px;}
._4{width:3.779520px;}
._9{width:5.019840px;}
._8{width:6.454080px;}
._a{width:7.589520px;}
._c{width:8.904240px;}
._7{width:10.039680px;}
._12{width:11.593440px;}
._11{width:13.505760px;}
._10{width:16.015680px;}
._f{width:17.504640px;}
._d{width:18.943920px;}
._e{width:20.437920px;}
._15{width:21.453840px;}
._16{width:22.649040px;}
._13{width:24.441840px;}
._14{width:25.517520px;}
._18{width:26.708400px;}
._17{width:28.386000px;}
._b{width:32.864400px;}
._19{width:36.991440px;}
._2{width:482.162160px;}
.fc1{color:transparent;}
.fc0{color:rgb(0,0,0);}
.fsa{font-size:38.880000px;}
.fs4{font-size:42.000000px;}
.fs8{font-size:48.240000px;}
.fs9{font-size:51.120000px;}
.fs6{font-size:54.000000px;}
.fs5{font-size:59.760000px;}
.fs3{font-size:60.000000px;}
.fs1{font-size:63.000000px;}
.fsb{font-size:63.360000px;}
.fs0{font-size:72.000000px;}
.fs2{font-size:84.000000px;}
.fs7{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.y5f{bottom:3.240000px;}
.y13b{bottom:5.040000px;}
.y102{bottom:5.760000px;}
.yff{bottom:5.940000px;}
.y142{bottom:6.300000px;}
.y13d{bottom:6.480000px;}
.yd2{bottom:6.660000px;}
.y128{bottom:7.740000px;}
.y125{bottom:8.100000px;}
.y1b9{bottom:9.180000px;}
.y45{bottom:9.360000px;}
.y100{bottom:9.900000px;}
.y107{bottom:10.080000px;}
.y47{bottom:10.260000px;}
.y48{bottom:10.800000px;}
.ydf{bottom:11.700000px;}
.ye2{bottom:11.745000px;}
.ydd{bottom:11.880000px;}
.ye0{bottom:12.780000px;}
.ye3{bottom:12.825000px;}
.ye5{bottom:12.960000px;}
.y12c{bottom:16.020000px;}
.yd4{bottom:18.000000px;}
.y1b0{bottom:20.520000px;}
.y1b8{bottom:26.460000px;}
.y41{bottom:28.440000px;}
.yd0{bottom:28.980000px;}
.y44{bottom:32.400000px;}
.y151{bottom:34.890000px;}
.y15e{bottom:36.210000px;}
.y1af{bottom:37.800000px;}
.y1b7{bottom:43.740000px;}
.y6{bottom:50.595005px;}
.y1ae{bottom:54.900000px;}
.y40{bottom:55.080000px;}
.y13f{bottom:55.290000px;}
.y147{bottom:56.880000px;}
.y43{bottom:58.320000px;}
.y152{bottom:60.810000px;}
.y42{bottom:61.020000px;}
.y15f{bottom:63.000000px;}
.yfd{bottom:66.240000px;}
.y109{bottom:66.285000px;}
.y1ad{bottom:72.180000px;}
.y5{bottom:75.795004px;}
.y1b6{bottom:78.660000px;}
.y153{bottom:86.730000px;}
.y1ac{bottom:89.460000px;}
.y160{bottom:89.790000px;}
.y1b5{bottom:96.660000px;}
.y4{bottom:100.995005px;}
.y15a{bottom:101.670000px;}
.y1ab{bottom:106.740000px;}
.y167{bottom:108.180000px;}
.y154{bottom:112.650000px;}
.y161{bottom:116.565000px;}
.y1b4{bottom:120.240000px;}
.y1aa{bottom:124.020000px;}
.y155{bottom:138.570000px;}
.y23{bottom:139.264499px;}
.y1a9{bottom:141.120000px;}
.y162{bottom:143.310000px;}
.y1b3{bottom:143.460000px;}
.y1b2{bottom:160.770000px;}
.y15c{bottom:161.355000px;}
.y156{bottom:164.445000px;}
.y1a8{bottom:164.520000px;}
.y163{bottom:170.100000px;}
.y15b{bottom:179.745000px;}
.y5d{bottom:187.410000px;}
.y1a7{bottom:187.740000px;}
.y157{bottom:190.365000px;}
.y169{bottom:196.560000px;}
.y164{bottom:196.890000px;}
.y1a{bottom:196.933500px;}
.y1a6{bottom:205.050000px;}
.y5c{bottom:208.110000px;}
.y22{bottom:209.518500px;}
.y19{bottom:209.533503px;}
.y158{bottom:216.285000px;}
.y168{bottom:218.490000px;}
.y21{bottom:222.118502px;}
.y18{bottom:222.133505px;}
.y1a5{bottom:222.150000px;}
.y165{bottom:223.665000px;}
.y5b{bottom:228.810000px;}
.y20{bottom:234.718504px;}
.y17{bottom:234.733496px;}
.y54{bottom:234.750000px;}
.y1a4{bottom:239.430000px;}
.y159{bottom:242.205000px;}
.y5a{bottom:249.510000px;}
.y166{bottom:250.410000px;}
.y53{bottom:252.750000px;}
.y1f{bottom:259.918497px;}
.y16{bottom:259.933500px;}
.y1a3{bottom:262.830000px;}
.y59{bottom:270.210000px;}
.y52{bottom:270.750000px;}
.y1e{bottom:272.518500px;}
.y15{bottom:272.533503px;}
.y1d{bottom:285.118502px;}
.y14{bottom:285.133499px;}
.y1a2{bottom:286.050000px;}
.y51{bottom:288.750000px;}
.y58{bottom:290.910000px;}
.y1a1{bottom:303.150000px;}
.y50{bottom:306.750000px;}
.y1c{bottom:310.318501px;}
.y13{bottom:310.333501px;}
.y5e{bottom:311.115000px;}
.y57{bottom:311.655000px;}
.y1a0{bottom:320.430000px;}
.y1b{bottom:322.918500px;}
.y12{bottom:322.933500px;}
.y4f{bottom:324.795000px;}
.y89{bottom:331.815000px;}
.y88{bottom:332.355000px;}
.y87{bottom:333.435000px;}
.yc2{bottom:338.655000px;}
.yae{bottom:339.555000px;}
.y4e{bottom:342.795000px;}
.y19f{bottom:343.830000px;}
.yfa{bottom:344.055000px;}
.y11{bottom:348.133500px;}
.y86{bottom:351.435000px;}
.y123{bottom:353.415000px;}
.yc1{bottom:356.655000px;}
.yad{bottom:357.555000px;}
.ydb{bottom:357.735000px;}
.y4d{bottom:360.795000px;}
.y198{bottom:362.955000px;}
.ya4{bottom:363.495000px;}
.y146{bottom:365.475000px;}
.y196{bottom:365.835000px;}
.y19e{bottom:367.050000px;}
.yf9{bottom:367.995000px;}
.y14f{bottom:368.175000px;}
.y85{bottom:369.435000px;}
.yc0{bottom:374.655000px;}
.yac{bottom:375.555000px;}
.yda{bottom:375.735000px;}
.y122{bottom:377.355000px;}
.y4c{bottom:378.795000px;}
.ya3{bottom:381.495000px;}
.y195{bottom:383.835000px;}
.y19d{bottom:384.150000px;}
.y14e{bottom:385.275000px;}
.y15d{bottom:385.380000px;}
.y10{bottom:386.785499px;}
.y84{bottom:387.435000px;}
.y14b{bottom:389.955000px;}
.yf8{bottom:391.935000px;}
.ybf{bottom:392.655000px;}
.yab{bottom:393.555000px;}
.yd9{bottom:393.735000px;}
.y4b{bottom:396.795000px;}
.ya2{bottom:399.495000px;}
.y19c{bottom:401.430000px;}
.y121{bottom:401.475000px;}
.y194{bottom:401.835000px;}
.y83{bottom:405.435000px;}
.yf{bottom:408.044999px;}
.ybe{bottom:410.655000px;}
.yaa{bottom:411.555000px;}
.yd8{bottom:411.735000px;}
.y14a{bottom:414.255000px;}
.yf7{bottom:416.055000px;}
.ya1{bottom:417.495000px;}
.y19b{bottom:418.710000px;}
.y120{bottom:419.475000px;}
.y4a{bottom:420.915000px;}
.y82{bottom:423.435000px;}
.y193{bottom:425.775000px;}
.ya9{bottom:429.555000px;}
.ybd{bottom:434.775000px;}
.ya0{bottom:435.495000px;}
.yd7{bottom:435.855000px;}
.y19a{bottom:435.990000px;}
.y11f{bottom:437.475000px;}
.y49{bottom:438.555000px;}
.yf6{bottom:439.995000px;}
.y81{bottom:441.435000px;}
.y149{bottom:441.975000px;}
.y192{bottom:443.775000px;}
.yb9{bottom:447.555000px;}
.y46{bottom:452.415000px;}
.y9f{bottom:453.495000px;}
.y11e{bottom:455.475000px;}
.yf5{bottom:457.995000px;}
.yd6{bottom:458.175000px;}
.ybc{bottom:458.355000px;}
.y199{bottom:459.255000px;}
.y80{bottom:459.435000px;}
.y191{bottom:461.775000px;}
.yb8{bottom:465.555000px;}
.y148{bottom:466.455000px;}
.y9e{bottom:471.495000px;}
.y11d{bottom:473.475000px;}
.y3f{bottom:474.555000px;}
.yf4{bottom:475.995000px;}
.ya8{bottom:477.435000px;}
.ybb{bottom:479.055000px;}
.yd5{bottom:480.495000px;}
.y7f{bottom:483.555000px;}
.ye{bottom:484.864502px;}
.y190{bottom:485.715000px;}
.y9d{bottom:489.495000px;}
.y145{bottom:490.755000px;}
.y11c{bottom:491.475000px;}
.yf3{bottom:493.995000px;}
.y197{bottom:495.435000px;}
.y7e{bottom:501.555000px;}
.ycf{bottom:502.815000px;}
.yd{bottom:502.864502px;}
.y18f{bottom:503.715000px;}
.y9c{bottom:507.495000px;}
.y11b{bottom:509.475000px;}
.yf2{bottom:511.995000px;}
.y176{bottom:513.435000px;}
.y13e{bottom:515.055000px;}
.y7d{bottom:519.555000px;}
.yc{bottom:520.864502px;}
.y18e{bottom:521.715000px;}
.yd3{bottom:525.135000px;}
.y9b{bottom:525.495000px;}
.y11a{bottom:527.475000px;}
.yf1{bottom:529.995000px;}
.y175{bottom:531.435000px;}
.y7c{bottom:537.555000px;}
.yb{bottom:538.864499px;}
.y144{bottom:539.535000px;}
.y9a{bottom:543.495000px;}
.y119{bottom:545.475000px;}
.y18d{bottom:545.835000px;}
.yd1{bottom:547.635000px;}
.yf0{bottom:547.995000px;}
.y3e{bottom:550.155000px;}
.y7b{bottom:555.555000px;}
.ya{bottom:556.864499px;}
.y99{bottom:561.525000px;}
.y118{bottom:563.505000px;}
.y143{bottom:563.865000px;}
.yef{bottom:566.025000px;}
.y3d{bottom:567.465000px;}
.y7a{bottom:573.585000px;}
.yb7{bottom:579.525000px;}
.yee{bottom:584.025000px;}
.y3c{bottom:584.745000px;}
.y98{bottom:585.465000px;}
.y117{bottom:587.445000px;}
.y18c{bottom:587.805000px;}
.y141{bottom:588.345000px;}
.y79{bottom:591.585000px;}
.yb6{bottom:597.525000px;}
.y3b{bottom:601.845000px;}
.yce{bottom:603.465000px;}
.y110{bottom:605.625000px;}
.y18b{bottom:605.805000px;}
.yed{bottom:607.965000px;}
.y78{bottom:609.585000px;}
.y140{bottom:612.645000px;}
.yb5{bottom:615.525000px;}
.y3a{bottom:619.125000px;}
.ycd{bottom:621.465000px;}
.y18a{bottom:623.805000px;}
.yec{bottom:625.965000px;}
.y116{bottom:626.145000px;}
.y77{bottom:627.585000px;}
.y97{bottom:633.525000px;}
.y39{bottom:636.405000px;}
.y13c{bottom:636.945000px;}
.ycc{bottom:639.465000px;}
.yeb{bottom:643.965000px;}
.y9{bottom:645.510000px;}
.y76{bottom:645.585000px;}
.y115{bottom:646.845000px;}
.y189{bottom:647.745000px;}
.y96{bottom:651.525000px;}
.y38{bottom:653.685000px;}
.ycb{bottom:657.465000px;}
.y13a{bottom:661.425000px;}
.yea{bottom:661.965000px;}
.y75{bottom:663.585000px;}
.y188{bottom:665.745000px;}
.y8{bottom:666.771000px;}
.y114{bottom:667.365000px;}
.y14d{bottom:668.625000px;}
.y95{bottom:669.525000px;}
.y37{bottom:670.965000px;}
.yca{bottom:675.465000px;}
.ye9{bottom:679.965000px;}
.ya7{bottom:681.585000px;}
.y14c{bottom:685.185000px;}
.y150{bottom:685.440000px;}
.y74{bottom:687.525000px;}
.y113{bottom:687.885000px;}
.y36{bottom:688.245000px;}
.y187{bottom:689.865000px;}
.y139{bottom:692.565000px;}
.yc9{bottom:693.465000px;}
.ya6{bottom:699.585000px;}
.ye8{bottom:704.085000px;}
.y35{bottom:705.345000px;}
.y73{bottom:705.525000px;}
.y186{bottom:707.865000px;}
.y112{bottom:708.585000px;}
.y138{bottom:710.565000px;}
.yc8{bottom:711.465000px;}
.y174{bottom:717.585000px;}
.y34{bottom:722.625000px;}
.y72{bottom:723.525000px;}
.y185{bottom:725.865000px;}
.y7{bottom:726.298500px;}
.ye7{bottom:728.205000px;}
.y137{bottom:728.565000px;}
.y111{bottom:729.105000px;}
.yb4{bottom:729.465000px;}
.yc7{bottom:735.585000px;}
.y33{bottom:739.905000px;}
.y71{bottom:741.525000px;}
.y136{bottom:746.565000px;}
.y108{bottom:749.805000px;}
.y3{bottom:752.599495px;}
.yb3{bottom:753.585000px;}
.ye6{bottom:754.845000px;}
.y32{bottom:757.185000px;}
.y70{bottom:759.525000px;}
.y135{bottom:764.565000px;}
.y94{bottom:765.465000px;}
.y184{bottom:767.805000px;}
.y10f{bottom:770.325000px;}
.y170{bottom:771.585000px;}
.y31{bottom:774.465000px;}
.y6f{bottom:777.525000px;}
.ye4{bottom:781.485000px;}
.y134{bottom:782.565000px;}
.y93{bottom:783.465000px;}
.y183{bottom:785.805000px;}
.y16f{bottom:789.585000px;}
.y10e{bottom:790.845000px;}
.y30{bottom:791.745000px;}
.y6e{bottom:795.525000px;}
.y133{bottom:800.565000px;}
.y92{bottom:801.465000px;}
.y16e{bottom:807.585000px;}
.ye1{bottom:808.125000px;}
.y2f{bottom:808.845000px;}
.y182{bottom:809.745000px;}
.y10d{bottom:811.590000px;}
.y6d{bottom:813.570000px;}
.y132{bottom:818.610000px;}
.y91{bottom:819.510000px;}
.y16d{bottom:825.630000px;}
.y2e{bottom:826.170000px;}
.y181{bottom:827.790000px;}
.y6c{bottom:831.570000px;}
.y10c{bottom:832.110000px;}
.yde{bottom:834.810000px;}
.y131{bottom:836.610000px;}
.y90{bottom:837.510000px;}
.y2d{bottom:843.450000px;}
.y16c{bottom:843.630000px;}
.y6b{bottom:849.570000px;}
.y180{bottom:851.910000px;}
.y10b{bottom:852.630000px;}
.y8f{bottom:855.510000px;}
.y130{bottom:859.830000px;}
.y2c{bottom:860.730000px;}
.ydc{bottom:861.270000px;}
.y16b{bottom:861.630000px;}
.y6a{bottom:867.570000px;}
.y17f{bottom:869.910000px;}
.y12f{bottom:872.430000px;}
.y1bb{bottom:872.970000px;}
.y10a{bottom:873.330000px;}
.yc6{bottom:873.510000px;}
.y2{bottom:879.369000px;}
.y8e{bottom:879.630000px;}
.y2b{bottom:879.990000px;}
.y12e{bottom:880.350000px;}
.y69{bottom:885.570000px;}
.y17e{bottom:887.910000px;}
.y1ba{bottom:890.970000px;}
.yc5{bottom:891.510000px;}
.yfc{bottom:893.850000px;}
.y8d{bottom:897.630000px;}
.y12d{bottom:901.230000px;}
.y68{bottom:903.570000px;}
.y1b1{bottom:904.470000px;}
.y2a{bottom:907.530000px;}
.ya5{bottom:909.510000px;}
.y17d{bottom:911.850000px;}
.y106{bottom:914.370000px;}
.y8c{bottom:915.630000px;}
.yb2{bottom:921.570000px;}
.y12b{bottom:921.930000px;}
.y67{bottom:927.510000px;}
.y17c{bottom:929.850000px;}
.y8b{bottom:933.630000px;}
.y105{bottom:935.070000px;}
.y29{bottom:935.250000px;}
.yb1{bottom:939.570000px;}
.y12a{bottom:942.450000px;}
.y173{bottom:945.510000px;}
.y17b{bottom:947.850000px;}
.y66{bottom:951.630000px;}
.y104{bottom:955.590000px;}
.yba{bottom:957.570000px;}
.y28{bottom:962.790000px;}
.y129{bottom:962.970000px;}
.yb0{bottom:963.510000px;}
.y1{bottom:966.726000px;}
.y65{bottom:969.630000px;}
.y17a{bottom:971.790000px;}
.y8a{bottom:975.570000px;}
.y103{bottom:976.290000px;}
.y172{bottom:981.510000px;}
.y127{bottom:983.670000px;}
.yaf{bottom:987.630000px;}
.y179{bottom:989.790000px;}
.y27{bottom:990.330000px;}
.y64{bottom:993.570000px;}
.y101{bottom:996.810000px;}
.y171{bottom:999.510000px;}
.yc4{bottom:1005.630000px;}
.y178{bottom:1007.790000px;}
.y126{bottom:1007.970000px;}
.y63{bottom:1011.570000px;}
.yfe{bottom:1017.330000px;}
.yc3{bottom:1023.630000px;}
.y124{bottom:1028.670000px;}
.y62{bottom:1029.570000px;}
.y177{bottom:1031.370000px;}
.y26{bottom:1031.550000px;}
.yfb{bottom:1038.030000px;}
.y16a{bottom:1041.630000px;}
.y61{bottom:1047.570000px;}
.y25{bottom:1048.650000px;}
.y60{bottom:1065.600000px;}
.y24{bottom:1065.960000px;}
.y56{bottom:1099.980000px;}
.y55{bottom:1119.960000px;}
.h1f{height:17.100000px;}
.h14{height:17.280000px;}
.h22{height:19.800000px;}
.h21{height:19.980000px;}
.h28{height:20.160000px;}
.h2a{height:20.880000px;}
.h18{height:21.456000px;}
.h1a{height:21.600000px;}
.h10{height:22.140000px;}
.h26{height:23.580000px;}
.h2d{height:23.616000px;}
.h2b{height:23.760000px;}
.h25{height:24.660000px;}
.h1c{height:25.740000px;}
.h1d{height:25.776000px;}
.h1b{height:25.920000px;}
.h2f{height:27.000000px;}
.h7{height:32.130000px;}
.h27{height:40.320000px;}
.h12{height:41.726953px;}
.h19{height:43.956000px;}
.h6{height:45.900000px;}
.hf{height:47.344922px;}
.h3{height:48.195000px;}
.he{height:48.616875px;}
.h11{height:50.171484px;}
.h36{height:52.971680px;}
.h29{height:52.998047px;}
.h2{height:55.080000px;}
.h15{height:58.621992px;}
.h9{height:58.651172px;}
.h34{height:59.019609px;}
.h1e{height:59.038594px;}
.ha{height:60.226875px;}
.h16{height:61.423863px;}
.h31{height:62.184375px;}
.h5{height:64.260000px;}
.h17{height:66.276000px;}
.h13{height:70.664062px;}
.hd{height:72.360000px;}
.hc{height:93.983203px;}
.hb{height:96.508125px;}
.h4{height:119.055004px;}
.h2c{height:121.176000px;}
.h2e{height:124.560000px;}
.h24{height:143.280000px;}
.h23{height:143.316000px;}
.h20{height:143.460000px;}
.h35{height:174.810000px;}
.h30{height:268.560000px;}
.h32{height:277.560000px;}
.h33{height:479.235000px;}
.h8{height:1188.000000px;}
.h0{height:1262.833500px;}
.h1{height:1263.000000px;}
.w9{width:22.716000px;}
.w18{width:41.616000px;}
.w1d{width:41.760000px;}
.w1f{width:41.796000px;}
.w1e{width:45.180000px;}
.w1c{width:46.476000px;}
.w19{width:46.800000px;}
.w25{width:49.536000px;}
.w2f{width:50.940000px;}
.w1b{width:52.020000px;}
.w17{width:52.200000px;}
.w16{width:52.920000px;}
.w20{width:53.820000px;}
.w2e{width:54.936000px;}
.wf{width:56.160000px;}
.w10{width:57.780000px;}
.w11{width:57.816000px;}
.w14{width:58.356000px;}
.w1a{width:59.760000px;}
.w2d{width:61.380000px;}
.w23{width:62.856000px;}
.w24{width:63.180000px;}
.w12{width:66.780000px;}
.w2c{width:70.920000px;}
.w29{width:73.476000px;}
.w28{width:73.620000px;}
.w13{width:76.320000px;}
.w27{width:79.596000px;}
.w30{width:86.976000px;}
.wa{width:92.736000px;}
.w21{width:107.676000px;}
.wd{width:114.660000px;}
.w22{width:120.780000px;}
.we{width:125.316000px;}
.w5{width:130.716000px;}
.w6{width:133.200000px;}
.w8{width:134.676000px;}
.wc{width:135.396000px;}
.w15{width:141.156000px;}
.w7{width:141.516000px;}
.w31{width:188.310000px;}
.w26{width:208.830000px;}
.wb{width:240.690000px;}
.w2b{width:276.015000px;}
.w2a{width:505.185000px;}
.w33{width:534.600000px;}
.w32{width:539.280000px;}
.w34{width:539.385000px;}
.w2{width:637.794021px;}
.w0{width:892.912500px;}
.w1{width:893.250000px;}
.w4{width:917.999986px;}
.w3{width:918.000000px;}
.x0{left:0.000000px;}
.x4b{left:4.320000px;}
.x3c{left:6.840000px;}
.x19{left:8.100000px;}
.x46{left:9.360000px;}
.x3f{left:11.160000px;}
.x56{left:12.240000px;}
.x45{left:13.320000px;}
.x57{left:14.430000px;}
.x34{left:15.660000px;}
.x49{left:16.740000px;}
.x2c{left:17.820000px;}
.x2f{left:19.260000px;}
.x5e{left:20.340000px;}
.x35{left:21.420000px;}
.x4a{left:23.265000px;}
.x25{left:25.560000px;}
.x36{left:26.820000px;}
.x53{left:28.980000px;}
.x37{left:30.600000px;}
.x55{left:33.300000px;}
.x2e{left:35.100000px;}
.x32{left:37.800000px;}
.x2b{left:39.270000px;}
.x29{left:41.220000px;}
.x3a{left:42.480000px;}
.x31{left:44.100000px;}
.x38{left:46.305000px;}
.x28{left:50.400000px;}
.x6c{left:53.640000px;}
.x4f{left:58.500000px;}
.x66{left:94.140000px;}
.x26{left:96.300000px;}
.x1{left:102.045000px;}
.x2{left:106.297500px;}
.x4{left:203.484001px;}
.x5{left:216.029986px;}
.x69{left:220.500000px;}
.x6{left:222.689986px;}
.x60{left:227.550000px;}
.x59{left:233.490000px;}
.x1f{left:243.029986px;}
.x8{left:245.729986px;}
.x4d{left:248.790000px;}
.x24{left:250.950000px;}
.xf{left:253.109986px;}
.x7{left:261.749986px;}
.x12{left:266.429986px;}
.x20{left:270.029986px;}
.x5f{left:285.509986px;}
.x15{left:297.974986px;}
.x65{left:315.255000px;}
.xc{left:317.774986px;}
.x39{left:322.454986px;}
.x9{left:328.754986px;}
.x1c{left:332.714986px;}
.x23{left:340.814986px;}
.x1d{left:345.314986px;}
.x18{left:346.755000px;}
.x6b{left:355.754986px;}
.x4e{left:357.195000px;}
.x3b{left:358.635000px;}
.x6a{left:371.130000px;}
.x11{left:372.134986px;}
.x4c{left:373.934986px;}
.x58{left:375.554986px;}
.x17{left:381.314986px;}
.xd{left:383.114986px;}
.x10{left:384.194986px;}
.x13{left:388.514986px;}
.x16{left:392.654986px;}
.x2d{left:401.295000px;}
.x22{left:402.914986px;}
.x68{left:409.215000px;}
.x3d{left:412.275000px;}
.xe{left:427.754986px;}
.x5a{left:443.055000px;}
.xb{left:450.434986px;}
.x14{left:452.594986px;}
.x3{left:454.959000px;}
.x47{left:458.175000px;}
.x2a{left:459.795000px;}
.x3e{left:465.195000px;}
.x1e{left:474.735000px;}
.x50{left:478.695000px;}
.x1a{left:479.955000px;}
.xa{left:486.104986px;}
.x48{left:500.685000px;}
.x61{left:504.285000px;}
.x40{left:507.705000px;}
.x30{left:518.325000px;}
.x5b{left:523.365000px;}
.x51{left:542.265000px;}
.x41{left:555.225000px;}
.x62{left:575.925000px;}
.x27{left:585.825000px;}
.x5c{left:597.705000px;}
.x52{left:609.765000px;}
.x42{left:615.705000px;}
.x1b{left:621.465000px;}
.x63{left:638.025000px;}
.x33{left:662.865000px;}
.x5d{left:665.205000px;}
.x43{left:668.445000px;}
.x54{left:673.845000px;}
.x64{left:693.690000px;}
.x44{left:715.650000px;}
.x21{left:735.809986px;}
.x67{left:756.149986px;}
@media print{
.v4{vertical-align:-64.000000pt;}
.v1{vertical-align:-56.320000pt;}
.v5{vertical-align:-26.880000pt;}
.v2{vertical-align:-5.120000pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:18.560000pt;}
.ls6{letter-spacing:-1.120000pt;}
.ls12{letter-spacing:-1.008000pt;}
.ls11{letter-spacing:-0.544000pt;}
.ls2{letter-spacing:-0.472533pt;}
.ls3{letter-spacing:-0.320000pt;}
.lsc{letter-spacing:-0.094933pt;}
.ls4{letter-spacing:-0.047360pt;}
.ls0{letter-spacing:0.000000pt;}
.ls5{letter-spacing:0.047360pt;}
.ls7{letter-spacing:0.062720pt;}
.ls10{letter-spacing:0.096000pt;}
.lsb{letter-spacing:0.120533pt;}
.lsa{letter-spacing:0.160000pt;}
.ls9{letter-spacing:0.230933pt;}
.ls14{letter-spacing:0.231040pt;}
.lsf{letter-spacing:0.265600pt;}
.ls1{letter-spacing:0.320000pt;}
.lsd{letter-spacing:0.408960pt;}
.lse{letter-spacing:0.515627pt;}
.ls15{letter-spacing:9.120000pt;}
.ls16{letter-spacing:37.072640pt;}
.ls8{letter-spacing:38.992640pt;}
.ls13{letter-spacing:767.680000pt;}
.ws9{word-spacing:-53.120000pt;}
.ws1{word-spacing:-13.600000pt;}
.wse{word-spacing:-13.545600pt;}
.ws8{word-spacing:-13.440000pt;}
.wsc{word-spacing:-13.327360pt;}
.wsb{word-spacing:-13.280000pt;}
.ws6{word-spacing:-13.232640pt;}
.wsa{word-spacing:-13.185067pt;}
.wsd{word-spacing:-12.960000pt;}
.ws4{word-spacing:-11.360000pt;}
.ws3{word-spacing:-11.040000pt;}
.ws2{word-spacing:-10.720000pt;}
.ws5{word-spacing:-10.400000pt;}
.ws7{word-spacing:-8.640000pt;}
.ws0{word-spacing:0.000000pt;}
._6{margin-left:-3.134080pt;}
._5{margin-left:-2.177920pt;}
._1{margin-left:-1.005440pt;}
._0{width:1.009280pt;}
._3{width:2.377387pt;}
._4{width:3.359573pt;}
._9{width:4.462080pt;}
._8{width:5.736960pt;}
._a{width:6.746240pt;}
._c{width:7.914880pt;}
._7{width:8.924160pt;}
._12{width:10.305280pt;}
._11{width:12.005120pt;}
._10{width:14.236160pt;}
._f{width:15.559680pt;}
._d{width:16.839040pt;}
._e{width:18.167040pt;}
._15{width:19.070080pt;}
._16{width:20.132480pt;}
._13{width:21.726080pt;}
._14{width:22.682240pt;}
._18{width:23.740800pt;}
._17{width:25.232000pt;}
._b{width:29.212800pt;}
._19{width:32.881280pt;}
._2{width:428.588587pt;}
.fsa{font-size:34.560000pt;}
.fs4{font-size:37.333333pt;}
.fs8{font-size:42.880000pt;}
.fs9{font-size:45.440000pt;}
.fs6{font-size:48.000000pt;}
.fs5{font-size:53.120000pt;}
.fs3{font-size:53.333333pt;}
.fs1{font-size:56.000000pt;}
.fsb{font-size:56.320000pt;}
.fs0{font-size:64.000000pt;}
.fs2{font-size:74.666667pt;}
.fs7{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.y5f{bottom:2.880000pt;}
.y13b{bottom:4.480000pt;}
.y102{bottom:5.120000pt;}
.yff{bottom:5.280000pt;}
.y142{bottom:5.600000pt;}
.y13d{bottom:5.760000pt;}
.yd2{bottom:5.920000pt;}
.y128{bottom:6.880000pt;}
.y125{bottom:7.200000pt;}
.y1b9{bottom:8.160000pt;}
.y45{bottom:8.320000pt;}
.y100{bottom:8.800000pt;}
.y107{bottom:8.960000pt;}
.y47{bottom:9.120000pt;}
.y48{bottom:9.600000pt;}
.ydf{bottom:10.400000pt;}
.ye2{bottom:10.440000pt;}
.ydd{bottom:10.560000pt;}
.ye0{bottom:11.360000pt;}
.ye3{bottom:11.400000pt;}
.ye5{bottom:11.520000pt;}
.y12c{bottom:14.240000pt;}
.yd4{bottom:16.000000pt;}
.y1b0{bottom:18.240000pt;}
.y1b8{bottom:23.520000pt;}
.y41{bottom:25.280000pt;}
.yd0{bottom:25.760000pt;}
.y44{bottom:28.800000pt;}
.y151{bottom:31.013333pt;}
.y15e{bottom:32.186667pt;}
.y1af{bottom:33.600000pt;}
.y1b7{bottom:38.880000pt;}
.y6{bottom:44.973338pt;}
.y1ae{bottom:48.800000pt;}
.y40{bottom:48.960000pt;}
.y13f{bottom:49.146667pt;}
.y147{bottom:50.560000pt;}
.y43{bottom:51.840000pt;}
.y152{bottom:54.053333pt;}
.y42{bottom:54.240000pt;}
.y15f{bottom:56.000000pt;}
.yfd{bottom:58.880000pt;}
.y109{bottom:58.920000pt;}
.y1ad{bottom:64.160000pt;}
.y5{bottom:67.373337pt;}
.y1b6{bottom:69.920000pt;}
.y153{bottom:77.093333pt;}
.y1ac{bottom:79.520000pt;}
.y160{bottom:79.813333pt;}
.y1b5{bottom:85.920000pt;}
.y4{bottom:89.773337pt;}
.y15a{bottom:90.373333pt;}
.y1ab{bottom:94.880000pt;}
.y167{bottom:96.160000pt;}
.y154{bottom:100.133333pt;}
.y161{bottom:103.613333pt;}
.y1b4{bottom:106.880000pt;}
.y1aa{bottom:110.240000pt;}
.y155{bottom:123.173333pt;}
.y23{bottom:123.790666pt;}
.y1a9{bottom:125.440000pt;}
.y162{bottom:127.386667pt;}
.y1b3{bottom:127.520000pt;}
.y1b2{bottom:142.906667pt;}
.y15c{bottom:143.426667pt;}
.y156{bottom:146.173333pt;}
.y1a8{bottom:146.240000pt;}
.y163{bottom:151.200000pt;}
.y15b{bottom:159.773333pt;}
.y5d{bottom:166.586667pt;}
.y1a7{bottom:166.880000pt;}
.y157{bottom:169.213333pt;}
.y169{bottom:174.720000pt;}
.y164{bottom:175.013333pt;}
.y1a{bottom:175.052000pt;}
.y1a6{bottom:182.266667pt;}
.y5c{bottom:184.986667pt;}
.y22{bottom:186.238666pt;}
.y19{bottom:186.252002pt;}
.y158{bottom:192.253333pt;}
.y168{bottom:194.213333pt;}
.y21{bottom:197.438668pt;}
.y18{bottom:197.452004pt;}
.y1a5{bottom:197.466667pt;}
.y165{bottom:198.813333pt;}
.y5b{bottom:203.386667pt;}
.y20{bottom:208.638670pt;}
.y17{bottom:208.651996pt;}
.y54{bottom:208.666667pt;}
.y1a4{bottom:212.826667pt;}
.y159{bottom:215.293333pt;}
.y5a{bottom:221.786667pt;}
.y166{bottom:222.586667pt;}
.y53{bottom:224.666667pt;}
.y1f{bottom:231.038664pt;}
.y16{bottom:231.052000pt;}
.y1a3{bottom:233.626667pt;}
.y59{bottom:240.186667pt;}
.y52{bottom:240.666667pt;}
.y1e{bottom:242.238666pt;}
.y15{bottom:242.252002pt;}
.y1d{bottom:253.438668pt;}
.y14{bottom:253.451999pt;}
.y1a2{bottom:254.266667pt;}
.y51{bottom:256.666667pt;}
.y58{bottom:258.586667pt;}
.y1a1{bottom:269.466667pt;}
.y50{bottom:272.666667pt;}
.y1c{bottom:275.838667pt;}
.y13{bottom:275.852001pt;}
.y5e{bottom:276.546667pt;}
.y57{bottom:277.026667pt;}
.y1a0{bottom:284.826667pt;}
.y1b{bottom:287.038667pt;}
.y12{bottom:287.052000pt;}
.y4f{bottom:288.706667pt;}
.y89{bottom:294.946667pt;}
.y88{bottom:295.426667pt;}
.y87{bottom:296.386667pt;}
.yc2{bottom:301.026667pt;}
.yae{bottom:301.826667pt;}
.y4e{bottom:304.706667pt;}
.y19f{bottom:305.626667pt;}
.yfa{bottom:305.826667pt;}
.y11{bottom:309.452000pt;}
.y86{bottom:312.386667pt;}
.y123{bottom:314.146667pt;}
.yc1{bottom:317.026667pt;}
.yad{bottom:317.826667pt;}
.ydb{bottom:317.986667pt;}
.y4d{bottom:320.706667pt;}
.y198{bottom:322.626667pt;}
.ya4{bottom:323.106667pt;}
.y146{bottom:324.866667pt;}
.y196{bottom:325.186667pt;}
.y19e{bottom:326.266667pt;}
.yf9{bottom:327.106667pt;}
.y14f{bottom:327.266667pt;}
.y85{bottom:328.386667pt;}
.yc0{bottom:333.026667pt;}
.yac{bottom:333.826667pt;}
.yda{bottom:333.986667pt;}
.y122{bottom:335.426667pt;}
.y4c{bottom:336.706667pt;}
.ya3{bottom:339.106667pt;}
.y195{bottom:341.186667pt;}
.y19d{bottom:341.466667pt;}
.y14e{bottom:342.466667pt;}
.y15d{bottom:342.560000pt;}
.y10{bottom:343.809333pt;}
.y84{bottom:344.386667pt;}
.y14b{bottom:346.626667pt;}
.yf8{bottom:348.386667pt;}
.ybf{bottom:349.026667pt;}
.yab{bottom:349.826667pt;}
.yd9{bottom:349.986667pt;}
.y4b{bottom:352.706667pt;}
.ya2{bottom:355.106667pt;}
.y19c{bottom:356.826667pt;}
.y121{bottom:356.866667pt;}
.y194{bottom:357.186667pt;}
.y83{bottom:360.386667pt;}
.yf{bottom:362.706666pt;}
.ybe{bottom:365.026667pt;}
.yaa{bottom:365.826667pt;}
.yd8{bottom:365.986667pt;}
.y14a{bottom:368.226667pt;}
.yf7{bottom:369.826667pt;}
.ya1{bottom:371.106667pt;}
.y19b{bottom:372.186667pt;}
.y120{bottom:372.866667pt;}
.y4a{bottom:374.146667pt;}
.y82{bottom:376.386667pt;}
.y193{bottom:378.466667pt;}
.ya9{bottom:381.826667pt;}
.ybd{bottom:386.466667pt;}
.ya0{bottom:387.106667pt;}
.yd7{bottom:387.426667pt;}
.y19a{bottom:387.546667pt;}
.y11f{bottom:388.866667pt;}
.y49{bottom:389.826667pt;}
.yf6{bottom:391.106667pt;}
.y81{bottom:392.386667pt;}
.y149{bottom:392.866667pt;}
.y192{bottom:394.466667pt;}
.yb9{bottom:397.826667pt;}
.y46{bottom:402.146667pt;}
.y9f{bottom:403.106667pt;}
.y11e{bottom:404.866667pt;}
.yf5{bottom:407.106667pt;}
.yd6{bottom:407.266667pt;}
.ybc{bottom:407.426667pt;}
.y199{bottom:408.226667pt;}
.y80{bottom:408.386667pt;}
.y191{bottom:410.466667pt;}
.yb8{bottom:413.826667pt;}
.y148{bottom:414.626667pt;}
.y9e{bottom:419.106667pt;}
.y11d{bottom:420.866667pt;}
.y3f{bottom:421.826667pt;}
.yf4{bottom:423.106667pt;}
.ya8{bottom:424.386667pt;}
.ybb{bottom:425.826667pt;}
.yd5{bottom:427.106667pt;}
.y7f{bottom:429.826667pt;}
.ye{bottom:430.990669pt;}
.y190{bottom:431.746667pt;}
.y9d{bottom:435.106667pt;}
.y145{bottom:436.226667pt;}
.y11c{bottom:436.866667pt;}
.yf3{bottom:439.106667pt;}
.y197{bottom:440.386667pt;}
.y7e{bottom:445.826667pt;}
.ycf{bottom:446.946667pt;}
.yd{bottom:446.990669pt;}
.y18f{bottom:447.746667pt;}
.y9c{bottom:451.106667pt;}
.y11b{bottom:452.866667pt;}
.yf2{bottom:455.106667pt;}
.y176{bottom:456.386667pt;}
.y13e{bottom:457.826667pt;}
.y7d{bottom:461.826667pt;}
.yc{bottom:462.990669pt;}
.y18e{bottom:463.746667pt;}
.yd3{bottom:466.786667pt;}
.y9b{bottom:467.106667pt;}
.y11a{bottom:468.866667pt;}
.yf1{bottom:471.106667pt;}
.y175{bottom:472.386667pt;}
.y7c{bottom:477.826667pt;}
.yb{bottom:478.990666pt;}
.y144{bottom:479.586667pt;}
.y9a{bottom:483.106667pt;}
.y119{bottom:484.866667pt;}
.y18d{bottom:485.186667pt;}
.yd1{bottom:486.786667pt;}
.yf0{bottom:487.106667pt;}
.y3e{bottom:489.026667pt;}
.y7b{bottom:493.826667pt;}
.ya{bottom:494.990666pt;}
.y99{bottom:499.133333pt;}
.y118{bottom:500.893333pt;}
.y143{bottom:501.213333pt;}
.yef{bottom:503.133333pt;}
.y3d{bottom:504.413333pt;}
.y7a{bottom:509.853333pt;}
.yb7{bottom:515.133333pt;}
.yee{bottom:519.133333pt;}
.y3c{bottom:519.773333pt;}
.y98{bottom:520.413333pt;}
.y117{bottom:522.173333pt;}
.y18c{bottom:522.493333pt;}
.y141{bottom:522.973333pt;}
.y79{bottom:525.853333pt;}
.yb6{bottom:531.133333pt;}
.y3b{bottom:534.973333pt;}
.yce{bottom:536.413333pt;}
.y110{bottom:538.333333pt;}
.y18b{bottom:538.493333pt;}
.yed{bottom:540.413333pt;}
.y78{bottom:541.853333pt;}
.y140{bottom:544.573333pt;}
.yb5{bottom:547.133333pt;}
.y3a{bottom:550.333333pt;}
.ycd{bottom:552.413333pt;}
.y18a{bottom:554.493333pt;}
.yec{bottom:556.413333pt;}
.y116{bottom:556.573333pt;}
.y77{bottom:557.853333pt;}
.y97{bottom:563.133333pt;}
.y39{bottom:565.693333pt;}
.y13c{bottom:566.173333pt;}
.ycc{bottom:568.413333pt;}
.yeb{bottom:572.413333pt;}
.y9{bottom:573.786667pt;}
.y76{bottom:573.853333pt;}
.y115{bottom:574.973333pt;}
.y189{bottom:575.773333pt;}
.y96{bottom:579.133333pt;}
.y38{bottom:581.053333pt;}
.ycb{bottom:584.413333pt;}
.y13a{bottom:587.933333pt;}
.yea{bottom:588.413333pt;}
.y75{bottom:589.853333pt;}
.y188{bottom:591.773333pt;}
.y8{bottom:592.685334pt;}
.y114{bottom:593.213333pt;}
.y14d{bottom:594.333333pt;}
.y95{bottom:595.133333pt;}
.y37{bottom:596.413333pt;}
.yca{bottom:600.413333pt;}
.ye9{bottom:604.413333pt;}
.ya7{bottom:605.853333pt;}
.y14c{bottom:609.053333pt;}
.y150{bottom:609.280000pt;}
.y74{bottom:611.133333pt;}
.y113{bottom:611.453333pt;}
.y36{bottom:611.773333pt;}
.y187{bottom:613.213333pt;}
.y139{bottom:615.613333pt;}
.yc9{bottom:616.413333pt;}
.ya6{bottom:621.853333pt;}
.ye8{bottom:625.853333pt;}
.y35{bottom:626.973333pt;}
.y73{bottom:627.133333pt;}
.y186{bottom:629.213333pt;}
.y112{bottom:629.853333pt;}
.y138{bottom:631.613333pt;}
.yc8{bottom:632.413333pt;}
.y174{bottom:637.853333pt;}
.y34{bottom:642.333333pt;}
.y72{bottom:643.133333pt;}
.y185{bottom:645.213333pt;}
.y7{bottom:645.598667pt;}
.ye7{bottom:647.293333pt;}
.y137{bottom:647.613333pt;}
.y111{bottom:648.093333pt;}
.yb4{bottom:648.413333pt;}
.yc7{bottom:653.853333pt;}
.y33{bottom:657.693333pt;}
.y71{bottom:659.133333pt;}
.y136{bottom:663.613333pt;}
.y108{bottom:666.493333pt;}
.y3{bottom:668.977329pt;}
.yb3{bottom:669.853333pt;}
.ye6{bottom:670.973333pt;}
.y32{bottom:673.053333pt;}
.y70{bottom:675.133333pt;}
.y135{bottom:679.613333pt;}
.y94{bottom:680.413333pt;}
.y184{bottom:682.493333pt;}
.y10f{bottom:684.733333pt;}
.y170{bottom:685.853333pt;}
.y31{bottom:688.413333pt;}
.y6f{bottom:691.133333pt;}
.ye4{bottom:694.653333pt;}
.y134{bottom:695.613333pt;}
.y93{bottom:696.413333pt;}
.y183{bottom:698.493333pt;}
.y16f{bottom:701.853333pt;}
.y10e{bottom:702.973333pt;}
.y30{bottom:703.773333pt;}
.y6e{bottom:707.133333pt;}
.y133{bottom:711.613333pt;}
.y92{bottom:712.413333pt;}
.y16e{bottom:717.853333pt;}
.ye1{bottom:718.333333pt;}
.y2f{bottom:718.973333pt;}
.y182{bottom:719.773333pt;}
.y10d{bottom:721.413333pt;}
.y6d{bottom:723.173333pt;}
.y132{bottom:727.653333pt;}
.y91{bottom:728.453333pt;}
.y16d{bottom:733.893333pt;}
.y2e{bottom:734.373333pt;}
.y181{bottom:735.813333pt;}
.y6c{bottom:739.173333pt;}
.y10c{bottom:739.653333pt;}
.yde{bottom:742.053333pt;}
.y131{bottom:743.653333pt;}
.y90{bottom:744.453333pt;}
.y2d{bottom:749.733333pt;}
.y16c{bottom:749.893333pt;}
.y6b{bottom:755.173333pt;}
.y180{bottom:757.253333pt;}
.y10b{bottom:757.893333pt;}
.y8f{bottom:760.453333pt;}
.y130{bottom:764.293333pt;}
.y2c{bottom:765.093333pt;}
.ydc{bottom:765.573333pt;}
.y16b{bottom:765.893333pt;}
.y6a{bottom:771.173333pt;}
.y17f{bottom:773.253333pt;}
.y12f{bottom:775.493333pt;}
.y1bb{bottom:775.973333pt;}
.y10a{bottom:776.293333pt;}
.yc6{bottom:776.453333pt;}
.y2{bottom:781.661334pt;}
.y8e{bottom:781.893333pt;}
.y2b{bottom:782.213333pt;}
.y12e{bottom:782.533333pt;}
.y69{bottom:787.173333pt;}
.y17e{bottom:789.253333pt;}
.y1ba{bottom:791.973333pt;}
.yc5{bottom:792.453333pt;}
.yfc{bottom:794.533333pt;}
.y8d{bottom:797.893333pt;}
.y12d{bottom:801.093333pt;}
.y68{bottom:803.173333pt;}
.y1b1{bottom:803.973333pt;}
.y2a{bottom:806.693333pt;}
.ya5{bottom:808.453333pt;}
.y17d{bottom:810.533333pt;}
.y106{bottom:812.773333pt;}
.y8c{bottom:813.893333pt;}
.yb2{bottom:819.173333pt;}
.y12b{bottom:819.493333pt;}
.y67{bottom:824.453333pt;}
.y17c{bottom:826.533333pt;}
.y8b{bottom:829.893333pt;}
.y105{bottom:831.173333pt;}
.y29{bottom:831.333333pt;}
.yb1{bottom:835.173333pt;}
.y12a{bottom:837.733333pt;}
.y173{bottom:840.453333pt;}
.y17b{bottom:842.533333pt;}
.y66{bottom:845.893333pt;}
.y104{bottom:849.413333pt;}
.yba{bottom:851.173333pt;}
.y28{bottom:855.813333pt;}
.y129{bottom:855.973333pt;}
.yb0{bottom:856.453333pt;}
.y1{bottom:859.312000pt;}
.y65{bottom:861.893333pt;}
.y17a{bottom:863.813333pt;}
.y8a{bottom:867.173333pt;}
.y103{bottom:867.813333pt;}
.y172{bottom:872.453333pt;}
.y127{bottom:874.373333pt;}
.yaf{bottom:877.893333pt;}
.y179{bottom:879.813333pt;}
.y27{bottom:880.293333pt;}
.y64{bottom:883.173333pt;}
.y101{bottom:886.053333pt;}
.y171{bottom:888.453333pt;}
.yc4{bottom:893.893333pt;}
.y178{bottom:895.813333pt;}
.y126{bottom:895.973333pt;}
.y63{bottom:899.173333pt;}
.yfe{bottom:904.293333pt;}
.yc3{bottom:909.893333pt;}
.y124{bottom:914.373333pt;}
.y62{bottom:915.173333pt;}
.y177{bottom:916.773333pt;}
.y26{bottom:916.933333pt;}
.yfb{bottom:922.693333pt;}
.y16a{bottom:925.893333pt;}
.y61{bottom:931.173333pt;}
.y25{bottom:932.133333pt;}
.y60{bottom:947.200000pt;}
.y24{bottom:947.520000pt;}
.y56{bottom:977.760000pt;}
.y55{bottom:995.520000pt;}
.h1f{height:15.200000pt;}
.h14{height:15.360000pt;}
.h22{height:17.600000pt;}
.h21{height:17.760000pt;}
.h28{height:17.920000pt;}
.h2a{height:18.560000pt;}
.h18{height:19.072000pt;}
.h1a{height:19.200000pt;}
.h10{height:19.680000pt;}
.h26{height:20.960000pt;}
.h2d{height:20.992000pt;}
.h2b{height:21.120000pt;}
.h25{height:21.920000pt;}
.h1c{height:22.880000pt;}
.h1d{height:22.912000pt;}
.h1b{height:23.040000pt;}
.h2f{height:24.000000pt;}
.h7{height:28.560000pt;}
.h27{height:35.840000pt;}
.h12{height:37.090625pt;}
.h19{height:39.072000pt;}
.h6{height:40.800000pt;}
.hf{height:42.084375pt;}
.h3{height:42.840000pt;}
.he{height:43.215000pt;}
.h11{height:44.596875pt;}
.h36{height:47.085938pt;}
.h29{height:47.109375pt;}
.h2{height:48.960000pt;}
.h15{height:52.108438pt;}
.h9{height:52.134375pt;}
.h34{height:52.461875pt;}
.h1e{height:52.478750pt;}
.ha{height:53.535000pt;}
.h16{height:54.598989pt;}
.h31{height:55.275000pt;}
.h5{height:57.120000pt;}
.h17{height:58.912000pt;}
.h13{height:62.812500pt;}
.hd{height:64.320000pt;}
.hc{height:83.540625pt;}
.hb{height:85.785000pt;}
.h4{height:105.826671pt;}
.h2c{height:107.712000pt;}
.h2e{height:110.720000pt;}
.h24{height:127.360000pt;}
.h23{height:127.392000pt;}
.h20{height:127.520000pt;}
.h35{height:155.386667pt;}
.h30{height:238.720000pt;}
.h32{height:246.720000pt;}
.h33{height:425.986667pt;}
.h8{height:1056.000000pt;}
.h0{height:1122.518667pt;}
.h1{height:1122.666667pt;}
.w9{width:20.192000pt;}
.w18{width:36.992000pt;}
.w1d{width:37.120000pt;}
.w1f{width:37.152000pt;}
.w1e{width:40.160000pt;}
.w1c{width:41.312000pt;}
.w19{width:41.600000pt;}
.w25{width:44.032000pt;}
.w2f{width:45.280000pt;}
.w1b{width:46.240000pt;}
.w17{width:46.400000pt;}
.w16{width:47.040000pt;}
.w20{width:47.840000pt;}
.w2e{width:48.832000pt;}
.wf{width:49.920000pt;}
.w10{width:51.360000pt;}
.w11{width:51.392000pt;}
.w14{width:51.872000pt;}
.w1a{width:53.120000pt;}
.w2d{width:54.560000pt;}
.w23{width:55.872000pt;}
.w24{width:56.160000pt;}
.w12{width:59.360000pt;}
.w2c{width:63.040000pt;}
.w29{width:65.312000pt;}
.w28{width:65.440000pt;}
.w13{width:67.840000pt;}
.w27{width:70.752000pt;}
.w30{width:77.312000pt;}
.wa{width:82.432000pt;}
.w21{width:95.712000pt;}
.wd{width:101.920000pt;}
.w22{width:107.360000pt;}
.we{width:111.392000pt;}
.w5{width:116.192000pt;}
.w6{width:118.400000pt;}
.w8{width:119.712000pt;}
.wc{width:120.352000pt;}
.w15{width:125.472000pt;}
.w7{width:125.792000pt;}
.w31{width:167.386667pt;}
.w26{width:185.626667pt;}
.wb{width:213.946667pt;}
.w2b{width:245.346667pt;}
.w2a{width:449.053333pt;}
.w33{width:475.200000pt;}
.w32{width:479.360000pt;}
.w34{width:479.453333pt;}
.w2{width:566.928019pt;}
.w0{width:793.700000pt;}
.w1{width:794.000000pt;}
.w4{width:815.999988pt;}
.w3{width:816.000000pt;}
.x0{left:0.000000pt;}
.x4b{left:3.840000pt;}
.x3c{left:6.080000pt;}
.x19{left:7.200000pt;}
.x46{left:8.320000pt;}
.x3f{left:9.920000pt;}
.x56{left:10.880000pt;}
.x45{left:11.840000pt;}
.x57{left:12.826667pt;}
.x34{left:13.920000pt;}
.x49{left:14.880000pt;}
.x2c{left:15.840000pt;}
.x2f{left:17.120000pt;}
.x5e{left:18.080000pt;}
.x35{left:19.040000pt;}
.x4a{left:20.680000pt;}
.x25{left:22.720000pt;}
.x36{left:23.840000pt;}
.x53{left:25.760000pt;}
.x37{left:27.200000pt;}
.x55{left:29.600000pt;}
.x2e{left:31.200000pt;}
.x32{left:33.600000pt;}
.x2b{left:34.906667pt;}
.x29{left:36.640000pt;}
.x3a{left:37.760000pt;}
.x31{left:39.200000pt;}
.x38{left:41.160000pt;}
.x28{left:44.800000pt;}
.x6c{left:47.680000pt;}
.x4f{left:52.000000pt;}
.x66{left:83.680000pt;}
.x26{left:85.600000pt;}
.x1{left:90.706667pt;}
.x2{left:94.486667pt;}
.x4{left:180.874667pt;}
.x5{left:192.026655pt;}
.x69{left:196.000000pt;}
.x6{left:197.946655pt;}
.x60{left:202.266667pt;}
.x59{left:207.546667pt;}
.x1f{left:216.026655pt;}
.x8{left:218.426655pt;}
.x4d{left:221.146667pt;}
.x24{left:223.066667pt;}
.xf{left:224.986655pt;}
.x7{left:232.666655pt;}
.x12{left:236.826655pt;}
.x20{left:240.026655pt;}
.x5f{left:253.786655pt;}
.x15{left:264.866655pt;}
.x65{left:280.226667pt;}
.xc{left:282.466655pt;}
.x39{left:286.626655pt;}
.x9{left:292.226655pt;}
.x1c{left:295.746655pt;}
.x23{left:302.946655pt;}
.x1d{left:306.946655pt;}
.x18{left:308.226667pt;}
.x6b{left:316.226655pt;}
.x4e{left:317.506667pt;}
.x3b{left:318.786667pt;}
.x6a{left:329.893333pt;}
.x11{left:330.786655pt;}
.x4c{left:332.386655pt;}
.x58{left:333.826655pt;}
.x17{left:338.946655pt;}
.xd{left:340.546655pt;}
.x10{left:341.506655pt;}
.x13{left:345.346655pt;}
.x16{left:349.026655pt;}
.x2d{left:356.706667pt;}
.x22{left:358.146655pt;}
.x68{left:363.746667pt;}
.x3d{left:366.466667pt;}
.xe{left:380.226655pt;}
.x5a{left:393.826667pt;}
.xb{left:400.386655pt;}
.x14{left:402.306655pt;}
.x3{left:404.408000pt;}
.x47{left:407.266667pt;}
.x2a{left:408.706667pt;}
.x3e{left:413.506667pt;}
.x1e{left:421.986667pt;}
.x50{left:425.506667pt;}
.x1a{left:426.626667pt;}
.xa{left:432.093321pt;}
.x48{left:445.053333pt;}
.x61{left:448.253333pt;}
.x40{left:451.293333pt;}
.x30{left:460.733333pt;}
.x5b{left:465.213333pt;}
.x51{left:482.013333pt;}
.x41{left:493.533333pt;}
.x62{left:511.933333pt;}
.x27{left:520.733333pt;}
.x5c{left:531.293333pt;}
.x52{left:542.013333pt;}
.x42{left:547.293333pt;}
.x1b{left:552.413333pt;}
.x63{left:567.133333pt;}
.x33{left:589.213333pt;}
.x5d{left:591.293333pt;}
.x43{left:594.173333pt;}
.x54{left:598.973333pt;}
.x64{left:616.613333pt;}
.x44{left:636.133333pt;}
.x21{left:654.053321pt;}
.x67{left:672.133321pt;}
}




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