
    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_ec2db5ca4e7f60162b86eb24.woff')format("woff");}.ff1{font-family:ff1;line-height:1.054000;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_0a81aa3a629331086e497e87.woff')format("woff");}.ff2{font-family:ff2;line-height:0.918000;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_e0f505acec1f606431205aa0.woff')format("woff");}.ff3{font-family:ff3;line-height:1.061000;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_59efc2d9b44ff0ad5e93ab12.woff')format("woff");}.ff4{font-family:ff4;line-height:0.680000;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_333f07480d6edabdb7928534.woff')format("woff");}.ff5{font-family:ff5;line-height:0.917000;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_e6c8da1055c4931fca9460a4.woff')format("woff");}.ff6{font-family:ff6;line-height:0.918000;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_b5fe26fe782e739434ab1eb5.woff')format("woff");}.ff7{font-family:ff7;line-height:1.054000;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_9cf3f7315ebf6f3ead2b3bdf.woff')format("woff");}.ff8{font-family:ff8;line-height:0.680000;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);}
.v4{vertical-align:-16.377600px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:4.416000px;}
.v3{vertical-align:16.382400px;}
.v2{vertical-align:19.980000px;}
.ls4{letter-spacing:-1.980000px;}
.lsd{letter-spacing:-1.122000px;}
.ls16{letter-spacing:-0.990000px;}
.lsa{letter-spacing:-0.900000px;}
.ls14{letter-spacing:-0.792000px;}
.ls2{letter-spacing:-0.660000px;}
.ls12{letter-spacing:-0.600000px;}
.ls5{letter-spacing:-0.540000px;}
.ls13{letter-spacing:-0.462000px;}
.ls3{letter-spacing:-0.330000px;}
.ls1{letter-spacing:-0.300000px;}
.ls8{letter-spacing:-0.270000px;}
.ls0{letter-spacing:0.000000px;}
.ls7{letter-spacing:0.198000px;}
.ls10{letter-spacing:0.330000px;}
.lse{letter-spacing:0.391776px;}
.ls6{letter-spacing:0.396000px;}
.lsc{letter-spacing:0.540000px;}
.lsf{letter-spacing:0.600000px;}
.ls11{letter-spacing:0.660000px;}
.ls15{letter-spacing:0.858000px;}
.lsb{letter-spacing:0.990000px;}
.ls9{letter-spacing:1.320000px;}
.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;}
}
.ws45{word-spacing:-13.926000px;}
.ws29{word-spacing:-13.332000px;}
.ws26{word-spacing:-13.068000px;}
.ws2b{word-spacing:-13.002000px;}
.ws38{word-spacing:-12.672000px;}
.wsa{word-spacing:-12.408000px;}
.ws37{word-spacing:-12.342000px;}
.ws1d{word-spacing:-12.210000px;}
.ws5d{word-spacing:-12.078000px;}
.wsd{word-spacing:-12.012000px;}
.ws1{word-spacing:-11.880000px;}
.wsb{word-spacing:-11.682000px;}
.ws46{word-spacing:-11.580000px;}
.ws42{word-spacing:-11.550000px;}
.ws39{word-spacing:-11.520000px;}
.ws18{word-spacing:-11.352000px;}
.ws43{word-spacing:-11.220000px;}
.ws30{word-spacing:-10.920000px;}
.ws24{word-spacing:-10.692000px;}
.ws2{word-spacing:-10.620000px;}
.ws33{word-spacing:-10.368000px;}
.ws5e{word-spacing:-10.320000px;}
.ws12{word-spacing:-10.032000px;}
.ws23{word-spacing:-9.558000px;}
.ws0{word-spacing:-9.504000px;}
.ws15{word-spacing:-9.288000px;}
.ws32{word-spacing:-8.148941px;}
.wsc{word-spacing:-7.757165px;}
.ws52{word-spacing:-7.020000px;}
.ws9{word-spacing:-6.926040px;}
.ws5{word-spacing:-5.130000px;}
.ws4a{word-spacing:-3.660000px;}
.ws5f{word-spacing:-2.820000px;}
.ws64{word-spacing:-1.980000px;}
.ws4f{word-spacing:-1.500000px;}
.ws69{word-spacing:-1.440000px;}
.ws2a{word-spacing:-1.320000px;}
.ws4d{word-spacing:-1.200000px;}
.ws4c{word-spacing:-1.020000px;}
.ws2c{word-spacing:-0.990000px;}
.ws47{word-spacing:-0.858000px;}
.ws60{word-spacing:-0.840000px;}
.ws3a{word-spacing:-0.600000px;}
.ws35{word-spacing:-0.540000px;}
.ws63{word-spacing:-0.420000px;}
.ws1a{word-spacing:-0.396000px;}
.ws6d{word-spacing:-0.240000px;}
.ws1b{word-spacing:-0.198000px;}
.ws3{word-spacing:0.000000px;}
.ws70{word-spacing:0.060000px;}
.ws49{word-spacing:0.300000px;}
.ws40{word-spacing:0.330000px;}
.ws4{word-spacing:0.378000px;}
.ws44{word-spacing:0.462000px;}
.ws68{word-spacing:0.540000px;}
.ws3f{word-spacing:0.600000px;}
.wsf{word-spacing:0.858000px;}
.ws34{word-spacing:1.122000px;}
.wse{word-spacing:1.254000px;}
.ws19{word-spacing:1.452000px;}
.ws66{word-spacing:1.500000px;}
.ws6f{word-spacing:1.800000px;}
.ws16{word-spacing:2.442000px;}
.ws6{word-spacing:2.460000px;}
.ws10{word-spacing:2.772000px;}
.ws6c{word-spacing:3.180000px;}
.ws6e{word-spacing:3.240000px;}
.ws11{word-spacing:3.432000px;}
.ws65{word-spacing:4.260000px;}
.ws54{word-spacing:4.320000px;}
.ws4e{word-spacing:4.560000px;}
.ws71{word-spacing:5.400000px;}
.ws4b{word-spacing:6.000000px;}
.ws48{word-spacing:6.060000px;}
.ws53{word-spacing:8.160000px;}
.ws62{word-spacing:8.460000px;}
.ws56{word-spacing:11.400000px;}
.ws5a{word-spacing:12.420000px;}
.ws5c{word-spacing:14.100000px;}
.ws58{word-spacing:16.080000px;}
.ws5b{word-spacing:16.680000px;}
.ws61{word-spacing:17.580000px;}
.ws50{word-spacing:19.920000px;}
.ws55{word-spacing:27.480000px;}
.ws6b{word-spacing:27.600000px;}
.ws6a{word-spacing:29.880000px;}
.ws59{word-spacing:35.040000px;}
.ws57{word-spacing:38.940000px;}
.ws67{word-spacing:40.920000px;}
.ws3d{word-spacing:119.586000px;}
.ws1f{word-spacing:254.580000px;}
.ws21{word-spacing:262.800000px;}
.ws20{word-spacing:266.940000px;}
.ws22{word-spacing:267.300000px;}
.ws2e{word-spacing:318.840000px;}
.ws31{word-spacing:347.280000px;}
.ws2f{word-spacing:375.780000px;}
.ws27{word-spacing:415.680000px;}
.ws1e{word-spacing:456.780000px;}
.ws28{word-spacing:466.200000px;}
.ws13{word-spacing:517.260000px;}
.ws8{word-spacing:524.020800px;}
.ws14{word-spacing:574.620000px;}
.ws1c{word-spacing:781.589400px;}
.ws25{word-spacing:782.645400px;}
.ws17{word-spacing:784.625400px;}
.ws7{word-spacing:786.275400px;}
.ws2d{word-spacing:793.469400px;}
.ws51{word-spacing:794.855400px;}
.ws41{word-spacing:795.911400px;}
.ws36{word-spacing:797.561400px;}
.ws3e{word-spacing:800.280000px;}
.ws3c{word-spacing:915.840000px;}
.ws3b{word-spacing:938.760000px;}
._f{margin-left:-12.408000px;}
._26{margin-left:-9.564000px;}
._25{margin-left:-7.764000px;}
._4{margin-left:-6.533400px;}
._2{margin-left:-4.947000px;}
._c{margin-left:-3.801000px;}
._0{margin-left:-2.644800px;}
._1{margin-left:-1.050000px;}
._3{width:1.254000px;}
._7{width:2.568000px;}
._8{width:3.948000px;}
._5{width:5.586000px;}
._6{width:7.074000px;}
._9{width:8.088000px;}
._b{width:9.978000px;}
._18{width:11.371800px;}
._a{width:13.188000px;}
._10{width:15.048000px;}
._1d{width:16.896600px;}
._24{width:18.348000px;}
._23{width:19.352400px;}
._22{width:20.394000px;}
._27{width:22.114800px;}
._19{width:24.141000px;}
._28{width:25.626000px;}
._29{width:27.070800px;}
._2b{width:28.879200px;}
._2a{width:30.874800px;}
._30{width:31.902000px;}
._31{width:33.352800px;}
._2d{width:38.080800px;}
._2c{width:42.096000px;}
._2f{width:44.089200px;}
._2e{width:45.352800px;}
._17{width:256.620000px;}
._12{width:263.760000px;}
._14{width:269.760000px;}
._16{width:272.640000px;}
._13{width:274.560000px;}
._15{width:278.820000px;}
._1a{width:350.820000px;}
._21{width:362.640000px;}
._1b{width:397.380000px;}
._e{width:458.164800px;}
._20{width:464.610000px;}
._d{width:466.624800px;}
._11{width:474.600000px;}
._1c{width:484.800000px;}
._1f{width:844.920000px;}
._1e{width:849.844800px;}
.fc1{color:rgb(35,31,32);}
.fc0{color:rgb(163,40,50);}
.fs5{font-size:34.980000px;}
.fs6{font-size:39.177600px;}
.fs1{font-size:42.000000px;}
.fs0{font-size:48.000000px;}
.fs4{font-size:54.000000px;}
.fs3{font-size:60.000000px;}
.fs2{font-size:66.000000px;}
.y0{bottom:0.000000px;}
.y2{bottom:55.275600px;}
.y4{bottom:57.401550px;}
.y1{bottom:68.775600px;}
.y3{bottom:71.955600px;}
.y23{bottom:116.608650px;}
.y4a{bottom:116.929200px;}
.yea{bottom:116.929350px;}
.y1bd{bottom:117.741300px;}
.y204{bottom:119.637300px;}
.y88{bottom:119.869800px;}
.y15c{bottom:120.333300px;}
.y11e{bottom:121.299900px;}
.y19e{bottom:122.310900px;}
.yaf{bottom:123.450300px;}
.yc8{bottom:124.941300px;}
.y1dc{bottom:125.946000px;}
.y49{bottom:133.129200px;}
.ye9{bottom:133.129350px;}
.y22{bottom:134.608650px;}
.y103{bottom:137.223600px;}
.y1bc{bottom:137.541300px;}
.y203{bottom:137.637300px;}
.y15b{bottom:138.333300px;}
.y87{bottom:139.669800px;}
.y11d{bottom:141.099900px;}
.y19d{bottom:142.110900px;}
.yae{bottom:143.250300px;}
.y1db{bottom:143.946000px;}
.yc7{bottom:144.741300px;}
.y48{bottom:149.329200px;}
.y139{bottom:149.329350px;}
.y21{bottom:152.608650px;}
.y6d{bottom:153.423600px;}
.ye8{bottom:153.423750px;}
.y202{bottom:155.637300px;}
.y1bb{bottom:157.341300px;}
.y86{bottom:159.469800px;}
.y11c{bottom:160.899900px;}
.y19c{bottom:161.910900px;}
.y1da{bottom:161.946000px;}
.yad{bottom:163.050300px;}
.yc6{bottom:164.541300px;}
.y138{bottom:165.529350px;}
.ye7{bottom:165.529500px;}
.y47{bottom:169.623600px;}
.y20{bottom:170.608650px;}
.y102{bottom:171.217950px;}
.y201{bottom:173.637300px;}
.y15a{bottom:176.133450px;}
.y1ba{bottom:177.141300px;}
.y85{bottom:179.269800px;}
.y1d9{bottom:179.946000px;}
.y11b{bottom:180.699900px;}
.y19b{bottom:181.710900px;}
.ye6{bottom:181.729500px;}
.yac{bottom:182.850300px;}
.yc5{bottom:184.341300px;}
.y137{bottom:185.823750px;}
.y1f{bottom:188.608650px;}
.y101{bottom:191.017950px;}
.y200{bottom:191.637300px;}
.y17b{bottom:194.445300px;}
.y159{bottom:195.933450px;}
.y1b9{bottom:196.941300px;}
.y1d8{bottom:197.946000px;}
.y6c{bottom:198.445800px;}
.y84{bottom:199.069800px;}
.y11a{bottom:200.499900px;}
.y19a{bottom:201.510900px;}
.ye5{bottom:202.023900px;}
.yab{bottom:202.650300px;}
.y1e{bottom:206.608650px;}
.y1ff{bottom:209.637300px;}
.y100{bottom:210.817950px;}
.ye4{bottom:214.129650px;}
.y17a{bottom:214.245300px;}
.y158{bottom:215.733450px;}
.y1d7{bottom:215.946000px;}
.y46{bottom:216.643500px;}
.y1b8{bottom:216.741300px;}
.y6b{bottom:218.245800px;}
.y83{bottom:218.869800px;}
.yc4{bottom:219.024300px;}
.y136{bottom:219.193800px;}
.y119{bottom:220.299900px;}
.y199{bottom:221.310900px;}
.yaa{bottom:222.450300px;}
.y1fe{bottom:227.637300px;}
.y1d{bottom:228.853650px;}
.ye3{bottom:230.329650px;}
.yff{bottom:230.617950px;}
.y1d6{bottom:233.946000px;}
.y179{bottom:234.045300px;}
.y157{bottom:235.533450px;}
.y45{bottom:236.443500px;}
.y1b7{bottom:236.541300px;}
.y6a{bottom:238.045800px;}
.y82{bottom:238.669800px;}
.y135{bottom:238.993800px;}
.y118{bottom:240.099900px;}
.y198{bottom:241.110900px;}
.ya9{bottom:242.250300px;}
.y1fd{bottom:245.637300px;}
.ye2{bottom:246.529650px;}
.yfe{bottom:250.417950px;}
.y1d5{bottom:251.946000px;}
.y156{bottom:255.333450px;}
.y1c{bottom:255.358650px;}
.y44{bottom:256.243500px;}
.y1b6{bottom:256.341300px;}
.y69{bottom:257.845800px;}
.y81{bottom:258.469800px;}
.y134{bottom:258.793800px;}
.y117{bottom:259.899900px;}
.y197{bottom:260.910900px;}
.ya8{bottom:262.050300px;}
.ye1{bottom:262.729650px;}
.y1fc{bottom:263.637300px;}
.yc3{bottom:264.333300px;}
.y178{bottom:268.728300px;}
.y1d4{bottom:269.946000px;}
.y1b{bottom:273.358650px;}
.y155{bottom:275.133450px;}
.y43{bottom:276.043500px;}
.y1b5{bottom:276.141300px;}
.y68{bottom:277.645800px;}
.y80{bottom:278.269800px;}
.y196{bottom:280.710900px;}
.y1fb{bottom:281.637300px;}
.ya7{bottom:281.850300px;}
.ye0{bottom:283.024050px;}
.yc2{bottom:284.133300px;}
.y1d3{bottom:287.946000px;}
.yfd{bottom:290.019450px;}
.y133{bottom:293.476800px;}
.y154{bottom:294.933450px;}
.ydf{bottom:295.129800px;}
.y42{bottom:295.843500px;}
.y1b4{bottom:295.941300px;}
.y67{bottom:297.445800px;}
.y1a{bottom:297.958650px;}
.y7f{bottom:298.069800px;}
.y116{bottom:299.499900px;}
.y1fa{bottom:299.637300px;}
.y195{bottom:300.510900px;}
.ya6{bottom:301.650300px;}
.yc1{bottom:303.933300px;}
.y1d2{bottom:305.946000px;}
.yde{bottom:311.329800px;}
.y132{bottom:313.276800px;}
.y177{bottom:314.037300px;}
.y153{bottom:314.733450px;}
.yfc{bottom:315.208650px;}
.y41{bottom:315.643500px;}
.y1b3{bottom:315.741300px;}
.y19{bottom:315.958650px;}
.y66{bottom:317.245800px;}
.y115{bottom:317.499900px;}
.y1f9{bottom:317.637300px;}
.y7e{bottom:317.869800px;}
.y194{bottom:320.310900px;}
.ya5{bottom:321.450300px;}
.yc0{bottom:323.733300px;}
.y1d1{bottom:323.946000px;}
.ydd{bottom:327.529800px;}
.y176{bottom:333.837300px;}
.y18{bottom:333.958650px;}
.y152{bottom:334.533450px;}
.y40{bottom:335.443500px;}
.y114{bottom:335.499900px;}
.y1b2{bottom:335.541300px;}
.y1f8{bottom:335.637300px;}
.y65{bottom:337.045800px;}
.y7d{bottom:337.669800px;}
.y193{bottom:340.110900px;}
.ya4{bottom:341.250300px;}
.y1d0{bottom:341.946000px;}
.yfb{bottom:343.258650px;}
.ybf{bottom:343.533300px;}
.ydc{bottom:343.729800px;}
.y17{bottom:351.958650px;}
.y113{bottom:353.499900px;}
.y175{bottom:353.637300px;}
.y151{bottom:354.333450px;}
.y3f{bottom:355.243500px;}
.y1b1{bottom:355.341300px;}
.y64{bottom:356.845800px;}
.y7c{bottom:357.469800px;}
.y131{bottom:358.585800px;}
.y192{bottom:359.910900px;}
.ydb{bottom:359.929800px;}
.y1cf{bottom:359.946000px;}
.ya3{bottom:361.050300px;}
.ybe{bottom:363.333300px;}
.y16{bottom:369.958650px;}
.y112{bottom:371.499900px;}
.y1f7{bottom:371.637300px;}
.y174{bottom:373.437300px;}
.y3e{bottom:375.043500px;}
.y1b0{bottom:375.141300px;}
.yfa{bottom:375.812700px;}
.yda{bottom:376.129800px;}
.y63{bottom:376.645800px;}
.y7b{bottom:377.269800px;}
.y1ce{bottom:377.946000px;}
.y130{bottom:378.385800px;}
.y191{bottom:379.710900px;}
.ya2{bottom:380.850300px;}
.ybd{bottom:383.133300px;}
.y15{bottom:387.958650px;}
.y111{bottom:389.499900px;}
.y1f6{bottom:389.637300px;}
.y150{bottom:393.933450px;}
.y3d{bottom:394.843500px;}
.y1af{bottom:394.941300px;}
.y1cd{bottom:395.946000px;}
.yd9{bottom:396.424200px;}
.y62{bottom:396.445800px;}
.y7a{bottom:397.069800px;}
.y12f{bottom:398.185800px;}
.y190{bottom:399.510900px;}
.yf9{bottom:399.857700px;}
.ya1{bottom:400.650300px;}
.ybc{bottom:402.933300px;}
.y14{bottom:405.958650px;}
.y110{bottom:407.499900px;}
.y1f5{bottom:407.637300px;}
.y14f{bottom:411.933450px;}
.y173{bottom:413.037300px;}
.y1cc{bottom:413.946000px;}
.y3c{bottom:414.642450px;}
.y1ae{bottom:414.741300px;}
.y79{bottom:416.869800px;}
.y12e{bottom:417.985800px;}
.y18f{bottom:419.310900px;}
.ya0{bottom:420.450300px;}
.ybb{bottom:422.733300px;}
.y13{bottom:423.958650px;}
.y10f{bottom:425.499900px;}
.y1f4{bottom:425.637300px;}
.y14e{bottom:429.933450px;}
.y172{bottom:431.037300px;}
.y1cb{bottom:431.946000px;}
.y3b{bottom:434.442450px;}
.y1ad{bottom:434.541300px;}
.y61{bottom:436.047300px;}
.y78{bottom:436.669800px;}
.y12d{bottom:437.785800px;}
.y18e{bottom:439.110900px;}
.yd8{bottom:439.290300px;}
.yf8{bottom:439.457850px;}
.y9f{bottom:440.250300px;}
.y12{bottom:441.958650px;}
.yba{bottom:442.533300px;}
.y1f3{bottom:443.637300px;}
.y14d{bottom:447.933450px;}
.y171{bottom:449.037300px;}
.y1ca{bottom:449.946000px;}
.y3a{bottom:454.242450px;}
.y1ac{bottom:454.341300px;}
.y77{bottom:456.469800px;}
.y12c{bottom:457.585800px;}
.y18d{bottom:458.910900px;}
.yd7{bottom:459.090300px;}
.yf7{bottom:459.257850px;}
.y9e{bottom:460.050300px;}
.y60{bottom:461.234250px;}
.y1f2{bottom:461.637300px;}
.yb9{bottom:462.333300px;}
.y10e{bottom:463.301550px;}
.y11{bottom:464.203650px;}
.y14c{bottom:465.933450px;}
.y170{bottom:467.037300px;}
.y1c9{bottom:467.946000px;}
.y39{bottom:474.042450px;}
.y1ab{bottom:474.141300px;}
.y76{bottom:476.269800px;}
.y12b{bottom:477.385800px;}
.y18c{bottom:478.710900px;}
.yd6{bottom:478.890300px;}
.yf6{bottom:479.057850px;}
.y1f1{bottom:479.637300px;}
.y9d{bottom:479.850300px;}
.yb8{bottom:482.133300px;}
.y10d{bottom:483.101550px;}
.y14b{bottom:483.933450px;}
.y16f{bottom:485.037300px;}
.y1c8{bottom:485.946000px;}
.y5f{bottom:489.284250px;}
.y38{bottom:493.842450px;}
.y1aa{bottom:493.941300px;}
.y75{bottom:496.069800px;}
.y12a{bottom:497.185800px;}
.y1f0{bottom:497.637300px;}
.y18b{bottom:498.510900px;}
.yd5{bottom:498.690300px;}
.yf5{bottom:498.857850px;}
.y9c{bottom:499.650300px;}
.y10c{bottom:502.901550px;}
.y16e{bottom:503.037300px;}
.y1c7{bottom:503.946000px;}
.y10{bottom:510.513000px;}
.y37{bottom:513.642450px;}
.y1a9{bottom:513.741300px;}
.y1ef{bottom:515.637300px;}
.y74{bottom:515.869800px;}
.y129{bottom:516.985800px;}
.y5e{bottom:517.334250px;}
.y18a{bottom:518.310900px;}
.yd4{bottom:518.490300px;}
.yf4{bottom:518.657850px;}
.y9b{bottom:519.450300px;}
.y16d{bottom:521.037300px;}
.y14a{bottom:521.733300px;}
.yb7{bottom:521.733450px;}
.y1c6{bottom:521.946000px;}
.yf{bottom:525.511500px;}
.y36{bottom:533.442450px;}
.y1a8{bottom:533.541300px;}
.y1ee{bottom:533.637300px;}
.y73{bottom:535.669800px;}
.y128{bottom:536.785800px;}
.y10b{bottom:537.584550px;}
.y189{bottom:538.110900px;}
.yd3{bottom:538.290300px;}
.yf3{bottom:538.457850px;}
.y9a{bottom:539.250300px;}
.yb6{bottom:539.733450px;}
.y1c5{bottom:539.946000px;}
.ye{bottom:540.510000px;}
.y149{bottom:541.533300px;}
.y5d{bottom:549.888450px;}
.y1ed{bottom:551.637300px;}
.y35{bottom:553.242450px;}
.y1a7{bottom:553.341300px;}
.y72{bottom:555.469800px;}
.y127{bottom:556.585800px;}
.y10a{bottom:557.384550px;}
.yb5{bottom:557.733450px;}
.y1c4{bottom:557.946000px;}
.yd2{bottom:558.090300px;}
.yf2{bottom:558.257850px;}
.y16c{bottom:558.837300px;}
.y99{bottom:559.050300px;}
.yd{bottom:559.761000px;}
.y148{bottom:561.333300px;}
.y1ec{bottom:569.637300px;}
.y34{bottom:573.042450px;}
.y1a6{bottom:573.141300px;}
.y5c{bottom:573.933450px;}
.y71{bottom:575.269800px;}
.yb4{bottom:575.733450px;}
.y1c3{bottom:575.946000px;}
.y126{bottom:576.385800px;}
.y188{bottom:577.712250px;}
.yd1{bottom:577.890300px;}
.yf1{bottom:578.058300px;}
.y16b{bottom:578.637300px;}
.y98{bottom:578.850300px;}
.y147{bottom:581.133300px;}
.y1eb{bottom:587.637300px;}
.y33{bottom:592.842450px;}
.y1a5{bottom:592.941300px;}
.y1c2{bottom:593.946000px;}
.yc{bottom:594.562350px;}
.y70{bottom:595.069800px;}
.yd0{bottom:597.690300px;}
.yf0{bottom:597.858300px;}
.y16a{bottom:598.437300px;}
.y97{bottom:598.650300px;}
.y146{bottom:600.933300px;}
.y109{bottom:602.693550px;}
.y187{bottom:602.888100px;}
.y1ea{bottom:605.637300px;}
.y32{bottom:612.642450px;}
.y1a4{bottom:612.741300px;}
.yb3{bottom:613.533300px;}
.y5b{bottom:613.533450px;}
.yb{bottom:614.362350px;}
.y125{bottom:615.987150px;}
.yef{bottom:617.658300px;}
.y169{bottom:618.237300px;}
.y96{bottom:618.450300px;}
.y145{bottom:620.733300px;}
.y108{bottom:622.493550px;}
.y1e9{bottom:623.637300px;}
.y1c1{bottom:626.832300px;}
.y6f{bottom:627.624300px;}
.y186{bottom:630.938100px;}
.y31{bottom:632.442450px;}
.y1a3{bottom:632.541300px;}
.yb2{bottom:633.333300px;}
.y5a{bottom:633.333450px;}
.ya{bottom:634.162350px;}
.ycf{bottom:637.291650px;}
.yee{bottom:637.458300px;}
.y168{bottom:638.037300px;}
.y95{bottom:638.250300px;}
.y144{bottom:640.533300px;}
.y124{bottom:641.234250px;}
.y1e8{bottom:641.637300px;}
.y107{bottom:642.293550px;}
.y6e{bottom:647.424300px;}
.y185{bottom:648.938100px;}
.y30{bottom:652.242450px;}
.y1a2{bottom:652.341300px;}
.yb1{bottom:653.133300px;}
.y59{bottom:653.133450px;}
.y9{bottom:653.962350px;}
.y167{bottom:657.837300px;}
.y94{bottom:658.050300px;}
.y123{bottom:659.234250px;}
.y1e7{bottom:659.637300px;}
.y143{bottom:660.333300px;}
.y106{bottom:662.093550px;}
.yce{bottom:662.534100px;}
.y184{bottom:666.938100px;}
.y2f{bottom:672.042450px;}
.yed{bottom:672.141300px;}
.yb0{bottom:672.933300px;}
.y58{bottom:672.933450px;}
.y166{bottom:677.637300px;}
.y93{bottom:677.850300px;}
.y142{bottom:680.133300px;}
.y105{bottom:681.893550px;}
.y122{bottom:687.284250px;}
.ycd{bottom:690.584100px;}
.y2e{bottom:691.842450px;}
.yec{bottom:691.941300px;}
.y57{bottom:692.733300px;}
.y8{bottom:693.562350px;}
.y183{bottom:694.988100px;}
.y1e6{bottom:695.637300px;}
.y165{bottom:697.437300px;}
.y92{bottom:697.650300px;}
.y141{bottom:699.933300px;}
.y2d{bottom:711.642450px;}
.y1a1{bottom:711.741300px;}
.y56{bottom:712.533300px;}
.y7{bottom:713.362350px;}
.y1e5{bottom:713.637300px;}
.y121{bottom:715.334250px;}
.y164{bottom:717.237300px;}
.y91{bottom:717.450300px;}
.ycc{bottom:718.634100px;}
.y140{bottom:719.733300px;}
.y104{bottom:721.494900px;}
.y182{bottom:723.038100px;}
.yeb{bottom:726.624300px;}
.y2c{bottom:731.442450px;}
.y1a0{bottom:731.541300px;}
.y1e4{bottom:731.637300px;}
.y55{bottom:732.333300px;}
.y163{bottom:737.037300px;}
.y90{bottom:737.250300px;}
.y13f{bottom:739.533300px;}
.y6{bottom:741.661800px;}
.ycb{bottom:746.684100px;}
.y120{bottom:747.888450px;}
.y1e3{bottom:749.637300px;}
.y181{bottom:751.088100px;}
.y2b{bottom:751.242450px;}
.y1c0{bottom:751.341300px;}
.y54{bottom:752.133300px;}
.y162{bottom:756.837300px;}
.y8f{bottom:757.050300px;}
.y13e{bottom:759.333300px;}
.y5{bottom:765.966300px;}
.y19f{bottom:766.224300px;}
.y1e2{bottom:767.637300px;}
.y2a{bottom:771.042450px;}
.y1bf{bottom:771.141300px;}
.y53{bottom:771.933300px;}
.y11f{bottom:771.933450px;}
.yca{bottom:774.734100px;}
.y161{bottom:776.637300px;}
.y8e{bottom:776.850300px;}
.y180{bottom:779.138100px;}
.y1e1{bottom:785.637300px;}
.y52{bottom:791.733300px;}
.y160{bottom:796.437300px;}
.y8d{bottom:796.650300px;}
.y13d{bottom:798.933450px;}
.y1e0{bottom:803.637300px;}
.y29{bottom:805.725450px;}
.y1be{bottom:805.824300px;}
.y17f{bottom:807.188100px;}
.yc9{bottom:807.288300px;}
.y51{bottom:811.533300px;}
.y15f{bottom:816.237300px;}
.y8c{bottom:816.450300px;}
.y13c{bottom:816.933450px;}
.y1df{bottom:821.637300px;}
.y50{bottom:831.333300px;}
.y13b{bottom:834.933450px;}
.y17e{bottom:835.238100px;}
.y15e{bottom:836.037300px;}
.y8b{bottom:836.250300px;}
.y1de{bottom:839.637300px;}
.y28{bottom:851.037300px;}
.y4f{bottom:851.133300px;}
.y13a{bottom:852.933450px;}
.y8a{bottom:856.050300px;}
.y1dd{bottom:857.637300px;}
.y17d{bottom:867.792300px;}
.y27{bottom:869.037300px;}
.y4e{bottom:870.933300px;}
.y15d{bottom:875.637300px;}
.y89{bottom:875.850300px;}
.y17c{bottom:887.592300px;}
.y4d{bottom:890.733300px;}
.y26{bottom:893.637300px;}
.y4c{bottom:910.533300px;}
.y25{bottom:911.637300px;}
.y24{bottom:944.548950px;}
.y4b{bottom:945.652950px;}
.hb{height:31.498790px;}
.h3{height:32.064000px;}
.h4{height:33.768000px;}
.h2{height:38.592000px;}
.h8{height:39.960000px;}
.he{height:40.080000px;}
.h9{height:43.416000px;}
.h6{height:48.240000px;}
.hd{height:48.660000px;}
.h7{height:53.064000px;}
.hc{height:53.064600px;}
.ha{height:53.068200px;}
.h5{height:53.526000px;}
.h0{height:1020.472500px;}
.h1{height:1020.750000px;}
.w0{width:722.835000px;}
.w1{width:723.000000px;}
.x0{left:0.000000px;}
.xd{left:97.795200px;}
.x1{left:106.299150px;}
.xc{left:114.803100px;}
.x14{left:116.733600px;}
.x2a{left:121.204500px;}
.x10{left:123.310650px;}
.x1a{left:125.614350px;}
.x1c{left:127.289400px;}
.x1f{left:136.078050px;}
.xf{left:137.778000px;}
.x19{left:139.078350px;}
.x18{left:141.328350px;}
.x12{left:142.394850px;}
.x1e{left:145.303350px;}
.x13{left:149.399850px;}
.x29{left:150.574500px;}
.x4{left:153.449400px;}
.x2b{left:156.274500px;}
.x6{left:160.194150px;}
.x21{left:161.572650px;}
.x28{left:165.904500px;}
.x15{left:170.078700px;}
.x20{left:178.582650px;}
.x5{left:203.031900px;}
.x30{left:209.734500px;}
.x2c{left:211.819500px;}
.x27{left:213.589500px;}
.x17{left:215.338350px;}
.x26{left:220.594500px;}
.x16{left:240.553350px;}
.x7{left:267.669150px;}
.x11{left:342.164850px;}
.x2e{left:390.679500px;}
.x22{left:407.032350px;}
.x23{left:413.767350px;}
.x2d{left:415.639500px;}
.x1b{left:419.534400px;}
.x1d{left:428.038350px;}
.x2{left:445.671150px;}
.x2f{left:462.799500px;}
.xa{left:485.046150px;}
.xb{left:502.416600px;}
.x9{left:504.141150px;}
.x3{left:510.696450px;}
.x8{left:532.690650px;}
.xe{left:603.061650px;}
.x25{left:606.378000px;}
.x24{left:608.374500px;}
@media print{
.v4{vertical-align:-14.557867pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:3.925333pt;}
.v3{vertical-align:14.562133pt;}
.v2{vertical-align:17.760000pt;}
.ls4{letter-spacing:-1.760000pt;}
.lsd{letter-spacing:-0.997333pt;}
.ls16{letter-spacing:-0.880000pt;}
.lsa{letter-spacing:-0.800000pt;}
.ls14{letter-spacing:-0.704000pt;}
.ls2{letter-spacing:-0.586667pt;}
.ls12{letter-spacing:-0.533333pt;}
.ls5{letter-spacing:-0.480000pt;}
.ls13{letter-spacing:-0.410667pt;}
.ls3{letter-spacing:-0.293333pt;}
.ls1{letter-spacing:-0.266667pt;}
.ls8{letter-spacing:-0.240000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls7{letter-spacing:0.176000pt;}
.ls10{letter-spacing:0.293333pt;}
.lse{letter-spacing:0.348245pt;}
.ls6{letter-spacing:0.352000pt;}
.lsc{letter-spacing:0.480000pt;}
.lsf{letter-spacing:0.533333pt;}
.ls11{letter-spacing:0.586667pt;}
.ls15{letter-spacing:0.762667pt;}
.lsb{letter-spacing:0.880000pt;}
.ls9{letter-spacing:1.173333pt;}
.ws45{word-spacing:-12.378667pt;}
.ws29{word-spacing:-11.850667pt;}
.ws26{word-spacing:-11.616000pt;}
.ws2b{word-spacing:-11.557333pt;}
.ws38{word-spacing:-11.264000pt;}
.wsa{word-spacing:-11.029333pt;}
.ws37{word-spacing:-10.970667pt;}
.ws1d{word-spacing:-10.853333pt;}
.ws5d{word-spacing:-10.736000pt;}
.wsd{word-spacing:-10.677333pt;}
.ws1{word-spacing:-10.560000pt;}
.wsb{word-spacing:-10.384000pt;}
.ws46{word-spacing:-10.293333pt;}
.ws42{word-spacing:-10.266667pt;}
.ws39{word-spacing:-10.240000pt;}
.ws18{word-spacing:-10.090667pt;}
.ws43{word-spacing:-9.973333pt;}
.ws30{word-spacing:-9.706667pt;}
.ws24{word-spacing:-9.504000pt;}
.ws2{word-spacing:-9.440000pt;}
.ws33{word-spacing:-9.216000pt;}
.ws5e{word-spacing:-9.173333pt;}
.ws12{word-spacing:-8.917333pt;}
.ws23{word-spacing:-8.496000pt;}
.ws0{word-spacing:-8.448000pt;}
.ws15{word-spacing:-8.256000pt;}
.ws32{word-spacing:-7.243503pt;}
.wsc{word-spacing:-6.895258pt;}
.ws52{word-spacing:-6.240000pt;}
.ws9{word-spacing:-6.156480pt;}
.ws5{word-spacing:-4.560000pt;}
.ws4a{word-spacing:-3.253333pt;}
.ws5f{word-spacing:-2.506667pt;}
.ws64{word-spacing:-1.760000pt;}
.ws4f{word-spacing:-1.333333pt;}
.ws69{word-spacing:-1.280000pt;}
.ws2a{word-spacing:-1.173333pt;}
.ws4d{word-spacing:-1.066667pt;}
.ws4c{word-spacing:-0.906667pt;}
.ws2c{word-spacing:-0.880000pt;}
.ws47{word-spacing:-0.762667pt;}
.ws60{word-spacing:-0.746667pt;}
.ws3a{word-spacing:-0.533333pt;}
.ws35{word-spacing:-0.480000pt;}
.ws63{word-spacing:-0.373333pt;}
.ws1a{word-spacing:-0.352000pt;}
.ws6d{word-spacing:-0.213333pt;}
.ws1b{word-spacing:-0.176000pt;}
.ws3{word-spacing:0.000000pt;}
.ws70{word-spacing:0.053333pt;}
.ws49{word-spacing:0.266667pt;}
.ws40{word-spacing:0.293333pt;}
.ws4{word-spacing:0.336000pt;}
.ws44{word-spacing:0.410667pt;}
.ws68{word-spacing:0.480000pt;}
.ws3f{word-spacing:0.533333pt;}
.wsf{word-spacing:0.762667pt;}
.ws34{word-spacing:0.997333pt;}
.wse{word-spacing:1.114667pt;}
.ws19{word-spacing:1.290667pt;}
.ws66{word-spacing:1.333333pt;}
.ws6f{word-spacing:1.600000pt;}
.ws16{word-spacing:2.170667pt;}
.ws6{word-spacing:2.186667pt;}
.ws10{word-spacing:2.464000pt;}
.ws6c{word-spacing:2.826667pt;}
.ws6e{word-spacing:2.880000pt;}
.ws11{word-spacing:3.050667pt;}
.ws65{word-spacing:3.786667pt;}
.ws54{word-spacing:3.840000pt;}
.ws4e{word-spacing:4.053333pt;}
.ws71{word-spacing:4.800000pt;}
.ws4b{word-spacing:5.333333pt;}
.ws48{word-spacing:5.386667pt;}
.ws53{word-spacing:7.253333pt;}
.ws62{word-spacing:7.520000pt;}
.ws56{word-spacing:10.133333pt;}
.ws5a{word-spacing:11.040000pt;}
.ws5c{word-spacing:12.533333pt;}
.ws58{word-spacing:14.293333pt;}
.ws5b{word-spacing:14.826667pt;}
.ws61{word-spacing:15.626667pt;}
.ws50{word-spacing:17.706667pt;}
.ws55{word-spacing:24.426667pt;}
.ws6b{word-spacing:24.533333pt;}
.ws6a{word-spacing:26.560000pt;}
.ws59{word-spacing:31.146667pt;}
.ws57{word-spacing:34.613333pt;}
.ws67{word-spacing:36.373333pt;}
.ws3d{word-spacing:106.298667pt;}
.ws1f{word-spacing:226.293333pt;}
.ws21{word-spacing:233.600000pt;}
.ws20{word-spacing:237.280000pt;}
.ws22{word-spacing:237.600000pt;}
.ws2e{word-spacing:283.413333pt;}
.ws31{word-spacing:308.693333pt;}
.ws2f{word-spacing:334.026667pt;}
.ws27{word-spacing:369.493333pt;}
.ws1e{word-spacing:406.026667pt;}
.ws28{word-spacing:414.400000pt;}
.ws13{word-spacing:459.786667pt;}
.ws8{word-spacing:465.796267pt;}
.ws14{word-spacing:510.773333pt;}
.ws1c{word-spacing:694.746133pt;}
.ws25{word-spacing:695.684800pt;}
.ws17{word-spacing:697.444800pt;}
.ws7{word-spacing:698.911467pt;}
.ws2d{word-spacing:705.306133pt;}
.ws51{word-spacing:706.538133pt;}
.ws41{word-spacing:707.476800pt;}
.ws36{word-spacing:708.943467pt;}
.ws3e{word-spacing:711.360000pt;}
.ws3c{word-spacing:814.080000pt;}
.ws3b{word-spacing:834.453333pt;}
._f{margin-left:-11.029333pt;}
._26{margin-left:-8.501333pt;}
._25{margin-left:-6.901333pt;}
._4{margin-left:-5.807467pt;}
._2{margin-left:-4.397333pt;}
._c{margin-left:-3.378667pt;}
._0{margin-left:-2.350933pt;}
._1{margin-left:-0.933333pt;}
._3{width:1.114667pt;}
._7{width:2.282667pt;}
._8{width:3.509333pt;}
._5{width:4.965333pt;}
._6{width:6.288000pt;}
._9{width:7.189333pt;}
._b{width:8.869333pt;}
._18{width:10.108267pt;}
._a{width:11.722667pt;}
._10{width:13.376000pt;}
._1d{width:15.019200pt;}
._24{width:16.309333pt;}
._23{width:17.202133pt;}
._22{width:18.128000pt;}
._27{width:19.657600pt;}
._19{width:21.458667pt;}
._28{width:22.778667pt;}
._29{width:24.062933pt;}
._2b{width:25.670400pt;}
._2a{width:27.444267pt;}
._30{width:28.357333pt;}
._31{width:29.646933pt;}
._2d{width:33.849600pt;}
._2c{width:37.418667pt;}
._2f{width:39.190400pt;}
._2e{width:40.313600pt;}
._17{width:228.106667pt;}
._12{width:234.453333pt;}
._14{width:239.786667pt;}
._16{width:242.346667pt;}
._13{width:244.053333pt;}
._15{width:247.840000pt;}
._1a{width:311.840000pt;}
._21{width:322.346667pt;}
._1b{width:353.226667pt;}
._e{width:407.257600pt;}
._20{width:412.986667pt;}
._d{width:414.777600pt;}
._11{width:421.866667pt;}
._1c{width:430.933333pt;}
._1f{width:751.040000pt;}
._1e{width:755.417600pt;}
.fs5{font-size:31.093333pt;}
.fs6{font-size:34.824533pt;}
.fs1{font-size:37.333333pt;}
.fs0{font-size:42.666667pt;}
.fs4{font-size:48.000000pt;}
.fs3{font-size:53.333333pt;}
.fs2{font-size:58.666667pt;}
.y0{bottom:0.000000pt;}
.y2{bottom:49.133867pt;}
.y4{bottom:51.023600pt;}
.y1{bottom:61.133867pt;}
.y3{bottom:63.960533pt;}
.y23{bottom:103.652133pt;}
.y4a{bottom:103.937067pt;}
.yea{bottom:103.937200pt;}
.y1bd{bottom:104.658933pt;}
.y204{bottom:106.344267pt;}
.y88{bottom:106.550933pt;}
.y15c{bottom:106.962933pt;}
.y11e{bottom:107.822133pt;}
.y19e{bottom:108.720800pt;}
.yaf{bottom:109.733600pt;}
.yc8{bottom:111.058933pt;}
.y1dc{bottom:111.952000pt;}
.y49{bottom:118.337067pt;}
.ye9{bottom:118.337200pt;}
.y22{bottom:119.652133pt;}
.y103{bottom:121.976533pt;}
.y1bc{bottom:122.258933pt;}
.y203{bottom:122.344267pt;}
.y15b{bottom:122.962933pt;}
.y87{bottom:124.150933pt;}
.y11d{bottom:125.422133pt;}
.y19d{bottom:126.320800pt;}
.yae{bottom:127.333600pt;}
.y1db{bottom:127.952000pt;}
.yc7{bottom:128.658933pt;}
.y48{bottom:132.737067pt;}
.y139{bottom:132.737200pt;}
.y21{bottom:135.652133pt;}
.y6d{bottom:136.376533pt;}
.ye8{bottom:136.376667pt;}
.y202{bottom:138.344267pt;}
.y1bb{bottom:139.858933pt;}
.y86{bottom:141.750933pt;}
.y11c{bottom:143.022133pt;}
.y19c{bottom:143.920800pt;}
.y1da{bottom:143.952000pt;}
.yad{bottom:144.933600pt;}
.yc6{bottom:146.258933pt;}
.y138{bottom:147.137200pt;}
.ye7{bottom:147.137333pt;}
.y47{bottom:150.776533pt;}
.y20{bottom:151.652133pt;}
.y102{bottom:152.193733pt;}
.y201{bottom:154.344267pt;}
.y15a{bottom:156.563067pt;}
.y1ba{bottom:157.458933pt;}
.y85{bottom:159.350933pt;}
.y1d9{bottom:159.952000pt;}
.y11b{bottom:160.622133pt;}
.y19b{bottom:161.520800pt;}
.ye6{bottom:161.537333pt;}
.yac{bottom:162.533600pt;}
.yc5{bottom:163.858933pt;}
.y137{bottom:165.176667pt;}
.y1f{bottom:167.652133pt;}
.y101{bottom:169.793733pt;}
.y200{bottom:170.344267pt;}
.y17b{bottom:172.840267pt;}
.y159{bottom:174.163067pt;}
.y1b9{bottom:175.058933pt;}
.y1d8{bottom:175.952000pt;}
.y6c{bottom:176.396267pt;}
.y84{bottom:176.950933pt;}
.y11a{bottom:178.222133pt;}
.y19a{bottom:179.120800pt;}
.ye5{bottom:179.576800pt;}
.yab{bottom:180.133600pt;}
.y1e{bottom:183.652133pt;}
.y1ff{bottom:186.344267pt;}
.y100{bottom:187.393733pt;}
.ye4{bottom:190.337467pt;}
.y17a{bottom:190.440267pt;}
.y158{bottom:191.763067pt;}
.y1d7{bottom:191.952000pt;}
.y46{bottom:192.572000pt;}
.y1b8{bottom:192.658933pt;}
.y6b{bottom:193.996267pt;}
.y83{bottom:194.550933pt;}
.yc4{bottom:194.688267pt;}
.y136{bottom:194.838933pt;}
.y119{bottom:195.822133pt;}
.y199{bottom:196.720800pt;}
.yaa{bottom:197.733600pt;}
.y1fe{bottom:202.344267pt;}
.y1d{bottom:203.425467pt;}
.ye3{bottom:204.737467pt;}
.yff{bottom:204.993733pt;}
.y1d6{bottom:207.952000pt;}
.y179{bottom:208.040267pt;}
.y157{bottom:209.363067pt;}
.y45{bottom:210.172000pt;}
.y1b7{bottom:210.258933pt;}
.y6a{bottom:211.596267pt;}
.y82{bottom:212.150933pt;}
.y135{bottom:212.438933pt;}
.y118{bottom:213.422133pt;}
.y198{bottom:214.320800pt;}
.ya9{bottom:215.333600pt;}
.y1fd{bottom:218.344267pt;}
.ye2{bottom:219.137467pt;}
.yfe{bottom:222.593733pt;}
.y1d5{bottom:223.952000pt;}
.y156{bottom:226.963067pt;}
.y1c{bottom:226.985467pt;}
.y44{bottom:227.772000pt;}
.y1b6{bottom:227.858933pt;}
.y69{bottom:229.196267pt;}
.y81{bottom:229.750933pt;}
.y134{bottom:230.038933pt;}
.y117{bottom:231.022133pt;}
.y197{bottom:231.920800pt;}
.ya8{bottom:232.933600pt;}
.ye1{bottom:233.537467pt;}
.y1fc{bottom:234.344267pt;}
.yc3{bottom:234.962933pt;}
.y178{bottom:238.869600pt;}
.y1d4{bottom:239.952000pt;}
.y1b{bottom:242.985467pt;}
.y155{bottom:244.563067pt;}
.y43{bottom:245.372000pt;}
.y1b5{bottom:245.458933pt;}
.y68{bottom:246.796267pt;}
.y80{bottom:247.350933pt;}
.y196{bottom:249.520800pt;}
.y1fb{bottom:250.344267pt;}
.ya7{bottom:250.533600pt;}
.ye0{bottom:251.576933pt;}
.yc2{bottom:252.562933pt;}
.y1d3{bottom:255.952000pt;}
.yfd{bottom:257.795067pt;}
.y133{bottom:260.868267pt;}
.y154{bottom:262.163067pt;}
.ydf{bottom:262.337600pt;}
.y42{bottom:262.972000pt;}
.y1b4{bottom:263.058933pt;}
.y67{bottom:264.396267pt;}
.y1a{bottom:264.852133pt;}
.y7f{bottom:264.950933pt;}
.y116{bottom:266.222133pt;}
.y1fa{bottom:266.344267pt;}
.y195{bottom:267.120800pt;}
.ya6{bottom:268.133600pt;}
.yc1{bottom:270.162933pt;}
.y1d2{bottom:271.952000pt;}
.yde{bottom:276.737600pt;}
.y132{bottom:278.468267pt;}
.y177{bottom:279.144267pt;}
.y153{bottom:279.763067pt;}
.yfc{bottom:280.185467pt;}
.y41{bottom:280.572000pt;}
.y1b3{bottom:280.658933pt;}
.y19{bottom:280.852133pt;}
.y66{bottom:281.996267pt;}
.y115{bottom:282.222133pt;}
.y1f9{bottom:282.344267pt;}
.y7e{bottom:282.550933pt;}
.y194{bottom:284.720800pt;}
.ya5{bottom:285.733600pt;}
.yc0{bottom:287.762933pt;}
.y1d1{bottom:287.952000pt;}
.ydd{bottom:291.137600pt;}
.y176{bottom:296.744267pt;}
.y18{bottom:296.852133pt;}
.y152{bottom:297.363067pt;}
.y40{bottom:298.172000pt;}
.y114{bottom:298.222133pt;}
.y1b2{bottom:298.258933pt;}
.y1f8{bottom:298.344267pt;}
.y65{bottom:299.596267pt;}
.y7d{bottom:300.150933pt;}
.y193{bottom:302.320800pt;}
.ya4{bottom:303.333600pt;}
.y1d0{bottom:303.952000pt;}
.yfb{bottom:305.118800pt;}
.ybf{bottom:305.362933pt;}
.ydc{bottom:305.537600pt;}
.y17{bottom:312.852133pt;}
.y113{bottom:314.222133pt;}
.y175{bottom:314.344267pt;}
.y151{bottom:314.963067pt;}
.y3f{bottom:315.772000pt;}
.y1b1{bottom:315.858933pt;}
.y64{bottom:317.196267pt;}
.y7c{bottom:317.750933pt;}
.y131{bottom:318.742933pt;}
.y192{bottom:319.920800pt;}
.ydb{bottom:319.937600pt;}
.y1cf{bottom:319.952000pt;}
.ya3{bottom:320.933600pt;}
.ybe{bottom:322.962933pt;}
.y16{bottom:328.852133pt;}
.y112{bottom:330.222133pt;}
.y1f7{bottom:330.344267pt;}
.y174{bottom:331.944267pt;}
.y3e{bottom:333.372000pt;}
.y1b0{bottom:333.458933pt;}
.yfa{bottom:334.055733pt;}
.yda{bottom:334.337600pt;}
.y63{bottom:334.796267pt;}
.y7b{bottom:335.350933pt;}
.y1ce{bottom:335.952000pt;}
.y130{bottom:336.342933pt;}
.y191{bottom:337.520800pt;}
.ya2{bottom:338.533600pt;}
.ybd{bottom:340.562933pt;}
.y15{bottom:344.852133pt;}
.y111{bottom:346.222133pt;}
.y1f6{bottom:346.344267pt;}
.y150{bottom:350.163067pt;}
.y3d{bottom:350.972000pt;}
.y1af{bottom:351.058933pt;}
.y1cd{bottom:351.952000pt;}
.yd9{bottom:352.377067pt;}
.y62{bottom:352.396267pt;}
.y7a{bottom:352.950933pt;}
.y12f{bottom:353.942933pt;}
.y190{bottom:355.120800pt;}
.yf9{bottom:355.429067pt;}
.ya1{bottom:356.133600pt;}
.ybc{bottom:358.162933pt;}
.y14{bottom:360.852133pt;}
.y110{bottom:362.222133pt;}
.y1f5{bottom:362.344267pt;}
.y14f{bottom:366.163067pt;}
.y173{bottom:367.144267pt;}
.y1cc{bottom:367.952000pt;}
.y3c{bottom:368.571067pt;}
.y1ae{bottom:368.658933pt;}
.y79{bottom:370.550933pt;}
.y12e{bottom:371.542933pt;}
.y18f{bottom:372.720800pt;}
.ya0{bottom:373.733600pt;}
.ybb{bottom:375.762933pt;}
.y13{bottom:376.852133pt;}
.y10f{bottom:378.222133pt;}
.y1f4{bottom:378.344267pt;}
.y14e{bottom:382.163067pt;}
.y172{bottom:383.144267pt;}
.y1cb{bottom:383.952000pt;}
.y3b{bottom:386.171067pt;}
.y1ad{bottom:386.258933pt;}
.y61{bottom:387.597600pt;}
.y78{bottom:388.150933pt;}
.y12d{bottom:389.142933pt;}
.y18e{bottom:390.320800pt;}
.yd8{bottom:390.480267pt;}
.yf8{bottom:390.629200pt;}
.y9f{bottom:391.333600pt;}
.y12{bottom:392.852133pt;}
.yba{bottom:393.362933pt;}
.y1f3{bottom:394.344267pt;}
.y14d{bottom:398.163067pt;}
.y171{bottom:399.144267pt;}
.y1ca{bottom:399.952000pt;}
.y3a{bottom:403.771067pt;}
.y1ac{bottom:403.858933pt;}
.y77{bottom:405.750933pt;}
.y12c{bottom:406.742933pt;}
.y18d{bottom:407.920800pt;}
.yd7{bottom:408.080267pt;}
.yf7{bottom:408.229200pt;}
.y9e{bottom:408.933600pt;}
.y60{bottom:409.986000pt;}
.y1f2{bottom:410.344267pt;}
.yb9{bottom:410.962933pt;}
.y10e{bottom:411.823600pt;}
.y11{bottom:412.625467pt;}
.y14c{bottom:414.163067pt;}
.y170{bottom:415.144267pt;}
.y1c9{bottom:415.952000pt;}
.y39{bottom:421.371067pt;}
.y1ab{bottom:421.458933pt;}
.y76{bottom:423.350933pt;}
.y12b{bottom:424.342933pt;}
.y18c{bottom:425.520800pt;}
.yd6{bottom:425.680267pt;}
.yf6{bottom:425.829200pt;}
.y1f1{bottom:426.344267pt;}
.y9d{bottom:426.533600pt;}
.yb8{bottom:428.562933pt;}
.y10d{bottom:429.423600pt;}
.y14b{bottom:430.163067pt;}
.y16f{bottom:431.144267pt;}
.y1c8{bottom:431.952000pt;}
.y5f{bottom:434.919333pt;}
.y38{bottom:438.971067pt;}
.y1aa{bottom:439.058933pt;}
.y75{bottom:440.950933pt;}
.y12a{bottom:441.942933pt;}
.y1f0{bottom:442.344267pt;}
.y18b{bottom:443.120800pt;}
.yd5{bottom:443.280267pt;}
.yf5{bottom:443.429200pt;}
.y9c{bottom:444.133600pt;}
.y10c{bottom:447.023600pt;}
.y16e{bottom:447.144267pt;}
.y1c7{bottom:447.952000pt;}
.y10{bottom:453.789333pt;}
.y37{bottom:456.571067pt;}
.y1a9{bottom:456.658933pt;}
.y1ef{bottom:458.344267pt;}
.y74{bottom:458.550933pt;}
.y129{bottom:459.542933pt;}
.y5e{bottom:459.852667pt;}
.y18a{bottom:460.720800pt;}
.yd4{bottom:460.880267pt;}
.yf4{bottom:461.029200pt;}
.y9b{bottom:461.733600pt;}
.y16d{bottom:463.144267pt;}
.y14a{bottom:463.762933pt;}
.yb7{bottom:463.763067pt;}
.y1c6{bottom:463.952000pt;}
.yf{bottom:467.121333pt;}
.y36{bottom:474.171067pt;}
.y1a8{bottom:474.258933pt;}
.y1ee{bottom:474.344267pt;}
.y73{bottom:476.150933pt;}
.y128{bottom:477.142933pt;}
.y10b{bottom:477.852933pt;}
.y189{bottom:478.320800pt;}
.yd3{bottom:478.480267pt;}
.yf3{bottom:478.629200pt;}
.y9a{bottom:479.333600pt;}
.yb6{bottom:479.763067pt;}
.y1c5{bottom:479.952000pt;}
.ye{bottom:480.453333pt;}
.y149{bottom:481.362933pt;}
.y5d{bottom:488.789733pt;}
.y1ed{bottom:490.344267pt;}
.y35{bottom:491.771067pt;}
.y1a7{bottom:491.858933pt;}
.y72{bottom:493.750933pt;}
.y127{bottom:494.742933pt;}
.y10a{bottom:495.452933pt;}
.yb5{bottom:495.763067pt;}
.y1c4{bottom:495.952000pt;}
.yd2{bottom:496.080267pt;}
.yf2{bottom:496.229200pt;}
.y16c{bottom:496.744267pt;}
.y99{bottom:496.933600pt;}
.yd{bottom:497.565333pt;}
.y148{bottom:498.962933pt;}
.y1ec{bottom:506.344267pt;}
.y34{bottom:509.371067pt;}
.y1a6{bottom:509.458933pt;}
.y5c{bottom:510.163067pt;}
.y71{bottom:511.350933pt;}
.yb4{bottom:511.763067pt;}
.y1c3{bottom:511.952000pt;}
.y126{bottom:512.342933pt;}
.y188{bottom:513.522000pt;}
.yd1{bottom:513.680267pt;}
.yf1{bottom:513.829600pt;}
.y16b{bottom:514.344267pt;}
.y98{bottom:514.533600pt;}
.y147{bottom:516.562933pt;}
.y1eb{bottom:522.344267pt;}
.y33{bottom:526.971067pt;}
.y1a5{bottom:527.058933pt;}
.y1c2{bottom:527.952000pt;}
.yc{bottom:528.499867pt;}
.y70{bottom:528.950933pt;}
.yd0{bottom:531.280267pt;}
.yf0{bottom:531.429600pt;}
.y16a{bottom:531.944267pt;}
.y97{bottom:532.133600pt;}
.y146{bottom:534.162933pt;}
.y109{bottom:535.727600pt;}
.y187{bottom:535.900533pt;}
.y1ea{bottom:538.344267pt;}
.y32{bottom:544.571067pt;}
.y1a4{bottom:544.658933pt;}
.yb3{bottom:545.362933pt;}
.y5b{bottom:545.363067pt;}
.yb{bottom:546.099867pt;}
.y125{bottom:547.544133pt;}
.yef{bottom:549.029600pt;}
.y169{bottom:549.544267pt;}
.y96{bottom:549.733600pt;}
.y145{bottom:551.762933pt;}
.y108{bottom:553.327600pt;}
.y1e9{bottom:554.344267pt;}
.y1c1{bottom:557.184267pt;}
.y6f{bottom:557.888267pt;}
.y186{bottom:560.833867pt;}
.y31{bottom:562.171067pt;}
.y1a3{bottom:562.258933pt;}
.yb2{bottom:562.962933pt;}
.y5a{bottom:562.963067pt;}
.ya{bottom:563.699867pt;}
.ycf{bottom:566.481467pt;}
.yee{bottom:566.629600pt;}
.y168{bottom:567.144267pt;}
.y95{bottom:567.333600pt;}
.y144{bottom:569.362933pt;}
.y124{bottom:569.986000pt;}
.y1e8{bottom:570.344267pt;}
.y107{bottom:570.927600pt;}
.y6e{bottom:575.488267pt;}
.y185{bottom:576.833867pt;}
.y30{bottom:579.771067pt;}
.y1a2{bottom:579.858933pt;}
.yb1{bottom:580.562933pt;}
.y59{bottom:580.563067pt;}
.y9{bottom:581.299867pt;}
.y167{bottom:584.744267pt;}
.y94{bottom:584.933600pt;}
.y123{bottom:585.986000pt;}
.y1e7{bottom:586.344267pt;}
.y143{bottom:586.962933pt;}
.y106{bottom:588.527600pt;}
.yce{bottom:588.919200pt;}
.y184{bottom:592.833867pt;}
.y2f{bottom:597.371067pt;}
.yed{bottom:597.458933pt;}
.yb0{bottom:598.162933pt;}
.y58{bottom:598.163067pt;}
.y166{bottom:602.344267pt;}
.y93{bottom:602.533600pt;}
.y142{bottom:604.562933pt;}
.y105{bottom:606.127600pt;}
.y122{bottom:610.919333pt;}
.ycd{bottom:613.852533pt;}
.y2e{bottom:614.971067pt;}
.yec{bottom:615.058933pt;}
.y57{bottom:615.762933pt;}
.y8{bottom:616.499867pt;}
.y183{bottom:617.767200pt;}
.y1e6{bottom:618.344267pt;}
.y165{bottom:619.944267pt;}
.y92{bottom:620.133600pt;}
.y141{bottom:622.162933pt;}
.y2d{bottom:632.571067pt;}
.y1a1{bottom:632.658933pt;}
.y56{bottom:633.362933pt;}
.y7{bottom:634.099867pt;}
.y1e5{bottom:634.344267pt;}
.y121{bottom:635.852667pt;}
.y164{bottom:637.544267pt;}
.y91{bottom:637.733600pt;}
.ycc{bottom:638.785867pt;}
.y140{bottom:639.762933pt;}
.y104{bottom:641.328800pt;}
.y182{bottom:642.700533pt;}
.yeb{bottom:645.888267pt;}
.y2c{bottom:650.171067pt;}
.y1a0{bottom:650.258933pt;}
.y1e4{bottom:650.344267pt;}
.y55{bottom:650.962933pt;}
.y163{bottom:655.144267pt;}
.y90{bottom:655.333600pt;}
.y13f{bottom:657.362933pt;}
.y6{bottom:659.254933pt;}
.ycb{bottom:663.719200pt;}
.y120{bottom:664.789733pt;}
.y1e3{bottom:666.344267pt;}
.y181{bottom:667.633867pt;}
.y2b{bottom:667.771067pt;}
.y1c0{bottom:667.858933pt;}
.y54{bottom:668.562933pt;}
.y162{bottom:672.744267pt;}
.y8f{bottom:672.933600pt;}
.y13e{bottom:674.962933pt;}
.y5{bottom:680.858933pt;}
.y19f{bottom:681.088267pt;}
.y1e2{bottom:682.344267pt;}
.y2a{bottom:685.371067pt;}
.y1bf{bottom:685.458933pt;}
.y53{bottom:686.162933pt;}
.y11f{bottom:686.163067pt;}
.yca{bottom:688.652533pt;}
.y161{bottom:690.344267pt;}
.y8e{bottom:690.533600pt;}
.y180{bottom:692.567200pt;}
.y1e1{bottom:698.344267pt;}
.y52{bottom:703.762933pt;}
.y160{bottom:707.944267pt;}
.y8d{bottom:708.133600pt;}
.y13d{bottom:710.163067pt;}
.y1e0{bottom:714.344267pt;}
.y29{bottom:716.200400pt;}
.y1be{bottom:716.288267pt;}
.y17f{bottom:717.500533pt;}
.yc9{bottom:717.589600pt;}
.y51{bottom:721.362933pt;}
.y15f{bottom:725.544267pt;}
.y8c{bottom:725.733600pt;}
.y13c{bottom:726.163067pt;}
.y1df{bottom:730.344267pt;}
.y50{bottom:738.962933pt;}
.y13b{bottom:742.163067pt;}
.y17e{bottom:742.433867pt;}
.y15e{bottom:743.144267pt;}
.y8b{bottom:743.333600pt;}
.y1de{bottom:746.344267pt;}
.y28{bottom:756.477600pt;}
.y4f{bottom:756.562933pt;}
.y13a{bottom:758.163067pt;}
.y8a{bottom:760.933600pt;}
.y1dd{bottom:762.344267pt;}
.y17d{bottom:771.370933pt;}
.y27{bottom:772.477600pt;}
.y4e{bottom:774.162933pt;}
.y15d{bottom:778.344267pt;}
.y89{bottom:778.533600pt;}
.y17c{bottom:788.970933pt;}
.y4d{bottom:791.762933pt;}
.y26{bottom:794.344267pt;}
.y4c{bottom:809.362933pt;}
.y25{bottom:810.344267pt;}
.y24{bottom:839.599067pt;}
.y4b{bottom:840.580400pt;}
.hb{height:27.998925pt;}
.h3{height:28.501333pt;}
.h4{height:30.016000pt;}
.h2{height:34.304000pt;}
.h8{height:35.520000pt;}
.he{height:35.626667pt;}
.h9{height:38.592000pt;}
.h6{height:42.880000pt;}
.hd{height:43.253333pt;}
.h7{height:47.168000pt;}
.hc{height:47.168533pt;}
.ha{height:47.171733pt;}
.h5{height:47.578667pt;}
.h0{height:907.086667pt;}
.h1{height:907.333333pt;}
.w0{width:642.520000pt;}
.w1{width:642.666667pt;}
.x0{left:0.000000pt;}
.xd{left:86.929067pt;}
.x1{left:94.488133pt;}
.xc{left:102.047200pt;}
.x14{left:103.763200pt;}
.x2a{left:107.737333pt;}
.x10{left:109.609467pt;}
.x1a{left:111.657200pt;}
.x1c{left:113.146133pt;}
.x1f{left:120.958267pt;}
.xf{left:122.469333pt;}
.x19{left:123.625200pt;}
.x18{left:125.625200pt;}
.x12{left:126.573200pt;}
.x1e{left:129.158533pt;}
.x13{left:132.799867pt;}
.x29{left:133.844000pt;}
.x4{left:136.399467pt;}
.x2b{left:138.910667pt;}
.x6{left:142.394800pt;}
.x21{left:143.620133pt;}
.x28{left:147.470667pt;}
.x15{left:151.181067pt;}
.x20{left:158.740133pt;}
.x5{left:180.472800pt;}
.x30{left:186.430667pt;}
.x2c{left:188.284000pt;}
.x27{left:189.857333pt;}
.x17{left:191.411867pt;}
.x26{left:196.084000pt;}
.x16{left:213.825200pt;}
.x7{left:237.928133pt;}
.x11{left:304.146533pt;}
.x2e{left:347.270667pt;}
.x22{left:361.806533pt;}
.x23{left:367.793200pt;}
.x2d{left:369.457333pt;}
.x1b{left:372.919467pt;}
.x1d{left:380.478533pt;}
.x2{left:396.152133pt;}
.x2f{left:411.377333pt;}
.xa{left:431.152133pt;}
.xb{left:446.592533pt;}
.x9{left:448.125467pt;}
.x3{left:453.952400pt;}
.x8{left:473.502800pt;}
.xe{left:536.054800pt;}
.x25{left:539.002667pt;}
.x24{left:540.777333pt;}
}




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