
    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_41d70bd7748c9c78df032b6e.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.969000;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_bbe39f37f101a57707a965b4.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.000000;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_686513ce7e3c6bea03e521ac.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.945813;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_0181fbd72b171dda97dd1b94.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.921420;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_8fc9b24ab6a1a7ade67414d2.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.890000;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_b5afbffeea9f7f145d803d42.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.000000;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_cb49e4249414b27eba27dd27.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.974000;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_1d575fda31b50030fe82de72.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.707000;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_e644bdad9d2ba3488a02da3e.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.940000;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_cd4594e75739d0d15cfe3230.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.692871;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_afd3da11d30d4f0f8831bbf0.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_41d70bd7748c9c78df032b6e.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.969000;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_bbe39f37f101a57707a965b4.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.000000;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_c6f1581be6bc93c2ba110d02.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.720000;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_4225617bba81971afd9fdb39.woff2')format("woff");}.fff{font-family:fff;line-height:0.969000;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_c3b0621f0673227973e22c96.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.700000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m7{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.mc{transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,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);}
.v2{vertical-align:-4.923600px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:1.619400px;}
.ls4{letter-spacing:-0.768000px;}
.ls7{letter-spacing:-0.360000px;}
.ls2{letter-spacing:-0.144000px;}
.ls6{letter-spacing:-0.072000px;}
.ls1{letter-spacing:0.000000px;}
.ls0{letter-spacing:62.481000px;}
.ls5{letter-spacing:66.312000px;}
.ls3{letter-spacing:66.319200px;}
.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;}
}
.ws2{word-spacing:-72.000000px;}
.wsae{word-spacing:-71.928000px;}
.ws6{word-spacing:-71.856000px;}
.wsb9{word-spacing:-71.640000px;}
.ws8c{word-spacing:-61.344000px;}
.ws93{word-spacing:-61.272000px;}
.ws9{word-spacing:-61.200000px;}
.ws9c{word-spacing:-60.768000px;}
.ws88{word-spacing:-60.336000px;}
.wsad{word-spacing:-60.120000px;}
.wsb6{word-spacing:-59.832000px;}
.ws4{word-spacing:-59.472000px;}
.ws29{word-spacing:-59.400000px;}
.ws2a{word-spacing:-58.968000px;}
.ws28{word-spacing:-58.896000px;}
.ws2f{word-spacing:-58.392000px;}
.ws37{word-spacing:-57.888000px;}
.ws39{word-spacing:-57.600000px;}
.ws9a{word-spacing:-57.384000px;}
.ws71{word-spacing:-56.592000px;}
.ws49{word-spacing:-55.944000px;}
.ws52{word-spacing:-55.728000px;}
.ws42{word-spacing:-55.224000px;}
.wsbf{word-spacing:-54.936000px;}
.ws4f{word-spacing:-54.792000px;}
.wsa{word-spacing:-54.360000px;}
.ws8{word-spacing:-53.424000px;}
.ws1f{word-spacing:-53.352000px;}
.wse{word-spacing:-53.280000px;}
.ws60{word-spacing:-52.992000px;}
.ws4a{word-spacing:-52.848000px;}
.ws8b{word-spacing:-52.776000px;}
.ws3c{word-spacing:-52.632000px;}
.wsa2{word-spacing:-52.560000px;}
.ws70{word-spacing:-51.768000px;}
.wsd{word-spacing:-51.336000px;}
.ws79{word-spacing:-51.264000px;}
.wsba{word-spacing:-51.048000px;}
.ws66{word-spacing:-50.472000px;}
.ws45{word-spacing:-50.184000px;}
.ws57{word-spacing:-49.903200px;}
.ws97{word-spacing:-49.032000px;}
.wsaf{word-spacing:-48.816000px;}
.ws1e{word-spacing:-48.528000px;}
.wsb{word-spacing:-48.240000px;}
.ws3{word-spacing:-48.024000px;}
.wsc{word-spacing:-47.448000px;}
.wsa1{word-spacing:-46.872000px;}
.ws7a{word-spacing:-46.296000px;}
.ws1a{word-spacing:-45.360000px;}
.ws90{word-spacing:-45.000000px;}
.ws7e{word-spacing:-44.928000px;}
.ws7b{word-spacing:-44.856000px;}
.ws3a{word-spacing:-44.640000px;}
.ws94{word-spacing:-44.280000px;}
.ws2e{word-spacing:-44.064000px;}
.wsaa{word-spacing:-43.776000px;}
.ws5{word-spacing:-43.128000px;}
.ws11{word-spacing:-41.544000px;}
.ws9d{word-spacing:-41.112000px;}
.ws3d{word-spacing:-40.536000px;}
.ws34{word-spacing:-40.176000px;}
.ws2b{word-spacing:-39.744000px;}
.ws38{word-spacing:-39.024000px;}
.ws55{word-spacing:-38.376000px;}
.wsb8{word-spacing:-37.512000px;}
.ws35{word-spacing:-37.368000px;}
.ws31{word-spacing:-37.296000px;}
.wsa0{word-spacing:-37.080000px;}
.ws7{word-spacing:-36.288000px;}
.wsb7{word-spacing:-36.144000px;}
.ws92{word-spacing:-35.064000px;}
.ws62{word-spacing:-34.920000px;}
.wsab{word-spacing:-34.279200px;}
.ws98{word-spacing:-34.200000px;}
.ws40{word-spacing:-33.552000px;}
.wsb5{word-spacing:-32.976000px;}
.ws30{word-spacing:-32.112000px;}
.ws25{word-spacing:-31.968000px;}
.wsac{word-spacing:-30.960000px;}
.ws4e{word-spacing:-30.744000px;}
.ws69{word-spacing:-30.384000px;}
.ws50{word-spacing:-30.312000px;}
.ws17{word-spacing:-29.304000px;}
.wsa6{word-spacing:-29.232000px;}
.ws68{word-spacing:-28.512000px;}
.ws65{word-spacing:-28.224000px;}
.ws7f{word-spacing:-27.936000px;}
.ws54{word-spacing:-26.424000px;}
.ws85{word-spacing:-24.768000px;}
.ws33{word-spacing:-24.400800px;}
.ws6a{word-spacing:-24.192000px;}
.ws5b{word-spacing:-24.120000px;}
.wsf{word-spacing:-24.048000px;}
.ws67{word-spacing:-23.904000px;}
.ws21{word-spacing:-23.184000px;}
.ws9e{word-spacing:-23.112000px;}
.ws20{word-spacing:-21.888000px;}
.ws61{word-spacing:-21.600000px;}
.ws91{word-spacing:-21.168000px;}
.wsc4{word-spacing:-20.880000px;}
.ws51{word-spacing:-20.592000px;}
.ws5a{word-spacing:-20.520000px;}
.ws16{word-spacing:-20.160000px;}
.ws73{word-spacing:-20.016000px;}
.ws59{word-spacing:-18.792000px;}
.wsb0{word-spacing:-18.720000px;}
.ws8f{word-spacing:-18.360000px;}
.ws10{word-spacing:-18.216000px;}
.ws81{word-spacing:-18.000000px;}
.ws83{word-spacing:-17.496000px;}
.ws5f{word-spacing:-17.136000px;}
.ws12{word-spacing:-15.000000px;}
.wsa3{word-spacing:-14.904000px;}
.ws89{word-spacing:-14.472000px;}
.ws46{word-spacing:-13.536000px;}
.ws24{word-spacing:-13.500000px;}
.ws6c{word-spacing:-13.392000px;}
.ws22{word-spacing:-12.672000px;}
.ws75{word-spacing:-11.808000px;}
.wsa5{word-spacing:-11.664000px;}
.ws87{word-spacing:-10.224000px;}
.wsb2{word-spacing:-9.072000px;}
.ws6f{word-spacing:-8.136000px;}
.ws8d{word-spacing:-7.848000px;}
.ws7d{word-spacing:-7.056000px;}
.ws84{word-spacing:-6.696000px;}
.ws47{word-spacing:-6.480000px;}
.ws63{word-spacing:-5.719200px;}
.ws1{word-spacing:-5.680800px;}
.ws64{word-spacing:-5.544000px;}
.ws74{word-spacing:-4.824000px;}
.ws82{word-spacing:-3.528000px;}
.ws78{word-spacing:-3.240000px;}
.ws3b{word-spacing:-2.880000px;}
.ws95{word-spacing:-2.664000px;}
.ws9b{word-spacing:-2.592000px;}
.ws4b{word-spacing:-0.936000px;}
.ws13{word-spacing:0.000000px;}
.wsb1{word-spacing:0.576000px;}
.ws15{word-spacing:0.720000px;}
.ws86{word-spacing:1.152000px;}
.ws41{word-spacing:2.232000px;}
.ws8e{word-spacing:4.320000px;}
.ws3e{word-spacing:4.536000px;}
.wsbe{word-spacing:5.904000px;}
.ws36{word-spacing:6.264000px;}
.ws32{word-spacing:8.424000px;}
.wsc0{word-spacing:10.584000px;}
.ws7c{word-spacing:10.872000px;}
.ws5d{word-spacing:11.808000px;}
.ws43{word-spacing:12.960000px;}
.ws6e{word-spacing:14.472000px;}
.ws58{word-spacing:16.056000px;}
.ws1b{word-spacing:16.560000px;}
.wsa9{word-spacing:17.064000px;}
.ws5c{word-spacing:17.784000px;}
.ws96{word-spacing:17.856000px;}
.ws53{word-spacing:18.720000px;}
.wsb3{word-spacing:18.936000px;}
.ws27{word-spacing:19.080000px;}
.ws9f{word-spacing:20.088000px;}
.ws3f{word-spacing:21.456000px;}
.ws6b{word-spacing:21.600000px;}
.ws4d{word-spacing:21.672000px;}
.ws1d{word-spacing:22.104000px;}
.wsbc{word-spacing:22.464000px;}
.ws6d{word-spacing:23.616000px;}
.ws72{word-spacing:26.424000px;}
.ws44{word-spacing:26.568000px;}
.ws80{word-spacing:27.432000px;}
.wsb4{word-spacing:28.512000px;}
.ws4c{word-spacing:29.160000px;}
.ws26{word-spacing:35.856000px;}
.wsa7{word-spacing:36.648000px;}
.ws77{word-spacing:36.792000px;}
.ws56{word-spacing:39.096000px;}
.wsbd{word-spacing:42.408000px;}
.wsc2{word-spacing:45.648000px;}
.ws23{word-spacing:45.720000px;}
.wsa4{word-spacing:46.656000px;}
.ws1c{word-spacing:47.232000px;}
.ws2c{word-spacing:48.312000px;}
.ws76{word-spacing:50.040000px;}
.ws5e{word-spacing:54.504000px;}
.ws8a{word-spacing:56.232000px;}
.ws48{word-spacing:62.208000px;}
.ws99{word-spacing:80.640000px;}
.wsc3{word-spacing:110.160000px;}
.ws2d{word-spacing:124.344000px;}
.wsa8{word-spacing:168.696000px;}
.wsbb{word-spacing:178.344000px;}
.ws18{word-spacing:184.968000px;}
.wsc1{word-spacing:185.832000px;}
.ws19{word-spacing:191.520000px;}
.ws0{word-spacing:386.314800px;}
.ws14{word-spacing:1728.777600px;}
._11{margin-left:-18.720000px;}
._3{margin-left:-15.120000px;}
._15{margin-left:-13.464000px;}
._e{margin-left:-12.384000px;}
._10{margin-left:-10.944000px;}
._a{margin-left:-9.144000px;}
._d{margin-left:-7.704000px;}
._f{margin-left:-6.624000px;}
._b{margin-left:-5.040000px;}
._8{margin-left:-2.880000px;}
._0{margin-left:-1.519200px;}
._4{width:1.584000px;}
._2{width:2.592000px;}
._7{width:3.744000px;}
._6{width:5.256000px;}
._1{width:6.552000px;}
._16{width:7.992000px;}
._12{width:8.992800px;}
._5{width:10.152000px;}
._13{width:47.599200px;}
._9{width:66.319200px;}
._17{width:67.816800px;}
._14{width:69.976800px;}
._c{width:109.072800px;}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:48.000000px;}
.fs6{font-size:54.000000px;}
.fs0{font-size:60.000000px;}
.fs4{font-size:66.000000px;}
.fs1{font-size:72.000000px;}
.fs3{font-size:78.000000px;}
.fs2{font-size:90.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:63.438750px;}
.y33{bottom:64.760550px;}
.y32{bottom:65.586600px;}
.y28{bottom:86.443050px;}
.y126{bottom:93.466800px;}
.y85{bottom:93.909000px;}
.yae{bottom:94.437900px;}
.y100{bottom:97.966800px;}
.y5d{bottom:98.409000px;}
.yd6{bottom:99.747900px;}
.y14e{bottom:104.501700px;}
.y175{bottom:106.745700px;}
.y27{bottom:108.943050px;}
.y125{bottom:115.966800px;}
.yad{bottom:116.187900px;}
.y84{bottom:116.409000px;}
.yff{bottom:120.466800px;}
.y5c{bottom:120.909000px;}
.yd5{bottom:121.491900px;}
.y14d{bottom:126.245700px;}
.y174{bottom:129.245700px;}
.y26{bottom:131.443050px;}
.y124{bottom:138.466800px;}
.yac{bottom:138.687900px;}
.y83{bottom:138.909000px;}
.yfe{bottom:142.966800px;}
.y5b{bottom:143.409000px;}
.yd4{bottom:143.991900px;}
.y14c{bottom:147.995700px;}
.y173{bottom:151.745700px;}
.y25{bottom:153.943050px;}
.y123{bottom:160.966800px;}
.yab{bottom:161.187900px;}
.y82{bottom:161.409000px;}
.yd3{bottom:166.491900px;}
.y14b{bottom:169.745700px;}
.y24{bottom:176.443050px;}
.y122{bottom:183.466800px;}
.yaa{bottom:183.687900px;}
.y81{bottom:183.909000px;}
.yfd{bottom:187.978800px;}
.y5a{bottom:188.499000px;}
.yd2{bottom:188.991900px;}
.y14a{bottom:191.501700px;}
.y172{bottom:196.745700px;}
.y23{bottom:198.943050px;}
.y121{bottom:205.966800px;}
.ya9{bottom:206.187900px;}
.y80{bottom:206.409000px;}
.yfc{bottom:210.478800px;}
.yd1{bottom:210.735900px;}
.y59{bottom:210.999000px;}
.y149{bottom:213.245700px;}
.y171{bottom:219.245700px;}
.y22{bottom:221.443050px;}
.y120{bottom:228.466800px;}
.ya8{bottom:228.687900px;}
.y7f{bottom:228.909000px;}
.yfb{bottom:232.222800px;}
.yd0{bottom:232.479900px;}
.y58{bottom:232.743000px;}
.y148{bottom:235.745700px;}
.y170{bottom:241.745700px;}
.y21{bottom:243.943050px;}
.y11f{bottom:250.966800px;}
.ya7{bottom:251.187900px;}
.y7e{bottom:251.409000px;}
.yfa{bottom:253.966800px;}
.ycf{bottom:254.223900px;}
.y57{bottom:254.487000px;}
.y147{bottom:258.245700px;}
.y16f{bottom:264.245700px;}
.y11e{bottom:273.466800px;}
.ya6{bottom:273.687900px;}
.y7d{bottom:273.909000px;}
.yf9{bottom:275.716800px;}
.yce{bottom:275.967900px;}
.y56{bottom:276.231000px;}
.y146{bottom:280.745700px;}
.y16e{bottom:286.745700px;}
.y20{bottom:289.075050px;}
.y11d{bottom:295.966800px;}
.ya5{bottom:296.187900px;}
.y7c{bottom:296.409000px;}
.yf8{bottom:297.466800px;}
.ycd{bottom:297.711900px;}
.y55{bottom:297.975000px;}
.y145{bottom:303.245700px;}
.y16d{bottom:309.245700px;}
.y1f{bottom:311.575050px;}
.y11c{bottom:318.466800px;}
.ya4{bottom:318.687900px;}
.y7b{bottom:318.909000px;}
.yf7{bottom:319.216800px;}
.ycc{bottom:319.455900px;}
.y54{bottom:319.719000px;}
.y144{bottom:325.745700px;}
.y16c{bottom:331.745700px;}
.y1e{bottom:333.319050px;}
.yf6{bottom:340.966800px;}
.ya3{bottom:341.187900px;}
.ycb{bottom:341.199900px;}
.y7a{bottom:341.409000px;}
.y53{bottom:341.463000px;}
.y16b{bottom:354.245700px;}
.y1d{bottom:355.063050px;}
.yf5{bottom:362.716800px;}
.yca{bottom:362.943900px;}
.y52{bottom:363.207000px;}
.y143{bottom:363.245700px;}
.ya2{bottom:363.687900px;}
.y79{bottom:363.909000px;}
.y16a{bottom:376.745700px;}
.y1c{bottom:376.807050px;}
.yf4{bottom:384.466800px;}
.yc9{bottom:384.687900px;}
.y51{bottom:384.951000px;}
.y142{bottom:385.745700px;}
.y11b{bottom:385.966800px;}
.ya1{bottom:386.187900px;}
.y78{bottom:386.409000px;}
.y1b{bottom:398.551050px;}
.y169{bottom:399.245700px;}
.yf3{bottom:406.216800px;}
.y50{bottom:406.695000px;}
.y141{bottom:408.245700px;}
.y11a{bottom:408.466800px;}
.ya0{bottom:408.687900px;}
.y77{bottom:408.909000px;}
.y1a{bottom:420.295050px;}
.y168{bottom:421.745700px;}
.yf2{bottom:427.966800px;}
.yc8{bottom:428.193900px;}
.y4f{bottom:428.439000px;}
.y140{bottom:430.745700px;}
.y119{bottom:430.966800px;}
.y9f{bottom:431.187900px;}
.y76{bottom:431.409000px;}
.y19{bottom:442.039050px;}
.y167{bottom:444.245700px;}
.yf1{bottom:449.716800px;}
.yc7{bottom:449.937900px;}
.y4e{bottom:450.183000px;}
.y13f{bottom:453.245700px;}
.y118{bottom:453.466800px;}
.y9e{bottom:453.687900px;}
.y75{bottom:453.909000px;}
.y31{bottom:456.139950px;}
.y18{bottom:463.783050px;}
.y166{bottom:466.745700px;}
.yf0{bottom:471.466800px;}
.yc6{bottom:471.687900px;}
.y4d{bottom:471.927000px;}
.y13e{bottom:475.745700px;}
.y117{bottom:475.966800px;}
.y9d{bottom:476.187900px;}
.y74{bottom:476.409000px;}
.y30{bottom:478.639950px;}
.y17{bottom:485.527050px;}
.y165{bottom:489.245700px;}
.yef{bottom:493.216800px;}
.yc5{bottom:493.485900px;}
.y4c{bottom:493.671000px;}
.y13d{bottom:498.245700px;}
.y116{bottom:498.466800px;}
.y9c{bottom:498.687900px;}
.y73{bottom:498.909000px;}
.y2f{bottom:501.139950px;}
.y16{bottom:507.271050px;}
.y164{bottom:511.745700px;}
.yee{bottom:514.966800px;}
.yc4{bottom:515.229900px;}
.y4b{bottom:515.415000px;}
.y13c{bottom:520.745700px;}
.y115{bottom:520.966800px;}
.y9b{bottom:521.187900px;}
.y72{bottom:521.409000px;}
.y15{bottom:529.015050px;}
.y163{bottom:534.245700px;}
.yed{bottom:536.716800px;}
.yc3{bottom:536.973900px;}
.y4a{bottom:537.165000px;}
.y2e{bottom:541.639950px;}
.y13b{bottom:543.245700px;}
.y114{bottom:543.466800px;}
.y9a{bottom:543.687900px;}
.y71{bottom:543.909000px;}
.y14{bottom:550.759050px;}
.y162{bottom:556.745700px;}
.yec{bottom:558.466800px;}
.yc2{bottom:558.717900px;}
.y49{bottom:558.915000px;}
.y13a{bottom:565.745700px;}
.y113{bottom:565.966800px;}
.y99{bottom:566.187900px;}
.y70{bottom:566.409000px;}
.y13{bottom:572.503050px;}
.y161{bottom:579.245700px;}
.yeb{bottom:580.216800px;}
.yc1{bottom:580.461900px;}
.y48{bottom:580.659000px;}
.y2d{bottom:586.639950px;}
.y139{bottom:588.245700px;}
.y112{bottom:588.466800px;}
.y98{bottom:588.687900px;}
.y6f{bottom:588.909000px;}
.y12{bottom:594.247050px;}
.y160{bottom:601.745700px;}
.yea{bottom:601.966800px;}
.yc0{bottom:602.205900px;}
.y138{bottom:610.745700px;}
.y111{bottom:610.966800px;}
.y97{bottom:611.187900px;}
.y6e{bottom:611.409000px;}
.y11{bottom:615.991050px;}
.ye9{bottom:623.764800px;}
.ybf{bottom:623.949900px;}
.y15f{bottom:624.245700px;}
.y47{bottom:624.261000px;}
.y2c{bottom:627.139950px;}
.y137{bottom:633.245700px;}
.y110{bottom:633.466800px;}
.y96{bottom:633.687900px;}
.y6d{bottom:633.909000px;}
.y10{bottom:637.735050px;}
.ye8{bottom:645.508800px;}
.ybe{bottom:645.693900px;}
.y46{bottom:646.005000px;}
.y15e{bottom:646.745700px;}
.y136{bottom:655.745700px;}
.y10f{bottom:655.966800px;}
.y95{bottom:656.187900px;}
.y6c{bottom:656.409000px;}
.yf{bottom:659.479050px;}
.y2b{bottom:663.139950px;}
.ye7{bottom:667.252800px;}
.ybd{bottom:667.443900px;}
.y45{bottom:667.749000px;}
.y15d{bottom:669.245700px;}
.y135{bottom:678.245700px;}
.y10e{bottom:678.466800px;}
.y94{bottom:678.687900px;}
.y6b{bottom:678.909000px;}
.ye{bottom:681.223050px;}
.ye6{bottom:688.996800px;}
.ybc{bottom:689.205900px;}
.y44{bottom:689.493000px;}
.y15c{bottom:691.745700px;}
.y2a{bottom:699.139950px;}
.y134{bottom:700.745700px;}
.y10d{bottom:700.966800px;}
.y93{bottom:701.187900px;}
.y6a{bottom:701.409000px;}
.yd{bottom:702.967050px;}
.ye5{bottom:710.740800px;}
.ybb{bottom:710.949900px;}
.y43{bottom:711.237000px;}
.y15b{bottom:714.245700px;}
.y133{bottom:723.245700px;}
.y10c{bottom:723.466800px;}
.y92{bottom:723.687900px;}
.y69{bottom:723.909000px;}
.yc{bottom:724.711050px;}
.ye4{bottom:732.484800px;}
.yba{bottom:732.693900px;}
.y42{bottom:732.981000px;}
.y29{bottom:735.139950px;}
.y15a{bottom:736.745700px;}
.y132{bottom:745.745700px;}
.y10b{bottom:745.966800px;}
.y91{bottom:746.187900px;}
.y68{bottom:746.409000px;}
.yb{bottom:746.455050px;}
.ye3{bottom:754.228800px;}
.yb9{bottom:754.437900px;}
.y41{bottom:754.725000px;}
.y159{bottom:759.245700px;}
.ya{bottom:768.199050px;}
.y131{bottom:768.245700px;}
.y10a{bottom:768.466800px;}
.y90{bottom:768.687900px;}
.y67{bottom:768.909000px;}
.ye2{bottom:775.972800px;}
.yb8{bottom:776.187900px;}
.y40{bottom:776.469000px;}
.y158{bottom:781.745700px;}
.y9{bottom:789.943050px;}
.y130{bottom:790.745700px;}
.y109{bottom:790.966800px;}
.y8f{bottom:791.187900px;}
.y66{bottom:791.409000px;}
.ye1{bottom:797.716800px;}
.yb7{bottom:797.937900px;}
.y3f{bottom:798.213000px;}
.y12f{bottom:813.245700px;}
.y108{bottom:813.466800px;}
.y8e{bottom:813.687900px;}
.y65{bottom:813.909000px;}
.y157{bottom:819.257700px;}
.ye0{bottom:819.466800px;}
.yb6{bottom:819.687900px;}
.y3e{bottom:819.957000px;}
.y8{bottom:834.929550px;}
.y12e{bottom:835.745700px;}
.y107{bottom:835.966800px;}
.y8d{bottom:836.187900px;}
.y64{bottom:836.409000px;}
.y156{bottom:841.001700px;}
.ydf{bottom:841.216800px;}
.yde{bottom:841.240800px;}
.y3d{bottom:841.701000px;}
.y7{bottom:855.934050px;}
.y12d{bottom:858.245700px;}
.y106{bottom:858.466800px;}
.y8c{bottom:858.687900px;}
.y63{bottom:858.909000px;}
.y155{bottom:862.745700px;}
.ydd{bottom:862.984800px;}
.yb5{bottom:863.217900px;}
.y3c{bottom:863.445000px;}
.y6{bottom:876.938550px;}
.y12c{bottom:880.745700px;}
.y105{bottom:880.966800px;}
.y8b{bottom:881.187900px;}
.y62{bottom:881.409000px;}
.y154{bottom:884.495700px;}
.ydc{bottom:884.728800px;}
.yb4{bottom:884.961900px;}
.y3b{bottom:885.189000px;}
.y5{bottom:897.943050px;}
.y12b{bottom:903.245700px;}
.y104{bottom:903.466800px;}
.y8a{bottom:903.687900px;}
.y61{bottom:903.909000px;}
.y153{bottom:906.275700px;}
.ydb{bottom:906.472800px;}
.yb3{bottom:906.705900px;}
.y3a{bottom:906.933000px;}
.y17a{bottom:910.725450px;}
.y4{bottom:918.943050px;}
.y12a{bottom:925.745700px;}
.y103{bottom:925.966800px;}
.y89{bottom:926.187900px;}
.y60{bottom:926.409000px;}
.y17c{bottom:927.225450px;}
.y152{bottom:928.019700px;}
.yda{bottom:928.216800px;}
.yb2{bottom:928.449900px;}
.y39{bottom:928.677000px;}
.y179{bottom:930.225450px;}
.y129{bottom:948.245700px;}
.y102{bottom:948.466800px;}
.y88{bottom:948.687900px;}
.y5f{bottom:948.909000px;}
.y17b{bottom:949.725450px;}
.y151{bottom:949.763700px;}
.yd9{bottom:949.966800px;}
.yb1{bottom:950.193900px;}
.y38{bottom:950.421000px;}
.y178{bottom:952.731450px;}
.y3{bottom:968.443050px;}
.y128{bottom:970.745700px;}
.y101{bottom:970.966800px;}
.y87{bottom:971.187900px;}
.y5e{bottom:971.409000px;}
.y150{bottom:971.507700px;}
.yd8{bottom:971.722800px;}
.yb0{bottom:971.937900px;}
.y37{bottom:972.165000px;}
.y177{bottom:972.225450px;}
.y127{bottom:993.245700px;}
.y14f{bottom:993.251700px;}
.yd7{bottom:993.466800px;}
.yaf{bottom:993.681900px;}
.y86{bottom:993.687900px;}
.y36{bottom:993.909000px;}
.y176{bottom:994.725450px;}
.y35{bottom:1024.374150px;}
.y2{bottom:1027.506750px;}
.y34{bottom:1039.374150px;}
.hd{height:34.176000px;}
.hc{height:34.560000px;}
.h8{height:40.634766px;}
.h9{height:41.660156px;}
.hb{height:42.000000px;}
.ha{height:42.720000px;}
.h6{height:46.200000px;}
.h7{height:50.400000px;}
.h3{height:52.492611px;}
.h2{height:53.467611px;}
.h5{height:54.600000px;}
.h4{height:63.000000px;}
.h1{height:1092.750000px;}
.h0{height:1092.960000px;}
.w1{width:774.000000px;}
.w0{width:774.360000px;}
.x0{left:0.000000px;}
.xb{left:63.779550px;}
.x2{left:65.202600px;}
.xa{left:73.559100px;}
.x1{left:78.453150px;}
.xf{left:85.039350px;}
.x17{left:90.797250px;}
.x15{left:172.577700px;}
.x9{left:224.187900px;}
.x3{left:243.833700px;}
.x12{left:291.715200px;}
.x7{left:312.741150px;}
.x6{left:342.342150px;}
.x10{left:399.935850px;}
.xe{left:412.272150px;}
.x11{left:421.195650px;}
.x16{left:427.187700px;}
.x5{left:498.547650px;}
.x4{left:533.018100px;}
.x8{left:585.238650px;}
.x14{left:608.886000px;}
.xd{left:614.196150px;}
.xc{left:632.875800px;}
.x13{left:710.580450px;}
@media print{
.v2{vertical-align:-4.376533pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:1.439467pt;}
.ls4{letter-spacing:-0.682667pt;}
.ls7{letter-spacing:-0.320000pt;}
.ls2{letter-spacing:-0.128000pt;}
.ls6{letter-spacing:-0.064000pt;}
.ls1{letter-spacing:0.000000pt;}
.ls0{letter-spacing:55.538667pt;}
.ls5{letter-spacing:58.944000pt;}
.ls3{letter-spacing:58.950400pt;}
.ws2{word-spacing:-64.000000pt;}
.wsae{word-spacing:-63.936000pt;}
.ws6{word-spacing:-63.872000pt;}
.wsb9{word-spacing:-63.680000pt;}
.ws8c{word-spacing:-54.528000pt;}
.ws93{word-spacing:-54.464000pt;}
.ws9{word-spacing:-54.400000pt;}
.ws9c{word-spacing:-54.016000pt;}
.ws88{word-spacing:-53.632000pt;}
.wsad{word-spacing:-53.440000pt;}
.wsb6{word-spacing:-53.184000pt;}
.ws4{word-spacing:-52.864000pt;}
.ws29{word-spacing:-52.800000pt;}
.ws2a{word-spacing:-52.416000pt;}
.ws28{word-spacing:-52.352000pt;}
.ws2f{word-spacing:-51.904000pt;}
.ws37{word-spacing:-51.456000pt;}
.ws39{word-spacing:-51.200000pt;}
.ws9a{word-spacing:-51.008000pt;}
.ws71{word-spacing:-50.304000pt;}
.ws49{word-spacing:-49.728000pt;}
.ws52{word-spacing:-49.536000pt;}
.ws42{word-spacing:-49.088000pt;}
.wsbf{word-spacing:-48.832000pt;}
.ws4f{word-spacing:-48.704000pt;}
.wsa{word-spacing:-48.320000pt;}
.ws8{word-spacing:-47.488000pt;}
.ws1f{word-spacing:-47.424000pt;}
.wse{word-spacing:-47.360000pt;}
.ws60{word-spacing:-47.104000pt;}
.ws4a{word-spacing:-46.976000pt;}
.ws8b{word-spacing:-46.912000pt;}
.ws3c{word-spacing:-46.784000pt;}
.wsa2{word-spacing:-46.720000pt;}
.ws70{word-spacing:-46.016000pt;}
.wsd{word-spacing:-45.632000pt;}
.ws79{word-spacing:-45.568000pt;}
.wsba{word-spacing:-45.376000pt;}
.ws66{word-spacing:-44.864000pt;}
.ws45{word-spacing:-44.608000pt;}
.ws57{word-spacing:-44.358400pt;}
.ws97{word-spacing:-43.584000pt;}
.wsaf{word-spacing:-43.392000pt;}
.ws1e{word-spacing:-43.136000pt;}
.wsb{word-spacing:-42.880000pt;}
.ws3{word-spacing:-42.688000pt;}
.wsc{word-spacing:-42.176000pt;}
.wsa1{word-spacing:-41.664000pt;}
.ws7a{word-spacing:-41.152000pt;}
.ws1a{word-spacing:-40.320000pt;}
.ws90{word-spacing:-40.000000pt;}
.ws7e{word-spacing:-39.936000pt;}
.ws7b{word-spacing:-39.872000pt;}
.ws3a{word-spacing:-39.680000pt;}
.ws94{word-spacing:-39.360000pt;}
.ws2e{word-spacing:-39.168000pt;}
.wsaa{word-spacing:-38.912000pt;}
.ws5{word-spacing:-38.336000pt;}
.ws11{word-spacing:-36.928000pt;}
.ws9d{word-spacing:-36.544000pt;}
.ws3d{word-spacing:-36.032000pt;}
.ws34{word-spacing:-35.712000pt;}
.ws2b{word-spacing:-35.328000pt;}
.ws38{word-spacing:-34.688000pt;}
.ws55{word-spacing:-34.112000pt;}
.wsb8{word-spacing:-33.344000pt;}
.ws35{word-spacing:-33.216000pt;}
.ws31{word-spacing:-33.152000pt;}
.wsa0{word-spacing:-32.960000pt;}
.ws7{word-spacing:-32.256000pt;}
.wsb7{word-spacing:-32.128000pt;}
.ws92{word-spacing:-31.168000pt;}
.ws62{word-spacing:-31.040000pt;}
.wsab{word-spacing:-30.470400pt;}
.ws98{word-spacing:-30.400000pt;}
.ws40{word-spacing:-29.824000pt;}
.wsb5{word-spacing:-29.312000pt;}
.ws30{word-spacing:-28.544000pt;}
.ws25{word-spacing:-28.416000pt;}
.wsac{word-spacing:-27.520000pt;}
.ws4e{word-spacing:-27.328000pt;}
.ws69{word-spacing:-27.008000pt;}
.ws50{word-spacing:-26.944000pt;}
.ws17{word-spacing:-26.048000pt;}
.wsa6{word-spacing:-25.984000pt;}
.ws68{word-spacing:-25.344000pt;}
.ws65{word-spacing:-25.088000pt;}
.ws7f{word-spacing:-24.832000pt;}
.ws54{word-spacing:-23.488000pt;}
.ws85{word-spacing:-22.016000pt;}
.ws33{word-spacing:-21.689600pt;}
.ws6a{word-spacing:-21.504000pt;}
.ws5b{word-spacing:-21.440000pt;}
.wsf{word-spacing:-21.376000pt;}
.ws67{word-spacing:-21.248000pt;}
.ws21{word-spacing:-20.608000pt;}
.ws9e{word-spacing:-20.544000pt;}
.ws20{word-spacing:-19.456000pt;}
.ws61{word-spacing:-19.200000pt;}
.ws91{word-spacing:-18.816000pt;}
.wsc4{word-spacing:-18.560000pt;}
.ws51{word-spacing:-18.304000pt;}
.ws5a{word-spacing:-18.240000pt;}
.ws16{word-spacing:-17.920000pt;}
.ws73{word-spacing:-17.792000pt;}
.ws59{word-spacing:-16.704000pt;}
.wsb0{word-spacing:-16.640000pt;}
.ws8f{word-spacing:-16.320000pt;}
.ws10{word-spacing:-16.192000pt;}
.ws81{word-spacing:-16.000000pt;}
.ws83{word-spacing:-15.552000pt;}
.ws5f{word-spacing:-15.232000pt;}
.ws12{word-spacing:-13.333333pt;}
.wsa3{word-spacing:-13.248000pt;}
.ws89{word-spacing:-12.864000pt;}
.ws46{word-spacing:-12.032000pt;}
.ws24{word-spacing:-12.000000pt;}
.ws6c{word-spacing:-11.904000pt;}
.ws22{word-spacing:-11.264000pt;}
.ws75{word-spacing:-10.496000pt;}
.wsa5{word-spacing:-10.368000pt;}
.ws87{word-spacing:-9.088000pt;}
.wsb2{word-spacing:-8.064000pt;}
.ws6f{word-spacing:-7.232000pt;}
.ws8d{word-spacing:-6.976000pt;}
.ws7d{word-spacing:-6.272000pt;}
.ws84{word-spacing:-5.952000pt;}
.ws47{word-spacing:-5.760000pt;}
.ws63{word-spacing:-5.083733pt;}
.ws1{word-spacing:-5.049600pt;}
.ws64{word-spacing:-4.928000pt;}
.ws74{word-spacing:-4.288000pt;}
.ws82{word-spacing:-3.136000pt;}
.ws78{word-spacing:-2.880000pt;}
.ws3b{word-spacing:-2.560000pt;}
.ws95{word-spacing:-2.368000pt;}
.ws9b{word-spacing:-2.304000pt;}
.ws4b{word-spacing:-0.832000pt;}
.ws13{word-spacing:0.000000pt;}
.wsb1{word-spacing:0.512000pt;}
.ws15{word-spacing:0.640000pt;}
.ws86{word-spacing:1.024000pt;}
.ws41{word-spacing:1.984000pt;}
.ws8e{word-spacing:3.840000pt;}
.ws3e{word-spacing:4.032000pt;}
.wsbe{word-spacing:5.248000pt;}
.ws36{word-spacing:5.568000pt;}
.ws32{word-spacing:7.488000pt;}
.wsc0{word-spacing:9.408000pt;}
.ws7c{word-spacing:9.664000pt;}
.ws5d{word-spacing:10.496000pt;}
.ws43{word-spacing:11.520000pt;}
.ws6e{word-spacing:12.864000pt;}
.ws58{word-spacing:14.272000pt;}
.ws1b{word-spacing:14.720000pt;}
.wsa9{word-spacing:15.168000pt;}
.ws5c{word-spacing:15.808000pt;}
.ws96{word-spacing:15.872000pt;}
.ws53{word-spacing:16.640000pt;}
.wsb3{word-spacing:16.832000pt;}
.ws27{word-spacing:16.960000pt;}
.ws9f{word-spacing:17.856000pt;}
.ws3f{word-spacing:19.072000pt;}
.ws6b{word-spacing:19.200000pt;}
.ws4d{word-spacing:19.264000pt;}
.ws1d{word-spacing:19.648000pt;}
.wsbc{word-spacing:19.968000pt;}
.ws6d{word-spacing:20.992000pt;}
.ws72{word-spacing:23.488000pt;}
.ws44{word-spacing:23.616000pt;}
.ws80{word-spacing:24.384000pt;}
.wsb4{word-spacing:25.344000pt;}
.ws4c{word-spacing:25.920000pt;}
.ws26{word-spacing:31.872000pt;}
.wsa7{word-spacing:32.576000pt;}
.ws77{word-spacing:32.704000pt;}
.ws56{word-spacing:34.752000pt;}
.wsbd{word-spacing:37.696000pt;}
.wsc2{word-spacing:40.576000pt;}
.ws23{word-spacing:40.640000pt;}
.wsa4{word-spacing:41.472000pt;}
.ws1c{word-spacing:41.984000pt;}
.ws2c{word-spacing:42.944000pt;}
.ws76{word-spacing:44.480000pt;}
.ws5e{word-spacing:48.448000pt;}
.ws8a{word-spacing:49.984000pt;}
.ws48{word-spacing:55.296000pt;}
.ws99{word-spacing:71.680000pt;}
.wsc3{word-spacing:97.920000pt;}
.ws2d{word-spacing:110.528000pt;}
.wsa8{word-spacing:149.952000pt;}
.wsbb{word-spacing:158.528000pt;}
.ws18{word-spacing:164.416000pt;}
.wsc1{word-spacing:165.184000pt;}
.ws19{word-spacing:170.240000pt;}
.ws0{word-spacing:343.390933pt;}
.ws14{word-spacing:1536.691200pt;}
._11{margin-left:-16.640000pt;}
._3{margin-left:-13.440000pt;}
._15{margin-left:-11.968000pt;}
._e{margin-left:-11.008000pt;}
._10{margin-left:-9.728000pt;}
._a{margin-left:-8.128000pt;}
._d{margin-left:-6.848000pt;}
._f{margin-left:-5.888000pt;}
._b{margin-left:-4.480000pt;}
._8{margin-left:-2.560000pt;}
._0{margin-left:-1.350400pt;}
._4{width:1.408000pt;}
._2{width:2.304000pt;}
._7{width:3.328000pt;}
._6{width:4.672000pt;}
._1{width:5.824000pt;}
._16{width:7.104000pt;}
._12{width:7.993600pt;}
._5{width:9.024000pt;}
._13{width:42.310400pt;}
._9{width:58.950400pt;}
._17{width:60.281600pt;}
._14{width:62.201600pt;}
._c{width:96.953600pt;}
.fs5{font-size:42.666667pt;}
.fs6{font-size:48.000000pt;}
.fs0{font-size:53.333333pt;}
.fs4{font-size:58.666667pt;}
.fs1{font-size:64.000000pt;}
.fs3{font-size:69.333333pt;}
.fs2{font-size:80.000000pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:56.390000pt;}
.y33{bottom:57.564933pt;}
.y32{bottom:58.299200pt;}
.y28{bottom:76.838267pt;}
.y126{bottom:83.081600pt;}
.y85{bottom:83.474667pt;}
.yae{bottom:83.944800pt;}
.y100{bottom:87.081600pt;}
.y5d{bottom:87.474667pt;}
.yd6{bottom:88.664800pt;}
.y14e{bottom:92.890400pt;}
.y175{bottom:94.885067pt;}
.y27{bottom:96.838267pt;}
.y125{bottom:103.081600pt;}
.yad{bottom:103.278133pt;}
.y84{bottom:103.474667pt;}
.yff{bottom:107.081600pt;}
.y5c{bottom:107.474667pt;}
.yd5{bottom:107.992800pt;}
.y14d{bottom:112.218400pt;}
.y174{bottom:114.885067pt;}
.y26{bottom:116.838267pt;}
.y124{bottom:123.081600pt;}
.yac{bottom:123.278133pt;}
.y83{bottom:123.474667pt;}
.yfe{bottom:127.081600pt;}
.y5b{bottom:127.474667pt;}
.yd4{bottom:127.992800pt;}
.y14c{bottom:131.551733pt;}
.y173{bottom:134.885067pt;}
.y25{bottom:136.838267pt;}
.y123{bottom:143.081600pt;}
.yab{bottom:143.278133pt;}
.y82{bottom:143.474667pt;}
.yd3{bottom:147.992800pt;}
.y14b{bottom:150.885067pt;}
.y24{bottom:156.838267pt;}
.y122{bottom:163.081600pt;}
.yaa{bottom:163.278133pt;}
.y81{bottom:163.474667pt;}
.yfd{bottom:167.092267pt;}
.y5a{bottom:167.554667pt;}
.yd2{bottom:167.992800pt;}
.y14a{bottom:170.223733pt;}
.y172{bottom:174.885067pt;}
.y23{bottom:176.838267pt;}
.y121{bottom:183.081600pt;}
.ya9{bottom:183.278133pt;}
.y80{bottom:183.474667pt;}
.yfc{bottom:187.092267pt;}
.yd1{bottom:187.320800pt;}
.y59{bottom:187.554667pt;}
.y149{bottom:189.551733pt;}
.y171{bottom:194.885067pt;}
.y22{bottom:196.838267pt;}
.y120{bottom:203.081600pt;}
.ya8{bottom:203.278133pt;}
.y7f{bottom:203.474667pt;}
.yfb{bottom:206.420267pt;}
.yd0{bottom:206.648800pt;}
.y58{bottom:206.882667pt;}
.y148{bottom:209.551733pt;}
.y170{bottom:214.885067pt;}
.y21{bottom:216.838267pt;}
.y11f{bottom:223.081600pt;}
.ya7{bottom:223.278133pt;}
.y7e{bottom:223.474667pt;}
.yfa{bottom:225.748267pt;}
.ycf{bottom:225.976800pt;}
.y57{bottom:226.210667pt;}
.y147{bottom:229.551733pt;}
.y16f{bottom:234.885067pt;}
.y11e{bottom:243.081600pt;}
.ya6{bottom:243.278133pt;}
.y7d{bottom:243.474667pt;}
.yf9{bottom:245.081600pt;}
.yce{bottom:245.304800pt;}
.y56{bottom:245.538667pt;}
.y146{bottom:249.551733pt;}
.y16e{bottom:254.885067pt;}
.y20{bottom:256.955600pt;}
.y11d{bottom:263.081600pt;}
.ya5{bottom:263.278133pt;}
.y7c{bottom:263.474667pt;}
.yf8{bottom:264.414933pt;}
.ycd{bottom:264.632800pt;}
.y55{bottom:264.866667pt;}
.y145{bottom:269.551733pt;}
.y16d{bottom:274.885067pt;}
.y1f{bottom:276.955600pt;}
.y11c{bottom:283.081600pt;}
.ya4{bottom:283.278133pt;}
.y7b{bottom:283.474667pt;}
.yf7{bottom:283.748267pt;}
.ycc{bottom:283.960800pt;}
.y54{bottom:284.194667pt;}
.y144{bottom:289.551733pt;}
.y16c{bottom:294.885067pt;}
.y1e{bottom:296.283600pt;}
.yf6{bottom:303.081600pt;}
.ya3{bottom:303.278133pt;}
.ycb{bottom:303.288800pt;}
.y7a{bottom:303.474667pt;}
.y53{bottom:303.522667pt;}
.y16b{bottom:314.885067pt;}
.y1d{bottom:315.611600pt;}
.yf5{bottom:322.414933pt;}
.yca{bottom:322.616800pt;}
.y52{bottom:322.850667pt;}
.y143{bottom:322.885067pt;}
.ya2{bottom:323.278133pt;}
.y79{bottom:323.474667pt;}
.y16a{bottom:334.885067pt;}
.y1c{bottom:334.939600pt;}
.yf4{bottom:341.748267pt;}
.yc9{bottom:341.944800pt;}
.y51{bottom:342.178667pt;}
.y142{bottom:342.885067pt;}
.y11b{bottom:343.081600pt;}
.ya1{bottom:343.278133pt;}
.y78{bottom:343.474667pt;}
.y1b{bottom:354.267600pt;}
.y169{bottom:354.885067pt;}
.yf3{bottom:361.081600pt;}
.y50{bottom:361.506667pt;}
.y141{bottom:362.885067pt;}
.y11a{bottom:363.081600pt;}
.ya0{bottom:363.278133pt;}
.y77{bottom:363.474667pt;}
.y1a{bottom:373.595600pt;}
.y168{bottom:374.885067pt;}
.yf2{bottom:380.414933pt;}
.yc8{bottom:380.616800pt;}
.y4f{bottom:380.834667pt;}
.y140{bottom:382.885067pt;}
.y119{bottom:383.081600pt;}
.y9f{bottom:383.278133pt;}
.y76{bottom:383.474667pt;}
.y19{bottom:392.923600pt;}
.y167{bottom:394.885067pt;}
.yf1{bottom:399.748267pt;}
.yc7{bottom:399.944800pt;}
.y4e{bottom:400.162667pt;}
.y13f{bottom:402.885067pt;}
.y118{bottom:403.081600pt;}
.y9e{bottom:403.278133pt;}
.y75{bottom:403.474667pt;}
.y31{bottom:405.457733pt;}
.y18{bottom:412.251600pt;}
.y166{bottom:414.885067pt;}
.yf0{bottom:419.081600pt;}
.yc6{bottom:419.278133pt;}
.y4d{bottom:419.490667pt;}
.y13e{bottom:422.885067pt;}
.y117{bottom:423.081600pt;}
.y9d{bottom:423.278133pt;}
.y74{bottom:423.474667pt;}
.y30{bottom:425.457733pt;}
.y17{bottom:431.579600pt;}
.y165{bottom:434.885067pt;}
.yef{bottom:438.414933pt;}
.yc5{bottom:438.654133pt;}
.y4c{bottom:438.818667pt;}
.y13d{bottom:442.885067pt;}
.y116{bottom:443.081600pt;}
.y9c{bottom:443.278133pt;}
.y73{bottom:443.474667pt;}
.y2f{bottom:445.457733pt;}
.y16{bottom:450.907600pt;}
.y164{bottom:454.885067pt;}
.yee{bottom:457.748267pt;}
.yc4{bottom:457.982133pt;}
.y4b{bottom:458.146667pt;}
.y13c{bottom:462.885067pt;}
.y115{bottom:463.081600pt;}
.y9b{bottom:463.278133pt;}
.y72{bottom:463.474667pt;}
.y15{bottom:470.235600pt;}
.y163{bottom:474.885067pt;}
.yed{bottom:477.081600pt;}
.yc3{bottom:477.310133pt;}
.y4a{bottom:477.480000pt;}
.y2e{bottom:481.457733pt;}
.y13b{bottom:482.885067pt;}
.y114{bottom:483.081600pt;}
.y9a{bottom:483.278133pt;}
.y71{bottom:483.474667pt;}
.y14{bottom:489.563600pt;}
.y162{bottom:494.885067pt;}
.yec{bottom:496.414933pt;}
.yc2{bottom:496.638133pt;}
.y49{bottom:496.813333pt;}
.y13a{bottom:502.885067pt;}
.y113{bottom:503.081600pt;}
.y99{bottom:503.278133pt;}
.y70{bottom:503.474667pt;}
.y13{bottom:508.891600pt;}
.y161{bottom:514.885067pt;}
.yeb{bottom:515.748267pt;}
.yc1{bottom:515.966133pt;}
.y48{bottom:516.141333pt;}
.y2d{bottom:521.457733pt;}
.y139{bottom:522.885067pt;}
.y112{bottom:523.081600pt;}
.y98{bottom:523.278133pt;}
.y6f{bottom:523.474667pt;}
.y12{bottom:528.219600pt;}
.y160{bottom:534.885067pt;}
.yea{bottom:535.081600pt;}
.yc0{bottom:535.294133pt;}
.y138{bottom:542.885067pt;}
.y111{bottom:543.081600pt;}
.y97{bottom:543.278133pt;}
.y6e{bottom:543.474667pt;}
.y11{bottom:547.547600pt;}
.ye9{bottom:554.457600pt;}
.ybf{bottom:554.622133pt;}
.y15f{bottom:554.885067pt;}
.y47{bottom:554.898667pt;}
.y2c{bottom:557.457733pt;}
.y137{bottom:562.885067pt;}
.y110{bottom:563.081600pt;}
.y96{bottom:563.278133pt;}
.y6d{bottom:563.474667pt;}
.y10{bottom:566.875600pt;}
.ye8{bottom:573.785600pt;}
.ybe{bottom:573.950133pt;}
.y46{bottom:574.226667pt;}
.y15e{bottom:574.885067pt;}
.y136{bottom:582.885067pt;}
.y10f{bottom:583.081600pt;}
.y95{bottom:583.278133pt;}
.y6c{bottom:583.474667pt;}
.yf{bottom:586.203600pt;}
.y2b{bottom:589.457733pt;}
.ye7{bottom:593.113600pt;}
.ybd{bottom:593.283467pt;}
.y45{bottom:593.554667pt;}
.y15d{bottom:594.885067pt;}
.y135{bottom:602.885067pt;}
.y10e{bottom:603.081600pt;}
.y94{bottom:603.278133pt;}
.y6b{bottom:603.474667pt;}
.ye{bottom:605.531600pt;}
.ye6{bottom:612.441600pt;}
.ybc{bottom:612.627467pt;}
.y44{bottom:612.882667pt;}
.y15c{bottom:614.885067pt;}
.y2a{bottom:621.457733pt;}
.y134{bottom:622.885067pt;}
.y10d{bottom:623.081600pt;}
.y93{bottom:623.278133pt;}
.y6a{bottom:623.474667pt;}
.yd{bottom:624.859600pt;}
.ye5{bottom:631.769600pt;}
.ybb{bottom:631.955467pt;}
.y43{bottom:632.210667pt;}
.y15b{bottom:634.885067pt;}
.y133{bottom:642.885067pt;}
.y10c{bottom:643.081600pt;}
.y92{bottom:643.278133pt;}
.y69{bottom:643.474667pt;}
.yc{bottom:644.187600pt;}
.ye4{bottom:651.097600pt;}
.yba{bottom:651.283467pt;}
.y42{bottom:651.538667pt;}
.y29{bottom:653.457733pt;}
.y15a{bottom:654.885067pt;}
.y132{bottom:662.885067pt;}
.y10b{bottom:663.081600pt;}
.y91{bottom:663.278133pt;}
.y68{bottom:663.474667pt;}
.yb{bottom:663.515600pt;}
.ye3{bottom:670.425600pt;}
.yb9{bottom:670.611467pt;}
.y41{bottom:670.866667pt;}
.y159{bottom:674.885067pt;}
.ya{bottom:682.843600pt;}
.y131{bottom:682.885067pt;}
.y10a{bottom:683.081600pt;}
.y90{bottom:683.278133pt;}
.y67{bottom:683.474667pt;}
.ye2{bottom:689.753600pt;}
.yb8{bottom:689.944800pt;}
.y40{bottom:690.194667pt;}
.y158{bottom:694.885067pt;}
.y9{bottom:702.171600pt;}
.y130{bottom:702.885067pt;}
.y109{bottom:703.081600pt;}
.y8f{bottom:703.278133pt;}
.y66{bottom:703.474667pt;}
.ye1{bottom:709.081600pt;}
.yb7{bottom:709.278133pt;}
.y3f{bottom:709.522667pt;}
.y12f{bottom:722.885067pt;}
.y108{bottom:723.081600pt;}
.y8e{bottom:723.278133pt;}
.y65{bottom:723.474667pt;}
.y157{bottom:728.229067pt;}
.ye0{bottom:728.414933pt;}
.yb6{bottom:728.611467pt;}
.y3e{bottom:728.850667pt;}
.y8{bottom:742.159600pt;}
.y12e{bottom:742.885067pt;}
.y107{bottom:743.081600pt;}
.y8d{bottom:743.278133pt;}
.y64{bottom:743.474667pt;}
.y156{bottom:747.557067pt;}
.ydf{bottom:747.748267pt;}
.yde{bottom:747.769600pt;}
.y3d{bottom:748.178667pt;}
.y7{bottom:760.830267pt;}
.y12d{bottom:762.885067pt;}
.y106{bottom:763.081600pt;}
.y8c{bottom:763.278133pt;}
.y63{bottom:763.474667pt;}
.y155{bottom:766.885067pt;}
.ydd{bottom:767.097600pt;}
.yb5{bottom:767.304800pt;}
.y3c{bottom:767.506667pt;}
.y6{bottom:779.500933pt;}
.y12c{bottom:782.885067pt;}
.y105{bottom:783.081600pt;}
.y8b{bottom:783.278133pt;}
.y62{bottom:783.474667pt;}
.y154{bottom:786.218400pt;}
.ydc{bottom:786.425600pt;}
.yb4{bottom:786.632800pt;}
.y3b{bottom:786.834667pt;}
.y5{bottom:798.171600pt;}
.y12b{bottom:802.885067pt;}
.y104{bottom:803.081600pt;}
.y8a{bottom:803.278133pt;}
.y61{bottom:803.474667pt;}
.y153{bottom:805.578400pt;}
.ydb{bottom:805.753600pt;}
.yb3{bottom:805.960800pt;}
.y3a{bottom:806.162667pt;}
.y17a{bottom:809.533733pt;}
.y4{bottom:816.838267pt;}
.y12a{bottom:822.885067pt;}
.y103{bottom:823.081600pt;}
.y89{bottom:823.278133pt;}
.y60{bottom:823.474667pt;}
.y17c{bottom:824.200400pt;}
.y152{bottom:824.906400pt;}
.yda{bottom:825.081600pt;}
.yb2{bottom:825.288800pt;}
.y39{bottom:825.490667pt;}
.y179{bottom:826.867067pt;}
.y129{bottom:842.885067pt;}
.y102{bottom:843.081600pt;}
.y88{bottom:843.278133pt;}
.y5f{bottom:843.474667pt;}
.y17b{bottom:844.200400pt;}
.y151{bottom:844.234400pt;}
.yd9{bottom:844.414933pt;}
.yb1{bottom:844.616800pt;}
.y38{bottom:844.818667pt;}
.y178{bottom:846.872400pt;}
.y3{bottom:860.838267pt;}
.y128{bottom:862.885067pt;}
.y101{bottom:863.081600pt;}
.y87{bottom:863.278133pt;}
.y5e{bottom:863.474667pt;}
.y150{bottom:863.562400pt;}
.yd8{bottom:863.753600pt;}
.yb0{bottom:863.944800pt;}
.y37{bottom:864.146667pt;}
.y177{bottom:864.200400pt;}
.y127{bottom:882.885067pt;}
.y14f{bottom:882.890400pt;}
.yd7{bottom:883.081600pt;}
.yaf{bottom:883.272800pt;}
.y86{bottom:883.278133pt;}
.y36{bottom:883.474667pt;}
.y176{bottom:884.200400pt;}
.y35{bottom:910.554800pt;}
.y2{bottom:913.339333pt;}
.y34{bottom:923.888133pt;}
.hd{height:30.378667pt;}
.hc{height:30.720000pt;}
.h8{height:36.119792pt;}
.h9{height:37.031250pt;}
.hb{height:37.333333pt;}
.ha{height:37.973333pt;}
.h6{height:41.066667pt;}
.h7{height:44.800000pt;}
.h3{height:46.660099pt;}
.h2{height:47.526765pt;}
.h5{height:48.533333pt;}
.h4{height:56.000000pt;}
.h1{height:971.333333pt;}
.h0{height:971.520000pt;}
.w1{width:688.000000pt;}
.w0{width:688.320000pt;}
.x0{left:0.000000pt;}
.xb{left:56.692933pt;}
.x2{left:57.957867pt;}
.xa{left:65.385867pt;}
.x1{left:69.736133pt;}
.xf{left:75.590533pt;}
.x17{left:80.708667pt;}
.x15{left:153.402400pt;}
.x9{left:199.278133pt;}
.x3{left:216.741067pt;}
.x12{left:259.302400pt;}
.x7{left:277.992133pt;}
.x6{left:304.304133pt;}
.x10{left:355.498533pt;}
.xe{left:366.464133pt;}
.x11{left:374.396133pt;}
.x16{left:379.722400pt;}
.x5{left:443.153467pt;}
.x4{left:473.793867pt;}
.x8{left:520.212133pt;}
.x14{left:541.232000pt;}
.xd{left:545.952133pt;}
.xc{left:562.556267pt;}
.x13{left:631.627067pt;}
}




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