
    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_e4f0b9a7d32c2aacddca6f49.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.059000;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_65ff6370bf61b11c36e0613f.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.976000;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_b6bf1500b3a730f96be61637.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.773000;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_4ee2c1c2707bcb8567d3ea77.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.059000;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_65ff6370bf61b11c36e0613f.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.976000;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_b6bf1500b3a730f96be61637.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.773000;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_c43028b2e4525e96bf3bd12c.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.945000;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_5be9534be0ce965de4cc7328.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.935000;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_f1c708ae3b558bc34b9ccb73.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.059000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_14a4d2830b8dd6ca73555f58.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.059000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_1847f2668079089af9135f6d.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.935000;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:ffc;src:url('chunks/assets/font_e396643f537d6b0f191b4a98.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.976000;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:ffd;src:url('chunks/assets/font_f1c708ae3b558bc34b9ccb73.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.059000;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:ffe;src:url('chunks/assets/font_f1c708ae3b558bc34b9ccb73.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.059000;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:fff;src:url('chunks/assets/font_bde0445c530a639bf73048db.woff2')format("woff");}.fff{font-family:fff;line-height:1.059000;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:ff10;src:url('chunks/assets/font_0b008f5699bed7a64ac685a1.woff2')format("woff");}.ff10{font-family:ff10;line-height:1.059000;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:ff11;src:url('chunks/assets/font_9d36d717d508d53687e7e1ea.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.976000;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:ff12;src:url('chunks/assets/font_e041a0636bc326fcab430c60.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.945000;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:ff13;src:url('chunks/assets/font_5a4bb190af52d1500c8f6bf6.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.935000;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:ff14;src:url('chunks/assets/font_a85674f6c266792d97eca774.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.666000;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;}
.m1{transform:matrix(0.125000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.125000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.125000,0.000000,0.000000,0.250000,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);}
.v1{vertical-align:-21.966000px;}
.v0{vertical-align:0.000000px;}
.ls14{letter-spacing:-3.300000px;}
.ls18{letter-spacing:-2.592000px;}
.ls13{letter-spacing:-0.330000px;}
.ls4{letter-spacing:0.000000px;}
.ls12{letter-spacing:0.192600px;}
.ls7{letter-spacing:0.330000px;}
.lsf{letter-spacing:0.382500px;}
.ls16{letter-spacing:0.396000px;}
.ls8{letter-spacing:0.480000px;}
.ls17{letter-spacing:0.594000px;}
.ls15{letter-spacing:0.660000px;}
.ls9{letter-spacing:0.864000px;}
.lsa{letter-spacing:1.008000px;}
.lsc{letter-spacing:1.104000px;}
.lsb{letter-spacing:1.152000px;}
.lse{letter-spacing:1.782000px;}
.ls3{letter-spacing:1.950000px;}
.ls0{letter-spacing:2.700000px;}
.ls6{letter-spacing:2.970000px;}
.ls5{letter-spacing:3.348000px;}
.ls10{letter-spacing:4.800000px;}
.lsd{letter-spacing:6.600000px;}
.ls11{letter-spacing:7.680000px;}
.ls1{letter-spacing:13.140000px;}
.ls2{letter-spacing:13.320000px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1c{word-spacing:-17.824500px;}
.ws99{word-spacing:-15.444000px;}
.ws11{word-spacing:-15.378000px;}
.ws5{word-spacing:-15.282000px;}
.ws0{word-spacing:-15.012000px;}
.ws5c{word-spacing:-14.718000px;}
.ws9a{word-spacing:-13.332000px;}
.ws8{word-spacing:-12.048000px;}
.ws7{word-spacing:-11.952000px;}
.ws6e{word-spacing:-5.148000px;}
.ws97{word-spacing:-5.082000px;}
.ws76{word-spacing:-4.356000px;}
.ws17{word-spacing:-4.224000px;}
.ws22{word-spacing:-4.158000px;}
.ws1b{word-spacing:-4.092000px;}
.ws48{word-spacing:-4.026000px;}
.ws54{word-spacing:-3.960000px;}
.ws74{word-spacing:-3.894000px;}
.ws18{word-spacing:-3.762000px;}
.ws2c{word-spacing:-3.630000px;}
.ws63{word-spacing:-3.498000px;}
.ws6{word-spacing:-3.348000px;}
.ws30{word-spacing:-3.300000px;}
.ws75{word-spacing:-3.234000px;}
.ws96{word-spacing:-3.168000px;}
.ws71{word-spacing:-3.102000px;}
.ws6b{word-spacing:-3.036000px;}
.ws53{word-spacing:-2.904000px;}
.ws67{word-spacing:-2.838000px;}
.ws23{word-spacing:-2.772000px;}
.ws25{word-spacing:-2.706000px;}
.ws4{word-spacing:-2.700000px;}
.ws20{word-spacing:-2.640000px;}
.ws2a{word-spacing:-2.574000px;}
.ws64{word-spacing:-2.508000px;}
.ws28{word-spacing:-2.442000px;}
.ws66{word-spacing:-2.310000px;}
.ws7b{word-spacing:-2.244000px;}
.ws1a{word-spacing:-2.178000px;}
.ws55{word-spacing:-1.980000px;}
.ws46{word-spacing:-1.914000px;}
.ws51{word-spacing:-1.848000px;}
.ws80{word-spacing:-1.782000px;}
.wse{word-spacing:-1.776000px;}
.ws50{word-spacing:-1.759500px;}
.ws10{word-spacing:-1.728000px;}
.ws2b{word-spacing:-1.650000px;}
.wsf{word-spacing:-1.632000px;}
.ws5b{word-spacing:-1.584000px;}
.wsb{word-spacing:-1.518000px;}
.wsd{word-spacing:-1.488000px;}
.ws60{word-spacing:-1.452000px;}
.ws41{word-spacing:-1.386000px;}
.ws9{word-spacing:-1.320000px;}
.ws72{word-spacing:-1.254000px;}
.ws7f{word-spacing:-1.188000px;}
.ws73{word-spacing:-1.122000px;}
.wsc{word-spacing:-1.104000px;}
.ws3b{word-spacing:-1.056000px;}
.ws5d{word-spacing:-0.990000px;}
.ws3a{word-spacing:-0.924000px;}
.ws69{word-spacing:-0.858000px;}
.ws29{word-spacing:-0.792000px;}
.ws6a{word-spacing:-0.660000px;}
.ws85{word-spacing:-0.594000px;}
.ws83{word-spacing:-0.528000px;}
.ws87{word-spacing:-0.462000px;}
.ws4b{word-spacing:-0.396000px;}
.ws1d{word-spacing:-0.382500px;}
.ws2f{word-spacing:-0.330000px;}
.ws26{word-spacing:-0.264000px;}
.ws8b{word-spacing:-0.132000px;}
.ws34{word-spacing:-0.066000px;}
.ws3{word-spacing:0.000000px;}
.ws61{word-spacing:0.066000px;}
.ws88{word-spacing:0.132000px;}
.ws44{word-spacing:0.198000px;}
.ws65{word-spacing:0.264000px;}
.ws4c{word-spacing:0.330000px;}
.ws40{word-spacing:0.462000px;}
.ws9c{word-spacing:0.480000px;}
.ws93{word-spacing:0.528000px;}
.ws59{word-spacing:0.594000px;}
.ws5a{word-spacing:0.660000px;}
.ws6f{word-spacing:0.726000px;}
.ws45{word-spacing:0.792000px;}
.ws32{word-spacing:0.924000px;}
.ws56{word-spacing:0.990000px;}
.ws2{word-spacing:1.080000px;}
.ws36{word-spacing:1.122000px;}
.ws3c{word-spacing:1.188000px;}
.ws24{word-spacing:1.254000px;}
.ws1{word-spacing:1.260000px;}
.ws4e{word-spacing:1.386000px;}
.ws16{word-spacing:1.452000px;}
.ws84{word-spacing:1.518000px;}
.ws47{word-spacing:1.650000px;}
.ws39{word-spacing:1.782000px;}
.ws89{word-spacing:1.980000px;}
.ws33{word-spacing:2.178000px;}
.ws92{word-spacing:2.244000px;}
.ws7d{word-spacing:2.310000px;}
.ws77{word-spacing:2.376000px;}
.ws4a{word-spacing:2.442000px;}
.ws2d{word-spacing:2.508000px;}
.ws42{word-spacing:2.574000px;}
.ws38{word-spacing:2.706000px;}
.ws3d{word-spacing:2.838000px;}
.ws5f{word-spacing:2.970000px;}
.ws9b{word-spacing:3.072000px;}
.ws35{word-spacing:3.102000px;}
.ws79{word-spacing:3.234000px;}
.ws8a{word-spacing:3.300000px;}
.ws31{word-spacing:3.366000px;}
.ws52{word-spacing:3.498000px;}
.ws5e{word-spacing:3.564000px;}
.ws86{word-spacing:3.696000px;}
.ws78{word-spacing:3.828000px;}
.ws8e{word-spacing:4.092000px;}
.ws6c{word-spacing:4.158000px;}
.ws14{word-spacing:4.290000px;}
.ws27{word-spacing:4.554000px;}
.ws68{word-spacing:4.620000px;}
.ws94{word-spacing:4.884000px;}
.ws8c{word-spacing:4.950000px;}
.ws90{word-spacing:5.082000px;}
.ws2e{word-spacing:5.280000px;}
.ws13{word-spacing:5.412000px;}
.ws21{word-spacing:5.478000px;}
.ws43{word-spacing:5.610000px;}
.ws82{word-spacing:5.808000px;}
.ws8f{word-spacing:5.874000px;}
.ws15{word-spacing:6.204000px;}
.ws91{word-spacing:6.336000px;}
.ws58{word-spacing:6.534000px;}
.ws4d{word-spacing:6.666000px;}
.ws57{word-spacing:6.798000px;}
.ws95{word-spacing:6.864000px;}
.ws7c{word-spacing:7.062000px;}
.ws98{word-spacing:7.128000px;}
.ws4f{word-spacing:7.326000px;}
.ws12{word-spacing:7.392000px;}
.ws81{word-spacing:7.590000px;}
.ws19{word-spacing:7.656000px;}
.ws8d{word-spacing:8.052000px;}
.ws37{word-spacing:8.118000px;}
.ws70{word-spacing:8.580000px;}
.ws7a{word-spacing:9.240000px;}
.ws3e{word-spacing:9.372000px;}
.wsa{word-spacing:9.966000px;}
.ws7e{word-spacing:10.230000px;}
.ws62{word-spacing:12.408000px;}
.ws49{word-spacing:14.718000px;}
.ws6d{word-spacing:17.886000px;}
.ws3f{word-spacing:33.201000px;}
.ws1e{word-spacing:104.346000px;}
.ws1f{word-spacing:137.676000px;}
._15{margin-left:-2555.045400px;}
._1c{margin-left:-48.048000px;}
._5{margin-left:-36.990000px;}
._8{margin-left:-16.380000px;}
._7{margin-left:-13.734000px;}
._19{margin-left:-12.553650px;}
._10{margin-left:-8.352000px;}
._d{margin-left:-7.199400px;}
._f{margin-left:-5.761800px;}
._2{margin-left:-4.734000px;}
._b{margin-left:-3.306600px;}
._9{margin-left:-2.250000px;}
._1{margin-left:-1.152000px;}
._0{width:1.044000px;}
._4{width:2.052000px;}
._c{width:3.230400px;}
._3{width:4.338000px;}
._a{width:5.436000px;}
._16{width:12.385350px;}
._22{width:32.010000px;}
._1a{width:33.208650px;}
._18{width:34.968150px;}
._1b{width:45.249750px;}
._17{width:47.345850px;}
._12{width:55.704000px;}
._1f{width:59.780250px;}
._1d{width:84.218850px;}
._11{width:105.864000px;}
._13{width:139.194000px;}
._14{width:146.139000px;}
._6{width:160.560000px;}
._1e{width:192.582900px;}
._20{width:198.173250px;}
._21{width:210.455400px;}
._e{width:1158.636600px;}
.fc1{color:transparent;}
.fc0{color:rgb(35,31,32);}
.fs7{font-size:38.478000px;}
.fs4{font-size:48.000000px;}
.fs2{font-size:54.000000px;}
.fs3{font-size:66.000000px;}
.fs6{font-size:76.500000px;}
.fs1{font-size:78.000000px;}
.fs5{font-size:96.000000px;}
.fs0{font-size:180.000000px;}
.y0{bottom:0.000000px;}
.y7{bottom:80.787450px;}
.y19a{bottom:81.447450px;}
.y95{bottom:82.233600px;}
.ye9{bottom:82.260600px;}
.y164{bottom:101.625600px;}
.y10a{bottom:101.730600px;}
.y94{bottom:101.736600px;}
.y68{bottom:101.760750px;}
.ye8{bottom:101.763600px;}
.y199{bottom:115.695450px;}
.y163{bottom:121.128600px;}
.y109{bottom:121.233600px;}
.y93{bottom:121.239600px;}
.y67{bottom:121.263750px;}
.ye7{bottom:121.266600px;}
.y162{bottom:140.631600px;}
.y108{bottom:140.736600px;}
.y129{bottom:140.754600px;}
.y66{bottom:140.766750px;}
.ye6{bottom:140.769600px;}
.y198{bottom:141.063600px;}
.y23{bottom:151.275600px;}
.y107{bottom:160.239600px;}
.y92{bottom:160.245600px;}
.y128{bottom:160.257600px;}
.y65{bottom:160.269750px;}
.ye5{bottom:160.272600px;}
.y197{bottom:160.566600px;}
.y22{bottom:166.275600px;}
.y139{bottom:179.631600px;}
.y161{bottom:179.637600px;}
.y91{bottom:179.748600px;}
.y127{bottom:179.760600px;}
.ye4{bottom:179.772600px;}
.y64{bottom:179.772750px;}
.y196{bottom:180.069600px;}
.y21{bottom:181.275600px;}
.y20{bottom:196.275600px;}
.y138{bottom:199.134600px;}
.y160{bottom:199.140600px;}
.y106{bottom:199.245600px;}
.y90{bottom:199.251600px;}
.y126{bottom:199.263600px;}
.ye3{bottom:199.275600px;}
.y63{bottom:199.275750px;}
.y195{bottom:199.572600px;}
.y1f{bottom:211.275600px;}
.y15f{bottom:218.643600px;}
.ybc{bottom:218.658600px;}
.y105{bottom:218.748600px;}
.y8f{bottom:218.754600px;}
.y125{bottom:218.766600px;}
.y62{bottom:218.775750px;}
.y194{bottom:219.075600px;}
.y1e{bottom:226.275600px;}
.y137{bottom:238.140600px;}
.y15e{bottom:238.146600px;}
.ybb{bottom:238.161600px;}
.y104{bottom:238.251600px;}
.y8e{bottom:238.257600px;}
.ye2{bottom:238.268100px;}
.y124{bottom:238.269600px;}
.y193{bottom:238.578600px;}
.y1d{bottom:241.275600px;}
.y136{bottom:257.643600px;}
.y15d{bottom:257.649600px;}
.yba{bottom:257.664600px;}
.y103{bottom:257.754600px;}
.y8d{bottom:257.760600px;}
.y123{bottom:257.772600px;}
.ye1{bottom:257.775600px;}
.y1c{bottom:271.275600px;}
.y192{bottom:275.093100px;}
.y135{bottom:277.146600px;}
.y3c{bottom:277.179750px;}
.y102{bottom:277.257600px;}
.y8c{bottom:277.263600px;}
.y61{bottom:277.272750px;}
.y122{bottom:277.275600px;}
.y1b{bottom:286.275600px;}
.y191{bottom:294.596100px;}
.y15c{bottom:296.655600px;}
.yb9{bottom:296.670600px;}
.y3b{bottom:296.682750px;}
.y101{bottom:296.760600px;}
.y8b{bottom:296.766600px;}
.y60{bottom:296.775750px;}
.y1a{bottom:301.275600px;}
.y190{bottom:314.099100px;}
.y134{bottom:316.152600px;}
.y15b{bottom:316.158600px;}
.ye0{bottom:316.164600px;}
.yb8{bottom:316.173600px;}
.y3a{bottom:316.185750px;}
.y100{bottom:316.263600px;}
.y121{bottom:316.268100px;}
.y8a{bottom:316.269600px;}
.y19{bottom:316.275600px;}
.y5f{bottom:316.275750px;}
.y18{bottom:331.275600px;}
.y18f{bottom:333.602100px;}
.y133{bottom:335.655600px;}
.ydf{bottom:335.667600px;}
.yb7{bottom:335.676600px;}
.yff{bottom:335.766600px;}
.y89{bottom:335.772600px;}
.y120{bottom:335.775600px;}
.y18e{bottom:353.105100px;}
.y132{bottom:355.158600px;}
.y15a{bottom:355.164600px;}
.yde{bottom:355.170600px;}
.y5e{bottom:355.221750px;}
.y87{bottom:355.227600px;}
.y16f{bottom:355.248600px;}
.yfe{bottom:355.269600px;}
.y88{bottom:355.275600px;}
.y17{bottom:361.275600px;}
.y131{bottom:374.661600px;}
.y159{bottom:374.667600px;}
.yb6{bottom:374.682600px;}
.y5d{bottom:374.724750px;}
.y86{bottom:374.730600px;}
.y16e{bottom:374.751600px;}
.yfd{bottom:374.772600px;}
.y16{bottom:376.275600px;}
.y18d{bottom:389.619600px;}
.y15{bottom:391.275600px;}
.y130{bottom:394.164600px;}
.y158{bottom:394.170600px;}
.ydd{bottom:394.176600px;}
.yb5{bottom:394.185600px;}
.y11f{bottom:394.197600px;}
.y5c{bottom:394.227750px;}
.y16d{bottom:394.254600px;}
.yfc{bottom:394.275600px;}
.y14{bottom:406.275600px;}
.y18c{bottom:409.122600px;}
.y157{bottom:413.673600px;}
.ydc{bottom:413.679600px;}
.y39{bottom:413.684250px;}
.yb4{bottom:413.688600px;}
.y11e{bottom:413.700600px;}
.y5b{bottom:413.730750px;}
.y85{bottom:413.736600px;}
.y16c{bottom:413.757600px;}
.y18b{bottom:428.625600px;}
.y12f{bottom:433.170600px;}
.ydb{bottom:433.182600px;}
.y38{bottom:433.187250px;}
.yb3{bottom:433.191600px;}
.y11d{bottom:433.203600px;}
.y5a{bottom:433.233750px;}
.y84{bottom:433.239600px;}
.y16b{bottom:433.260600px;}
.yfb{bottom:433.275600px;}
.y13{bottom:436.275600px;}
.y18a{bottom:448.128600px;}
.y12{bottom:451.275600px;}
.y12e{bottom:452.673600px;}
.y156{bottom:452.679600px;}
.yda{bottom:452.685600px;}
.yb2{bottom:452.694600px;}
.y11c{bottom:452.706600px;}
.y59{bottom:452.736750px;}
.y83{bottom:452.742600px;}
.y16a{bottom:452.763600px;}
.y11{bottom:466.275600px;}
.y12d{bottom:472.176600px;}
.y155{bottom:472.182600px;}
.yd9{bottom:472.188600px;}
.y37{bottom:472.193250px;}
.y58{bottom:472.239750px;}
.y82{bottom:472.245600px;}
.y169{bottom:472.266600px;}
.y189{bottom:484.643100px;}
.yfa{bottom:491.679600px;}
.y154{bottom:491.685600px;}
.yb1{bottom:491.700600px;}
.y11b{bottom:491.712600px;}
.y57{bottom:491.742750px;}
.y81{bottom:491.748600px;}
.y168{bottom:491.769600px;}
.y10{bottom:496.275600px;}
.y188{bottom:504.146100px;}
.yf9{bottom:511.182600px;}
.y153{bottom:511.188600px;}
.yd8{bottom:511.194600px;}
.y36{bottom:511.199250px;}
.yb0{bottom:511.203600px;}
.y11a{bottom:511.215600px;}
.y56{bottom:511.245750px;}
.y80{bottom:511.251600px;}
.y167{bottom:511.272600px;}
.y187{bottom:523.649100px;}
.yf8{bottom:530.685600px;}
.y152{bottom:530.691600px;}
.yd7{bottom:530.697600px;}
.yaf{bottom:530.706600px;}
.y55{bottom:530.748750px;}
.y7f{bottom:530.754600px;}
.y166{bottom:530.775600px;}
.y186{bottom:543.152100px;}
.yf7{bottom:550.188600px;}
.y151{bottom:550.194600px;}
.yd6{bottom:550.200600px;}
.y35{bottom:550.205250px;}
.y119{bottom:550.221600px;}
.y54{bottom:550.251750px;}
.y7e{bottom:550.257600px;}
.y185{bottom:562.655100px;}
.y12c{bottom:569.691600px;}
.yd5{bottom:569.703600px;}
.yae{bottom:569.712600px;}
.y118{bottom:569.724600px;}
.y53{bottom:569.754750px;}
.y165{bottom:569.775600px;}
.yf6{bottom:589.194600px;}
.y150{bottom:589.200600px;}
.yd4{bottom:589.206600px;}
.y34{bottom:589.211250px;}
.yad{bottom:589.215600px;}
.y117{bottom:589.227600px;}
.y52{bottom:589.257750px;}
.y7d{bottom:589.263600px;}
.y184{bottom:599.169600px;}
.yf5{bottom:608.697600px;}
.y14f{bottom:608.703600px;}
.yd3{bottom:608.709600px;}
.yac{bottom:608.718600px;}
.y116{bottom:608.730600px;}
.y51{bottom:608.760750px;}
.y7c{bottom:608.766600px;}
.y183{bottom:618.672600px;}
.yf4{bottom:628.200600px;}
.y14e{bottom:628.206600px;}
.yd2{bottom:628.212600px;}
.y33{bottom:628.217250px;}
.yab{bottom:628.221600px;}
.y115{bottom:628.233600px;}
.y50{bottom:628.263750px;}
.y7b{bottom:628.269600px;}
.y182{bottom:638.175600px;}
.yf3{bottom:647.703600px;}
.y14d{bottom:647.709600px;}
.yaa{bottom:647.724600px;}
.y4f{bottom:647.766750px;}
.y7a{bottom:647.772600px;}
.y181{bottom:657.678600px;}
.yf2{bottom:667.206600px;}
.yd1{bottom:667.218600px;}
.y32{bottom:667.223250px;}
.ya9{bottom:667.227600px;}
.y114{bottom:667.239600px;}
.y78{bottom:667.269600px;}
.y4e{bottom:667.269750px;}
.y79{bottom:667.275600px;}
.y12b{bottom:686.709600px;}
.y14c{bottom:686.715600px;}
.yd0{bottom:686.721600px;}
.y31{bottom:686.726250px;}
.y113{bottom:686.742600px;}
.y77{bottom:686.772600px;}
.y4d{bottom:686.772750px;}
.y180{bottom:694.193100px;}
.yf1{bottom:706.212600px;}
.y14b{bottom:706.218600px;}
.ycf{bottom:706.224600px;}
.ya8{bottom:706.233600px;}
.y76{bottom:706.275600px;}
.y4c{bottom:706.275750px;}
.y17f{bottom:713.696100px;}
.yf0{bottom:725.715600px;}
.y14a{bottom:725.721600px;}
.yce{bottom:725.727600px;}
.y30{bottom:725.732250px;}
.ya7{bottom:725.736600px;}
.y112{bottom:725.748600px;}
.y4b{bottom:725.775750px;}
.y2{bottom:728.944200px;}
.y17e{bottom:733.199100px;}
.yef{bottom:745.218600px;}
.ycd{bottom:745.230600px;}
.ya6{bottom:745.239600px;}
.y111{bottom:745.251600px;}
.y75{bottom:745.275600px;}
.y17d{bottom:752.702100px;}
.yee{bottom:764.721600px;}
.y149{bottom:764.727600px;}
.ycc{bottom:764.733600px;}
.y2f{bottom:764.738250px;}
.ya5{bottom:764.742600px;}
.y110{bottom:764.754600px;}
.y1{bottom:776.959200px;}
.yed{bottom:784.224600px;}
.y148{bottom:784.230600px;}
.ycb{bottom:784.236600px;}
.y2e{bottom:784.241250px;}
.y4a{bottom:784.242750px;}
.ya4{bottom:784.245600px;}
.y10f{bottom:784.257600px;}
.y17c{bottom:789.216600px;}
.yec{bottom:803.727600px;}
.y147{bottom:803.733600px;}
.yca{bottom:803.739600px;}
.y49{bottom:803.745750px;}
.ya3{bottom:803.748600px;}
.y74{bottom:803.772600px;}
.y17b{bottom:808.719600px;}
.yeb{bottom:823.230600px;}
.y146{bottom:823.236600px;}
.y2d{bottom:823.247250px;}
.y48{bottom:823.248750px;}
.ya2{bottom:823.251600px;}
.y10e{bottom:823.263600px;}
.y73{bottom:823.275600px;}
.y17a{bottom:828.222600px;}
.yea{bottom:842.733600px;}
.y145{bottom:842.739600px;}
.yc9{bottom:842.745600px;}
.y2c{bottom:842.750250px;}
.y47{bottom:842.751750px;}
.ya1{bottom:842.754600px;}
.y72{bottom:842.775600px;}
.y179{bottom:847.725600px;}
.y12a{bottom:862.236600px;}
.y144{bottom:862.242600px;}
.yc8{bottom:862.248600px;}
.y46{bottom:862.254750px;}
.y10d{bottom:862.269600px;}
.y71{bottom:881.739600px;}
.y143{bottom:881.745600px;}
.yc7{bottom:881.751600px;}
.y2b{bottom:881.756250px;}
.y45{bottom:881.757750px;}
.ya0{bottom:881.760600px;}
.y10c{bottom:881.772600px;}
.y3{bottom:881.775750px;}
.y178{bottom:884.240100px;}
.y70{bottom:901.242600px;}
.y142{bottom:901.248600px;}
.yc6{bottom:901.254600px;}
.y2a{bottom:901.259250px;}
.y44{bottom:901.260750px;}
.y9f{bottom:901.263600px;}
.y10b{bottom:901.275600px;}
.y177{bottom:903.743100px;}
.y6f{bottom:920.745600px;}
.y141{bottom:920.751600px;}
.yc5{bottom:920.757600px;}
.y43{bottom:920.763750px;}
.y9e{bottom:920.766600px;}
.y176{bottom:923.246100px;}
.y6e{bottom:940.248600px;}
.y140{bottom:940.254600px;}
.yc4{bottom:940.260600px;}
.y42{bottom:940.266750px;}
.y9d{bottom:940.269600px;}
.y175{bottom:942.749100px;}
.y6d{bottom:959.751600px;}
.y29{bottom:959.751750px;}
.yc3{bottom:959.763600px;}
.y41{bottom:959.769750px;}
.y9c{bottom:959.772600px;}
.y6c{bottom:979.254600px;}
.y13f{bottom:979.260600px;}
.y174{bottom:979.263600px;}
.yc2{bottom:979.266600px;}
.y9a{bottom:979.269600px;}
.y40{bottom:979.272750px;}
.y9b{bottom:979.275600px;}
.y6b{bottom:998.757600px;}
.y28{bottom:998.757750px;}
.y13e{bottom:998.763600px;}
.y173{bottom:998.766600px;}
.yc1{bottom:998.769600px;}
.y99{bottom:998.772600px;}
.y3f{bottom:998.775750px;}
.yf{bottom:1018.260600px;}
.y13d{bottom:1018.266600px;}
.y172{bottom:1018.269600px;}
.yc0{bottom:1018.272600px;}
.y98{bottom:1018.275600px;}
.ye{bottom:1037.763600px;}
.y27{bottom:1037.763750px;}
.y13c{bottom:1037.769600px;}
.y171{bottom:1037.772600px;}
.ybf{bottom:1037.775600px;}
.y3e{bottom:1037.775750px;}
.y6a{bottom:1057.266600px;}
.y97{bottom:1057.272225px;}
.y13b{bottom:1057.272600px;}
.y170{bottom:1057.275600px;}
.ybe{bottom:1076.760600px;}
.yd{bottom:1076.769600px;}
.y26{bottom:1076.769750px;}
.y13a{bottom:1076.775600px;}
.y96{bottom:1076.779725px;}
.ybd{bottom:1096.268100px;}
.yc{bottom:1096.272600px;}
.y25{bottom:1096.272750px;}
.yb{bottom:1115.775600px;}
.y24{bottom:1115.775750px;}
.ya{bottom:1148.757300px;}
.y9{bottom:1166.752800px;}
.y6{bottom:1174.694250px;}
.y8{bottom:1184.748300px;}
.y5{bottom:1192.689750px;}
.y4{bottom:1210.685250px;}
.y69{bottom:1211.811000px;}
.y3d{bottom:1211.811150px;}
.hf{height:31.968000px;}
.he{height:32.976000px;}
.h8{height:38.832000px;}
.h4{height:40.932000px;}
.h7{height:45.936000px;}
.hd{height:47.190000px;}
.h6{height:53.394000px;}
.hb{height:53.406000px;}
.ha{height:54.697500px;}
.h3{height:55.770000px;}
.hc{height:61.888500px;}
.h5{height:63.102000px;}
.h9{height:65.952000px;}
.h2{height:145.620000px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:85.039500px;}
.xd{left:93.371850px;}
.xe{left:102.050850px;}
.x12{left:147.545700px;}
.x3{left:170.078700px;}
.xb{left:178.331250px;}
.xa{left:180.836700px;}
.x2{left:181.955250px;}
.xc{left:187.092750px;}
.x10{left:204.085200px;}
.x4{left:309.514350px;}
.x5{left:381.664500px;}
.xf{left:439.338300px;}
.x6{left:551.205750px;}
.x7{left:552.435900px;}
.x8{left:708.819600px;}
.x9{left:710.294850px;}
.x11{left:729.209700px;}
@media print{
.v1{vertical-align:-19.525333pt;}
.v0{vertical-align:0.000000pt;}
.ls14{letter-spacing:-2.933333pt;}
.ls18{letter-spacing:-2.304000pt;}
.ls13{letter-spacing:-0.293333pt;}
.ls4{letter-spacing:0.000000pt;}
.ls12{letter-spacing:0.171200pt;}
.ls7{letter-spacing:0.293333pt;}
.lsf{letter-spacing:0.340000pt;}
.ls16{letter-spacing:0.352000pt;}
.ls8{letter-spacing:0.426667pt;}
.ls17{letter-spacing:0.528000pt;}
.ls15{letter-spacing:0.586667pt;}
.ls9{letter-spacing:0.768000pt;}
.lsa{letter-spacing:0.896000pt;}
.lsc{letter-spacing:0.981333pt;}
.lsb{letter-spacing:1.024000pt;}
.lse{letter-spacing:1.584000pt;}
.ls3{letter-spacing:1.733333pt;}
.ls0{letter-spacing:2.400000pt;}
.ls6{letter-spacing:2.640000pt;}
.ls5{letter-spacing:2.976000pt;}
.ls10{letter-spacing:4.266667pt;}
.lsd{letter-spacing:5.866667pt;}
.ls11{letter-spacing:6.826667pt;}
.ls1{letter-spacing:11.680000pt;}
.ls2{letter-spacing:11.840000pt;}
.ws1c{word-spacing:-15.844000pt;}
.ws99{word-spacing:-13.728000pt;}
.ws11{word-spacing:-13.669333pt;}
.ws5{word-spacing:-13.584000pt;}
.ws0{word-spacing:-13.344000pt;}
.ws5c{word-spacing:-13.082667pt;}
.ws9a{word-spacing:-11.850667pt;}
.ws8{word-spacing:-10.709333pt;}
.ws7{word-spacing:-10.624000pt;}
.ws6e{word-spacing:-4.576000pt;}
.ws97{word-spacing:-4.517333pt;}
.ws76{word-spacing:-3.872000pt;}
.ws17{word-spacing:-3.754667pt;}
.ws22{word-spacing:-3.696000pt;}
.ws1b{word-spacing:-3.637333pt;}
.ws48{word-spacing:-3.578667pt;}
.ws54{word-spacing:-3.520000pt;}
.ws74{word-spacing:-3.461333pt;}
.ws18{word-spacing:-3.344000pt;}
.ws2c{word-spacing:-3.226667pt;}
.ws63{word-spacing:-3.109333pt;}
.ws6{word-spacing:-2.976000pt;}
.ws30{word-spacing:-2.933333pt;}
.ws75{word-spacing:-2.874667pt;}
.ws96{word-spacing:-2.816000pt;}
.ws71{word-spacing:-2.757333pt;}
.ws6b{word-spacing:-2.698667pt;}
.ws53{word-spacing:-2.581333pt;}
.ws67{word-spacing:-2.522667pt;}
.ws23{word-spacing:-2.464000pt;}
.ws25{word-spacing:-2.405333pt;}
.ws4{word-spacing:-2.400000pt;}
.ws20{word-spacing:-2.346667pt;}
.ws2a{word-spacing:-2.288000pt;}
.ws64{word-spacing:-2.229333pt;}
.ws28{word-spacing:-2.170667pt;}
.ws66{word-spacing:-2.053333pt;}
.ws7b{word-spacing:-1.994667pt;}
.ws1a{word-spacing:-1.936000pt;}
.ws55{word-spacing:-1.760000pt;}
.ws46{word-spacing:-1.701333pt;}
.ws51{word-spacing:-1.642667pt;}
.ws80{word-spacing:-1.584000pt;}
.wse{word-spacing:-1.578667pt;}
.ws50{word-spacing:-1.564000pt;}
.ws10{word-spacing:-1.536000pt;}
.ws2b{word-spacing:-1.466667pt;}
.wsf{word-spacing:-1.450667pt;}
.ws5b{word-spacing:-1.408000pt;}
.wsb{word-spacing:-1.349333pt;}
.wsd{word-spacing:-1.322667pt;}
.ws60{word-spacing:-1.290667pt;}
.ws41{word-spacing:-1.232000pt;}
.ws9{word-spacing:-1.173333pt;}
.ws72{word-spacing:-1.114667pt;}
.ws7f{word-spacing:-1.056000pt;}
.ws73{word-spacing:-0.997333pt;}
.wsc{word-spacing:-0.981333pt;}
.ws3b{word-spacing:-0.938667pt;}
.ws5d{word-spacing:-0.880000pt;}
.ws3a{word-spacing:-0.821333pt;}
.ws69{word-spacing:-0.762667pt;}
.ws29{word-spacing:-0.704000pt;}
.ws6a{word-spacing:-0.586667pt;}
.ws85{word-spacing:-0.528000pt;}
.ws83{word-spacing:-0.469333pt;}
.ws87{word-spacing:-0.410667pt;}
.ws4b{word-spacing:-0.352000pt;}
.ws1d{word-spacing:-0.340000pt;}
.ws2f{word-spacing:-0.293333pt;}
.ws26{word-spacing:-0.234667pt;}
.ws8b{word-spacing:-0.117333pt;}
.ws34{word-spacing:-0.058667pt;}
.ws3{word-spacing:0.000000pt;}
.ws61{word-spacing:0.058667pt;}
.ws88{word-spacing:0.117333pt;}
.ws44{word-spacing:0.176000pt;}
.ws65{word-spacing:0.234667pt;}
.ws4c{word-spacing:0.293333pt;}
.ws40{word-spacing:0.410667pt;}
.ws9c{word-spacing:0.426667pt;}
.ws93{word-spacing:0.469333pt;}
.ws59{word-spacing:0.528000pt;}
.ws5a{word-spacing:0.586667pt;}
.ws6f{word-spacing:0.645333pt;}
.ws45{word-spacing:0.704000pt;}
.ws32{word-spacing:0.821333pt;}
.ws56{word-spacing:0.880000pt;}
.ws2{word-spacing:0.960000pt;}
.ws36{word-spacing:0.997333pt;}
.ws3c{word-spacing:1.056000pt;}
.ws24{word-spacing:1.114667pt;}
.ws1{word-spacing:1.120000pt;}
.ws4e{word-spacing:1.232000pt;}
.ws16{word-spacing:1.290667pt;}
.ws84{word-spacing:1.349333pt;}
.ws47{word-spacing:1.466667pt;}
.ws39{word-spacing:1.584000pt;}
.ws89{word-spacing:1.760000pt;}
.ws33{word-spacing:1.936000pt;}
.ws92{word-spacing:1.994667pt;}
.ws7d{word-spacing:2.053333pt;}
.ws77{word-spacing:2.112000pt;}
.ws4a{word-spacing:2.170667pt;}
.ws2d{word-spacing:2.229333pt;}
.ws42{word-spacing:2.288000pt;}
.ws38{word-spacing:2.405333pt;}
.ws3d{word-spacing:2.522667pt;}
.ws5f{word-spacing:2.640000pt;}
.ws9b{word-spacing:2.730667pt;}
.ws35{word-spacing:2.757333pt;}
.ws79{word-spacing:2.874667pt;}
.ws8a{word-spacing:2.933333pt;}
.ws31{word-spacing:2.992000pt;}
.ws52{word-spacing:3.109333pt;}
.ws5e{word-spacing:3.168000pt;}
.ws86{word-spacing:3.285333pt;}
.ws78{word-spacing:3.402667pt;}
.ws8e{word-spacing:3.637333pt;}
.ws6c{word-spacing:3.696000pt;}
.ws14{word-spacing:3.813333pt;}
.ws27{word-spacing:4.048000pt;}
.ws68{word-spacing:4.106667pt;}
.ws94{word-spacing:4.341333pt;}
.ws8c{word-spacing:4.400000pt;}
.ws90{word-spacing:4.517333pt;}
.ws2e{word-spacing:4.693333pt;}
.ws13{word-spacing:4.810667pt;}
.ws21{word-spacing:4.869333pt;}
.ws43{word-spacing:4.986667pt;}
.ws82{word-spacing:5.162667pt;}
.ws8f{word-spacing:5.221333pt;}
.ws15{word-spacing:5.514667pt;}
.ws91{word-spacing:5.632000pt;}
.ws58{word-spacing:5.808000pt;}
.ws4d{word-spacing:5.925333pt;}
.ws57{word-spacing:6.042667pt;}
.ws95{word-spacing:6.101333pt;}
.ws7c{word-spacing:6.277333pt;}
.ws98{word-spacing:6.336000pt;}
.ws4f{word-spacing:6.512000pt;}
.ws12{word-spacing:6.570667pt;}
.ws81{word-spacing:6.746667pt;}
.ws19{word-spacing:6.805333pt;}
.ws8d{word-spacing:7.157333pt;}
.ws37{word-spacing:7.216000pt;}
.ws70{word-spacing:7.626667pt;}
.ws7a{word-spacing:8.213333pt;}
.ws3e{word-spacing:8.330667pt;}
.wsa{word-spacing:8.858667pt;}
.ws7e{word-spacing:9.093333pt;}
.ws62{word-spacing:11.029333pt;}
.ws49{word-spacing:13.082667pt;}
.ws6d{word-spacing:15.898667pt;}
.ws3f{word-spacing:29.512000pt;}
.ws1e{word-spacing:92.752000pt;}
.ws1f{word-spacing:122.378667pt;}
._15{margin-left:-2271.151467pt;}
._1c{margin-left:-42.709333pt;}
._5{margin-left:-32.880000pt;}
._8{margin-left:-14.560000pt;}
._7{margin-left:-12.208000pt;}
._19{margin-left:-11.158800pt;}
._10{margin-left:-7.424000pt;}
._d{margin-left:-6.399467pt;}
._f{margin-left:-5.121600pt;}
._2{margin-left:-4.208000pt;}
._b{margin-left:-2.939200pt;}
._9{margin-left:-2.000000pt;}
._1{margin-left:-1.024000pt;}
._0{width:0.928000pt;}
._4{width:1.824000pt;}
._c{width:2.871467pt;}
._3{width:3.856000pt;}
._a{width:4.832000pt;}
._16{width:11.009200pt;}
._22{width:28.453333pt;}
._1a{width:29.518800pt;}
._18{width:31.082800pt;}
._1b{width:40.222000pt;}
._17{width:42.085200pt;}
._12{width:49.514667pt;}
._1f{width:53.138000pt;}
._1d{width:74.861200pt;}
._11{width:94.101333pt;}
._13{width:123.728000pt;}
._14{width:129.901333pt;}
._6{width:142.720000pt;}
._1e{width:171.184800pt;}
._20{width:176.154000pt;}
._21{width:187.071467pt;}
._e{width:1029.899200pt;}
.fs7{font-size:34.202667pt;}
.fs4{font-size:42.666667pt;}
.fs2{font-size:48.000000pt;}
.fs3{font-size:58.666667pt;}
.fs6{font-size:68.000000pt;}
.fs1{font-size:69.333333pt;}
.fs5{font-size:85.333333pt;}
.fs0{font-size:160.000000pt;}
.y0{bottom:0.000000pt;}
.y7{bottom:71.811067pt;}
.y19a{bottom:72.397733pt;}
.y95{bottom:73.096533pt;}
.ye9{bottom:73.120533pt;}
.y164{bottom:90.333867pt;}
.y10a{bottom:90.427200pt;}
.y94{bottom:90.432533pt;}
.y68{bottom:90.454000pt;}
.ye8{bottom:90.456533pt;}
.y199{bottom:102.840400pt;}
.y163{bottom:107.669867pt;}
.y109{bottom:107.763200pt;}
.y93{bottom:107.768533pt;}
.y67{bottom:107.790000pt;}
.ye7{bottom:107.792533pt;}
.y162{bottom:125.005867pt;}
.y108{bottom:125.099200pt;}
.y129{bottom:125.115200pt;}
.y66{bottom:125.126000pt;}
.ye6{bottom:125.128533pt;}
.y198{bottom:125.389867pt;}
.y23{bottom:134.467200pt;}
.y107{bottom:142.435200pt;}
.y92{bottom:142.440533pt;}
.y128{bottom:142.451200pt;}
.y65{bottom:142.462000pt;}
.ye5{bottom:142.464533pt;}
.y197{bottom:142.725867pt;}
.y22{bottom:147.800533pt;}
.y139{bottom:159.672533pt;}
.y161{bottom:159.677867pt;}
.y91{bottom:159.776533pt;}
.y127{bottom:159.787200pt;}
.ye4{bottom:159.797867pt;}
.y64{bottom:159.798000pt;}
.y196{bottom:160.061867pt;}
.y21{bottom:161.133867pt;}
.y20{bottom:174.467200pt;}
.y138{bottom:177.008533pt;}
.y160{bottom:177.013867pt;}
.y106{bottom:177.107200pt;}
.y90{bottom:177.112533pt;}
.y126{bottom:177.123200pt;}
.ye3{bottom:177.133867pt;}
.y63{bottom:177.134000pt;}
.y195{bottom:177.397867pt;}
.y1f{bottom:187.800533pt;}
.y15f{bottom:194.349867pt;}
.ybc{bottom:194.363200pt;}
.y105{bottom:194.443200pt;}
.y8f{bottom:194.448533pt;}
.y125{bottom:194.459200pt;}
.y62{bottom:194.467333pt;}
.y194{bottom:194.733867pt;}
.y1e{bottom:201.133867pt;}
.y137{bottom:211.680533pt;}
.y15e{bottom:211.685867pt;}
.ybb{bottom:211.699200pt;}
.y104{bottom:211.779200pt;}
.y8e{bottom:211.784533pt;}
.ye2{bottom:211.793867pt;}
.y124{bottom:211.795200pt;}
.y193{bottom:212.069867pt;}
.y1d{bottom:214.467200pt;}
.y136{bottom:229.016533pt;}
.y15d{bottom:229.021867pt;}
.yba{bottom:229.035200pt;}
.y103{bottom:229.115200pt;}
.y8d{bottom:229.120533pt;}
.y123{bottom:229.131200pt;}
.ye1{bottom:229.133867pt;}
.y1c{bottom:241.133867pt;}
.y192{bottom:244.527200pt;}
.y135{bottom:246.352533pt;}
.y3c{bottom:246.382000pt;}
.y102{bottom:246.451200pt;}
.y8c{bottom:246.456533pt;}
.y61{bottom:246.464667pt;}
.y122{bottom:246.467200pt;}
.y1b{bottom:254.467200pt;}
.y191{bottom:261.863200pt;}
.y15c{bottom:263.693867pt;}
.yb9{bottom:263.707200pt;}
.y3b{bottom:263.718000pt;}
.y101{bottom:263.787200pt;}
.y8b{bottom:263.792533pt;}
.y60{bottom:263.800667pt;}
.y1a{bottom:267.800533pt;}
.y190{bottom:279.199200pt;}
.y134{bottom:281.024533pt;}
.y15b{bottom:281.029867pt;}
.ye0{bottom:281.035200pt;}
.yb8{bottom:281.043200pt;}
.y3a{bottom:281.054000pt;}
.y100{bottom:281.123200pt;}
.y121{bottom:281.127200pt;}
.y8a{bottom:281.128533pt;}
.y19{bottom:281.133867pt;}
.y5f{bottom:281.134000pt;}
.y18{bottom:294.467200pt;}
.y18f{bottom:296.535200pt;}
.y133{bottom:298.360533pt;}
.ydf{bottom:298.371200pt;}
.yb7{bottom:298.379200pt;}
.yff{bottom:298.459200pt;}
.y89{bottom:298.464533pt;}
.y120{bottom:298.467200pt;}
.y18e{bottom:313.871200pt;}
.y132{bottom:315.696533pt;}
.y15a{bottom:315.701867pt;}
.yde{bottom:315.707200pt;}
.y5e{bottom:315.752667pt;}
.y87{bottom:315.757867pt;}
.y16f{bottom:315.776533pt;}
.yfe{bottom:315.795200pt;}
.y88{bottom:315.800533pt;}
.y17{bottom:321.133867pt;}
.y131{bottom:333.032533pt;}
.y159{bottom:333.037867pt;}
.yb6{bottom:333.051200pt;}
.y5d{bottom:333.088667pt;}
.y86{bottom:333.093867pt;}
.y16e{bottom:333.112533pt;}
.yfd{bottom:333.131200pt;}
.y16{bottom:334.467200pt;}
.y18d{bottom:346.328533pt;}
.y15{bottom:347.800533pt;}
.y130{bottom:350.368533pt;}
.y158{bottom:350.373867pt;}
.ydd{bottom:350.379200pt;}
.yb5{bottom:350.387200pt;}
.y11f{bottom:350.397867pt;}
.y5c{bottom:350.424667pt;}
.y16d{bottom:350.448533pt;}
.yfc{bottom:350.467200pt;}
.y14{bottom:361.133867pt;}
.y18c{bottom:363.664533pt;}
.y157{bottom:367.709867pt;}
.ydc{bottom:367.715200pt;}
.y39{bottom:367.719333pt;}
.yb4{bottom:367.723200pt;}
.y11e{bottom:367.733867pt;}
.y5b{bottom:367.760667pt;}
.y85{bottom:367.765867pt;}
.y16c{bottom:367.784533pt;}
.y18b{bottom:381.000533pt;}
.y12f{bottom:385.040533pt;}
.ydb{bottom:385.051200pt;}
.y38{bottom:385.055333pt;}
.yb3{bottom:385.059200pt;}
.y11d{bottom:385.069867pt;}
.y5a{bottom:385.096667pt;}
.y84{bottom:385.101867pt;}
.y16b{bottom:385.120533pt;}
.yfb{bottom:385.133867pt;}
.y13{bottom:387.800533pt;}
.y18a{bottom:398.336533pt;}
.y12{bottom:401.133867pt;}
.y12e{bottom:402.376533pt;}
.y156{bottom:402.381867pt;}
.yda{bottom:402.387200pt;}
.yb2{bottom:402.395200pt;}
.y11c{bottom:402.405867pt;}
.y59{bottom:402.432667pt;}
.y83{bottom:402.437867pt;}
.y16a{bottom:402.456533pt;}
.y11{bottom:414.467200pt;}
.y12d{bottom:419.712533pt;}
.y155{bottom:419.717867pt;}
.yd9{bottom:419.723200pt;}
.y37{bottom:419.727333pt;}
.y58{bottom:419.768667pt;}
.y82{bottom:419.773867pt;}
.y169{bottom:419.792533pt;}
.y189{bottom:430.793867pt;}
.yfa{bottom:437.048533pt;}
.y154{bottom:437.053867pt;}
.yb1{bottom:437.067200pt;}
.y11b{bottom:437.077867pt;}
.y57{bottom:437.104667pt;}
.y81{bottom:437.109867pt;}
.y168{bottom:437.128533pt;}
.y10{bottom:441.133867pt;}
.y188{bottom:448.129867pt;}
.yf9{bottom:454.384533pt;}
.y153{bottom:454.389867pt;}
.yd8{bottom:454.395200pt;}
.y36{bottom:454.399333pt;}
.yb0{bottom:454.403200pt;}
.y11a{bottom:454.413867pt;}
.y56{bottom:454.440667pt;}
.y80{bottom:454.445867pt;}
.y167{bottom:454.464533pt;}
.y187{bottom:465.465867pt;}
.yf8{bottom:471.720533pt;}
.y152{bottom:471.725867pt;}
.yd7{bottom:471.731200pt;}
.yaf{bottom:471.739200pt;}
.y55{bottom:471.776667pt;}
.y7f{bottom:471.781867pt;}
.y166{bottom:471.800533pt;}
.y186{bottom:482.801867pt;}
.yf7{bottom:489.056533pt;}
.y151{bottom:489.061867pt;}
.yd6{bottom:489.067200pt;}
.y35{bottom:489.071333pt;}
.y119{bottom:489.085867pt;}
.y54{bottom:489.112667pt;}
.y7e{bottom:489.117867pt;}
.y185{bottom:500.137867pt;}
.y12c{bottom:506.392533pt;}
.yd5{bottom:506.403200pt;}
.yae{bottom:506.411200pt;}
.y118{bottom:506.421867pt;}
.y53{bottom:506.448667pt;}
.y165{bottom:506.467200pt;}
.yf6{bottom:523.728533pt;}
.y150{bottom:523.733867pt;}
.yd4{bottom:523.739200pt;}
.y34{bottom:523.743333pt;}
.yad{bottom:523.747200pt;}
.y117{bottom:523.757867pt;}
.y52{bottom:523.784667pt;}
.y7d{bottom:523.789867pt;}
.y184{bottom:532.595200pt;}
.yf5{bottom:541.064533pt;}
.y14f{bottom:541.069867pt;}
.yd3{bottom:541.075200pt;}
.yac{bottom:541.083200pt;}
.y116{bottom:541.093867pt;}
.y51{bottom:541.120667pt;}
.y7c{bottom:541.125867pt;}
.y183{bottom:549.931200pt;}
.yf4{bottom:558.400533pt;}
.y14e{bottom:558.405867pt;}
.yd2{bottom:558.411200pt;}
.y33{bottom:558.415333pt;}
.yab{bottom:558.419200pt;}
.y115{bottom:558.429867pt;}
.y50{bottom:558.456667pt;}
.y7b{bottom:558.461867pt;}
.y182{bottom:567.267200pt;}
.yf3{bottom:575.736533pt;}
.y14d{bottom:575.741867pt;}
.yaa{bottom:575.755200pt;}
.y4f{bottom:575.792667pt;}
.y7a{bottom:575.797867pt;}
.y181{bottom:584.603200pt;}
.yf2{bottom:593.072533pt;}
.yd1{bottom:593.083200pt;}
.y32{bottom:593.087333pt;}
.ya9{bottom:593.091200pt;}
.y114{bottom:593.101867pt;}
.y78{bottom:593.128533pt;}
.y4e{bottom:593.128667pt;}
.y79{bottom:593.133867pt;}
.y12b{bottom:610.408533pt;}
.y14c{bottom:610.413867pt;}
.yd0{bottom:610.419200pt;}
.y31{bottom:610.423333pt;}
.y113{bottom:610.437867pt;}
.y77{bottom:610.464533pt;}
.y4d{bottom:610.464667pt;}
.y180{bottom:617.060533pt;}
.yf1{bottom:627.744533pt;}
.y14b{bottom:627.749867pt;}
.ycf{bottom:627.755200pt;}
.ya8{bottom:627.763200pt;}
.y76{bottom:627.800533pt;}
.y4c{bottom:627.800667pt;}
.y17f{bottom:634.396533pt;}
.yf0{bottom:645.080533pt;}
.y14a{bottom:645.085867pt;}
.yce{bottom:645.091200pt;}
.y30{bottom:645.095333pt;}
.ya7{bottom:645.099200pt;}
.y112{bottom:645.109867pt;}
.y4b{bottom:645.134000pt;}
.y2{bottom:647.950400pt;}
.y17e{bottom:651.732533pt;}
.yef{bottom:662.416533pt;}
.ycd{bottom:662.427200pt;}
.ya6{bottom:662.435200pt;}
.y111{bottom:662.445867pt;}
.y75{bottom:662.467200pt;}
.y17d{bottom:669.068533pt;}
.yee{bottom:679.752533pt;}
.y149{bottom:679.757867pt;}
.ycc{bottom:679.763200pt;}
.y2f{bottom:679.767333pt;}
.ya5{bottom:679.771200pt;}
.y110{bottom:679.781867pt;}
.y1{bottom:690.630400pt;}
.yed{bottom:697.088533pt;}
.y148{bottom:697.093867pt;}
.ycb{bottom:697.099200pt;}
.y2e{bottom:697.103333pt;}
.y4a{bottom:697.104667pt;}
.ya4{bottom:697.107200pt;}
.y10f{bottom:697.117867pt;}
.y17c{bottom:701.525867pt;}
.yec{bottom:714.424533pt;}
.y147{bottom:714.429867pt;}
.yca{bottom:714.435200pt;}
.y49{bottom:714.440667pt;}
.ya3{bottom:714.443200pt;}
.y74{bottom:714.464533pt;}
.y17b{bottom:718.861867pt;}
.yeb{bottom:731.760533pt;}
.y146{bottom:731.765867pt;}
.y2d{bottom:731.775333pt;}
.y48{bottom:731.776667pt;}
.ya2{bottom:731.779200pt;}
.y10e{bottom:731.789867pt;}
.y73{bottom:731.800533pt;}
.y17a{bottom:736.197867pt;}
.yea{bottom:749.096533pt;}
.y145{bottom:749.101867pt;}
.yc9{bottom:749.107200pt;}
.y2c{bottom:749.111333pt;}
.y47{bottom:749.112667pt;}
.ya1{bottom:749.115200pt;}
.y72{bottom:749.133867pt;}
.y179{bottom:753.533867pt;}
.y12a{bottom:766.432533pt;}
.y144{bottom:766.437867pt;}
.yc8{bottom:766.443200pt;}
.y46{bottom:766.448667pt;}
.y10d{bottom:766.461867pt;}
.y71{bottom:783.768533pt;}
.y143{bottom:783.773867pt;}
.yc7{bottom:783.779200pt;}
.y2b{bottom:783.783333pt;}
.y45{bottom:783.784667pt;}
.ya0{bottom:783.787200pt;}
.y10c{bottom:783.797867pt;}
.y3{bottom:783.800667pt;}
.y178{bottom:785.991200pt;}
.y70{bottom:801.104533pt;}
.y142{bottom:801.109867pt;}
.yc6{bottom:801.115200pt;}
.y2a{bottom:801.119333pt;}
.y44{bottom:801.120667pt;}
.y9f{bottom:801.123200pt;}
.y10b{bottom:801.133867pt;}
.y177{bottom:803.327200pt;}
.y6f{bottom:818.440533pt;}
.y141{bottom:818.445867pt;}
.yc5{bottom:818.451200pt;}
.y43{bottom:818.456667pt;}
.y9e{bottom:818.459200pt;}
.y176{bottom:820.663200pt;}
.y6e{bottom:835.776533pt;}
.y140{bottom:835.781867pt;}
.yc4{bottom:835.787200pt;}
.y42{bottom:835.792667pt;}
.y9d{bottom:835.795200pt;}
.y175{bottom:837.999200pt;}
.y6d{bottom:853.112533pt;}
.y29{bottom:853.112667pt;}
.yc3{bottom:853.123200pt;}
.y41{bottom:853.128667pt;}
.y9c{bottom:853.131200pt;}
.y6c{bottom:870.448533pt;}
.y13f{bottom:870.453867pt;}
.y174{bottom:870.456533pt;}
.yc2{bottom:870.459200pt;}
.y9a{bottom:870.461867pt;}
.y40{bottom:870.464667pt;}
.y9b{bottom:870.467200pt;}
.y6b{bottom:887.784533pt;}
.y28{bottom:887.784667pt;}
.y13e{bottom:887.789867pt;}
.y173{bottom:887.792533pt;}
.yc1{bottom:887.795200pt;}
.y99{bottom:887.797867pt;}
.y3f{bottom:887.800667pt;}
.yf{bottom:905.120533pt;}
.y13d{bottom:905.125867pt;}
.y172{bottom:905.128533pt;}
.yc0{bottom:905.131200pt;}
.y98{bottom:905.133867pt;}
.ye{bottom:922.456533pt;}
.y27{bottom:922.456667pt;}
.y13c{bottom:922.461867pt;}
.y171{bottom:922.464533pt;}
.ybf{bottom:922.467200pt;}
.y3e{bottom:922.467333pt;}
.y6a{bottom:939.792533pt;}
.y97{bottom:939.797533pt;}
.y13b{bottom:939.797867pt;}
.y170{bottom:939.800533pt;}
.ybe{bottom:957.120533pt;}
.yd{bottom:957.128533pt;}
.y26{bottom:957.128667pt;}
.y13a{bottom:957.133867pt;}
.y96{bottom:957.137533pt;}
.ybd{bottom:974.460533pt;}
.yc{bottom:974.464533pt;}
.y25{bottom:974.464667pt;}
.yb{bottom:991.800533pt;}
.y24{bottom:991.800667pt;}
.ya{bottom:1021.117600pt;}
.y9{bottom:1037.113600pt;}
.y6{bottom:1044.172667pt;}
.y8{bottom:1053.109600pt;}
.y5{bottom:1060.168667pt;}
.y4{bottom:1076.164667pt;}
.y69{bottom:1077.165333pt;}
.y3d{bottom:1077.165467pt;}
.hf{height:28.416000pt;}
.he{height:29.312000pt;}
.h8{height:34.517333pt;}
.h4{height:36.384000pt;}
.h7{height:40.832000pt;}
.hd{height:41.946667pt;}
.h6{height:47.461333pt;}
.hb{height:47.472000pt;}
.ha{height:48.620000pt;}
.h3{height:49.573333pt;}
.hc{height:55.012000pt;}
.h5{height:56.090667pt;}
.h9{height:58.624000pt;}
.h2{height:129.440000pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:75.590667pt;}
.xd{left:82.997200pt;}
.xe{left:90.711867pt;}
.x12{left:131.151733pt;}
.x3{left:151.181067pt;}
.xb{left:158.516667pt;}
.xa{left:160.743733pt;}
.x2{left:161.738000pt;}
.xc{left:166.304667pt;}
.x10{left:181.409067pt;}
.x4{left:275.123867pt;}
.x5{left:339.257333pt;}
.xf{left:390.522933pt;}
.x6{left:489.960667pt;}
.x7{left:491.054133pt;}
.x8{left:630.061867pt;}
.x9{left:631.373200pt;}
.x11{left:648.186400pt;}
}




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