
    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_2cb11b2800faa5c217047935.woff')format("woff");}.ff1{font-family:ff1;line-height:1.104000;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_af45de5e3f29373abb079952.woff')format("woff");}.ff2{font-family:ff2;line-height:0.716000;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_406011bf9290fd3aa7d93fdc.woff')format("woff");}.ff3{font-family:ff3;line-height:1.104000;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_bc1957253db45840a2a65b45.woff')format("woff");}.ff4{font-family:ff4;line-height:1.159000;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_572b989d9954b11b12d58000.woff')format("woff");}.ff5{font-family:ff5;line-height:1.020000;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_a25280d2e345e41763683db5.woff')format("woff");}.ff6{font-family:ff6;line-height:0.876953;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_f86baf063b167a5e2f128e4f.woff')format("woff");}.ff7{font-family:ff7;line-height:1.087402;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_c0d58130af47bdaa491fd4ce.woff')format("woff");}.ff8{font-family:ff8;line-height:0.919434;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_56c96690733103d6a0dfd69b.woff')format("woff");}.ff9{font-family:ff9;line-height:0.682129;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_44ce8be96f661415fc9e1df2.woff')format("woff");}.ffa{font-family:ffa;line-height:0.953000;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_fdc4ca9957885a04e634859e.woff')format("woff");}.ffb{font-family:ffb;line-height:0.963000;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_d89cf2f2e7b12142e3d716a0.woff')format("woff");}.ffc{font-family:ffc;line-height:0.935547;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_fe2fdd82eaf7bc76bacc4e46.woff')format("woff");}.ffd{font-family:ffd;line-height:0.926270;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_2ab19f0688d6d80d9c61fac5.woff')format("woff");}.ffe{font-family:ffe;line-height:0.689453;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_c94559226ecd1493254c2c2c.woff')format("woff");}.fff{font-family:fff;line-height:0.919434;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_6d32e2eb672435efdba29de2.woff')format("woff");}.ff10{font-family:ff10;line-height:0.707031;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v2{vertical-align:-15.840000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:19.800000px;}
.v4{vertical-align:46.453800px;}
.v3{vertical-align:59.371200px;}
.ls7{letter-spacing:-1.980000px;}
.ls6{letter-spacing:-1.320000px;}
.ls2{letter-spacing:-0.960000px;}
.lsa{letter-spacing:-0.792000px;}
.ls5{letter-spacing:-0.660000px;}
.ls3{letter-spacing:-0.480000px;}
.ls1{letter-spacing:0.000000px;}
.lsf{letter-spacing:0.013800px;}
.ls9{letter-spacing:0.014400px;}
.lsc{letter-spacing:0.022200px;}
.ls10{letter-spacing:0.024600px;}
.ls4{letter-spacing:8.422200px;}
.lsd{letter-spacing:12.342600px;}
.ls0{letter-spacing:23.455800px;}
.lse{letter-spacing:72.253200px;}
.ls8{letter-spacing:189.196200px;}
.lsb{letter-spacing:282.739200px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws4{word-spacing:-66.000000px;}
.ws38{word-spacing:-65.340000px;}
.ws39{word-spacing:-64.680000px;}
.ws6a{word-spacing:-64.020000px;}
.ws88{word-spacing:-55.195800px;}
.ws28{word-spacing:-55.176000px;}
.ws94{word-spacing:-55.110000px;}
.ws66{word-spacing:-55.044000px;}
.wsdc{word-spacing:-55.023000px;}
.ws9{word-spacing:-54.978000px;}
.ws2c{word-spacing:-54.912000px;}
.ws76{word-spacing:-54.846000px;}
.ws62{word-spacing:-54.780000px;}
.ws30{word-spacing:-54.714000px;}
.wsaf{word-spacing:-54.648000px;}
.ws7f{word-spacing:-54.582000px;}
.ws3f{word-spacing:-54.516000px;}
.wsac{word-spacing:-54.483000px;}
.ws54{word-spacing:-54.450000px;}
.ws92{word-spacing:-54.384000px;}
.ws8{word-spacing:-54.318000px;}
.ws42{word-spacing:-54.252000px;}
.wsa{word-spacing:-54.186000px;}
.wsb7{word-spacing:-54.120000px;}
.ws29{word-spacing:-54.054000px;}
.ws45{word-spacing:-53.922000px;}
.ws73{word-spacing:-53.856000px;}
.wsdf{word-spacing:-53.816400px;}
.ws3e{word-spacing:-53.724000px;}
.ws5b{word-spacing:-53.592000px;}
.ws53{word-spacing:-53.526000px;}
.ws5d{word-spacing:-53.394000px;}
.ws95{word-spacing:-53.328000px;}
.ws4f{word-spacing:-53.262000px;}
.wsb0{word-spacing:-53.130000px;}
.ws8e{word-spacing:-53.064000px;}
.ws70{word-spacing:-52.998000px;}
.ws43{word-spacing:-52.932000px;}
.ws77{word-spacing:-52.839600px;}
.ws31{word-spacing:-52.800000px;}
.ws4a{word-spacing:-52.734000px;}
.ws74{word-spacing:-52.602000px;}
.ws47{word-spacing:-52.536000px;}
.ws8a{word-spacing:-52.470000px;}
.ws78{word-spacing:-52.404000px;}
.wsa9{word-spacing:-52.338000px;}
.wsca{word-spacing:-52.206000px;}
.ws6b{word-spacing:-52.140000px;}
.ws7c{word-spacing:-52.074000px;}
.ws2a{word-spacing:-52.008000px;}
.ws4e{word-spacing:-51.942000px;}
.ws8d{word-spacing:-51.810000px;}
.ws56{word-spacing:-51.744000px;}
.ws3a{word-spacing:-51.612000px;}
.ws8c{word-spacing:-51.579000px;}
.wsc2{word-spacing:-51.480000px;}
.ws9d{word-spacing:-51.414000px;}
.ws4c{word-spacing:-51.348000px;}
.ws6{word-spacing:-51.282000px;}
.wsb{word-spacing:-51.150000px;}
.ws2b{word-spacing:-51.084000px;}
.wsc6{word-spacing:-50.886000px;}
.ws27{word-spacing:-50.820000px;}
.wscb{word-spacing:-50.754000px;}
.ws35{word-spacing:-50.688000px;}
.ws72{word-spacing:-50.622000px;}
.wsdd{word-spacing:-50.596200px;}
.ws87{word-spacing:-50.556000px;}
.wsae{word-spacing:-50.490000px;}
.ws9e{word-spacing:-50.424000px;}
.wsc5{word-spacing:-50.358000px;}
.ws3b{word-spacing:-50.292000px;}
.ws4b{word-spacing:-50.160000px;}
.wsc1{word-spacing:-50.094000px;}
.ws7d{word-spacing:-49.962000px;}
.ws71{word-spacing:-49.830000px;}
.ws93{word-spacing:-49.698000px;}
.wsde{word-spacing:-49.566000px;}
.wse1{word-spacing:-49.500000px;}
.wsb1{word-spacing:-49.170000px;}
.ws60{word-spacing:-49.104000px;}
.ws7a{word-spacing:-48.906000px;}
.ws57{word-spacing:-48.693000px;}
.ws33{word-spacing:-48.642000px;}
.ws49{word-spacing:-48.576000px;}
.wsc3{word-spacing:-48.378000px;}
.ws55{word-spacing:-48.180000px;}
.ws52{word-spacing:-48.114000px;}
.ws50{word-spacing:-47.982000px;}
.wsa8{word-spacing:-47.916000px;}
.wsdb{word-spacing:-47.850000px;}
.ws6d{word-spacing:-47.784000px;}
.ws7e{word-spacing:-47.718000px;}
.ws2{word-spacing:-47.520000px;}
.ws9c{word-spacing:-47.388000px;}
.wsc{word-spacing:-47.190000px;}
.wsb2{word-spacing:-47.124000px;}
.ws5e{word-spacing:-47.058000px;}
.wsab{word-spacing:-46.992000px;}
.ws9f{word-spacing:-46.860000px;}
.ws51{word-spacing:-46.728000px;}
.ws44{word-spacing:-46.662000px;}
.ws34{word-spacing:-46.596000px;}
.wscd{word-spacing:-46.332000px;}
.ws6c{word-spacing:-46.266000px;}
.wsc4{word-spacing:-46.200000px;}
.wsa0{word-spacing:-45.606000px;}
.ws61{word-spacing:-45.540000px;}
.wsc9{word-spacing:-45.427800px;}
.ws79{word-spacing:-45.408000px;}
.ws9b{word-spacing:-45.210000px;}
.ws8f{word-spacing:-45.144000px;}
.wsa7{word-spacing:-44.880000px;}
.ws37{word-spacing:-44.748000px;}
.ws40{word-spacing:-44.616000px;}
.ws96{word-spacing:-44.550000px;}
.ws69{word-spacing:-44.220000px;}
.ws2d{word-spacing:-44.088000px;}
.ws32{word-spacing:-44.055000px;}
.ws8b{word-spacing:-43.824000px;}
.ws63{word-spacing:-43.758000px;}
.wscc{word-spacing:-43.626000px;}
.ws90{word-spacing:-43.428000px;}
.ws2f{word-spacing:-43.230000px;}
.ws5{word-spacing:-42.900000px;}
.ws41{word-spacing:-42.834000px;}
.ws48{word-spacing:-42.570000px;}
.wsc0{word-spacing:-42.306000px;}
.ws99{word-spacing:-42.240000px;}
.ws9a{word-spacing:-42.207000px;}
.ws6e{word-spacing:-41.910000px;}
.ws59{word-spacing:-41.844000px;}
.wsb9{word-spacing:-41.382000px;}
.wsad{word-spacing:-41.250000px;}
.ws85{word-spacing:-41.052000px;}
.ws4d{word-spacing:-40.986000px;}
.ws7b{word-spacing:-40.920000px;}
.wsda{word-spacing:-40.854000px;}
.wsa1{word-spacing:-40.062000px;}
.ws1{word-spacing:-39.960000px;}
.wsaa{word-spacing:-39.930000px;}
.ws75{word-spacing:-39.732000px;}
.wsd9{word-spacing:-39.723600px;}
.ws7{word-spacing:-39.468000px;}
.ws6f{word-spacing:-39.204000px;}
.ws91{word-spacing:-38.544000px;}
.ws3d{word-spacing:-38.016000px;}
.wsc7{word-spacing:-37.884000px;}
.wsd2{word-spacing:-37.818000px;}
.wsc8{word-spacing:-36.498000px;}
.wsa6{word-spacing:-36.432000px;}
.ws5a{word-spacing:-34.584000px;}
.wsd1{word-spacing:-33.528000px;}
.wsd0{word-spacing:-33.132000px;}
.ws5f{word-spacing:-32.670000px;}
.wsd4{word-spacing:-32.604000px;}
.wscf{word-spacing:-31.746000px;}
.ws89{word-spacing:-31.350000px;}
.wsb8{word-spacing:-30.558000px;}
.wsd3{word-spacing:-28.567200px;}
.wsce{word-spacing:-28.566600px;}
.ws84{word-spacing:-24.354000px;}
.ws67{word-spacing:-20.856000px;}
.ws2e{word-spacing:-20.130000px;}
.ws86{word-spacing:-18.942000px;}
.wsba{word-spacing:-18.810000px;}
.ws3{word-spacing:-14.520000px;}
.ws3c{word-spacing:-13.860000px;}
.ws83{word-spacing:-13.728000px;}
.ws5c{word-spacing:-13.200000px;}
.wse0{word-spacing:-9.834000px;}
.ws36{word-spacing:-6.600000px;}
.ws0{word-spacing:-6.124800px;}
.wsf{word-spacing:-2.544000px;}
.ws15{word-spacing:-2.064000px;}
.ws14{word-spacing:-1.680000px;}
.wseb{word-spacing:-0.792000px;}
.ws26{word-spacing:-0.480000px;}
.ws25{word-spacing:-0.288000px;}
.ws17{word-spacing:-0.240000px;}
.wse{word-spacing:-0.144000px;}
.ws80{word-spacing:-0.060000px;}
.ws13{word-spacing:-0.048000px;}
.wsd{word-spacing:0.000000px;}
.ws18{word-spacing:0.096000px;}
.wsed{word-spacing:0.198000px;}
.ws24{word-spacing:0.480000px;}
.wsea{word-spacing:0.594000px;}
.ws46{word-spacing:0.660000px;}
.wsd5{word-spacing:0.858000px;}
.ws64{word-spacing:1.320000px;}
.ws19{word-spacing:1.488000px;}
.ws1f{word-spacing:1.680000px;}
.wse7{word-spacing:1.914000px;}
.ws58{word-spacing:2.178000px;}
.wsf5{word-spacing:2.310000px;}
.wse8{word-spacing:2.442000px;}
.wsef{word-spacing:3.168000px;}
.ws1b{word-spacing:3.648000px;}
.ws12{word-spacing:4.464000px;}
.ws21{word-spacing:4.704000px;}
.ws65{word-spacing:5.148000px;}
.ws16{word-spacing:6.096000px;}
.wsd8{word-spacing:6.270000px;}
.ws1d{word-spacing:6.336000px;}
.wsd6{word-spacing:6.798000px;}
.ws10{word-spacing:7.488000px;}
.ws22{word-spacing:8.112000px;}
.ws1c{word-spacing:8.736000px;}
.wse3{word-spacing:9.834000px;}
.wsee{word-spacing:10.296000px;}
.wsa2{word-spacing:10.428000px;}
.wse4{word-spacing:10.560000px;}
.wsec{word-spacing:10.758000px;}
.ws97{word-spacing:10.824000px;}
.ws23{word-spacing:10.896000px;}
.wsa4{word-spacing:11.550000px;}
.ws20{word-spacing:11.616000px;}
.wse9{word-spacing:11.946000px;}
.wsf2{word-spacing:12.210000px;}
.wsd7{word-spacing:12.342000px;}
.wsf4{word-spacing:12.936000px;}
.ws98{word-spacing:13.134000px;}
.ws11{word-spacing:14.832000px;}
.wsf1{word-spacing:15.378000px;}
.wsf3{word-spacing:15.906000px;}
.ws1a{word-spacing:17.088000px;}
.wse6{word-spacing:17.622000px;}
.ws1e{word-spacing:19.344000px;}
.wsa5{word-spacing:20.460000px;}
.wsa3{word-spacing:22.506000px;}
.wsf0{word-spacing:24.882000px;}
.ws68{word-spacing:41.514000px;}
.wse5{word-spacing:45.342000px;}
.wse2{word-spacing:72.270000px;}
.ws81{word-spacing:86.608200px;}
.ws82{word-spacing:86.631600px;}
.wsb4{word-spacing:180.175200px;}
.wsbe{word-spacing:258.211200px;}
.wsb6{word-spacing:315.822600px;}
.wsbf{word-spacing:400.098000px;}
.wsbb{word-spacing:408.735000px;}
.wsb5{word-spacing:454.627200px;}
.wsb3{word-spacing:531.774600px;}
.wsbd{word-spacing:550.393200px;}
.wsbc{word-spacing:606.490800px;}
._f{margin-left:-8.118000px;}
._a{margin-left:-6.402000px;}
._1d{margin-left:-4.854000px;}
._1{margin-left:-3.552000px;}
._6{margin-left:-2.480400px;}
._0{margin-left:-1.300800px;}
._3{width:1.017600px;}
._7{width:2.178000px;}
._b{width:3.206400px;}
._9{width:4.224000px;}
._5{width:5.808000px;}
._2{width:7.680000px;}
._8{width:8.712000px;}
._4{width:10.296000px;}
._c{width:11.352000px;}
._17{width:12.691200px;}
._11{width:16.163400px;}
._10{width:17.307000px;}
._19{width:19.186200px;}
._1a{width:20.427000px;}
._18{width:22.538400px;}
._d{width:23.881800px;}
._21{width:26.438400px;}
._e{width:31.155000px;}
._20{width:32.531400px;}
._16{width:34.649400px;}
._1f{width:37.432800px;}
._22{width:45.342000px;}
._12{width:170.899800px;}
._14{width:189.177000px;}
._15{width:198.837600px;}
._13{width:201.406200px;}
._1b{width:264.400800px;}
._1e{width:282.092400px;}
._1c{width:283.207800px;}
.fc0{color:rgb(35,31,32);}
.fs4{font-size:27.840000px;}
.fs3{font-size:34.800000px;}
.fs0{font-size:48.000000px;}
.fs5{font-size:54.000000px;}
.fs1{font-size:60.000000px;}
.fs2{font-size:66.000000px;}
.fs6{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.y2{bottom:79.023450px;}
.y74{bottom:127.941450px;}
.ya4{bottom:130.191450px;}
.y143{bottom:130.625550px;}
.y10f{bottom:131.307600px;}
.y1f{bottom:133.403250px;}
.yc9{bottom:139.587000px;}
.yeb{bottom:140.772150px;}
.ye1{bottom:141.087000px;}
.y13a{bottom:144.807600px;}
.y73{bottom:147.441450px;}
.y1e{bottom:147.803250px;}
.y142{bottom:150.425550px;}
.ya3{bottom:150.441450px;}
.y10e{bottom:150.807600px;}
.yc8{bottom:159.087000px;}
.ye0{bottom:161.337000px;}
.y1d{bottom:162.203250px;}
.yea{bottom:163.999050px;}
.y139{bottom:165.057600px;}
.y72{bottom:166.941450px;}
.y141{bottom:170.225550px;}
.y10d{bottom:170.307600px;}
.ya2{bottom:170.691450px;}
.y1c{bottom:176.603250px;}
.yc7{bottom:178.587000px;}
.ydf{bottom:181.587000px;}
.y138{bottom:185.307600px;}
.y71{bottom:186.441450px;}
.y10c{bottom:189.807600px;}
.y140{bottom:190.025550px;}
.ya1{bottom:190.941450px;}
.ye9{bottom:191.795700px;}
.y1b{bottom:194.963250px;}
.yc6{bottom:198.087000px;}
.yde{bottom:201.837000px;}
.y137{bottom:205.557600px;}
.y70{bottom:205.941450px;}
.y10b{bottom:209.307600px;}
.y13f{bottom:209.825550px;}
.ya0{bottom:211.191450px;}
.ye8{bottom:215.022750px;}
.yc5{bottom:217.587000px;}
.ydd{bottom:222.087000px;}
.y6f{bottom:225.441450px;}
.y136{bottom:225.807600px;}
.y10a{bottom:228.807600px;}
.y13e{bottom:229.625550px;}
.y9f{bottom:231.441450px;}
.yc4{bottom:237.087000px;}
.ydc{bottom:242.337000px;}
.ye7{bottom:242.819400px;}
.y6e{bottom:244.941450px;}
.y135{bottom:246.057600px;}
.y109{bottom:248.307600px;}
.y13d{bottom:249.425550px;}
.y9e{bottom:251.691450px;}
.yc3{bottom:256.587000px;}
.ydb{bottom:262.587000px;}
.y6d{bottom:264.441450px;}
.ye6{bottom:266.046300px;}
.y134{bottom:266.307600px;}
.y108{bottom:267.807600px;}
.y9d{bottom:271.941450px;}
.yc2{bottom:276.087000px;}
.y13b{bottom:281.691300px;}
.yda{bottom:282.837000px;}
.y6c{bottom:283.941450px;}
.y133{bottom:286.557600px;}
.y107{bottom:287.307600px;}
.y9c{bottom:292.191450px;}
.yc1{bottom:295.587000px;}
.ye5{bottom:297.735750px;}
.y3e{bottom:299.951250px;}
.yd9{bottom:303.087000px;}
.y6b{bottom:303.441450px;}
.y13c{bottom:306.807450px;}
.y132{bottom:306.807600px;}
.y2f{bottom:311.201250px;}
.y9b{bottom:312.441450px;}
.yc0{bottom:315.087000px;}
.y106{bottom:315.311400px;}
.y3d{bottom:320.201250px;}
.ye4{bottom:320.962800px;}
.y6a{bottom:322.941450px;}
.yd8{bottom:323.337000px;}
.y16b{bottom:330.441450px;}
.y2e{bottom:330.701250px;}
.y9a{bottom:332.691450px;}
.ybf{bottom:334.587000px;}
.y131{bottom:335.561400px;}
.y3c{bottom:340.451250px;}
.y69{bottom:342.441450px;}
.yd7{bottom:343.587000px;}
.y2d{bottom:350.201250px;}
.y16a{bottom:350.241450px;}
.y99{bottom:352.941450px;}
.ybe{bottom:354.087000px;}
.y105{bottom:354.311400px;}
.ye3{bottom:360.346950px;}
.y3b{bottom:360.701250px;}
.y68{bottom:361.941450px;}
.yd6{bottom:363.837000px;}
.y2c{bottom:369.701250px;}
.y169{bottom:370.041450px;}
.y98{bottom:373.191450px;}
.ybd{bottom:373.587000px;}
.y104{bottom:373.811400px;}
.y130{bottom:376.061400px;}
.ye2{bottom:378.346950px;}
.y3a{bottom:380.951250px;}
.y67{bottom:381.441450px;}
.yd5{bottom:384.087000px;}
.y2b{bottom:389.201250px;}
.y168{bottom:389.841450px;}
.ybc{bottom:393.087000px;}
.y103{bottom:393.311400px;}
.y97{bottom:393.441450px;}
.y12f{bottom:396.311400px;}
.y66{bottom:400.941450px;}
.y39{bottom:401.201250px;}
.yd4{bottom:404.337000px;}
.y2a{bottom:408.701250px;}
.y167{bottom:409.641450px;}
.ybb{bottom:412.587000px;}
.y102{bottom:412.811400px;}
.y96{bottom:413.691450px;}
.y12e{bottom:416.561400px;}
.y65{bottom:420.441450px;}
.y38{bottom:421.451250px;}
.yd3{bottom:424.587000px;}
.y29{bottom:428.201250px;}
.y166{bottom:429.441450px;}
.yba{bottom:432.087000px;}
.y101{bottom:432.311400px;}
.y95{bottom:433.941450px;}
.y12d{bottom:436.811400px;}
.y64{bottom:439.941450px;}
.y37{bottom:441.701250px;}
.yd2{bottom:444.837000px;}
.y28{bottom:447.701250px;}
.y165{bottom:449.241450px;}
.yb9{bottom:451.587000px;}
.y100{bottom:451.811400px;}
.y94{bottom:454.191450px;}
.y12c{bottom:457.061400px;}
.y63{bottom:459.441450px;}
.y36{bottom:461.951250px;}
.yd1{bottom:465.087000px;}
.y27{bottom:467.201250px;}
.y164{bottom:469.041450px;}
.yb8{bottom:471.087000px;}
.yff{bottom:471.311400px;}
.y93{bottom:474.441450px;}
.y12b{bottom:477.311400px;}
.y62{bottom:478.941450px;}
.y35{bottom:482.201250px;}
.yd0{bottom:485.337000px;}
.y26{bottom:486.701250px;}
.y163{bottom:488.841450px;}
.yb7{bottom:490.587000px;}
.yfe{bottom:490.811400px;}
.y92{bottom:494.691450px;}
.y12a{bottom:497.561400px;}
.y61{bottom:498.441450px;}
.y34{bottom:502.451250px;}
.ycf{bottom:505.587000px;}
.y25{bottom:506.201250px;}
.y162{bottom:508.641450px;}
.yb6{bottom:510.087000px;}
.yfd{bottom:510.311400px;}
.y91{bottom:514.941450px;}
.y129{bottom:517.811400px;}
.y60{bottom:517.941450px;}
.y33{bottom:522.701250px;}
.y24{bottom:525.701250px;}
.yce{bottom:525.837000px;}
.y161{bottom:528.441450px;}
.yb5{bottom:529.587000px;}
.yfc{bottom:529.811400px;}
.y90{bottom:535.191450px;}
.y5f{bottom:537.441450px;}
.y128{bottom:538.061400px;}
.y32{bottom:542.951250px;}
.y23{bottom:545.201250px;}
.ycd{bottom:546.087000px;}
.y160{bottom:548.241450px;}
.yb4{bottom:549.087000px;}
.yfb{bottom:549.311400px;}
.y8f{bottom:555.441450px;}
.y5e{bottom:556.941450px;}
.y127{bottom:558.311400px;}
.y31{bottom:563.201250px;}
.y22{bottom:564.701250px;}
.ycc{bottom:566.337000px;}
.y15f{bottom:568.041450px;}
.yb3{bottom:568.587000px;}
.yfa{bottom:568.811400px;}
.y8e{bottom:575.691450px;}
.y5d{bottom:576.441450px;}
.y126{bottom:578.561400px;}
.y30{bottom:583.451250px;}
.y21{bottom:584.201250px;}
.ycb{bottom:586.587000px;}
.y15e{bottom:587.841450px;}
.yb2{bottom:588.087000px;}
.yf9{bottom:588.311400px;}
.y5c{bottom:595.941450px;}
.y125{bottom:598.811400px;}
.yca{bottom:606.837000px;}
.yb1{bottom:607.587000px;}
.y15d{bottom:607.641450px;}
.yf8{bottom:607.811400px;}
.y20{bottom:612.205200px;}
.y5b{bottom:615.441450px;}
.y8d{bottom:616.191450px;}
.y124{bottom:619.061400px;}
.yb0{bottom:627.087000px;}
.yf7{bottom:627.311400px;}
.y15c{bottom:627.441450px;}
.y5a{bottom:634.941450px;}
.y8c{bottom:636.441450px;}
.y123{bottom:639.311400px;}
.yf6{bottom:646.811400px;}
.y15b{bottom:647.241450px;}
.y59{bottom:654.441450px;}
.y8b{bottom:656.691450px;}
.y122{bottom:659.561400px;}
.yf5{bottom:666.311400px;}
.y15a{bottom:667.041450px;}
.yaf{bottom:668.001600px;}
.y58{bottom:673.941450px;}
.y15{bottom:676.752000px;}
.y8a{bottom:676.941450px;}
.yae{bottom:677.210850px;}
.y121{bottom:679.811400px;}
.yf4{bottom:685.811400px;}
.y159{bottom:686.841450px;}
.y14{bottom:691.752000px;}
.y57{bottom:693.441450px;}
.y89{bottom:697.191450px;}
.y120{bottom:700.061400px;}
.yf3{bottom:705.311400px;}
.y158{bottom:706.641450px;}
.y1a{bottom:706.752000px;}
.y56{bottom:712.941450px;}
.y13{bottom:715.255950px;}
.y88{bottom:717.441450px;}
.yad{bottom:719.025150px;}
.y11f{bottom:720.311400px;}
.yf2{bottom:724.811400px;}
.y157{bottom:726.441450px;}
.yac{bottom:728.234400px;}
.y12{bottom:730.255950px;}
.y55{bottom:732.441450px;}
.y87{bottom:737.691450px;}
.y11e{bottom:740.561400px;}
.yf1{bottom:744.311400px;}
.y11{bottom:745.255950px;}
.y156{bottom:746.241450px;}
.y54{bottom:751.941450px;}
.y86{bottom:757.941450px;}
.y10{bottom:760.255950px;}
.y11d{bottom:760.811400px;}
.yf0{bottom:763.811400px;}
.y155{bottom:766.041450px;}
.yab{bottom:770.048700px;}
.y53{bottom:771.441450px;}
.yf{bottom:775.255950px;}
.y85{bottom:778.191450px;}
.ya9{bottom:779.258100px;}
.y11c{bottom:781.061400px;}
.yef{bottom:783.311400px;}
.y154{bottom:785.841450px;}
.ye{bottom:790.255950px;}
.y52{bottom:790.941450px;}
.yaa{bottom:794.100750px;}
.y84{bottom:798.441450px;}
.y11b{bottom:801.311400px;}
.yee{bottom:802.811400px;}
.yd{bottom:805.255950px;}
.y153{bottom:805.641450px;}
.y51{bottom:810.441450px;}
.y83{bottom:818.691450px;}
.ya8{bottom:819.155700px;}
.yc{bottom:820.255950px;}
.y11a{bottom:821.561400px;}
.yed{bottom:822.311400px;}
.y152{bottom:825.441450px;}
.y50{bottom:829.941450px;}
.yb{bottom:835.255950px;}
.ya7{bottom:837.155700px;}
.y82{bottom:838.941450px;}
.yec{bottom:841.811400px;}
.y151{bottom:845.241450px;}
.y4f{bottom:849.441450px;}
.ya{bottom:850.255950px;}
.y81{bottom:859.191450px;}
.y150{bottom:865.041450px;}
.y9{bottom:865.255950px;}
.y4e{bottom:868.941450px;}
.ya6{bottom:875.212950px;}
.y80{bottom:879.441450px;}
.y8{bottom:880.255950px;}
.y14f{bottom:884.841450px;}
.y119{bottom:886.888800px;}
.y4d{bottom:888.441450px;}
.ya5{bottom:893.212950px;}
.y7{bottom:895.255950px;}
.y7f{bottom:899.691450px;}
.y14e{bottom:904.641300px;}
.y4c{bottom:907.941450px;}
.y118{bottom:910.115700px;}
.y7e{bottom:919.941450px;}
.y14d{bottom:924.441450px;}
.y4b{bottom:927.441450px;}
.y117{bottom:937.912350px;}
.y7d{bottom:940.191450px;}
.y14c{bottom:944.241450px;}
.y4a{bottom:946.941450px;}
.y7c{bottom:960.441450px;}
.y116{bottom:961.139250px;}
.y14b{bottom:964.041450px;}
.y6{bottom:965.765100px;}
.y19{bottom:965.765250px;}
.y49{bottom:966.441450px;}
.y7b{bottom:980.691450px;}
.y14a{bottom:983.841300px;}
.y48{bottom:985.941450px;}
.y115{bottom:988.935900px;}
.y7a{bottom:1000.941450px;}
.y149{bottom:1003.641300px;}
.y47{bottom:1005.441450px;}
.y114{bottom:1012.162950px;}
.y79{bottom:1021.191450px;}
.y18{bottom:1023.365250px;}
.y148{bottom:1023.441450px;}
.y46{bottom:1024.941450px;}
.y113{bottom:1039.959600px;}
.y78{bottom:1041.441450px;}
.y5{bottom:1043.165100px;}
.y17{bottom:1043.165250px;}
.y147{bottom:1043.241450px;}
.y45{bottom:1044.441450px;}
.y77{bottom:1061.691450px;}
.y4{bottom:1062.965100px;}
.y16{bottom:1062.965400px;}
.y146{bottom:1063.041450px;}
.y112{bottom:1063.186500px;}
.y44{bottom:1063.941450px;}
.y76{bottom:1081.941450px;}
.y145{bottom:1082.841300px;}
.y43{bottom:1083.441450px;}
.y111{bottom:1090.983150px;}
.y75{bottom:1102.191450px;}
.y144{bottom:1102.641300px;}
.y42{bottom:1102.941450px;}
.y110{bottom:1114.210200px;}
.y3{bottom:1120.755750px;}
.y41{bottom:1122.441450px;}
.y40{bottom:1167.058200px;}
.y1{bottom:1174.874550px;}
.y3f{bottom:1181.458200px;}
.h8{height:25.878750px;}
.ha{height:33.656250px;}
.he{height:35.520000px;}
.h7{height:36.336000px;}
.hd{height:39.960000px;}
.h2{height:40.416000px;}
.h17{height:40.458984px;}
.h9{height:41.718750px;}
.h12{height:41.953125px;}
.h11{height:42.070312px;}
.h3{height:42.480000px;}
.hc{height:44.504883px;}
.h10{height:46.277344px;}
.h18{height:46.728516px;}
.hf{height:47.308594px;}
.h4{height:50.520000px;}
.h6{height:53.640000px;}
.hb{height:57.363281px;}
.h5{height:59.004000px;}
.h15{height:103.817081px;}
.h16{height:103.817681px;}
.h14{height:106.679194px;}
.h13{height:106.679794px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x3{left:106.299150px;}
.x2c{left:113.049150px;}
.xe{left:114.803100px;}
.x25{left:116.435250px;}
.x7{left:118.726950px;}
.x4{left:122.754900px;}
.x2d{left:131.811000px;}
.x6{left:139.986900px;}
.x26{left:145.733250px;}
.xf{left:148.818900px;}
.x20{left:155.314500px;}
.x16{left:159.090600px;}
.x17{left:161.382000px;}
.x14{left:164.287050px;}
.x15{left:197.651700px;}
.x5{left:216.411600px;}
.x19{left:277.258950px;}
.x18{left:282.665700px;}
.x27{left:288.348450px;}
.x23{left:315.735750px;}
.x1{left:323.616900px;}
.x24{left:350.471550px;}
.x1a{left:418.825200px;}
.x1b{left:429.339450px;}
.x2{left:434.194350px;}
.x12{left:436.051950px;}
.x13{left:438.131850px;}
.x29{left:447.766350px;}
.x28{left:451.677750px;}
.x10{left:457.086600px;}
.xc{left:469.795650px;}
.x9{left:478.772700px;}
.x2e{left:482.598450px;}
.xb{left:491.055450px;}
.x11{left:499.606350px;}
.x8{left:520.475250px;}
.x1c{left:528.397800px;}
.x1d{left:529.967400px;}
.xa{left:567.199050px;}
.xd{left:572.267850px;}
.x2a{left:632.635050px;}
.x2b{left:634.488150px;}
.x21{left:673.706850px;}
.x1e{left:682.528950px;}
.x1f{left:684.227400px;}
.x22{left:687.177600px;}
@media print{
.v2{vertical-align:-14.080000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:17.600000pt;}
.v4{vertical-align:41.292267pt;}
.v3{vertical-align:52.774400pt;}
.ls7{letter-spacing:-1.760000pt;}
.ls6{letter-spacing:-1.173333pt;}
.ls2{letter-spacing:-0.853333pt;}
.lsa{letter-spacing:-0.704000pt;}
.ls5{letter-spacing:-0.586667pt;}
.ls3{letter-spacing:-0.426667pt;}
.ls1{letter-spacing:0.000000pt;}
.lsf{letter-spacing:0.012267pt;}
.ls9{letter-spacing:0.012800pt;}
.lsc{letter-spacing:0.019733pt;}
.ls10{letter-spacing:0.021867pt;}
.ls4{letter-spacing:7.486400pt;}
.lsd{letter-spacing:10.971200pt;}
.ls0{letter-spacing:20.849600pt;}
.lse{letter-spacing:64.225067pt;}
.ls8{letter-spacing:168.174400pt;}
.lsb{letter-spacing:251.323733pt;}
.ws4{word-spacing:-58.666667pt;}
.ws38{word-spacing:-58.080000pt;}
.ws39{word-spacing:-57.493333pt;}
.ws6a{word-spacing:-56.906667pt;}
.ws88{word-spacing:-49.062933pt;}
.ws28{word-spacing:-49.045333pt;}
.ws94{word-spacing:-48.986667pt;}
.ws66{word-spacing:-48.928000pt;}
.wsdc{word-spacing:-48.909333pt;}
.ws9{word-spacing:-48.869333pt;}
.ws2c{word-spacing:-48.810667pt;}
.ws76{word-spacing:-48.752000pt;}
.ws62{word-spacing:-48.693333pt;}
.ws30{word-spacing:-48.634667pt;}
.wsaf{word-spacing:-48.576000pt;}
.ws7f{word-spacing:-48.517333pt;}
.ws3f{word-spacing:-48.458667pt;}
.wsac{word-spacing:-48.429333pt;}
.ws54{word-spacing:-48.400000pt;}
.ws92{word-spacing:-48.341333pt;}
.ws8{word-spacing:-48.282667pt;}
.ws42{word-spacing:-48.224000pt;}
.wsa{word-spacing:-48.165333pt;}
.wsb7{word-spacing:-48.106667pt;}
.ws29{word-spacing:-48.048000pt;}
.ws45{word-spacing:-47.930667pt;}
.ws73{word-spacing:-47.872000pt;}
.wsdf{word-spacing:-47.836800pt;}
.ws3e{word-spacing:-47.754667pt;}
.ws5b{word-spacing:-47.637333pt;}
.ws53{word-spacing:-47.578667pt;}
.ws5d{word-spacing:-47.461333pt;}
.ws95{word-spacing:-47.402667pt;}
.ws4f{word-spacing:-47.344000pt;}
.wsb0{word-spacing:-47.226667pt;}
.ws8e{word-spacing:-47.168000pt;}
.ws70{word-spacing:-47.109333pt;}
.ws43{word-spacing:-47.050667pt;}
.ws77{word-spacing:-46.968533pt;}
.ws31{word-spacing:-46.933333pt;}
.ws4a{word-spacing:-46.874667pt;}
.ws74{word-spacing:-46.757333pt;}
.ws47{word-spacing:-46.698667pt;}
.ws8a{word-spacing:-46.640000pt;}
.ws78{word-spacing:-46.581333pt;}
.wsa9{word-spacing:-46.522667pt;}
.wsca{word-spacing:-46.405333pt;}
.ws6b{word-spacing:-46.346667pt;}
.ws7c{word-spacing:-46.288000pt;}
.ws2a{word-spacing:-46.229333pt;}
.ws4e{word-spacing:-46.170667pt;}
.ws8d{word-spacing:-46.053333pt;}
.ws56{word-spacing:-45.994667pt;}
.ws3a{word-spacing:-45.877333pt;}
.ws8c{word-spacing:-45.848000pt;}
.wsc2{word-spacing:-45.760000pt;}
.ws9d{word-spacing:-45.701333pt;}
.ws4c{word-spacing:-45.642667pt;}
.ws6{word-spacing:-45.584000pt;}
.wsb{word-spacing:-45.466667pt;}
.ws2b{word-spacing:-45.408000pt;}
.wsc6{word-spacing:-45.232000pt;}
.ws27{word-spacing:-45.173333pt;}
.wscb{word-spacing:-45.114667pt;}
.ws35{word-spacing:-45.056000pt;}
.ws72{word-spacing:-44.997333pt;}
.wsdd{word-spacing:-44.974400pt;}
.ws87{word-spacing:-44.938667pt;}
.wsae{word-spacing:-44.880000pt;}
.ws9e{word-spacing:-44.821333pt;}
.wsc5{word-spacing:-44.762667pt;}
.ws3b{word-spacing:-44.704000pt;}
.ws4b{word-spacing:-44.586667pt;}
.wsc1{word-spacing:-44.528000pt;}
.ws7d{word-spacing:-44.410667pt;}
.ws71{word-spacing:-44.293333pt;}
.ws93{word-spacing:-44.176000pt;}
.wsde{word-spacing:-44.058667pt;}
.wse1{word-spacing:-44.000000pt;}
.wsb1{word-spacing:-43.706667pt;}
.ws60{word-spacing:-43.648000pt;}
.ws7a{word-spacing:-43.472000pt;}
.ws57{word-spacing:-43.282667pt;}
.ws33{word-spacing:-43.237333pt;}
.ws49{word-spacing:-43.178667pt;}
.wsc3{word-spacing:-43.002667pt;}
.ws55{word-spacing:-42.826667pt;}
.ws52{word-spacing:-42.768000pt;}
.ws50{word-spacing:-42.650667pt;}
.wsa8{word-spacing:-42.592000pt;}
.wsdb{word-spacing:-42.533333pt;}
.ws6d{word-spacing:-42.474667pt;}
.ws7e{word-spacing:-42.416000pt;}
.ws2{word-spacing:-42.240000pt;}
.ws9c{word-spacing:-42.122667pt;}
.wsc{word-spacing:-41.946667pt;}
.wsb2{word-spacing:-41.888000pt;}
.ws5e{word-spacing:-41.829333pt;}
.wsab{word-spacing:-41.770667pt;}
.ws9f{word-spacing:-41.653333pt;}
.ws51{word-spacing:-41.536000pt;}
.ws44{word-spacing:-41.477333pt;}
.ws34{word-spacing:-41.418667pt;}
.wscd{word-spacing:-41.184000pt;}
.ws6c{word-spacing:-41.125333pt;}
.wsc4{word-spacing:-41.066667pt;}
.wsa0{word-spacing:-40.538667pt;}
.ws61{word-spacing:-40.480000pt;}
.wsc9{word-spacing:-40.380267pt;}
.ws79{word-spacing:-40.362667pt;}
.ws9b{word-spacing:-40.186667pt;}
.ws8f{word-spacing:-40.128000pt;}
.wsa7{word-spacing:-39.893333pt;}
.ws37{word-spacing:-39.776000pt;}
.ws40{word-spacing:-39.658667pt;}
.ws96{word-spacing:-39.600000pt;}
.ws69{word-spacing:-39.306667pt;}
.ws2d{word-spacing:-39.189333pt;}
.ws32{word-spacing:-39.160000pt;}
.ws8b{word-spacing:-38.954667pt;}
.ws63{word-spacing:-38.896000pt;}
.wscc{word-spacing:-38.778667pt;}
.ws90{word-spacing:-38.602667pt;}
.ws2f{word-spacing:-38.426667pt;}
.ws5{word-spacing:-38.133333pt;}
.ws41{word-spacing:-38.074667pt;}
.ws48{word-spacing:-37.840000pt;}
.wsc0{word-spacing:-37.605333pt;}
.ws99{word-spacing:-37.546667pt;}
.ws9a{word-spacing:-37.517333pt;}
.ws6e{word-spacing:-37.253333pt;}
.ws59{word-spacing:-37.194667pt;}
.wsb9{word-spacing:-36.784000pt;}
.wsad{word-spacing:-36.666667pt;}
.ws85{word-spacing:-36.490667pt;}
.ws4d{word-spacing:-36.432000pt;}
.ws7b{word-spacing:-36.373333pt;}
.wsda{word-spacing:-36.314667pt;}
.wsa1{word-spacing:-35.610667pt;}
.ws1{word-spacing:-35.520000pt;}
.wsaa{word-spacing:-35.493333pt;}
.ws75{word-spacing:-35.317333pt;}
.wsd9{word-spacing:-35.309867pt;}
.ws7{word-spacing:-35.082667pt;}
.ws6f{word-spacing:-34.848000pt;}
.ws91{word-spacing:-34.261333pt;}
.ws3d{word-spacing:-33.792000pt;}
.wsc7{word-spacing:-33.674667pt;}
.wsd2{word-spacing:-33.616000pt;}
.wsc8{word-spacing:-32.442667pt;}
.wsa6{word-spacing:-32.384000pt;}
.ws5a{word-spacing:-30.741333pt;}
.wsd1{word-spacing:-29.802667pt;}
.wsd0{word-spacing:-29.450667pt;}
.ws5f{word-spacing:-29.040000pt;}
.wsd4{word-spacing:-28.981333pt;}
.wscf{word-spacing:-28.218667pt;}
.ws89{word-spacing:-27.866667pt;}
.wsb8{word-spacing:-27.162667pt;}
.wsd3{word-spacing:-25.393067pt;}
.wsce{word-spacing:-25.392533pt;}
.ws84{word-spacing:-21.648000pt;}
.ws67{word-spacing:-18.538667pt;}
.ws2e{word-spacing:-17.893333pt;}
.ws86{word-spacing:-16.837333pt;}
.wsba{word-spacing:-16.720000pt;}
.ws3{word-spacing:-12.906667pt;}
.ws3c{word-spacing:-12.320000pt;}
.ws83{word-spacing:-12.202667pt;}
.ws5c{word-spacing:-11.733333pt;}
.wse0{word-spacing:-8.741333pt;}
.ws36{word-spacing:-5.866667pt;}
.ws0{word-spacing:-5.444267pt;}
.wsf{word-spacing:-2.261333pt;}
.ws15{word-spacing:-1.834667pt;}
.ws14{word-spacing:-1.493333pt;}
.wseb{word-spacing:-0.704000pt;}
.ws26{word-spacing:-0.426667pt;}
.ws25{word-spacing:-0.256000pt;}
.ws17{word-spacing:-0.213333pt;}
.wse{word-spacing:-0.128000pt;}
.ws80{word-spacing:-0.053333pt;}
.ws13{word-spacing:-0.042667pt;}
.wsd{word-spacing:0.000000pt;}
.ws18{word-spacing:0.085333pt;}
.wsed{word-spacing:0.176000pt;}
.ws24{word-spacing:0.426667pt;}
.wsea{word-spacing:0.528000pt;}
.ws46{word-spacing:0.586667pt;}
.wsd5{word-spacing:0.762667pt;}
.ws64{word-spacing:1.173333pt;}
.ws19{word-spacing:1.322667pt;}
.ws1f{word-spacing:1.493333pt;}
.wse7{word-spacing:1.701333pt;}
.ws58{word-spacing:1.936000pt;}
.wsf5{word-spacing:2.053333pt;}
.wse8{word-spacing:2.170667pt;}
.wsef{word-spacing:2.816000pt;}
.ws1b{word-spacing:3.242667pt;}
.ws12{word-spacing:3.968000pt;}
.ws21{word-spacing:4.181333pt;}
.ws65{word-spacing:4.576000pt;}
.ws16{word-spacing:5.418667pt;}
.wsd8{word-spacing:5.573333pt;}
.ws1d{word-spacing:5.632000pt;}
.wsd6{word-spacing:6.042667pt;}
.ws10{word-spacing:6.656000pt;}
.ws22{word-spacing:7.210667pt;}
.ws1c{word-spacing:7.765333pt;}
.wse3{word-spacing:8.741333pt;}
.wsee{word-spacing:9.152000pt;}
.wsa2{word-spacing:9.269333pt;}
.wse4{word-spacing:9.386667pt;}
.wsec{word-spacing:9.562667pt;}
.ws97{word-spacing:9.621333pt;}
.ws23{word-spacing:9.685333pt;}
.wsa4{word-spacing:10.266667pt;}
.ws20{word-spacing:10.325333pt;}
.wse9{word-spacing:10.618667pt;}
.wsf2{word-spacing:10.853333pt;}
.wsd7{word-spacing:10.970667pt;}
.wsf4{word-spacing:11.498667pt;}
.ws98{word-spacing:11.674667pt;}
.ws11{word-spacing:13.184000pt;}
.wsf1{word-spacing:13.669333pt;}
.wsf3{word-spacing:14.138667pt;}
.ws1a{word-spacing:15.189333pt;}
.wse6{word-spacing:15.664000pt;}
.ws1e{word-spacing:17.194667pt;}
.wsa5{word-spacing:18.186667pt;}
.wsa3{word-spacing:20.005333pt;}
.wsf0{word-spacing:22.117333pt;}
.ws68{word-spacing:36.901333pt;}
.wse5{word-spacing:40.304000pt;}
.wse2{word-spacing:64.240000pt;}
.ws81{word-spacing:76.985067pt;}
.ws82{word-spacing:77.005867pt;}
.wsb4{word-spacing:160.155733pt;}
.wsbe{word-spacing:229.521067pt;}
.wsb6{word-spacing:280.731200pt;}
.wsbf{word-spacing:355.642667pt;}
.wsbb{word-spacing:363.320000pt;}
.wsb5{word-spacing:404.113067pt;}
.wsb3{word-spacing:472.688533pt;}
.wsbd{word-spacing:489.238400pt;}
.wsbc{word-spacing:539.102933pt;}
._f{margin-left:-7.216000pt;}
._a{margin-left:-5.690667pt;}
._1d{margin-left:-4.314667pt;}
._1{margin-left:-3.157333pt;}
._6{margin-left:-2.204800pt;}
._0{margin-left:-1.156267pt;}
._3{width:0.904533pt;}
._7{width:1.936000pt;}
._b{width:2.850133pt;}
._9{width:3.754667pt;}
._5{width:5.162667pt;}
._2{width:6.826667pt;}
._8{width:7.744000pt;}
._4{width:9.152000pt;}
._c{width:10.090667pt;}
._17{width:11.281067pt;}
._11{width:14.367467pt;}
._10{width:15.384000pt;}
._19{width:17.054400pt;}
._1a{width:18.157333pt;}
._18{width:20.034133pt;}
._d{width:21.228267pt;}
._21{width:23.500800pt;}
._e{width:27.693333pt;}
._20{width:28.916800pt;}
._16{width:30.799467pt;}
._1f{width:33.273600pt;}
._22{width:40.304000pt;}
._12{width:151.910933pt;}
._14{width:168.157333pt;}
._15{width:176.744533pt;}
._13{width:179.027733pt;}
._1b{width:235.022933pt;}
._1e{width:250.748800pt;}
._1c{width:251.740267pt;}
.fs4{font-size:24.746667pt;}
.fs3{font-size:30.933333pt;}
.fs0{font-size:42.666667pt;}
.fs5{font-size:48.000000pt;}
.fs1{font-size:53.333333pt;}
.fs2{font-size:58.666667pt;}
.fs6{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.y2{bottom:70.243067pt;}
.y74{bottom:113.725733pt;}
.ya4{bottom:115.725733pt;}
.y143{bottom:116.111600pt;}
.y10f{bottom:116.717867pt;}
.y1f{bottom:118.580667pt;}
.yc9{bottom:124.077333pt;}
.yeb{bottom:125.130800pt;}
.ye1{bottom:125.410667pt;}
.y13a{bottom:128.717867pt;}
.y73{bottom:131.059067pt;}
.y1e{bottom:131.380667pt;}
.y142{bottom:133.711600pt;}
.ya3{bottom:133.725733pt;}
.y10e{bottom:134.051200pt;}
.yc8{bottom:141.410667pt;}
.ye0{bottom:143.410667pt;}
.y1d{bottom:144.180667pt;}
.yea{bottom:145.776933pt;}
.y139{bottom:146.717867pt;}
.y72{bottom:148.392400pt;}
.y141{bottom:151.311600pt;}
.y10d{bottom:151.384533pt;}
.ya2{bottom:151.725733pt;}
.y1c{bottom:156.980667pt;}
.yc7{bottom:158.744000pt;}
.ydf{bottom:161.410667pt;}
.y138{bottom:164.717867pt;}
.y71{bottom:165.725733pt;}
.y10c{bottom:168.717867pt;}
.y140{bottom:168.911600pt;}
.ya1{bottom:169.725733pt;}
.ye9{bottom:170.485067pt;}
.y1b{bottom:173.300667pt;}
.yc6{bottom:176.077333pt;}
.yde{bottom:179.410667pt;}
.y137{bottom:182.717867pt;}
.y70{bottom:183.059067pt;}
.y10b{bottom:186.051200pt;}
.y13f{bottom:186.511600pt;}
.ya0{bottom:187.725733pt;}
.ye8{bottom:191.131333pt;}
.yc5{bottom:193.410667pt;}
.ydd{bottom:197.410667pt;}
.y6f{bottom:200.392400pt;}
.y136{bottom:200.717867pt;}
.y10a{bottom:203.384533pt;}
.y13e{bottom:204.111600pt;}
.y9f{bottom:205.725733pt;}
.yc4{bottom:210.744000pt;}
.ydc{bottom:215.410667pt;}
.ye7{bottom:215.839467pt;}
.y6e{bottom:217.725733pt;}
.y135{bottom:218.717867pt;}
.y109{bottom:220.717867pt;}
.y13d{bottom:221.711600pt;}
.y9e{bottom:223.725733pt;}
.yc3{bottom:228.077333pt;}
.ydb{bottom:233.410667pt;}
.y6d{bottom:235.059067pt;}
.ye6{bottom:236.485600pt;}
.y134{bottom:236.717867pt;}
.y108{bottom:238.051200pt;}
.y9d{bottom:241.725733pt;}
.yc2{bottom:245.410667pt;}
.y13b{bottom:250.392267pt;}
.yda{bottom:251.410667pt;}
.y6c{bottom:252.392400pt;}
.y133{bottom:254.717867pt;}
.y107{bottom:255.384533pt;}
.y9c{bottom:259.725733pt;}
.yc1{bottom:262.744000pt;}
.ye5{bottom:264.654000pt;}
.y3e{bottom:266.623333pt;}
.yd9{bottom:269.410667pt;}
.y6b{bottom:269.725733pt;}
.y13c{bottom:272.717733pt;}
.y132{bottom:272.717867pt;}
.y2f{bottom:276.623333pt;}
.y9b{bottom:277.725733pt;}
.yc0{bottom:280.077333pt;}
.y106{bottom:280.276800pt;}
.y3d{bottom:284.623333pt;}
.ye4{bottom:285.300267pt;}
.y6a{bottom:287.059067pt;}
.yd8{bottom:287.410667pt;}
.y16b{bottom:293.725733pt;}
.y2e{bottom:293.956667pt;}
.y9a{bottom:295.725733pt;}
.ybf{bottom:297.410667pt;}
.y131{bottom:298.276800pt;}
.y3c{bottom:302.623333pt;}
.y69{bottom:304.392400pt;}
.yd7{bottom:305.410667pt;}
.y2d{bottom:311.290000pt;}
.y16a{bottom:311.325733pt;}
.y99{bottom:313.725733pt;}
.ybe{bottom:314.744000pt;}
.y105{bottom:314.943467pt;}
.ye3{bottom:320.308400pt;}
.y3b{bottom:320.623333pt;}
.y68{bottom:321.725733pt;}
.yd6{bottom:323.410667pt;}
.y2c{bottom:328.623333pt;}
.y169{bottom:328.925733pt;}
.y98{bottom:331.725733pt;}
.ybd{bottom:332.077333pt;}
.y104{bottom:332.276800pt;}
.y130{bottom:334.276800pt;}
.ye2{bottom:336.308400pt;}
.y3a{bottom:338.623333pt;}
.y67{bottom:339.059067pt;}
.yd5{bottom:341.410667pt;}
.y2b{bottom:345.956667pt;}
.y168{bottom:346.525733pt;}
.ybc{bottom:349.410667pt;}
.y103{bottom:349.610133pt;}
.y97{bottom:349.725733pt;}
.y12f{bottom:352.276800pt;}
.y66{bottom:356.392400pt;}
.y39{bottom:356.623333pt;}
.yd4{bottom:359.410667pt;}
.y2a{bottom:363.290000pt;}
.y167{bottom:364.125733pt;}
.ybb{bottom:366.744000pt;}
.y102{bottom:366.943467pt;}
.y96{bottom:367.725733pt;}
.y12e{bottom:370.276800pt;}
.y65{bottom:373.725733pt;}
.y38{bottom:374.623333pt;}
.yd3{bottom:377.410667pt;}
.y29{bottom:380.623333pt;}
.y166{bottom:381.725733pt;}
.yba{bottom:384.077333pt;}
.y101{bottom:384.276800pt;}
.y95{bottom:385.725733pt;}
.y12d{bottom:388.276800pt;}
.y64{bottom:391.059067pt;}
.y37{bottom:392.623333pt;}
.yd2{bottom:395.410667pt;}
.y28{bottom:397.956667pt;}
.y165{bottom:399.325733pt;}
.yb9{bottom:401.410667pt;}
.y100{bottom:401.610133pt;}
.y94{bottom:403.725733pt;}
.y12c{bottom:406.276800pt;}
.y63{bottom:408.392400pt;}
.y36{bottom:410.623333pt;}
.yd1{bottom:413.410667pt;}
.y27{bottom:415.290000pt;}
.y164{bottom:416.925733pt;}
.yb8{bottom:418.744000pt;}
.yff{bottom:418.943467pt;}
.y93{bottom:421.725733pt;}
.y12b{bottom:424.276800pt;}
.y62{bottom:425.725733pt;}
.y35{bottom:428.623333pt;}
.yd0{bottom:431.410667pt;}
.y26{bottom:432.623333pt;}
.y163{bottom:434.525733pt;}
.yb7{bottom:436.077333pt;}
.yfe{bottom:436.276800pt;}
.y92{bottom:439.725733pt;}
.y12a{bottom:442.276800pt;}
.y61{bottom:443.059067pt;}
.y34{bottom:446.623333pt;}
.ycf{bottom:449.410667pt;}
.y25{bottom:449.956667pt;}
.y162{bottom:452.125733pt;}
.yb6{bottom:453.410667pt;}
.yfd{bottom:453.610133pt;}
.y91{bottom:457.725733pt;}
.y129{bottom:460.276800pt;}
.y60{bottom:460.392400pt;}
.y33{bottom:464.623333pt;}
.y24{bottom:467.290000pt;}
.yce{bottom:467.410667pt;}
.y161{bottom:469.725733pt;}
.yb5{bottom:470.744000pt;}
.yfc{bottom:470.943467pt;}
.y90{bottom:475.725733pt;}
.y5f{bottom:477.725733pt;}
.y128{bottom:478.276800pt;}
.y32{bottom:482.623333pt;}
.y23{bottom:484.623333pt;}
.ycd{bottom:485.410667pt;}
.y160{bottom:487.325733pt;}
.yb4{bottom:488.077333pt;}
.yfb{bottom:488.276800pt;}
.y8f{bottom:493.725733pt;}
.y5e{bottom:495.059067pt;}
.y127{bottom:496.276800pt;}
.y31{bottom:500.623333pt;}
.y22{bottom:501.956667pt;}
.ycc{bottom:503.410667pt;}
.y15f{bottom:504.925733pt;}
.yb3{bottom:505.410667pt;}
.yfa{bottom:505.610133pt;}
.y8e{bottom:511.725733pt;}
.y5d{bottom:512.392400pt;}
.y126{bottom:514.276800pt;}
.y30{bottom:518.623333pt;}
.y21{bottom:519.290000pt;}
.ycb{bottom:521.410667pt;}
.y15e{bottom:522.525733pt;}
.yb2{bottom:522.744000pt;}
.yf9{bottom:522.943467pt;}
.y5c{bottom:529.725733pt;}
.y125{bottom:532.276800pt;}
.yca{bottom:539.410667pt;}
.yb1{bottom:540.077333pt;}
.y15d{bottom:540.125733pt;}
.yf8{bottom:540.276800pt;}
.y20{bottom:544.182400pt;}
.y5b{bottom:547.059067pt;}
.y8d{bottom:547.725733pt;}
.y124{bottom:550.276800pt;}
.yb0{bottom:557.410667pt;}
.yf7{bottom:557.610133pt;}
.y15c{bottom:557.725733pt;}
.y5a{bottom:564.392400pt;}
.y8c{bottom:565.725733pt;}
.y123{bottom:568.276800pt;}
.yf6{bottom:574.943467pt;}
.y15b{bottom:575.325733pt;}
.y59{bottom:581.725733pt;}
.y8b{bottom:583.725733pt;}
.y122{bottom:586.276800pt;}
.yf5{bottom:592.276800pt;}
.y15a{bottom:592.925733pt;}
.yaf{bottom:593.779200pt;}
.y58{bottom:599.059067pt;}
.y15{bottom:601.557333pt;}
.y8a{bottom:601.725733pt;}
.yae{bottom:601.965200pt;}
.y121{bottom:604.276800pt;}
.yf4{bottom:609.610133pt;}
.y159{bottom:610.525733pt;}
.y14{bottom:614.890667pt;}
.y57{bottom:616.392400pt;}
.y89{bottom:619.725733pt;}
.y120{bottom:622.276800pt;}
.yf3{bottom:626.943467pt;}
.y158{bottom:628.125733pt;}
.y1a{bottom:628.224000pt;}
.y56{bottom:633.725733pt;}
.y13{bottom:635.783067pt;}
.y88{bottom:637.725733pt;}
.yad{bottom:639.133467pt;}
.y11f{bottom:640.276800pt;}
.yf2{bottom:644.276800pt;}
.y157{bottom:645.725733pt;}
.yac{bottom:647.319467pt;}
.y12{bottom:649.116400pt;}
.y55{bottom:651.059067pt;}
.y87{bottom:655.725733pt;}
.y11e{bottom:658.276800pt;}
.yf1{bottom:661.610133pt;}
.y11{bottom:662.449733pt;}
.y156{bottom:663.325733pt;}
.y54{bottom:668.392400pt;}
.y86{bottom:673.725733pt;}
.y10{bottom:675.783067pt;}
.y11d{bottom:676.276800pt;}
.yf0{bottom:678.943467pt;}
.y155{bottom:680.925733pt;}
.yab{bottom:684.487733pt;}
.y53{bottom:685.725733pt;}
.yf{bottom:689.116400pt;}
.y85{bottom:691.725733pt;}
.ya9{bottom:692.673867pt;}
.y11c{bottom:694.276800pt;}
.yef{bottom:696.276800pt;}
.y154{bottom:698.525733pt;}
.ye{bottom:702.449733pt;}
.y52{bottom:703.059067pt;}
.yaa{bottom:705.867333pt;}
.y84{bottom:709.725733pt;}
.y11b{bottom:712.276800pt;}
.yee{bottom:713.610133pt;}
.yd{bottom:715.783067pt;}
.y153{bottom:716.125733pt;}
.y51{bottom:720.392400pt;}
.y83{bottom:727.725733pt;}
.ya8{bottom:728.138400pt;}
.yc{bottom:729.116400pt;}
.y11a{bottom:730.276800pt;}
.yed{bottom:730.943467pt;}
.y152{bottom:733.725733pt;}
.y50{bottom:737.725733pt;}
.yb{bottom:742.449733pt;}
.ya7{bottom:744.138400pt;}
.y82{bottom:745.725733pt;}
.yec{bottom:748.276800pt;}
.y151{bottom:751.325733pt;}
.y4f{bottom:755.059067pt;}
.ya{bottom:755.783067pt;}
.y81{bottom:763.725733pt;}
.y150{bottom:768.925733pt;}
.y9{bottom:769.116400pt;}
.y4e{bottom:772.392400pt;}
.ya6{bottom:777.967067pt;}
.y80{bottom:781.725733pt;}
.y8{bottom:782.449733pt;}
.y14f{bottom:786.525733pt;}
.y119{bottom:788.345600pt;}
.y4d{bottom:789.725733pt;}
.ya5{bottom:793.967067pt;}
.y7{bottom:795.783067pt;}
.y7f{bottom:799.725733pt;}
.y14e{bottom:804.125600pt;}
.y4c{bottom:807.059067pt;}
.y118{bottom:808.991733pt;}
.y7e{bottom:817.725733pt;}
.y14d{bottom:821.725733pt;}
.y4b{bottom:824.392400pt;}
.y117{bottom:833.699867pt;}
.y7d{bottom:835.725733pt;}
.y14c{bottom:839.325733pt;}
.y4a{bottom:841.725733pt;}
.y7c{bottom:853.725733pt;}
.y116{bottom:854.346000pt;}
.y14b{bottom:856.925733pt;}
.y6{bottom:858.457867pt;}
.y19{bottom:858.458000pt;}
.y49{bottom:859.059067pt;}
.y7b{bottom:871.725733pt;}
.y14a{bottom:874.525600pt;}
.y48{bottom:876.392400pt;}
.y115{bottom:879.054133pt;}
.y7a{bottom:889.725733pt;}
.y149{bottom:892.125600pt;}
.y47{bottom:893.725733pt;}
.y114{bottom:899.700400pt;}
.y79{bottom:907.725733pt;}
.y18{bottom:909.658000pt;}
.y148{bottom:909.725733pt;}
.y46{bottom:911.059067pt;}
.y113{bottom:924.408533pt;}
.y78{bottom:925.725733pt;}
.y5{bottom:927.257867pt;}
.y17{bottom:927.258000pt;}
.y147{bottom:927.325733pt;}
.y45{bottom:928.392400pt;}
.y77{bottom:943.725733pt;}
.y4{bottom:944.857867pt;}
.y16{bottom:944.858133pt;}
.y146{bottom:944.925733pt;}
.y112{bottom:945.054667pt;}
.y44{bottom:945.725733pt;}
.y76{bottom:961.725733pt;}
.y145{bottom:962.525600pt;}
.y43{bottom:963.059067pt;}
.y111{bottom:969.762800pt;}
.y75{bottom:979.725733pt;}
.y144{bottom:980.125600pt;}
.y42{bottom:980.392400pt;}
.y110{bottom:990.409067pt;}
.y3{bottom:996.227333pt;}
.y41{bottom:997.725733pt;}
.y40{bottom:1037.385067pt;}
.y1{bottom:1044.332933pt;}
.y3f{bottom:1050.185067pt;}
.h8{height:23.003333pt;}
.ha{height:29.916667pt;}
.he{height:31.573333pt;}
.h7{height:32.298667pt;}
.hd{height:35.520000pt;}
.h2{height:35.925333pt;}
.h17{height:35.963542pt;}
.h9{height:37.083333pt;}
.h12{height:37.291667pt;}
.h11{height:37.395833pt;}
.h3{height:37.760000pt;}
.hc{height:39.559896pt;}
.h10{height:41.135417pt;}
.h18{height:41.536458pt;}
.hf{height:42.052083pt;}
.h4{height:44.906667pt;}
.h6{height:47.680000pt;}
.hb{height:50.989583pt;}
.h5{height:52.448000pt;}
.h15{height:92.281850pt;}
.h16{height:92.282383pt;}
.h14{height:94.825950pt;}
.h13{height:94.826483pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x3{left:94.488133pt;}
.x2c{left:100.488133pt;}
.xe{left:102.047200pt;}
.x25{left:103.498000pt;}
.x7{left:105.535067pt;}
.x4{left:109.115467pt;}
.x2d{left:117.165333pt;}
.x6{left:124.432800pt;}
.x26{left:129.540667pt;}
.xf{left:132.283467pt;}
.x20{left:138.057333pt;}
.x16{left:141.413867pt;}
.x17{left:143.450667pt;}
.x14{left:146.032933pt;}
.x15{left:175.690400pt;}
.x5{left:192.365867pt;}
.x19{left:246.452400pt;}
.x18{left:251.258400pt;}
.x27{left:256.309733pt;}
.x23{left:280.654000pt;}
.x1{left:287.659467pt;}
.x24{left:311.530267pt;}
.x1a{left:372.289067pt;}
.x1b{left:381.635067pt;}
.x2{left:385.950533pt;}
.x12{left:387.601733pt;}
.x13{left:389.450533pt;}
.x29{left:398.014533pt;}
.x28{left:401.491333pt;}
.x10{left:406.299200pt;}
.xc{left:417.596133pt;}
.x9{left:425.575733pt;}
.x2e{left:428.976400pt;}
.xb{left:436.493733pt;}
.x11{left:444.094533pt;}
.x8{left:462.644667pt;}
.x1c{left:469.686933pt;}
.x1d{left:471.082133pt;}
.xa{left:504.176933pt;}
.xd{left:508.682533pt;}
.x2a{left:562.342267pt;}
.x2b{left:563.989467pt;}
.x21{left:598.850533pt;}
.x1e{left:606.692400pt;}
.x1f{left:608.202133pt;}
.x22{left:610.824533pt;}
}




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