
    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_efeb506b3bf7c437624dff5f.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_205926a2a1886e2f9858f7e0.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_863c888b34988888d889473b.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_7d07630c8f4c12bf2baf35ae.woff')format("woff");}.ff4{font-family:ff4;line-height:0.919000;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_959b99016a167cd249ac78a9.woff')format("woff");}.ff5{font-family:ff5;line-height:0.913000;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_ef1a18bdc1f1a76c4d239f5c.woff')format("woff");}.ff6{font-family:ff6;line-height:0.913000;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_c224bf8d5ac35f0f3cd2a182.woff')format("woff");}.ff7{font-family:ff7;line-height:1.201000;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:-21.978000px;}
.v3{vertical-align:-16.377600px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:4.416000px;}
.v2{vertical-align:16.377600px;}
.ls1c{letter-spacing:-2.442000px;}
.ls5{letter-spacing:-2.310000px;}
.ls2{letter-spacing:-1.650000px;}
.ls25{letter-spacing:-1.440000px;}
.ls10{letter-spacing:-1.320000px;}
.ls1e{letter-spacing:-1.188000px;}
.lsa{letter-spacing:-0.864000px;}
.ls23{letter-spacing:-0.840000px;}
.ls14{letter-spacing:-0.660000px;}
.ls9{letter-spacing:-0.626842px;}
.ls26{letter-spacing:-0.600000px;}
.ls22{letter-spacing:-0.594000px;}
.ls1d{letter-spacing:-0.587664px;}
.ls1a{letter-spacing:-0.540000px;}
.ls1b{letter-spacing:-0.462000px;}
.ls17{letter-spacing:-0.391776px;}
.ls15{letter-spacing:-0.330000px;}
.ls7{letter-spacing:-0.270000px;}
.ls18{letter-spacing:-0.264000px;}
.ls6{letter-spacing:-0.195888px;}
.ls29{letter-spacing:-0.120000px;}
.ls0{letter-spacing:0.000000px;}
.ls13{letter-spacing:0.000180px;}
.ls12{letter-spacing:0.000186px;}
.ls21{letter-spacing:0.060000px;}
.ls1{letter-spacing:0.162000px;}
.ls20{letter-spacing:0.165000px;}
.ls1f{letter-spacing:0.198000px;}
.ls19{letter-spacing:0.235066px;}
.ls4{letter-spacing:0.312437px;}
.ls8{letter-spacing:0.313032px;}
.ls27{letter-spacing:0.360000px;}
.ls16{letter-spacing:0.396000px;}
.lsd{letter-spacing:0.469594px;}
.lsc{letter-spacing:0.469637px;}
.ls3{letter-spacing:0.528000px;}
.lsb{letter-spacing:0.792000px;}
.lsf{letter-spacing:1.009800px;}
.lse{letter-spacing:1.056000px;}
.ls11{letter-spacing:2.970000px;}
.ls28{letter-spacing:3.594000px;}
.ls24{letter-spacing:4.572000px;}
.ls2a{letter-spacing:6.180000px;}
.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;}
}
.ws1d{word-spacing:-13.860000px;}
.ws1f{word-spacing:-13.068000px;}
.ws1e{word-spacing:-12.804000px;}
.ws7{word-spacing:-12.408000px;}
.ws16{word-spacing:-12.012000px;}
.ws55{word-spacing:-11.940000px;}
.ws1{word-spacing:-11.880000px;}
.ws32{word-spacing:-11.748000px;}
.ws29{word-spacing:-11.682000px;}
.ws1a{word-spacing:-11.352000px;}
.ws2c{word-spacing:-10.920000px;}
.ws2{word-spacing:-10.692000px;}
.ws5b{word-spacing:-10.320000px;}
.ws54{word-spacing:-10.080000px;}
.ws9{word-spacing:-9.828000px;}
.wsd{word-spacing:-9.558000px;}
.ws0{word-spacing:-9.504000px;}
.ws3c{word-spacing:-9.288000px;}
.ws33{word-spacing:-7.992230px;}
.ws8{word-spacing:-7.757165px;}
.wsc{word-spacing:-7.561277px;}
.ws2b{word-spacing:-7.365389px;}
.ws42{word-spacing:-7.169501px;}
.ws17{word-spacing:-7.130323px;}
.ws28{word-spacing:-7.002996px;}
.ws6e{word-spacing:-6.180000px;}
.ws6b{word-spacing:-4.380000px;}
.ws4{word-spacing:-3.960000px;}
.ws26{word-spacing:-2.970000px;}
.ws64{word-spacing:-2.820000px;}
.ws5c{word-spacing:-1.560000px;}
.ws12{word-spacing:-1.518000px;}
.ws62{word-spacing:-1.320000px;}
.ws5e{word-spacing:-1.200000px;}
.ws34{word-spacing:-1.188000px;}
.ws50{word-spacing:-1.122000px;}
.ws51{word-spacing:-1.080000px;}
.ws21{word-spacing:-1.056000px;}
.ws20{word-spacing:-0.792000px;}
.ws30{word-spacing:-0.660000px;}
.ws35{word-spacing:-0.540000px;}
.ws10{word-spacing:-0.528000px;}
.ws2f{word-spacing:-0.396000px;}
.ws67{word-spacing:-0.360000px;}
.ws36{word-spacing:-0.270000px;}
.ws57{word-spacing:-0.198000px;}
.ws66{word-spacing:-0.120000px;}
.ws23{word-spacing:-0.066000px;}
.ws58{word-spacing:-0.060000px;}
.ws3{word-spacing:0.000000px;}
.ws4a{word-spacing:0.054000px;}
.ws65{word-spacing:0.120000px;}
.ws40{word-spacing:0.216000px;}
.ws13{word-spacing:0.270000px;}
.ws2a{word-spacing:0.330000px;}
.ws3f{word-spacing:0.462000px;}
.ws56{word-spacing:0.594000px;}
.ws3d{word-spacing:0.660000px;}
.ws1b{word-spacing:0.726000px;}
.ws45{word-spacing:0.792000px;}
.ws19{word-spacing:0.864000px;}
.ws4e{word-spacing:1.188000px;}
.ws22{word-spacing:1.320000px;}
.ws24{word-spacing:1.386000px;}
.ws61{word-spacing:1.440000px;}
.ws5d{word-spacing:1.500000px;}
.wsb{word-spacing:1.512000px;}
.wsf{word-spacing:1.584000px;}
.ws49{word-spacing:1.620000px;}
.ws2d{word-spacing:1.650000px;}
.ws37{word-spacing:1.782000px;}
.ws44{word-spacing:1.914000px;}
.ws71{word-spacing:1.980000px;}
.ws14{word-spacing:2.106000px;}
.wse{word-spacing:2.310000px;}
.ws3e{word-spacing:2.376000px;}
.ws43{word-spacing:2.442000px;}
.ws5f{word-spacing:2.760000px;}
.ws5a{word-spacing:3.840000px;}
.ws63{word-spacing:4.200000px;}
.wsa{word-spacing:4.224000px;}
.ws72{word-spacing:4.500000px;}
.ws59{word-spacing:4.860000px;}
.ws6d{word-spacing:4.920000px;}
.ws48{word-spacing:5.016000px;}
.ws6a{word-spacing:5.100000px;}
.ws4c{word-spacing:5.214000px;}
.ws68{word-spacing:5.400000px;}
.ws6f{word-spacing:5.640000px;}
.ws46{word-spacing:5.676000px;}
.ws52{word-spacing:5.778000px;}
.ws4b{word-spacing:5.940000px;}
.ws11{word-spacing:6.666000px;}
.ws6c{word-spacing:7.020000px;}
.ws2e{word-spacing:7.128000px;}
.ws25{word-spacing:7.668000px;}
.ws18{word-spacing:8.448000px;}
.ws69{word-spacing:8.700000px;}
.ws70{word-spacing:19.920000px;}
.ws60{word-spacing:24.900000px;}
.ws3b{word-spacing:111.120000px;}
.ws39{word-spacing:111.660000px;}
.ws3a{word-spacing:112.320000px;}
.ws38{word-spacing:116.340000px;}
.ws6{word-spacing:537.897600px;}
.ws47{word-spacing:696.318600px;}
.ws15{word-spacing:696.780600px;}
.ws53{word-spacing:697.704600px;}
.ws31{word-spacing:698.166600px;}
.ws4f{word-spacing:698.760600px;}
.ws41{word-spacing:699.222600px;}
.ws4d{word-spacing:700.410600px;}
.ws27{word-spacing:701.202600px;}
.ws1c{word-spacing:704.832600px;}
.ws5{word-spacing:705.954600px;}
._21{margin-left:-79.068000px;}
._10{margin-left:-12.408000px;}
._20{margin-left:-11.352000px;}
._1a{margin-left:-6.271800px;}
._6{margin-left:-5.010000px;}
._2{margin-left:-3.960000px;}
._0{margin-left:-2.644800px;}
._1{margin-left:-1.050000px;}
._9{width:1.549200px;}
._3{width:2.633400px;}
._4{width:3.690000px;}
._5{width:4.770000px;}
._8{width:5.851800px;}
._7{width:7.209000px;}
._a{width:8.334000px;}
._b{width:9.918000px;}
._f{width:11.493600px;}
._22{width:13.188000px;}
._14{width:14.407800px;}
._23{width:16.060200px;}
._26{width:17.802000px;}
._25{width:18.834000px;}
._24{width:20.122800px;}
._27{width:21.152400px;}
._c{width:22.326000px;}
._d{width:27.630000px;}
._e{width:29.034000px;}
._16{width:39.120000px;}
._1b{width:40.380000px;}
._18{width:41.880000px;}
._15{width:50.220000px;}
._13{width:51.546000px;}
._12{width:53.196000px;}
._19{width:54.252000px;}
._11{width:62.370000px;}
._17{width:107.178000px;}
._1f{width:204.660000px;}
._1e{width:211.890000px;}
._1d{width:224.760000px;}
._1c{width:252.240000px;}
.fc1{color:rgb(35,31,32);}
.fc0{color:rgb(163,40,50);}
.fs6{font-size:38.478000px;}
.fs5{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:110.293650px;}
.ycd{bottom:116.929050px;}
.y4c{bottom:116.929200px;}
.y108{bottom:116.929350px;}
.y1ba{bottom:123.615300px;}
.y22{bottom:128.293650px;}
.y1ca{bottom:128.539650px;}
.ycc{bottom:133.129050px;}
.y4b{bottom:133.129200px;}
.y107{bottom:133.129350px;}
.y92{bottom:137.223600px;}
.y1ed{bottom:137.637300px;}
.y1b9{bottom:143.415300px;}
.y21{bottom:146.293650px;}
.y1c9{bottom:146.539650px;}
.ycb{bottom:149.329050px;}
.y4a{bottom:149.329200px;}
.y106{bottom:149.329350px;}
.y84{bottom:153.423600px;}
.y1ec{bottom:155.637300px;}
.y197{bottom:156.124500px;}
.y179{bottom:161.731950px;}
.y1b8{bottom:163.215300px;}
.y1c8{bottom:164.539650px;}
.yca{bottom:165.529050px;}
.y70{bottom:165.529200px;}
.y20{bottom:168.538650px;}
.y49{bottom:169.623600px;}
.y105{bottom:169.623750px;}
.y13c{bottom:171.833100px;}
.y1eb{bottom:173.637300px;}
.y196{bottom:175.924500px;}
.y178{bottom:181.531950px;}
.y48{bottom:181.729050px;}
.y6f{bottom:181.729200px;}
.ye7{bottom:182.536800px;}
.y1c7{bottom:182.539650px;}
.y1b7{bottom:183.015300px;}
.yc9{bottom:185.823450px;}
.yaf{bottom:185.823600px;}
.y13b{bottom:191.633100px;}
.y1ea{bottom:191.637300px;}
.y1f{bottom:195.043650px;}
.y195{bottom:195.724500px;}
.y91{bottom:196.939650px;}
.yc8{bottom:197.929200px;}
.y1c6{bottom:200.539650px;}
.y177{bottom:201.331950px;}
.y47{bottom:202.023450px;}
.y6e{bottom:202.023600px;}
.ye6{bottom:202.336800px;}
.y163{bottom:202.650450px;}
.y1b6{bottom:202.815300px;}
.y1e9{bottom:209.637300px;}
.y13a{bottom:211.433100px;}
.y1e{bottom:213.043650px;}
.y46{bottom:214.129200px;}
.y194{bottom:215.524500px;}
.y90{bottom:216.739650px;}
.yd2{bottom:216.741300px;}
.y83{bottom:217.533300px;}
.y144{bottom:218.223600px;}
.y1c5{bottom:218.539650px;}
.y176{bottom:221.131950px;}
.ye5{bottom:222.136800px;}
.y162{bottom:222.450450px;}
.y1b5{bottom:222.615300px;}
.y1e8{bottom:227.637300px;}
.y45{bottom:230.329200px;}
.y139{bottom:231.233100px;}
.yae{bottom:231.678300px;}
.y193{bottom:235.324500px;}
.y8f{bottom:236.539650px;}
.yd1{bottom:236.541300px;}
.y82{bottom:237.333300px;}
.y1d{bottom:237.643650px;}
.y175{bottom:240.931950px;}
.ye4{bottom:241.936800px;}
.y104{bottom:242.042550px;}
.y161{bottom:242.250450px;}
.y1b4{bottom:242.415300px;}
.y1e7{bottom:245.637300px;}
.y6d{bottom:246.529200px;}
.y44{bottom:250.623600px;}
.y138{bottom:251.033100px;}
.yad{bottom:251.478300px;}
.y1c4{bottom:254.539650px;}
.y192{bottom:255.124500px;}
.y1c{bottom:255.643650px;}
.y8e{bottom:256.339650px;}
.y81{bottom:257.133300px;}
.y174{bottom:260.731950px;}
.y103{bottom:261.842550px;}
.y160{bottom:262.050450px;}
.y1b3{bottom:262.215300px;}
.y6c{bottom:262.729200px;}
.y1e6{bottom:263.637300px;}
.y137{bottom:270.833100px;}
.yd0{bottom:271.224300px;}
.yac{bottom:271.278300px;}
.y1c3{bottom:272.539650px;}
.y1b{bottom:273.643650px;}
.y8d{bottom:276.139650px;}
.y80{bottom:276.933300px;}
.y6b{bottom:278.929200px;}
.y173{bottom:280.531950px;}
.ye3{bottom:281.536800px;}
.y1e5{bottom:281.637300px;}
.y102{bottom:281.642550px;}
.y15f{bottom:281.850450px;}
.y1b2{bottom:282.015300px;}
.y43{bottom:286.843650px;}
.y1c2{bottom:290.539650px;}
.y136{bottom:290.633100px;}
.yab{bottom:291.078300px;}
.y1a{bottom:291.643650px;}
.y6a{bottom:295.129200px;}
.y8c{bottom:295.939650px;}
.y7f{bottom:296.733300px;}
.ye2{bottom:299.536800px;}
.y191{bottom:299.592000px;}
.y1e4{bottom:299.637300px;}
.y172{bottom:300.331950px;}
.y101{bottom:301.442550px;}
.y15e{bottom:301.650450px;}
.y42{bottom:306.643650px;}
.y1c1{bottom:308.539650px;}
.y19{bottom:309.643650px;}
.y135{bottom:310.433100px;}
.yaa{bottom:310.878300px;}
.yc7{bottom:311.329200px;}
.y1b1{bottom:311.715300px;}
.y11c{bottom:315.423600px;}
.y8b{bottom:315.739650px;}
.y143{bottom:315.741300px;}
.y7e{bottom:316.533300px;}
.ye1{bottom:317.536800px;}
.y1e3{bottom:317.637300px;}
.y190{bottom:319.392000px;}
.y171{bottom:320.131950px;}
.y100{bottom:321.242550px;}
.y15d{bottom:321.450450px;}
.y41{bottom:326.443650px;}
.y1c0{bottom:326.539650px;}
.y18{bottom:327.643650px;}
.y134{bottom:330.233100px;}
.ya9{bottom:330.678300px;}
.yc6{bottom:331.623600px;}
.y8a{bottom:335.539650px;}
.y142{bottom:335.541300px;}
.y1e2{bottom:335.637300px;}
.y7d{bottom:336.333300px;}
.y18f{bottom:339.192000px;}
.y170{bottom:339.931950px;}
.yff{bottom:341.042550px;}
.y15c{bottom:341.250450px;}
.y1bf{bottom:344.539650px;}
.y69{bottom:345.333300px;}
.y17{bottom:345.643650px;}
.y40{bottom:346.243650px;}
.y133{bottom:350.033100px;}
.ya8{bottom:350.478300px;}
.y11b{bottom:350.479950px;}
.y1e1{bottom:353.637300px;}
.ye0{bottom:355.338300px;}
.y89{bottom:355.341300px;}
.y7c{bottom:356.133300px;}
.y1b0{bottom:356.182800px;}
.y18e{bottom:358.992000px;}
.y16f{bottom:359.731950px;}
.yfe{bottom:360.842550px;}
.y1be{bottom:362.539650px;}
.y16{bottom:363.643650px;}
.y68{bottom:365.133450px;}
.y3f{bottom:366.043650px;}
.yc5{bottom:366.235800px;}
.y132{bottom:369.833100px;}
.ya7{bottom:370.278300px;}
.y11a{bottom:370.279950px;}
.y1e0{bottom:371.637300px;}
.ydf{bottom:375.138300px;}
.y88{bottom:375.141300px;}
.y7b{bottom:375.933300px;}
.y15b{bottom:375.933450px;}
.y1af{bottom:375.982800px;}
.y18d{bottom:378.792000px;}
.yeb{bottom:379.531950px;}
.y1bd{bottom:380.539650px;}
.yfd{bottom:380.642550px;}
.y15{bottom:381.643650px;}
.y67{bottom:384.933450px;}
.y3e{bottom:385.843650px;}
.yc4{bottom:386.035800px;}
.y1df{bottom:389.637300px;}
.ya6{bottom:390.078300px;}
.y119{bottom:390.079950px;}
.yde{bottom:394.938300px;}
.y87{bottom:394.941300px;}
.y7a{bottom:395.733300px;}
.y1ae{bottom:395.782800px;}
.y1bc{bottom:398.539650px;}
.y18c{bottom:398.592000px;}
.yea{bottom:399.331950px;}
.y14{bottom:399.643650px;}
.yfc{bottom:400.442550px;}
.y66{bottom:404.733450px;}
.y3d{bottom:405.643650px;}
.yc3{bottom:405.835800px;}
.y1de{bottom:407.637300px;}
.y131{bottom:409.433100px;}
.ya5{bottom:409.878300px;}
.y118{bottom:409.879950px;}
.ydd{bottom:414.738300px;}
.y141{bottom:414.741300px;}
.y79{bottom:415.533300px;}
.y15a{bottom:415.533450px;}
.y1ad{bottom:415.582800px;}
.y1bb{bottom:416.539650px;}
.y13{bottom:417.643650px;}
.y18b{bottom:418.392000px;}
.y16e{bottom:419.131950px;}
.yfb{bottom:420.242550px;}
.y65{bottom:424.533450px;}
.y3c{bottom:425.443650px;}
.yc2{bottom:425.635800px;}
.y1dd{bottom:425.637300px;}
.y130{bottom:427.433100px;}
.y86{bottom:429.624300px;}
.ya4{bottom:429.678300px;}
.y117{bottom:429.679950px;}
.ydc{bottom:434.538300px;}
.y140{bottom:434.541300px;}
.y78{bottom:435.333300px;}
.y159{bottom:435.333450px;}
.y1ac{bottom:435.382800px;}
.y18a{bottom:438.192000px;}
.ye9{bottom:438.931950px;}
.y12{bottom:439.888650px;}
.yfa{bottom:440.042550px;}
.y1dc{bottom:443.637300px;}
.y64{bottom:444.333450px;}
.y3b{bottom:445.243650px;}
.y12f{bottom:445.433100px;}
.yc1{bottom:445.435800px;}
.y85{bottom:449.424300px;}
.ya3{bottom:449.478300px;}
.y116{bottom:449.479950px;}
.ydb{bottom:454.338300px;}
.y77{bottom:455.133300px;}
.y158{bottom:455.133450px;}
.y1ab{bottom:455.182800px;}
.ye8{bottom:456.931950px;}
.y189{bottom:457.992000px;}
.y16d{bottom:458.731950px;}
.y1db{bottom:461.637300px;}
.y12e{bottom:463.433100px;}
.y3a{bottom:465.043650px;}
.yc0{bottom:465.235800px;}
.ya2{bottom:469.278300px;}
.y115{bottom:469.279950px;}
.yda{bottom:474.138300px;}
.y13f{bottom:474.141300px;}
.y76{bottom:474.933300px;}
.y157{bottom:474.933450px;}
.y1aa{bottom:474.982800px;}
.y16c{bottom:478.531950px;}
.y1da{bottom:479.637300px;}
.yf9{bottom:479.643900px;}
.y12d{bottom:481.433100px;}
.y63{bottom:483.933450px;}
.y39{bottom:484.843650px;}
.ybf{bottom:485.035800px;}
.y11{bottom:486.198000px;}
.ya1{bottom:489.078300px;}
.y114{bottom:489.079950px;}
.yd9{bottom:493.938300px;}
.y13e{bottom:493.941300px;}
.y75{bottom:494.733300px;}
.y156{bottom:494.733450px;}
.y1a9{bottom:494.782800px;}
.y1d9{bottom:497.637300px;}
.y16b{bottom:498.331950px;}
.y10{bottom:501.196500px;}
.y62{bottom:501.933450px;}
.y188{bottom:502.459500px;}
.y38{bottom:504.643650px;}
.ybe{bottom:504.835800px;}
.yf8{bottom:504.884250px;}
.ya0{bottom:508.878300px;}
.yd8{bottom:513.741300px;}
.y74{bottom:514.533300px;}
.y155{bottom:514.533450px;}
.y1a8{bottom:514.582800px;}
.y1d8{bottom:515.637300px;}
.yf{bottom:516.195000px;}
.y16a{bottom:518.131950px;}
.y12c{bottom:519.234450px;}
.y61{bottom:519.933450px;}
.yf7{bottom:522.884250px;}
.y113{bottom:523.762950px;}
.y37{bottom:524.443650px;}
.ybd{bottom:524.635800px;}
.y9f{bottom:528.678300px;}
.yd7{bottom:533.541300px;}
.y1d7{bottom:533.637300px;}
.y73{bottom:534.333300px;}
.y154{bottom:534.333450px;}
.y1a7{bottom:534.382800px;}
.ye{bottom:535.446000px;}
.y187{bottom:537.142500px;}
.y169{bottom:537.931950px;}
.y60{bottom:537.933450px;}
.y12b{bottom:539.034450px;}
.y112{bottom:543.562950px;}
.y36{bottom:544.243650px;}
.y9e{bottom:548.478300px;}
.yf6{bottom:550.934250px;}
.y1d6{bottom:551.637300px;}
.yd6{bottom:553.341300px;}
.y72{bottom:554.133300px;}
.y153{bottom:554.133450px;}
.y1a6{bottom:554.182800px;}
.y5f{bottom:555.933450px;}
.y186{bottom:556.942500px;}
.y168{bottom:557.731950px;}
.y12a{bottom:558.834450px;}
.y35{bottom:564.043650px;}
.ybc{bottom:564.235800px;}
.y9d{bottom:568.278300px;}
.yf5{bottom:568.934250px;}
.y1d5{bottom:569.637300px;}
.yd{bottom:570.247350px;}
.yd5{bottom:573.141300px;}
.y71{bottom:573.933300px;}
.y152{bottom:573.933450px;}
.y1a5{bottom:573.982800px;}
.y167{bottom:577.531950px;}
.y129{bottom:578.634450px;}
.ybb{bottom:582.235800px;}
.y34{bottom:583.843650px;}
.y1d4{bottom:587.637300px;}
.y13d{bottom:588.024300px;}
.y9c{bottom:588.078150px;}
.y111{bottom:588.871950px;}
.yc{bottom:590.047350px;}
.yd4{bottom:592.941300px;}
.y5e{bottom:593.733300px;}
.y151{bottom:593.733450px;}
.y1a4{bottom:593.782800px;}
.yf4{bottom:596.984250px;}
.y166{bottom:597.331950px;}
.y128{bottom:598.434450px;}
.y185{bottom:602.251500px;}
.y33{bottom:603.643650px;}
.y1d3{bottom:605.637300px;}
.y9b{bottom:607.878150px;}
.y110{bottom:608.665800px;}
.yb{bottom:609.847350px;}
.y5d{bottom:613.533300px;}
.y150{bottom:613.533450px;}
.y1a3{bottom:613.582800px;}
.yf3{bottom:614.984250px;}
.yba{bottom:620.037300px;}
.y184{bottom:622.051500px;}
.y32{bottom:623.443650px;}
.y1d2{bottom:623.637300px;}
.yd3{bottom:627.624300px;}
.y9a{bottom:627.673800px;}
.y10f{bottom:628.465800px;}
.ya{bottom:629.647350px;}
.y5c{bottom:633.333300px;}
.y14f{bottom:633.333450px;}
.y1a2{bottom:633.382800px;}
.y165{bottom:636.931950px;}
.y127{bottom:638.037300px;}
.yb9{bottom:639.837300px;}
.y1d1{bottom:641.637300px;}
.y183{bottom:641.851500px;}
.yf2{bottom:643.034250px;}
.y31{bottom:643.243650px;}
.y99{bottom:647.473800px;}
.y10e{bottom:648.265800px;}
.y5b{bottom:653.133300px;}
.y14e{bottom:653.133450px;}
.y1a1{bottom:653.182800px;}
.y164{bottom:654.931950px;}
.y126{bottom:656.037300px;}
.yb8{bottom:659.637300px;}
.yf1{bottom:661.034250px;}
.y182{bottom:661.651500px;}
.y30{bottom:663.043650px;}
.y98{bottom:667.273800px;}
.y10d{bottom:668.065800px;}
.y9{bottom:669.262350px;}
.y5a{bottom:672.933300px;}
.y14d{bottom:672.933450px;}
.y1a0{bottom:672.982800px;}
.y125{bottom:674.037300px;}
.y1d0{bottom:677.637300px;}
.yb7{bottom:679.437300px;}
.y181{bottom:681.451500px;}
.y97{bottom:687.073800px;}
.y10c{bottom:687.865800px;}
.y8{bottom:689.062350px;}
.yf0{bottom:689.084250px;}
.y124{bottom:692.037300px;}
.y59{bottom:692.733300px;}
.y14c{bottom:692.733450px;}
.y19f{bottom:692.782800px;}
.y1cf{bottom:695.637300px;}
.y2f{bottom:697.725450px;}
.yb6{bottom:699.237300px;}
.y180{bottom:701.251500px;}
.yef{bottom:707.084250px;}
.y10b{bottom:707.665800px;}
.y123{bottom:710.037300px;}
.y58{bottom:712.533300px;}
.y14b{bottom:712.533450px;}
.y19e{bottom:712.582800px;}
.y1ce{bottom:713.637300px;}
.y7{bottom:717.357300px;}
.yb5{bottom:719.037300px;}
.y17f{bottom:721.051500px;}
.y96{bottom:721.756800px;}
.y10a{bottom:727.465800px;}
.y1cd{bottom:731.637300px;}
.y57{bottom:732.333300px;}
.y14a{bottom:732.333450px;}
.yee{bottom:735.134250px;}
.yb4{bottom:738.837300px;}
.y17e{bottom:740.851500px;}
.y6{bottom:741.661800px;}
.y2e{bottom:743.037300px;}
.y109{bottom:747.265800px;}
.y122{bottom:747.837300px;}
.y1cc{bottom:749.637300px;}
.y56{bottom:752.133300px;}
.y149{bottom:752.133450px;}
.y19d{bottom:757.050300px;}
.yb3{bottom:758.637300px;}
.y17d{bottom:760.651500px;}
.y2d{bottom:761.037300px;}
.y121{bottom:765.837300px;}
.y5{bottom:765.966300px;}
.y95{bottom:767.065800px;}
.y1cb{bottom:767.637300px;}
.yed{bottom:767.688300px;}
.y55{bottom:771.933300px;}
.y148{bottom:771.933450px;}
.y19c{bottom:776.850300px;}
.yb2{bottom:778.437300px;}
.y17c{bottom:780.451500px;}
.y120{bottom:783.837300px;}
.y2c{bottom:785.637300px;}
.y94{bottom:786.865800px;}
.yec{bottom:787.488300px;}
.y54{bottom:791.733300px;}
.y147{bottom:791.733450px;}
.y19b{bottom:796.650300px;}
.yb1{bottom:798.237300px;}
.y17b{bottom:800.251500px;}
.y11f{bottom:801.837300px;}
.y2b{bottom:803.637300px;}
.y93{bottom:806.665800px;}
.y53{bottom:811.533300px;}
.y146{bottom:811.533450px;}
.y19a{bottom:816.450300px;}
.yb0{bottom:818.037300px;}
.y11e{bottom:819.837300px;}
.y2a{bottom:821.637300px;}
.y52{bottom:831.333300px;}
.y145{bottom:831.333450px;}
.y199{bottom:836.250300px;}
.y11d{bottom:837.837300px;}
.y29{bottom:839.637300px;}
.y17a{bottom:839.851500px;}
.y51{bottom:851.133300px;}
.ycf{bottom:851.133450px;}
.y198{bottom:856.050300px;}
.y28{bottom:857.637300px;}
.y50{bottom:870.933300px;}
.yce{bottom:870.933450px;}
.y27{bottom:875.637300px;}
.y4f{bottom:890.733300px;}
.y26{bottom:893.637300px;}
.y4e{bottom:910.533300px;}
.y25{bottom:911.637300px;}
.y24{bottom:944.548950px;}
.y4d{bottom:945.652950px;}
.ha{height:31.498790px;}
.h3{height:32.064000px;}
.h4{height:33.768000px;}
.h2{height:38.592000px;}
.h8{height:40.080000px;}
.h9{height:43.416000px;}
.hc{height:43.956000px;}
.h6{height:48.240000px;}
.hb{height:48.660000px;}
.hf{height:53.063400px;}
.h7{height:53.064000px;}
.he{height:53.064600px;}
.hd{height:53.081400px;}
.h10{height:53.088600px;}
.h5{height:53.526000px;}
.h11{height:55.560000px;}
.h0{height:1020.472500px;}
.h1{height:1020.750000px;}
.w0{width:722.835000px;}
.w1{width:723.000000px;}
.x0{left:0.000000px;}
.xe{left:97.795200px;}
.x1{left:106.299150px;}
.xd{left:114.803100px;}
.x4{left:118.437300px;}
.x7{left:121.561800px;}
.x11{left:123.307050px;}
.x15{left:125.241150px;}
.x27{left:131.303100px;}
.x26{left:134.085150px;}
.x28{left:136.048650px;}
.x23{left:138.411300px;}
.x22{left:141.797100px;}
.x19{left:143.690850px;}
.x8{left:144.736800px;}
.x16{left:150.288150px;}
.x17{left:153.070950px;}
.x5{left:159.093300px;}
.x13{left:161.572650px;}
.x12{left:178.582650px;}
.x10{left:184.900200px;}
.x18{left:195.580950px;}
.x1b{left:223.325850px;}
.x1a{left:244.430850px;}
.x6{left:266.623800px;}
.x1d{left:327.260850px;}
.x1c{left:347.015850px;}
.x25{left:382.283400px;}
.xa{left:404.887800px;}
.x1e{left:430.700850px;}
.xb{left:433.222800px;}
.x2{left:451.335150px;}
.x9{left:459.893550px;}
.xc{left:498.456900px;}
.x3{left:510.696450px;}
.x20{left:533.705850px;}
.x1f{left:554.390850px;}
.x21{left:556.445850px;}
.x24{left:609.843300px;}
.xf{left:610.866000px;}
.x14{left:612.664650px;}
@media print{
.v4{vertical-align:-19.536000pt;}
.v3{vertical-align:-14.557867pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:3.925333pt;}
.v2{vertical-align:14.557867pt;}
.ls1c{letter-spacing:-2.170667pt;}
.ls5{letter-spacing:-2.053333pt;}
.ls2{letter-spacing:-1.466667pt;}
.ls25{letter-spacing:-1.280000pt;}
.ls10{letter-spacing:-1.173333pt;}
.ls1e{letter-spacing:-1.056000pt;}
.lsa{letter-spacing:-0.768000pt;}
.ls23{letter-spacing:-0.746667pt;}
.ls14{letter-spacing:-0.586667pt;}
.ls9{letter-spacing:-0.557193pt;}
.ls26{letter-spacing:-0.533333pt;}
.ls22{letter-spacing:-0.528000pt;}
.ls1d{letter-spacing:-0.522368pt;}
.ls1a{letter-spacing:-0.480000pt;}
.ls1b{letter-spacing:-0.410667pt;}
.ls17{letter-spacing:-0.348245pt;}
.ls15{letter-spacing:-0.293333pt;}
.ls7{letter-spacing:-0.240000pt;}
.ls18{letter-spacing:-0.234667pt;}
.ls6{letter-spacing:-0.174123pt;}
.ls29{letter-spacing:-0.106667pt;}
.ls0{letter-spacing:0.000000pt;}
.ls13{letter-spacing:0.000160pt;}
.ls12{letter-spacing:0.000165pt;}
.ls21{letter-spacing:0.053333pt;}
.ls1{letter-spacing:0.144000pt;}
.ls20{letter-spacing:0.146667pt;}
.ls1f{letter-spacing:0.176000pt;}
.ls19{letter-spacing:0.208947pt;}
.ls4{letter-spacing:0.277722pt;}
.ls8{letter-spacing:0.278251pt;}
.ls27{letter-spacing:0.320000pt;}
.ls16{letter-spacing:0.352000pt;}
.lsd{letter-spacing:0.417417pt;}
.lsc{letter-spacing:0.417455pt;}
.ls3{letter-spacing:0.469333pt;}
.lsb{letter-spacing:0.704000pt;}
.lsf{letter-spacing:0.897600pt;}
.lse{letter-spacing:0.938667pt;}
.ls11{letter-spacing:2.640000pt;}
.ls28{letter-spacing:3.194667pt;}
.ls24{letter-spacing:4.064000pt;}
.ls2a{letter-spacing:5.493333pt;}
.ws1d{word-spacing:-12.320000pt;}
.ws1f{word-spacing:-11.616000pt;}
.ws1e{word-spacing:-11.381333pt;}
.ws7{word-spacing:-11.029333pt;}
.ws16{word-spacing:-10.677333pt;}
.ws55{word-spacing:-10.613333pt;}
.ws1{word-spacing:-10.560000pt;}
.ws32{word-spacing:-10.442667pt;}
.ws29{word-spacing:-10.384000pt;}
.ws1a{word-spacing:-10.090667pt;}
.ws2c{word-spacing:-9.706667pt;}
.ws2{word-spacing:-9.504000pt;}
.ws5b{word-spacing:-9.173333pt;}
.ws54{word-spacing:-8.960000pt;}
.ws9{word-spacing:-8.736000pt;}
.wsd{word-spacing:-8.496000pt;}
.ws0{word-spacing:-8.448000pt;}
.ws3c{word-spacing:-8.256000pt;}
.ws33{word-spacing:-7.104205pt;}
.ws8{word-spacing:-6.895258pt;}
.wsc{word-spacing:-6.721135pt;}
.ws2b{word-spacing:-6.547012pt;}
.ws42{word-spacing:-6.372890pt;}
.ws17{word-spacing:-6.338065pt;}
.ws28{word-spacing:-6.224885pt;}
.ws6e{word-spacing:-5.493333pt;}
.ws6b{word-spacing:-3.893333pt;}
.ws4{word-spacing:-3.520000pt;}
.ws26{word-spacing:-2.640000pt;}
.ws64{word-spacing:-2.506667pt;}
.ws5c{word-spacing:-1.386667pt;}
.ws12{word-spacing:-1.349333pt;}
.ws62{word-spacing:-1.173333pt;}
.ws5e{word-spacing:-1.066667pt;}
.ws34{word-spacing:-1.056000pt;}
.ws50{word-spacing:-0.997333pt;}
.ws51{word-spacing:-0.960000pt;}
.ws21{word-spacing:-0.938667pt;}
.ws20{word-spacing:-0.704000pt;}
.ws30{word-spacing:-0.586667pt;}
.ws35{word-spacing:-0.480000pt;}
.ws10{word-spacing:-0.469333pt;}
.ws2f{word-spacing:-0.352000pt;}
.ws67{word-spacing:-0.320000pt;}
.ws36{word-spacing:-0.240000pt;}
.ws57{word-spacing:-0.176000pt;}
.ws66{word-spacing:-0.106667pt;}
.ws23{word-spacing:-0.058667pt;}
.ws58{word-spacing:-0.053333pt;}
.ws3{word-spacing:0.000000pt;}
.ws4a{word-spacing:0.048000pt;}
.ws65{word-spacing:0.106667pt;}
.ws40{word-spacing:0.192000pt;}
.ws13{word-spacing:0.240000pt;}
.ws2a{word-spacing:0.293333pt;}
.ws3f{word-spacing:0.410667pt;}
.ws56{word-spacing:0.528000pt;}
.ws3d{word-spacing:0.586667pt;}
.ws1b{word-spacing:0.645333pt;}
.ws45{word-spacing:0.704000pt;}
.ws19{word-spacing:0.768000pt;}
.ws4e{word-spacing:1.056000pt;}
.ws22{word-spacing:1.173333pt;}
.ws24{word-spacing:1.232000pt;}
.ws61{word-spacing:1.280000pt;}
.ws5d{word-spacing:1.333333pt;}
.wsb{word-spacing:1.344000pt;}
.wsf{word-spacing:1.408000pt;}
.ws49{word-spacing:1.440000pt;}
.ws2d{word-spacing:1.466667pt;}
.ws37{word-spacing:1.584000pt;}
.ws44{word-spacing:1.701333pt;}
.ws71{word-spacing:1.760000pt;}
.ws14{word-spacing:1.872000pt;}
.wse{word-spacing:2.053333pt;}
.ws3e{word-spacing:2.112000pt;}
.ws43{word-spacing:2.170667pt;}
.ws5f{word-spacing:2.453333pt;}
.ws5a{word-spacing:3.413333pt;}
.ws63{word-spacing:3.733333pt;}
.wsa{word-spacing:3.754667pt;}
.ws72{word-spacing:4.000000pt;}
.ws59{word-spacing:4.320000pt;}
.ws6d{word-spacing:4.373333pt;}
.ws48{word-spacing:4.458667pt;}
.ws6a{word-spacing:4.533333pt;}
.ws4c{word-spacing:4.634667pt;}
.ws68{word-spacing:4.800000pt;}
.ws6f{word-spacing:5.013333pt;}
.ws46{word-spacing:5.045333pt;}
.ws52{word-spacing:5.136000pt;}
.ws4b{word-spacing:5.280000pt;}
.ws11{word-spacing:5.925333pt;}
.ws6c{word-spacing:6.240000pt;}
.ws2e{word-spacing:6.336000pt;}
.ws25{word-spacing:6.816000pt;}
.ws18{word-spacing:7.509333pt;}
.ws69{word-spacing:7.733333pt;}
.ws70{word-spacing:17.706667pt;}
.ws60{word-spacing:22.133333pt;}
.ws3b{word-spacing:98.773333pt;}
.ws39{word-spacing:99.253333pt;}
.ws3a{word-spacing:99.840000pt;}
.ws38{word-spacing:103.413333pt;}
.ws6{word-spacing:478.131200pt;}
.ws47{word-spacing:618.949867pt;}
.ws15{word-spacing:619.360533pt;}
.ws53{word-spacing:620.181867pt;}
.ws31{word-spacing:620.592533pt;}
.ws4f{word-spacing:621.120533pt;}
.ws41{word-spacing:621.531200pt;}
.ws4d{word-spacing:622.587200pt;}
.ws27{word-spacing:623.291200pt;}
.ws1c{word-spacing:626.517867pt;}
.ws5{word-spacing:627.515200pt;}
._21{margin-left:-70.282667pt;}
._10{margin-left:-11.029333pt;}
._20{margin-left:-10.090667pt;}
._1a{margin-left:-5.574933pt;}
._6{margin-left:-4.453333pt;}
._2{margin-left:-3.520000pt;}
._0{margin-left:-2.350933pt;}
._1{margin-left:-0.933333pt;}
._9{width:1.377067pt;}
._3{width:2.340800pt;}
._4{width:3.280000pt;}
._5{width:4.240000pt;}
._8{width:5.201600pt;}
._7{width:6.408000pt;}
._a{width:7.408000pt;}
._b{width:8.816000pt;}
._f{width:10.216533pt;}
._22{width:11.722667pt;}
._14{width:12.806933pt;}
._23{width:14.275733pt;}
._26{width:15.824000pt;}
._25{width:16.741333pt;}
._24{width:17.886933pt;}
._27{width:18.802133pt;}
._c{width:19.845333pt;}
._d{width:24.560000pt;}
._e{width:25.808000pt;}
._16{width:34.773333pt;}
._1b{width:35.893333pt;}
._18{width:37.226667pt;}
._15{width:44.640000pt;}
._13{width:45.818667pt;}
._12{width:47.285333pt;}
._19{width:48.224000pt;}
._11{width:55.440000pt;}
._17{width:95.269333pt;}
._1f{width:181.920000pt;}
._1e{width:188.346667pt;}
._1d{width:199.786667pt;}
._1c{width:224.213333pt;}
.fs6{font-size:34.202667pt;}
.fs5{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:98.038800pt;}
.ycd{bottom:103.936933pt;}
.y4c{bottom:103.937067pt;}
.y108{bottom:103.937200pt;}
.y1ba{bottom:109.880267pt;}
.y22{bottom:114.038800pt;}
.y1ca{bottom:114.257467pt;}
.ycc{bottom:118.336933pt;}
.y4b{bottom:118.337067pt;}
.y107{bottom:118.337200pt;}
.y92{bottom:121.976533pt;}
.y1ed{bottom:122.344267pt;}
.y1b9{bottom:127.480267pt;}
.y21{bottom:130.038800pt;}
.y1c9{bottom:130.257467pt;}
.ycb{bottom:132.736933pt;}
.y4a{bottom:132.737067pt;}
.y106{bottom:132.737200pt;}
.y84{bottom:136.376533pt;}
.y1ec{bottom:138.344267pt;}
.y197{bottom:138.777333pt;}
.y179{bottom:143.761733pt;}
.y1b8{bottom:145.080267pt;}
.y1c8{bottom:146.257467pt;}
.yca{bottom:147.136933pt;}
.y70{bottom:147.137067pt;}
.y20{bottom:149.812133pt;}
.y49{bottom:150.776533pt;}
.y105{bottom:150.776667pt;}
.y13c{bottom:152.740533pt;}
.y1eb{bottom:154.344267pt;}
.y196{bottom:156.377333pt;}
.y178{bottom:161.361733pt;}
.y48{bottom:161.536933pt;}
.y6f{bottom:161.537067pt;}
.ye7{bottom:162.254933pt;}
.y1c7{bottom:162.257467pt;}
.y1b7{bottom:162.680267pt;}
.yc9{bottom:165.176400pt;}
.yaf{bottom:165.176533pt;}
.y13b{bottom:170.340533pt;}
.y1ea{bottom:170.344267pt;}
.y1f{bottom:173.372133pt;}
.y195{bottom:173.977333pt;}
.y91{bottom:175.057467pt;}
.yc8{bottom:175.937067pt;}
.y1c6{bottom:178.257467pt;}
.y177{bottom:178.961733pt;}
.y47{bottom:179.576400pt;}
.y6e{bottom:179.576533pt;}
.ye6{bottom:179.854933pt;}
.y163{bottom:180.133733pt;}
.y1b6{bottom:180.280267pt;}
.y1e9{bottom:186.344267pt;}
.y13a{bottom:187.940533pt;}
.y1e{bottom:189.372133pt;}
.y46{bottom:190.337067pt;}
.y194{bottom:191.577333pt;}
.y90{bottom:192.657467pt;}
.yd2{bottom:192.658933pt;}
.y83{bottom:193.362933pt;}
.y144{bottom:193.976533pt;}
.y1c5{bottom:194.257467pt;}
.y176{bottom:196.561733pt;}
.ye5{bottom:197.454933pt;}
.y162{bottom:197.733733pt;}
.y1b5{bottom:197.880267pt;}
.y1e8{bottom:202.344267pt;}
.y45{bottom:204.737067pt;}
.y139{bottom:205.540533pt;}
.yae{bottom:205.936267pt;}
.y193{bottom:209.177333pt;}
.y8f{bottom:210.257467pt;}
.yd1{bottom:210.258933pt;}
.y82{bottom:210.962933pt;}
.y1d{bottom:211.238800pt;}
.y175{bottom:214.161733pt;}
.ye4{bottom:215.054933pt;}
.y104{bottom:215.148933pt;}
.y161{bottom:215.333733pt;}
.y1b4{bottom:215.480267pt;}
.y1e7{bottom:218.344267pt;}
.y6d{bottom:219.137067pt;}
.y44{bottom:222.776533pt;}
.y138{bottom:223.140533pt;}
.yad{bottom:223.536267pt;}
.y1c4{bottom:226.257467pt;}
.y192{bottom:226.777333pt;}
.y1c{bottom:227.238800pt;}
.y8e{bottom:227.857467pt;}
.y81{bottom:228.562933pt;}
.y174{bottom:231.761733pt;}
.y103{bottom:232.748933pt;}
.y160{bottom:232.933733pt;}
.y1b3{bottom:233.080267pt;}
.y6c{bottom:233.537067pt;}
.y1e6{bottom:234.344267pt;}
.y137{bottom:240.740533pt;}
.yd0{bottom:241.088267pt;}
.yac{bottom:241.136267pt;}
.y1c3{bottom:242.257467pt;}
.y1b{bottom:243.238800pt;}
.y8d{bottom:245.457467pt;}
.y80{bottom:246.162933pt;}
.y6b{bottom:247.937067pt;}
.y173{bottom:249.361733pt;}
.ye3{bottom:250.254933pt;}
.y1e5{bottom:250.344267pt;}
.y102{bottom:250.348933pt;}
.y15f{bottom:250.533733pt;}
.y1b2{bottom:250.680267pt;}
.y43{bottom:254.972133pt;}
.y1c2{bottom:258.257467pt;}
.y136{bottom:258.340533pt;}
.yab{bottom:258.736267pt;}
.y1a{bottom:259.238800pt;}
.y6a{bottom:262.337067pt;}
.y8c{bottom:263.057467pt;}
.y7f{bottom:263.762933pt;}
.ye2{bottom:266.254933pt;}
.y191{bottom:266.304000pt;}
.y1e4{bottom:266.344267pt;}
.y172{bottom:266.961733pt;}
.y101{bottom:267.948933pt;}
.y15e{bottom:268.133733pt;}
.y42{bottom:272.572133pt;}
.y1c1{bottom:274.257467pt;}
.y19{bottom:275.238800pt;}
.y135{bottom:275.940533pt;}
.yaa{bottom:276.336267pt;}
.yc7{bottom:276.737067pt;}
.y1b1{bottom:277.080267pt;}
.y11c{bottom:280.376533pt;}
.y8b{bottom:280.657467pt;}
.y143{bottom:280.658933pt;}
.y7e{bottom:281.362933pt;}
.ye1{bottom:282.254933pt;}
.y1e3{bottom:282.344267pt;}
.y190{bottom:283.904000pt;}
.y171{bottom:284.561733pt;}
.y100{bottom:285.548933pt;}
.y15d{bottom:285.733733pt;}
.y41{bottom:290.172133pt;}
.y1c0{bottom:290.257467pt;}
.y18{bottom:291.238800pt;}
.y134{bottom:293.540533pt;}
.ya9{bottom:293.936267pt;}
.yc6{bottom:294.776533pt;}
.y8a{bottom:298.257467pt;}
.y142{bottom:298.258933pt;}
.y1e2{bottom:298.344267pt;}
.y7d{bottom:298.962933pt;}
.y18f{bottom:301.504000pt;}
.y170{bottom:302.161733pt;}
.yff{bottom:303.148933pt;}
.y15c{bottom:303.333733pt;}
.y1bf{bottom:306.257467pt;}
.y69{bottom:306.962933pt;}
.y17{bottom:307.238800pt;}
.y40{bottom:307.772133pt;}
.y133{bottom:311.140533pt;}
.ya8{bottom:311.536267pt;}
.y11b{bottom:311.537733pt;}
.y1e1{bottom:314.344267pt;}
.ye0{bottom:315.856267pt;}
.y89{bottom:315.858933pt;}
.y7c{bottom:316.562933pt;}
.y1b0{bottom:316.606933pt;}
.y18e{bottom:319.104000pt;}
.y16f{bottom:319.761733pt;}
.yfe{bottom:320.748933pt;}
.y1be{bottom:322.257467pt;}
.y16{bottom:323.238800pt;}
.y68{bottom:324.563067pt;}
.y3f{bottom:325.372133pt;}
.yc5{bottom:325.542933pt;}
.y132{bottom:328.740533pt;}
.ya7{bottom:329.136267pt;}
.y11a{bottom:329.137733pt;}
.y1e0{bottom:330.344267pt;}
.ydf{bottom:333.456267pt;}
.y88{bottom:333.458933pt;}
.y7b{bottom:334.162933pt;}
.y15b{bottom:334.163067pt;}
.y1af{bottom:334.206933pt;}
.y18d{bottom:336.704000pt;}
.yeb{bottom:337.361733pt;}
.y1bd{bottom:338.257467pt;}
.yfd{bottom:338.348933pt;}
.y15{bottom:339.238800pt;}
.y67{bottom:342.163067pt;}
.y3e{bottom:342.972133pt;}
.yc4{bottom:343.142933pt;}
.y1df{bottom:346.344267pt;}
.ya6{bottom:346.736267pt;}
.y119{bottom:346.737733pt;}
.yde{bottom:351.056267pt;}
.y87{bottom:351.058933pt;}
.y7a{bottom:351.762933pt;}
.y1ae{bottom:351.806933pt;}
.y1bc{bottom:354.257467pt;}
.y18c{bottom:354.304000pt;}
.yea{bottom:354.961733pt;}
.y14{bottom:355.238800pt;}
.yfc{bottom:355.948933pt;}
.y66{bottom:359.763067pt;}
.y3d{bottom:360.572133pt;}
.yc3{bottom:360.742933pt;}
.y1de{bottom:362.344267pt;}
.y131{bottom:363.940533pt;}
.ya5{bottom:364.336267pt;}
.y118{bottom:364.337733pt;}
.ydd{bottom:368.656267pt;}
.y141{bottom:368.658933pt;}
.y79{bottom:369.362933pt;}
.y15a{bottom:369.363067pt;}
.y1ad{bottom:369.406933pt;}
.y1bb{bottom:370.257467pt;}
.y13{bottom:371.238800pt;}
.y18b{bottom:371.904000pt;}
.y16e{bottom:372.561733pt;}
.yfb{bottom:373.548933pt;}
.y65{bottom:377.363067pt;}
.y3c{bottom:378.172133pt;}
.yc2{bottom:378.342933pt;}
.y1dd{bottom:378.344267pt;}
.y130{bottom:379.940533pt;}
.y86{bottom:381.888267pt;}
.ya4{bottom:381.936267pt;}
.y117{bottom:381.937733pt;}
.ydc{bottom:386.256267pt;}
.y140{bottom:386.258933pt;}
.y78{bottom:386.962933pt;}
.y159{bottom:386.963067pt;}
.y1ac{bottom:387.006933pt;}
.y18a{bottom:389.504000pt;}
.ye9{bottom:390.161733pt;}
.y12{bottom:391.012133pt;}
.yfa{bottom:391.148933pt;}
.y1dc{bottom:394.344267pt;}
.y64{bottom:394.963067pt;}
.y3b{bottom:395.772133pt;}
.y12f{bottom:395.940533pt;}
.yc1{bottom:395.942933pt;}
.y85{bottom:399.488267pt;}
.ya3{bottom:399.536267pt;}
.y116{bottom:399.537733pt;}
.ydb{bottom:403.856267pt;}
.y77{bottom:404.562933pt;}
.y158{bottom:404.563067pt;}
.y1ab{bottom:404.606933pt;}
.ye8{bottom:406.161733pt;}
.y189{bottom:407.104000pt;}
.y16d{bottom:407.761733pt;}
.y1db{bottom:410.344267pt;}
.y12e{bottom:411.940533pt;}
.y3a{bottom:413.372133pt;}
.yc0{bottom:413.542933pt;}
.ya2{bottom:417.136267pt;}
.y115{bottom:417.137733pt;}
.yda{bottom:421.456267pt;}
.y13f{bottom:421.458933pt;}
.y76{bottom:422.162933pt;}
.y157{bottom:422.163067pt;}
.y1aa{bottom:422.206933pt;}
.y16c{bottom:425.361733pt;}
.y1da{bottom:426.344267pt;}
.yf9{bottom:426.350133pt;}
.y12d{bottom:427.940533pt;}
.y63{bottom:430.163067pt;}
.y39{bottom:430.972133pt;}
.ybf{bottom:431.142933pt;}
.y11{bottom:432.176000pt;}
.ya1{bottom:434.736267pt;}
.y114{bottom:434.737733pt;}
.yd9{bottom:439.056267pt;}
.y13e{bottom:439.058933pt;}
.y75{bottom:439.762933pt;}
.y156{bottom:439.763067pt;}
.y1a9{bottom:439.806933pt;}
.y1d9{bottom:442.344267pt;}
.y16b{bottom:442.961733pt;}
.y10{bottom:445.508000pt;}
.y62{bottom:446.163067pt;}
.y188{bottom:446.630667pt;}
.y38{bottom:448.572133pt;}
.ybe{bottom:448.742933pt;}
.yf8{bottom:448.786000pt;}
.ya0{bottom:452.336267pt;}
.yd8{bottom:456.658933pt;}
.y74{bottom:457.362933pt;}
.y155{bottom:457.363067pt;}
.y1a8{bottom:457.406933pt;}
.y1d8{bottom:458.344267pt;}
.yf{bottom:458.840000pt;}
.y16a{bottom:460.561733pt;}
.y12c{bottom:461.541733pt;}
.y61{bottom:462.163067pt;}
.yf7{bottom:464.786000pt;}
.y113{bottom:465.567067pt;}
.y37{bottom:466.172133pt;}
.ybd{bottom:466.342933pt;}
.y9f{bottom:469.936267pt;}
.yd7{bottom:474.258933pt;}
.y1d7{bottom:474.344267pt;}
.y73{bottom:474.962933pt;}
.y154{bottom:474.963067pt;}
.y1a7{bottom:475.006933pt;}
.ye{bottom:475.952000pt;}
.y187{bottom:477.460000pt;}
.y169{bottom:478.161733pt;}
.y60{bottom:478.163067pt;}
.y12b{bottom:479.141733pt;}
.y112{bottom:483.167067pt;}
.y36{bottom:483.772133pt;}
.y9e{bottom:487.536267pt;}
.yf6{bottom:489.719333pt;}
.y1d6{bottom:490.344267pt;}
.yd6{bottom:491.858933pt;}
.y72{bottom:492.562933pt;}
.y153{bottom:492.563067pt;}
.y1a6{bottom:492.606933pt;}
.y5f{bottom:494.163067pt;}
.y186{bottom:495.060000pt;}
.y168{bottom:495.761733pt;}
.y12a{bottom:496.741733pt;}
.y35{bottom:501.372133pt;}
.ybc{bottom:501.542933pt;}
.y9d{bottom:505.136267pt;}
.yf5{bottom:505.719333pt;}
.y1d5{bottom:506.344267pt;}
.yd{bottom:506.886533pt;}
.yd5{bottom:509.458933pt;}
.y71{bottom:510.162933pt;}
.y152{bottom:510.163067pt;}
.y1a5{bottom:510.206933pt;}
.y167{bottom:513.361733pt;}
.y129{bottom:514.341733pt;}
.ybb{bottom:517.542933pt;}
.y34{bottom:518.972133pt;}
.y1d4{bottom:522.344267pt;}
.y13d{bottom:522.688267pt;}
.y9c{bottom:522.736133pt;}
.y111{bottom:523.441733pt;}
.yc{bottom:524.486533pt;}
.yd4{bottom:527.058933pt;}
.y5e{bottom:527.762933pt;}
.y151{bottom:527.763067pt;}
.y1a4{bottom:527.806933pt;}
.yf4{bottom:530.652667pt;}
.y166{bottom:530.961733pt;}
.y128{bottom:531.941733pt;}
.y185{bottom:535.334667pt;}
.y33{bottom:536.572133pt;}
.y1d3{bottom:538.344267pt;}
.y9b{bottom:540.336133pt;}
.y110{bottom:541.036267pt;}
.yb{bottom:542.086533pt;}
.y5d{bottom:545.362933pt;}
.y150{bottom:545.363067pt;}
.y1a3{bottom:545.406933pt;}
.yf3{bottom:546.652667pt;}
.yba{bottom:551.144267pt;}
.y184{bottom:552.934667pt;}
.y32{bottom:554.172133pt;}
.y1d2{bottom:554.344267pt;}
.yd3{bottom:557.888267pt;}
.y9a{bottom:557.932267pt;}
.y10f{bottom:558.636267pt;}
.ya{bottom:559.686533pt;}
.y5c{bottom:562.962933pt;}
.y14f{bottom:562.963067pt;}
.y1a2{bottom:563.006933pt;}
.y165{bottom:566.161733pt;}
.y127{bottom:567.144267pt;}
.yb9{bottom:568.744267pt;}
.y1d1{bottom:570.344267pt;}
.y183{bottom:570.534667pt;}
.yf2{bottom:571.586000pt;}
.y31{bottom:571.772133pt;}
.y99{bottom:575.532267pt;}
.y10e{bottom:576.236267pt;}
.y5b{bottom:580.562933pt;}
.y14e{bottom:580.563067pt;}
.y1a1{bottom:580.606933pt;}
.y164{bottom:582.161733pt;}
.y126{bottom:583.144267pt;}
.yb8{bottom:586.344267pt;}
.yf1{bottom:587.586000pt;}
.y182{bottom:588.134667pt;}
.y30{bottom:589.372133pt;}
.y98{bottom:593.132267pt;}
.y10d{bottom:593.836267pt;}
.y9{bottom:594.899867pt;}
.y5a{bottom:598.162933pt;}
.y14d{bottom:598.163067pt;}
.y1a0{bottom:598.206933pt;}
.y125{bottom:599.144267pt;}
.y1d0{bottom:602.344267pt;}
.yb7{bottom:603.944267pt;}
.y181{bottom:605.734667pt;}
.y97{bottom:610.732267pt;}
.y10c{bottom:611.436267pt;}
.y8{bottom:612.499867pt;}
.yf0{bottom:612.519333pt;}
.y124{bottom:615.144267pt;}
.y59{bottom:615.762933pt;}
.y14c{bottom:615.763067pt;}
.y19f{bottom:615.806933pt;}
.y1cf{bottom:618.344267pt;}
.y2f{bottom:620.200400pt;}
.yb6{bottom:621.544267pt;}
.y180{bottom:623.334667pt;}
.yef{bottom:628.519333pt;}
.y10b{bottom:629.036267pt;}
.y123{bottom:631.144267pt;}
.y58{bottom:633.362933pt;}
.y14b{bottom:633.363067pt;}
.y19e{bottom:633.406933pt;}
.y1ce{bottom:634.344267pt;}
.y7{bottom:637.650933pt;}
.yb5{bottom:639.144267pt;}
.y17f{bottom:640.934667pt;}
.y96{bottom:641.561600pt;}
.y10a{bottom:646.636267pt;}
.y1cd{bottom:650.344267pt;}
.y57{bottom:650.962933pt;}
.y14a{bottom:650.963067pt;}
.yee{bottom:653.452667pt;}
.yb4{bottom:656.744267pt;}
.y17e{bottom:658.534667pt;}
.y6{bottom:659.254933pt;}
.y2e{bottom:660.477600pt;}
.y109{bottom:664.236267pt;}
.y122{bottom:664.744267pt;}
.y1cc{bottom:666.344267pt;}
.y56{bottom:668.562933pt;}
.y149{bottom:668.563067pt;}
.y19d{bottom:672.933600pt;}
.yb3{bottom:674.344267pt;}
.y17d{bottom:676.134667pt;}
.y2d{bottom:676.477600pt;}
.y121{bottom:680.744267pt;}
.y5{bottom:680.858933pt;}
.y95{bottom:681.836267pt;}
.y1cb{bottom:682.344267pt;}
.yed{bottom:682.389600pt;}
.y55{bottom:686.162933pt;}
.y148{bottom:686.163067pt;}
.y19c{bottom:690.533600pt;}
.yb2{bottom:691.944267pt;}
.y17c{bottom:693.734667pt;}
.y120{bottom:696.744267pt;}
.y2c{bottom:698.344267pt;}
.y94{bottom:699.436267pt;}
.yec{bottom:699.989600pt;}
.y54{bottom:703.762933pt;}
.y147{bottom:703.763067pt;}
.y19b{bottom:708.133600pt;}
.yb1{bottom:709.544267pt;}
.y17b{bottom:711.334667pt;}
.y11f{bottom:712.744267pt;}
.y2b{bottom:714.344267pt;}
.y93{bottom:717.036267pt;}
.y53{bottom:721.362933pt;}
.y146{bottom:721.363067pt;}
.y19a{bottom:725.733600pt;}
.yb0{bottom:727.144267pt;}
.y11e{bottom:728.744267pt;}
.y2a{bottom:730.344267pt;}
.y52{bottom:738.962933pt;}
.y145{bottom:738.963067pt;}
.y199{bottom:743.333600pt;}
.y11d{bottom:744.744267pt;}
.y29{bottom:746.344267pt;}
.y17a{bottom:746.534667pt;}
.y51{bottom:756.562933pt;}
.ycf{bottom:756.563067pt;}
.y198{bottom:760.933600pt;}
.y28{bottom:762.344267pt;}
.y50{bottom:774.162933pt;}
.yce{bottom:774.163067pt;}
.y27{bottom:778.344267pt;}
.y4f{bottom:791.762933pt;}
.y26{bottom:794.344267pt;}
.y4e{bottom:809.362933pt;}
.y25{bottom:810.344267pt;}
.y24{bottom:839.599067pt;}
.y4d{bottom:840.580400pt;}
.ha{height:27.998925pt;}
.h3{height:28.501333pt;}
.h4{height:30.016000pt;}
.h2{height:34.304000pt;}
.h8{height:35.626667pt;}
.h9{height:38.592000pt;}
.hc{height:39.072000pt;}
.h6{height:42.880000pt;}
.hb{height:43.253333pt;}
.hf{height:47.167467pt;}
.h7{height:47.168000pt;}
.he{height:47.168533pt;}
.hd{height:47.183467pt;}
.h10{height:47.189867pt;}
.h5{height:47.578667pt;}
.h11{height:49.386667pt;}
.h0{height:907.086667pt;}
.h1{height:907.333333pt;}
.w0{width:642.520000pt;}
.w1{width:642.666667pt;}
.x0{left:0.000000pt;}
.xe{left:86.929067pt;}
.x1{left:94.488133pt;}
.xd{left:102.047200pt;}
.x4{left:105.277600pt;}
.x7{left:108.054933pt;}
.x11{left:109.606267pt;}
.x15{left:111.325467pt;}
.x27{left:116.713867pt;}
.x26{left:119.186800pt;}
.x28{left:120.932133pt;}
.x23{left:123.032267pt;}
.x22{left:126.041867pt;}
.x19{left:127.725200pt;}
.x8{left:128.654933pt;}
.x16{left:133.589467pt;}
.x17{left:136.063067pt;}
.x5{left:141.416267pt;}
.x13{left:143.620133pt;}
.x12{left:158.740133pt;}
.x10{left:164.355733pt;}
.x18{left:173.849733pt;}
.x1b{left:198.511867pt;}
.x1a{left:217.271867pt;}
.x6{left:236.998933pt;}
.x1d{left:290.898533pt;}
.x1c{left:308.458533pt;}
.x25{left:339.807467pt;}
.xa{left:359.900267pt;}
.x1e{left:382.845200pt;}
.xb{left:385.086933pt;}
.x2{left:401.186800pt;}
.x9{left:408.794267pt;}
.xc{left:443.072800pt;}
.x3{left:453.952400pt;}
.x20{left:474.405200pt;}
.x1f{left:492.791867pt;}
.x21{left:494.618533pt;}
.x24{left:542.082933pt;}
.xf{left:542.992000pt;}
.x14{left:544.590800pt;}
}




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