
    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_5a75611bf4a2f2311b9a7e3a.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.145000;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_f95c39ec3981d6ecc00a920c.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.110000;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_2a55cb84ab3aaf37ef21c56d.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.050000;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_0d31504ea9709117a9fe3b98.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.402354;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_a2b3c2b533e12a24971f8567.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.085000;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_3720fb9afe3d651da81e528d.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.980000;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_8bc76fa3dfff0424f1940788.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.736000;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_3e2660d83a4b0a49b160be6e.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.110000;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_ed3663de41c707fe312d4a5e.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.909000;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_4459f20cafd4dec459e298f5.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.950000;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_e1567dca6798ba8b3320c77f.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.731000;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);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:12.000000px;}
.v3{vertical-align:37.296000px;}
.v2{vertical-align:42.504000px;}
.ls0{letter-spacing:0.000000px;}
.lsb{letter-spacing:0.048000px;}
.ls2{letter-spacing:0.192000px;}
.ls8{letter-spacing:0.240000px;}
.lsd{letter-spacing:0.288000px;}
.lse{letter-spacing:0.336000px;}
.ls1{letter-spacing:0.384000px;}
.ls9{letter-spacing:0.528000px;}
.ls5{letter-spacing:0.624000px;}
.ls7{letter-spacing:0.720000px;}
.ls4{letter-spacing:0.768000px;}
.lsc{letter-spacing:0.912000px;}
.ls6{letter-spacing:1.008000px;}
.ls3{letter-spacing:2.016000px;}
.lsf{letter-spacing:20.640000px;}
.lsa{letter-spacing:237.072000px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 rgb(35,31,32),0 0.015em rgb(35,31,32),0.015em 0 rgb(35,31,32),0 -0.015em  rgb(35,31,32);}
.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;}
.sc1{-webkit-text-stroke:0.015em rgb(35,31,32);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws36{word-spacing:-253.056000px;}
.ws33{word-spacing:-35.964000px;}
.ws96{word-spacing:-27.456000px;}
.ws5e{word-spacing:-17.280000px;}
.ws12{word-spacing:-15.984000px;}
.ws67{word-spacing:-15.360000px;}
.ws63{word-spacing:-14.976000px;}
.ws5f{word-spacing:-14.880000px;}
.ws50{word-spacing:-14.544000px;}
.ws7b{word-spacing:-14.400000px;}
.ws4f{word-spacing:-14.304000px;}
.ws92{word-spacing:-14.208000px;}
.ws65{word-spacing:-14.160000px;}
.ws5a{word-spacing:-14.016000px;}
.ws32{word-spacing:-13.986000px;}
.ws46{word-spacing:-13.968000px;}
.ws99{word-spacing:-13.728000px;}
.ws7c{word-spacing:-13.536000px;}
.ws48{word-spacing:-13.488000px;}
.ws3b{word-spacing:-13.392000px;}
.ws90{word-spacing:-13.296000px;}
.wsc1{word-spacing:-13.248000px;}
.wsa1{word-spacing:-13.200000px;}
.wsc3{word-spacing:-13.008000px;}
.ws37{word-spacing:-12.987000px;}
.wsa6{word-spacing:-12.960000px;}
.wsa3{word-spacing:-12.816000px;}
.ws77{word-spacing:-12.576000px;}
.wsa4{word-spacing:-12.240000px;}
.ws72{word-spacing:-12.144000px;}
.ws42{word-spacing:-12.096000px;}
.ws31{word-spacing:-11.988000px;}
.wsa7{word-spacing:-11.952000px;}
.ws66{word-spacing:-11.856000px;}
.wsa9{word-spacing:-11.760000px;}
.ws4d{word-spacing:-11.712000px;}
.ws4b{word-spacing:-11.664000px;}
.ws44{word-spacing:-11.616000px;}
.ws69{word-spacing:-11.520000px;}
.ws3d{word-spacing:-11.472000px;}
.wsa5{word-spacing:-11.424000px;}
.ws8f{word-spacing:-11.376000px;}
.ws71{word-spacing:-11.184000px;}
.ws53{word-spacing:-11.136000px;}
.ws49{word-spacing:-11.088000px;}
.ws45{word-spacing:-10.992000px;}
.ws41{word-spacing:-10.896000px;}
.wsaa{word-spacing:-10.608000px;}
.ws86{word-spacing:-10.416000px;}
.ws47{word-spacing:-10.368000px;}
.ws9d{word-spacing:-10.272000px;}
.ws79{word-spacing:-10.176000px;}
.ws43{word-spacing:-10.128000px;}
.ws97{word-spacing:-10.032000px;}
.ws70{word-spacing:-9.984000px;}
.ws6c{word-spacing:-9.936000px;}
.ws6d{word-spacing:-9.888000px;}
.wsac{word-spacing:-9.792000px;}
.ws88{word-spacing:-9.696000px;}
.ws83{word-spacing:-9.600000px;}
.wsc2{word-spacing:-9.552000px;}
.ws3e{word-spacing:-9.456000px;}
.wsab{word-spacing:-9.408000px;}
.ws3c{word-spacing:-9.360000px;}
.ws68{word-spacing:-9.312000px;}
.wsc6{word-spacing:-8.976000px;}
.ws60{word-spacing:-8.832000px;}
.ws8c{word-spacing:-8.736000px;}
.ws80{word-spacing:-8.688000px;}
.ws7e{word-spacing:-8.640000px;}
.ws74{word-spacing:-8.592000px;}
.wsba{word-spacing:-8.496000px;}
.ws93{word-spacing:-8.448000px;}
.ws3a{word-spacing:-8.352000px;}
.ws57{word-spacing:-8.304000px;}
.wsb8{word-spacing:-8.256000px;}
.wsc0{word-spacing:-8.016000px;}
.wsb3{word-spacing:-7.968000px;}
.ws52{word-spacing:-7.920000px;}
.ws8a{word-spacing:-7.872000px;}
.wsb7{word-spacing:-7.680000px;}
.ws4a{word-spacing:-7.584000px;}
.wsb6{word-spacing:-7.536000px;}
.ws5d{word-spacing:-7.452000px;}
.wsbb{word-spacing:-7.440000px;}
.ws5c{word-spacing:-7.416000px;}
.ws64{word-spacing:-7.344000px;}
.ws91{word-spacing:-7.296000px;}
.ws39{word-spacing:-7.104000px;}
.wsc5{word-spacing:-7.008000px;}
.wsb1{word-spacing:-6.864000px;}
.wsa8{word-spacing:-6.816000px;}
.ws6e{word-spacing:-6.768000px;}
.wsae{word-spacing:-6.720000px;}
.ws6b{word-spacing:-6.624000px;}
.ws6a{word-spacing:-6.576000px;}
.ws3f{word-spacing:-6.528000px;}
.ws85{word-spacing:-6.384000px;}
.ws9f{word-spacing:-6.288000px;}
.wsbd{word-spacing:-6.240000px;}
.ws9a{word-spacing:-6.192000px;}
.ws8b{word-spacing:-6.096000px;}
.ws8e{word-spacing:-5.856000px;}
.ws87{word-spacing:-5.808000px;}
.ws62{word-spacing:-5.712000px;}
.ws59{word-spacing:-5.520000px;}
.ws81{word-spacing:-5.376000px;}
.ws55{word-spacing:-5.280000px;}
.ws76{word-spacing:-4.992000px;}
.wsc4{word-spacing:-4.944000px;}
.wsbf{word-spacing:-4.752000px;}
.wsb2{word-spacing:-4.656000px;}
.ws7d{word-spacing:-4.368000px;}
.ws84{word-spacing:-4.320000px;}
.wsb5{word-spacing:-4.272000px;}
.wsa0{word-spacing:-4.032000px;}
.ws8d{word-spacing:-3.936000px;}
.ws78{word-spacing:-3.888000px;}
.wsb9{word-spacing:-3.840000px;}
.ws51{word-spacing:-3.648000px;}
.wsa2{word-spacing:-3.504000px;}
.wsbc{word-spacing:-3.456000px;}
.ws4e{word-spacing:-3.168000px;}
.ws6f{word-spacing:-3.072000px;}
.ws54{word-spacing:-2.928000px;}
.wsd{word-spacing:-2.640000px;}
.wsad{word-spacing:-2.448000px;}
.wsaf{word-spacing:-2.400000px;}
.ws89{word-spacing:-2.256000px;}
.ws1c{word-spacing:-2.208000px;}
.ws56{word-spacing:-2.112000px;}
.ws1f{word-spacing:-2.016000px;}
.ws7{word-spacing:-1.872000px;}
.wsb{word-spacing:-1.632000px;}
.ws30{word-spacing:-1.536000px;}
.ws7f{word-spacing:-1.440000px;}
.ws61{word-spacing:-1.344000px;}
.ws10{word-spacing:-1.008000px;}
.ws1e{word-spacing:-0.960000px;}
.ws98{word-spacing:-0.912000px;}
.ws15{word-spacing:-0.768000px;}
.ws2e{word-spacing:-0.240000px;}
.ws0{word-spacing:-0.216000px;}
.ws17{word-spacing:-0.144000px;}
.ws2d{word-spacing:0.000000px;}
.wsbe{word-spacing:0.096000px;}
.ws4c{word-spacing:0.480000px;}
.ws2c{word-spacing:0.528000px;}
.ws4{word-spacing:0.540000px;}
.ws1d{word-spacing:0.576000px;}
.ws23{word-spacing:0.624000px;}
.ws24{word-spacing:0.672000px;}
.ws26{word-spacing:0.912000px;}
.ws2f{word-spacing:1.200000px;}
.wsb0{word-spacing:1.248000px;}
.ws3{word-spacing:1.728000px;}
.ws11{word-spacing:1.920000px;}
.ws9e{word-spacing:1.968000px;}
.wsf{word-spacing:2.256000px;}
.ws27{word-spacing:2.400000px;}
.ws9{word-spacing:2.448000px;}
.ws13{word-spacing:2.640000px;}
.ws40{word-spacing:2.976000px;}
.ws75{word-spacing:3.024000px;}
.ws16{word-spacing:3.840000px;}
.wsc{word-spacing:3.936000px;}
.ws94{word-spacing:4.128000px;}
.ws35{word-spacing:4.248000px;}
.ws82{word-spacing:4.944000px;}
.ws14{word-spacing:5.472000px;}
.ws34{word-spacing:5.580000px;}
.ws2{word-spacing:5.760000px;}
.ws1{word-spacing:5.940000px;}
.ws1a{word-spacing:6.672000px;}
.ws29{word-spacing:6.768000px;}
.ws2a{word-spacing:6.816000px;}
.wse{word-spacing:6.864000px;}
.ws1b{word-spacing:7.536000px;}
.ws19{word-spacing:7.632000px;}
.ws73{word-spacing:7.968000px;}
.wsa{word-spacing:8.496000px;}
.ws18{word-spacing:8.544000px;}
.ws58{word-spacing:8.640000px;}
.ws20{word-spacing:9.504000px;}
.ws38{word-spacing:10.500000px;}
.ws22{word-spacing:10.512000px;}
.ws9c{word-spacing:10.608000px;}
.ws9b{word-spacing:12.288000px;}
.ws7a{word-spacing:12.576000px;}
.ws6{word-spacing:13.824000px;}
.ws5{word-spacing:13.872000px;}
.ws28{word-spacing:14.016000px;}
.ws8{word-spacing:15.312000px;}
.wsb4{word-spacing:15.696000px;}
.ws95{word-spacing:16.176000px;}
.ws5b{word-spacing:16.560000px;}
.ws25{word-spacing:16.896000px;}
.wsc7{word-spacing:17.472000px;}
.ws2b{word-spacing:21.264000px;}
.ws21{word-spacing:28.464000px;}
._2a{margin-left:-5782.110000px;}
._2d{margin-left:-237.072000px;}
._13{margin-left:-31.728000px;}
._16{margin-left:-29.616000px;}
._17{margin-left:-27.744000px;}
._12{margin-left:-26.592000px;}
._18{margin-left:-25.056000px;}
._14{margin-left:-22.560000px;}
._15{margin-left:-16.224000px;}
._2e{margin-left:-8.424000px;}
._2c{margin-left:-6.720000px;}
._b{margin-left:-4.944000px;}
._11{margin-left:-3.552000px;}
._0{margin-left:-2.160000px;}
._2{margin-left:-1.080000px;}
._c{width:1.008000px;}
._1a{width:2.448000px;}
._1c{width:3.744000px;}
._1f{width:5.184000px;}
._1b{width:6.240000px;}
._1d{width:7.392000px;}
._22{width:8.736000px;}
._19{width:9.792000px;}
._26{width:10.896000px;}
._20{width:12.000000px;}
._21{width:13.608000px;}
._a{width:15.312000px;}
._e{width:16.752000px;}
._23{width:18.000000px;}
._9{width:19.416000px;}
._29{width:20.886000px;}
._10{width:21.930000px;}
._27{width:23.088000px;}
._28{width:24.102000px;}
._4{width:25.488000px;}
._5{width:27.024000px;}
._2b{width:28.752000px;}
._6{width:30.504000px;}
._33{width:32.256000px;}
._7{width:38.136000px;}
._d{width:42.000000px;}
._1e{width:45.648000px;}
._8{width:49.608000px;}
._24{width:52.944000px;}
._25{width:54.096000px;}
._1{width:56.160000px;}
._3{width:62.640000px;}
._f{width:156.600000px;}
._32{width:366.954000px;}
._30{width:804.132000px;}
._31{width:1103.382000px;}
._2f{width:1596.660000px;}
.fc3{color:transparent;}
.fc2{color:rgb(160,184,31);}
.fc1{color:rgb(35,31,32);}
.fc0{color:rgb(255,255,255);}
.fs3{font-size:30.000000px;}
.fs5{font-size:36.000000px;}
.fs6{font-size:39.000000px;}
.fs7{font-size:42.000000px;}
.fs4{font-size:48.000000px;}
.fs2{font-size:54.000000px;}
.fs0{font-size:72.000000px;}
.fs8{font-size:108.000000px;}
.fs1{font-size:180.000000px;}
.y0{bottom:0.000000px;}
.y181{bottom:31.537500px;}
.y12{bottom:33.037500px;}
.y88{bottom:33.669900px;}
.y17c{bottom:34.837350px;}
.y6c{bottom:49.893300px;}
.y6b{bottom:60.393300px;}
.y89{bottom:63.472350px;}
.y6a{bottom:70.893300px;}
.yab{bottom:76.235400px;}
.y15f{bottom:78.008550px;}
.y80{bottom:79.972350px;}
.y161{bottom:79.976550px;}
.y69{bottom:81.393300px;}
.y5c{bottom:84.018000px;}
.yaa{bottom:86.735400px;}
.ya0{bottom:87.442350px;}
.y15e{bottom:93.008550px;}
.yd2{bottom:94.400100px;}
.y11{bottom:96.022950px;}
.y7f{bottom:96.472350px;}
.y5b{bottom:100.518000px;}
.y9f{bottom:100.946100px;}
.y15d{bottom:108.008550px;}
.yd1{bottom:108.800100px;}
.y7e{bottom:112.972350px;}
.y9e{bottom:114.449850px;}
.y5a{bottom:117.018000px;}
.y15c{bottom:123.008550px;}
.yd0{bottom:123.200100px;}
.y9d{bottom:127.953600px;}
.y7d{bottom:129.472350px;}
.y59{bottom:133.518000px;}
.ycf{bottom:137.600100px;}
.y15b{bottom:138.008550px;}
.y9c{bottom:141.457350px;}
.y7c{bottom:145.972350px;}
.y17b{bottom:147.481350px;}
.y58{bottom:150.018000px;}
.yce{bottom:152.000100px;}
.y160{bottom:153.008550px;}
.y9b{bottom:154.961100px;}
.y17a{bottom:159.478350px;}
.y7b{bottom:162.472350px;}
.ycd{bottom:166.400100px;}
.y57{bottom:166.518000px;}
.y15a{bottom:168.008550px;}
.y9a{bottom:168.464850px;}
.y179{bottom:171.475350px;}
.y7a{bottom:178.972350px;}
.ycc{bottom:180.800100px;}
.y99{bottom:181.968600px;}
.y159{bottom:183.008550px;}
.y56{bottom:183.018000px;}
.y178{bottom:183.472350px;}
.ycb{bottom:195.200100px;}
.y79{bottom:195.472350px;}
.y158{bottom:198.008550px;}
.y55{bottom:199.518000px;}
.yd4{bottom:209.600100px;}
.y151{bottom:209.984250px;}
.y78{bottom:211.972350px;}
.y157{bottom:213.008550px;}
.y54{bottom:216.018000px;}
.yca{bottom:224.000100px;}
.y150{bottom:224.384250px;}
.y156{bottom:228.008550px;}
.y77{bottom:228.472350px;}
.y53{bottom:232.518000px;}
.y10{bottom:238.043250px;}
.y116{bottom:238.170600px;}
.yc9{bottom:238.400100px;}
.y14f{bottom:238.784250px;}
.y155{bottom:243.008550px;}
.y76{bottom:244.972350px;}
.y61{bottom:249.018000px;}
.y68{bottom:250.499250px;}
.y115{bottom:252.570600px;}
.yc8{bottom:252.800100px;}
.y75{bottom:261.472350px;}
.y67{bottom:264.003000px;}
.y52{bottom:265.518000px;}
.y114{bottom:266.970600px;}
.yc7{bottom:267.200100px;}
.y14e{bottom:267.584250px;}
.y66{bottom:277.506750px;}
.y82{bottom:277.972350px;}
.yf6{bottom:278.166600px;}
.y154{bottom:280.786950px;}
.y113{bottom:281.370600px;}
.yc6{bottom:281.600100px;}
.y14d{bottom:281.984250px;}
.y51{bottom:282.018000px;}
.yf{bottom:287.543250px;}
.y65{bottom:291.010500px;}
.yf5{bottom:292.566600px;}
.y74{bottom:294.472350px;}
.y112{bottom:295.770600px;}
.yc5{bottom:296.000100px;}
.y14c{bottom:296.384250px;}
.y50{bottom:298.518000px;}
.y64{bottom:304.514250px;}
.yf4{bottom:306.966600px;}
.y111{bottom:310.170600px;}
.yc4{bottom:310.400100px;}
.y14b{bottom:310.784250px;}
.y73{bottom:310.972350px;}
.y4f{bottom:315.018000px;}
.y63{bottom:318.018000px;}
.y131{bottom:323.682600px;}
.y110{bottom:324.570600px;}
.yc3{bottom:324.800100px;}
.y72{bottom:327.472350px;}
.y4e{bottom:331.518000px;}
.yf3{bottom:335.766600px;}
.ye{bottom:337.043250px;}
.y130{bottom:338.082600px;}
.y10f{bottom:338.970600px;}
.yc2{bottom:339.200100px;}
.y14a{bottom:339.584250px;}
.y71{bottom:343.972350px;}
.y4d{bottom:348.018000px;}
.yf2{bottom:350.166600px;}
.y12f{bottom:352.482600px;}
.y10e{bottom:353.370600px;}
.yc1{bottom:353.600100px;}
.y149{bottom:353.984250px;}
.y81{bottom:360.472350px;}
.y60{bottom:364.518000px;}
.y12e{bottom:366.882600px;}
.yc0{bottom:368.000100px;}
.y148{bottom:368.384250px;}
.y2b{bottom:376.972350px;}
.yf1{bottom:378.966600px;}
.y4c{bottom:381.018000px;}
.y12d{bottom:381.282600px;}
.y10d{bottom:382.170600px;}
.yd5{bottom:382.400100px;}
.yd{bottom:386.543250px;}
.yf0{bottom:393.366600px;}
.y2a{bottom:393.472350px;}
.y12c{bottom:395.682600px;}
.y10c{bottom:396.570600px;}
.y176{bottom:396.656400px;}
.ybf{bottom:396.800100px;}
.y147{bottom:397.184250px;}
.y4b{bottom:397.518000px;}
.y175{bottom:407.456400px;}
.yef{bottom:407.766600px;}
.y29{bottom:409.972350px;}
.y12b{bottom:410.082600px;}
.y10b{bottom:410.970600px;}
.ybe{bottom:411.200100px;}
.y146{bottom:411.584250px;}
.y4a{bottom:414.018000px;}
.y174{bottom:418.256400px;}
.y184{bottom:420.991500px;}
.yee{bottom:422.166600px;}
.y12a{bottom:424.482600px;}
.ybd{bottom:425.600100px;}
.y145{bottom:425.984250px;}
.y28{bottom:426.472350px;}
.y173{bottom:429.056400px;}
.y49{bottom:430.518000px;}
.yc{bottom:436.043250px;}
.yed{bottom:436.566600px;}
.y10a{bottom:439.770600px;}
.y172{bottom:439.856400px;}
.ybc{bottom:440.000100px;}
.y144{bottom:440.384250px;}
.y27{bottom:442.972350px;}
.y48{bottom:447.018000px;}
.y171{bottom:450.656400px;}
.yec{bottom:450.966600px;}
.y129{bottom:453.282600px;}
.y109{bottom:454.170600px;}
.ybb{bottom:454.400100px;}
.y143{bottom:454.784250px;}
.y26{bottom:459.472350px;}
.y170{bottom:461.456400px;}
.y47{bottom:463.518000px;}
.yeb{bottom:465.366600px;}
.y128{bottom:467.682600px;}
.y108{bottom:468.570600px;}
.yba{bottom:468.800100px;}
.y142{bottom:469.184250px;}
.y16f{bottom:472.256400px;}
.y25{bottom:475.972350px;}
.yea{bottom:479.766600px;}
.y46{bottom:480.018000px;}
.y127{bottom:482.082600px;}
.y107{bottom:482.970600px;}
.y16e{bottom:483.056400px;}
.yb9{bottom:483.200100px;}
.y141{bottom:483.584250px;}
.yb{bottom:485.543250px;}
.y24{bottom:492.472350px;}
.y16d{bottom:493.856400px;}
.ye9{bottom:494.166600px;}
.y126{bottom:496.482600px;}
.y45{bottom:496.518000px;}
.y106{bottom:497.370600px;}
.yb8{bottom:497.600100px;}
.y16c{bottom:504.656400px;}
.ye8{bottom:508.566600px;}
.y23{bottom:508.972350px;}
.y125{bottom:510.882600px;}
.y105{bottom:511.770600px;}
.yb7{bottom:512.000100px;}
.y140{bottom:512.384250px;}
.y62{bottom:513.018000px;}
.y16b{bottom:515.456400px;}
.y124{bottom:525.282600px;}
.y22{bottom:525.472350px;}
.y104{bottom:526.170600px;}
.y16a{bottom:526.256400px;}
.yd3{bottom:526.400100px;}
.y13f{bottom:526.784250px;}
.y44{bottom:529.518000px;}
.ya{bottom:535.043250px;}
.y169{bottom:537.056400px;}
.ye7{bottom:537.366600px;}
.y123{bottom:539.682600px;}
.y103{bottom:540.570600px;}
.yb6{bottom:540.800100px;}
.y13e{bottom:541.184250px;}
.y21{bottom:541.972350px;}
.y43{bottom:546.018000px;}
.y168{bottom:547.856400px;}
.ye6{bottom:551.766600px;}
.y122{bottom:554.082600px;}
.y102{bottom:554.970600px;}
.yb5{bottom:555.200100px;}
.y13d{bottom:555.584250px;}
.y20{bottom:558.472350px;}
.y167{bottom:558.656400px;}
.y42{bottom:562.518000px;}
.ye5{bottom:566.166600px;}
.y121{bottom:568.482600px;}
.y101{bottom:569.370600px;}
.y166{bottom:569.456400px;}
.yb4{bottom:569.600100px;}
.y13c{bottom:569.984250px;}
.y1f{bottom:574.972350px;}
.y41{bottom:579.018000px;}
.y165{bottom:580.256400px;}
.ye4{bottom:580.566600px;}
.y120{bottom:582.882600px;}
.y100{bottom:583.770600px;}
.yb3{bottom:584.000100px;}
.y13b{bottom:584.384250px;}
.y9{bottom:584.543250px;}
.y164{bottom:591.056400px;}
.y1e{bottom:591.472350px;}
.ye3{bottom:594.966600px;}
.y40{bottom:595.518000px;}
.y11f{bottom:597.282600px;}
.yff{bottom:598.170600px;}
.yb2{bottom:598.400100px;}
.y13a{bottom:598.784250px;}
.y163{bottom:601.856400px;}
.y1d{bottom:607.972350px;}
.ye2{bottom:609.366600px;}
.y11e{bottom:611.682600px;}
.y3f{bottom:612.018000px;}
.yfe{bottom:612.570600px;}
.y162{bottom:612.656400px;}
.yb1{bottom:612.800100px;}
.ye1{bottom:623.766600px;}
.y1c{bottom:624.472350px;}
.y11d{bottom:626.082600px;}
.yb0{bottom:627.200100px;}
.y139{bottom:627.584250px;}
.y3e{bottom:628.518000px;}
.y8{bottom:634.043250px;}
.ye0{bottom:638.166600px;}
.y11c{bottom:640.482600px;}
.y1b{bottom:640.972350px;}
.yfd{bottom:641.370600px;}
.yaf{bottom:641.600100px;}
.y138{bottom:641.984250px;}
.y3d{bottom:645.018000px;}
.ydf{bottom:652.566600px;}
.y11b{bottom:654.882600px;}
.yfc{bottom:655.770600px;}
.yae{bottom:656.000100px;}
.y137{bottom:656.384250px;}
.y1a{bottom:657.472350px;}
.y3c{bottom:661.518000px;}
.yfb{bottom:670.170600px;}
.yad{bottom:670.400100px;}
.y136{bottom:670.784250px;}
.y19{bottom:673.972350px;}
.ya9{bottom:676.629000px;}
.y3b{bottom:678.018000px;}
.yde{bottom:681.366600px;}
.y7{bottom:683.543250px;}
.y11a{bottom:683.682600px;}
.y135{bottom:685.184250px;}
.y18{bottom:690.472350px;}
.y3a{bottom:694.518000px;}
.ydd{bottom:695.766600px;}
.y119{bottom:698.082600px;}
.yfa{bottom:698.970600px;}
.y134{bottom:699.584250px;}
.yac{bottom:703.656900px;}
.ya8{bottom:706.626000px;}
.y17{bottom:706.972350px;}
.ydc{bottom:707.766600px;}
.y93{bottom:709.956750px;}
.y39{bottom:711.018000px;}
.y118{bottom:712.482600px;}
.yf9{bottom:713.370600px;}
.y133{bottom:713.984250px;}
.y16{bottom:723.472350px;}
.ydb{bottom:724.266600px;}
.y117{bottom:726.882600px;}
.y38{bottom:727.518000px;}
.yf8{bottom:727.770600px;}
.y132{bottom:728.384250px;}
.y6{bottom:733.043250px;}
.ya7{bottom:736.623000px;}
.y92{bottom:739.953750px;}
.y15{bottom:739.972350px;}
.y37{bottom:744.018000px;}
.y1{bottom:747.185850px;}
.y14{bottom:756.472350px;}
.yf7{bottom:756.570600px;}
.yda{bottom:757.266600px;}
.y36{bottom:760.518000px;}
.yd9{bottom:760.773450px;}
.yd7{bottom:761.823450px;}
.yd8{bottom:761.949450px;}
.ya6{bottom:766.620000px;}
.y91{bottom:769.950750px;}
.yd6{bottom:772.113450px;}
.y13{bottom:772.972350px;}
.y35{bottom:777.018000px;}
.y5{bottom:782.543250px;}
.y70{bottom:789.472350px;}
.y5f{bottom:793.518000px;}
.ya5{bottom:796.617000px;}
.y90{bottom:799.947750px;}
.y6f{bottom:805.972350px;}
.y34{bottom:810.018000px;}
.y8b{bottom:822.472350px;}
.y33{bottom:826.518000px;}
.ya4{bottom:826.614000px;}
.y2c{bottom:829.233150px;}
.y8f{bottom:829.944750px;}
.y4{bottom:832.043250px;}
.y6e{bottom:838.972350px;}
.y32{bottom:843.018000px;}
.y87{bottom:846.247800px;}
.y6d{bottom:855.472350px;}
.ya3{bottom:856.611000px;}
.y5e{bottom:859.518000px;}
.y8e{bottom:859.941750px;}
.y8a{bottom:871.972350px;}
.y5d{bottom:876.018000px;}
.y31{bottom:876.186000px;}
.y86{bottom:879.241800px;}
.y3{bottom:881.543250px;}
.y95{bottom:888.472350px;}
.y30{bottom:892.518000px;}
.y94{bottom:904.972350px;}
.y2f{bottom:909.018000px;}
.y85{bottom:912.235800px;}
.y98{bottom:921.472350px;}
.y153{bottom:924.148350px;}
.y180{bottom:925.406100px;}
.y2e{bottom:925.518000px;}
.y183{bottom:925.894350px;}
.y182{bottom:926.033850px;}
.y17e{bottom:926.156400px;}
.y17f{bottom:926.341050px;}
.y17d{bottom:926.507250px;}
.y8d{bottom:928.729800px;}
.ya2{bottom:928.870200px;}
.y2{bottom:931.043250px;}
.y97{bottom:937.972350px;}
.y84{bottom:945.229800px;}
.y8c{bottom:946.729800px;}
.y83{bottom:947.579700px;}
.y152{bottom:948.151350px;}
.y177{bottom:948.300000px;}
.ya1{bottom:949.481700px;}
.y96{bottom:954.472350px;}
.y2d{bottom:958.518000px;}
.h14{height:21.030000px;}
.h5{height:27.060000px;}
.h13{height:32.472000px;}
.h12{height:33.156000px;}
.h15{height:34.080000px;}
.h17{height:34.368000px;}
.ha{height:35.178000px;}
.hb{height:37.884000px;}
.he{height:38.724000px;}
.h7{height:43.296000px;}
.h6{height:44.208000px;}
.h9{height:44.472000px;}
.h4{height:48.708000px;}
.h2{height:66.312000px;}
.h8{height:74.004654px;}
.h10{height:75.180000px;}
.h11{height:79.884000px;}
.h16{height:80.136000px;}
.hf{height:80.388000px;}
.hc{height:83.376000px;}
.hd{height:97.416000px;}
.h3{height:162.360000px;}
.h0{height:1020.472500px;}
.h1{height:1020.750000px;}
.w2{width:1530.705000px;}
.w0{width:1530.707970px;}
.w1{width:1530.750000px;}
.x0{left:0.000000px;}
.x4{left:42.519600px;}
.x3{left:44.019600px;}
.x2{left:45.551550px;}
.x21{left:62.710950px;}
.x1b{left:64.153350px;}
.x1e{left:66.125400px;}
.x13{left:276.171600px;}
.x5{left:278.859600px;}
.x12{left:392.247600px;}
.x15{left:393.744150px;}
.xf{left:395.427600px;}
.x20{left:413.888850px;}
.x1f{left:416.017650px;}
.x14{left:508.323600px;}
.x18{left:512.571600px;}
.x16{left:567.362100px;}
.x7{left:809.373900px;}
.x1d{left:828.804750px;}
.x22{left:829.972050px;}
.x24{left:831.866100px;}
.x8{left:1041.525900px;}
.x25{left:1153.694100px;}
.x23{left:1157.354100px;}
.x11{left:1159.592250px;}
.x10{left:1160.598450px;}
.x1c{left:1178.852250px;}
.x9{left:1273.675650px;}
.x1a{left:1275.669900px;}
.x1{left:1277.090400px;}
.xa{left:1282.672500px;}
.xb{left:1299.861300px;}
.xc{left:1305.373800px;}
.xd{left:1321.480800px;}
.x17{left:1334.009100px;}
.xe{left:1401.123300px;}
.x19{left:1438.011000px;}
.x6{left:1442.022750px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:10.666667pt;}
.v3{vertical-align:33.152000pt;}
.v2{vertical-align:37.781333pt;}
.ls0{letter-spacing:0.000000pt;}
.lsb{letter-spacing:0.042667pt;}
.ls2{letter-spacing:0.170667pt;}
.ls8{letter-spacing:0.213333pt;}
.lsd{letter-spacing:0.256000pt;}
.lse{letter-spacing:0.298667pt;}
.ls1{letter-spacing:0.341333pt;}
.ls9{letter-spacing:0.469333pt;}
.ls5{letter-spacing:0.554667pt;}
.ls7{letter-spacing:0.640000pt;}
.ls4{letter-spacing:0.682667pt;}
.lsc{letter-spacing:0.810667pt;}
.ls6{letter-spacing:0.896000pt;}
.ls3{letter-spacing:1.792000pt;}
.lsf{letter-spacing:18.346667pt;}
.lsa{letter-spacing:210.730667pt;}
.ws36{word-spacing:-224.938667pt;}
.ws33{word-spacing:-31.968000pt;}
.ws96{word-spacing:-24.405333pt;}
.ws5e{word-spacing:-15.360000pt;}
.ws12{word-spacing:-14.208000pt;}
.ws67{word-spacing:-13.653333pt;}
.ws63{word-spacing:-13.312000pt;}
.ws5f{word-spacing:-13.226667pt;}
.ws50{word-spacing:-12.928000pt;}
.ws7b{word-spacing:-12.800000pt;}
.ws4f{word-spacing:-12.714667pt;}
.ws92{word-spacing:-12.629333pt;}
.ws65{word-spacing:-12.586667pt;}
.ws5a{word-spacing:-12.458667pt;}
.ws32{word-spacing:-12.432000pt;}
.ws46{word-spacing:-12.416000pt;}
.ws99{word-spacing:-12.202667pt;}
.ws7c{word-spacing:-12.032000pt;}
.ws48{word-spacing:-11.989333pt;}
.ws3b{word-spacing:-11.904000pt;}
.ws90{word-spacing:-11.818667pt;}
.wsc1{word-spacing:-11.776000pt;}
.wsa1{word-spacing:-11.733333pt;}
.wsc3{word-spacing:-11.562667pt;}
.ws37{word-spacing:-11.544000pt;}
.wsa6{word-spacing:-11.520000pt;}
.wsa3{word-spacing:-11.392000pt;}
.ws77{word-spacing:-11.178667pt;}
.wsa4{word-spacing:-10.880000pt;}
.ws72{word-spacing:-10.794667pt;}
.ws42{word-spacing:-10.752000pt;}
.ws31{word-spacing:-10.656000pt;}
.wsa7{word-spacing:-10.624000pt;}
.ws66{word-spacing:-10.538667pt;}
.wsa9{word-spacing:-10.453333pt;}
.ws4d{word-spacing:-10.410667pt;}
.ws4b{word-spacing:-10.368000pt;}
.ws44{word-spacing:-10.325333pt;}
.ws69{word-spacing:-10.240000pt;}
.ws3d{word-spacing:-10.197333pt;}
.wsa5{word-spacing:-10.154667pt;}
.ws8f{word-spacing:-10.112000pt;}
.ws71{word-spacing:-9.941333pt;}
.ws53{word-spacing:-9.898667pt;}
.ws49{word-spacing:-9.856000pt;}
.ws45{word-spacing:-9.770667pt;}
.ws41{word-spacing:-9.685333pt;}
.wsaa{word-spacing:-9.429333pt;}
.ws86{word-spacing:-9.258667pt;}
.ws47{word-spacing:-9.216000pt;}
.ws9d{word-spacing:-9.130667pt;}
.ws79{word-spacing:-9.045333pt;}
.ws43{word-spacing:-9.002667pt;}
.ws97{word-spacing:-8.917333pt;}
.ws70{word-spacing:-8.874667pt;}
.ws6c{word-spacing:-8.832000pt;}
.ws6d{word-spacing:-8.789333pt;}
.wsac{word-spacing:-8.704000pt;}
.ws88{word-spacing:-8.618667pt;}
.ws83{word-spacing:-8.533333pt;}
.wsc2{word-spacing:-8.490667pt;}
.ws3e{word-spacing:-8.405333pt;}
.wsab{word-spacing:-8.362667pt;}
.ws3c{word-spacing:-8.320000pt;}
.ws68{word-spacing:-8.277333pt;}
.wsc6{word-spacing:-7.978667pt;}
.ws60{word-spacing:-7.850667pt;}
.ws8c{word-spacing:-7.765333pt;}
.ws80{word-spacing:-7.722667pt;}
.ws7e{word-spacing:-7.680000pt;}
.ws74{word-spacing:-7.637333pt;}
.wsba{word-spacing:-7.552000pt;}
.ws93{word-spacing:-7.509333pt;}
.ws3a{word-spacing:-7.424000pt;}
.ws57{word-spacing:-7.381333pt;}
.wsb8{word-spacing:-7.338667pt;}
.wsc0{word-spacing:-7.125333pt;}
.wsb3{word-spacing:-7.082667pt;}
.ws52{word-spacing:-7.040000pt;}
.ws8a{word-spacing:-6.997333pt;}
.wsb7{word-spacing:-6.826667pt;}
.ws4a{word-spacing:-6.741333pt;}
.wsb6{word-spacing:-6.698667pt;}
.ws5d{word-spacing:-6.624000pt;}
.wsbb{word-spacing:-6.613333pt;}
.ws5c{word-spacing:-6.592000pt;}
.ws64{word-spacing:-6.528000pt;}
.ws91{word-spacing:-6.485333pt;}
.ws39{word-spacing:-6.314667pt;}
.wsc5{word-spacing:-6.229333pt;}
.wsb1{word-spacing:-6.101333pt;}
.wsa8{word-spacing:-6.058667pt;}
.ws6e{word-spacing:-6.016000pt;}
.wsae{word-spacing:-5.973333pt;}
.ws6b{word-spacing:-5.888000pt;}
.ws6a{word-spacing:-5.845333pt;}
.ws3f{word-spacing:-5.802667pt;}
.ws85{word-spacing:-5.674667pt;}
.ws9f{word-spacing:-5.589333pt;}
.wsbd{word-spacing:-5.546667pt;}
.ws9a{word-spacing:-5.504000pt;}
.ws8b{word-spacing:-5.418667pt;}
.ws8e{word-spacing:-5.205333pt;}
.ws87{word-spacing:-5.162667pt;}
.ws62{word-spacing:-5.077333pt;}
.ws59{word-spacing:-4.906667pt;}
.ws81{word-spacing:-4.778667pt;}
.ws55{word-spacing:-4.693333pt;}
.ws76{word-spacing:-4.437333pt;}
.wsc4{word-spacing:-4.394667pt;}
.wsbf{word-spacing:-4.224000pt;}
.wsb2{word-spacing:-4.138667pt;}
.ws7d{word-spacing:-3.882667pt;}
.ws84{word-spacing:-3.840000pt;}
.wsb5{word-spacing:-3.797333pt;}
.wsa0{word-spacing:-3.584000pt;}
.ws8d{word-spacing:-3.498667pt;}
.ws78{word-spacing:-3.456000pt;}
.wsb9{word-spacing:-3.413333pt;}
.ws51{word-spacing:-3.242667pt;}
.wsa2{word-spacing:-3.114667pt;}
.wsbc{word-spacing:-3.072000pt;}
.ws4e{word-spacing:-2.816000pt;}
.ws6f{word-spacing:-2.730667pt;}
.ws54{word-spacing:-2.602667pt;}
.wsd{word-spacing:-2.346667pt;}
.wsad{word-spacing:-2.176000pt;}
.wsaf{word-spacing:-2.133333pt;}
.ws89{word-spacing:-2.005333pt;}
.ws1c{word-spacing:-1.962667pt;}
.ws56{word-spacing:-1.877333pt;}
.ws1f{word-spacing:-1.792000pt;}
.ws7{word-spacing:-1.664000pt;}
.wsb{word-spacing:-1.450667pt;}
.ws30{word-spacing:-1.365333pt;}
.ws7f{word-spacing:-1.280000pt;}
.ws61{word-spacing:-1.194667pt;}
.ws10{word-spacing:-0.896000pt;}
.ws1e{word-spacing:-0.853333pt;}
.ws98{word-spacing:-0.810667pt;}
.ws15{word-spacing:-0.682667pt;}
.ws2e{word-spacing:-0.213333pt;}
.ws0{word-spacing:-0.192000pt;}
.ws17{word-spacing:-0.128000pt;}
.ws2d{word-spacing:0.000000pt;}
.wsbe{word-spacing:0.085333pt;}
.ws4c{word-spacing:0.426667pt;}
.ws2c{word-spacing:0.469333pt;}
.ws4{word-spacing:0.480000pt;}
.ws1d{word-spacing:0.512000pt;}
.ws23{word-spacing:0.554667pt;}
.ws24{word-spacing:0.597333pt;}
.ws26{word-spacing:0.810667pt;}
.ws2f{word-spacing:1.066667pt;}
.wsb0{word-spacing:1.109333pt;}
.ws3{word-spacing:1.536000pt;}
.ws11{word-spacing:1.706667pt;}
.ws9e{word-spacing:1.749333pt;}
.wsf{word-spacing:2.005333pt;}
.ws27{word-spacing:2.133333pt;}
.ws9{word-spacing:2.176000pt;}
.ws13{word-spacing:2.346667pt;}
.ws40{word-spacing:2.645333pt;}
.ws75{word-spacing:2.688000pt;}
.ws16{word-spacing:3.413333pt;}
.wsc{word-spacing:3.498667pt;}
.ws94{word-spacing:3.669333pt;}
.ws35{word-spacing:3.776000pt;}
.ws82{word-spacing:4.394667pt;}
.ws14{word-spacing:4.864000pt;}
.ws34{word-spacing:4.960000pt;}
.ws2{word-spacing:5.120000pt;}
.ws1{word-spacing:5.280000pt;}
.ws1a{word-spacing:5.930667pt;}
.ws29{word-spacing:6.016000pt;}
.ws2a{word-spacing:6.058667pt;}
.wse{word-spacing:6.101333pt;}
.ws1b{word-spacing:6.698667pt;}
.ws19{word-spacing:6.784000pt;}
.ws73{word-spacing:7.082667pt;}
.wsa{word-spacing:7.552000pt;}
.ws18{word-spacing:7.594667pt;}
.ws58{word-spacing:7.680000pt;}
.ws20{word-spacing:8.448000pt;}
.ws38{word-spacing:9.333333pt;}
.ws22{word-spacing:9.344000pt;}
.ws9c{word-spacing:9.429333pt;}
.ws9b{word-spacing:10.922667pt;}
.ws7a{word-spacing:11.178667pt;}
.ws6{word-spacing:12.288000pt;}
.ws5{word-spacing:12.330667pt;}
.ws28{word-spacing:12.458667pt;}
.ws8{word-spacing:13.610667pt;}
.wsb4{word-spacing:13.952000pt;}
.ws95{word-spacing:14.378667pt;}
.ws5b{word-spacing:14.720000pt;}
.ws25{word-spacing:15.018667pt;}
.wsc7{word-spacing:15.530667pt;}
.ws2b{word-spacing:18.901333pt;}
.ws21{word-spacing:25.301333pt;}
._2a{margin-left:-5139.653333pt;}
._2d{margin-left:-210.730667pt;}
._13{margin-left:-28.202667pt;}
._16{margin-left:-26.325333pt;}
._17{margin-left:-24.661333pt;}
._12{margin-left:-23.637333pt;}
._18{margin-left:-22.272000pt;}
._14{margin-left:-20.053333pt;}
._15{margin-left:-14.421333pt;}
._2e{margin-left:-7.488000pt;}
._2c{margin-left:-5.973333pt;}
._b{margin-left:-4.394667pt;}
._11{margin-left:-3.157333pt;}
._0{margin-left:-1.920000pt;}
._2{margin-left:-0.960000pt;}
._c{width:0.896000pt;}
._1a{width:2.176000pt;}
._1c{width:3.328000pt;}
._1f{width:4.608000pt;}
._1b{width:5.546667pt;}
._1d{width:6.570667pt;}
._22{width:7.765333pt;}
._19{width:8.704000pt;}
._26{width:9.685333pt;}
._20{width:10.666667pt;}
._21{width:12.096000pt;}
._a{width:13.610667pt;}
._e{width:14.890667pt;}
._23{width:16.000000pt;}
._9{width:17.258667pt;}
._29{width:18.565333pt;}
._10{width:19.493333pt;}
._27{width:20.522667pt;}
._28{width:21.424000pt;}
._4{width:22.656000pt;}
._5{width:24.021333pt;}
._2b{width:25.557333pt;}
._6{width:27.114667pt;}
._33{width:28.672000pt;}
._7{width:33.898667pt;}
._d{width:37.333333pt;}
._1e{width:40.576000pt;}
._8{width:44.096000pt;}
._24{width:47.061333pt;}
._25{width:48.085333pt;}
._1{width:49.920000pt;}
._3{width:55.680000pt;}
._f{width:139.200000pt;}
._32{width:326.181333pt;}
._30{width:714.784000pt;}
._31{width:980.784000pt;}
._2f{width:1419.253333pt;}
.fs3{font-size:26.666667pt;}
.fs5{font-size:32.000000pt;}
.fs6{font-size:34.666667pt;}
.fs7{font-size:37.333333pt;}
.fs4{font-size:42.666667pt;}
.fs2{font-size:48.000000pt;}
.fs0{font-size:64.000000pt;}
.fs8{font-size:96.000000pt;}
.fs1{font-size:160.000000pt;}
.y0{bottom:0.000000pt;}
.y181{bottom:28.033333pt;}
.y12{bottom:29.366667pt;}
.y88{bottom:29.928800pt;}
.y17c{bottom:30.966533pt;}
.y6c{bottom:44.349600pt;}
.y6b{bottom:53.682933pt;}
.y89{bottom:56.419867pt;}
.y6a{bottom:63.016267pt;}
.yab{bottom:67.764800pt;}
.y15f{bottom:69.340933pt;}
.y80{bottom:71.086533pt;}
.y161{bottom:71.090267pt;}
.y69{bottom:72.349600pt;}
.y5c{bottom:74.682667pt;}
.yaa{bottom:77.098133pt;}
.ya0{bottom:77.726533pt;}
.y15e{bottom:82.674267pt;}
.yd2{bottom:83.911200pt;}
.y11{bottom:85.353733pt;}
.y7f{bottom:85.753200pt;}
.y5b{bottom:89.349333pt;}
.y9f{bottom:89.729867pt;}
.y15d{bottom:96.007600pt;}
.yd1{bottom:96.711200pt;}
.y7e{bottom:100.419867pt;}
.y9e{bottom:101.733200pt;}
.y5a{bottom:104.016000pt;}
.y15c{bottom:109.340933pt;}
.yd0{bottom:109.511200pt;}
.y9d{bottom:113.736533pt;}
.y7d{bottom:115.086533pt;}
.y59{bottom:118.682667pt;}
.ycf{bottom:122.311200pt;}
.y15b{bottom:122.674267pt;}
.y9c{bottom:125.739867pt;}
.y7c{bottom:129.753200pt;}
.y17b{bottom:131.094533pt;}
.y58{bottom:133.349333pt;}
.yce{bottom:135.111200pt;}
.y160{bottom:136.007600pt;}
.y9b{bottom:137.743200pt;}
.y17a{bottom:141.758533pt;}
.y7b{bottom:144.419867pt;}
.ycd{bottom:147.911200pt;}
.y57{bottom:148.016000pt;}
.y15a{bottom:149.340933pt;}
.y9a{bottom:149.746533pt;}
.y179{bottom:152.422533pt;}
.y7a{bottom:159.086533pt;}
.ycc{bottom:160.711200pt;}
.y99{bottom:161.749867pt;}
.y159{bottom:162.674267pt;}
.y56{bottom:162.682667pt;}
.y178{bottom:163.086533pt;}
.ycb{bottom:173.511200pt;}
.y79{bottom:173.753200pt;}
.y158{bottom:176.007600pt;}
.y55{bottom:177.349333pt;}
.yd4{bottom:186.311200pt;}
.y151{bottom:186.652667pt;}
.y78{bottom:188.419867pt;}
.y157{bottom:189.340933pt;}
.y54{bottom:192.016000pt;}
.yca{bottom:199.111200pt;}
.y150{bottom:199.452667pt;}
.y156{bottom:202.674267pt;}
.y77{bottom:203.086533pt;}
.y53{bottom:206.682667pt;}
.y10{bottom:211.594000pt;}
.y116{bottom:211.707200pt;}
.yc9{bottom:211.911200pt;}
.y14f{bottom:212.252667pt;}
.y155{bottom:216.007600pt;}
.y76{bottom:217.753200pt;}
.y61{bottom:221.349333pt;}
.y68{bottom:222.666000pt;}
.y115{bottom:224.507200pt;}
.yc8{bottom:224.711200pt;}
.y75{bottom:232.419867pt;}
.y67{bottom:234.669333pt;}
.y52{bottom:236.016000pt;}
.y114{bottom:237.307200pt;}
.yc7{bottom:237.511200pt;}
.y14e{bottom:237.852667pt;}
.y66{bottom:246.672667pt;}
.y82{bottom:247.086533pt;}
.yf6{bottom:247.259200pt;}
.y154{bottom:249.588400pt;}
.y113{bottom:250.107200pt;}
.yc6{bottom:250.311200pt;}
.y14d{bottom:250.652667pt;}
.y51{bottom:250.682667pt;}
.yf{bottom:255.594000pt;}
.y65{bottom:258.676000pt;}
.yf5{bottom:260.059200pt;}
.y74{bottom:261.753200pt;}
.y112{bottom:262.907200pt;}
.yc5{bottom:263.111200pt;}
.y14c{bottom:263.452667pt;}
.y50{bottom:265.349333pt;}
.y64{bottom:270.679333pt;}
.yf4{bottom:272.859200pt;}
.y111{bottom:275.707200pt;}
.yc4{bottom:275.911200pt;}
.y14b{bottom:276.252667pt;}
.y73{bottom:276.419867pt;}
.y4f{bottom:280.016000pt;}
.y63{bottom:282.682667pt;}
.y131{bottom:287.717867pt;}
.y110{bottom:288.507200pt;}
.yc3{bottom:288.711200pt;}
.y72{bottom:291.086533pt;}
.y4e{bottom:294.682667pt;}
.yf3{bottom:298.459200pt;}
.ye{bottom:299.594000pt;}
.y130{bottom:300.517867pt;}
.y10f{bottom:301.307200pt;}
.yc2{bottom:301.511200pt;}
.y14a{bottom:301.852667pt;}
.y71{bottom:305.753200pt;}
.y4d{bottom:309.349333pt;}
.yf2{bottom:311.259200pt;}
.y12f{bottom:313.317867pt;}
.y10e{bottom:314.107200pt;}
.yc1{bottom:314.311200pt;}
.y149{bottom:314.652667pt;}
.y81{bottom:320.419867pt;}
.y60{bottom:324.016000pt;}
.y12e{bottom:326.117867pt;}
.yc0{bottom:327.111200pt;}
.y148{bottom:327.452667pt;}
.y2b{bottom:335.086533pt;}
.yf1{bottom:336.859200pt;}
.y4c{bottom:338.682667pt;}
.y12d{bottom:338.917867pt;}
.y10d{bottom:339.707200pt;}
.yd5{bottom:339.911200pt;}
.yd{bottom:343.594000pt;}
.yf0{bottom:349.659200pt;}
.y2a{bottom:349.753200pt;}
.y12c{bottom:351.717867pt;}
.y10c{bottom:352.507200pt;}
.y176{bottom:352.583467pt;}
.ybf{bottom:352.711200pt;}
.y147{bottom:353.052667pt;}
.y4b{bottom:353.349333pt;}
.y175{bottom:362.183467pt;}
.yef{bottom:362.459200pt;}
.y29{bottom:364.419867pt;}
.y12b{bottom:364.517867pt;}
.y10b{bottom:365.307200pt;}
.ybe{bottom:365.511200pt;}
.y146{bottom:365.852667pt;}
.y4a{bottom:368.016000pt;}
.y174{bottom:371.783467pt;}
.y184{bottom:374.214667pt;}
.yee{bottom:375.259200pt;}
.y12a{bottom:377.317867pt;}
.ybd{bottom:378.311200pt;}
.y145{bottom:378.652667pt;}
.y28{bottom:379.086533pt;}
.y173{bottom:381.383467pt;}
.y49{bottom:382.682667pt;}
.yc{bottom:387.594000pt;}
.yed{bottom:388.059200pt;}
.y10a{bottom:390.907200pt;}
.y172{bottom:390.983467pt;}
.ybc{bottom:391.111200pt;}
.y144{bottom:391.452667pt;}
.y27{bottom:393.753200pt;}
.y48{bottom:397.349333pt;}
.y171{bottom:400.583467pt;}
.yec{bottom:400.859200pt;}
.y129{bottom:402.917867pt;}
.y109{bottom:403.707200pt;}
.ybb{bottom:403.911200pt;}
.y143{bottom:404.252667pt;}
.y26{bottom:408.419867pt;}
.y170{bottom:410.183467pt;}
.y47{bottom:412.016000pt;}
.yeb{bottom:413.659200pt;}
.y128{bottom:415.717867pt;}
.y108{bottom:416.507200pt;}
.yba{bottom:416.711200pt;}
.y142{bottom:417.052667pt;}
.y16f{bottom:419.783467pt;}
.y25{bottom:423.086533pt;}
.yea{bottom:426.459200pt;}
.y46{bottom:426.682667pt;}
.y127{bottom:428.517867pt;}
.y107{bottom:429.307200pt;}
.y16e{bottom:429.383467pt;}
.yb9{bottom:429.511200pt;}
.y141{bottom:429.852667pt;}
.yb{bottom:431.594000pt;}
.y24{bottom:437.753200pt;}
.y16d{bottom:438.983467pt;}
.ye9{bottom:439.259200pt;}
.y126{bottom:441.317867pt;}
.y45{bottom:441.349333pt;}
.y106{bottom:442.107200pt;}
.yb8{bottom:442.311200pt;}
.y16c{bottom:448.583467pt;}
.ye8{bottom:452.059200pt;}
.y23{bottom:452.419867pt;}
.y125{bottom:454.117867pt;}
.y105{bottom:454.907200pt;}
.yb7{bottom:455.111200pt;}
.y140{bottom:455.452667pt;}
.y62{bottom:456.016000pt;}
.y16b{bottom:458.183467pt;}
.y124{bottom:466.917867pt;}
.y22{bottom:467.086533pt;}
.y104{bottom:467.707200pt;}
.y16a{bottom:467.783467pt;}
.yd3{bottom:467.911200pt;}
.y13f{bottom:468.252667pt;}
.y44{bottom:470.682667pt;}
.ya{bottom:475.594000pt;}
.y169{bottom:477.383467pt;}
.ye7{bottom:477.659200pt;}
.y123{bottom:479.717867pt;}
.y103{bottom:480.507200pt;}
.yb6{bottom:480.711200pt;}
.y13e{bottom:481.052667pt;}
.y21{bottom:481.753200pt;}
.y43{bottom:485.349333pt;}
.y168{bottom:486.983467pt;}
.ye6{bottom:490.459200pt;}
.y122{bottom:492.517867pt;}
.y102{bottom:493.307200pt;}
.yb5{bottom:493.511200pt;}
.y13d{bottom:493.852667pt;}
.y20{bottom:496.419867pt;}
.y167{bottom:496.583467pt;}
.y42{bottom:500.016000pt;}
.ye5{bottom:503.259200pt;}
.y121{bottom:505.317867pt;}
.y101{bottom:506.107200pt;}
.y166{bottom:506.183467pt;}
.yb4{bottom:506.311200pt;}
.y13c{bottom:506.652667pt;}
.y1f{bottom:511.086533pt;}
.y41{bottom:514.682667pt;}
.y165{bottom:515.783467pt;}
.ye4{bottom:516.059200pt;}
.y120{bottom:518.117867pt;}
.y100{bottom:518.907200pt;}
.yb3{bottom:519.111200pt;}
.y13b{bottom:519.452667pt;}
.y9{bottom:519.594000pt;}
.y164{bottom:525.383467pt;}
.y1e{bottom:525.753200pt;}
.ye3{bottom:528.859200pt;}
.y40{bottom:529.349333pt;}
.y11f{bottom:530.917867pt;}
.yff{bottom:531.707200pt;}
.yb2{bottom:531.911200pt;}
.y13a{bottom:532.252667pt;}
.y163{bottom:534.983467pt;}
.y1d{bottom:540.419867pt;}
.ye2{bottom:541.659200pt;}
.y11e{bottom:543.717867pt;}
.y3f{bottom:544.016000pt;}
.yfe{bottom:544.507200pt;}
.y162{bottom:544.583467pt;}
.yb1{bottom:544.711200pt;}
.ye1{bottom:554.459200pt;}
.y1c{bottom:555.086533pt;}
.y11d{bottom:556.517867pt;}
.yb0{bottom:557.511200pt;}
.y139{bottom:557.852667pt;}
.y3e{bottom:558.682667pt;}
.y8{bottom:563.594000pt;}
.ye0{bottom:567.259200pt;}
.y11c{bottom:569.317867pt;}
.y1b{bottom:569.753200pt;}
.yfd{bottom:570.107200pt;}
.yaf{bottom:570.311200pt;}
.y138{bottom:570.652667pt;}
.y3d{bottom:573.349333pt;}
.ydf{bottom:580.059200pt;}
.y11b{bottom:582.117867pt;}
.yfc{bottom:582.907200pt;}
.yae{bottom:583.111200pt;}
.y137{bottom:583.452667pt;}
.y1a{bottom:584.419867pt;}
.y3c{bottom:588.016000pt;}
.yfb{bottom:595.707200pt;}
.yad{bottom:595.911200pt;}
.y136{bottom:596.252667pt;}
.y19{bottom:599.086533pt;}
.ya9{bottom:601.448000pt;}
.y3b{bottom:602.682667pt;}
.yde{bottom:605.659200pt;}
.y7{bottom:607.594000pt;}
.y11a{bottom:607.717867pt;}
.y135{bottom:609.052667pt;}
.y18{bottom:613.753200pt;}
.y3a{bottom:617.349333pt;}
.ydd{bottom:618.459200pt;}
.y119{bottom:620.517867pt;}
.yfa{bottom:621.307200pt;}
.y134{bottom:621.852667pt;}
.yac{bottom:625.472800pt;}
.ya8{bottom:628.112000pt;}
.y17{bottom:628.419867pt;}
.ydc{bottom:629.125867pt;}
.y93{bottom:631.072667pt;}
.y39{bottom:632.016000pt;}
.y118{bottom:633.317867pt;}
.yf9{bottom:634.107200pt;}
.y133{bottom:634.652667pt;}
.y16{bottom:643.086533pt;}
.ydb{bottom:643.792533pt;}
.y117{bottom:646.117867pt;}
.y38{bottom:646.682667pt;}
.yf8{bottom:646.907200pt;}
.y132{bottom:647.452667pt;}
.y6{bottom:651.594000pt;}
.ya7{bottom:654.776000pt;}
.y92{bottom:657.736667pt;}
.y15{bottom:657.753200pt;}
.y37{bottom:661.349333pt;}
.y1{bottom:664.165200pt;}
.y14{bottom:672.419867pt;}
.yf7{bottom:672.507200pt;}
.yda{bottom:673.125867pt;}
.y36{bottom:676.016000pt;}
.yd9{bottom:676.243067pt;}
.yd7{bottom:677.176400pt;}
.yd8{bottom:677.288400pt;}
.ya6{bottom:681.440000pt;}
.y91{bottom:684.400667pt;}
.yd6{bottom:686.323067pt;}
.y13{bottom:687.086533pt;}
.y35{bottom:690.682667pt;}
.y5{bottom:695.594000pt;}
.y70{bottom:701.753200pt;}
.y5f{bottom:705.349333pt;}
.ya5{bottom:708.104000pt;}
.y90{bottom:711.064667pt;}
.y6f{bottom:716.419867pt;}
.y34{bottom:720.016000pt;}
.y8b{bottom:731.086533pt;}
.y33{bottom:734.682667pt;}
.ya4{bottom:734.768000pt;}
.y2c{bottom:737.096133pt;}
.y8f{bottom:737.728667pt;}
.y4{bottom:739.594000pt;}
.y6e{bottom:745.753200pt;}
.y32{bottom:749.349333pt;}
.y87{bottom:752.220267pt;}
.y6d{bottom:760.419867pt;}
.ya3{bottom:761.432000pt;}
.y5e{bottom:764.016000pt;}
.y8e{bottom:764.392667pt;}
.y8a{bottom:775.086533pt;}
.y5d{bottom:778.682667pt;}
.y31{bottom:778.832000pt;}
.y86{bottom:781.548267pt;}
.y3{bottom:783.594000pt;}
.y95{bottom:789.753200pt;}
.y30{bottom:793.349333pt;}
.y94{bottom:804.419867pt;}
.y2f{bottom:808.016000pt;}
.y85{bottom:810.876267pt;}
.y98{bottom:819.086533pt;}
.y153{bottom:821.465200pt;}
.y180{bottom:822.583200pt;}
.y2e{bottom:822.682667pt;}
.y183{bottom:823.017200pt;}
.y182{bottom:823.141200pt;}
.y17e{bottom:823.250133pt;}
.y17f{bottom:823.414267pt;}
.y17d{bottom:823.562000pt;}
.y8d{bottom:825.537600pt;}
.ya2{bottom:825.662400pt;}
.y2{bottom:827.594000pt;}
.y97{bottom:833.753200pt;}
.y84{bottom:840.204267pt;}
.y8c{bottom:841.537600pt;}
.y83{bottom:842.293067pt;}
.y152{bottom:842.801200pt;}
.y177{bottom:842.933333pt;}
.ya1{bottom:843.983733pt;}
.y96{bottom:848.419867pt;}
.y2d{bottom:852.016000pt;}
.h14{height:18.693333pt;}
.h5{height:24.053333pt;}
.h13{height:28.864000pt;}
.h12{height:29.472000pt;}
.h15{height:30.293333pt;}
.h17{height:30.549333pt;}
.ha{height:31.269333pt;}
.hb{height:33.674667pt;}
.he{height:34.421333pt;}
.h7{height:38.485333pt;}
.h6{height:39.296000pt;}
.h9{height:39.530667pt;}
.h4{height:43.296000pt;}
.h2{height:58.944000pt;}
.h8{height:65.781915pt;}
.h10{height:66.826667pt;}
.h11{height:71.008000pt;}
.h16{height:71.232000pt;}
.hf{height:71.456000pt;}
.hc{height:74.112000pt;}
.hd{height:86.592000pt;}
.h3{height:144.320000pt;}
.h0{height:907.086667pt;}
.h1{height:907.333333pt;}
.w2{width:1360.626667pt;}
.w0{width:1360.629307pt;}
.w1{width:1360.666667pt;}
.x0{left:0.000000pt;}
.x4{left:37.795200pt;}
.x3{left:39.128533pt;}
.x2{left:40.490267pt;}
.x21{left:55.743067pt;}
.x1b{left:57.025200pt;}
.x1e{left:58.778133pt;}
.x13{left:245.485867pt;}
.x5{left:247.875200pt;}
.x12{left:348.664533pt;}
.x15{left:349.994800pt;}
.xf{left:351.491200pt;}
.x20{left:367.901200pt;}
.x1f{left:369.793467pt;}
.x14{left:451.843200pt;}
.x18{left:455.619200pt;}
.x16{left:504.321867pt;}
.x7{left:719.443467pt;}
.x1d{left:736.715333pt;}
.x22{left:737.752933pt;}
.x24{left:739.436533pt;}
.x8{left:925.800800pt;}
.x25{left:1025.505867pt;}
.x23{left:1028.759200pt;}
.x11{left:1030.748667pt;}
.x10{left:1031.643067pt;}
.x1c{left:1047.868667pt;}
.x9{left:1132.156133pt;}
.x1a{left:1133.928800pt;}
.x1{left:1135.191467pt;}
.xa{left:1140.153333pt;}
.xb{left:1155.432267pt;}
.xc{left:1160.332267pt;}
.xd{left:1174.649600pt;}
.x17{left:1185.785867pt;}
.xe{left:1245.442933pt;}
.x19{left:1278.232000pt;}
.x6{left:1281.798000pt;}
}




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