
    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_f2df696d3b3265d59c7a3150.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_da612153d1d3ac1fe7cd8806.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_106840b056a33ef006708506.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_793dccd3118898eeb6f3b408.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.921387;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_a0b648f17067bfd81c09db48.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_a7b7f3293135f9e437f2c7dd.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.435059;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_f29a7c8d95ed14cf3730f7fe.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_5b9c5d60da426bf34e302f17.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.708008;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_e052153fb0471d87d173e595.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m2{transform:matrix(0.000000,0.250000,-0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,0.250000,-0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,0.250000,-0.250000,0.000000,0,0);}
.m1{transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-ms-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-webkit-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m3{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);}
.v7{vertical-align:-61.920000px;}
.v3{vertical-align:-57.720002px;}
.v6{vertical-align:-23.760000px;}
.v0{vertical-align:0.000000px;}
.v5{vertical-align:20.880000px;}
.v4{vertical-align:23.760000px;}
.v1{vertical-align:27.360000px;}
.v2{vertical-align:30.240000px;}
.ls13{letter-spacing:-0.720000px;}
.ls18{letter-spacing:-0.702000px;}
.ls1b{letter-spacing:-0.672000px;}
.ls8{letter-spacing:-0.594000px;}
.lsd{letter-spacing:-0.540000px;}
.lsa{letter-spacing:-0.360000px;}
.ls1c{letter-spacing:-0.269400px;}
.ls1f{letter-spacing:-0.243600px;}
.ls7{letter-spacing:-0.226200px;}
.lsf{letter-spacing:-0.223800px;}
.ls14{letter-spacing:-0.144000px;}
.ls12{letter-spacing:-0.108000px;}
.ls11{letter-spacing:-0.053280px;}
.lsb{letter-spacing:-0.018000px;}
.ls6{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.012960px;}
.ls19{letter-spacing:0.017280px;}
.ls5{letter-spacing:0.018000px;}
.ls1a{letter-spacing:0.053280px;}
.lsc{letter-spacing:0.108000px;}
.ls4{letter-spacing:0.180000px;}
.lse{letter-spacing:0.259800px;}
.ls1e{letter-spacing:0.269400px;}
.ls9{letter-spacing:0.305400px;}
.ls3{letter-spacing:0.315360px;}
.ls0{letter-spacing:0.360000px;}
.ls10{letter-spacing:0.666000px;}
.ls1{letter-spacing:0.720000px;}
.ls1d{letter-spacing:0.900000px;}
.ls17{letter-spacing:0.924000px;}
.ls16{letter-spacing:3.060000px;}
.ls15{letter-spacing:5.220000px;}
.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;}
}
.ws4{word-spacing:-18.000000px;}
.ws9{word-spacing:-16.865400px;}
.ws17{word-spacing:-15.864000px;}
.ws11{word-spacing:-15.606000px;}
.wsc{word-spacing:-15.300000px;}
.wsf{word-spacing:-15.199800px;}
.ws19{word-spacing:-14.993280px;}
.ws5{word-spacing:-14.940000px;}
.ws13{word-spacing:-14.886720px;}
.ws0{word-spacing:-13.860000px;}
.ws12{word-spacing:-13.518000px;}
.ws8{word-spacing:-13.500000px;}
.wsb{word-spacing:-13.482000px;}
.ws14{word-spacing:-13.392000px;}
.wsa{word-spacing:-13.140000px;}
.ws7{word-spacing:-12.906000px;}
.ws3{word-spacing:-12.420000px;}
.ws6{word-spacing:-12.060000px;}
.ws10{word-spacing:-11.836200px;}
.ws1b{word-spacing:-11.790600px;}
.wse{word-spacing:-11.700000px;}
.ws1a{word-spacing:-11.388000px;}
.ws1{word-spacing:-10.440000px;}
.ws2{word-spacing:-10.213800px;}
.ws18{word-spacing:-9.737280px;}
.ws16{word-spacing:-9.000000px;}
.ws15{word-spacing:-8.856000px;}
.ws1c{word-spacing:-7.316400px;}
.wsd{word-spacing:0.000000px;}
._1e{margin-left:-11.841600px;}
._19{margin-left:-2.250000px;}
._3{margin-left:-1.080000px;}
._1{width:1.085760px;}
._0{width:2.129760px;}
._2{width:3.311040px;}
._c{width:4.482000px;}
._8{width:5.886000px;}
._15{width:6.907440px;}
._5{width:7.938000px;}
._9{width:9.084480px;}
._6{width:10.332000px;}
._a{width:11.520720px;}
._13{width:13.326480px;}
._d{width:14.533200px;}
._e{width:15.606000px;}
._b{width:17.064000px;}
._14{width:18.206160px;}
._12{width:19.481760px;}
._17{width:21.183120px;}
._f{width:24.666240px;}
._10{width:26.757840px;}
._16{width:27.876240px;}
._11{width:29.699997px;}
._26{width:35.285760px;}
._27{width:36.386640px;}
._1f{width:37.514160px;}
._1a{width:41.698080px;}
._1d{width:42.723360px;}
._20{width:46.280880px;}
._21{width:48.521520px;}
._23{width:51.230880px;}
._24{width:52.533360px;}
._25{width:54.181440px;}
._1c{width:57.984480px;}
._1b{width:59.142240px;}
._22{width:60.589440px;}
._7{width:62.831280px;}
._18{width:149.061600px;}
._4{width:2067.966720px;}
.fc9{color:rgb(0,0,255);}
.fc7{color:transparent;}
.fc6{color:rgb(3,50,255);}
.fc8{color:rgb(146,208,80);}
.fc3{color:rgb(255,0,0);}
.fca{color:rgb(34,34,34);}
.fc5{color:rgb(166,166,166);}
.fc4{color:rgb(128,128,128);}
.fc2{color:rgb(13,13,13);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:5.760000px;}
.fsa{font-size:12.240000px;}
.fsb{font-size:18.000000px;}
.fsd{font-size:30.240000px;}
.fs8{font-size:36.000000px;}
.fs6{font-size:38.880000px;}
.fs1{font-size:41.760000px;}
.fs3{font-size:48.240000px;}
.fs0{font-size:54.000000px;}
.fs9{font-size:56.920429px;}
.fs5{font-size:59.760000px;}
.fsf{font-size:62.991941px;}
.fsc{font-size:66.240000px;}
.fs4{font-size:72.000000px;}
.fse{font-size:84.240000px;}
.fs2{font-size:126.000000px;}
.y0{bottom:0.000000px;}
.yfe{bottom:2.880000px;}
.y10a{bottom:3.225000px;}
.y101{bottom:3.240000px;}
.y45{bottom:4.320000px;}
.y8d{bottom:5.220000px;}
.y115{bottom:5.385000px;}
.y2b{bottom:5.580000px;}
.y113{bottom:5.745000px;}
.y90{bottom:5.760000px;}
.y119{bottom:5.796000px;}
.y117{bottom:6.105000px;}
.y124{bottom:6.120000px;}
.y11b{bottom:6.480000px;}
.y107{bottom:7.005000px;}
.y103{bottom:7.020000px;}
.y105{bottom:7.365000px;}
.y127{bottom:7.920000px;}
.y12f{bottom:8.640000px;}
.y122{bottom:9.540000px;}
.y120{bottom:9.900000px;}
.yd1{bottom:10.425000px;}
.yfc{bottom:10.620000px;}
.yd0{bottom:11.145000px;}
.y100{bottom:11.880000px;}
.y111{bottom:13.485000px;}
.y3{bottom:18.000000px;}
.y44{bottom:18.180000px;}
.yfd{bottom:18.360000px;}
.y48{bottom:18.900000px;}
.y81{bottom:19.260000px;}
.yfa{bottom:19.620000px;}
.y112{bottom:21.225000px;}
.y2a{bottom:23.400000px;}
.yce{bottom:25.365000px;}
.yff{bottom:27.360000px;}
.y2{bottom:30.060000px;}
.y29{bottom:37.260000px;}
.y1{bottom:43.020000px;}
.y28{bottom:44.820000px;}
.y27{bottom:60.480000px;}
.y26{bottom:75.960000px;}
.ybd{bottom:77.040000px;}
.y7e{bottom:80.100000px;}
.ydd{bottom:81.000000px;}
.y11e{bottom:81.180000px;}
.y188{bottom:82.620000px;}
.y157{bottom:85.320000px;}
.y42{bottom:88.560000px;}
.y25{bottom:91.440000px;}
.y11d{bottom:95.040000px;}
.y187{bottom:96.480000px;}
.ybc{bottom:97.020000px;}
.y7d{bottom:99.900000px;}
.ydc{bottom:100.800000px;}
.y156{bottom:105.120000px;}
.y11c{bottom:106.560000px;}
.y24{bottom:106.920000px;}
.y41{bottom:108.360000px;}
.y186{bottom:110.340000px;}
.y1c5{bottom:114.840000px;}
.ybb{bottom:116.820000px;}
.y7c{bottom:119.700000px;}
.y1fa{bottom:120.600000px;}
.ydb{bottom:120.780000px;}
.y11a{bottom:122.040000px;}
.y23{bottom:122.580000px;}
.y155{bottom:124.920000px;}
.y40{bottom:128.160000px;}
.y1c4{bottom:128.700000px;}
.y185{bottom:130.140000px;}
.y1f9{bottom:136.260000px;}
.yba{bottom:136.620000px;}
.y22{bottom:138.090000px;}
.y7b{bottom:139.500000px;}
.yda{bottom:140.220000px;}
.y184{bottom:143.820000px;}
.y118{bottom:144.000000px;}
.y154{bottom:144.720000px;}
.y3f{bottom:147.960000px;}
.y1c3{bottom:148.500000px;}
.y1f8{bottom:151.770000px;}
.y21{bottom:153.570000px;}
.yb9{bottom:156.450000px;}
.y7a{bottom:159.330000px;}
.yd9{bottom:160.410000px;}
.y1c2{bottom:162.390000px;}
.y183{bottom:163.650000px;}
.y153{bottom:164.550000px;}
.y116{bottom:164.565000px;}
.y1f7{bottom:167.250000px;}
.y3e{bottom:167.790000px;}
.y20{bottom:169.050000px;}
.y1c1{bottom:176.070000px;}
.yb8{bottom:176.250000px;}
.y182{bottom:177.510000px;}
.yd8{bottom:178.950000px;}
.y79{bottom:179.310000px;}
.y2d{bottom:179.490000px;}
.y1f6{bottom:182.730000px;}
.y152{bottom:184.530000px;}
.y1f{bottom:184.710000px;}
.y114{bottom:185.625000px;}
.y3d{bottom:187.590000px;}
.y1c0{bottom:189.930000px;}
.y181{bottom:191.370000px;}
.yd7{bottom:194.790000px;}
.yb7{bottom:195.870000px;}
.y1f5{bottom:198.390000px;}
.y78{bottom:199.110000px;}
.y1e{bottom:200.190000px;}
.y1bf{bottom:203.790000px;}
.y151{bottom:204.330000px;}
.y110{bottom:206.145000px;}
.yd6{bottom:206.685000px;}
.y3c{bottom:207.570000px;}
.y180{bottom:211.170000px;}
.y1f4{bottom:213.870000px;}
.y1d{bottom:215.670000px;}
.yb6{bottom:216.030000px;}
.y77{bottom:218.910000px;}
.y1be{bottom:223.590000px;}
.y150{bottom:224.130000px;}
.y17f{bottom:224.850000px;}
.y3b{bottom:227.370000px;}
.y1f3{bottom:229.350000px;}
.y1c{bottom:231.150000px;}
.yd5{bottom:235.485000px;}
.yb5{bottom:235.830000px;}
.y76{bottom:238.710000px;}
.y1bd{bottom:243.390000px;}
.y14f{bottom:243.930000px;}
.y1f2{bottom:244.830000px;}
.y1b{bottom:246.630000px;}
.y3a{bottom:247.170000px;}
.y10f{bottom:247.350000px;}
.yb4{bottom:255.630000px;}
.y1bc{bottom:257.070000px;}
.y75{bottom:258.150000px;}
.y1a{bottom:262.290000px;}
.y14e{bottom:263.730000px;}
.yd4{bottom:264.465000px;}
.y10e{bottom:264.630000px;}
.y39{bottom:266.970000px;}
.y17e{bottom:275.070000px;}
.yb3{bottom:275.430000px;}
.y1f1{bottom:275.970000px;}
.y1bb{bottom:276.870000px;}
.y19{bottom:277.770000px;}
.y74{bottom:278.130000px;}
.y10d{bottom:282.270000px;}
.y14d{bottom:283.710000px;}
.y38{bottom:286.770000px;}
.y1ba{bottom:290.730000px;}
.y1f0{bottom:291.450000px;}
.y18{bottom:293.250000px;}
.yd3{bottom:293.445000px;}
.yb2{bottom:295.410000px;}
.y17d{bottom:296.310000px;}
.y73{bottom:298.290000px;}
.y10c{bottom:301.890000px;}
.y14c{bottom:303.510000px;}
.y1b9{bottom:304.590000px;}
.y37{bottom:306.750000px;}
.y17{bottom:308.730000px;}
.y1ef{bottom:313.050000px;}
.yb1{bottom:315.210000px;}
.y10b{bottom:315.570000px;}
.y72{bottom:318.090000px;}
.y17c{bottom:319.170000px;}
.yd2{bottom:322.425000px;}
.y14b{bottom:323.310000px;}
.y16{bottom:324.390000px;}
.y36{bottom:326.550000px;}
.y109{bottom:327.285000px;}
.y1ee{bottom:334.470000px;}
.yb0{bottom:334.650000px;}
.y71{bottom:337.890000px;}
.y1b8{bottom:338.070000px;}
.y17b{bottom:338.970000px;}
.y14a{bottom:343.110000px;}
.y108{bottom:343.485000px;}
.y15{bottom:346.350000px;}
.ycd{bottom:352.125000px;}
.yaf{bottom:354.450000px;}
.y1ed{bottom:356.070000px;}
.y70{bottom:357.690000px;}
.y1b7{bottom:357.870000px;}
.y17a{bottom:358.770000px;}
.y2c{bottom:358.950000px;}
.y149{bottom:362.910000px;}
.y35{bottom:366.150000px;}
.y106{bottom:367.245000px;}
.y1b6{bottom:371.730000px;}
.yae{bottom:374.610000px;}
.y1ec{bottom:377.490000px;}
.y6f{bottom:377.670000px;}
.y179{bottom:378.750000px;}
.ycf{bottom:380.565000px;}
.y148{bottom:382.890000px;}
.y1b5{bottom:385.590000px;}
.y34{bottom:385.950000px;}
.y104{bottom:390.285000px;}
.yad{bottom:394.590000px;}
.y6e{bottom:397.470000px;}
.y178{bottom:398.190000px;}
.y1eb{bottom:399.135000px;}
.y147{bottom:402.735000px;}
.y1b4{bottom:405.435000px;}
.y33{bottom:405.975000px;}
.y102{bottom:414.075000px;}
.yac{bottom:414.435000px;}
.y6d{bottom:417.315000px;}
.y177{bottom:418.035000px;}
.y1b3{bottom:419.115000px;}
.y1ea{bottom:420.735000px;}
.y146{bottom:422.535000px;}
.y32{bottom:425.775000px;}
.yab{bottom:433.875000px;}
.y6c{bottom:437.115000px;}
.yf9{bottom:437.835000px;}
.y176{bottom:438.195000px;}
.y1b2{bottom:438.915000px;}
.y1e9{bottom:442.155000px;}
.y145{bottom:442.335000px;}
.y31{bottom:445.575000px;}
.y1b1{bottom:452.775000px;}
.yaa{bottom:454.035000px;}
.yfb{bottom:455.655000px;}
.y6b{bottom:456.555000px;}
.y175{bottom:457.995000px;}
.y144{bottom:462.135000px;}
.y1e8{bottom:463.755000px;}
.y30{bottom:465.015000px;}
.y1b0{bottom:472.575000px;}
.ya9{bottom:473.835000px;}
.y6a{bottom:476.535000px;}
.ycc{bottom:476.895000px;}
.y174{bottom:477.615000px;}
.y143{bottom:482.115000px;}
.y2f{bottom:484.815000px;}
.y1e7{bottom:485.175000px;}
.y1af{bottom:486.435000px;}
.yf8{bottom:491.115000px;}
.ya8{bottom:493.815000px;}
.y69{bottom:496.695000px;}
.y173{bottom:497.415000px;}
.y1ae{bottom:500.115000px;}
.y142{bottom:501.915000px;}
.y2e{bottom:505.155000px;}
.y1e6{bottom:506.775000px;}
.yf7{bottom:508.395000px;}
.ya7{bottom:513.615000px;}
.y68{bottom:516.495000px;}
.y172{bottom:517.575000px;}
.y14{bottom:518.835000px;}
.y1ad{bottom:519.915000px;}
.y141{bottom:521.715000px;}
.yf6{bottom:525.675000px;}
.y1e5{bottom:528.195000px;}
.ya6{bottom:533.415000px;}
.y1ac{bottom:533.775000px;}
.ycb{bottom:535.935000px;}
.y67{bottom:536.295000px;}
.y171{bottom:537.015000px;}
.y140{bottom:541.515000px;}
.yf5{bottom:545.295000px;}
.y1e4{bottom:549.795000px;}
.ya5{bottom:553.215000px;}
.y1ab{bottom:553.575000px;}
.yca{bottom:555.735000px;}
.y66{bottom:556.095000px;}
.y170{bottom:556.815000px;}
.y13f{bottom:561.315000px;}
.yf4{bottom:565.095000px;}
.y1aa{bottom:567.435000px;}
.y1e3{bottom:571.395000px;}
.ya4{bottom:573.015000px;}
.y65{bottom:575.715000px;}
.yc9{bottom:576.075000px;}
.y16f{bottom:576.975000px;}
.y13e{bottom:581.295000px;}
.yf3{bottom:585.075000px;}
.y1a9{bottom:587.235000px;}
.ya3{bottom:592.635000px;}
.y1e2{bottom:592.815000px;}
.y64{bottom:595.515000px;}
.yc8{bottom:595.875000px;}
.y16e{bottom:596.955000px;}
.y1a8{bottom:600.915000px;}
.y13d{bottom:601.095000px;}
.yf2{bottom:604.875000px;}
.ya2{bottom:612.435000px;}
.y1e1{bottom:614.415000px;}
.y1a7{bottom:614.775000px;}
.y63{bottom:615.675000px;}
.y16d{bottom:616.395000px;}
.y13c{bottom:620.895000px;}
.yf1{bottom:624.675000px;}
.ya1{bottom:632.595000px;}
.y1a6{bottom:634.575000px;}
.y62{bottom:635.475000px;}
.y1e0{bottom:635.835000px;}
.y16c{bottom:636.195000px;}
.y13b{bottom:640.695000px;}
.yf0{bottom:644.115000px;}
.y1a5{bottom:648.465000px;}
.ya0{bottom:649.365000px;}
.y61{bottom:655.305000px;}
.y16b{bottom:656.385000px;}
.y1df{bottom:657.465000px;}
.y13a{bottom:660.525000px;}
.y1a4{bottom:662.145000px;}
.y9f{bottom:663.045000px;}
.yef{bottom:663.945000px;}
.yc7{bottom:674.925000px;}
.y60{bottom:675.285000px;}
.y16a{bottom:676.185000px;}
.y9e{bottom:676.905000px;}
.y1de{bottom:678.885000px;}
.y139{bottom:680.145000px;}
.y1a3{bottom:681.945000px;}
.yee{bottom:684.285000px;}
.y9d{bottom:688.065000px;}
.yc6{bottom:694.725000px;}
.y5f{bottom:695.085000px;}
.y169{bottom:695.805000px;}
.y138{bottom:699.945000px;}
.y1dd{bottom:700.485000px;}
.yed{bottom:704.085000px;}
.y9c{bottom:705.885000px;}
.y1a2{bottom:709.665000px;}
.y5e{bottom:714.525000px;}
.yc5{bottom:714.885000px;}
.y168{bottom:715.605000px;}
.y1dc{bottom:722.085000px;}
.y137{bottom:722.625000px;}
.y9b{bottom:723.705000px;}
.yec{bottom:723.885000px;}
.y1a1{bottom:729.465000px;}
.y5d{bottom:734.325000px;}
.yc4{bottom:734.685000px;}
.y167{bottom:735.765000px;}
.y1db{bottom:740.445000px;}
.y9a{bottom:741.705000px;}
.y1a0{bottom:743.145000px;}
.yeb{bottom:743.685000px;}
.y136{bottom:746.565000px;}
.y5c{bottom:754.485000px;}
.y166{bottom:755.565000px;}
.y19f{bottom:757.005000px;}
.y99{bottom:759.525000px;}
.y1da{bottom:760.245000px;}
.y135{bottom:762.405000px;}
.yea{bottom:763.485000px;}
.y134{bottom:774.285000px;}
.y5b{bottom:774.465000px;}
.y165{bottom:775.365000px;}
.y19e{bottom:776.805000px;}
.y98{bottom:777.345000px;}
.y1d9{bottom:780.045000px;}
.ye9{bottom:783.465000px;}
.y19d{bottom:790.485000px;}
.y133{bottom:792.105000px;}
.y5a{bottom:794.265000px;}
.y164{bottom:795.345000px;}
.y97{bottom:795.525000px;}
.y1d8{bottom:799.845000px;}
.ye8{bottom:802.905000px;}
.y19c{bottom:804.345000px;}
.y132{bottom:809.925000px;}
.y96{bottom:813.345000px;}
.yc3{bottom:813.705000px;}
.y59{bottom:814.065000px;}
.y163{bottom:814.785000px;}
.y1d7{bottom:819.825000px;}
.ye7{bottom:822.705000px;}
.y19b{bottom:824.145000px;}
.y131{bottom:827.745000px;}
.y95{bottom:831.345000px;}
.y58{bottom:833.505000px;}
.y162{bottom:834.585000px;}
.y19a{bottom:838.005000px;}
.y1d6{bottom:839.625000px;}
.ye6{bottom:842.865000px;}
.y130{bottom:845.565000px;}
.y94{bottom:849.165000px;}
.y57{bottom:853.305000px;}
.y161{bottom:854.385000px;}
.y199{bottom:857.805000px;}
.y1d5{bottom:859.425000px;}
.ye5{bottom:862.665000px;}
.y12e{bottom:864.285000px;}
.y93{bottom:866.985000px;}
.y198{bottom:871.485000px;}
.y56{bottom:873.285000px;}
.y160{bottom:875.625000px;}
.y1d4{bottom:879.225000px;}
.ye4{bottom:882.285000px;}
.y13{bottom:883.545000px;}
.y92{bottom:884.805000px;}
.y197{bottom:891.285000px;}
.y12d{bottom:892.365000px;}
.y55{bottom:893.085000px;}
.yc2{bottom:893.445000px;}
.y15f{bottom:898.530000px;}
.y1d3{bottom:899.070000px;}
.y12{bottom:902.490000px;}
.y91{bottom:902.670000px;}
.y196{bottom:911.130000px;}
.y12c{bottom:912.390000px;}
.y54{bottom:913.290000px;}
.y11{bottom:914.730000px;}
.y15e{bottom:918.330000px;}
.y1d2{bottom:919.050000px;}
.y8f{bottom:920.490000px;}
.ye3{bottom:922.290000px;}
.y195{bottom:924.990000px;}
.y10{bottom:928.590000px;}
.y53{bottom:933.090000px;}
.y12b{bottom:934.350000px;}
.y15d{bottom:938.130000px;}
.y8e{bottom:938.490000px;}
.y1d1{bottom:938.850000px;}
.ye2{bottom:942.090000px;}
.yf{bottom:943.350000px;}
.y194{bottom:944.790000px;}
.yc1{bottom:952.530000px;}
.y52{bottom:952.890000px;}
.ye{bottom:956.130000px;}
.y8c{bottom:957.030000px;}
.y15c{bottom:957.930000px;}
.y12a{bottom:958.650000px;}
.ye1{bottom:961.890000px;}
.y193{bottom:972.330000px;}
.yc0{bottom:972.510000px;}
.y51{bottom:972.870000px;}
.y129{bottom:974.490000px;}
.yd{bottom:975.570000px;}
.y15b{bottom:977.910000px;}
.y1d0{bottom:978.450000px;}
.ye0{bottom:981.510000px;}
.y8b{bottom:981.870000px;}
.y128{bottom:986.190000px;}
.y192{bottom:992.130000px;}
.y50{bottom:992.670000px;}
.yc{bottom:995.910000px;}
.y15a{bottom:997.710000px;}
.y1cf{bottom:998.250000px;}
.ydf{bottom:1001.310000px;}
.y8a{bottom:1001.670000px;}
.y126{bottom:1005.990000px;}
.y191{bottom:1011.930000px;}
.y4f{bottom:1012.470000px;}
.y159{bottom:1017.150000px;}
.y1ce{bottom:1020.930000px;}
.y89{bottom:1021.470000px;}
.y190{bottom:1025.790000px;}
.y125{bottom:1029.390000px;}
.yb{bottom:1032.270000px;}
.y1cd{bottom:1034.790000px;}
.y158{bottom:1038.210000px;}
.y18f{bottom:1039.650000px;}
.y88{bottom:1041.270000px;}
.y1cc{bottom:1048.650000px;}
.y123{bottom:1049.190000px;}
.y4e{bottom:1052.070000px;}
.y18e{bottom:1059.450000px;}
.y87{bottom:1061.070000px;}
.ya{bottom:1068.450000px;}
.y121{bottom:1068.990000px;}
.ybf{bottom:1071.690000px;}
.y4d{bottom:1072.050000px;}
.y18d{bottom:1073.130000px;}
.y86{bottom:1081.050000px;}
.y1cb{bottom:1082.130000px;}
.ybe{bottom:1091.490000px;}
.y4c{bottom:1091.850000px;}
.y18c{bottom:1092.930000px;}
.y11f{bottom:1096.350000px;}
.y85{bottom:1100.850000px;}
.y9{bottom:1101.210000px;}
.y1ca{bottom:1101.930000px;}
.y18b{bottom:1106.790000px;}
.y4b{bottom:1111.650000px;}
.y43{bottom:1112.730000px;}
.y1c9{bottom:1115.790000px;}
.y8{bottom:1117.950000px;}
.y84{bottom:1120.650000px;}
.y18a{bottom:1126.590000px;}
.y4a{bottom:1131.450000px;}
.y1c8{bottom:1135.590000px;}
.y83{bottom:1140.450000px;}
.y1c7{bottom:1149.480000px;}
.y49{bottom:1151.280000px;}
.y189{bottom:1154.160000px;}
.y7{bottom:1155.960000px;}
.yde{bottom:1159.920000px;}
.y82{bottom:1160.280000px;}
.y1c6{bottom:1163.160000px;}
.y6{bottom:1167.480000px;}
.y47{bottom:1169.460000px;}
.y5{bottom:1175.940000px;}
.y80{bottom:1178.460000px;}
.y46{bottom:1188.720000px;}
.y4{bottom:1197.540000px;}
.y7f{bottom:1197.720000px;}
.h7{height:5.650313px;}
.h10{height:12.012891px;}
.h25{height:15.465000px;}
.h33{height:15.478500px;}
.h18{height:17.805000px;}
.h1b{height:17.820000px;}
.h1a{height:17.842500px;}
.h19{height:17.985000px;}
.h1c{height:18.000000px;}
.h12{height:18.140625px;}
.h2f{height:19.785000px;}
.h31{height:20.556000px;}
.h30{height:21.045000px;}
.h39{height:21.240000px;}
.h32{height:21.958500px;}
.h26{height:23.025000px;}
.h37{height:23.385000px;}
.h2a{height:23.745000px;}
.h28{height:23.781000px;}
.h35{height:26.625000px;}
.h14{height:27.705000px;}
.h34{height:28.245000px;}
.h21{height:28.785000px;}
.h20{height:28.965000px;}
.h1f{height:29.901000px;}
.h24{height:30.945000px;}
.h2d{height:36.705000px;}
.h3{height:40.985156px;}
.h15{height:42.922699px;}
.h8{height:47.344922px;}
.h5{height:48.616875px;}
.h22{height:48.765000px;}
.h2c{height:50.558906px;}
.he{height:52.971680px;}
.h2{height:52.998047px;}
.h17{height:53.573906px;}
.h9{height:54.421875px;}
.h2b{height:55.503491px;}
.h23{height:56.214844px;}
.h1e{height:58.341000px;}
.hf{height:58.505231px;}
.hc{height:58.651172px;}
.h27{height:59.092031px;}
.h29{height:59.272031px;}
.h2e{height:60.041250px;}
.ha{height:60.226875px;}
.h1d{height:61.423863px;}
.hd{height:62.211094px;}
.h36{height:65.518594px;}
.h3b{height:65.575595px;}
.h13{height:66.757500px;}
.h16{height:70.664062px;}
.h6{height:72.562500px;}
.h3a{height:82.676953px;}
.h38{height:84.898125px;}
.h4{height:126.984375px;}
.hb{height:131.167969px;}
.h11{height:358.950000px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.w1d{width:84.585000px;}
.w1b{width:87.465000px;}
.w1f{width:87.825000px;}
.w1c{width:88.041000px;}
.w9{width:88.549500px;}
.w17{width:91.470000px;}
.w18{width:91.641000px;}
.w19{width:94.680000px;}
.w1a{width:94.716000px;}
.w1e{width:95.076000px;}
.w14{width:97.909500px;}
.wf{width:100.476000px;}
.we{width:100.620000px;}
.w10{width:100.821000px;}
.w13{width:100.836000px;}
.w11{width:100.965000px;}
.w12{width:100.980000px;}
.wd{width:101.001000px;}
.w3{width:101.730000px;}
.w25{width:102.589500px;}
.w20{width:103.669500px;}
.w28{width:141.681000px;}
.wc{width:141.870000px;}
.w27{width:141.876000px;}
.w21{width:152.835000px;}
.w23{width:156.435000px;}
.w24{width:159.510000px;}
.w22{width:161.130000px;}
.w26{width:173.895000px;}
.w29{width:175.170000px;}
.w7{width:182.190000px;}
.w6{width:182.355000px;}
.w2a{width:195.499500px;}
.wa{width:201.615000px;}
.w4{width:232.050000px;}
.w2c{width:256.920000px;}
.w16{width:260.115000px;}
.w15{width:281.040000px;}
.w2b{width:282.090000px;}
.wb{width:302.295000px;}
.w5{width:364.564500px;}
.w2{width:640.890000px;}
.w8{width:729.135000px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.xb{left:-20.700000px;}
.x0{left:0.000000px;}
.x32{left:5.025000px;}
.x33{left:6.480000px;}
.x11{left:8.089500px;}
.xa{left:10.650000px;}
.x1d{left:12.600000px;}
.x22{left:14.580000px;}
.x2c{left:17.310000px;}
.x2d{left:18.390000px;}
.x18{left:20.329500px;}
.x38{left:21.405000px;}
.x1f{left:22.500000px;}
.x9{left:26.850000px;}
.x14{left:30.060000px;}
.x35{left:33.645000px;}
.x34{left:35.625000px;}
.x12{left:37.065000px;}
.x36{left:38.910000px;}
.x23{left:40.140000px;}
.x8{left:42.510000px;}
.x24{left:43.560000px;}
.x3b{left:45.360000px;}
.x3e{left:46.440000px;}
.x3f{left:47.505000px;}
.x40{left:49.860000px;}
.x7{left:58.710000px;}
.x25{left:62.310000px;}
.x39{left:65.190000px;}
.x2a{left:66.405000px;}
.x29{left:67.485000px;}
.x42{left:69.510000px;}
.x41{left:71.850000px;}
.x15{left:75.765000px;}
.x6{left:78.150000px;}
.x16{left:79.185000px;}
.x2{left:81.036000px;}
.x17{left:82.605000px;}
.x49{left:92.010000px;}
.x4a{left:94.350000px;}
.x27{left:97.590000px;}
.x1b{left:106.230000px;}
.xe{left:108.036000px;}
.x4e{left:113.076000px;}
.x4c{left:119.910000px;}
.x4b{left:132.330000px;}
.x4d{left:135.036000px;}
.x4f{left:158.250000px;}
.x19{left:167.445000px;}
.x26{left:178.965000px;}
.x43{left:181.485000px;}
.x37{left:184.725000px;}
.x1e{left:268.455000px;}
.x2e{left:270.615000px;}
.x47{left:274.395000px;}
.x3a{left:337.575000px;}
.x44{left:355.395000px;}
.xf{left:359.715000px;}
.x2f{left:365.295000px;}
.x1a{left:369.795000px;}
.xd{left:414.825000px;}
.x10{left:434.265000px;}
.x1{left:435.345000px;}
.x3{left:445.605000px;}
.x28{left:460.740000px;}
.x20{left:470.280000px;}
.x45{left:497.280000px;}
.x3c{left:498.720000px;}
.x4{left:530.025000px;}
.x30{left:548.220000px;}
.x48{left:556.500000px;}
.x21{left:571.110000px;}
.xc{left:590.370000px;}
.x13{left:627.990000px;}
.x31{left:636.270000px;}
.x46{left:638.970000px;}
.x3d{left:655.170000px;}
.x1c{left:672.090000px;}
.x2b{left:720.870000px;}
.x5{left:721.950000px;}
@media print{
.v7{vertical-align:-55.040000pt;}
.v3{vertical-align:-51.306669pt;}
.v6{vertical-align:-21.120000pt;}
.v0{vertical-align:0.000000pt;}
.v5{vertical-align:18.560000pt;}
.v4{vertical-align:21.120000pt;}
.v1{vertical-align:24.320000pt;}
.v2{vertical-align:26.880000pt;}
.ls13{letter-spacing:-0.640000pt;}
.ls18{letter-spacing:-0.624000pt;}
.ls1b{letter-spacing:-0.597333pt;}
.ls8{letter-spacing:-0.528000pt;}
.lsd{letter-spacing:-0.480000pt;}
.lsa{letter-spacing:-0.320000pt;}
.ls1c{letter-spacing:-0.239467pt;}
.ls1f{letter-spacing:-0.216533pt;}
.ls7{letter-spacing:-0.201067pt;}
.lsf{letter-spacing:-0.198933pt;}
.ls14{letter-spacing:-0.128000pt;}
.ls12{letter-spacing:-0.096000pt;}
.ls11{letter-spacing:-0.047360pt;}
.lsb{letter-spacing:-0.016000pt;}
.ls6{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.011520pt;}
.ls19{letter-spacing:0.015360pt;}
.ls5{letter-spacing:0.016000pt;}
.ls1a{letter-spacing:0.047360pt;}
.lsc{letter-spacing:0.096000pt;}
.ls4{letter-spacing:0.160000pt;}
.lse{letter-spacing:0.230933pt;}
.ls1e{letter-spacing:0.239467pt;}
.ls9{letter-spacing:0.271467pt;}
.ls3{letter-spacing:0.280320pt;}
.ls0{letter-spacing:0.320000pt;}
.ls10{letter-spacing:0.592000pt;}
.ls1{letter-spacing:0.640000pt;}
.ls1d{letter-spacing:0.800000pt;}
.ls17{letter-spacing:0.821333pt;}
.ls16{letter-spacing:2.720000pt;}
.ls15{letter-spacing:4.640000pt;}
.ws4{word-spacing:-16.000000pt;}
.ws9{word-spacing:-14.991467pt;}
.ws17{word-spacing:-14.101333pt;}
.ws11{word-spacing:-13.872000pt;}
.wsc{word-spacing:-13.600000pt;}
.wsf{word-spacing:-13.510933pt;}
.ws19{word-spacing:-13.327360pt;}
.ws5{word-spacing:-13.280000pt;}
.ws13{word-spacing:-13.232640pt;}
.ws0{word-spacing:-12.320000pt;}
.ws12{word-spacing:-12.016000pt;}
.ws8{word-spacing:-12.000000pt;}
.wsb{word-spacing:-11.984000pt;}
.ws14{word-spacing:-11.904000pt;}
.wsa{word-spacing:-11.680000pt;}
.ws7{word-spacing:-11.472000pt;}
.ws3{word-spacing:-11.040000pt;}
.ws6{word-spacing:-10.720000pt;}
.ws10{word-spacing:-10.521067pt;}
.ws1b{word-spacing:-10.480533pt;}
.wse{word-spacing:-10.400000pt;}
.ws1a{word-spacing:-10.122667pt;}
.ws1{word-spacing:-9.280000pt;}
.ws2{word-spacing:-9.078933pt;}
.ws18{word-spacing:-8.655360pt;}
.ws16{word-spacing:-8.000000pt;}
.ws15{word-spacing:-7.872000pt;}
.ws1c{word-spacing:-6.503467pt;}
.wsd{word-spacing:0.000000pt;}
._1e{margin-left:-10.525867pt;}
._19{margin-left:-2.000000pt;}
._3{margin-left:-0.960000pt;}
._1{width:0.965120pt;}
._0{width:1.893120pt;}
._2{width:2.943147pt;}
._c{width:3.984000pt;}
._8{width:5.232000pt;}
._15{width:6.139947pt;}
._5{width:7.056000pt;}
._9{width:8.075093pt;}
._6{width:9.184000pt;}
._a{width:10.240640pt;}
._13{width:11.845760pt;}
._d{width:12.918400pt;}
._e{width:13.872000pt;}
._b{width:15.168000pt;}
._14{width:16.183253pt;}
._12{width:17.317120pt;}
._17{width:18.829440pt;}
._f{width:21.925547pt;}
._10{width:23.784747pt;}
._16{width:24.778880pt;}
._11{width:26.399997pt;}
._26{width:31.365120pt;}
._27{width:32.343680pt;}
._1f{width:33.345920pt;}
._1a{width:37.064960pt;}
._1d{width:37.976320pt;}
._20{width:41.138560pt;}
._21{width:43.130240pt;}
._23{width:45.538560pt;}
._24{width:46.696320pt;}
._25{width:48.161280pt;}
._1c{width:51.541760pt;}
._1b{width:52.570880pt;}
._22{width:53.857280pt;}
._7{width:55.850027pt;}
._18{width:132.499200pt;}
._4{width:1838.192640pt;}
.fs7{font-size:5.120000pt;}
.fsa{font-size:10.880000pt;}
.fsb{font-size:16.000000pt;}
.fsd{font-size:26.880000pt;}
.fs8{font-size:32.000000pt;}
.fs6{font-size:34.560000pt;}
.fs1{font-size:37.120000pt;}
.fs3{font-size:42.880000pt;}
.fs0{font-size:48.000000pt;}
.fs9{font-size:50.595937pt;}
.fs5{font-size:53.120000pt;}
.fsf{font-size:55.992837pt;}
.fsc{font-size:58.880000pt;}
.fs4{font-size:64.000000pt;}
.fse{font-size:74.880000pt;}
.fs2{font-size:112.000000pt;}
.y0{bottom:0.000000pt;}
.yfe{bottom:2.560000pt;}
.y10a{bottom:2.866667pt;}
.y101{bottom:2.880000pt;}
.y45{bottom:3.840000pt;}
.y8d{bottom:4.640000pt;}
.y115{bottom:4.786667pt;}
.y2b{bottom:4.960000pt;}
.y113{bottom:5.106667pt;}
.y90{bottom:5.120000pt;}
.y119{bottom:5.152000pt;}
.y117{bottom:5.426667pt;}
.y124{bottom:5.440000pt;}
.y11b{bottom:5.760000pt;}
.y107{bottom:6.226667pt;}
.y103{bottom:6.240000pt;}
.y105{bottom:6.546667pt;}
.y127{bottom:7.040000pt;}
.y12f{bottom:7.680000pt;}
.y122{bottom:8.480000pt;}
.y120{bottom:8.800000pt;}
.yd1{bottom:9.266667pt;}
.yfc{bottom:9.440000pt;}
.yd0{bottom:9.906667pt;}
.y100{bottom:10.560000pt;}
.y111{bottom:11.986667pt;}
.y3{bottom:16.000000pt;}
.y44{bottom:16.160000pt;}
.yfd{bottom:16.320000pt;}
.y48{bottom:16.800000pt;}
.y81{bottom:17.120000pt;}
.yfa{bottom:17.440000pt;}
.y112{bottom:18.866667pt;}
.y2a{bottom:20.800000pt;}
.yce{bottom:22.546667pt;}
.yff{bottom:24.320000pt;}
.y2{bottom:26.720000pt;}
.y29{bottom:33.120000pt;}
.y1{bottom:38.240000pt;}
.y28{bottom:39.840000pt;}
.y27{bottom:53.760000pt;}
.y26{bottom:67.520000pt;}
.ybd{bottom:68.480000pt;}
.y7e{bottom:71.200000pt;}
.ydd{bottom:72.000000pt;}
.y11e{bottom:72.160000pt;}
.y188{bottom:73.440000pt;}
.y157{bottom:75.840000pt;}
.y42{bottom:78.720000pt;}
.y25{bottom:81.280000pt;}
.y11d{bottom:84.480000pt;}
.y187{bottom:85.760000pt;}
.ybc{bottom:86.240000pt;}
.y7d{bottom:88.800000pt;}
.ydc{bottom:89.600000pt;}
.y156{bottom:93.440000pt;}
.y11c{bottom:94.720000pt;}
.y24{bottom:95.040000pt;}
.y41{bottom:96.320000pt;}
.y186{bottom:98.080000pt;}
.y1c5{bottom:102.080000pt;}
.ybb{bottom:103.840000pt;}
.y7c{bottom:106.400000pt;}
.y1fa{bottom:107.200000pt;}
.ydb{bottom:107.360000pt;}
.y11a{bottom:108.480000pt;}
.y23{bottom:108.960000pt;}
.y155{bottom:111.040000pt;}
.y40{bottom:113.920000pt;}
.y1c4{bottom:114.400000pt;}
.y185{bottom:115.680000pt;}
.y1f9{bottom:121.120000pt;}
.yba{bottom:121.440000pt;}
.y22{bottom:122.746667pt;}
.y7b{bottom:124.000000pt;}
.yda{bottom:124.640000pt;}
.y184{bottom:127.840000pt;}
.y118{bottom:128.000000pt;}
.y154{bottom:128.640000pt;}
.y3f{bottom:131.520000pt;}
.y1c3{bottom:132.000000pt;}
.y1f8{bottom:134.906667pt;}
.y21{bottom:136.506667pt;}
.yb9{bottom:139.066667pt;}
.y7a{bottom:141.626667pt;}
.yd9{bottom:142.586667pt;}
.y1c2{bottom:144.346667pt;}
.y183{bottom:145.466667pt;}
.y153{bottom:146.266667pt;}
.y116{bottom:146.280000pt;}
.y1f7{bottom:148.666667pt;}
.y3e{bottom:149.146667pt;}
.y20{bottom:150.266667pt;}
.y1c1{bottom:156.506667pt;}
.yb8{bottom:156.666667pt;}
.y182{bottom:157.786667pt;}
.yd8{bottom:159.066667pt;}
.y79{bottom:159.386667pt;}
.y2d{bottom:159.546667pt;}
.y1f6{bottom:162.426667pt;}
.y152{bottom:164.026667pt;}
.y1f{bottom:164.186667pt;}
.y114{bottom:165.000000pt;}
.y3d{bottom:166.746667pt;}
.y1c0{bottom:168.826667pt;}
.y181{bottom:170.106667pt;}
.yd7{bottom:173.146667pt;}
.yb7{bottom:174.106667pt;}
.y1f5{bottom:176.346667pt;}
.y78{bottom:176.986667pt;}
.y1e{bottom:177.946667pt;}
.y1bf{bottom:181.146667pt;}
.y151{bottom:181.626667pt;}
.y110{bottom:183.240000pt;}
.yd6{bottom:183.720000pt;}
.y3c{bottom:184.506667pt;}
.y180{bottom:187.706667pt;}
.y1f4{bottom:190.106667pt;}
.y1d{bottom:191.706667pt;}
.yb6{bottom:192.026667pt;}
.y77{bottom:194.586667pt;}
.y1be{bottom:198.746667pt;}
.y150{bottom:199.226667pt;}
.y17f{bottom:199.866667pt;}
.y3b{bottom:202.106667pt;}
.y1f3{bottom:203.866667pt;}
.y1c{bottom:205.466667pt;}
.yd5{bottom:209.320000pt;}
.yb5{bottom:209.626667pt;}
.y76{bottom:212.186667pt;}
.y1bd{bottom:216.346667pt;}
.y14f{bottom:216.826667pt;}
.y1f2{bottom:217.626667pt;}
.y1b{bottom:219.226667pt;}
.y3a{bottom:219.706667pt;}
.y10f{bottom:219.866667pt;}
.yb4{bottom:227.226667pt;}
.y1bc{bottom:228.506667pt;}
.y75{bottom:229.466667pt;}
.y1a{bottom:233.146667pt;}
.y14e{bottom:234.426667pt;}
.yd4{bottom:235.080000pt;}
.y10e{bottom:235.226667pt;}
.y39{bottom:237.306667pt;}
.y17e{bottom:244.506667pt;}
.yb3{bottom:244.826667pt;}
.y1f1{bottom:245.306667pt;}
.y1bb{bottom:246.106667pt;}
.y19{bottom:246.906667pt;}
.y74{bottom:247.226667pt;}
.y10d{bottom:250.906667pt;}
.y14d{bottom:252.186667pt;}
.y38{bottom:254.906667pt;}
.y1ba{bottom:258.426667pt;}
.y1f0{bottom:259.066667pt;}
.y18{bottom:260.666667pt;}
.yd3{bottom:260.840000pt;}
.yb2{bottom:262.586667pt;}
.y17d{bottom:263.386667pt;}
.y73{bottom:265.146667pt;}
.y10c{bottom:268.346667pt;}
.y14c{bottom:269.786667pt;}
.y1b9{bottom:270.746667pt;}
.y37{bottom:272.666667pt;}
.y17{bottom:274.426667pt;}
.y1ef{bottom:278.266667pt;}
.yb1{bottom:280.186667pt;}
.y10b{bottom:280.506667pt;}
.y72{bottom:282.746667pt;}
.y17c{bottom:283.706667pt;}
.yd2{bottom:286.600000pt;}
.y14b{bottom:287.386667pt;}
.y16{bottom:288.346667pt;}
.y36{bottom:290.266667pt;}
.y109{bottom:290.920000pt;}
.y1ee{bottom:297.306667pt;}
.yb0{bottom:297.466667pt;}
.y71{bottom:300.346667pt;}
.y1b8{bottom:300.506667pt;}
.y17b{bottom:301.306667pt;}
.y14a{bottom:304.986667pt;}
.y108{bottom:305.320000pt;}
.y15{bottom:307.866667pt;}
.ycd{bottom:313.000000pt;}
.yaf{bottom:315.066667pt;}
.y1ed{bottom:316.506667pt;}
.y70{bottom:317.946667pt;}
.y1b7{bottom:318.106667pt;}
.y17a{bottom:318.906667pt;}
.y2c{bottom:319.066667pt;}
.y149{bottom:322.586667pt;}
.y35{bottom:325.466667pt;}
.y106{bottom:326.440000pt;}
.y1b6{bottom:330.426667pt;}
.yae{bottom:332.986667pt;}
.y1ec{bottom:335.546667pt;}
.y6f{bottom:335.706667pt;}
.y179{bottom:336.666667pt;}
.ycf{bottom:338.280000pt;}
.y148{bottom:340.346667pt;}
.y1b5{bottom:342.746667pt;}
.y34{bottom:343.066667pt;}
.y104{bottom:346.920000pt;}
.yad{bottom:350.746667pt;}
.y6e{bottom:353.306667pt;}
.y178{bottom:353.946667pt;}
.y1eb{bottom:354.786667pt;}
.y147{bottom:357.986667pt;}
.y1b4{bottom:360.386667pt;}
.y33{bottom:360.866667pt;}
.y102{bottom:368.066667pt;}
.yac{bottom:368.386667pt;}
.y6d{bottom:370.946667pt;}
.y177{bottom:371.586667pt;}
.y1b3{bottom:372.546667pt;}
.y1ea{bottom:373.986667pt;}
.y146{bottom:375.586667pt;}
.y32{bottom:378.466667pt;}
.yab{bottom:385.666667pt;}
.y6c{bottom:388.546667pt;}
.yf9{bottom:389.186667pt;}
.y176{bottom:389.506667pt;}
.y1b2{bottom:390.146667pt;}
.y1e9{bottom:393.026667pt;}
.y145{bottom:393.186667pt;}
.y31{bottom:396.066667pt;}
.y1b1{bottom:402.466667pt;}
.yaa{bottom:403.586667pt;}
.yfb{bottom:405.026667pt;}
.y6b{bottom:405.826667pt;}
.y175{bottom:407.106667pt;}
.y144{bottom:410.786667pt;}
.y1e8{bottom:412.226667pt;}
.y30{bottom:413.346667pt;}
.y1b0{bottom:420.066667pt;}
.ya9{bottom:421.186667pt;}
.y6a{bottom:423.586667pt;}
.ycc{bottom:423.906667pt;}
.y174{bottom:424.546667pt;}
.y143{bottom:428.546667pt;}
.y2f{bottom:430.946667pt;}
.y1e7{bottom:431.266667pt;}
.y1af{bottom:432.386667pt;}
.yf8{bottom:436.546667pt;}
.ya8{bottom:438.946667pt;}
.y69{bottom:441.506667pt;}
.y173{bottom:442.146667pt;}
.y1ae{bottom:444.546667pt;}
.y142{bottom:446.146667pt;}
.y2e{bottom:449.026667pt;}
.y1e6{bottom:450.466667pt;}
.yf7{bottom:451.906667pt;}
.ya7{bottom:456.546667pt;}
.y68{bottom:459.106667pt;}
.y172{bottom:460.066667pt;}
.y14{bottom:461.186667pt;}
.y1ad{bottom:462.146667pt;}
.y141{bottom:463.746667pt;}
.yf6{bottom:467.266667pt;}
.y1e5{bottom:469.506667pt;}
.ya6{bottom:474.146667pt;}
.y1ac{bottom:474.466667pt;}
.ycb{bottom:476.386667pt;}
.y67{bottom:476.706667pt;}
.y171{bottom:477.346667pt;}
.y140{bottom:481.346667pt;}
.yf5{bottom:484.706667pt;}
.y1e4{bottom:488.706667pt;}
.ya5{bottom:491.746667pt;}
.y1ab{bottom:492.066667pt;}
.yca{bottom:493.986667pt;}
.y66{bottom:494.306667pt;}
.y170{bottom:494.946667pt;}
.y13f{bottom:498.946667pt;}
.yf4{bottom:502.306667pt;}
.y1aa{bottom:504.386667pt;}
.y1e3{bottom:507.906667pt;}
.ya4{bottom:509.346667pt;}
.y65{bottom:511.746667pt;}
.yc9{bottom:512.066667pt;}
.y16f{bottom:512.866667pt;}
.y13e{bottom:516.706667pt;}
.yf3{bottom:520.066667pt;}
.y1a9{bottom:521.986667pt;}
.ya3{bottom:526.786667pt;}
.y1e2{bottom:526.946667pt;}
.y64{bottom:529.346667pt;}
.yc8{bottom:529.666667pt;}
.y16e{bottom:530.626667pt;}
.y1a8{bottom:534.146667pt;}
.y13d{bottom:534.306667pt;}
.yf2{bottom:537.666667pt;}
.ya2{bottom:544.386667pt;}
.y1e1{bottom:546.146667pt;}
.y1a7{bottom:546.466667pt;}
.y63{bottom:547.266667pt;}
.y16d{bottom:547.906667pt;}
.y13c{bottom:551.906667pt;}
.yf1{bottom:555.266667pt;}
.ya1{bottom:562.306667pt;}
.y1a6{bottom:564.066667pt;}
.y62{bottom:564.866667pt;}
.y1e0{bottom:565.186667pt;}
.y16c{bottom:565.506667pt;}
.y13b{bottom:569.506667pt;}
.yf0{bottom:572.546667pt;}
.y1a5{bottom:576.413333pt;}
.ya0{bottom:577.213333pt;}
.y61{bottom:582.493333pt;}
.y16b{bottom:583.453333pt;}
.y1df{bottom:584.413333pt;}
.y13a{bottom:587.133333pt;}
.y1a4{bottom:588.573333pt;}
.y9f{bottom:589.373333pt;}
.yef{bottom:590.173333pt;}
.yc7{bottom:599.933333pt;}
.y60{bottom:600.253333pt;}
.y16a{bottom:601.053333pt;}
.y9e{bottom:601.693333pt;}
.y1de{bottom:603.453333pt;}
.y139{bottom:604.573333pt;}
.y1a3{bottom:606.173333pt;}
.yee{bottom:608.253333pt;}
.y9d{bottom:611.613333pt;}
.yc6{bottom:617.533333pt;}
.y5f{bottom:617.853333pt;}
.y169{bottom:618.493333pt;}
.y138{bottom:622.173333pt;}
.y1dd{bottom:622.653333pt;}
.yed{bottom:625.853333pt;}
.y9c{bottom:627.453333pt;}
.y1a2{bottom:630.813333pt;}
.y5e{bottom:635.133333pt;}
.yc5{bottom:635.453333pt;}
.y168{bottom:636.093333pt;}
.y1dc{bottom:641.853333pt;}
.y137{bottom:642.333333pt;}
.y9b{bottom:643.293333pt;}
.yec{bottom:643.453333pt;}
.y1a1{bottom:648.413333pt;}
.y5d{bottom:652.733333pt;}
.yc4{bottom:653.053333pt;}
.y167{bottom:654.013333pt;}
.y1db{bottom:658.173333pt;}
.y9a{bottom:659.293333pt;}
.y1a0{bottom:660.573333pt;}
.yeb{bottom:661.053333pt;}
.y136{bottom:663.613333pt;}
.y5c{bottom:670.653333pt;}
.y166{bottom:671.613333pt;}
.y19f{bottom:672.893333pt;}
.y99{bottom:675.133333pt;}
.y1da{bottom:675.773333pt;}
.y135{bottom:677.693333pt;}
.yea{bottom:678.653333pt;}
.y134{bottom:688.253333pt;}
.y5b{bottom:688.413333pt;}
.y165{bottom:689.213333pt;}
.y19e{bottom:690.493333pt;}
.y98{bottom:690.973333pt;}
.y1d9{bottom:693.373333pt;}
.ye9{bottom:696.413333pt;}
.y19d{bottom:702.653333pt;}
.y133{bottom:704.093333pt;}
.y5a{bottom:706.013333pt;}
.y164{bottom:706.973333pt;}
.y97{bottom:707.133333pt;}
.y1d8{bottom:710.973333pt;}
.ye8{bottom:713.693333pt;}
.y19c{bottom:714.973333pt;}
.y132{bottom:719.933333pt;}
.y96{bottom:722.973333pt;}
.yc3{bottom:723.293333pt;}
.y59{bottom:723.613333pt;}
.y163{bottom:724.253333pt;}
.y1d7{bottom:728.733333pt;}
.ye7{bottom:731.293333pt;}
.y19b{bottom:732.573333pt;}
.y131{bottom:735.773333pt;}
.y95{bottom:738.973333pt;}
.y58{bottom:740.893333pt;}
.y162{bottom:741.853333pt;}
.y19a{bottom:744.893333pt;}
.y1d6{bottom:746.333333pt;}
.ye6{bottom:749.213333pt;}
.y130{bottom:751.613333pt;}
.y94{bottom:754.813333pt;}
.y57{bottom:758.493333pt;}
.y161{bottom:759.453333pt;}
.y199{bottom:762.493333pt;}
.y1d5{bottom:763.933333pt;}
.ye5{bottom:766.813333pt;}
.y12e{bottom:768.253333pt;}
.y93{bottom:770.653333pt;}
.y198{bottom:774.653333pt;}
.y56{bottom:776.253333pt;}
.y160{bottom:778.333333pt;}
.y1d4{bottom:781.533333pt;}
.ye4{bottom:784.253333pt;}
.y13{bottom:785.373333pt;}
.y92{bottom:786.493333pt;}
.y197{bottom:792.253333pt;}
.y12d{bottom:793.213333pt;}
.y55{bottom:793.853333pt;}
.yc2{bottom:794.173333pt;}
.y15f{bottom:798.693333pt;}
.y1d3{bottom:799.173333pt;}
.y12{bottom:802.213333pt;}
.y91{bottom:802.373333pt;}
.y196{bottom:809.893333pt;}
.y12c{bottom:811.013333pt;}
.y54{bottom:811.813333pt;}
.y11{bottom:813.093333pt;}
.y15e{bottom:816.293333pt;}
.y1d2{bottom:816.933333pt;}
.y8f{bottom:818.213333pt;}
.ye3{bottom:819.813333pt;}
.y195{bottom:822.213333pt;}
.y10{bottom:825.413333pt;}
.y53{bottom:829.413333pt;}
.y12b{bottom:830.533333pt;}
.y15d{bottom:833.893333pt;}
.y8e{bottom:834.213333pt;}
.y1d1{bottom:834.533333pt;}
.ye2{bottom:837.413333pt;}
.yf{bottom:838.533333pt;}
.y194{bottom:839.813333pt;}
.yc1{bottom:846.693333pt;}
.y52{bottom:847.013333pt;}
.ye{bottom:849.893333pt;}
.y8c{bottom:850.693333pt;}
.y15c{bottom:851.493333pt;}
.y12a{bottom:852.133333pt;}
.ye1{bottom:855.013333pt;}
.y193{bottom:864.293333pt;}
.yc0{bottom:864.453333pt;}
.y51{bottom:864.773333pt;}
.y129{bottom:866.213333pt;}
.yd{bottom:867.173333pt;}
.y15b{bottom:869.253333pt;}
.y1d0{bottom:869.733333pt;}
.ye0{bottom:872.453333pt;}
.y8b{bottom:872.773333pt;}
.y128{bottom:876.613333pt;}
.y192{bottom:881.893333pt;}
.y50{bottom:882.373333pt;}
.yc{bottom:885.253333pt;}
.y15a{bottom:886.853333pt;}
.y1cf{bottom:887.333333pt;}
.ydf{bottom:890.053333pt;}
.y8a{bottom:890.373333pt;}
.y126{bottom:894.213333pt;}
.y191{bottom:899.493333pt;}
.y4f{bottom:899.973333pt;}
.y159{bottom:904.133333pt;}
.y1ce{bottom:907.493333pt;}
.y89{bottom:907.973333pt;}
.y190{bottom:911.813333pt;}
.y125{bottom:915.013333pt;}
.yb{bottom:917.573333pt;}
.y1cd{bottom:919.813333pt;}
.y158{bottom:922.853333pt;}
.y18f{bottom:924.133333pt;}
.y88{bottom:925.573333pt;}
.y1cc{bottom:932.133333pt;}
.y123{bottom:932.613333pt;}
.y4e{bottom:935.173333pt;}
.y18e{bottom:941.733333pt;}
.y87{bottom:943.173333pt;}
.ya{bottom:949.733333pt;}
.y121{bottom:950.213333pt;}
.ybf{bottom:952.613333pt;}
.y4d{bottom:952.933333pt;}
.y18d{bottom:953.893333pt;}
.y86{bottom:960.933333pt;}
.y1cb{bottom:961.893333pt;}
.ybe{bottom:970.213333pt;}
.y4c{bottom:970.533333pt;}
.y18c{bottom:971.493333pt;}
.y11f{bottom:974.533333pt;}
.y85{bottom:978.533333pt;}
.y9{bottom:978.853333pt;}
.y1ca{bottom:979.493333pt;}
.y18b{bottom:983.813333pt;}
.y4b{bottom:988.133333pt;}
.y43{bottom:989.093333pt;}
.y1c9{bottom:991.813333pt;}
.y8{bottom:993.733333pt;}
.y84{bottom:996.133333pt;}
.y18a{bottom:1001.413333pt;}
.y4a{bottom:1005.733333pt;}
.y1c8{bottom:1009.413333pt;}
.y83{bottom:1013.733333pt;}
.y1c7{bottom:1021.760000pt;}
.y49{bottom:1023.360000pt;}
.y189{bottom:1025.920000pt;}
.y7{bottom:1027.520000pt;}
.yde{bottom:1031.040000pt;}
.y82{bottom:1031.360000pt;}
.y1c6{bottom:1033.920000pt;}
.y6{bottom:1037.760000pt;}
.y47{bottom:1039.520000pt;}
.y5{bottom:1045.280000pt;}
.y80{bottom:1047.520000pt;}
.y46{bottom:1056.640000pt;}
.y4{bottom:1064.480000pt;}
.y7f{bottom:1064.640000pt;}
.h7{height:5.022500pt;}
.h10{height:10.678125pt;}
.h25{height:13.746667pt;}
.h33{height:13.758667pt;}
.h18{height:15.826667pt;}
.h1b{height:15.840000pt;}
.h1a{height:15.860000pt;}
.h19{height:15.986667pt;}
.h1c{height:16.000000pt;}
.h12{height:16.125000pt;}
.h2f{height:17.586667pt;}
.h31{height:18.272000pt;}
.h30{height:18.706667pt;}
.h39{height:18.880000pt;}
.h32{height:19.518667pt;}
.h26{height:20.466667pt;}
.h37{height:20.786667pt;}
.h2a{height:21.106667pt;}
.h28{height:21.138667pt;}
.h35{height:23.666667pt;}
.h14{height:24.626667pt;}
.h34{height:25.106667pt;}
.h21{height:25.586667pt;}
.h20{height:25.746667pt;}
.h1f{height:26.578667pt;}
.h24{height:27.506667pt;}
.h2d{height:32.626667pt;}
.h3{height:36.431250pt;}
.h15{height:38.153511pt;}
.h8{height:42.084375pt;}
.h5{height:43.215000pt;}
.h22{height:43.346667pt;}
.h2c{height:44.941250pt;}
.he{height:47.085938pt;}
.h2{height:47.109375pt;}
.h17{height:47.621250pt;}
.h9{height:48.375000pt;}
.h2b{height:49.336436pt;}
.h23{height:49.968750pt;}
.h1e{height:51.858667pt;}
.hf{height:52.004650pt;}
.hc{height:52.134375pt;}
.h27{height:52.526250pt;}
.h29{height:52.686250pt;}
.h2e{height:53.370000pt;}
.ha{height:53.535000pt;}
.h1d{height:54.598989pt;}
.hd{height:55.298750pt;}
.h36{height:58.238750pt;}
.h3b{height:58.289418pt;}
.h13{height:59.340000pt;}
.h16{height:62.812500pt;}
.h6{height:64.500000pt;}
.h3a{height:73.490625pt;}
.h38{height:75.465000pt;}
.h4{height:112.875000pt;}
.hb{height:116.593750pt;}
.h11{height:319.066667pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.w1d{width:75.186667pt;}
.w1b{width:77.746667pt;}
.w1f{width:78.066667pt;}
.w1c{width:78.258667pt;}
.w9{width:78.710667pt;}
.w17{width:81.306667pt;}
.w18{width:81.458667pt;}
.w19{width:84.160000pt;}
.w1a{width:84.192000pt;}
.w1e{width:84.512000pt;}
.w14{width:87.030667pt;}
.wf{width:89.312000pt;}
.we{width:89.440000pt;}
.w10{width:89.618667pt;}
.w13{width:89.632000pt;}
.w11{width:89.746667pt;}
.w12{width:89.760000pt;}
.wd{width:89.778667pt;}
.w3{width:90.426667pt;}
.w25{width:91.190667pt;}
.w20{width:92.150667pt;}
.w28{width:125.938667pt;}
.wc{width:126.106667pt;}
.w27{width:126.112000pt;}
.w21{width:135.853333pt;}
.w23{width:139.053333pt;}
.w24{width:141.786667pt;}
.w22{width:143.226667pt;}
.w26{width:154.573333pt;}
.w29{width:155.706667pt;}
.w7{width:161.946667pt;}
.w6{width:162.093333pt;}
.w2a{width:173.777333pt;}
.wa{width:179.213333pt;}
.w4{width:206.266667pt;}
.w2c{width:228.373333pt;}
.w16{width:231.213333pt;}
.w15{width:249.813333pt;}
.w2b{width:250.746667pt;}
.wb{width:268.706667pt;}
.w5{width:324.057333pt;}
.w2{width:569.680000pt;}
.w8{width:648.120000pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.xb{left:-18.400000pt;}
.x0{left:0.000000pt;}
.x32{left:4.466667pt;}
.x33{left:5.760000pt;}
.x11{left:7.190667pt;}
.xa{left:9.466667pt;}
.x1d{left:11.200000pt;}
.x22{left:12.960000pt;}
.x2c{left:15.386667pt;}
.x2d{left:16.346667pt;}
.x18{left:18.070667pt;}
.x38{left:19.026667pt;}
.x1f{left:20.000000pt;}
.x9{left:23.866667pt;}
.x14{left:26.720000pt;}
.x35{left:29.906667pt;}
.x34{left:31.666667pt;}
.x12{left:32.946667pt;}
.x36{left:34.586667pt;}
.x23{left:35.680000pt;}
.x8{left:37.786667pt;}
.x24{left:38.720000pt;}
.x3b{left:40.320000pt;}
.x3e{left:41.280000pt;}
.x3f{left:42.226667pt;}
.x40{left:44.320000pt;}
.x7{left:52.186667pt;}
.x25{left:55.386667pt;}
.x39{left:57.946667pt;}
.x2a{left:59.026667pt;}
.x29{left:59.986667pt;}
.x42{left:61.786667pt;}
.x41{left:63.866667pt;}
.x15{left:67.346667pt;}
.x6{left:69.466667pt;}
.x16{left:70.386667pt;}
.x2{left:72.032000pt;}
.x17{left:73.426667pt;}
.x49{left:81.786667pt;}
.x4a{left:83.866667pt;}
.x27{left:86.746667pt;}
.x1b{left:94.426667pt;}
.xe{left:96.032000pt;}
.x4e{left:100.512000pt;}
.x4c{left:106.586667pt;}
.x4b{left:117.626667pt;}
.x4d{left:120.032000pt;}
.x4f{left:140.666667pt;}
.x19{left:148.840000pt;}
.x26{left:159.080000pt;}
.x43{left:161.320000pt;}
.x37{left:164.200000pt;}
.x1e{left:238.626667pt;}
.x2e{left:240.546667pt;}
.x47{left:243.906667pt;}
.x3a{left:300.066667pt;}
.x44{left:315.906667pt;}
.xf{left:319.746667pt;}
.x2f{left:324.706667pt;}
.x1a{left:328.706667pt;}
.xd{left:368.733333pt;}
.x10{left:386.013333pt;}
.x1{left:386.973333pt;}
.x3{left:396.093333pt;}
.x28{left:409.546667pt;}
.x20{left:418.026667pt;}
.x45{left:442.026667pt;}
.x3c{left:443.306667pt;}
.x4{left:471.133333pt;}
.x30{left:487.306667pt;}
.x48{left:494.666667pt;}
.x21{left:507.653333pt;}
.xc{left:524.773333pt;}
.x13{left:558.213333pt;}
.x31{left:565.573333pt;}
.x46{left:567.973333pt;}
.x3d{left:582.373333pt;}
.x1c{left:597.413333pt;}
.x2b{left:640.773333pt;}
.x5{left:641.733333pt;}
}




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