
    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_51916c8050e4ff03d2d5a187.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.744000;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_ac802b69485a61d7e93d4bf1.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.132000;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_ac802b69485a61d7e93d4bf1.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.132000;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_582c884a7b6bc12ceb3bde6f.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.910645;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_cb2e6f60ff617ef56bae6bed.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.900391;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_e9b1b4d09709f97c797c9b98.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.908203;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_1713d9248b168e952a6920f4.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.093262;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_0ad874703d0fa8371d1339b5.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_3fb1da6487871758a6b01f13.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.745000;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_51916c8050e4ff03d2d5a187.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.744000;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_838123f73a5c0d4be27dfe34.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.893066;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_b4b3df09138dc5b9e264e4dc.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.900391;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_cde574ec3f50dcc7da883d4f.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_1c61d3513d48e2d88b9ec2ad.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.666504;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.984000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:19.980000px;}
.v3{vertical-align:21.978600px;}
.ls4{letter-spacing:-1.423686px;}
.ls5{letter-spacing:-1.035408px;}
.ls1{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.000600px;}
.ls6{letter-spacing:1.221000px;}
.ls9{letter-spacing:3.604200px;}
.ls7{letter-spacing:3.892800px;}
.ls8{letter-spacing:4.344000px;}
.lsc{letter-spacing:5.199600px;}
.lsa{letter-spacing:6.100800px;}
.lsb{letter-spacing:7.178400px;}
.ls0{letter-spacing:13.993800px;}
.ls3{letter-spacing:45.216000px;}
.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;}
}
.ws14{word-spacing:-16.500000px;}
.ws16{word-spacing:-15.000000px;}
.ws0{word-spacing:-13.500000px;}
.ws17{word-spacing:-12.000000px;}
.ws44{word-spacing:-11.550000px;}
.ws15{word-spacing:-9.619500px;}
.ws1{word-spacing:-9.450000px;}
.ws4a{word-spacing:-9.108000px;}
.ws57{word-spacing:-8.400000px;}
.ws35{word-spacing:-8.195814px;}
.ws2e{word-spacing:-7.920000px;}
.ws2{word-spacing:-6.996000px;}
.ws99{word-spacing:-6.732000px;}
.ws36{word-spacing:-5.960592px;}
.ws63{word-spacing:-5.478000px;}
.ws4b{word-spacing:-5.412000px;}
.ws5c{word-spacing:-4.752000px;}
.ws9a{word-spacing:-4.686000px;}
.wsb1{word-spacing:-4.488000px;}
.ws66{word-spacing:-4.224000px;}
.ws80{word-spacing:-4.158000px;}
.ws1b{word-spacing:-4.092000px;}
.ws53{word-spacing:-3.894000px;}
.wsb3{word-spacing:-3.696000px;}
.ws73{word-spacing:-3.630000px;}
.ws75{word-spacing:-3.498000px;}
.ws52{word-spacing:-3.300000px;}
.ws40{word-spacing:-3.036000px;}
.ws72{word-spacing:-2.838000px;}
.ws5d{word-spacing:-2.700000px;}
.ws9f{word-spacing:-2.508000px;}
.wsc{word-spacing:-2.430000px;}
.ws50{word-spacing:-2.376000px;}
.ws1c{word-spacing:-2.310000px;}
.wsaf{word-spacing:-2.280000px;}
.wsc0{word-spacing:-2.178000px;}
.ws1a{word-spacing:-2.112000px;}
.ws34{word-spacing:-2.016000px;}
.ws9d{word-spacing:-1.980000px;}
.ws6{word-spacing:-1.944000px;}
.ws4d{word-spacing:-1.914000px;}
.wsb5{word-spacing:-1.848000px;}
.ws1e{word-spacing:-1.782000px;}
.ws51{word-spacing:-1.716000px;}
.wsc7{word-spacing:-1.452000px;}
.ws39{word-spacing:-1.386000px;}
.ws93{word-spacing:-1.380000px;}
.wsc8{word-spacing:-1.320000px;}
.ws69{word-spacing:-1.254000px;}
.ws9c{word-spacing:-1.188000px;}
.ws4f{word-spacing:-1.122000px;}
.wsd0{word-spacing:-1.080000px;}
.ws23{word-spacing:-1.056000px;}
.ws59{word-spacing:-0.990000px;}
.wsa{word-spacing:-0.972000px;}
.ws76{word-spacing:-0.924000px;}
.ws82{word-spacing:-0.858000px;}
.wsb7{word-spacing:-0.792000px;}
.wsc9{word-spacing:-0.726000px;}
.ws86{word-spacing:-0.594000px;}
.ws2d{word-spacing:-0.528000px;}
.wsc3{word-spacing:-0.384000px;}
.ws5f{word-spacing:-0.360000px;}
.ws84{word-spacing:-0.264000px;}
.ws54{word-spacing:-0.198000px;}
.wsa5{word-spacing:-0.132000px;}
.ws13{word-spacing:-0.066000px;}
.wscb{word-spacing:-0.042000px;}
.ws3{word-spacing:0.000000px;}
.ws21{word-spacing:0.066000px;}
.ws5a{word-spacing:0.198000px;}
.ws7{word-spacing:0.216000px;}
.wsbd{word-spacing:0.330000px;}
.ws7f{word-spacing:0.396000px;}
.ws22{word-spacing:0.462000px;}
.ws79{word-spacing:0.528000px;}
.ws9e{word-spacing:0.594000px;}
.ws24{word-spacing:0.726000px;}
.ws28{word-spacing:0.780000px;}
.ws67{word-spacing:0.792000px;}
.ws77{word-spacing:0.924000px;}
.ws8e{word-spacing:0.990000px;}
.wsd7{word-spacing:1.020000px;}
.ws87{word-spacing:1.056000px;}
.ws27{word-spacing:1.140000px;}
.wsb6{word-spacing:1.188000px;}
.ws94{word-spacing:1.200000px;}
.ws3b{word-spacing:1.320000px;}
.wsc5{word-spacing:1.386000px;}
.ws33{word-spacing:1.518000px;}
.wsaa{word-spacing:1.650000px;}
.ws4e{word-spacing:1.716000px;}
.ws3a{word-spacing:1.782000px;}
.wsd3{word-spacing:1.800000px;}
.ws96{word-spacing:1.914000px;}
.ws60{word-spacing:1.920000px;}
.wsca{word-spacing:2.112000px;}
.wsac{word-spacing:2.178000px;}
.wsae{word-spacing:2.280000px;}
.ws92{word-spacing:2.340000px;}
.wsd4{word-spacing:2.400000px;}
.ws78{word-spacing:2.442000px;}
.wsb4{word-spacing:2.508000px;}
.wsd6{word-spacing:2.520000px;}
.ws6e{word-spacing:2.574000px;}
.ws26{word-spacing:2.760000px;}
.ws97{word-spacing:2.772000px;}
.ws2a{word-spacing:2.838000px;}
.ws19{word-spacing:2.904000px;}
.wsa3{word-spacing:3.036000px;}
.ws8{word-spacing:3.132000px;}
.ws3c{word-spacing:3.168000px;}
.ws1d{word-spacing:3.234000px;}
.wsba{word-spacing:3.300000px;}
.wsa0{word-spacing:3.432000px;}
.wsb2{word-spacing:3.498000px;}
.wsf{word-spacing:3.564000px;}
.ws8a{word-spacing:3.630000px;}
.ws8f{word-spacing:3.696000px;}
.wsa2{word-spacing:3.828000px;}
.ws49{word-spacing:3.894000px;}
.ws6d{word-spacing:3.960000px;}
.ws55{word-spacing:3.984000px;}
.ws64{word-spacing:4.026000px;}
.ws58{word-spacing:4.092000px;}
.ws74{word-spacing:4.290000px;}
.ws7c{word-spacing:4.356000px;}
.ws68{word-spacing:4.422000px;}
.ws41{word-spacing:4.464000px;}
.ws45{word-spacing:4.488000px;}
.ws20{word-spacing:4.554000px;}
.wsa6{word-spacing:4.620000px;}
.ws91{word-spacing:4.740000px;}
.ws83{word-spacing:4.752000px;}
.ws65{word-spacing:4.818000px;}
.wsd5{word-spacing:4.860000px;}
.ws29{word-spacing:4.884000px;}
.wsb0{word-spacing:5.016000px;}
.ws30{word-spacing:5.082000px;}
.ws42{word-spacing:5.088000px;}
.ws7b{word-spacing:5.148000px;}
.wsa8{word-spacing:5.214000px;}
.wsd9{word-spacing:5.220000px;}
.ws7d{word-spacing:5.412000px;}
.ws43{word-spacing:5.424000px;}
.ws38{word-spacing:5.544000px;}
.ws25{word-spacing:5.580000px;}
.ws9b{word-spacing:5.610000px;}
.ws2c{word-spacing:5.742000px;}
.wsc6{word-spacing:5.808000px;}
.wsb8{word-spacing:5.940000px;}
.ws71{word-spacing:6.006000px;}
.wsc2{word-spacing:6.072000px;}
.ws89{word-spacing:6.204000px;}
.ws7e{word-spacing:6.468000px;}
.ws95{word-spacing:6.480000px;}
.ws47{word-spacing:6.600000px;}
.wsa4{word-spacing:6.732000px;}
.ws5e{word-spacing:6.798000px;}
.ws56{word-spacing:6.816000px;}
.ws11{word-spacing:6.858000px;}
.wsc4{word-spacing:6.864000px;}
.wsbc{word-spacing:7.194000px;}
.ws31{word-spacing:7.200000px;}
.ws6b{word-spacing:7.326000px;}
.wsce{word-spacing:7.800000px;}
.ws8d{word-spacing:7.854000px;}
.ws81{word-spacing:7.986000px;}
.ws46{word-spacing:8.118000px;}
.wse{word-spacing:8.154000px;}
.wsb{word-spacing:8.208000px;}
.ws6f{word-spacing:8.316000px;}
.ws62{word-spacing:8.382000px;}
.ws6c{word-spacing:8.844000px;}
.ws88{word-spacing:8.910000px;}
.wsd8{word-spacing:9.120000px;}
.ws2b{word-spacing:9.240000px;}
.wsa9{word-spacing:9.306000px;}
.ws85{word-spacing:9.504000px;}
.wsab{word-spacing:9.702000px;}
.ws90{word-spacing:9.720000px;}
.wsa1{word-spacing:9.900000px;}
.ws98{word-spacing:9.966000px;}
.ws37{word-spacing:10.032000px;}
.wsad{word-spacing:10.080000px;}
.ws10{word-spacing:10.422000px;}
.ws1f{word-spacing:10.560000px;}
.ws8b{word-spacing:11.022000px;}
.wscd{word-spacing:11.340000px;}
.wsd2{word-spacing:11.580000px;}
.ws6a{word-spacing:11.748000px;}
.wscf{word-spacing:11.820000px;}
.ws8c{word-spacing:12.276000px;}
.ws7a{word-spacing:12.540000px;}
.wsbe{word-spacing:12.936000px;}
.ws4{word-spacing:12.948000px;}
.ws5{word-spacing:12.960000px;}
.ws4c{word-spacing:13.068000px;}
.ws2f{word-spacing:13.332000px;}
.wsd{word-spacing:13.446000px;}
.wsd1{word-spacing:13.620000px;}
.wsb9{word-spacing:13.728000px;}
.ws9{word-spacing:13.986000px;}
.ws3f{word-spacing:14.322000px;}
.ws32{word-spacing:14.520000px;}
.wscc{word-spacing:16.080000px;}
.ws48{word-spacing:17.226000px;}
.ws3d{word-spacing:17.622000px;}
.wsa7{word-spacing:20.196000px;}
.ws18{word-spacing:20.988000px;}
.ws70{word-spacing:21.516000px;}
.wsbb{word-spacing:21.582000px;}
.wsc1{word-spacing:22.836000px;}
.ws5b{word-spacing:23.364000px;}
.ws3e{word-spacing:30.228000px;}
.wsbf{word-spacing:31.878000px;}
.ws61{word-spacing:45.216000px;}
.ws12{word-spacing:73.200000px;}
._b{margin-left:-2211.040200px;}
._1b{margin-left:-45.051600px;}
._1f{margin-left:-9.589800px;}
._15{margin-left:-7.986000px;}
._2{margin-left:-6.263400px;}
._f{margin-left:-5.217600px;}
._7{margin-left:-4.167600px;}
._3{margin-left:-2.962800px;}
._1{margin-left:-1.552200px;}
._4{width:1.209600px;}
._6{width:2.323800px;}
._5{width:3.511800px;}
._11{width:4.546800px;}
._e{width:5.655000px;}
._9{width:6.842400px;}
._8{width:8.152800px;}
._10{width:9.199800px;}
._d{width:10.449000px;}
._c{width:11.794200px;}
._1e{width:12.804000px;}
._14{width:13.866600px;}
._16{width:15.153600px;}
._21{width:16.606800px;}
._12{width:17.635200px;}
._1c{width:20.655600px;}
._18{width:22.348800px;}
._1a{width:23.830200px;}
._1d{width:25.403400px;}
._20{width:29.752800px;}
._19{width:45.216000px;}
._a{width:59.184000px;}
._17{width:61.200000px;}
._13{width:1015.325400px;}
._0{width:1437.677400px;}
.fc1{color:rgb(248,248,248);}
.fc0{color:rgb(35,31,32);}
.fs7{font-size:27.984000px;}
.fsc{font-size:33.600000px;}
.fs3{font-size:34.980000px;}
.fs5{font-size:37.800000px;}
.fsa{font-size:38.478000px;}
.fs0{font-size:42.000000px;}
.fsb{font-size:46.200000px;}
.fs8{font-size:48.000000px;}
.fs4{font-size:54.000000px;}
.fs2{font-size:60.000000px;}
.fs9{font-size:66.000000px;}
.fs6{font-size:72.000000px;}
.fs1{font-size:78.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:44.944050px;}
.y20{bottom:74.409450px;}
.y96{bottom:78.405300px;}
.y50{bottom:78.405450px;}
.y114{bottom:78.417900px;}
.y95{bottom:88.809300px;}
.y7a{bottom:88.809450px;}
.y1f{bottom:92.805450px;}
.y113{bottom:96.417900px;}
.y4f{bottom:103.209450px;}
.y94{bottom:107.205300px;}
.ycf{bottom:107.205450px;}
.y175{bottom:113.517900px;}
.y112{bottom:114.417900px;}
.y93{bottom:117.609300px;}
.y79{bottom:117.609450px;}
.y4e{bottom:121.605450px;}
.y174{bottom:131.517900px;}
.yfc{bottom:131.976600px;}
.y4d{bottom:132.009450px;}
.y111{bottom:132.417900px;}
.y145{bottom:134.402100px;}
.y121{bottom:134.969100px;}
.y92{bottom:136.005300px;}
.y78{bottom:136.005450px;}
.y91{bottom:146.409300px;}
.y173{bottom:149.067900px;}
.yfb{bottom:149.976600px;}
.y4c{bottom:150.405450px;}
.y110{bottom:150.417900px;}
.y14d{bottom:151.976850px;}
.y144{bottom:152.402100px;}
.y120{bottom:152.969100px;}
.y90{bottom:160.809300px;}
.y4b{bottom:164.805450px;}
.y172{bottom:166.617900px;}
.yfa{bottom:167.976600px;}
.y12c{bottom:167.992650px;}
.y10f{bottom:168.417900px;}
.y14c{bottom:169.977000px;}
.ya8{bottom:170.968950px;}
.y11f{bottom:170.969100px;}
.y8f{bottom:179.205300px;}
.y124{bottom:179.205450px;}
.y171{bottom:184.167900px;}
.yf9{bottom:185.976600px;}
.y12b{bottom:185.992650px;}
.y9b{bottom:186.417900px;}
.y14b{bottom:187.977000px;}
.y143{bottom:188.260350px;}
.yce{bottom:188.450100px;}
.ya7{bottom:188.968950px;}
.y11e{bottom:188.969100px;}
.y8e{bottom:189.609300px;}
.y123{bottom:193.605450px;}
.y170{bottom:201.717900px;}
.y1e{bottom:202.017300px;}
.yf8{bottom:203.976600px;}
.y12a{bottom:203.992650px;}
.y9a{bottom:204.417900px;}
.y77{bottom:205.977000px;}
.ycd{bottom:206.450100px;}
.ya6{bottom:206.968950px;}
.y11d{bottom:206.969100px;}
.y8d{bottom:208.005300px;}
.y122{bottom:208.005450px;}
.y1d{bottom:218.217300px;}
.y8c{bottom:218.409300px;}
.y16f{bottom:219.267900px;}
.yf7{bottom:221.976600px;}
.y129{bottom:221.992650px;}
.y99{bottom:222.417900px;}
.y76{bottom:223.977000px;}
.y4a{bottom:224.384550px;}
.ycc{bottom:224.450100px;}
.y11c{bottom:224.969100px;}
.y8b{bottom:232.809300px;}
.y16e{bottom:236.817900px;}
.yf6{bottom:239.976600px;}
.y128{bottom:239.992650px;}
.y10e{bottom:240.417900px;}
.ya5{bottom:241.976850px;}
.y75{bottom:241.977000px;}
.y49{bottom:242.384550px;}
.ycb{bottom:242.450100px;}
.y11b{bottom:242.969100px;}
.y8a{bottom:247.209300px;}
.y1c{bottom:249.417300px;}
.y16d{bottom:254.367900px;}
.yf5{bottom:257.976600px;}
.y127{bottom:257.992650px;}
.y98{bottom:258.276150px;}
.y10d{bottom:258.417900px;}
.ya4{bottom:259.976850px;}
.y74{bottom:259.977000px;}
.y48{bottom:260.384550px;}
.yca{bottom:260.450100px;}
.y11a{bottom:260.969100px;}
.y89{bottom:261.609300px;}
.y1b{bottom:264.417300px;}
.y16c{bottom:271.917900px;}
.yf4{bottom:275.976600px;}
.y126{bottom:275.992650px;}
.y97{bottom:276.276150px;}
.y10c{bottom:276.417900px;}
.ya3{bottom:277.976850px;}
.y73{bottom:277.977000px;}
.y47{bottom:278.384550px;}
.yc9{bottom:278.450100px;}
.y119{bottom:278.969100px;}
.y1a{bottom:279.417300px;}
.y88{bottom:280.005300px;}
.y16b{bottom:289.467900px;}
.yf3{bottom:293.976600px;}
.y125{bottom:293.992650px;}
.y19{bottom:294.417300px;}
.y10b{bottom:294.417900px;}
.y14a{bottom:294.984750px;}
.ya2{bottom:295.976850px;}
.y72{bottom:295.977000px;}
.yc8{bottom:296.450100px;}
.y16a{bottom:307.017900px;}
.y18{bottom:309.417300px;}
.yf2{bottom:311.976600px;}
.y87{bottom:311.992650px;}
.y10a{bottom:312.417900px;}
.y149{bottom:312.984750px;}
.y46{bottom:313.392450px;}
.ya1{bottom:313.976850px;}
.y71{bottom:313.977000px;}
.yc7{bottom:314.450100px;}
.y17{bottom:324.417300px;}
.y169{bottom:324.567900px;}
.yf1{bottom:329.976600px;}
.y86{bottom:329.992650px;}
.y109{bottom:330.417900px;}
.y148{bottom:330.984750px;}
.y45{bottom:331.392450px;}
.ya0{bottom:331.976850px;}
.y70{bottom:331.977000px;}
.yc6{bottom:332.450100px;}
.y168{bottom:342.117900px;}
.yf0{bottom:347.976600px;}
.y85{bottom:347.992650px;}
.y108{bottom:348.417900px;}
.y147{bottom:348.984750px;}
.y44{bottom:349.392450px;}
.y9f{bottom:349.976850px;}
.y6f{bottom:349.977000px;}
.yc5{bottom:350.450100px;}
.y167{bottom:359.667900px;}
.yef{bottom:365.976600px;}
.y84{bottom:365.992650px;}
.y107{bottom:366.417900px;}
.y146{bottom:366.984750px;}
.y43{bottom:367.392450px;}
.y6e{bottom:367.977000px;}
.yc4{bottom:368.450100px;}
.y16{bottom:369.417300px;}
.y166{bottom:377.217900px;}
.yee{bottom:383.976600px;}
.y83{bottom:383.992650px;}
.y15{bottom:384.417300px;}
.y106{bottom:384.417900px;}
.y9e{bottom:384.984750px;}
.y42{bottom:385.392450px;}
.y6d{bottom:385.977000px;}
.yc3{bottom:386.450100px;}
.y165{bottom:394.767900px;}
.y14{bottom:399.417300px;}
.yed{bottom:401.976600px;}
.y82{bottom:401.992650px;}
.y105{bottom:402.417900px;}
.y9d{bottom:402.984750px;}
.y41{bottom:403.392450px;}
.y6c{bottom:403.977000px;}
.yc2{bottom:404.450100px;}
.y164{bottom:412.317900px;}
.y13{bottom:414.417300px;}
.yec{bottom:419.976600px;}
.y81{bottom:419.992650px;}
.y104{bottom:420.417900px;}
.y9c{bottom:420.984750px;}
.y40{bottom:421.392450px;}
.y118{bottom:421.977000px;}
.yc1{bottom:422.450100px;}
.y12{bottom:429.417300px;}
.y163{bottom:429.867900px;}
.yeb{bottom:437.976600px;}
.y80{bottom:437.992650px;}
.y103{bottom:438.417900px;}
.y6b{bottom:438.984750px;}
.y117{bottom:439.977000px;}
.yc0{bottom:440.450100px;}
.y11{bottom:444.417300px;}
.y162{bottom:447.417900px;}
.yea{bottom:455.976600px;}
.y7f{bottom:455.992650px;}
.y3f{bottom:456.400200px;}
.y102{bottom:456.417900px;}
.y6a{bottom:456.984750px;}
.y142{bottom:457.977000px;}
.ybf{bottom:458.450100px;}
.y10{bottom:459.417300px;}
.y161{bottom:464.967900px;}
.ye9{bottom:473.976600px;}
.y7e{bottom:473.992650px;}
.y3e{bottom:474.400200px;}
.y101{bottom:474.417900px;}
.y69{bottom:474.984750px;}
.y141{bottom:475.977000px;}
.ybe{bottom:476.450100px;}
.y160{bottom:482.517900px;}
.yf{bottom:489.417300px;}
.ye8{bottom:491.976600px;}
.y7d{bottom:491.992650px;}
.y3d{bottom:492.400200px;}
.y100{bottom:492.417900px;}
.y68{bottom:492.984750px;}
.y140{bottom:493.977000px;}
.ybd{bottom:494.450100px;}
.y15f{bottom:500.067900px;}
.ye7{bottom:509.976600px;}
.y7c{bottom:509.992650px;}
.y3c{bottom:510.400200px;}
.yff{bottom:510.417900px;}
.y67{bottom:510.984750px;}
.ye{bottom:511.017300px;}
.y13f{bottom:511.977000px;}
.ybc{bottom:512.450100px;}
.y15e{bottom:517.617900px;}
.ye6{bottom:527.976600px;}
.y7b{bottom:527.992650px;}
.y3b{bottom:528.400200px;}
.y116{bottom:528.984750px;}
.y13e{bottom:529.977000px;}
.ybb{bottom:530.450100px;}
.y15d{bottom:535.167900px;}
.ye5{bottom:545.976600px;}
.y66{bottom:545.992650px;}
.yfe{bottom:546.276150px;}
.y3a{bottom:546.400200px;}
.y115{bottom:546.984750px;}
.y13d{bottom:547.977000px;}
.yba{bottom:548.450100px;}
.y15c{bottom:552.717900px;}
.yd{bottom:562.617300px;}
.ye4{bottom:563.976600px;}
.y65{bottom:563.992650px;}
.yfd{bottom:564.276150px;}
.y39{bottom:564.400200px;}
.y13c{bottom:565.976850px;}
.yb9{bottom:566.450100px;}
.y15b{bottom:570.267900px;}
.yc{bottom:577.617300px;}
.ye3{bottom:581.976600px;}
.y64{bottom:581.992650px;}
.y38{bottom:582.400200px;}
.y13b{bottom:583.976850px;}
.yb8{bottom:584.450100px;}
.y15a{bottom:587.817900px;}
.yb{bottom:592.617300px;}
.ye2{bottom:599.976600px;}
.y63{bottom:599.992650px;}
.y37{bottom:600.400200px;}
.y13a{bottom:601.976850px;}
.yb7{bottom:602.450100px;}
.y159{bottom:605.367900px;}
.ya{bottom:607.617300px;}
.ye1{bottom:617.976600px;}
.y62{bottom:617.992650px;}
.y36{bottom:618.400200px;}
.y139{bottom:619.976850px;}
.yb6{bottom:620.450100px;}
.y9{bottom:622.617300px;}
.y158{bottom:622.917900px;}
.ye0{bottom:635.976600px;}
.y61{bottom:635.992650px;}
.y35{bottom:636.400200px;}
.y8{bottom:637.617300px;}
.y138{bottom:637.976850px;}
.y157{bottom:640.467900px;}
.y7{bottom:652.617300px;}
.ydf{bottom:653.976600px;}
.y60{bottom:653.992650px;}
.y34{bottom:654.400200px;}
.y137{bottom:655.976850px;}
.yb5{bottom:656.308350px;}
.y156{bottom:658.017900px;}
.y6{bottom:667.617300px;}
.yde{bottom:671.976600px;}
.y5f{bottom:671.992650px;}
.y33{bottom:672.400200px;}
.y136{bottom:673.976850px;}
.yb4{bottom:674.308350px;}
.y155{bottom:675.567900px;}
.ydd{bottom:689.976600px;}
.y5e{bottom:689.992650px;}
.y32{bottom:690.400200px;}
.y135{bottom:691.976850px;}
.y154{bottom:693.117900px;}
.y5{bottom:697.617300px;}
.ydc{bottom:707.976600px;}
.y5d{bottom:707.992650px;}
.y31{bottom:708.400200px;}
.y180{bottom:709.032750px;}
.y153{bottom:710.667900px;}
.ydb{bottom:725.976600px;}
.y5c{bottom:725.992650px;}
.y30{bottom:726.400200px;}
.y134{bottom:726.984900px;}
.y17f{bottom:727.032750px;}
.yb3{bottom:728.024850px;}
.y152{bottom:728.217900px;}
.yda{bottom:743.976600px;}
.y5b{bottom:743.992650px;}
.y2f{bottom:744.400200px;}
.y133{bottom:744.984750px;}
.y17e{bottom:745.032750px;}
.y4{bottom:745.617300px;}
.y151{bottom:745.767900px;}
.yb2{bottom:746.024850px;}
.yd9{bottom:761.976600px;}
.y5a{bottom:761.992650px;}
.y2e{bottom:762.400200px;}
.y132{bottom:762.984750px;}
.y17d{bottom:763.032750px;}
.y150{bottom:763.317900px;}
.yb1{bottom:764.024850px;}
.y3{bottom:778.617300px;}
.yd8{bottom:779.976600px;}
.y59{bottom:779.992650px;}
.y2d{bottom:780.400200px;}
.y14f{bottom:780.867900px;}
.y131{bottom:780.984900px;}
.y17c{bottom:781.032750px;}
.yb0{bottom:782.024850px;}
.yd7{bottom:797.976600px;}
.y58{bottom:797.992650px;}
.y2c{bottom:798.400200px;}
.y130{bottom:798.984900px;}
.y17b{bottom:799.032750px;}
.yaf{bottom:800.024850px;}
.y2{bottom:802.017300px;}
.yd6{bottom:815.976600px;}
.y57{bottom:815.992650px;}
.y14e{bottom:816.276150px;}
.y2b{bottom:816.400200px;}
.y12f{bottom:816.984900px;}
.y17a{bottom:817.032750px;}
.yae{bottom:818.024850px;}
.yd5{bottom:833.976600px;}
.y56{bottom:833.992650px;}
.y2a{bottom:834.400200px;}
.y12e{bottom:834.984900px;}
.y179{bottom:835.032750px;}
.yad{bottom:836.024850px;}
.yd4{bottom:851.976600px;}
.y55{bottom:851.992650px;}
.y29{bottom:852.400200px;}
.y12d{bottom:852.984900px;}
.y178{bottom:853.032750px;}
.yac{bottom:854.024850px;}
.y23{bottom:866.641500px;}
.yd3{bottom:869.976600px;}
.y54{bottom:869.992650px;}
.y28{bottom:870.400200px;}
.y177{bottom:871.032750px;}
.yab{bottom:872.024850px;}
.yd2{bottom:887.976600px;}
.y53{bottom:887.992650px;}
.y176{bottom:889.032750px;}
.y22{bottom:897.841500px;}
.yd1{bottom:905.976600px;}
.y52{bottom:905.992650px;}
.y27{bottom:906.258600px;}
.yaa{bottom:907.032750px;}
.y21{bottom:912.241500px;}
.yd0{bottom:923.976600px;}
.y51{bottom:923.992650px;}
.y26{bottom:924.258600px;}
.ya9{bottom:925.032750px;}
.y24{bottom:945.503700px;}
.y25{bottom:963.070800px;}
.ha{height:19.443961px;}
.h19{height:24.554320px;}
.h15{height:26.133188px;}
.h5{height:29.182617px;}
.hb{height:33.351562px;}
.h6{height:37.520508px;}
.h2{height:38.724000px;}
.h13{height:41.689453px;}
.h16{height:42.117188px;}
.hd{height:44.256000px;}
.h4{height:44.284951px;}
.he{height:45.181641px;}
.h17{height:45.826172px;}
.h11{height:45.858398px;}
.h7{height:47.381836px;}
.h18{height:48.713446px;}
.hf{height:48.714046px;}
.h9{height:50.027344px;}
.h14{height:52.646484px;}
.h3{height:54.196289px;}
.hc{height:55.320000px;}
.h12{height:55.740190px;}
.h10{height:57.911133px;}
.h8{height:63.175781px;}
.h0{height:1020.472500px;}
.h1{height:1020.750000px;}
.w0{width:722.835000px;}
.w1{width:723.000000px;}
.x0{left:0.000000px;}
.x1{left:85.039350px;}
.x2{left:94.606350px;}
.x5{left:106.299150px;}
.x4{left:350.550900px;}
.x3{left:554.632500px;}
@media print{
.v2{vertical-align:-14.208000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:17.760000pt;}
.v3{vertical-align:19.536533pt;}
.ls4{letter-spacing:-1.265499pt;}
.ls5{letter-spacing:-0.920363pt;}
.ls1{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.000533pt;}
.ls6{letter-spacing:1.085333pt;}
.ls9{letter-spacing:3.203733pt;}
.ls7{letter-spacing:3.460267pt;}
.ls8{letter-spacing:3.861333pt;}
.lsc{letter-spacing:4.621867pt;}
.lsa{letter-spacing:5.422933pt;}
.lsb{letter-spacing:6.380800pt;}
.ls0{letter-spacing:12.438933pt;}
.ls3{letter-spacing:40.192000pt;}
.ws14{word-spacing:-14.666667pt;}
.ws16{word-spacing:-13.333333pt;}
.ws0{word-spacing:-12.000000pt;}
.ws17{word-spacing:-10.666667pt;}
.ws44{word-spacing:-10.266667pt;}
.ws15{word-spacing:-8.550667pt;}
.ws1{word-spacing:-8.400000pt;}
.ws4a{word-spacing:-8.096000pt;}
.ws57{word-spacing:-7.466667pt;}
.ws35{word-spacing:-7.285168pt;}
.ws2e{word-spacing:-7.040000pt;}
.ws2{word-spacing:-6.218667pt;}
.ws99{word-spacing:-5.984000pt;}
.ws36{word-spacing:-5.298304pt;}
.ws63{word-spacing:-4.869333pt;}
.ws4b{word-spacing:-4.810667pt;}
.ws5c{word-spacing:-4.224000pt;}
.ws9a{word-spacing:-4.165333pt;}
.wsb1{word-spacing:-3.989333pt;}
.ws66{word-spacing:-3.754667pt;}
.ws80{word-spacing:-3.696000pt;}
.ws1b{word-spacing:-3.637333pt;}
.ws53{word-spacing:-3.461333pt;}
.wsb3{word-spacing:-3.285333pt;}
.ws73{word-spacing:-3.226667pt;}
.ws75{word-spacing:-3.109333pt;}
.ws52{word-spacing:-2.933333pt;}
.ws40{word-spacing:-2.698667pt;}
.ws72{word-spacing:-2.522667pt;}
.ws5d{word-spacing:-2.400000pt;}
.ws9f{word-spacing:-2.229333pt;}
.wsc{word-spacing:-2.160000pt;}
.ws50{word-spacing:-2.112000pt;}
.ws1c{word-spacing:-2.053333pt;}
.wsaf{word-spacing:-2.026667pt;}
.wsc0{word-spacing:-1.936000pt;}
.ws1a{word-spacing:-1.877333pt;}
.ws34{word-spacing:-1.792000pt;}
.ws9d{word-spacing:-1.760000pt;}
.ws6{word-spacing:-1.728000pt;}
.ws4d{word-spacing:-1.701333pt;}
.wsb5{word-spacing:-1.642667pt;}
.ws1e{word-spacing:-1.584000pt;}
.ws51{word-spacing:-1.525333pt;}
.wsc7{word-spacing:-1.290667pt;}
.ws39{word-spacing:-1.232000pt;}
.ws93{word-spacing:-1.226667pt;}
.wsc8{word-spacing:-1.173333pt;}
.ws69{word-spacing:-1.114667pt;}
.ws9c{word-spacing:-1.056000pt;}
.ws4f{word-spacing:-0.997333pt;}
.wsd0{word-spacing:-0.960000pt;}
.ws23{word-spacing:-0.938667pt;}
.ws59{word-spacing:-0.880000pt;}
.wsa{word-spacing:-0.864000pt;}
.ws76{word-spacing:-0.821333pt;}
.ws82{word-spacing:-0.762667pt;}
.wsb7{word-spacing:-0.704000pt;}
.wsc9{word-spacing:-0.645333pt;}
.ws86{word-spacing:-0.528000pt;}
.ws2d{word-spacing:-0.469333pt;}
.wsc3{word-spacing:-0.341333pt;}
.ws5f{word-spacing:-0.320000pt;}
.ws84{word-spacing:-0.234667pt;}
.ws54{word-spacing:-0.176000pt;}
.wsa5{word-spacing:-0.117333pt;}
.ws13{word-spacing:-0.058667pt;}
.wscb{word-spacing:-0.037333pt;}
.ws3{word-spacing:0.000000pt;}
.ws21{word-spacing:0.058667pt;}
.ws5a{word-spacing:0.176000pt;}
.ws7{word-spacing:0.192000pt;}
.wsbd{word-spacing:0.293333pt;}
.ws7f{word-spacing:0.352000pt;}
.ws22{word-spacing:0.410667pt;}
.ws79{word-spacing:0.469333pt;}
.ws9e{word-spacing:0.528000pt;}
.ws24{word-spacing:0.645333pt;}
.ws28{word-spacing:0.693333pt;}
.ws67{word-spacing:0.704000pt;}
.ws77{word-spacing:0.821333pt;}
.ws8e{word-spacing:0.880000pt;}
.wsd7{word-spacing:0.906667pt;}
.ws87{word-spacing:0.938667pt;}
.ws27{word-spacing:1.013333pt;}
.wsb6{word-spacing:1.056000pt;}
.ws94{word-spacing:1.066667pt;}
.ws3b{word-spacing:1.173333pt;}
.wsc5{word-spacing:1.232000pt;}
.ws33{word-spacing:1.349333pt;}
.wsaa{word-spacing:1.466667pt;}
.ws4e{word-spacing:1.525333pt;}
.ws3a{word-spacing:1.584000pt;}
.wsd3{word-spacing:1.600000pt;}
.ws96{word-spacing:1.701333pt;}
.ws60{word-spacing:1.706667pt;}
.wsca{word-spacing:1.877333pt;}
.wsac{word-spacing:1.936000pt;}
.wsae{word-spacing:2.026667pt;}
.ws92{word-spacing:2.080000pt;}
.wsd4{word-spacing:2.133333pt;}
.ws78{word-spacing:2.170667pt;}
.wsb4{word-spacing:2.229333pt;}
.wsd6{word-spacing:2.240000pt;}
.ws6e{word-spacing:2.288000pt;}
.ws26{word-spacing:2.453333pt;}
.ws97{word-spacing:2.464000pt;}
.ws2a{word-spacing:2.522667pt;}
.ws19{word-spacing:2.581333pt;}
.wsa3{word-spacing:2.698667pt;}
.ws8{word-spacing:2.784000pt;}
.ws3c{word-spacing:2.816000pt;}
.ws1d{word-spacing:2.874667pt;}
.wsba{word-spacing:2.933333pt;}
.wsa0{word-spacing:3.050667pt;}
.wsb2{word-spacing:3.109333pt;}
.wsf{word-spacing:3.168000pt;}
.ws8a{word-spacing:3.226667pt;}
.ws8f{word-spacing:3.285333pt;}
.wsa2{word-spacing:3.402667pt;}
.ws49{word-spacing:3.461333pt;}
.ws6d{word-spacing:3.520000pt;}
.ws55{word-spacing:3.541333pt;}
.ws64{word-spacing:3.578667pt;}
.ws58{word-spacing:3.637333pt;}
.ws74{word-spacing:3.813333pt;}
.ws7c{word-spacing:3.872000pt;}
.ws68{word-spacing:3.930667pt;}
.ws41{word-spacing:3.968000pt;}
.ws45{word-spacing:3.989333pt;}
.ws20{word-spacing:4.048000pt;}
.wsa6{word-spacing:4.106667pt;}
.ws91{word-spacing:4.213333pt;}
.ws83{word-spacing:4.224000pt;}
.ws65{word-spacing:4.282667pt;}
.wsd5{word-spacing:4.320000pt;}
.ws29{word-spacing:4.341333pt;}
.wsb0{word-spacing:4.458667pt;}
.ws30{word-spacing:4.517333pt;}
.ws42{word-spacing:4.522667pt;}
.ws7b{word-spacing:4.576000pt;}
.wsa8{word-spacing:4.634667pt;}
.wsd9{word-spacing:4.640000pt;}
.ws7d{word-spacing:4.810667pt;}
.ws43{word-spacing:4.821333pt;}
.ws38{word-spacing:4.928000pt;}
.ws25{word-spacing:4.960000pt;}
.ws9b{word-spacing:4.986667pt;}
.ws2c{word-spacing:5.104000pt;}
.wsc6{word-spacing:5.162667pt;}
.wsb8{word-spacing:5.280000pt;}
.ws71{word-spacing:5.338667pt;}
.wsc2{word-spacing:5.397333pt;}
.ws89{word-spacing:5.514667pt;}
.ws7e{word-spacing:5.749333pt;}
.ws95{word-spacing:5.760000pt;}
.ws47{word-spacing:5.866667pt;}
.wsa4{word-spacing:5.984000pt;}
.ws5e{word-spacing:6.042667pt;}
.ws56{word-spacing:6.058667pt;}
.ws11{word-spacing:6.096000pt;}
.wsc4{word-spacing:6.101333pt;}
.wsbc{word-spacing:6.394667pt;}
.ws31{word-spacing:6.400000pt;}
.ws6b{word-spacing:6.512000pt;}
.wsce{word-spacing:6.933333pt;}
.ws8d{word-spacing:6.981333pt;}
.ws81{word-spacing:7.098667pt;}
.ws46{word-spacing:7.216000pt;}
.wse{word-spacing:7.248000pt;}
.wsb{word-spacing:7.296000pt;}
.ws6f{word-spacing:7.392000pt;}
.ws62{word-spacing:7.450667pt;}
.ws6c{word-spacing:7.861333pt;}
.ws88{word-spacing:7.920000pt;}
.wsd8{word-spacing:8.106667pt;}
.ws2b{word-spacing:8.213333pt;}
.wsa9{word-spacing:8.272000pt;}
.ws85{word-spacing:8.448000pt;}
.wsab{word-spacing:8.624000pt;}
.ws90{word-spacing:8.640000pt;}
.wsa1{word-spacing:8.800000pt;}
.ws98{word-spacing:8.858667pt;}
.ws37{word-spacing:8.917333pt;}
.wsad{word-spacing:8.960000pt;}
.ws10{word-spacing:9.264000pt;}
.ws1f{word-spacing:9.386667pt;}
.ws8b{word-spacing:9.797333pt;}
.wscd{word-spacing:10.080000pt;}
.wsd2{word-spacing:10.293333pt;}
.ws6a{word-spacing:10.442667pt;}
.wscf{word-spacing:10.506667pt;}
.ws8c{word-spacing:10.912000pt;}
.ws7a{word-spacing:11.146667pt;}
.wsbe{word-spacing:11.498667pt;}
.ws4{word-spacing:11.509333pt;}
.ws5{word-spacing:11.520000pt;}
.ws4c{word-spacing:11.616000pt;}
.ws2f{word-spacing:11.850667pt;}
.wsd{word-spacing:11.952000pt;}
.wsd1{word-spacing:12.106667pt;}
.wsb9{word-spacing:12.202667pt;}
.ws9{word-spacing:12.432000pt;}
.ws3f{word-spacing:12.730667pt;}
.ws32{word-spacing:12.906667pt;}
.wscc{word-spacing:14.293333pt;}
.ws48{word-spacing:15.312000pt;}
.ws3d{word-spacing:15.664000pt;}
.wsa7{word-spacing:17.952000pt;}
.ws18{word-spacing:18.656000pt;}
.ws70{word-spacing:19.125333pt;}
.wsbb{word-spacing:19.184000pt;}
.wsc1{word-spacing:20.298667pt;}
.ws5b{word-spacing:20.768000pt;}
.ws3e{word-spacing:26.869333pt;}
.wsbf{word-spacing:28.336000pt;}
.ws61{word-spacing:40.192000pt;}
.ws12{word-spacing:65.066667pt;}
._b{margin-left:-1965.369067pt;}
._1b{margin-left:-40.045867pt;}
._1f{margin-left:-8.524267pt;}
._15{margin-left:-7.098667pt;}
._2{margin-left:-5.567467pt;}
._f{margin-left:-4.637867pt;}
._7{margin-left:-3.704533pt;}
._3{margin-left:-2.633600pt;}
._1{margin-left:-1.379733pt;}
._4{width:1.075200pt;}
._6{width:2.065600pt;}
._5{width:3.121600pt;}
._11{width:4.041600pt;}
._e{width:5.026667pt;}
._9{width:6.082133pt;}
._8{width:7.246933pt;}
._10{width:8.177600pt;}
._d{width:9.288000pt;}
._c{width:10.483733pt;}
._1e{width:11.381333pt;}
._14{width:12.325867pt;}
._16{width:13.469867pt;}
._21{width:14.761600pt;}
._12{width:15.675733pt;}
._1c{width:18.360533pt;}
._18{width:19.865600pt;}
._1a{width:21.182400pt;}
._1d{width:22.580800pt;}
._20{width:26.446933pt;}
._19{width:40.192000pt;}
._a{width:52.608000pt;}
._17{width:54.400000pt;}
._13{width:902.511467pt;}
._0{width:1277.935467pt;}
.fs7{font-size:24.874667pt;}
.fsc{font-size:29.866667pt;}
.fs3{font-size:31.093333pt;}
.fs5{font-size:33.600000pt;}
.fsa{font-size:34.202667pt;}
.fs0{font-size:37.333333pt;}
.fsb{font-size:41.066667pt;}
.fs8{font-size:42.666667pt;}
.fs4{font-size:48.000000pt;}
.fs2{font-size:53.333333pt;}
.fs9{font-size:58.666667pt;}
.fs6{font-size:64.000000pt;}
.fs1{font-size:69.333333pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:39.950267pt;}
.y20{bottom:66.141733pt;}
.y96{bottom:69.693600pt;}
.y50{bottom:69.693733pt;}
.y114{bottom:69.704800pt;}
.y95{bottom:78.941600pt;}
.y7a{bottom:78.941733pt;}
.y1f{bottom:82.493733pt;}
.y113{bottom:85.704800pt;}
.y4f{bottom:91.741733pt;}
.y94{bottom:95.293600pt;}
.ycf{bottom:95.293733pt;}
.y175{bottom:100.904800pt;}
.y112{bottom:101.704800pt;}
.y93{bottom:104.541600pt;}
.y79{bottom:104.541733pt;}
.y4e{bottom:108.093733pt;}
.y174{bottom:116.904800pt;}
.yfc{bottom:117.312533pt;}
.y4d{bottom:117.341733pt;}
.y111{bottom:117.704800pt;}
.y145{bottom:119.468533pt;}
.y121{bottom:119.972533pt;}
.y92{bottom:120.893600pt;}
.y78{bottom:120.893733pt;}
.y91{bottom:130.141600pt;}
.y173{bottom:132.504800pt;}
.yfb{bottom:133.312533pt;}
.y4c{bottom:133.693733pt;}
.y110{bottom:133.704800pt;}
.y14d{bottom:135.090533pt;}
.y144{bottom:135.468533pt;}
.y120{bottom:135.972533pt;}
.y90{bottom:142.941600pt;}
.y4b{bottom:146.493733pt;}
.y172{bottom:148.104800pt;}
.yfa{bottom:149.312533pt;}
.y12c{bottom:149.326800pt;}
.y10f{bottom:149.704800pt;}
.y14c{bottom:151.090667pt;}
.ya8{bottom:151.972400pt;}
.y11f{bottom:151.972533pt;}
.y8f{bottom:159.293600pt;}
.y124{bottom:159.293733pt;}
.y171{bottom:163.704800pt;}
.yf9{bottom:165.312533pt;}
.y12b{bottom:165.326800pt;}
.y9b{bottom:165.704800pt;}
.y14b{bottom:167.090667pt;}
.y143{bottom:167.342533pt;}
.yce{bottom:167.511200pt;}
.ya7{bottom:167.972400pt;}
.y11e{bottom:167.972533pt;}
.y8e{bottom:168.541600pt;}
.y123{bottom:172.093733pt;}
.y170{bottom:179.304800pt;}
.y1e{bottom:179.570933pt;}
.yf8{bottom:181.312533pt;}
.y12a{bottom:181.326800pt;}
.y9a{bottom:181.704800pt;}
.y77{bottom:183.090667pt;}
.ycd{bottom:183.511200pt;}
.ya6{bottom:183.972400pt;}
.y11d{bottom:183.972533pt;}
.y8d{bottom:184.893600pt;}
.y122{bottom:184.893733pt;}
.y1d{bottom:193.970933pt;}
.y8c{bottom:194.141600pt;}
.y16f{bottom:194.904800pt;}
.yf7{bottom:197.312533pt;}
.y129{bottom:197.326800pt;}
.y99{bottom:197.704800pt;}
.y76{bottom:199.090667pt;}
.y4a{bottom:199.452933pt;}
.ycc{bottom:199.511200pt;}
.y11c{bottom:199.972533pt;}
.y8b{bottom:206.941600pt;}
.y16e{bottom:210.504800pt;}
.yf6{bottom:213.312533pt;}
.y128{bottom:213.326800pt;}
.y10e{bottom:213.704800pt;}
.ya5{bottom:215.090533pt;}
.y75{bottom:215.090667pt;}
.y49{bottom:215.452933pt;}
.ycb{bottom:215.511200pt;}
.y11b{bottom:215.972533pt;}
.y8a{bottom:219.741600pt;}
.y1c{bottom:221.704267pt;}
.y16d{bottom:226.104800pt;}
.yf5{bottom:229.312533pt;}
.y127{bottom:229.326800pt;}
.y98{bottom:229.578800pt;}
.y10d{bottom:229.704800pt;}
.ya4{bottom:231.090533pt;}
.y74{bottom:231.090667pt;}
.y48{bottom:231.452933pt;}
.yca{bottom:231.511200pt;}
.y11a{bottom:231.972533pt;}
.y89{bottom:232.541600pt;}
.y1b{bottom:235.037600pt;}
.y16c{bottom:241.704800pt;}
.yf4{bottom:245.312533pt;}
.y126{bottom:245.326800pt;}
.y97{bottom:245.578800pt;}
.y10c{bottom:245.704800pt;}
.ya3{bottom:247.090533pt;}
.y73{bottom:247.090667pt;}
.y47{bottom:247.452933pt;}
.yc9{bottom:247.511200pt;}
.y119{bottom:247.972533pt;}
.y1a{bottom:248.370933pt;}
.y88{bottom:248.893600pt;}
.y16b{bottom:257.304800pt;}
.yf3{bottom:261.312533pt;}
.y125{bottom:261.326800pt;}
.y19{bottom:261.704267pt;}
.y10b{bottom:261.704800pt;}
.y14a{bottom:262.208667pt;}
.ya2{bottom:263.090533pt;}
.y72{bottom:263.090667pt;}
.yc8{bottom:263.511200pt;}
.y16a{bottom:272.904800pt;}
.y18{bottom:275.037600pt;}
.yf2{bottom:277.312533pt;}
.y87{bottom:277.326800pt;}
.y10a{bottom:277.704800pt;}
.y149{bottom:278.208667pt;}
.y46{bottom:278.571067pt;}
.ya1{bottom:279.090533pt;}
.y71{bottom:279.090667pt;}
.yc7{bottom:279.511200pt;}
.y17{bottom:288.370933pt;}
.y169{bottom:288.504800pt;}
.yf1{bottom:293.312533pt;}
.y86{bottom:293.326800pt;}
.y109{bottom:293.704800pt;}
.y148{bottom:294.208667pt;}
.y45{bottom:294.571067pt;}
.ya0{bottom:295.090533pt;}
.y70{bottom:295.090667pt;}
.yc6{bottom:295.511200pt;}
.y168{bottom:304.104800pt;}
.yf0{bottom:309.312533pt;}
.y85{bottom:309.326800pt;}
.y108{bottom:309.704800pt;}
.y147{bottom:310.208667pt;}
.y44{bottom:310.571067pt;}
.y9f{bottom:311.090533pt;}
.y6f{bottom:311.090667pt;}
.yc5{bottom:311.511200pt;}
.y167{bottom:319.704800pt;}
.yef{bottom:325.312533pt;}
.y84{bottom:325.326800pt;}
.y107{bottom:325.704800pt;}
.y146{bottom:326.208667pt;}
.y43{bottom:326.571067pt;}
.y6e{bottom:327.090667pt;}
.yc4{bottom:327.511200pt;}
.y16{bottom:328.370933pt;}
.y166{bottom:335.304800pt;}
.yee{bottom:341.312533pt;}
.y83{bottom:341.326800pt;}
.y15{bottom:341.704267pt;}
.y106{bottom:341.704800pt;}
.y9e{bottom:342.208667pt;}
.y42{bottom:342.571067pt;}
.y6d{bottom:343.090667pt;}
.yc3{bottom:343.511200pt;}
.y165{bottom:350.904800pt;}
.y14{bottom:355.037600pt;}
.yed{bottom:357.312533pt;}
.y82{bottom:357.326800pt;}
.y105{bottom:357.704800pt;}
.y9d{bottom:358.208667pt;}
.y41{bottom:358.571067pt;}
.y6c{bottom:359.090667pt;}
.yc2{bottom:359.511200pt;}
.y164{bottom:366.504800pt;}
.y13{bottom:368.370933pt;}
.yec{bottom:373.312533pt;}
.y81{bottom:373.326800pt;}
.y104{bottom:373.704800pt;}
.y9c{bottom:374.208667pt;}
.y40{bottom:374.571067pt;}
.y118{bottom:375.090667pt;}
.yc1{bottom:375.511200pt;}
.y12{bottom:381.704267pt;}
.y163{bottom:382.104800pt;}
.yeb{bottom:389.312533pt;}
.y80{bottom:389.326800pt;}
.y103{bottom:389.704800pt;}
.y6b{bottom:390.208667pt;}
.y117{bottom:391.090667pt;}
.yc0{bottom:391.511200pt;}
.y11{bottom:395.037600pt;}
.y162{bottom:397.704800pt;}
.yea{bottom:405.312533pt;}
.y7f{bottom:405.326800pt;}
.y3f{bottom:405.689067pt;}
.y102{bottom:405.704800pt;}
.y6a{bottom:406.208667pt;}
.y142{bottom:407.090667pt;}
.ybf{bottom:407.511200pt;}
.y10{bottom:408.370933pt;}
.y161{bottom:413.304800pt;}
.ye9{bottom:421.312533pt;}
.y7e{bottom:421.326800pt;}
.y3e{bottom:421.689067pt;}
.y101{bottom:421.704800pt;}
.y69{bottom:422.208667pt;}
.y141{bottom:423.090667pt;}
.ybe{bottom:423.511200pt;}
.y160{bottom:428.904800pt;}
.yf{bottom:435.037600pt;}
.ye8{bottom:437.312533pt;}
.y7d{bottom:437.326800pt;}
.y3d{bottom:437.689067pt;}
.y100{bottom:437.704800pt;}
.y68{bottom:438.208667pt;}
.y140{bottom:439.090667pt;}
.ybd{bottom:439.511200pt;}
.y15f{bottom:444.504800pt;}
.ye7{bottom:453.312533pt;}
.y7c{bottom:453.326800pt;}
.y3c{bottom:453.689067pt;}
.yff{bottom:453.704800pt;}
.y67{bottom:454.208667pt;}
.ye{bottom:454.237600pt;}
.y13f{bottom:455.090667pt;}
.ybc{bottom:455.511200pt;}
.y15e{bottom:460.104800pt;}
.ye6{bottom:469.312533pt;}
.y7b{bottom:469.326800pt;}
.y3b{bottom:469.689067pt;}
.y116{bottom:470.208667pt;}
.y13e{bottom:471.090667pt;}
.ybb{bottom:471.511200pt;}
.y15d{bottom:475.704800pt;}
.ye5{bottom:485.312533pt;}
.y66{bottom:485.326800pt;}
.yfe{bottom:485.578800pt;}
.y3a{bottom:485.689067pt;}
.y115{bottom:486.208667pt;}
.y13d{bottom:487.090667pt;}
.yba{bottom:487.511200pt;}
.y15c{bottom:491.304800pt;}
.yd{bottom:500.104267pt;}
.ye4{bottom:501.312533pt;}
.y65{bottom:501.326800pt;}
.yfd{bottom:501.578800pt;}
.y39{bottom:501.689067pt;}
.y13c{bottom:503.090533pt;}
.yb9{bottom:503.511200pt;}
.y15b{bottom:506.904800pt;}
.yc{bottom:513.437600pt;}
.ye3{bottom:517.312533pt;}
.y64{bottom:517.326800pt;}
.y38{bottom:517.689067pt;}
.y13b{bottom:519.090533pt;}
.yb8{bottom:519.511200pt;}
.y15a{bottom:522.504800pt;}
.yb{bottom:526.770933pt;}
.ye2{bottom:533.312533pt;}
.y63{bottom:533.326800pt;}
.y37{bottom:533.689067pt;}
.y13a{bottom:535.090533pt;}
.yb7{bottom:535.511200pt;}
.y159{bottom:538.104800pt;}
.ya{bottom:540.104267pt;}
.ye1{bottom:549.312533pt;}
.y62{bottom:549.326800pt;}
.y36{bottom:549.689067pt;}
.y139{bottom:551.090533pt;}
.yb6{bottom:551.511200pt;}
.y9{bottom:553.437600pt;}
.y158{bottom:553.704800pt;}
.ye0{bottom:565.312533pt;}
.y61{bottom:565.326800pt;}
.y35{bottom:565.689067pt;}
.y8{bottom:566.770933pt;}
.y138{bottom:567.090533pt;}
.y157{bottom:569.304800pt;}
.y7{bottom:580.104267pt;}
.ydf{bottom:581.312533pt;}
.y60{bottom:581.326800pt;}
.y34{bottom:581.689067pt;}
.y137{bottom:583.090533pt;}
.yb5{bottom:583.385200pt;}
.y156{bottom:584.904800pt;}
.y6{bottom:593.437600pt;}
.yde{bottom:597.312533pt;}
.y5f{bottom:597.326800pt;}
.y33{bottom:597.689067pt;}
.y136{bottom:599.090533pt;}
.yb4{bottom:599.385200pt;}
.y155{bottom:600.504800pt;}
.ydd{bottom:613.312533pt;}
.y5e{bottom:613.326800pt;}
.y32{bottom:613.689067pt;}
.y135{bottom:615.090533pt;}
.y154{bottom:616.104800pt;}
.y5{bottom:620.104267pt;}
.ydc{bottom:629.312533pt;}
.y5d{bottom:629.326800pt;}
.y31{bottom:629.689067pt;}
.y180{bottom:630.251333pt;}
.y153{bottom:631.704800pt;}
.ydb{bottom:645.312533pt;}
.y5c{bottom:645.326800pt;}
.y30{bottom:645.689067pt;}
.y134{bottom:646.208800pt;}
.y17f{bottom:646.251333pt;}
.yb3{bottom:647.133200pt;}
.y152{bottom:647.304800pt;}
.yda{bottom:661.312533pt;}
.y5b{bottom:661.326800pt;}
.y2f{bottom:661.689067pt;}
.y133{bottom:662.208667pt;}
.y17e{bottom:662.251333pt;}
.y4{bottom:662.770933pt;}
.y151{bottom:662.904800pt;}
.yb2{bottom:663.133200pt;}
.yd9{bottom:677.312533pt;}
.y5a{bottom:677.326800pt;}
.y2e{bottom:677.689067pt;}
.y132{bottom:678.208667pt;}
.y17d{bottom:678.251333pt;}
.y150{bottom:678.504800pt;}
.yb1{bottom:679.133200pt;}
.y3{bottom:692.104267pt;}
.yd8{bottom:693.312533pt;}
.y59{bottom:693.326800pt;}
.y2d{bottom:693.689067pt;}
.y14f{bottom:694.104800pt;}
.y131{bottom:694.208800pt;}
.y17c{bottom:694.251333pt;}
.yb0{bottom:695.133200pt;}
.yd7{bottom:709.312533pt;}
.y58{bottom:709.326800pt;}
.y2c{bottom:709.689067pt;}
.y130{bottom:710.208800pt;}
.y17b{bottom:710.251333pt;}
.yaf{bottom:711.133200pt;}
.y2{bottom:712.904267pt;}
.yd6{bottom:725.312533pt;}
.y57{bottom:725.326800pt;}
.y14e{bottom:725.578800pt;}
.y2b{bottom:725.689067pt;}
.y12f{bottom:726.208800pt;}
.y17a{bottom:726.251333pt;}
.yae{bottom:727.133200pt;}
.yd5{bottom:741.312533pt;}
.y56{bottom:741.326800pt;}
.y2a{bottom:741.689067pt;}
.y12e{bottom:742.208800pt;}
.y179{bottom:742.251333pt;}
.yad{bottom:743.133200pt;}
.yd4{bottom:757.312533pt;}
.y55{bottom:757.326800pt;}
.y29{bottom:757.689067pt;}
.y12d{bottom:758.208800pt;}
.y178{bottom:758.251333pt;}
.yac{bottom:759.133200pt;}
.y23{bottom:770.348000pt;}
.yd3{bottom:773.312533pt;}
.y54{bottom:773.326800pt;}
.y28{bottom:773.689067pt;}
.y177{bottom:774.251333pt;}
.yab{bottom:775.133200pt;}
.yd2{bottom:789.312533pt;}
.y53{bottom:789.326800pt;}
.y176{bottom:790.251333pt;}
.y22{bottom:798.081333pt;}
.yd1{bottom:805.312533pt;}
.y52{bottom:805.326800pt;}
.y27{bottom:805.563200pt;}
.yaa{bottom:806.251333pt;}
.y21{bottom:810.881333pt;}
.yd0{bottom:821.312533pt;}
.y51{bottom:821.326800pt;}
.y26{bottom:821.563200pt;}
.ya9{bottom:822.251333pt;}
.y24{bottom:840.447733pt;}
.y25{bottom:856.062933pt;}
.ha{height:17.283521pt;}
.h19{height:21.826062pt;}
.h15{height:23.229500pt;}
.h5{height:25.940104pt;}
.hb{height:29.645833pt;}
.h6{height:33.351562pt;}
.h2{height:34.421333pt;}
.h13{height:37.057292pt;}
.h16{height:37.437500pt;}
.hd{height:39.338667pt;}
.h4{height:39.364401pt;}
.he{height:40.161458pt;}
.h17{height:40.734375pt;}
.h11{height:40.763021pt;}
.h7{height:42.117188pt;}
.h18{height:43.300841pt;}
.hf{height:43.301374pt;}
.h9{height:44.468750pt;}
.h14{height:46.796875pt;}
.h3{height:48.174479pt;}
.hc{height:49.173333pt;}
.h12{height:49.546836pt;}
.h10{height:51.476562pt;}
.h8{height:56.156250pt;}
.h0{height:907.086667pt;}
.h1{height:907.333333pt;}
.w0{width:642.520000pt;}
.w1{width:642.666667pt;}
.x0{left:0.000000pt;}
.x1{left:75.590533pt;}
.x2{left:84.094533pt;}
.x5{left:94.488133pt;}
.x4{left:311.600800pt;}
.x3{left:493.006667pt;}
}




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