
    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_0a9fe2b6c89788ca8197d31b.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_8e5ea1e8824c0c62b18d5029.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_d99c67cffdcc04c58af85c6b.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_5e881dd4cc86a4dec0f5dadf.woff')format("woff");}.ff4{font-family:ff4;line-height:0.975000;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_37bbafb83b7930c8fc1b6dfb.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_9aaad6e534949e7f2d8bb99c.woff')format("woff");}.ff6{font-family:ff6;line-height:0.674316;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_c1537517a238b225d84fd0fa.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_4b98851e8f9053f6f3a2fc91.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_e55bfbfc4a88516663040dde.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_f9688955e7b82a0dfeaf7f81.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_2eb7b2a239fc8d340d3ab89d.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_b38eefc34678af39fa7a5c87.woff')format("woff");}.ffc{font-family:ffc;line-height:0.884277;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_c6f2e6c2eebd8ee848c7b0fc.woff')format("woff");}.ffd{font-family:ffd;line-height:0.924316;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_0d0491ff49a7cc143ab36247.woff')format("woff");}.ffe{font-family:ffe;line-height:0.917480;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_0b05077e5671653edb95934f.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_d27df5f6df2c4f530f207703.woff')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;}
.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;}
.ls6{letter-spacing:-1.320000px;}
.ls2{letter-spacing:-0.960000px;}
.ls8{letter-spacing:-0.660000px;}
.ls3{letter-spacing:-0.480000px;}
.ls5{letter-spacing:-0.330000px;}
.ls1{letter-spacing:0.000000px;}
.lsc{letter-spacing:0.990000px;}
.lsd{letter-spacing:1.782000px;}
.lsa{letter-spacing:3.385200px;}
.ls9{letter-spacing:13.283400px;}
.ls4{letter-spacing:14.061000px;}
.lsb{letter-spacing:15.445800px;}
.ls7{letter-spacing:16.703400px;}
.ls0{letter-spacing:23.455800px;}
.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;}
}
.ws125{word-spacing:-67.782000px;}
.ws124{word-spacing:-66.990000px;}
.ws6{word-spacing:-66.000000px;}
.ws65{word-spacing:-65.670000px;}
.ws7c{word-spacing:-65.340000px;}
.ws6a{word-spacing:-64.680000px;}
.ws79{word-spacing:-55.176000px;}
.ws4e{word-spacing:-55.110000px;}
.wscb{word-spacing:-55.044000px;}
.ws85{word-spacing:-54.978000px;}
.ws109{word-spacing:-54.912000px;}
.ws8{word-spacing:-54.846000px;}
.ws49{word-spacing:-54.780000px;}
.ws4d{word-spacing:-54.714000px;}
.ws68{word-spacing:-54.648000px;}
.wsee{word-spacing:-54.582000px;}
.wsf1{word-spacing:-54.516000px;}
.ws8d{word-spacing:-54.450000px;}
.wsd4{word-spacing:-54.384000px;}
.wsd9{word-spacing:-54.228600px;}
.wsda{word-spacing:-54.186000px;}
.ws46{word-spacing:-54.054000px;}
.ws3a{word-spacing:-53.988000px;}
.ws100{word-spacing:-53.922000px;}
.ws64{word-spacing:-53.856000px;}
.wse8{word-spacing:-53.790000px;}
.ws110{word-spacing:-53.724000px;}
.wse7{word-spacing:-53.658000px;}
.wsce{word-spacing:-53.592000px;}
.wscc{word-spacing:-53.526000px;}
.ws51{word-spacing:-53.460000px;}
.ws4a{word-spacing:-53.394000px;}
.ws78{word-spacing:-53.328000px;}
.ws9e{word-spacing:-53.262000px;}
.ws103{word-spacing:-53.196000px;}
.ws7b{word-spacing:-53.130000px;}
.wsd6{word-spacing:-53.064000px;}
.ws72{word-spacing:-52.998000px;}
.wsfa{word-spacing:-52.932000px;}
.ws52{word-spacing:-52.866000px;}
.wsf7{word-spacing:-52.800000px;}
.wsbc{word-spacing:-52.734000px;}
.wsf6{word-spacing:-52.668000px;}
.ws86{word-spacing:-52.536000px;}
.ws8c{word-spacing:-52.470000px;}
.ws3b{word-spacing:-52.404000px;}
.wsd2{word-spacing:-52.288800px;}
.wsd0{word-spacing:-52.272000px;}
.ws9{word-spacing:-52.206000px;}
.wscf{word-spacing:-52.140000px;}
.wsa5{word-spacing:-52.074000px;}
.ws5e{word-spacing:-52.008000px;}
.ws50{word-spacing:-51.942000px;}
.ws4f{word-spacing:-51.876000px;}
.wsf0{word-spacing:-51.744000px;}
.ws102{word-spacing:-51.678000px;}
.wsed{word-spacing:-51.612000px;}
.ws70{word-spacing:-51.546000px;}
.ws113{word-spacing:-51.480000px;}
.wsa1{word-spacing:-51.414000px;}
.wsa4{word-spacing:-51.353400px;}
.wse2{word-spacing:-51.348000px;}
.wsa3{word-spacing:-51.319800px;}
.ws76{word-spacing:-51.282000px;}
.wsb9{word-spacing:-51.216000px;}
.ws9a{word-spacing:-51.150000px;}
.ws83{word-spacing:-51.084000px;}
.wse4{word-spacing:-51.018000px;}
.wsc6{word-spacing:-50.952000px;}
.ws55{word-spacing:-50.886000px;}
.wsba{word-spacing:-50.820000px;}
.wsc9{word-spacing:-50.688000px;}
.wsd3{word-spacing:-50.622000px;}
.ws44{word-spacing:-50.556000px;}
.ws9b{word-spacing:-50.490000px;}
.ws5c{word-spacing:-50.424000px;}
.ws8b{word-spacing:-50.358000px;}
.ws4c{word-spacing:-50.292000px;}
.ws5f{word-spacing:-50.160000px;}
.wsa6{word-spacing:-50.094000px;}
.ws71{word-spacing:-50.028000px;}
.ws8a{word-spacing:-49.962000px;}
.ws53{word-spacing:-49.896000px;}
.wsb7{word-spacing:-49.830000px;}
.ws5d{word-spacing:-49.698000px;}
.wsf3{word-spacing:-49.566000px;}
.wsc7{word-spacing:-49.500000px;}
.wse6{word-spacing:-49.434000px;}
.ws59{word-spacing:-49.368000px;}
.ws6c{word-spacing:-49.302000px;}
.ws11a{word-spacing:-49.236000px;}
.ws7a{word-spacing:-49.170000px;}
.ws69{word-spacing:-49.104000px;}
.ws61{word-spacing:-49.038000px;}
.ws116{word-spacing:-48.906000px;}
.wsfd{word-spacing:-48.642000px;}
.ws7{word-spacing:-48.444000px;}
.wsa2{word-spacing:-48.378000px;}
.wsfb{word-spacing:-48.312000px;}
.ws63{word-spacing:-48.246000px;}
.ws48{word-spacing:-48.180000px;}
.ws62{word-spacing:-48.048000px;}
.ws43{word-spacing:-47.916000px;}
.wsa9{word-spacing:-47.850000px;}
.wsde{word-spacing:-47.803800px;}
.wsff{word-spacing:-47.784000px;}
.ws56{word-spacing:-47.718000px;}
.ws5{word-spacing:-47.652000px;}
.ws2{word-spacing:-47.520000px;}
.wsd7{word-spacing:-47.407800px;}
.wsec{word-spacing:-47.256000px;}
.ws47{word-spacing:-47.190000px;}
.ws4{word-spacing:-46.992000px;}
.wsbf{word-spacing:-46.860000px;}
.ws118{word-spacing:-46.794000px;}
.ws73{word-spacing:-46.728000px;}
.wse3{word-spacing:-46.596000px;}
.ws3e{word-spacing:-46.530000px;}
.ws9c{word-spacing:-46.464000px;}
.wsf8{word-spacing:-46.398000px;}
.ws6b{word-spacing:-46.134000px;}
.ws105{word-spacing:-45.870000px;}
.ws9f{word-spacing:-45.738000px;}
.wsf4{word-spacing:-45.672000px;}
.wsdd{word-spacing:-45.540000px;}
.wse9{word-spacing:-45.408000px;}
.ws11f{word-spacing:-45.210000px;}
.ws11d{word-spacing:-45.078000px;}
.wsdc{word-spacing:-45.012000px;}
.wsc0{word-spacing:-44.946000px;}
.ws119{word-spacing:-44.880000px;}
.ws11c{word-spacing:-44.682000px;}
.ws3c{word-spacing:-44.616000px;}
.ws7e{word-spacing:-44.550000px;}
.wsd1{word-spacing:-44.484000px;}
.ws89{word-spacing:-44.418000px;}
.ws114{word-spacing:-44.286000px;}
.ws111{word-spacing:-44.220000px;}
.ws40{word-spacing:-44.154000px;}
.wsc8{word-spacing:-43.956000px;}
.wse1{word-spacing:-43.890000px;}
.wsb6{word-spacing:-43.824000px;}
.ws104{word-spacing:-43.428000px;}
.ws77{word-spacing:-43.362000px;}
.ws4b{word-spacing:-43.296000px;}
.ws45{word-spacing:-43.230000px;}
.ws82{word-spacing:-43.164000px;}
.ws7d{word-spacing:-42.834000px;}
.ws115{word-spacing:-42.768000px;}
.wsd5{word-spacing:-42.702000px;}
.ws41{word-spacing:-42.570000px;}
.ws10a{word-spacing:-42.372000px;}
.wseb{word-spacing:-42.306000px;}
.ws74{word-spacing:-41.910000px;}
.ws3f{word-spacing:-41.844000px;}
.wsf9{word-spacing:-41.778000px;}
.wsa0{word-spacing:-41.646000px;}
.ws10b{word-spacing:-41.514000px;}
.ws42{word-spacing:-41.316000px;}
.wsfe{word-spacing:-41.118000px;}
.ws6f{word-spacing:-41.052000px;}
.ws107{word-spacing:-40.656000px;}
.ws10c{word-spacing:-40.326000px;}
.ws80{word-spacing:-40.194000px;}
.wsf5{word-spacing:-39.534000px;}
.ws84{word-spacing:-39.468000px;}
.ws3d{word-spacing:-39.402000px;}
.ws58{word-spacing:-39.270000px;}
.ws88{word-spacing:-39.204000px;}
.ws1{word-spacing:-39.000000px;}
.ws122{word-spacing:-38.940000px;}
.ws101{word-spacing:-38.874000px;}
.wse5{word-spacing:-38.610000px;}
.ws120{word-spacing:-38.544000px;}
.ws75{word-spacing:-38.412000px;}
.wsbe{word-spacing:-38.148000px;}
.wsfc{word-spacing:-38.082000px;}
.ws10e{word-spacing:-37.752000px;}
.ws11e{word-spacing:-36.432000px;}
.ws6e{word-spacing:-35.508000px;}
.wsbd{word-spacing:-35.376000px;}
.wsf2{word-spacing:-35.244000px;}
.ws60{word-spacing:-35.046000px;}
.ws123{word-spacing:-34.584000px;}
.wsa8{word-spacing:-33.330000px;}
.ws9d{word-spacing:-33.198000px;}
.ws3{word-spacing:-30.954000px;}
.ws121{word-spacing:-30.888000px;}
.ws108{word-spacing:-30.294000px;}
.ws87{word-spacing:-29.983800px;}
.wsca{word-spacing:-28.974000px;}
.ws128{word-spacing:-28.567200px;}
.ws126{word-spacing:-28.566600px;}
.wscd{word-spacing:-28.446000px;}
.ws10d{word-spacing:-27.720000px;}
.ws10f{word-spacing:-27.258000px;}
.wsb8{word-spacing:-25.278000px;}
.ws5b{word-spacing:-25.192200px;}
.ws81{word-spacing:-24.420000px;}
.ws127{word-spacing:-23.430000px;}
.wsdb{word-spacing:-22.374000px;}
.ws6d{word-spacing:-21.648000px;}
.wsef{word-spacing:-17.424000px;}
.ws7f{word-spacing:-16.986600px;}
.ws54{word-spacing:-15.576000px;}
.wsbb{word-spacing:-15.246000px;}
.wsb5{word-spacing:-14.520000px;}
.wse0{word-spacing:-14.058000px;}
.ws5a{word-spacing:-13.398000px;}
.wsa7{word-spacing:-13.200000px;}
.ws11b{word-spacing:-12.276000px;}
.ws0{word-spacing:-6.124800px;}
.ws95{word-spacing:-2.706000px;}
.ws20{word-spacing:-1.824000px;}
.wsae{word-spacing:-1.716000px;}
.ws94{word-spacing:-1.386000px;}
.ws28{word-spacing:-0.864000px;}
.ws32{word-spacing:-0.096000px;}
.wsa{word-spacing:0.000000px;}
.ws31{word-spacing:0.288000px;}
.ws2c{word-spacing:0.576000px;}
.ws129{word-spacing:0.660000px;}
.ws38{word-spacing:0.960000px;}
.ws2b{word-spacing:1.056000px;}
.ws2a{word-spacing:1.248000px;}
.wsab{word-spacing:1.320000px;}
.wsf{word-spacing:1.632000px;}
.ws33{word-spacing:2.016000px;}
.wsc3{word-spacing:2.112000px;}
.ws39{word-spacing:2.304000px;}
.wsc4{word-spacing:2.310000px;}
.ws10{word-spacing:2.544000px;}
.ws92{word-spacing:2.640000px;}
.wsc{word-spacing:2.832000px;}
.ws37{word-spacing:3.360000px;}
.wsdf{word-spacing:3.762000px;}
.wsd{word-spacing:3.888000px;}
.ws1d{word-spacing:3.936000px;}
.ws117{word-spacing:3.960000px;}
.ws2f{word-spacing:3.984000px;}
.ws23{word-spacing:4.128000px;}
.ws29{word-spacing:4.656000px;}
.wse{word-spacing:4.800000px;}
.ws21{word-spacing:5.040000px;}
.ws2d{word-spacing:5.376000px;}
.wsc2{word-spacing:5.742000px;}
.wsb1{word-spacing:6.204000px;}
.wsb0{word-spacing:6.402000px;}
.ws1b{word-spacing:6.480000px;}
.ws97{word-spacing:6.534000px;}
.wsb4{word-spacing:6.798000px;}
.ws36{word-spacing:6.912000px;}
.ws16{word-spacing:7.200000px;}
.wsb3{word-spacing:7.788000px;}
.ws96{word-spacing:8.118000px;}
.ws34{word-spacing:8.400000px;}
.ws22{word-spacing:8.544000px;}
.ws112{word-spacing:8.712000px;}
.ws27{word-spacing:8.880000px;}
.wsad{word-spacing:9.108000px;}
.ws11{word-spacing:9.120000px;}
.ws14{word-spacing:9.216000px;}
.ws35{word-spacing:9.456000px;}
.ws26{word-spacing:9.696000px;}
.ws12{word-spacing:10.560000px;}
.wsb{word-spacing:10.752000px;}
.ws24{word-spacing:11.280000px;}
.ws8e{word-spacing:11.286000px;}
.ws67{word-spacing:11.352000px;}
.ws66{word-spacing:11.814000px;}
.ws13{word-spacing:12.144000px;}
.ws99{word-spacing:13.464000px;}
.wsc5{word-spacing:13.596000px;}
.wsd8{word-spacing:13.728000px;}
.wsaa{word-spacing:13.794000px;}
.wsac{word-spacing:14.586000px;}
.ws30{word-spacing:15.024000px;}
.ws91{word-spacing:15.312000px;}
.wsc1{word-spacing:15.444000px;}
.ws1a{word-spacing:15.600000px;}
.ws93{word-spacing:15.642000px;}
.ws15{word-spacing:15.888000px;}
.ws90{word-spacing:16.038000px;}
.ws1f{word-spacing:16.272000px;}
.wsb2{word-spacing:16.368000px;}
.ws19{word-spacing:18.240000px;}
.ws1e{word-spacing:19.344000px;}
.ws8f{word-spacing:19.536000px;}
.wsaf{word-spacing:20.262000px;}
.ws25{word-spacing:20.496000px;}
.ws2e{word-spacing:20.640000px;}
.ws1c{word-spacing:22.416000px;}
.ws18{word-spacing:26.400000px;}
.ws17{word-spacing:28.176000px;}
.ws106{word-spacing:31.482000px;}
.wsea{word-spacing:32.894400px;}
.ws98{word-spacing:32.934000px;}
.ws57{word-spacing:35.838000px;}
._15{margin-left:-48.839400px;}
._1a{margin-left:-6.666000px;}
._9{margin-left:-4.896000px;}
._1{margin-left:-3.552000px;}
._3{margin-left:-2.501280px;}
._0{margin-left:-1.300800px;}
._2{width:1.403040px;}
._6{width:2.640000px;}
._5{width:3.828000px;}
._7{width:4.950000px;}
._a{width:6.270000px;}
._d{width:7.656000px;}
._b{width:8.844000px;}
._8{width:9.900000px;}
._c{width:11.022000px;}
._16{width:12.111000px;}
._e{width:13.391400px;}
._10{width:16.031400px;}
._19{width:19.582200px;}
._f{width:22.398000px;}
._4{width:23.472000px;}
._17{width:24.736800px;}
._14{width:25.746600px;}
._18{width:30.208200px;}
._13{width:32.630400px;}
._1b{width:37.433400px;}
._12{width:40.002600px;}
._11{width:48.991800px;}
.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;}
.y0{bottom:0.000000px;}
.y2{bottom:79.023450px;}
.yb6{bottom:127.941450px;}
.ycc{bottom:130.191450px;}
.y6f{bottom:130.433550px;}
.y28{bottom:131.068350px;}
.y9d{bottom:133.433550px;}
.y110{bottom:138.937350px;}
.y122{bottom:141.937350px;}
.yfd{bottom:143.000400px;}
.y27{bottom:145.468350px;}
.yb5{bottom:147.441450px;}
.y6e{bottom:149.933550px;}
.ycb{bottom:150.441450px;}
.y9c{bottom:153.683550px;}
.y10f{bottom:158.437350px;}
.y26{bottom:159.868350px;}
.y121{bottom:162.187350px;}
.yfc{bottom:163.250400px;}
.yb4{bottom:166.941450px;}
.y6d{bottom:169.433550px;}
.yca{bottom:170.691450px;}
.y9b{bottom:173.933550px;}
.y10e{bottom:177.937350px;}
.y25{bottom:178.228350px;}
.y120{bottom:182.437350px;}
.yfb{bottom:183.500400px;}
.yb3{bottom:186.441450px;}
.y6c{bottom:188.933550px;}
.yc9{bottom:190.941450px;}
.y9a{bottom:194.183550px;}
.y10d{bottom:197.437350px;}
.y11f{bottom:202.687350px;}
.yfa{bottom:203.750400px;}
.yb2{bottom:205.941450px;}
.y6b{bottom:208.433550px;}
.yc8{bottom:211.191450px;}
.y99{bottom:214.433550px;}
.y10c{bottom:216.937350px;}
.y11e{bottom:222.937350px;}
.yf9{bottom:224.000400px;}
.yb1{bottom:225.441450px;}
.y6a{bottom:227.933550px;}
.yc7{bottom:231.441450px;}
.y98{bottom:234.683550px;}
.y10b{bottom:236.437350px;}
.y11d{bottom:243.187350px;}
.yf8{bottom:244.250400px;}
.yb0{bottom:244.941450px;}
.y69{bottom:247.433550px;}
.yc6{bottom:251.691450px;}
.y33{bottom:252.128400px;}
.y97{bottom:254.933550px;}
.y10a{bottom:255.937350px;}
.y11c{bottom:263.437350px;}
.yaf{bottom:264.441450px;}
.yf7{bottom:264.500400px;}
.y3c{bottom:264.878400px;}
.y68{bottom:266.933550px;}
.y32{bottom:271.628400px;}
.yc5{bottom:271.941450px;}
.y96{bottom:275.183550px;}
.y109{bottom:275.437350px;}
.y11b{bottom:283.687350px;}
.yae{bottom:283.941450px;}
.yf6{bottom:284.750400px;}
.y3b{bottom:285.128400px;}
.y67{bottom:286.433550px;}
.y31{bottom:291.128400px;}
.yc4{bottom:292.191450px;}
.y108{bottom:294.937350px;}
.y95{bottom:295.433550px;}
.yad{bottom:303.441450px;}
.y11a{bottom:303.937350px;}
.yf5{bottom:305.000400px;}
.y3a{bottom:305.378400px;}
.y66{bottom:305.933550px;}
.y30{bottom:310.628400px;}
.yc3{bottom:312.441450px;}
.y107{bottom:314.437350px;}
.y94{bottom:315.683550px;}
.yac{bottom:322.941450px;}
.y119{bottom:324.187350px;}
.yf4{bottom:325.250400px;}
.y65{bottom:325.433550px;}
.y39{bottom:325.628400px;}
.y2f{bottom:330.128400px;}
.yc2{bottom:332.691450px;}
.y106{bottom:333.937350px;}
.y93{bottom:335.933550px;}
.yab{bottom:342.441450px;}
.y118{bottom:344.437350px;}
.y64{bottom:344.933550px;}
.yf3{bottom:345.500400px;}
.y38{bottom:345.878400px;}
.y2e{bottom:349.628400px;}
.yc1{bottom:352.941450px;}
.y105{bottom:353.437350px;}
.y92{bottom:356.183550px;}
.yaa{bottom:361.941450px;}
.y63{bottom:364.433550px;}
.y117{bottom:364.687350px;}
.yf2{bottom:365.750400px;}
.y37{bottom:366.128400px;}
.y2d{bottom:369.128400px;}
.y104{bottom:372.937500px;}
.yc0{bottom:373.191450px;}
.y91{bottom:376.433550px;}
.ya9{bottom:381.441450px;}
.y62{bottom:383.933550px;}
.y116{bottom:384.937500px;}
.yf1{bottom:386.000400px;}
.y36{bottom:386.378400px;}
.y2c{bottom:388.628400px;}
.y103{bottom:392.437500px;}
.ybf{bottom:393.441450px;}
.ya8{bottom:400.941450px;}
.y61{bottom:403.433550px;}
.y90{bottom:405.187500px;}
.yf0{bottom:406.250400px;}
.y35{bottom:406.628400px;}
.y2b{bottom:408.128400px;}
.y102{bottom:411.937500px;}
.ybe{bottom:413.691450px;}
.ya7{bottom:420.441450px;}
.y115{bottom:425.437500px;}
.yef{bottom:426.500400px;}
.y34{bottom:426.878400px;}
.y2a{bottom:427.628400px;}
.y60{bottom:431.437500px;}
.ybd{bottom:433.941450px;}
.y12d{bottom:436.890750px;}
.ya6{bottom:439.941450px;}
.y8f{bottom:445.687500px;}
.yee{bottom:446.750400px;}
.y101{bottom:450.937500px;}
.ybc{bottom:454.191450px;}
.y29{bottom:455.632350px;}
.y12c{bottom:456.690750px;}
.ya5{bottom:459.441450px;}
.y8e{bottom:465.937500px;}
.yed{bottom:467.000400px;}
.y5f{bottom:470.437500px;}
.ybb{bottom:474.441450px;}
.y12b{bottom:476.490750px;}
.ya4{bottom:478.941450px;}
.y8d{bottom:486.187500px;}
.yec{bottom:487.250400px;}
.y5e{bottom:489.937500px;}
.yba{bottom:494.691450px;}
.y12a{bottom:496.290750px;}
.ya3{bottom:498.441450px;}
.y8c{bottom:506.437500px;}
.yeb{bottom:507.500400px;}
.y5d{bottom:509.437500px;}
.yb9{bottom:514.941450px;}
.y129{bottom:516.090750px;}
.ya2{bottom:517.941450px;}
.y21{bottom:522.263850px;}
.y8b{bottom:526.687500px;}
.yea{bottom:527.750400px;}
.y5c{bottom:528.937500px;}
.yb8{bottom:535.191450px;}
.y128{bottom:535.890750px;}
.y20{bottom:537.263850px;}
.ya1{bottom:537.441450px;}
.y8a{bottom:546.937500px;}
.ye9{bottom:548.000400px;}
.y5b{bottom:548.437500px;}
.yb7{bottom:555.441450px;}
.y127{bottom:555.690750px;}
.ya0{bottom:556.941450px;}
.y1f{bottom:560.767800px;}
.y114{bottom:567.187500px;}
.y5a{bottom:567.937500px;}
.ye8{bottom:568.250400px;}
.y126{bottom:575.490750px;}
.y89{bottom:575.691450px;}
.y1e{bottom:575.767800px;}
.y9f{bottom:576.441450px;}
.y100{bottom:587.437500px;}
.ye7{bottom:588.500400px;}
.y1d{bottom:590.767800px;}
.y125{bottom:595.290750px;}
.y59{bottom:595.941450px;}
.y1c{bottom:605.767800px;}
.yff{bottom:606.937500px;}
.y113{bottom:607.687500px;}
.ye6{bottom:608.750400px;}
.y9e{bottom:615.441450px;}
.y88{bottom:616.191450px;}
.y1b{bottom:620.767800px;}
.yfe{bottom:626.437500px;}
.y123{bottom:627.556500px;}
.y112{bottom:627.937500px;}
.ye5{bottom:629.000400px;}
.y58{bottom:634.941450px;}
.y1a{bottom:635.767800px;}
.y87{bottom:636.441450px;}
.y111{bottom:648.187500px;}
.ye4{bottom:649.250400px;}
.y19{bottom:650.767800px;}
.y124{bottom:652.672650px;}
.y57{bottom:654.441450px;}
.y86{bottom:656.691450px;}
.y18{bottom:665.767800px;}
.ye3{bottom:669.500400px;}
.y56{bottom:673.941450px;}
.y85{bottom:676.941450px;}
.y17{bottom:680.767800px;}
.ye2{bottom:689.750400px;}
.y55{bottom:693.441450px;}
.y16{bottom:695.767800px;}
.y84{bottom:697.191450px;}
.ye1{bottom:710.000400px;}
.y15{bottom:710.767800px;}
.y54{bottom:712.941450px;}
.y83{bottom:717.441450px;}
.y14{bottom:725.767800px;}
.ye0{bottom:730.250400px;}
.y53{bottom:732.441450px;}
.y82{bottom:737.691450px;}
.y13{bottom:740.767800px;}
.ydf{bottom:750.500400px;}
.y52{bottom:751.941450px;}
.y12{bottom:755.767800px;}
.y81{bottom:757.941450px;}
.yde{bottom:770.750400px;}
.y11{bottom:770.767800px;}
.y51{bottom:771.441450px;}
.y80{bottom:778.191450px;}
.y10{bottom:785.767800px;}
.y50{bottom:790.941450px;}
.ydd{bottom:791.000400px;}
.y7f{bottom:798.441450px;}
.yf{bottom:800.767800px;}
.y4f{bottom:810.441450px;}
.ydc{bottom:811.250400px;}
.ye{bottom:815.767800px;}
.y7e{bottom:818.691450px;}
.y4e{bottom:829.941450px;}
.yd{bottom:830.767800px;}
.ydb{bottom:831.500400px;}
.y7d{bottom:838.941450px;}
.yc{bottom:845.767800px;}
.y4d{bottom:849.441450px;}
.yda{bottom:851.750400px;}
.y7c{bottom:859.191450px;}
.yb{bottom:860.767800px;}
.y4c{bottom:868.941450px;}
.yd9{bottom:872.000400px;}
.ya{bottom:875.767800px;}
.y7b{bottom:879.441450px;}
.y4b{bottom:888.441450px;}
.y9{bottom:890.767800px;}
.yd8{bottom:892.250400px;}
.y7a{bottom:899.691450px;}
.y8{bottom:905.767800px;}
.y4a{bottom:907.941450px;}
.yd7{bottom:912.500400px;}
.y79{bottom:919.941450px;}
.y7{bottom:920.767800px;}
.y49{bottom:927.441450px;}
.yd6{bottom:932.750400px;}
.y78{bottom:940.191450px;}
.y48{bottom:946.941450px;}
.yd5{bottom:953.000400px;}
.y77{bottom:960.441450px;}
.y47{bottom:966.441450px;}
.yd4{bottom:973.250400px;}
.y76{bottom:980.691450px;}
.y6{bottom:985.565100px;}
.y24{bottom:985.565250px;}
.y46{bottom:985.941450px;}
.yd3{bottom:993.500400px;}
.y75{bottom:1000.941450px;}
.y45{bottom:1005.441450px;}
.yd2{bottom:1013.750400px;}
.y74{bottom:1021.191450px;}
.y44{bottom:1024.941450px;}
.yd1{bottom:1034.000400px;}
.y73{bottom:1041.441450px;}
.y5{bottom:1043.165100px;}
.y23{bottom:1043.165250px;}
.y43{bottom:1044.441450px;}
.yd0{bottom:1054.250400px;}
.y72{bottom:1061.691450px;}
.y4{bottom:1062.965100px;}
.y22{bottom:1062.965400px;}
.y42{bottom:1063.941450px;}
.ycf{bottom:1074.500400px;}
.y71{bottom:1081.941450px;}
.y41{bottom:1083.441450px;}
.yce{bottom:1094.750400px;}
.y70{bottom:1102.191450px;}
.y40{bottom:1102.941450px;}
.ycd{bottom:1115.000400px;}
.y3{bottom:1120.755750px;}
.y3f{bottom:1122.441450px;}
.y3e{bottom:1167.058200px;}
.y1{bottom:1174.874550px;}
.y3d{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;}
.h12{height:40.458984px;}
.h9{height:41.718750px;}
.h3{height:42.480000px;}
.hb{height:44.504883px;}
.h6{height:44.508000px;}
.h10{height:46.148438px;}
.h11{height:46.277344px;}
.hf{height:46.599609px;}
.h5{height:46.860000px;}
.h4{height:50.520000px;}
.hc{height:57.363281px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x3{left:106.299150px;}
.xf{left:114.803100px;}
.x8{left:119.055150px;}
.x18{left:131.589600px;}
.x4{left:137.332200px;}
.x7{left:140.314950px;}
.x10{left:148.818900px;}
.x14{left:157.398750px;}
.x5{left:167.477400px;}
.x6{left:217.131600px;}
.x1{left:323.616900px;}
.x16{left:433.824450px;}
.x17{left:435.904350px;}
.x13{left:437.671950px;}
.x2{left:439.054350px;}
.x11{left:457.086600px;}
.xd{left:470.123700px;}
.x19{left:482.376900px;}
.xc{left:491.383650px;}
.x9{left:493.391250px;}
.x12{left:499.606350px;}
.x15{left:508.186200px;}
.xa{left:525.697650px;}
.xb{left:567.918900px;}
.xe{left:577.037850px;}
@media print{
.v2{vertical-align:-14.080000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:17.600000pt;}
.ls6{letter-spacing:-1.173333pt;}
.ls2{letter-spacing:-0.853333pt;}
.ls8{letter-spacing:-0.586667pt;}
.ls3{letter-spacing:-0.426667pt;}
.ls5{letter-spacing:-0.293333pt;}
.ls1{letter-spacing:0.000000pt;}
.lsc{letter-spacing:0.880000pt;}
.lsd{letter-spacing:1.584000pt;}
.lsa{letter-spacing:3.009067pt;}
.ls9{letter-spacing:11.807467pt;}
.ls4{letter-spacing:12.498667pt;}
.lsb{letter-spacing:13.729600pt;}
.ls7{letter-spacing:14.847467pt;}
.ls0{letter-spacing:20.849600pt;}
.ws125{word-spacing:-60.250667pt;}
.ws124{word-spacing:-59.546667pt;}
.ws6{word-spacing:-58.666667pt;}
.ws65{word-spacing:-58.373333pt;}
.ws7c{word-spacing:-58.080000pt;}
.ws6a{word-spacing:-57.493333pt;}
.ws79{word-spacing:-49.045333pt;}
.ws4e{word-spacing:-48.986667pt;}
.wscb{word-spacing:-48.928000pt;}
.ws85{word-spacing:-48.869333pt;}
.ws109{word-spacing:-48.810667pt;}
.ws8{word-spacing:-48.752000pt;}
.ws49{word-spacing:-48.693333pt;}
.ws4d{word-spacing:-48.634667pt;}
.ws68{word-spacing:-48.576000pt;}
.wsee{word-spacing:-48.517333pt;}
.wsf1{word-spacing:-48.458667pt;}
.ws8d{word-spacing:-48.400000pt;}
.wsd4{word-spacing:-48.341333pt;}
.wsd9{word-spacing:-48.203200pt;}
.wsda{word-spacing:-48.165333pt;}
.ws46{word-spacing:-48.048000pt;}
.ws3a{word-spacing:-47.989333pt;}
.ws100{word-spacing:-47.930667pt;}
.ws64{word-spacing:-47.872000pt;}
.wse8{word-spacing:-47.813333pt;}
.ws110{word-spacing:-47.754667pt;}
.wse7{word-spacing:-47.696000pt;}
.wsce{word-spacing:-47.637333pt;}
.wscc{word-spacing:-47.578667pt;}
.ws51{word-spacing:-47.520000pt;}
.ws4a{word-spacing:-47.461333pt;}
.ws78{word-spacing:-47.402667pt;}
.ws9e{word-spacing:-47.344000pt;}
.ws103{word-spacing:-47.285333pt;}
.ws7b{word-spacing:-47.226667pt;}
.wsd6{word-spacing:-47.168000pt;}
.ws72{word-spacing:-47.109333pt;}
.wsfa{word-spacing:-47.050667pt;}
.ws52{word-spacing:-46.992000pt;}
.wsf7{word-spacing:-46.933333pt;}
.wsbc{word-spacing:-46.874667pt;}
.wsf6{word-spacing:-46.816000pt;}
.ws86{word-spacing:-46.698667pt;}
.ws8c{word-spacing:-46.640000pt;}
.ws3b{word-spacing:-46.581333pt;}
.wsd2{word-spacing:-46.478933pt;}
.wsd0{word-spacing:-46.464000pt;}
.ws9{word-spacing:-46.405333pt;}
.wscf{word-spacing:-46.346667pt;}
.wsa5{word-spacing:-46.288000pt;}
.ws5e{word-spacing:-46.229333pt;}
.ws50{word-spacing:-46.170667pt;}
.ws4f{word-spacing:-46.112000pt;}
.wsf0{word-spacing:-45.994667pt;}
.ws102{word-spacing:-45.936000pt;}
.wsed{word-spacing:-45.877333pt;}
.ws70{word-spacing:-45.818667pt;}
.ws113{word-spacing:-45.760000pt;}
.wsa1{word-spacing:-45.701333pt;}
.wsa4{word-spacing:-45.647467pt;}
.wse2{word-spacing:-45.642667pt;}
.wsa3{word-spacing:-45.617600pt;}
.ws76{word-spacing:-45.584000pt;}
.wsb9{word-spacing:-45.525333pt;}
.ws9a{word-spacing:-45.466667pt;}
.ws83{word-spacing:-45.408000pt;}
.wse4{word-spacing:-45.349333pt;}
.wsc6{word-spacing:-45.290667pt;}
.ws55{word-spacing:-45.232000pt;}
.wsba{word-spacing:-45.173333pt;}
.wsc9{word-spacing:-45.056000pt;}
.wsd3{word-spacing:-44.997333pt;}
.ws44{word-spacing:-44.938667pt;}
.ws9b{word-spacing:-44.880000pt;}
.ws5c{word-spacing:-44.821333pt;}
.ws8b{word-spacing:-44.762667pt;}
.ws4c{word-spacing:-44.704000pt;}
.ws5f{word-spacing:-44.586667pt;}
.wsa6{word-spacing:-44.528000pt;}
.ws71{word-spacing:-44.469333pt;}
.ws8a{word-spacing:-44.410667pt;}
.ws53{word-spacing:-44.352000pt;}
.wsb7{word-spacing:-44.293333pt;}
.ws5d{word-spacing:-44.176000pt;}
.wsf3{word-spacing:-44.058667pt;}
.wsc7{word-spacing:-44.000000pt;}
.wse6{word-spacing:-43.941333pt;}
.ws59{word-spacing:-43.882667pt;}
.ws6c{word-spacing:-43.824000pt;}
.ws11a{word-spacing:-43.765333pt;}
.ws7a{word-spacing:-43.706667pt;}
.ws69{word-spacing:-43.648000pt;}
.ws61{word-spacing:-43.589333pt;}
.ws116{word-spacing:-43.472000pt;}
.wsfd{word-spacing:-43.237333pt;}
.ws7{word-spacing:-43.061333pt;}
.wsa2{word-spacing:-43.002667pt;}
.wsfb{word-spacing:-42.944000pt;}
.ws63{word-spacing:-42.885333pt;}
.ws48{word-spacing:-42.826667pt;}
.ws62{word-spacing:-42.709333pt;}
.ws43{word-spacing:-42.592000pt;}
.wsa9{word-spacing:-42.533333pt;}
.wsde{word-spacing:-42.492267pt;}
.wsff{word-spacing:-42.474667pt;}
.ws56{word-spacing:-42.416000pt;}
.ws5{word-spacing:-42.357333pt;}
.ws2{word-spacing:-42.240000pt;}
.wsd7{word-spacing:-42.140267pt;}
.wsec{word-spacing:-42.005333pt;}
.ws47{word-spacing:-41.946667pt;}
.ws4{word-spacing:-41.770667pt;}
.wsbf{word-spacing:-41.653333pt;}
.ws118{word-spacing:-41.594667pt;}
.ws73{word-spacing:-41.536000pt;}
.wse3{word-spacing:-41.418667pt;}
.ws3e{word-spacing:-41.360000pt;}
.ws9c{word-spacing:-41.301333pt;}
.wsf8{word-spacing:-41.242667pt;}
.ws6b{word-spacing:-41.008000pt;}
.ws105{word-spacing:-40.773333pt;}
.ws9f{word-spacing:-40.656000pt;}
.wsf4{word-spacing:-40.597333pt;}
.wsdd{word-spacing:-40.480000pt;}
.wse9{word-spacing:-40.362667pt;}
.ws11f{word-spacing:-40.186667pt;}
.ws11d{word-spacing:-40.069333pt;}
.wsdc{word-spacing:-40.010667pt;}
.wsc0{word-spacing:-39.952000pt;}
.ws119{word-spacing:-39.893333pt;}
.ws11c{word-spacing:-39.717333pt;}
.ws3c{word-spacing:-39.658667pt;}
.ws7e{word-spacing:-39.600000pt;}
.wsd1{word-spacing:-39.541333pt;}
.ws89{word-spacing:-39.482667pt;}
.ws114{word-spacing:-39.365333pt;}
.ws111{word-spacing:-39.306667pt;}
.ws40{word-spacing:-39.248000pt;}
.wsc8{word-spacing:-39.072000pt;}
.wse1{word-spacing:-39.013333pt;}
.wsb6{word-spacing:-38.954667pt;}
.ws104{word-spacing:-38.602667pt;}
.ws77{word-spacing:-38.544000pt;}
.ws4b{word-spacing:-38.485333pt;}
.ws45{word-spacing:-38.426667pt;}
.ws82{word-spacing:-38.368000pt;}
.ws7d{word-spacing:-38.074667pt;}
.ws115{word-spacing:-38.016000pt;}
.wsd5{word-spacing:-37.957333pt;}
.ws41{word-spacing:-37.840000pt;}
.ws10a{word-spacing:-37.664000pt;}
.wseb{word-spacing:-37.605333pt;}
.ws74{word-spacing:-37.253333pt;}
.ws3f{word-spacing:-37.194667pt;}
.wsf9{word-spacing:-37.136000pt;}
.wsa0{word-spacing:-37.018667pt;}
.ws10b{word-spacing:-36.901333pt;}
.ws42{word-spacing:-36.725333pt;}
.wsfe{word-spacing:-36.549333pt;}
.ws6f{word-spacing:-36.490667pt;}
.ws107{word-spacing:-36.138667pt;}
.ws10c{word-spacing:-35.845333pt;}
.ws80{word-spacing:-35.728000pt;}
.wsf5{word-spacing:-35.141333pt;}
.ws84{word-spacing:-35.082667pt;}
.ws3d{word-spacing:-35.024000pt;}
.ws58{word-spacing:-34.906667pt;}
.ws88{word-spacing:-34.848000pt;}
.ws1{word-spacing:-34.666667pt;}
.ws122{word-spacing:-34.613333pt;}
.ws101{word-spacing:-34.554667pt;}
.wse5{word-spacing:-34.320000pt;}
.ws120{word-spacing:-34.261333pt;}
.ws75{word-spacing:-34.144000pt;}
.wsbe{word-spacing:-33.909333pt;}
.wsfc{word-spacing:-33.850667pt;}
.ws10e{word-spacing:-33.557333pt;}
.ws11e{word-spacing:-32.384000pt;}
.ws6e{word-spacing:-31.562667pt;}
.wsbd{word-spacing:-31.445333pt;}
.wsf2{word-spacing:-31.328000pt;}
.ws60{word-spacing:-31.152000pt;}
.ws123{word-spacing:-30.741333pt;}
.wsa8{word-spacing:-29.626667pt;}
.ws9d{word-spacing:-29.509333pt;}
.ws3{word-spacing:-27.514667pt;}
.ws121{word-spacing:-27.456000pt;}
.ws108{word-spacing:-26.928000pt;}
.ws87{word-spacing:-26.652267pt;}
.wsca{word-spacing:-25.754667pt;}
.ws128{word-spacing:-25.393067pt;}
.ws126{word-spacing:-25.392533pt;}
.wscd{word-spacing:-25.285333pt;}
.ws10d{word-spacing:-24.640000pt;}
.ws10f{word-spacing:-24.229333pt;}
.wsb8{word-spacing:-22.469333pt;}
.ws5b{word-spacing:-22.393067pt;}
.ws81{word-spacing:-21.706667pt;}
.ws127{word-spacing:-20.826667pt;}
.wsdb{word-spacing:-19.888000pt;}
.ws6d{word-spacing:-19.242667pt;}
.wsef{word-spacing:-15.488000pt;}
.ws7f{word-spacing:-15.099200pt;}
.ws54{word-spacing:-13.845333pt;}
.wsbb{word-spacing:-13.552000pt;}
.wsb5{word-spacing:-12.906667pt;}
.wse0{word-spacing:-12.496000pt;}
.ws5a{word-spacing:-11.909333pt;}
.wsa7{word-spacing:-11.733333pt;}
.ws11b{word-spacing:-10.912000pt;}
.ws0{word-spacing:-5.444267pt;}
.ws95{word-spacing:-2.405333pt;}
.ws20{word-spacing:-1.621333pt;}
.wsae{word-spacing:-1.525333pt;}
.ws94{word-spacing:-1.232000pt;}
.ws28{word-spacing:-0.768000pt;}
.ws32{word-spacing:-0.085333pt;}
.wsa{word-spacing:0.000000pt;}
.ws31{word-spacing:0.256000pt;}
.ws2c{word-spacing:0.512000pt;}
.ws129{word-spacing:0.586667pt;}
.ws38{word-spacing:0.853333pt;}
.ws2b{word-spacing:0.938667pt;}
.ws2a{word-spacing:1.109333pt;}
.wsab{word-spacing:1.173333pt;}
.wsf{word-spacing:1.450667pt;}
.ws33{word-spacing:1.792000pt;}
.wsc3{word-spacing:1.877333pt;}
.ws39{word-spacing:2.048000pt;}
.wsc4{word-spacing:2.053333pt;}
.ws10{word-spacing:2.261333pt;}
.ws92{word-spacing:2.346667pt;}
.wsc{word-spacing:2.517333pt;}
.ws37{word-spacing:2.986667pt;}
.wsdf{word-spacing:3.344000pt;}
.wsd{word-spacing:3.456000pt;}
.ws1d{word-spacing:3.498667pt;}
.ws117{word-spacing:3.520000pt;}
.ws2f{word-spacing:3.541333pt;}
.ws23{word-spacing:3.669333pt;}
.ws29{word-spacing:4.138667pt;}
.wse{word-spacing:4.266667pt;}
.ws21{word-spacing:4.480000pt;}
.ws2d{word-spacing:4.778667pt;}
.wsc2{word-spacing:5.104000pt;}
.wsb1{word-spacing:5.514667pt;}
.wsb0{word-spacing:5.690667pt;}
.ws1b{word-spacing:5.760000pt;}
.ws97{word-spacing:5.808000pt;}
.wsb4{word-spacing:6.042667pt;}
.ws36{word-spacing:6.144000pt;}
.ws16{word-spacing:6.400000pt;}
.wsb3{word-spacing:6.922667pt;}
.ws96{word-spacing:7.216000pt;}
.ws34{word-spacing:7.466667pt;}
.ws22{word-spacing:7.594667pt;}
.ws112{word-spacing:7.744000pt;}
.ws27{word-spacing:7.893333pt;}
.wsad{word-spacing:8.096000pt;}
.ws11{word-spacing:8.106667pt;}
.ws14{word-spacing:8.192000pt;}
.ws35{word-spacing:8.405333pt;}
.ws26{word-spacing:8.618667pt;}
.ws12{word-spacing:9.386667pt;}
.wsb{word-spacing:9.557333pt;}
.ws24{word-spacing:10.026667pt;}
.ws8e{word-spacing:10.032000pt;}
.ws67{word-spacing:10.090667pt;}
.ws66{word-spacing:10.501333pt;}
.ws13{word-spacing:10.794667pt;}
.ws99{word-spacing:11.968000pt;}
.wsc5{word-spacing:12.085333pt;}
.wsd8{word-spacing:12.202667pt;}
.wsaa{word-spacing:12.261333pt;}
.wsac{word-spacing:12.965333pt;}
.ws30{word-spacing:13.354667pt;}
.ws91{word-spacing:13.610667pt;}
.wsc1{word-spacing:13.728000pt;}
.ws1a{word-spacing:13.866667pt;}
.ws93{word-spacing:13.904000pt;}
.ws15{word-spacing:14.122667pt;}
.ws90{word-spacing:14.256000pt;}
.ws1f{word-spacing:14.464000pt;}
.wsb2{word-spacing:14.549333pt;}
.ws19{word-spacing:16.213333pt;}
.ws1e{word-spacing:17.194667pt;}
.ws8f{word-spacing:17.365333pt;}
.wsaf{word-spacing:18.010667pt;}
.ws25{word-spacing:18.218667pt;}
.ws2e{word-spacing:18.346667pt;}
.ws1c{word-spacing:19.925333pt;}
.ws18{word-spacing:23.466667pt;}
.ws17{word-spacing:25.045333pt;}
.ws106{word-spacing:27.984000pt;}
.wsea{word-spacing:29.239467pt;}
.ws98{word-spacing:29.274667pt;}
.ws57{word-spacing:31.856000pt;}
._15{margin-left:-43.412800pt;}
._1a{margin-left:-5.925333pt;}
._9{margin-left:-4.352000pt;}
._1{margin-left:-3.157333pt;}
._3{margin-left:-2.223360pt;}
._0{margin-left:-1.156267pt;}
._2{width:1.247147pt;}
._6{width:2.346667pt;}
._5{width:3.402667pt;}
._7{width:4.400000pt;}
._a{width:5.573333pt;}
._d{width:6.805333pt;}
._b{width:7.861333pt;}
._8{width:8.800000pt;}
._c{width:9.797333pt;}
._16{width:10.765333pt;}
._e{width:11.903467pt;}
._10{width:14.250133pt;}
._19{width:17.406400pt;}
._f{width:19.909333pt;}
._4{width:20.864000pt;}
._17{width:21.988267pt;}
._14{width:22.885867pt;}
._18{width:26.851733pt;}
._13{width:29.004800pt;}
._1b{width:33.274133pt;}
._12{width:35.557867pt;}
._11{width:43.548267pt;}
.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;}
.y0{bottom:0.000000pt;}
.y2{bottom:70.243067pt;}
.yb6{bottom:113.725733pt;}
.ycc{bottom:115.725733pt;}
.y6f{bottom:115.940933pt;}
.y28{bottom:116.505200pt;}
.y9d{bottom:118.607600pt;}
.y110{bottom:123.499867pt;}
.y122{bottom:126.166533pt;}
.yfd{bottom:127.111467pt;}
.y27{bottom:129.305200pt;}
.yb5{bottom:131.059067pt;}
.y6e{bottom:133.274267pt;}
.ycb{bottom:133.725733pt;}
.y9c{bottom:136.607600pt;}
.y10f{bottom:140.833200pt;}
.y26{bottom:142.105200pt;}
.y121{bottom:144.166533pt;}
.yfc{bottom:145.111467pt;}
.yb4{bottom:148.392400pt;}
.y6d{bottom:150.607600pt;}
.yca{bottom:151.725733pt;}
.y9b{bottom:154.607600pt;}
.y10e{bottom:158.166533pt;}
.y25{bottom:158.425200pt;}
.y120{bottom:162.166533pt;}
.yfb{bottom:163.111467pt;}
.yb3{bottom:165.725733pt;}
.y6c{bottom:167.940933pt;}
.yc9{bottom:169.725733pt;}
.y9a{bottom:172.607600pt;}
.y10d{bottom:175.499867pt;}
.y11f{bottom:180.166533pt;}
.yfa{bottom:181.111467pt;}
.yb2{bottom:183.059067pt;}
.y6b{bottom:185.274267pt;}
.yc8{bottom:187.725733pt;}
.y99{bottom:190.607600pt;}
.y10c{bottom:192.833200pt;}
.y11e{bottom:198.166533pt;}
.yf9{bottom:199.111467pt;}
.yb1{bottom:200.392400pt;}
.y6a{bottom:202.607600pt;}
.yc7{bottom:205.725733pt;}
.y98{bottom:208.607600pt;}
.y10b{bottom:210.166533pt;}
.y11d{bottom:216.166533pt;}
.yf8{bottom:217.111467pt;}
.yb0{bottom:217.725733pt;}
.y69{bottom:219.940933pt;}
.yc6{bottom:223.725733pt;}
.y33{bottom:224.114133pt;}
.y97{bottom:226.607600pt;}
.y10a{bottom:227.499867pt;}
.y11c{bottom:234.166533pt;}
.yaf{bottom:235.059067pt;}
.yf7{bottom:235.111467pt;}
.y3c{bottom:235.447467pt;}
.y68{bottom:237.274267pt;}
.y32{bottom:241.447467pt;}
.yc5{bottom:241.725733pt;}
.y96{bottom:244.607600pt;}
.y109{bottom:244.833200pt;}
.y11b{bottom:252.166533pt;}
.yae{bottom:252.392400pt;}
.yf6{bottom:253.111467pt;}
.y3b{bottom:253.447467pt;}
.y67{bottom:254.607600pt;}
.y31{bottom:258.780800pt;}
.yc4{bottom:259.725733pt;}
.y108{bottom:262.166533pt;}
.y95{bottom:262.607600pt;}
.yad{bottom:269.725733pt;}
.y11a{bottom:270.166533pt;}
.yf5{bottom:271.111467pt;}
.y3a{bottom:271.447467pt;}
.y66{bottom:271.940933pt;}
.y30{bottom:276.114133pt;}
.yc3{bottom:277.725733pt;}
.y107{bottom:279.499867pt;}
.y94{bottom:280.607600pt;}
.yac{bottom:287.059067pt;}
.y119{bottom:288.166533pt;}
.yf4{bottom:289.111467pt;}
.y65{bottom:289.274267pt;}
.y39{bottom:289.447467pt;}
.y2f{bottom:293.447467pt;}
.yc2{bottom:295.725733pt;}
.y106{bottom:296.833200pt;}
.y93{bottom:298.607600pt;}
.yab{bottom:304.392400pt;}
.y118{bottom:306.166533pt;}
.y64{bottom:306.607600pt;}
.yf3{bottom:307.111467pt;}
.y38{bottom:307.447467pt;}
.y2e{bottom:310.780800pt;}
.yc1{bottom:313.725733pt;}
.y105{bottom:314.166533pt;}
.y92{bottom:316.607600pt;}
.yaa{bottom:321.725733pt;}
.y63{bottom:323.940933pt;}
.y117{bottom:324.166533pt;}
.yf2{bottom:325.111467pt;}
.y37{bottom:325.447467pt;}
.y2d{bottom:328.114133pt;}
.y104{bottom:331.500000pt;}
.yc0{bottom:331.725733pt;}
.y91{bottom:334.607600pt;}
.ya9{bottom:339.059067pt;}
.y62{bottom:341.274267pt;}
.y116{bottom:342.166667pt;}
.yf1{bottom:343.111467pt;}
.y36{bottom:343.447467pt;}
.y2c{bottom:345.447467pt;}
.y103{bottom:348.833333pt;}
.ybf{bottom:349.725733pt;}
.ya8{bottom:356.392400pt;}
.y61{bottom:358.607600pt;}
.y90{bottom:360.166667pt;}
.yf0{bottom:361.111467pt;}
.y35{bottom:361.447467pt;}
.y2b{bottom:362.780800pt;}
.y102{bottom:366.166667pt;}
.ybe{bottom:367.725733pt;}
.ya7{bottom:373.725733pt;}
.y115{bottom:378.166667pt;}
.yef{bottom:379.111467pt;}
.y34{bottom:379.447467pt;}
.y2a{bottom:380.114133pt;}
.y60{bottom:383.500000pt;}
.ybd{bottom:385.725733pt;}
.y12d{bottom:388.347333pt;}
.ya6{bottom:391.059067pt;}
.y8f{bottom:396.166667pt;}
.yee{bottom:397.111467pt;}
.y101{bottom:400.833333pt;}
.ybc{bottom:403.725733pt;}
.y29{bottom:405.006533pt;}
.y12c{bottom:405.947333pt;}
.ya5{bottom:408.392400pt;}
.y8e{bottom:414.166667pt;}
.yed{bottom:415.111467pt;}
.y5f{bottom:418.166667pt;}
.ybb{bottom:421.725733pt;}
.y12b{bottom:423.547333pt;}
.ya4{bottom:425.725733pt;}
.y8d{bottom:432.166667pt;}
.yec{bottom:433.111467pt;}
.y5e{bottom:435.500000pt;}
.yba{bottom:439.725733pt;}
.y12a{bottom:441.147333pt;}
.ya3{bottom:443.059067pt;}
.y8c{bottom:450.166667pt;}
.yeb{bottom:451.111467pt;}
.y5d{bottom:452.833333pt;}
.yb9{bottom:457.725733pt;}
.y129{bottom:458.747333pt;}
.ya2{bottom:460.392400pt;}
.y21{bottom:464.234533pt;}
.y8b{bottom:468.166667pt;}
.yea{bottom:469.111467pt;}
.y5c{bottom:470.166667pt;}
.yb8{bottom:475.725733pt;}
.y128{bottom:476.347333pt;}
.y20{bottom:477.567867pt;}
.ya1{bottom:477.725733pt;}
.y8a{bottom:486.166667pt;}
.ye9{bottom:487.111467pt;}
.y5b{bottom:487.500000pt;}
.yb7{bottom:493.725733pt;}
.y127{bottom:493.947333pt;}
.ya0{bottom:495.059067pt;}
.y1f{bottom:498.460267pt;}
.y114{bottom:504.166667pt;}
.y5a{bottom:504.833333pt;}
.ye8{bottom:505.111467pt;}
.y126{bottom:511.547333pt;}
.y89{bottom:511.725733pt;}
.y1e{bottom:511.793600pt;}
.y9f{bottom:512.392400pt;}
.y100{bottom:522.166667pt;}
.ye7{bottom:523.111467pt;}
.y1d{bottom:525.126933pt;}
.y125{bottom:529.147333pt;}
.y59{bottom:529.725733pt;}
.y1c{bottom:538.460267pt;}
.yff{bottom:539.500000pt;}
.y113{bottom:540.166667pt;}
.ye6{bottom:541.111467pt;}
.y9e{bottom:547.059067pt;}
.y88{bottom:547.725733pt;}
.y1b{bottom:551.793600pt;}
.yfe{bottom:556.833333pt;}
.y123{bottom:557.828000pt;}
.y112{bottom:558.166667pt;}
.ye5{bottom:559.111467pt;}
.y58{bottom:564.392400pt;}
.y1a{bottom:565.126933pt;}
.y87{bottom:565.725733pt;}
.y111{bottom:576.166667pt;}
.ye4{bottom:577.111467pt;}
.y19{bottom:578.460267pt;}
.y124{bottom:580.153467pt;}
.y57{bottom:581.725733pt;}
.y86{bottom:583.725733pt;}
.y18{bottom:591.793600pt;}
.ye3{bottom:595.111467pt;}
.y56{bottom:599.059067pt;}
.y85{bottom:601.725733pt;}
.y17{bottom:605.126933pt;}
.ye2{bottom:613.111467pt;}
.y55{bottom:616.392400pt;}
.y16{bottom:618.460267pt;}
.y84{bottom:619.725733pt;}
.ye1{bottom:631.111467pt;}
.y15{bottom:631.793600pt;}
.y54{bottom:633.725733pt;}
.y83{bottom:637.725733pt;}
.y14{bottom:645.126933pt;}
.ye0{bottom:649.111467pt;}
.y53{bottom:651.059067pt;}
.y82{bottom:655.725733pt;}
.y13{bottom:658.460267pt;}
.ydf{bottom:667.111467pt;}
.y52{bottom:668.392400pt;}
.y12{bottom:671.793600pt;}
.y81{bottom:673.725733pt;}
.yde{bottom:685.111467pt;}
.y11{bottom:685.126933pt;}
.y51{bottom:685.725733pt;}
.y80{bottom:691.725733pt;}
.y10{bottom:698.460267pt;}
.y50{bottom:703.059067pt;}
.ydd{bottom:703.111467pt;}
.y7f{bottom:709.725733pt;}
.yf{bottom:711.793600pt;}
.y4f{bottom:720.392400pt;}
.ydc{bottom:721.111467pt;}
.ye{bottom:725.126933pt;}
.y7e{bottom:727.725733pt;}
.y4e{bottom:737.725733pt;}
.yd{bottom:738.460267pt;}
.ydb{bottom:739.111467pt;}
.y7d{bottom:745.725733pt;}
.yc{bottom:751.793600pt;}
.y4d{bottom:755.059067pt;}
.yda{bottom:757.111467pt;}
.y7c{bottom:763.725733pt;}
.yb{bottom:765.126933pt;}
.y4c{bottom:772.392400pt;}
.yd9{bottom:775.111467pt;}
.ya{bottom:778.460267pt;}
.y7b{bottom:781.725733pt;}
.y4b{bottom:789.725733pt;}
.y9{bottom:791.793600pt;}
.yd8{bottom:793.111467pt;}
.y7a{bottom:799.725733pt;}
.y8{bottom:805.126933pt;}
.y4a{bottom:807.059067pt;}
.yd7{bottom:811.111467pt;}
.y79{bottom:817.725733pt;}
.y7{bottom:818.460267pt;}
.y49{bottom:824.392400pt;}
.yd6{bottom:829.111467pt;}
.y78{bottom:835.725733pt;}
.y48{bottom:841.725733pt;}
.yd5{bottom:847.111467pt;}
.y77{bottom:853.725733pt;}
.y47{bottom:859.059067pt;}
.yd4{bottom:865.111467pt;}
.y76{bottom:871.725733pt;}
.y6{bottom:876.057867pt;}
.y24{bottom:876.058000pt;}
.y46{bottom:876.392400pt;}
.yd3{bottom:883.111467pt;}
.y75{bottom:889.725733pt;}
.y45{bottom:893.725733pt;}
.yd2{bottom:901.111467pt;}
.y74{bottom:907.725733pt;}
.y44{bottom:911.059067pt;}
.yd1{bottom:919.111467pt;}
.y73{bottom:925.725733pt;}
.y5{bottom:927.257867pt;}
.y23{bottom:927.258000pt;}
.y43{bottom:928.392400pt;}
.yd0{bottom:937.111467pt;}
.y72{bottom:943.725733pt;}
.y4{bottom:944.857867pt;}
.y22{bottom:944.858133pt;}
.y42{bottom:945.725733pt;}
.ycf{bottom:955.111467pt;}
.y71{bottom:961.725733pt;}
.y41{bottom:963.059067pt;}
.yce{bottom:973.111467pt;}
.y70{bottom:979.725733pt;}
.y40{bottom:980.392400pt;}
.ycd{bottom:991.111467pt;}
.y3{bottom:996.227333pt;}
.y3f{bottom:997.725733pt;}
.y3e{bottom:1037.385067pt;}
.y1{bottom:1044.332933pt;}
.y3d{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;}
.h12{height:35.963542pt;}
.h9{height:37.083333pt;}
.h3{height:37.760000pt;}
.hb{height:39.559896pt;}
.h6{height:39.562667pt;}
.h10{height:41.020833pt;}
.h11{height:41.135417pt;}
.hf{height:41.421875pt;}
.h5{height:41.653333pt;}
.h4{height:44.906667pt;}
.hc{height:50.989583pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x3{left:94.488133pt;}
.xf{left:102.047200pt;}
.x8{left:105.826800pt;}
.x18{left:116.968533pt;}
.x4{left:122.073067pt;}
.x7{left:124.724400pt;}
.x10{left:132.283467pt;}
.x14{left:139.910000pt;}
.x5{left:148.868800pt;}
.x6{left:193.005867pt;}
.x1{left:287.659467pt;}
.x16{left:385.621733pt;}
.x17{left:387.470533pt;}
.x13{left:389.041733pt;}
.x2{left:390.270533pt;}
.x11{left:406.299200pt;}
.xd{left:417.887733pt;}
.x19{left:428.779467pt;}
.xc{left:436.785467pt;}
.x9{left:438.570000pt;}
.x12{left:444.094533pt;}
.x15{left:451.721067pt;}
.xa{left:467.286800pt;}
.xb{left:504.816800pt;}
.xe{left:512.922533pt;}
}




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