
    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_166363fc70d1790a61f6692a.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.895996;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_d84299e377deb54926f63026.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.700000;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_159fe9e11d3526cde07208b8.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.677734;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_cc399404cb3fd86e3c54343d.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.093262;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_6583b1f6ed9f1feaf15ae045.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.024902;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_4dfd78b3282b7a01f2cdd5bb.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.104004;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_7a6d450d282705fa9b263118.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_a4a2b370fba647ded46de766.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.938477;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_937a2d832e7b222d9f93f2d9.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.692383;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-27.360000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:27.387360px;}
.v3{vertical-align:39.600000px;}
.ls27{letter-spacing:-1.008000px;}
.ls12{letter-spacing:-0.842400px;}
.ls22{letter-spacing:-0.758160px;}
.ls13{letter-spacing:-0.505440px;}
.ls34{letter-spacing:-0.418320px;}
.ls33{letter-spacing:-0.358560px;}
.ls21{letter-spacing:-0.336960px;}
.ls18{letter-spacing:-0.298800px;}
.ls19{letter-spacing:-0.288000px;}
.lsd{letter-spacing:-0.270000px;}
.lsb{letter-spacing:-0.264960px;}
.ls14{letter-spacing:-0.252720px;}
.ls17{letter-spacing:-0.239040px;}
.lse{letter-spacing:-0.216000px;}
.ls1a{letter-spacing:-0.144000px;}
.ls2d{letter-spacing:-0.119520px;}
.lsf{letter-spacing:-0.108000px;}
.ls11{letter-spacing:-0.084240px;}
.ls15{letter-spacing:-0.077760px;}
.ls3b{letter-spacing:-0.072000px;}
.ls1e{letter-spacing:-0.059760px;}
.lsa{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.036000px;}
.ls2c{letter-spacing:0.053280px;}
.ls9{letter-spacing:0.054000px;}
.ls2e{letter-spacing:0.059760px;}
.ls28{letter-spacing:0.072000px;}
.ls6{letter-spacing:0.077760px;}
.ls30{letter-spacing:0.106560px;}
.ls1c{letter-spacing:0.119520px;}
.ls1{letter-spacing:0.132480px;}
.ls4{letter-spacing:0.143208px;}
.ls1f{letter-spacing:0.144000px;}
.lsc{letter-spacing:0.179280px;}
.ls32{letter-spacing:0.180000px;}
.ls37{letter-spacing:0.209160px;}
.ls16{letter-spacing:0.216000px;}
.ls8{letter-spacing:0.239040px;}
.ls31{letter-spacing:0.259920px;}
.ls10{letter-spacing:0.324000px;}
.ls3{letter-spacing:0.336960px;}
.ls1d{letter-spacing:0.358560px;}
.ls5{letter-spacing:0.360000px;}
.ls1b{letter-spacing:0.418320px;}
.ls38{letter-spacing:0.720000px;}
.ls29{letter-spacing:1.440000px;}
.ls7{letter-spacing:1.613520px;}
.ls24{letter-spacing:1.620000px;}
.ls20{letter-spacing:2.160000px;}
.ls26{letter-spacing:2.880000px;}
.ls39{letter-spacing:3.607200px;}
.ls25{letter-spacing:4.320000px;}
.ls23{letter-spacing:7.200000px;}
.ls3a{letter-spacing:11.520000px;}
.ls0{letter-spacing:731.538000px;}
.ls36{letter-spacing:831.059280px;}
.ls35{letter-spacing:946.956960px;}
.ls2f{letter-spacing:1703.716560px;}
.ls2b{letter-spacing:1743.277680px;}
.ls2a{letter-spacing:1772.109360px;}
.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;}
}
.ws6{word-spacing:-28.810080px;}
.ws5{word-spacing:-28.304640px;}
.ws7{word-spacing:-26.593920px;}
.ws28{word-spacing:-23.418720px;}
.ws27{word-spacing:-23.334480px;}
.ws26{word-spacing:-23.081760px;}
.ws3f{word-spacing:-22.660560px;}
.wsb{word-spacing:-20.856240px;}
.ws8{word-spacing:-20.139120px;}
.ws25{word-spacing:-18.144000px;}
.ws3e{word-spacing:-18.072000px;}
.wsc{word-spacing:-18.000000px;}
.ws9{word-spacing:-17.712000px;}
.wsa{word-spacing:-16.560000px;}
.wsd{word-spacing:-15.298560px;}
.ws4d{word-spacing:-15.059520px;}
.ws4e{word-spacing:-14.999760px;}
.ws50{word-spacing:-14.940000px;}
.ws4b{word-spacing:-14.880240px;}
.ws4c{word-spacing:-14.820480px;}
.ws4f{word-spacing:-14.700960px;}
.ws55{word-spacing:-14.521680px;}
.ws1{word-spacing:-13.505760px;}
.ws4{word-spacing:-12.528000px;}
.ws0{word-spacing:-12.204000px;}
.ws3{word-spacing:-11.988000px;}
.ws2{word-spacing:-11.934000px;}
.ws63{word-spacing:-4.320000px;}
.ws62{word-spacing:-4.032000px;}
.ws1a{word-spacing:-3.600000px;}
.ws19{word-spacing:-3.312000px;}
.ws4a{word-spacing:-2.880000px;}
.ws49{word-spacing:-2.592000px;}
.ws3d{word-spacing:-2.304000px;}
.ws36{word-spacing:-2.160000px;}
.ws37{word-spacing:-1.872000px;}
.ws46{word-spacing:-1.584000px;}
.ws2c{word-spacing:-1.440000px;}
.ws5c{word-spacing:-1.152000px;}
.ws22{word-spacing:-0.896400px;}
.ws5e{word-spacing:-0.864000px;}
.ws21{word-spacing:-0.776880px;}
.ws5d{word-spacing:-0.720000px;}
.ws5f{word-spacing:-0.673920px;}
.ws20{word-spacing:-0.478080px;}
.ws1b{word-spacing:-0.432000px;}
.ws15{word-spacing:-0.360000px;}
.ws58{word-spacing:-0.358560px;}
.ws24{word-spacing:-0.179280px;}
.ws35{word-spacing:-0.144000px;}
.ws52{word-spacing:-0.119520px;}
.ws65{word-spacing:-0.072000px;}
.ws56{word-spacing:-0.059760px;}
.wse{word-spacing:0.000000px;}
.ws17{word-spacing:0.059760px;}
.ws16{word-spacing:0.072000px;}
.ws11{word-spacing:0.084240px;}
.ws14{word-spacing:0.155520px;}
.ws10{word-spacing:0.162000px;}
.ws66{word-spacing:0.216000px;}
.ws53{word-spacing:0.239040px;}
.ws13{word-spacing:0.252720px;}
.wsf{word-spacing:0.264960px;}
.ws18{word-spacing:0.288000px;}
.ws5a{word-spacing:0.298800px;}
.ws59{word-spacing:0.358560px;}
.ws54{word-spacing:0.418320px;}
.ws5b{word-spacing:0.576000px;}
.ws32{word-spacing:0.720000px;}
.ws1e{word-spacing:0.776880px;}
.ws12{word-spacing:0.842400px;}
.ws1c{word-spacing:1.008000px;}
.ws3c{word-spacing:1.095120px;}
.ws1f{word-spacing:1.254960px;}
.ws45{word-spacing:1.440000px;}
.ws1d{word-spacing:1.728000px;}
.ws23{word-spacing:1.972080px;}
.ws2a{word-spacing:2.016000px;}
.ws29{word-spacing:2.160000px;}
.ws3a{word-spacing:2.448000px;}
.ws57{word-spacing:2.689200px;}
.ws44{word-spacing:2.880000px;}
.ws2f{word-spacing:3.168000px;}
.ws30{word-spacing:3.456000px;}
.ws31{word-spacing:3.600000px;}
.ws48{word-spacing:3.888000px;}
.ws2b{word-spacing:4.320000px;}
.ws38{word-spacing:4.608000px;}
.ws42{word-spacing:5.040000px;}
.ws51{word-spacing:5.557680px;}
.ws3b{word-spacing:5.760000px;}
.ws2e{word-spacing:6.336000px;}
.ws47{word-spacing:6.480000px;}
.ws2d{word-spacing:6.768000px;}
.ws39{word-spacing:7.200000px;}
.ws43{word-spacing:7.488000px;}
.ws41{word-spacing:7.920000px;}
.ws40{word-spacing:8.208000px;}
.ws34{word-spacing:8.640000px;}
.ws33{word-spacing:8.928000px;}
.ws60{word-spacing:11.520000px;}
.ws61{word-spacing:12.240000px;}
.ws64{word-spacing:259.200000px;}
._4{margin-left:-2.109384px;}
._0{margin-left:-1.063800px;}
._1{width:1.032480px;}
._2{width:2.111040px;}
._6{width:3.306240px;}
._7{width:4.655520px;}
._3{width:181.539000px;}
._8{width:258.912000px;}
._5{width:846.000000px;}
.fc7{color:rgb(255,0,0);}
.fc5{color:rgb(5,99,193);}
.fc6{color:transparent;}
.fc4{color:rgb(118,113,113);}
.fc2{color:rgb(196,89,17);}
.fc8{color:rgb(255,255,255);}
.fc3{color:rgb(68,84,106);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(128,128,128);}
.fs6{font-size:48.240000px;}
.fs0{font-size:54.000000px;}
.fs2{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs4{font-size:72.000000px;}
.fs7{font-size:77.760000px;}
.fs5{font-size:84.240000px;}
.fs8{font-size:95.760000px;}
.fs3{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y9b{bottom:14.760000px;}
.y9d{bottom:14.940000px;}
.y9{bottom:16.020000px;}
.y95{bottom:34.560000px;}
.y98{bottom:34.740000px;}
.y101{bottom:43.740000px;}
.yf3{bottom:54.540000px;}
.yf6{bottom:63.360000px;}
.y7{bottom:79.920000px;}
.y6{bottom:112.680000px;}
.y8{bottom:113.760000px;}
.y5{bottom:145.440000px;}
.y135{bottom:165.417300px;}
.y2e{bottom:166.122000px;}
.y56{bottom:166.860000px;}
.y170{bottom:167.388840px;}
.yb0{bottom:170.820000px;}
.ye5{bottom:172.073700px;}
.y10e{bottom:172.980000px;}
.y2d{bottom:183.766140px;}
.y16f{bottom:184.674420px;}
.y162{bottom:185.040000px;}
.y89{bottom:186.108120px;}
.y55{bottom:187.560000px;}
.ycf{bottom:189.180000px;}
.y134{bottom:190.260000px;}
.y10d{bottom:199.080000px;}
.yaf{bottom:200.520000px;}
.y2c{bottom:201.051720px;}
.y16e{bottom:201.960000px;}
.y88{bottom:203.214420px;}
.ye4{bottom:203.220000px;}
.y54{bottom:208.260000px;}
.y161{bottom:208.800000px;}
.y133{bottom:216.360000px;}
.y2b{bottom:218.337300px;}
.yce{bottom:218.700000px;}
.y10c{bottom:219.780000px;}
.y87{bottom:220.500000px;}
.y16d{bottom:225.000000px;}
.y53{bottom:228.960000px;}
.yae{bottom:230.040000px;}
.y160{bottom:232.740000px;}
.y132{bottom:237.060000px;}
.y7c{bottom:241.920000px;}
.y2a{bottom:243.180000px;}
.y86{bottom:243.540000px;}
.ycd{bottom:248.220000px;}
.y52{bottom:249.660000px;}
.y15f{bottom:256.500000px;}
.y192{bottom:257.400000px;}
.yad{bottom:259.740000px;}
.y29{bottom:269.100000px;}
.y51{bottom:270.360000px;}
.y7b{bottom:274.680000px;}
.ycc{bottom:277.920000px;}
.y15e{bottom:280.260000px;}
.yac{bottom:289.260000px;}
.y28{bottom:289.800000px;}
.y191{bottom:290.160000px;}
.y50{bottom:291.060000px;}
.y7a{bottom:298.620000px;}
.y15d{bottom:304.020000px;}
.ycb{bottom:307.440000px;}
.y190{bottom:313.920000px;}
.yab{bottom:318.780000px;}
.y79{bottom:322.380000px;}
.y15c{bottom:327.960000px;}
.y131{bottom:328.680000px;}
.y4f{bottom:333.366300px;}
.yca{bottom:336.960000px;}
.y18f{bottom:337.860000px;}
.y78{bottom:346.140000px;}
.y27{bottom:348.120000px;}
.yaa{bottom:348.480000px;}
.y130{bottom:349.380000px;}
.y15b{bottom:351.720000px;}
.y10b{bottom:354.780000px;}
.y140{bottom:356.940000px;}
.y4e{bottom:357.480000px;}
.y18e{bottom:361.620000px;}
.yc9{bottom:366.660000px;}
.y12f{bottom:369.360540px;}
.y77{bottom:369.900000px;}
.y26{bottom:372.060000px;}
.y10a{bottom:375.480000px;}
.ya9{bottom:378.000000px;}
.y18d{bottom:385.380000px;}
.y13f{bottom:389.700000px;}
.y76{bottom:393.840000px;}
.y109{bottom:395.459820px;}
.y12e{bottom:395.640000px;}
.y25{bottom:395.820000px;}
.yc8{bottom:396.180000px;}
.y15a{bottom:399.240000px;}
.y4d{bottom:402.120000px;}
.ya8{bottom:407.520000px;}
.y18c{bottom:409.140000px;}
.y13e{bottom:413.460000px;}
.y75{bottom:417.600000px;}
.y12d{bottom:419.400000px;}
.y24{bottom:419.580000px;}
.y108{bottom:421.560000px;}
.y4c{bottom:422.820000px;}
.y159{bottom:423.180000px;}
.yc7{bottom:425.700000px;}
.ya7{bottom:437.220000px;}
.y18b{bottom:442.080000px;}
.y1a7{bottom:443.160000px;}
.y23{bottom:443.340000px;}
.y4b{bottom:443.520000px;}
.y106{bottom:445.320000px;}
.y158{bottom:446.940000px;}
.y12c{bottom:448.920000px;}
.y74{bottom:450.360000px;}
.yc6{bottom:455.400000px;}
.y107{bottom:460.260000px;}
.y13d{bottom:460.980000px;}
.y4a{bottom:464.220000px;}
.y18a{bottom:465.840000px;}
.ya6{bottom:466.740000px;}
.y22{bottom:467.280000px;}
.y157{bottom:470.700000px;}
.y73{bottom:474.120000px;}
.y12b{bottom:478.440000px;}
.ye3{bottom:484.740000px;}
.y49{bottom:484.920000px;}
.y189{bottom:489.600000px;}
.y21{bottom:491.040000px;}
.y156{bottom:491.400000px;}
.y104{bottom:494.820000px;}
.ya5{bottom:496.440000px;}
.y72{bottom:498.060000px;}
.y48{bottom:505.620000px;}
.y12a{bottom:508.140000px;}
.ye2{bottom:508.680000px;}
.y105{bottom:509.580000px;}
.y155{bottom:511.368840px;}
.y188{bottom:513.360000px;}
.yc5{bottom:514.620000px;}
.y20{bottom:514.800000px;}
.y103{bottom:519.480000px;}
.y71{bottom:521.820000px;}
.ya4{bottom:525.960000px;}
.y47{bottom:526.320000px;}
.y154{bottom:528.654420px;}
.ye1{bottom:532.440000px;}
.y187{bottom:537.300000px;}
.y129{bottom:537.660000px;}
.yc4{bottom:544.140000px;}
.y70{bottom:545.580000px;}
.y153{bottom:545.940000px;}
.y46{bottom:547.020000px;}
.y1f{bottom:547.560000px;}
.y13c{bottom:553.140000px;}
.ya3{bottom:555.480000px;}
.ye0{bottom:556.200000px;}
.y102{bottom:559.080000px;}
.y186{bottom:561.060000px;}
.y16c{bottom:565.020000px;}
.y128{bottom:567.360000px;}
.y45{bottom:567.720000px;}
.y6f{bottom:569.340000px;}
.y152{bottom:569.700000px;}
.y13b{bottom:573.103260px;}
.y100{bottom:573.480000px;}
.yc3{bottom:573.660000px;}
.ydf{bottom:579.960000px;}
.y1e{bottom:580.500000px;}
.ya2{bottom:585.180000px;}
.y44{bottom:588.420000px;}
.y16b{bottom:588.780000px;}
.y13a{bottom:590.388840px;}
.y6e{bottom:593.280000px;}
.y185{bottom:593.820000px;}
.y127{bottom:596.880000px;}
.y151{bottom:599.220000px;}
.yde{bottom:600.660000px;}
.yfe{bottom:602.640000px;}
.yc2{bottom:603.360000px;}
.y139{bottom:607.674420px;}
.y43{bottom:609.120000px;}
.y85{bottom:611.640000px;}
.y16a{bottom:612.540000px;}
.y1d{bottom:613.260000px;}
.ya1{bottom:614.700000px;}
.y6d{bottom:617.040000px;}
.yff{bottom:617.400000px;}
.y184{bottom:617.580000px;}
.ydd{bottom:620.634420px;}
.y138{bottom:624.960000px;}
.y126{bottom:626.400000px;}
.y150{bottom:628.740000px;}
.y42{bottom:629.820000px;}
.yc1{bottom:632.880000px;}
.y84{bottom:635.580000px;}
.y169{bottom:636.300000px;}
.y1c{bottom:637.020000px;}
.ydc{bottom:637.920000px;}
.y137{bottom:639.000000px;}
.y6c{bottom:640.800000px;}
.y183{bottom:641.520000px;}
.ya0{bottom:644.220000px;}
.y1a6{bottom:650.340000px;}
.y41{bottom:650.520000px;}
.yfd{bottom:652.140000px;}
.ydb{bottom:652.680000px;}
.y14f{bottom:658.440000px;}
.y83{bottom:659.340000px;}
.y168{bottom:660.240000px;}
.yc0{bottom:662.400000px;}
.y6b{bottom:664.560000px;}
.y1b{bottom:669.780000px;}
.y1a5{bottom:671.040000px;}
.y9f{bottom:673.920000px;}
.y182{bottom:674.280000px;}
.y125{bottom:677.160000px;}
.yfc{bottom:681.660000px;}
.yda{bottom:682.380000px;}
.y82{bottom:683.100000px;}
.y167{bottom:684.000000px;}
.y14e{bottom:687.960000px;}
.y6a{bottom:688.500000px;}
.y1a4{bottom:691.740000px;}
.ybf{bottom:692.100000px;}
.y40{bottom:692.640000px;}
.y11f{bottom:697.140000px;}
.y181{bottom:698.040000px;}
.y1a{bottom:702.000000px;}
.y9e{bottom:703.440000px;}
.y166{bottom:704.700000px;}
.y123{bottom:707.040000px;}
.yfb{bottom:711.180000px;}
.yd9{bottom:711.900000px;}
.y69{bottom:712.260000px;}
.y1a3{bottom:712.440000px;}
.y81{bottom:715.860000px;}
.y11d{bottom:716.940000px;}
.y14d{bottom:717.480000px;}
.y19{bottom:721.440000px;}
.ybe{bottom:721.620000px;}
.y180{bottom:721.800000px;}
.y165{bottom:724.668840px;}
.y122{bottom:726.840000px;}
.y9c{bottom:732.960000px;}
.y1a2{bottom:733.140000px;}
.y80{bottom:735.828840px;}
.y11c{bottom:736.740000px;}
.y3f{bottom:737.280000px;}
.yf5{bottom:740.880000px;}
.yd8{bottom:741.420000px;}
.y164{bottom:741.954420px;}
.y68{bottom:742.500000px;}
.y18{bottom:743.940000px;}
.y17f{bottom:745.740000px;}
.y119{bottom:746.640000px;}
.y14c{bottom:747.180000px;}
.ybd{bottom:751.140000px;}
.y7f{bottom:753.114420px;}
.y1a1{bottom:753.840000px;}
.yf8{bottom:755.640000px;}
.y11b{bottom:756.540000px;}
.y3e{bottom:757.980000px;}
.y163{bottom:759.240000px;}
.y9a{bottom:762.660000px;}
.y17{bottom:766.080000px;}
.y121{bottom:766.440000px;}
.y17e{bottom:769.500000px;}
.yfa{bottom:770.042160px;}
.y7e{bottom:770.400000px;}
.yd7{bottom:771.120000px;}
.y1a0{bottom:774.540000px;}
.y11a{bottom:776.340000px;}
.y14b{bottom:776.700000px;}
.ybc{bottom:780.840000px;}
.yf7{bottom:784.440000px;}
.y120{bottom:786.240000px;}
.y67{bottom:787.140000px;}
.yf9{bottom:789.837660px;}
.y3d{bottom:790.740000px;}
.y97{bottom:792.180000px;}
.y17d{bottom:793.260000px;}
.y7d{bottom:793.440000px;}
.y19f{bottom:795.240000px;}
.y11e{bottom:796.320000px;}
.yd6{bottom:800.640000px;}
.y16{bottom:802.979850px;}
.y14a{bottom:806.400000px;}
.y99{bottom:806.940000px;}
.y66{bottom:807.840000px;}
.ybb{bottom:810.360000px;}
.y3c{bottom:814.680000px;}
.y19e{bottom:815.940000px;}
.y124{bottom:816.120000px;}
.y17c{bottom:817.020000px;}
.yf2{bottom:819.000000px;}
.y15{bottom:822.240000px;}
.y65{bottom:828.540000px;}
.yd5{bottom:830.160000px;}
.yf4{bottom:833.944500px;}
.y149{bottom:835.920000px;}
.y19d{bottom:836.640000px;}
.y3b{bottom:838.440000px;}
.yba{bottom:840.060000px;}
.y17b{bottom:840.780000px;}
.y94{bottom:841.680000px;}
.y14{bottom:844.740000px;}
.y64{bottom:849.240000px;}
.y118{bottom:853.380000px;}
.yf1{bottom:853.740000px;}
.y96{bottom:856.440000px;}
.y19c{bottom:857.340000px;}
.yd4{bottom:859.860000px;}
.y3a{bottom:862.200000px;}
.y148{bottom:865.440000px;}
.y93{bottom:866.340000px;}
.y13{bottom:866.880000px;}
.yb9{bottom:869.580000px;}
.y63{bottom:869.940000px;}
.y17a{bottom:873.720000px;}
.y117{bottom:877.140000px;}
.y19b{bottom:878.040000px;}
.y39{bottom:885.960000px;}
.yf0{bottom:888.300000px;}
.yd3{bottom:889.380000px;}
.y62{bottom:890.640000px;}
.y92{bottom:894.960000px;}
.y147{bottom:895.140000px;}
.y179{bottom:897.480000px;}
.y19a{bottom:898.740000px;}
.yb8{bottom:899.100000px;}
.y116{bottom:900.900000px;}
.y12{bottom:903.600000px;}
.y38{bottom:909.900000px;}
.y61{bottom:911.340000px;}
.yd2{bottom:918.900000px;}
.y199{bottom:919.440000px;}
.y178{bottom:921.240000px;}
.yef{bottom:921.960000px;}
.y11{bottom:922.860000px;}
.y115{bottom:924.660000px;}
.y91{bottom:927.900000px;}
.yb7{bottom:928.800000px;}
.y60{bottom:932.040000px;}
.y37{bottom:933.660000px;}
.y198{bottom:940.140000px;}
.yee{bottom:942.660000px;}
.y177{bottom:945.000000px;}
.y10{bottom:945.540000px;}
.yd1{bottom:948.600000px;}
.y90{bottom:951.660000px;}
.y5f{bottom:952.740000px;}
.y146{bottom:954.180000px;}
.y36{bottom:957.420000px;}
.yb5{bottom:958.320000px;}
.y197{bottom:960.840000px;}
.yed{bottom:963.360000px;}
.yf{bottom:967.680000px;}
.y176{bottom:968.940000px;}
.y114{bottom:972.360000px;}
.yb6{bottom:973.080000px;}
.y5e{bottom:973.440000px;}
.y8f{bottom:975.420000px;}
.yd0{bottom:978.120000px;}
.y35{bottom:981.180000px;}
.y196{bottom:981.540000px;}
.y145{bottom:983.880000px;}
.yec{bottom:984.060000px;}
.y136{bottom:987.120000px;}
.y175{bottom:992.700000px;}
.y5d{bottom:994.140000px;}
.y113{bottom:996.120000px;}
.y8e{bottom:999.180000px;}
.y195{bottom:1002.240000px;}
.yeb{bottom:1004.760000px;}
.y34{bottom:1004.940000px;}
.ye{bottom:1007.820000px;}
.y144{bottom:1013.400000px;}
.y5c{bottom:1014.660000px;}
.y174{bottom:1016.460000px;}
.y112{bottom:1019.880000px;}
.y8d{bottom:1022.940000px;}
.yea{bottom:1025.460000px;}
.y33{bottom:1028.880000px;}
.yd{bottom:1034.284320px;}
.y5b{bottom:1035.360000px;}
.yb4{bottom:1037.340000px;}
.y173{bottom:1040.220000px;}
.y143{bottom:1042.920000px;}
.y111{bottom:1043.640000px;}
.y8c{bottom:1046.880000px;}
.y5a{bottom:1056.060000px;}
.yc{bottom:1058.040000px;}
.ye9{bottom:1058.220000px;}
.y32{bottom:1061.640000px;}
.y172{bottom:1064.160000px;}
.y194{bottom:1064.340000px;}
.yb3{bottom:1066.860000px;}
.y110{bottom:1067.580000px;}
.y8b{bottom:1070.640000px;}
.y142{bottom:1072.620000px;}
.y59{bottom:1076.760000px;}
.ye8{bottom:1081.980000px;}
.y31{bottom:1082.340000px;}
.y193{bottom:1085.040000px;}
.y10f{bottom:1091.340000px;}
.y171{bottom:1094.220000px;}
.y8a{bottom:1094.400000px;}
.yb2{bottom:1096.560000px;}
.y58{bottom:1097.460000px;}
.ye7{bottom:1105.740000px;}
.y141{bottom:1106.100000px;}
.yb{bottom:1108.973160px;}
.y30{bottom:1115.100000px;}
.y57{bottom:1118.160000px;}
.yb1{bottom:1126.080000px;}
.ya{bottom:1134.540000px;}
.ye6{bottom:1135.980000px;}
.y2f{bottom:1138.860000px;}
.y4{bottom:1171.800000px;}
.y3{bottom:1192.149000px;}
.y2{bottom:1208.524500px;}
.y1{bottom:1225.980000px;}
.h19{height:28.800000px;}
.h17{height:28.801500px;}
.h1a{height:28.978500px;}
.h18{height:28.980000px;}
.h5{height:32.758500px;}
.h3{height:38.759766px;}
.hd{height:42.327773px;}
.hf{height:42.894141px;}
.h1e{height:47.988281px;}
.h14{height:48.600000px;}
.h15{height:48.780000px;}
.ha{height:48.905156px;}
.he{height:52.435898px;}
.h13{height:53.077852px;}
.h1d{height:57.780000px;}
.hb{height:58.121719px;}
.h9{height:58.921875px;}
.h10{height:61.329023px;}
.h4{height:63.175781px;}
.h8{height:63.635625px;}
.hc{height:63.949219px;}
.h1b{height:68.580000px;}
.h6{height:68.938594px;}
.h12{height:69.687773px;}
.h11{height:69.690698px;}
.h7{height:69.715133px;}
.h2{height:75.600000px;}
.h1c{height:77.400000px;}
.h16{height:92.035898px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w2{width:38.880000px;}
.w3{width:63.180000px;}
.w9{width:74.160000px;}
.w5{width:84.420000px;}
.wa{width:88.020000px;}
.w8{width:120.240000px;}
.wc{width:126.900000px;}
.we{width:131.220000px;}
.wd{width:133.380000px;}
.wb{width:133.561500px;}
.w6{width:148.318500px;}
.w10{width:170.460000px;}
.w12{width:170.998500px;}
.w11{width:171.000000px;}
.wf{width:171.360000px;}
.w4{width:488.700000px;}
.w7{width:500.398500px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x22{left:8.100000px;}
.x40{left:9.180000px;}
.x2a{left:10.440000px;}
.x1f{left:12.780000px;}
.x36{left:15.480000px;}
.x27{left:17.460000px;}
.x28{left:19.080000px;}
.x24{left:20.340000px;}
.x57{left:22.320000px;}
.x25{left:23.940000px;}
.x29{left:25.740000px;}
.x26{left:27.720000px;}
.x3c{left:30.240000px;}
.x5f{left:32.580000px;}
.x59{left:36.360000px;}
.x63{left:43.020000px;}
.x65{left:53.640000px;}
.x6e{left:56.520000px;}
.x5a{left:59.220000px;}
.x6d{left:60.300000px;}
.x5e{left:61.560000px;}
.x2c{left:62.640000px;}
.x6a{left:63.900000px;}
.x2b{left:66.420000px;}
.x66{left:67.680000px;}
.x69{left:69.660000px;}
.x6c{left:71.460000px;}
.x6b{left:73.800000px;}
.x67{left:77.580000px;}
.x68{left:81.360000px;}
.x3a{left:112.500000px;}
.x3b{left:115.200000px;}
.x3{left:127.620000px;}
.x56{left:132.840000px;}
.x30{left:142.380000px;}
.x6{left:148.680000px;}
.x1{left:152.100000px;}
.x18{left:154.440000px;}
.x8{left:156.960000px;}
.x21{left:159.480000px;}
.x1d{left:167.580000px;}
.x31{left:189.000000px;}
.x58{left:207.900000px;}
.x62{left:221.220000px;}
.x44{left:225.900000px;}
.x43{left:226.980000px;}
.x3f{left:229.680000px;}
.x37{left:235.080000px;}
.x45{left:241.740000px;}
.x41{left:251.636940px;}
.x3e{left:265.680000px;}
.x33{left:276.120000px;}
.x4{left:297.180000px;}
.x46{left:315.360000px;}
.x2d{left:320.047200px;}
.x47{left:321.300000px;}
.x1c{left:335.345760px;}
.x48{left:341.640000px;}
.x16{left:343.620000px;}
.x61{left:352.437120px;}
.x3d{left:363.420000px;}
.x71{left:366.301440px;}
.x2f{left:368.276940px;}
.x9{left:371.713680px;}
.x6f{left:374.936760px;}
.x19{left:386.637480px;}
.x38{left:392.580000px;}
.x7{left:429.136020px;}
.x5b{left:430.920000px;}
.x4a{left:450.180000px;}
.x4c{left:452.880000px;}
.x4b{left:456.120000px;}
.x49{left:460.440000px;}
.x4d{left:462.060000px;}
.x5{left:466.740000px;}
.x14{left:476.100000px;}
.x42{left:478.260000px;}
.x1a{left:491.755320px;}
.x2{left:532.620000px;}
.xb{left:546.480000px;}
.xf{left:552.420000px;}
.x15{left:556.020000px;}
.x5c{left:558.540000px;}
.x64{left:564.480000px;}
.x11{left:570.060000px;}
.x4f{left:574.920000px;}
.xd{left:576.540000px;}
.x4e{left:579.060000px;}
.x50{left:611.820000px;}
.x32{left:643.140000px;}
.x23{left:648.900000px;}
.xe{left:653.580000px;}
.x12{left:659.700000px;}
.x34{left:665.280000px;}
.x39{left:666.893340px;}
.xc{left:683.100000px;}
.x35{left:687.958920px;}
.x10{left:689.580000px;}
.x5d{left:692.640000px;}
.x13{left:702.540000px;}
.x2e{left:704.700000px;}
.x51{left:709.020000px;}
.x54{left:710.820000px;}
.x53{left:712.980000px;}
.x55{left:714.420000px;}
.x52{left:715.680000px;}
.x1e{left:734.040000px;}
.x20{left:743.760000px;}
.x70{left:753.840000px;}
.x60{left:771.300000px;}
.x1b{left:778.680000px;}
.x17{left:801.180000px;}
.xa{left:829.080000px;}
@media print{
.v2{vertical-align:-24.320000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:24.344320pt;}
.v3{vertical-align:35.200000pt;}
.ls27{letter-spacing:-0.896000pt;}
.ls12{letter-spacing:-0.748800pt;}
.ls22{letter-spacing:-0.673920pt;}
.ls13{letter-spacing:-0.449280pt;}
.ls34{letter-spacing:-0.371840pt;}
.ls33{letter-spacing:-0.318720pt;}
.ls21{letter-spacing:-0.299520pt;}
.ls18{letter-spacing:-0.265600pt;}
.ls19{letter-spacing:-0.256000pt;}
.lsd{letter-spacing:-0.240000pt;}
.lsb{letter-spacing:-0.235520pt;}
.ls14{letter-spacing:-0.224640pt;}
.ls17{letter-spacing:-0.212480pt;}
.lse{letter-spacing:-0.192000pt;}
.ls1a{letter-spacing:-0.128000pt;}
.ls2d{letter-spacing:-0.106240pt;}
.lsf{letter-spacing:-0.096000pt;}
.ls11{letter-spacing:-0.074880pt;}
.ls15{letter-spacing:-0.069120pt;}
.ls3b{letter-spacing:-0.064000pt;}
.ls1e{letter-spacing:-0.053120pt;}
.lsa{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.032000pt;}
.ls2c{letter-spacing:0.047360pt;}
.ls9{letter-spacing:0.048000pt;}
.ls2e{letter-spacing:0.053120pt;}
.ls28{letter-spacing:0.064000pt;}
.ls6{letter-spacing:0.069120pt;}
.ls30{letter-spacing:0.094720pt;}
.ls1c{letter-spacing:0.106240pt;}
.ls1{letter-spacing:0.117760pt;}
.ls4{letter-spacing:0.127296pt;}
.ls1f{letter-spacing:0.128000pt;}
.lsc{letter-spacing:0.159360pt;}
.ls32{letter-spacing:0.160000pt;}
.ls37{letter-spacing:0.185920pt;}
.ls16{letter-spacing:0.192000pt;}
.ls8{letter-spacing:0.212480pt;}
.ls31{letter-spacing:0.231040pt;}
.ls10{letter-spacing:0.288000pt;}
.ls3{letter-spacing:0.299520pt;}
.ls1d{letter-spacing:0.318720pt;}
.ls5{letter-spacing:0.320000pt;}
.ls1b{letter-spacing:0.371840pt;}
.ls38{letter-spacing:0.640000pt;}
.ls29{letter-spacing:1.280000pt;}
.ls7{letter-spacing:1.434240pt;}
.ls24{letter-spacing:1.440000pt;}
.ls20{letter-spacing:1.920000pt;}
.ls26{letter-spacing:2.560000pt;}
.ls39{letter-spacing:3.206400pt;}
.ls25{letter-spacing:3.840000pt;}
.ls23{letter-spacing:6.400000pt;}
.ls3a{letter-spacing:10.240000pt;}
.ls0{letter-spacing:650.256000pt;}
.ls36{letter-spacing:738.719360pt;}
.ls35{letter-spacing:841.739520pt;}
.ls2f{letter-spacing:1514.414720pt;}
.ls2b{letter-spacing:1549.580160pt;}
.ls2a{letter-spacing:1575.208320pt;}
.ws6{word-spacing:-25.608960pt;}
.ws5{word-spacing:-25.159680pt;}
.ws7{word-spacing:-23.639040pt;}
.ws28{word-spacing:-20.816640pt;}
.ws27{word-spacing:-20.741760pt;}
.ws26{word-spacing:-20.517120pt;}
.ws3f{word-spacing:-20.142720pt;}
.wsb{word-spacing:-18.538880pt;}
.ws8{word-spacing:-17.901440pt;}
.ws25{word-spacing:-16.128000pt;}
.ws3e{word-spacing:-16.064000pt;}
.wsc{word-spacing:-16.000000pt;}
.ws9{word-spacing:-15.744000pt;}
.wsa{word-spacing:-14.720000pt;}
.wsd{word-spacing:-13.598720pt;}
.ws4d{word-spacing:-13.386240pt;}
.ws4e{word-spacing:-13.333120pt;}
.ws50{word-spacing:-13.280000pt;}
.ws4b{word-spacing:-13.226880pt;}
.ws4c{word-spacing:-13.173760pt;}
.ws4f{word-spacing:-13.067520pt;}
.ws55{word-spacing:-12.908160pt;}
.ws1{word-spacing:-12.005120pt;}
.ws4{word-spacing:-11.136000pt;}
.ws0{word-spacing:-10.848000pt;}
.ws3{word-spacing:-10.656000pt;}
.ws2{word-spacing:-10.608000pt;}
.ws63{word-spacing:-3.840000pt;}
.ws62{word-spacing:-3.584000pt;}
.ws1a{word-spacing:-3.200000pt;}
.ws19{word-spacing:-2.944000pt;}
.ws4a{word-spacing:-2.560000pt;}
.ws49{word-spacing:-2.304000pt;}
.ws3d{word-spacing:-2.048000pt;}
.ws36{word-spacing:-1.920000pt;}
.ws37{word-spacing:-1.664000pt;}
.ws46{word-spacing:-1.408000pt;}
.ws2c{word-spacing:-1.280000pt;}
.ws5c{word-spacing:-1.024000pt;}
.ws22{word-spacing:-0.796800pt;}
.ws5e{word-spacing:-0.768000pt;}
.ws21{word-spacing:-0.690560pt;}
.ws5d{word-spacing:-0.640000pt;}
.ws5f{word-spacing:-0.599040pt;}
.ws20{word-spacing:-0.424960pt;}
.ws1b{word-spacing:-0.384000pt;}
.ws15{word-spacing:-0.320000pt;}
.ws58{word-spacing:-0.318720pt;}
.ws24{word-spacing:-0.159360pt;}
.ws35{word-spacing:-0.128000pt;}
.ws52{word-spacing:-0.106240pt;}
.ws65{word-spacing:-0.064000pt;}
.ws56{word-spacing:-0.053120pt;}
.wse{word-spacing:0.000000pt;}
.ws17{word-spacing:0.053120pt;}
.ws16{word-spacing:0.064000pt;}
.ws11{word-spacing:0.074880pt;}
.ws14{word-spacing:0.138240pt;}
.ws10{word-spacing:0.144000pt;}
.ws66{word-spacing:0.192000pt;}
.ws53{word-spacing:0.212480pt;}
.ws13{word-spacing:0.224640pt;}
.wsf{word-spacing:0.235520pt;}
.ws18{word-spacing:0.256000pt;}
.ws5a{word-spacing:0.265600pt;}
.ws59{word-spacing:0.318720pt;}
.ws54{word-spacing:0.371840pt;}
.ws5b{word-spacing:0.512000pt;}
.ws32{word-spacing:0.640000pt;}
.ws1e{word-spacing:0.690560pt;}
.ws12{word-spacing:0.748800pt;}
.ws1c{word-spacing:0.896000pt;}
.ws3c{word-spacing:0.973440pt;}
.ws1f{word-spacing:1.115520pt;}
.ws45{word-spacing:1.280000pt;}
.ws1d{word-spacing:1.536000pt;}
.ws23{word-spacing:1.752960pt;}
.ws2a{word-spacing:1.792000pt;}
.ws29{word-spacing:1.920000pt;}
.ws3a{word-spacing:2.176000pt;}
.ws57{word-spacing:2.390400pt;}
.ws44{word-spacing:2.560000pt;}
.ws2f{word-spacing:2.816000pt;}
.ws30{word-spacing:3.072000pt;}
.ws31{word-spacing:3.200000pt;}
.ws48{word-spacing:3.456000pt;}
.ws2b{word-spacing:3.840000pt;}
.ws38{word-spacing:4.096000pt;}
.ws42{word-spacing:4.480000pt;}
.ws51{word-spacing:4.940160pt;}
.ws3b{word-spacing:5.120000pt;}
.ws2e{word-spacing:5.632000pt;}
.ws47{word-spacing:5.760000pt;}
.ws2d{word-spacing:6.016000pt;}
.ws39{word-spacing:6.400000pt;}
.ws43{word-spacing:6.656000pt;}
.ws41{word-spacing:7.040000pt;}
.ws40{word-spacing:7.296000pt;}
.ws34{word-spacing:7.680000pt;}
.ws33{word-spacing:7.936000pt;}
.ws60{word-spacing:10.240000pt;}
.ws61{word-spacing:10.880000pt;}
.ws64{word-spacing:230.400000pt;}
._4{margin-left:-1.875008pt;}
._0{margin-left:-0.945600pt;}
._1{width:0.917760pt;}
._2{width:1.876480pt;}
._6{width:2.938880pt;}
._7{width:4.138240pt;}
._3{width:161.368000pt;}
._8{width:230.144000pt;}
._5{width:752.000000pt;}
.fs6{font-size:42.880000pt;}
.fs0{font-size:48.000000pt;}
.fs2{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs4{font-size:64.000000pt;}
.fs7{font-size:69.120000pt;}
.fs5{font-size:74.880000pt;}
.fs8{font-size:85.120000pt;}
.fs3{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y9b{bottom:13.120000pt;}
.y9d{bottom:13.280000pt;}
.y9{bottom:14.240000pt;}
.y95{bottom:30.720000pt;}
.y98{bottom:30.880000pt;}
.y101{bottom:38.880000pt;}
.yf3{bottom:48.480000pt;}
.yf6{bottom:56.320000pt;}
.y7{bottom:71.040000pt;}
.y6{bottom:100.160000pt;}
.y8{bottom:101.120000pt;}
.y5{bottom:129.280000pt;}
.y135{bottom:147.037600pt;}
.y2e{bottom:147.664000pt;}
.y56{bottom:148.320000pt;}
.y170{bottom:148.790080pt;}
.yb0{bottom:151.840000pt;}
.ye5{bottom:152.954400pt;}
.y10e{bottom:153.760000pt;}
.y2d{bottom:163.347680pt;}
.y16f{bottom:164.155040pt;}
.y162{bottom:164.480000pt;}
.y89{bottom:165.429440pt;}
.y55{bottom:166.720000pt;}
.ycf{bottom:168.160000pt;}
.y134{bottom:169.120000pt;}
.y10d{bottom:176.960000pt;}
.yaf{bottom:178.240000pt;}
.y2c{bottom:178.712640pt;}
.y16e{bottom:179.520000pt;}
.y88{bottom:180.635040pt;}
.ye4{bottom:180.640000pt;}
.y54{bottom:185.120000pt;}
.y161{bottom:185.600000pt;}
.y133{bottom:192.320000pt;}
.y2b{bottom:194.077600pt;}
.yce{bottom:194.400000pt;}
.y10c{bottom:195.360000pt;}
.y87{bottom:196.000000pt;}
.y16d{bottom:200.000000pt;}
.y53{bottom:203.520000pt;}
.yae{bottom:204.480000pt;}
.y160{bottom:206.880000pt;}
.y132{bottom:210.720000pt;}
.y7c{bottom:215.040000pt;}
.y2a{bottom:216.160000pt;}
.y86{bottom:216.480000pt;}
.ycd{bottom:220.640000pt;}
.y52{bottom:221.920000pt;}
.y15f{bottom:228.000000pt;}
.y192{bottom:228.800000pt;}
.yad{bottom:230.880000pt;}
.y29{bottom:239.200000pt;}
.y51{bottom:240.320000pt;}
.y7b{bottom:244.160000pt;}
.ycc{bottom:247.040000pt;}
.y15e{bottom:249.120000pt;}
.yac{bottom:257.120000pt;}
.y28{bottom:257.600000pt;}
.y191{bottom:257.920000pt;}
.y50{bottom:258.720000pt;}
.y7a{bottom:265.440000pt;}
.y15d{bottom:270.240000pt;}
.ycb{bottom:273.280000pt;}
.y190{bottom:279.040000pt;}
.yab{bottom:283.360000pt;}
.y79{bottom:286.560000pt;}
.y15c{bottom:291.520000pt;}
.y131{bottom:292.160000pt;}
.y4f{bottom:296.325600pt;}
.yca{bottom:299.520000pt;}
.y18f{bottom:300.320000pt;}
.y78{bottom:307.680000pt;}
.y27{bottom:309.440000pt;}
.yaa{bottom:309.760000pt;}
.y130{bottom:310.560000pt;}
.y15b{bottom:312.640000pt;}
.y10b{bottom:315.360000pt;}
.y140{bottom:317.280000pt;}
.y4e{bottom:317.760000pt;}
.y18e{bottom:321.440000pt;}
.yc9{bottom:325.920000pt;}
.y12f{bottom:328.320480pt;}
.y77{bottom:328.800000pt;}
.y26{bottom:330.720000pt;}
.y10a{bottom:333.760000pt;}
.ya9{bottom:336.000000pt;}
.y18d{bottom:342.560000pt;}
.y13f{bottom:346.400000pt;}
.y76{bottom:350.080000pt;}
.y109{bottom:351.519840pt;}
.y12e{bottom:351.680000pt;}
.y25{bottom:351.840000pt;}
.yc8{bottom:352.160000pt;}
.y15a{bottom:354.880000pt;}
.y4d{bottom:357.440000pt;}
.ya8{bottom:362.240000pt;}
.y18c{bottom:363.680000pt;}
.y13e{bottom:367.520000pt;}
.y75{bottom:371.200000pt;}
.y12d{bottom:372.800000pt;}
.y24{bottom:372.960000pt;}
.y108{bottom:374.720000pt;}
.y4c{bottom:375.840000pt;}
.y159{bottom:376.160000pt;}
.yc7{bottom:378.400000pt;}
.ya7{bottom:388.640000pt;}
.y18b{bottom:392.960000pt;}
.y1a7{bottom:393.920000pt;}
.y23{bottom:394.080000pt;}
.y4b{bottom:394.240000pt;}
.y106{bottom:395.840000pt;}
.y158{bottom:397.280000pt;}
.y12c{bottom:399.040000pt;}
.y74{bottom:400.320000pt;}
.yc6{bottom:404.800000pt;}
.y107{bottom:409.120000pt;}
.y13d{bottom:409.760000pt;}
.y4a{bottom:412.640000pt;}
.y18a{bottom:414.080000pt;}
.ya6{bottom:414.880000pt;}
.y22{bottom:415.360000pt;}
.y157{bottom:418.400000pt;}
.y73{bottom:421.440000pt;}
.y12b{bottom:425.280000pt;}
.ye3{bottom:430.880000pt;}
.y49{bottom:431.040000pt;}
.y189{bottom:435.200000pt;}
.y21{bottom:436.480000pt;}
.y156{bottom:436.800000pt;}
.y104{bottom:439.840000pt;}
.ya5{bottom:441.280000pt;}
.y72{bottom:442.720000pt;}
.y48{bottom:449.440000pt;}
.y12a{bottom:451.680000pt;}
.ye2{bottom:452.160000pt;}
.y105{bottom:452.960000pt;}
.y155{bottom:454.550080pt;}
.y188{bottom:456.320000pt;}
.yc5{bottom:457.440000pt;}
.y20{bottom:457.600000pt;}
.y103{bottom:461.760000pt;}
.y71{bottom:463.840000pt;}
.ya4{bottom:467.520000pt;}
.y47{bottom:467.840000pt;}
.y154{bottom:469.915040pt;}
.ye1{bottom:473.280000pt;}
.y187{bottom:477.600000pt;}
.y129{bottom:477.920000pt;}
.yc4{bottom:483.680000pt;}
.y70{bottom:484.960000pt;}
.y153{bottom:485.280000pt;}
.y46{bottom:486.240000pt;}
.y1f{bottom:486.720000pt;}
.y13c{bottom:491.680000pt;}
.ya3{bottom:493.760000pt;}
.ye0{bottom:494.400000pt;}
.y102{bottom:496.960000pt;}
.y186{bottom:498.720000pt;}
.y16c{bottom:502.240000pt;}
.y128{bottom:504.320000pt;}
.y45{bottom:504.640000pt;}
.y6f{bottom:506.080000pt;}
.y152{bottom:506.400000pt;}
.y13b{bottom:509.425120pt;}
.y100{bottom:509.760000pt;}
.yc3{bottom:509.920000pt;}
.ydf{bottom:515.520000pt;}
.y1e{bottom:516.000000pt;}
.ya2{bottom:520.160000pt;}
.y44{bottom:523.040000pt;}
.y16b{bottom:523.360000pt;}
.y13a{bottom:524.790080pt;}
.y6e{bottom:527.360000pt;}
.y185{bottom:527.840000pt;}
.y127{bottom:530.560000pt;}
.y151{bottom:532.640000pt;}
.yde{bottom:533.920000pt;}
.yfe{bottom:535.680000pt;}
.yc2{bottom:536.320000pt;}
.y139{bottom:540.155040pt;}
.y43{bottom:541.440000pt;}
.y85{bottom:543.680000pt;}
.y16a{bottom:544.480000pt;}
.y1d{bottom:545.120000pt;}
.ya1{bottom:546.400000pt;}
.y6d{bottom:548.480000pt;}
.yff{bottom:548.800000pt;}
.y184{bottom:548.960000pt;}
.ydd{bottom:551.675040pt;}
.y138{bottom:555.520000pt;}
.y126{bottom:556.800000pt;}
.y150{bottom:558.880000pt;}
.y42{bottom:559.840000pt;}
.yc1{bottom:562.560000pt;}
.y84{bottom:564.960000pt;}
.y169{bottom:565.600000pt;}
.y1c{bottom:566.240000pt;}
.ydc{bottom:567.040000pt;}
.y137{bottom:568.000000pt;}
.y6c{bottom:569.600000pt;}
.y183{bottom:570.240000pt;}
.ya0{bottom:572.640000pt;}
.y1a6{bottom:578.080000pt;}
.y41{bottom:578.240000pt;}
.yfd{bottom:579.680000pt;}
.ydb{bottom:580.160000pt;}
.y14f{bottom:585.280000pt;}
.y83{bottom:586.080000pt;}
.y168{bottom:586.880000pt;}
.yc0{bottom:588.800000pt;}
.y6b{bottom:590.720000pt;}
.y1b{bottom:595.360000pt;}
.y1a5{bottom:596.480000pt;}
.y9f{bottom:599.040000pt;}
.y182{bottom:599.360000pt;}
.y125{bottom:601.920000pt;}
.yfc{bottom:605.920000pt;}
.yda{bottom:606.560000pt;}
.y82{bottom:607.200000pt;}
.y167{bottom:608.000000pt;}
.y14e{bottom:611.520000pt;}
.y6a{bottom:612.000000pt;}
.y1a4{bottom:614.880000pt;}
.ybf{bottom:615.200000pt;}
.y40{bottom:615.680000pt;}
.y11f{bottom:619.680000pt;}
.y181{bottom:620.480000pt;}
.y1a{bottom:624.000000pt;}
.y9e{bottom:625.280000pt;}
.y166{bottom:626.400000pt;}
.y123{bottom:628.480000pt;}
.yfb{bottom:632.160000pt;}
.yd9{bottom:632.800000pt;}
.y69{bottom:633.120000pt;}
.y1a3{bottom:633.280000pt;}
.y81{bottom:636.320000pt;}
.y11d{bottom:637.280000pt;}
.y14d{bottom:637.760000pt;}
.y19{bottom:641.280000pt;}
.ybe{bottom:641.440000pt;}
.y180{bottom:641.600000pt;}
.y165{bottom:644.150080pt;}
.y122{bottom:646.080000pt;}
.y9c{bottom:651.520000pt;}
.y1a2{bottom:651.680000pt;}
.y80{bottom:654.070080pt;}
.y11c{bottom:654.880000pt;}
.y3f{bottom:655.360000pt;}
.yf5{bottom:658.560000pt;}
.yd8{bottom:659.040000pt;}
.y164{bottom:659.515040pt;}
.y68{bottom:660.000000pt;}
.y18{bottom:661.280000pt;}
.y17f{bottom:662.880000pt;}
.y119{bottom:663.680000pt;}
.y14c{bottom:664.160000pt;}
.ybd{bottom:667.680000pt;}
.y7f{bottom:669.435040pt;}
.y1a1{bottom:670.080000pt;}
.yf8{bottom:671.680000pt;}
.y11b{bottom:672.480000pt;}
.y3e{bottom:673.760000pt;}
.y163{bottom:674.880000pt;}
.y9a{bottom:677.920000pt;}
.y17{bottom:680.960000pt;}
.y121{bottom:681.280000pt;}
.y17e{bottom:684.000000pt;}
.yfa{bottom:684.481920pt;}
.y7e{bottom:684.800000pt;}
.yd7{bottom:685.440000pt;}
.y1a0{bottom:688.480000pt;}
.y11a{bottom:690.080000pt;}
.y14b{bottom:690.400000pt;}
.ybc{bottom:694.080000pt;}
.yf7{bottom:697.280000pt;}
.y120{bottom:698.880000pt;}
.y67{bottom:699.680000pt;}
.yf9{bottom:702.077920pt;}
.y3d{bottom:702.880000pt;}
.y97{bottom:704.160000pt;}
.y17d{bottom:705.120000pt;}
.y7d{bottom:705.280000pt;}
.y19f{bottom:706.880000pt;}
.y11e{bottom:707.840000pt;}
.yd6{bottom:711.680000pt;}
.y16{bottom:713.759867pt;}
.y14a{bottom:716.800000pt;}
.y99{bottom:717.280000pt;}
.y66{bottom:718.080000pt;}
.ybb{bottom:720.320000pt;}
.y3c{bottom:724.160000pt;}
.y19e{bottom:725.280000pt;}
.y124{bottom:725.440000pt;}
.y17c{bottom:726.240000pt;}
.yf2{bottom:728.000000pt;}
.y15{bottom:730.880000pt;}
.y65{bottom:736.480000pt;}
.yd5{bottom:737.920000pt;}
.yf4{bottom:741.284000pt;}
.y149{bottom:743.040000pt;}
.y19d{bottom:743.680000pt;}
.y3b{bottom:745.280000pt;}
.yba{bottom:746.720000pt;}
.y17b{bottom:747.360000pt;}
.y94{bottom:748.160000pt;}
.y14{bottom:750.880000pt;}
.y64{bottom:754.880000pt;}
.y118{bottom:758.560000pt;}
.yf1{bottom:758.880000pt;}
.y96{bottom:761.280000pt;}
.y19c{bottom:762.080000pt;}
.yd4{bottom:764.320000pt;}
.y3a{bottom:766.400000pt;}
.y148{bottom:769.280000pt;}
.y93{bottom:770.080000pt;}
.y13{bottom:770.560000pt;}
.yb9{bottom:772.960000pt;}
.y63{bottom:773.280000pt;}
.y17a{bottom:776.640000pt;}
.y117{bottom:779.680000pt;}
.y19b{bottom:780.480000pt;}
.y39{bottom:787.520000pt;}
.yf0{bottom:789.600000pt;}
.yd3{bottom:790.560000pt;}
.y62{bottom:791.680000pt;}
.y92{bottom:795.520000pt;}
.y147{bottom:795.680000pt;}
.y179{bottom:797.760000pt;}
.y19a{bottom:798.880000pt;}
.yb8{bottom:799.200000pt;}
.y116{bottom:800.800000pt;}
.y12{bottom:803.200000pt;}
.y38{bottom:808.800000pt;}
.y61{bottom:810.080000pt;}
.yd2{bottom:816.800000pt;}
.y199{bottom:817.280000pt;}
.y178{bottom:818.880000pt;}
.yef{bottom:819.520000pt;}
.y11{bottom:820.320000pt;}
.y115{bottom:821.920000pt;}
.y91{bottom:824.800000pt;}
.yb7{bottom:825.600000pt;}
.y60{bottom:828.480000pt;}
.y37{bottom:829.920000pt;}
.y198{bottom:835.680000pt;}
.yee{bottom:837.920000pt;}
.y177{bottom:840.000000pt;}
.y10{bottom:840.480000pt;}
.yd1{bottom:843.200000pt;}
.y90{bottom:845.920000pt;}
.y5f{bottom:846.880000pt;}
.y146{bottom:848.160000pt;}
.y36{bottom:851.040000pt;}
.yb5{bottom:851.840000pt;}
.y197{bottom:854.080000pt;}
.yed{bottom:856.320000pt;}
.yf{bottom:860.160000pt;}
.y176{bottom:861.280000pt;}
.y114{bottom:864.320000pt;}
.yb6{bottom:864.960000pt;}
.y5e{bottom:865.280000pt;}
.y8f{bottom:867.040000pt;}
.yd0{bottom:869.440000pt;}
.y35{bottom:872.160000pt;}
.y196{bottom:872.480000pt;}
.y145{bottom:874.560000pt;}
.yec{bottom:874.720000pt;}
.y136{bottom:877.440000pt;}
.y175{bottom:882.400000pt;}
.y5d{bottom:883.680000pt;}
.y113{bottom:885.440000pt;}
.y8e{bottom:888.160000pt;}
.y195{bottom:890.880000pt;}
.yeb{bottom:893.120000pt;}
.y34{bottom:893.280000pt;}
.ye{bottom:895.840000pt;}
.y144{bottom:900.800000pt;}
.y5c{bottom:901.920000pt;}
.y174{bottom:903.520000pt;}
.y112{bottom:906.560000pt;}
.y8d{bottom:909.280000pt;}
.yea{bottom:911.520000pt;}
.y33{bottom:914.560000pt;}
.yd{bottom:919.363840pt;}
.y5b{bottom:920.320000pt;}
.yb4{bottom:922.080000pt;}
.y173{bottom:924.640000pt;}
.y143{bottom:927.040000pt;}
.y111{bottom:927.680000pt;}
.y8c{bottom:930.560000pt;}
.y5a{bottom:938.720000pt;}
.yc{bottom:940.480000pt;}
.ye9{bottom:940.640000pt;}
.y32{bottom:943.680000pt;}
.y172{bottom:945.920000pt;}
.y194{bottom:946.080000pt;}
.yb3{bottom:948.320000pt;}
.y110{bottom:948.960000pt;}
.y8b{bottom:951.680000pt;}
.y142{bottom:953.440000pt;}
.y59{bottom:957.120000pt;}
.ye8{bottom:961.760000pt;}
.y31{bottom:962.080000pt;}
.y193{bottom:964.480000pt;}
.y10f{bottom:970.080000pt;}
.y171{bottom:972.640000pt;}
.y8a{bottom:972.800000pt;}
.yb2{bottom:974.720000pt;}
.y58{bottom:975.520000pt;}
.ye7{bottom:982.880000pt;}
.y141{bottom:983.200000pt;}
.yb{bottom:985.753920pt;}
.y30{bottom:991.200000pt;}
.y57{bottom:993.920000pt;}
.yb1{bottom:1000.960000pt;}
.ya{bottom:1008.480000pt;}
.ye6{bottom:1009.760000pt;}
.y2f{bottom:1012.320000pt;}
.y4{bottom:1041.600000pt;}
.y3{bottom:1059.688000pt;}
.y2{bottom:1074.244000pt;}
.y1{bottom:1089.760000pt;}
.h19{height:25.600000pt;}
.h17{height:25.601333pt;}
.h1a{height:25.758667pt;}
.h18{height:25.760000pt;}
.h5{height:29.118667pt;}
.h3{height:34.453125pt;}
.hd{height:37.624687pt;}
.hf{height:38.128125pt;}
.h1e{height:42.656250pt;}
.h14{height:43.200000pt;}
.h15{height:43.360000pt;}
.ha{height:43.471250pt;}
.he{height:46.609688pt;}
.h13{height:47.180312pt;}
.h1d{height:51.360000pt;}
.hb{height:51.663750pt;}
.h9{height:52.375000pt;}
.h10{height:54.514687pt;}
.h4{height:56.156250pt;}
.h8{height:56.565000pt;}
.hc{height:56.843750pt;}
.h1b{height:60.960000pt;}
.h6{height:61.278750pt;}
.h12{height:61.944687pt;}
.h11{height:61.947287pt;}
.h7{height:61.969007pt;}
.h2{height:67.200000pt;}
.h1c{height:68.800000pt;}
.h16{height:81.809688pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w2{width:34.560000pt;}
.w3{width:56.160000pt;}
.w9{width:65.920000pt;}
.w5{width:75.040000pt;}
.wa{width:78.240000pt;}
.w8{width:106.880000pt;}
.wc{width:112.800000pt;}
.we{width:116.640000pt;}
.wd{width:118.560000pt;}
.wb{width:118.721333pt;}
.w6{width:131.838667pt;}
.w10{width:151.520000pt;}
.w12{width:151.998667pt;}
.w11{width:152.000000pt;}
.wf{width:152.320000pt;}
.w4{width:434.400000pt;}
.w7{width:444.798667pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x22{left:7.200000pt;}
.x40{left:8.160000pt;}
.x2a{left:9.280000pt;}
.x1f{left:11.360000pt;}
.x36{left:13.760000pt;}
.x27{left:15.520000pt;}
.x28{left:16.960000pt;}
.x24{left:18.080000pt;}
.x57{left:19.840000pt;}
.x25{left:21.280000pt;}
.x29{left:22.880000pt;}
.x26{left:24.640000pt;}
.x3c{left:26.880000pt;}
.x5f{left:28.960000pt;}
.x59{left:32.320000pt;}
.x63{left:38.240000pt;}
.x65{left:47.680000pt;}
.x6e{left:50.240000pt;}
.x5a{left:52.640000pt;}
.x6d{left:53.600000pt;}
.x5e{left:54.720000pt;}
.x2c{left:55.680000pt;}
.x6a{left:56.800000pt;}
.x2b{left:59.040000pt;}
.x66{left:60.160000pt;}
.x69{left:61.920000pt;}
.x6c{left:63.520000pt;}
.x6b{left:65.600000pt;}
.x67{left:68.960000pt;}
.x68{left:72.320000pt;}
.x3a{left:100.000000pt;}
.x3b{left:102.400000pt;}
.x3{left:113.440000pt;}
.x56{left:118.080000pt;}
.x30{left:126.560000pt;}
.x6{left:132.160000pt;}
.x1{left:135.200000pt;}
.x18{left:137.280000pt;}
.x8{left:139.520000pt;}
.x21{left:141.760000pt;}
.x1d{left:148.960000pt;}
.x31{left:168.000000pt;}
.x58{left:184.800000pt;}
.x62{left:196.640000pt;}
.x44{left:200.800000pt;}
.x43{left:201.760000pt;}
.x3f{left:204.160000pt;}
.x37{left:208.960000pt;}
.x45{left:214.880000pt;}
.x41{left:223.677280pt;}
.x3e{left:236.160000pt;}
.x33{left:245.440000pt;}
.x4{left:264.160000pt;}
.x46{left:280.320000pt;}
.x2d{left:284.486400pt;}
.x47{left:285.600000pt;}
.x1c{left:298.085120pt;}
.x48{left:303.680000pt;}
.x16{left:305.440000pt;}
.x61{left:313.277440pt;}
.x3d{left:323.040000pt;}
.x71{left:325.601280pt;}
.x2f{left:327.357280pt;}
.x9{left:330.412160pt;}
.x6f{left:333.277120pt;}
.x19{left:343.677760pt;}
.x38{left:348.960000pt;}
.x7{left:381.454240pt;}
.x5b{left:383.040000pt;}
.x4a{left:400.160000pt;}
.x4c{left:402.560000pt;}
.x4b{left:405.440000pt;}
.x49{left:409.280000pt;}
.x4d{left:410.720000pt;}
.x5{left:414.880000pt;}
.x14{left:423.200000pt;}
.x42{left:425.120000pt;}
.x1a{left:437.115840pt;}
.x2{left:473.440000pt;}
.xb{left:485.760000pt;}
.xf{left:491.040000pt;}
.x15{left:494.240000pt;}
.x5c{left:496.480000pt;}
.x64{left:501.760000pt;}
.x11{left:506.720000pt;}
.x4f{left:511.040000pt;}
.xd{left:512.480000pt;}
.x4e{left:514.720000pt;}
.x50{left:543.840000pt;}
.x32{left:571.680000pt;}
.x23{left:576.800000pt;}
.xe{left:580.960000pt;}
.x12{left:586.400000pt;}
.x34{left:591.360000pt;}
.x39{left:592.794080pt;}
.xc{left:607.200000pt;}
.x35{left:611.519040pt;}
.x10{left:612.960000pt;}
.x5d{left:615.680000pt;}
.x13{left:624.480000pt;}
.x2e{left:626.400000pt;}
.x51{left:630.240000pt;}
.x54{left:631.840000pt;}
.x53{left:633.760000pt;}
.x55{left:635.040000pt;}
.x52{left:636.160000pt;}
.x1e{left:652.480000pt;}
.x20{left:661.120000pt;}
.x70{left:670.080000pt;}
.x60{left:685.600000pt;}
.x1b{left:692.160000pt;}
.x17{left:712.160000pt;}
.xa{left:736.960000pt;}
}




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