
    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_46c6a0772de71d1dac4b6eeb.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.095703;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_e1a4074916113459b2152ce2.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_277d29593aaee12305ad942f.woff2')format("woff");}.ff3{font-family:ff3;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;}
@font-face{font-family:ff4;src:url('chunks/assets/font_9362d5c1d1a374d807ba0202.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.104004;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_8f843d545eef79e94834ab15.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_897c8c45a5755be36f222b71.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.961000;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_b4b3566fac179fba726c2fc4.woff2')format("woff");}.ff7{font-family:ff7;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;}
.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);}
.v4{vertical-align:-19.980000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:19.980000px;}
.v3{vertical-align:21.966600px;}
.v1{vertical-align:27.972000px;}
.lsd{letter-spacing:-7.326000px;}
.lsa{letter-spacing:-5.994000px;}
.ls8{letter-spacing:-4.320000px;}
.lsc{letter-spacing:-2.220000px;}
.ls7{letter-spacing:-1.998000px;}
.ls6{letter-spacing:-1.294260px;}
.ls2{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.881496px;}
.lsb{letter-spacing:1.054200px;}
.ls1{letter-spacing:1.890000px;}
.ls4{letter-spacing:2.100000px;}
.ls5{letter-spacing:2.310000px;}
.ls0{letter-spacing:2.940000px;}
.ls9{letter-spacing:3.168000px;}
.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;}
}
.ws2e{word-spacing:-16.500000px;}
.ws12{word-spacing:-13.500000px;}
.wsee{word-spacing:-12.780000px;}
.ws5b{word-spacing:-11.502000px;}
.ws11{word-spacing:-9.619500px;}
.ws103{word-spacing:-9.174000px;}
.ws10{word-spacing:-8.745000px;}
.ws5a{word-spacing:-7.450740px;}
.ws105{word-spacing:-6.534000px;}
.ws106{word-spacing:-6.270000px;}
.ws60{word-spacing:-4.686000px;}
.ws10b{word-spacing:-4.620000px;}
.ws70{word-spacing:-3.234000px;}
.ws3f{word-spacing:-3.168000px;}
.ws6f{word-spacing:-3.102000px;}
.ws34{word-spacing:-3.036000px;}
.ws28{word-spacing:-2.970000px;}
.ws2{word-spacing:-2.940000px;}
.wsdb{word-spacing:-2.838000px;}
.ws72{word-spacing:-2.772000px;}
.ws9b{word-spacing:-2.706000px;}
.ws41{word-spacing:-2.646000px;}
.wscd{word-spacing:-2.640000px;}
.ws99{word-spacing:-2.574000px;}
.wsd7{word-spacing:-2.538000px;}
.ws2f{word-spacing:-2.508000px;}
.ws40{word-spacing:-2.442000px;}
.ws9{word-spacing:-2.430000px;}
.ws4a{word-spacing:-2.376000px;}
.ws1f{word-spacing:-2.310000px;}
.ws1b{word-spacing:-2.244000px;}
.wsdc{word-spacing:-2.178000px;}
.wsc3{word-spacing:-2.160000px;}
.wsf1{word-spacing:-2.112000px;}
.ws13{word-spacing:-2.100000px;}
.ws22{word-spacing:-2.046000px;}
.ws6d{word-spacing:-1.998000px;}
.wsb0{word-spacing:-1.980000px;}
.ws43{word-spacing:-1.914000px;}
.ws4{word-spacing:-1.890000px;}
.ws9f{word-spacing:-1.848000px;}
.ws6e{word-spacing:-1.782000px;}
.ws8a{word-spacing:-1.716000px;}
.wsb7{word-spacing:-1.674000px;}
.wsbf{word-spacing:-1.650000px;}
.wsf2{word-spacing:-1.620000px;}
.ws35{word-spacing:-1.584000px;}
.wsa8{word-spacing:-1.518000px;}
.wsc2{word-spacing:-1.512000px;}
.wsf7{word-spacing:-1.458000px;}
.ws5d{word-spacing:-1.452000px;}
.ws1{word-spacing:-1.428000px;}
.wsf8{word-spacing:-1.404000px;}
.ws94{word-spacing:-1.386000px;}
.wscf{word-spacing:-1.320000px;}
.ws3d{word-spacing:-1.254000px;}
.ws8d{word-spacing:-1.188000px;}
.ws38{word-spacing:-1.122000px;}
.wsc7{word-spacing:-1.080000px;}
.wsc0{word-spacing:-1.056000px;}
.ws19{word-spacing:-0.990000px;}
.wse7{word-spacing:-0.972000px;}
.ws7b{word-spacing:-0.924000px;}
.wsf{word-spacing:-0.918000px;}
.ws3{word-spacing:-0.881496px;}
.ws9e{word-spacing:-0.864000px;}
.wse1{word-spacing:-0.810000px;}
.wscb{word-spacing:-0.792000px;}
.wsb5{word-spacing:-0.726000px;}
.ws82{word-spacing:-0.660000px;}
.ws71{word-spacing:-0.594000px;}
.wsd8{word-spacing:-0.540000px;}
.ws20{word-spacing:-0.528000px;}
.ws30{word-spacing:-0.462000px;}
.wsf9{word-spacing:-0.432000px;}
.wsea{word-spacing:-0.396000px;}
.wse0{word-spacing:-0.378000px;}
.ws63{word-spacing:-0.330000px;}
.wse5{word-spacing:-0.324000px;}
.ws2a{word-spacing:-0.270000px;}
.ws4c{word-spacing:-0.264000px;}
.wse4{word-spacing:-0.216000px;}
.ws1e{word-spacing:-0.198000px;}
.wse2{word-spacing:-0.132000px;}
.ws59{word-spacing:-0.108000px;}
.ws47{word-spacing:-0.066000px;}
.ws91{word-spacing:-0.054000px;}
.ws0{word-spacing:0.000000px;}
.wsa9{word-spacing:0.066000px;}
.ws98{word-spacing:0.132000px;}
.ws3b{word-spacing:0.198000px;}
.ws32{word-spacing:0.264000px;}
.ws6c{word-spacing:0.324000px;}
.ws73{word-spacing:0.330000px;}
.ws52{word-spacing:0.378000px;}
.wsd1{word-spacing:0.396000px;}
.wsf5{word-spacing:0.432000px;}
.ws49{word-spacing:0.462000px;}
.ws6b{word-spacing:0.486000px;}
.ws88{word-spacing:0.528000px;}
.ws79{word-spacing:0.594000px;}
.wsae{word-spacing:0.648000px;}
.ws16{word-spacing:0.660000px;}
.ws86{word-spacing:0.702000px;}
.ws8f{word-spacing:0.726000px;}
.wsbd{word-spacing:0.756000px;}
.ws5c{word-spacing:0.792000px;}
.wse3{word-spacing:0.810000px;}
.ws75{word-spacing:0.858000px;}
.wsc{word-spacing:0.918000px;}
.ws1c{word-spacing:0.924000px;}
.wsde{word-spacing:0.972000px;}
.ws8b{word-spacing:0.990000px;}
.ws2d{word-spacing:1.026000px;}
.ws3c{word-spacing:1.056000px;}
.wsfa{word-spacing:1.080000px;}
.ws81{word-spacing:1.122000px;}
.ws57{word-spacing:1.188000px;}
.ws64{word-spacing:1.254000px;}
.wsb{word-spacing:1.296000px;}
.ws44{word-spacing:1.320000px;}
.ws7d{word-spacing:1.386000px;}
.wsa{word-spacing:1.404000px;}
.ws3e{word-spacing:1.452000px;}
.wsf6{word-spacing:1.458000px;}
.ws5{word-spacing:1.512000px;}
.wsda{word-spacing:1.518000px;}
.wsfb{word-spacing:1.566000px;}
.ws4d{word-spacing:1.584000px;}
.ws92{word-spacing:1.620000px;}
.wsd0{word-spacing:1.650000px;}
.wse{word-spacing:1.674000px;}
.wse9{word-spacing:1.716000px;}
.ws42{word-spacing:1.782000px;}
.wse6{word-spacing:1.836000px;}
.wsf0{word-spacing:1.848000px;}
.ws2c{word-spacing:1.890000px;}
.ws18{word-spacing:1.914000px;}
.wsa4{word-spacing:1.944000px;}
.wsc9{word-spacing:1.980000px;}
.ws89{word-spacing:2.046000px;}
.wsd4{word-spacing:2.052000px;}
.ws56{word-spacing:2.106000px;}
.wsaa{word-spacing:2.112000px;}
.ws26{word-spacing:2.178000px;}
.wsc6{word-spacing:2.214000px;}
.wsf4{word-spacing:2.220000px;}
.ws84{word-spacing:2.244000px;}
.wsa6{word-spacing:2.268000px;}
.ws69{word-spacing:2.310000px;}
.wsa5{word-spacing:2.322000px;}
.ws21{word-spacing:2.376000px;}
.wse8{word-spacing:2.430000px;}
.wsaf{word-spacing:2.442000px;}
.wsb9{word-spacing:2.484000px;}
.wsb2{word-spacing:2.508000px;}
.wsf3{word-spacing:2.538000px;}
.wsc8{word-spacing:2.574000px;}
.wsd6{word-spacing:2.592000px;}
.ws4b{word-spacing:2.640000px;}
.ws87{word-spacing:2.706000px;}
.ws24{word-spacing:2.772000px;}
.ws2b{word-spacing:2.862000px;}
.ws7a{word-spacing:2.904000px;}
.wsb6{word-spacing:2.970000px;}
.ws8{word-spacing:3.024000px;}
.ws67{word-spacing:3.036000px;}
.wsbe{word-spacing:3.078000px;}
.ws7f{word-spacing:3.102000px;}
.ws37{word-spacing:3.168000px;}
.ws55{word-spacing:3.186000px;}
.ws7c{word-spacing:3.234000px;}
.wsa0{word-spacing:3.300000px;}
.ws54{word-spacing:3.348000px;}
.ws74{word-spacing:3.432000px;}
.wsb1{word-spacing:3.498000px;}
.wsd{word-spacing:3.510000px;}
.ws48{word-spacing:3.564000px;}
.ws5e{word-spacing:3.630000px;}
.ws85{word-spacing:3.672000px;}
.ws61{word-spacing:3.762000px;}
.ws23{word-spacing:3.828000px;}
.wsff{word-spacing:3.888000px;}
.wsad{word-spacing:3.894000px;}
.ws36{word-spacing:3.960000px;}
.ws78{word-spacing:4.026000px;}
.wsd5{word-spacing:4.050000px;}
.ws1a{word-spacing:4.092000px;}
.wsb4{word-spacing:4.158000px;}
.ws25{word-spacing:4.224000px;}
.wsdf{word-spacing:4.266000px;}
.ws45{word-spacing:4.290000px;}
.wsc1{word-spacing:4.320000px;}
.wsca{word-spacing:4.356000px;}
.ws7e{word-spacing:4.422000px;}
.ws90{word-spacing:4.482000px;}
.ws83{word-spacing:4.488000px;}
.ws9d{word-spacing:4.536000px;}
.wsd9{word-spacing:4.554000px;}
.wsd3{word-spacing:4.620000px;}
.ws8e{word-spacing:4.686000px;}
.ws29{word-spacing:4.698000px;}
.ws9a{word-spacing:4.752000px;}
.ws17{word-spacing:4.818000px;}
.ws62{word-spacing:4.884000px;}
.wsb8{word-spacing:4.914000px;}
.wsa3{word-spacing:4.950000px;}
.ws100{word-spacing:5.016000px;}
.ws93{word-spacing:5.082000px;}
.ws7{word-spacing:5.130000px;}
.ws104{word-spacing:5.148000px;}
.wsc5{word-spacing:5.184000px;}
.ws76{word-spacing:5.214000px;}
.ws14{word-spacing:5.280000px;}
.ws58{word-spacing:5.346000px;}
.wsed{word-spacing:5.400000px;}
.ws77{word-spacing:5.412000px;}
.ws68{word-spacing:5.478000px;}
.ws15{word-spacing:5.610000px;}
.wsfe{word-spacing:5.742000px;}
.ws8c{word-spacing:5.808000px;}
.ws33{word-spacing:5.874000px;}
.ws6a{word-spacing:5.994000px;}
.ws1d{word-spacing:6.006000px;}
.ws102{word-spacing:6.072000px;}
.ws101{word-spacing:6.138000px;}
.wsfd{word-spacing:6.204000px;}
.wsa7{word-spacing:6.210000px;}
.wseb{word-spacing:6.270000px;}
.ws3a{word-spacing:6.336000px;}
.ws80{word-spacing:6.402000px;}
.ws5f{word-spacing:6.468000px;}
.wsec{word-spacing:6.480000px;}
.wsab{word-spacing:6.534000px;}
.ws4e{word-spacing:6.600000px;}
.wsd2{word-spacing:6.666000px;}
.wsbc{word-spacing:6.696000px;}
.ws4f{word-spacing:6.732000px;}
.ws9c{word-spacing:6.864000px;}
.ws97{word-spacing:6.930000px;}
.wsef{word-spacing:7.062000px;}
.ws6{word-spacing:7.074000px;}
.ws95{word-spacing:7.128000px;}
.ws10e{word-spacing:7.260000px;}
.wsa2{word-spacing:7.326000px;}
.ws53{word-spacing:7.452000px;}
.ws50{word-spacing:7.458000px;}
.wsb3{word-spacing:7.788000px;}
.wsdd{word-spacing:7.986000px;}
.ws111{word-spacing:8.184000px;}
.ws51{word-spacing:8.250000px;}
.ws65{word-spacing:8.448000px;}
.ws31{word-spacing:8.712000px;}
.ws10f{word-spacing:8.976000px;}
.ws110{word-spacing:9.042000px;}
.ws39{word-spacing:9.108000px;}
.wsa1{word-spacing:9.240000px;}
.ws46{word-spacing:9.306000px;}
.ws96{word-spacing:9.372000px;}
.wsc4{word-spacing:9.504000px;}
.wsbb{word-spacing:9.570000px;}
.wsac{word-spacing:9.636000px;}
.wsce{word-spacing:9.768000px;}
.wsba{word-spacing:9.834000px;}
.wsfc{word-spacing:9.900000px;}
.ws10c{word-spacing:10.956000px;}
.ws66{word-spacing:11.880000px;}
.ws10d{word-spacing:12.144000px;}
.ws109{word-spacing:12.672000px;}
.ws10a{word-spacing:14.190000px;}
.ws107{word-spacing:15.906000px;}
.ws108{word-spacing:20.196000px;}
.wscc{word-spacing:38.070000px;}
.ws27{word-spacing:65.070000px;}
._7{margin-left:-2042.031242px;}
._1f{margin-left:-38.070000px;}
._8{margin-left:-8.731800px;}
._4{margin-left:-7.119600px;}
._2{margin-left:-6.098400px;}
._3{margin-left:-4.166400px;}
._0{margin-left:-2.740800px;}
._1{margin-left:-1.003200px;}
._5{width:1.295221px;}
._9{width:2.390936px;}
._e{width:3.964864px;}
._c{width:5.707800px;}
._16{width:6.864000px;}
._1b{width:8.184000px;}
._19{width:9.669000px;}
._1c{width:10.851000px;}
._21{width:12.322200px;}
._22{width:14.183400px;}
._17{width:31.860000px;}
._11{width:32.940000px;}
._14{width:34.506000px;}
._15{width:36.450000px;}
._13{width:38.070000px;}
._12{width:40.377842px;}
._b{width:60.372000px;}
._10{width:62.964000px;}
._f{width:65.070000px;}
._a{width:68.040000px;}
._20{width:595.180800px;}
._1a{width:607.960800px;}
._1e{width:610.180800px;}
._1d{width:612.400800px;}
._d{width:637.960800px;}
._18{width:1951.822800px;}
._6{width:1969.102800px;}
.fc2{color:rgb(0,0,0);}
.fc1{color:rgb(35,31,32);}
.fc3{color:rgb(238,37,43);}
.fc0{color:rgb(28,29,30);}
.fs7{font-size:34.980000px;}
.fs6{font-size:36.000000px;}
.fs8{font-size:38.478000px;}
.fs0{font-size:48.000000px;}
.fs3{font-size:48.972000px;}
.fs5{font-size:54.000000px;}
.fs4{font-size:60.000000px;}
.fs1{font-size:66.000000px;}
.fs9{font-size:72.000000px;}
.fs2{font-size:84.000000px;}
.y0{bottom:0.000000px;}
.y1e{bottom:9.000000px;}
.y2{bottom:77.782200px;}
.y21{bottom:81.325500px;}
.y1{bottom:89.782200px;}
.y20{bottom:93.325500px;}
.y46{bottom:139.925250px;}
.y45{bottom:153.425250px;}
.y16d{bottom:162.835050px;}
.y44{bottom:166.925250px;}
.y43{bottom:180.425250px;}
.y16c{bottom:182.635050px;}
.y17f{bottom:192.319050px;}
.y42{bottom:193.925250px;}
.y16b{bottom:202.435050px;}
.y41{bottom:207.425250px;}
.y17e{bottom:212.119050px;}
.y40{bottom:220.925250px;}
.y16a{bottom:222.235050px;}
.y17d{bottom:231.919050px;}
.y3f{bottom:234.425250px;}
.y1d{bottom:236.390550px;}
.y169{bottom:242.035050px;}
.y115{bottom:242.037300px;}
.y3e{bottom:247.925250px;}
.y61{bottom:248.204550px;}
.y17c{bottom:251.719050px;}
.y1c{bottom:252.590550px;}
.y158{bottom:257.626050px;}
.y7d{bottom:261.425250px;}
.y168{bottom:261.835050px;}
.y114{bottom:261.837300px;}
.yd2{bottom:263.089350px;}
.y60{bottom:268.004550px;}
.y17b{bottom:271.519050px;}
.yc0{bottom:271.535100px;}
.ye1{bottom:272.228250px;}
.yb1{bottom:272.232600px;}
.y7c{bottom:274.925250px;}
.y157{bottom:277.426050px;}
.y167{bottom:281.635050px;}
.y113{bottom:281.637300px;}
.yd1{bottom:282.889350px;}
.y5f{bottom:287.804550px;}
.y7b{bottom:288.425250px;}
.y1b{bottom:290.053050px;}
.y17a{bottom:291.319050px;}
.ybf{bottom:291.335100px;}
.ye0{bottom:292.028250px;}
.yb0{bottom:292.032600px;}
.y156{bottom:297.226050px;}
.y12e{bottom:300.721350px;}
.y166{bottom:301.435050px;}
.y112{bottom:301.437300px;}
.y7a{bottom:301.925250px;}
.yd0{bottom:302.689350px;}
.y3d{bottom:305.407200px;}
.y1a{bottom:306.253050px;}
.y5e{bottom:307.604550px;}
.y179{bottom:311.119050px;}
.y99{bottom:311.135100px;}
.ydf{bottom:311.828250px;}
.yaf{bottom:311.832600px;}
.y133{bottom:315.425250px;}
.y155{bottom:317.026050px;}
.y12d{bottom:320.521350px;}
.y165{bottom:321.235050px;}
.y111{bottom:321.237300px;}
.y19{bottom:322.453050px;}
.ycf{bottom:322.489350px;}
.y3c{bottom:325.207200px;}
.y5d{bottom:327.404550px;}
.y132{bottom:328.925250px;}
.y178{bottom:330.919050px;}
.y98{bottom:330.935100px;}
.y116{bottom:330.935250px;}
.yde{bottom:331.628250px;}
.yae{bottom:331.632600px;}
.y154{bottom:336.826050px;}
.y18{bottom:338.653050px;}
.y12c{bottom:340.320600px;}
.y164{bottom:341.035050px;}
.y10a{bottom:341.037300px;}
.yce{bottom:342.289350px;}
.y131{bottom:342.425250px;}
.y3b{bottom:345.007200px;}
.y5c{bottom:347.204550px;}
.y177{bottom:350.719050px;}
.y97{bottom:350.735100px;}
.ydd{bottom:351.428250px;}
.yad{bottom:351.432600px;}
.y17{bottom:354.853050px;}
.y130{bottom:355.925250px;}
.y153{bottom:356.626050px;}
.y12b{bottom:360.120600px;}
.y163{bottom:360.835050px;}
.y109{bottom:360.837300px;}
.ycd{bottom:362.089350px;}
.y3a{bottom:364.807200px;}
.y5b{bottom:367.004550px;}
.y12f{bottom:369.425250px;}
.y176{bottom:370.519050px;}
.y96{bottom:370.535100px;}
.ybe{bottom:370.535250px;}
.y16{bottom:371.053050px;}
.ydc{bottom:371.228250px;}
.yac{bottom:371.232600px;}
.y152{bottom:376.426050px;}
.y12a{bottom:379.920600px;}
.y162{bottom:380.635050px;}
.y108{bottom:380.637300px;}
.ycc{bottom:381.889350px;}
.y13a{bottom:382.925250px;}
.y39{bottom:384.607200px;}
.y5a{bottom:386.804550px;}
.y15{bottom:387.253050px;}
.y175{bottom:390.319050px;}
.y95{bottom:390.335100px;}
.ybd{bottom:390.335250px;}
.yd4{bottom:391.028250px;}
.y79{bottom:391.032600px;}
.y151{bottom:396.226050px;}
.y139{bottom:396.425250px;}
.y129{bottom:399.720600px;}
.y161{bottom:400.435050px;}
.y107{bottom:400.437300px;}
.y14{bottom:403.453050px;}
.y38{bottom:404.407200px;}
.y59{bottom:406.604550px;}
.yef{bottom:407.446350px;}
.y138{bottom:409.925250px;}
.y174{bottom:410.119050px;}
.y94{bottom:410.135100px;}
.ybc{bottom:410.135250px;}
.yab{bottom:410.828250px;}
.y78{bottom:410.832600px;}
.y150{bottom:416.026050px;}
.y128{bottom:419.520600px;}
.y13{bottom:419.653050px;}
.y160{bottom:420.235050px;}
.y106{bottom:420.237300px;}
.y137{bottom:423.425250px;}
.y37{bottom:424.207200px;}
.y58{bottom:426.404550px;}
.yee{bottom:427.246350px;}
.y173{bottom:429.919050px;}
.y93{bottom:429.935100px;}
.ybb{bottom:429.935250px;}
.yaa{bottom:430.628250px;}
.y77{bottom:430.632600px;}
.ycb{bottom:431.455350px;}
.y14f{bottom:435.826050px;}
.y136{bottom:436.925250px;}
.y127{bottom:439.320600px;}
.y15f{bottom:440.035050px;}
.y105{bottom:440.037300px;}
.y36{bottom:444.007200px;}
.y57{bottom:446.204550px;}
.yed{bottom:447.046350px;}
.y172{bottom:449.719050px;}
.y92{bottom:449.735100px;}
.yba{bottom:449.735250px;}
.ya9{bottom:450.428250px;}
.y76{bottom:450.432600px;}
.y14e{bottom:455.626050px;}
.y12{bottom:457.115550px;}
.y15e{bottom:459.835050px;}
.y104{bottom:459.837300px;}
.y35{bottom:463.807200px;}
.yec{bottom:466.846350px;}
.y171{bottom:469.519050px;}
.y91{bottom:469.535100px;}
.yb9{bottom:469.535250px;}
.ya8{bottom:470.228250px;}
.y75{bottom:470.232600px;}
.y11{bottom:473.315550px;}
.y14d{bottom:475.426050px;}
.y15d{bottom:479.635050px;}
.y103{bottom:479.637300px;}
.yca{bottom:480.194100px;}
.yeb{bottom:486.646350px;}
.y126{bottom:488.886600px;}
.y170{bottom:489.319050px;}
.y90{bottom:489.335100px;}
.yb8{bottom:489.335250px;}
.y10{bottom:489.515550px;}
.ya7{bottom:490.028250px;}
.y74{bottom:490.032600px;}
.y14c{bottom:495.226050px;}
.y56{bottom:495.770550px;}
.y15c{bottom:499.435050px;}
.y102{bottom:499.437300px;}
.yc9{bottom:499.994100px;}
.y34{bottom:503.410050px;}
.yf{bottom:505.715550px;}
.yea{bottom:506.446350px;}
.y16f{bottom:509.119050px;}
.y8f{bottom:509.135100px;}
.yb7{bottom:509.135250px;}
.ya6{bottom:509.828250px;}
.y73{bottom:509.832600px;}
.y14b{bottom:515.026050px;}
.y15b{bottom:519.235050px;}
.y101{bottom:519.237300px;}
.yc8{bottom:519.794100px;}
.ye{bottom:521.915550px;}
.y33{bottom:523.210050px;}
.ye9{bottom:526.246350px;}
.y16e{bottom:528.919050px;}
.y119{bottom:528.935100px;}
.y8e{bottom:528.935250px;}
.ya5{bottom:529.628250px;}
.y72{bottom:529.632600px;}
.y55{bottom:529.744050px;}
.y14a{bottom:534.826050px;}
.yd{bottom:538.115550px;}
.y15a{bottom:539.035050px;}
.y100{bottom:539.037300px;}
.yc7{bottom:539.594100px;}
.y125{bottom:541.838100px;}
.y32{bottom:543.010050px;}
.ye8{bottom:546.046350px;}
.y54{bottom:548.719050px;}
.yda{bottom:548.735100px;}
.y8d{bottom:548.735250px;}
.ya4{bottom:549.428250px;}
.y71{bottom:549.432600px;}
.yc{bottom:554.315550px;}
.y149{bottom:554.626050px;}
.y159{bottom:558.835050px;}
.yff{bottom:558.837300px;}
.yc6{bottom:559.394100px;}
.y124{bottom:561.638100px;}
.y31{bottom:562.810050px;}
.ye7{bottom:565.845750px;}
.y53{bottom:568.519050px;}
.yd9{bottom:568.535100px;}
.y8c{bottom:568.535250px;}
.ya3{bottom:569.228250px;}
.y70{bottom:569.232600px;}
.yb{bottom:570.515550px;}
.y148{bottom:574.426050px;}
.y110{bottom:578.635050px;}
.yfe{bottom:578.637300px;}
.yc5{bottom:579.194100px;}
.y123{bottom:581.438100px;}
.y30{bottom:582.610050px;}
.ye6{bottom:585.645750px;}
.ya{bottom:586.715550px;}
.y52{bottom:588.319050px;}
.yd8{bottom:588.335100px;}
.y8b{bottom:588.335250px;}
.ya2{bottom:589.028250px;}
.y6f{bottom:589.032600px;}
.y147{bottom:594.226050px;}
.y10f{bottom:598.435050px;}
.yfd{bottom:598.437300px;}
.yc4{bottom:598.994100px;}
.y135{bottom:598.994250px;}
.y122{bottom:601.238100px;}
.y2f{bottom:602.410050px;}
.ye5{bottom:605.445750px;}
.y51{bottom:608.119050px;}
.yd7{bottom:608.135100px;}
.y8a{bottom:608.135250px;}
.ya1{bottom:608.828250px;}
.y6e{bottom:608.832600px;}
.y146{bottom:614.026050px;}
.y10e{bottom:618.235050px;}
.yfc{bottom:618.237300px;}
.yc3{bottom:618.794100px;}
.ydb{bottom:618.794250px;}
.y121{bottom:621.038100px;}
.y2e{bottom:622.210050px;}
.y9{bottom:624.175350px;}
.ye4{bottom:625.245750px;}
.y50{bottom:627.919050px;}
.yd6{bottom:627.935100px;}
.y89{bottom:627.935250px;}
.y6d{bottom:628.628100px;}
.ya0{bottom:628.628250px;}
.y145{bottom:633.826050px;}
.y10d{bottom:638.035050px;}
.yfb{bottom:638.037300px;}
.yc2{bottom:638.594100px;}
.y120{bottom:640.838100px;}
.y2d{bottom:642.010050px;}
.y8{bottom:642.175350px;}
.y4f{bottom:647.719050px;}
.yd5{bottom:647.735100px;}
.y88{bottom:647.735250px;}
.y6c{bottom:648.428100px;}
.y9f{bottom:648.428250px;}
.y144{bottom:653.626050px;}
.y10c{bottom:657.835050px;}
.yfa{bottom:657.837300px;}
.y11f{bottom:660.638100px;}
.y2c{bottom:661.810050px;}
.y4e{bottom:667.519050px;}
.y118{bottom:667.535100px;}
.y87{bottom:667.535250px;}
.y6b{bottom:668.228100px;}
.y9e{bottom:668.228250px;}
.y143{bottom:673.426050px;}
.ye3{bottom:674.811750px;}
.y10b{bottom:677.635050px;}
.yf9{bottom:677.637300px;}
.y11e{bottom:680.438100px;}
.y2b{bottom:681.610050px;}
.y4d{bottom:687.319050px;}
.y117{bottom:687.335100px;}
.y86{bottom:687.335250px;}
.y6a{bottom:688.028100px;}
.y9d{bottom:688.028250px;}
.yc1{bottom:688.160100px;}
.y7{bottom:689.939250px;}
.y142{bottom:693.226050px;}
.ye2{bottom:693.786750px;}
.yf8{bottom:697.435050px;}
.y11d{bottom:700.238100px;}
.y2a{bottom:701.410050px;}
.y4c{bottom:707.119050px;}
.y85{bottom:707.135100px;}
.yb6{bottom:707.135250px;}
.y69{bottom:707.828100px;}
.y9c{bottom:707.828250px;}
.y141{bottom:713.026050px;}
.y6{bottom:715.139250px;}
.yf7{bottom:717.235050px;}
.y11c{bottom:720.038100px;}
.y29{bottom:721.210050px;}
.y4b{bottom:726.919050px;}
.y84{bottom:726.935100px;}
.yb5{bottom:726.935250px;}
.y68{bottom:727.628100px;}
.y9b{bottom:727.628250px;}
.y140{bottom:732.827550px;}
.yf6{bottom:737.035050px;}
.y5{bottom:740.339250px;}
.y28{bottom:741.010050px;}
.y4a{bottom:746.719050px;}
.y83{bottom:746.735100px;}
.yb4{bottom:746.735250px;}
.y67{bottom:747.428100px;}
.y13f{bottom:752.627550px;}
.yf5{bottom:756.835050px;}
.yd3{bottom:757.394250px;}
.y27{bottom:760.810050px;}
.y4{bottom:765.539250px;}
.y49{bottom:766.519050px;}
.y82{bottom:766.535100px;}
.yb3{bottom:766.535250px;}
.y66{bottom:767.228100px;}
.y13e{bottom:772.427550px;}
.y11b{bottom:773.811600px;}
.yf4{bottom:776.635050px;}
.y9a{bottom:777.194250px;}
.y48{bottom:786.319050px;}
.y81{bottom:786.335100px;}
.yb2{bottom:786.335250px;}
.y13d{bottom:792.227550px;}
.y11a{bottom:792.786600px;}
.yf3{bottom:796.435050px;}
.y26{bottom:806.119050px;}
.y80{bottom:806.135100px;}
.y13c{bottom:812.027550px;}
.yf2{bottom:816.235050px;}
.y65{bottom:816.794100px;}
.y25{bottom:825.919050px;}
.y7f{bottom:825.935100px;}
.y13b{bottom:831.827550px;}
.yf1{bottom:836.035050px;}
.y24{bottom:845.719050px;}
.y7e{bottom:845.735100px;}
.y23{bottom:865.519050px;}
.y64{bottom:865.535100px;}
.y22{bottom:885.319050px;}
.y63{bottom:885.335100px;}
.yf0{bottom:885.601050px;}
.y3{bottom:924.794250px;}
.y62{bottom:926.814750px;}
.y47{bottom:928.880100px;}
.y1f{bottom:928.894800px;}
.y134{bottom:928.899750px;}
.h8{height:28.656000px;}
.h3{height:42.117188px;}
.h2{height:42.234375px;}
.h4{height:43.989258px;}
.h14{height:45.181641px;}
.h7{height:47.381836px;}
.hb{height:47.513672px;}
.h15{height:50.672900px;}
.h6{height:52.646484px;}
.hc{height:52.792969px;}
.ha{height:57.911133px;}
.h10{height:57.911733px;}
.h13{height:57.913533px;}
.h17{height:57.914133px;}
.h12{height:57.920133px;}
.h11{height:57.928533px;}
.hf{height:57.929133px;}
.h9{height:58.072266px;}
.h16{height:58.081266px;}
.hd{height:58.620117px;}
.he{height:63.175781px;}
.h5{height:74.607422px;}
.h0{height:1083.472500px;}
.h1{height:1083.750000px;}
.w0{width:785.835000px;}
.w1{width:786.000000px;}
.x0{left:0.000000px;}
.xb{left:46.500000px;}
.x1{left:137.799150px;}
.x4{left:151.756050px;}
.x2{left:163.117050px;}
.x9{left:167.566800px;}
.xd{left:190.912950px;}
.xe{left:197.613600px;}
.x5{left:238.822050px;}
.x6{left:268.460550px;}
.x3{left:276.517050px;}
.x7{left:315.155550px;}
.x10{left:319.755000px;}
.xf{left:323.489100px;}
.xc{left:328.252650px;}
.xa{left:356.121300px;}
.x8{left:359.239800px;}
@media print{
.v4{vertical-align:-17.760000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:17.760000pt;}
.v3{vertical-align:19.525867pt;}
.v1{vertical-align:24.864000pt;}
.lsd{letter-spacing:-6.512000pt;}
.lsa{letter-spacing:-5.328000pt;}
.ls8{letter-spacing:-3.840000pt;}
.lsc{letter-spacing:-1.973333pt;}
.ls7{letter-spacing:-1.776000pt;}
.ls6{letter-spacing:-1.150453pt;}
.ls2{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.783552pt;}
.lsb{letter-spacing:0.937067pt;}
.ls1{letter-spacing:1.680000pt;}
.ls4{letter-spacing:1.866667pt;}
.ls5{letter-spacing:2.053333pt;}
.ls0{letter-spacing:2.613333pt;}
.ls9{letter-spacing:2.816000pt;}
.ws2e{word-spacing:-14.666667pt;}
.ws12{word-spacing:-12.000000pt;}
.wsee{word-spacing:-11.360000pt;}
.ws5b{word-spacing:-10.224000pt;}
.ws11{word-spacing:-8.550667pt;}
.ws103{word-spacing:-8.154667pt;}
.ws10{word-spacing:-7.773333pt;}
.ws5a{word-spacing:-6.622880pt;}
.ws105{word-spacing:-5.808000pt;}
.ws106{word-spacing:-5.573333pt;}
.ws60{word-spacing:-4.165333pt;}
.ws10b{word-spacing:-4.106667pt;}
.ws70{word-spacing:-2.874667pt;}
.ws3f{word-spacing:-2.816000pt;}
.ws6f{word-spacing:-2.757333pt;}
.ws34{word-spacing:-2.698667pt;}
.ws28{word-spacing:-2.640000pt;}
.ws2{word-spacing:-2.613333pt;}
.wsdb{word-spacing:-2.522667pt;}
.ws72{word-spacing:-2.464000pt;}
.ws9b{word-spacing:-2.405333pt;}
.ws41{word-spacing:-2.352000pt;}
.wscd{word-spacing:-2.346667pt;}
.ws99{word-spacing:-2.288000pt;}
.wsd7{word-spacing:-2.256000pt;}
.ws2f{word-spacing:-2.229333pt;}
.ws40{word-spacing:-2.170667pt;}
.ws9{word-spacing:-2.160000pt;}
.ws4a{word-spacing:-2.112000pt;}
.ws1f{word-spacing:-2.053333pt;}
.ws1b{word-spacing:-1.994667pt;}
.wsdc{word-spacing:-1.936000pt;}
.wsc3{word-spacing:-1.920000pt;}
.wsf1{word-spacing:-1.877333pt;}
.ws13{word-spacing:-1.866667pt;}
.ws22{word-spacing:-1.818667pt;}
.ws6d{word-spacing:-1.776000pt;}
.wsb0{word-spacing:-1.760000pt;}
.ws43{word-spacing:-1.701333pt;}
.ws4{word-spacing:-1.680000pt;}
.ws9f{word-spacing:-1.642667pt;}
.ws6e{word-spacing:-1.584000pt;}
.ws8a{word-spacing:-1.525333pt;}
.wsb7{word-spacing:-1.488000pt;}
.wsbf{word-spacing:-1.466667pt;}
.wsf2{word-spacing:-1.440000pt;}
.ws35{word-spacing:-1.408000pt;}
.wsa8{word-spacing:-1.349333pt;}
.wsc2{word-spacing:-1.344000pt;}
.wsf7{word-spacing:-1.296000pt;}
.ws5d{word-spacing:-1.290667pt;}
.ws1{word-spacing:-1.269333pt;}
.wsf8{word-spacing:-1.248000pt;}
.ws94{word-spacing:-1.232000pt;}
.wscf{word-spacing:-1.173333pt;}
.ws3d{word-spacing:-1.114667pt;}
.ws8d{word-spacing:-1.056000pt;}
.ws38{word-spacing:-0.997333pt;}
.wsc7{word-spacing:-0.960000pt;}
.wsc0{word-spacing:-0.938667pt;}
.ws19{word-spacing:-0.880000pt;}
.wse7{word-spacing:-0.864000pt;}
.ws7b{word-spacing:-0.821333pt;}
.wsf{word-spacing:-0.816000pt;}
.ws3{word-spacing:-0.783552pt;}
.ws9e{word-spacing:-0.768000pt;}
.wse1{word-spacing:-0.720000pt;}
.wscb{word-spacing:-0.704000pt;}
.wsb5{word-spacing:-0.645333pt;}
.ws82{word-spacing:-0.586667pt;}
.ws71{word-spacing:-0.528000pt;}
.wsd8{word-spacing:-0.480000pt;}
.ws20{word-spacing:-0.469333pt;}
.ws30{word-spacing:-0.410667pt;}
.wsf9{word-spacing:-0.384000pt;}
.wsea{word-spacing:-0.352000pt;}
.wse0{word-spacing:-0.336000pt;}
.ws63{word-spacing:-0.293333pt;}
.wse5{word-spacing:-0.288000pt;}
.ws2a{word-spacing:-0.240000pt;}
.ws4c{word-spacing:-0.234667pt;}
.wse4{word-spacing:-0.192000pt;}
.ws1e{word-spacing:-0.176000pt;}
.wse2{word-spacing:-0.117333pt;}
.ws59{word-spacing:-0.096000pt;}
.ws47{word-spacing:-0.058667pt;}
.ws91{word-spacing:-0.048000pt;}
.ws0{word-spacing:0.000000pt;}
.wsa9{word-spacing:0.058667pt;}
.ws98{word-spacing:0.117333pt;}
.ws3b{word-spacing:0.176000pt;}
.ws32{word-spacing:0.234667pt;}
.ws6c{word-spacing:0.288000pt;}
.ws73{word-spacing:0.293333pt;}
.ws52{word-spacing:0.336000pt;}
.wsd1{word-spacing:0.352000pt;}
.wsf5{word-spacing:0.384000pt;}
.ws49{word-spacing:0.410667pt;}
.ws6b{word-spacing:0.432000pt;}
.ws88{word-spacing:0.469333pt;}
.ws79{word-spacing:0.528000pt;}
.wsae{word-spacing:0.576000pt;}
.ws16{word-spacing:0.586667pt;}
.ws86{word-spacing:0.624000pt;}
.ws8f{word-spacing:0.645333pt;}
.wsbd{word-spacing:0.672000pt;}
.ws5c{word-spacing:0.704000pt;}
.wse3{word-spacing:0.720000pt;}
.ws75{word-spacing:0.762667pt;}
.wsc{word-spacing:0.816000pt;}
.ws1c{word-spacing:0.821333pt;}
.wsde{word-spacing:0.864000pt;}
.ws8b{word-spacing:0.880000pt;}
.ws2d{word-spacing:0.912000pt;}
.ws3c{word-spacing:0.938667pt;}
.wsfa{word-spacing:0.960000pt;}
.ws81{word-spacing:0.997333pt;}
.ws57{word-spacing:1.056000pt;}
.ws64{word-spacing:1.114667pt;}
.wsb{word-spacing:1.152000pt;}
.ws44{word-spacing:1.173333pt;}
.ws7d{word-spacing:1.232000pt;}
.wsa{word-spacing:1.248000pt;}
.ws3e{word-spacing:1.290667pt;}
.wsf6{word-spacing:1.296000pt;}
.ws5{word-spacing:1.344000pt;}
.wsda{word-spacing:1.349333pt;}
.wsfb{word-spacing:1.392000pt;}
.ws4d{word-spacing:1.408000pt;}
.ws92{word-spacing:1.440000pt;}
.wsd0{word-spacing:1.466667pt;}
.wse{word-spacing:1.488000pt;}
.wse9{word-spacing:1.525333pt;}
.ws42{word-spacing:1.584000pt;}
.wse6{word-spacing:1.632000pt;}
.wsf0{word-spacing:1.642667pt;}
.ws2c{word-spacing:1.680000pt;}
.ws18{word-spacing:1.701333pt;}
.wsa4{word-spacing:1.728000pt;}
.wsc9{word-spacing:1.760000pt;}
.ws89{word-spacing:1.818667pt;}
.wsd4{word-spacing:1.824000pt;}
.ws56{word-spacing:1.872000pt;}
.wsaa{word-spacing:1.877333pt;}
.ws26{word-spacing:1.936000pt;}
.wsc6{word-spacing:1.968000pt;}
.wsf4{word-spacing:1.973333pt;}
.ws84{word-spacing:1.994667pt;}
.wsa6{word-spacing:2.016000pt;}
.ws69{word-spacing:2.053333pt;}
.wsa5{word-spacing:2.064000pt;}
.ws21{word-spacing:2.112000pt;}
.wse8{word-spacing:2.160000pt;}
.wsaf{word-spacing:2.170667pt;}
.wsb9{word-spacing:2.208000pt;}
.wsb2{word-spacing:2.229333pt;}
.wsf3{word-spacing:2.256000pt;}
.wsc8{word-spacing:2.288000pt;}
.wsd6{word-spacing:2.304000pt;}
.ws4b{word-spacing:2.346667pt;}
.ws87{word-spacing:2.405333pt;}
.ws24{word-spacing:2.464000pt;}
.ws2b{word-spacing:2.544000pt;}
.ws7a{word-spacing:2.581333pt;}
.wsb6{word-spacing:2.640000pt;}
.ws8{word-spacing:2.688000pt;}
.ws67{word-spacing:2.698667pt;}
.wsbe{word-spacing:2.736000pt;}
.ws7f{word-spacing:2.757333pt;}
.ws37{word-spacing:2.816000pt;}
.ws55{word-spacing:2.832000pt;}
.ws7c{word-spacing:2.874667pt;}
.wsa0{word-spacing:2.933333pt;}
.ws54{word-spacing:2.976000pt;}
.ws74{word-spacing:3.050667pt;}
.wsb1{word-spacing:3.109333pt;}
.wsd{word-spacing:3.120000pt;}
.ws48{word-spacing:3.168000pt;}
.ws5e{word-spacing:3.226667pt;}
.ws85{word-spacing:3.264000pt;}
.ws61{word-spacing:3.344000pt;}
.ws23{word-spacing:3.402667pt;}
.wsff{word-spacing:3.456000pt;}
.wsad{word-spacing:3.461333pt;}
.ws36{word-spacing:3.520000pt;}
.ws78{word-spacing:3.578667pt;}
.wsd5{word-spacing:3.600000pt;}
.ws1a{word-spacing:3.637333pt;}
.wsb4{word-spacing:3.696000pt;}
.ws25{word-spacing:3.754667pt;}
.wsdf{word-spacing:3.792000pt;}
.ws45{word-spacing:3.813333pt;}
.wsc1{word-spacing:3.840000pt;}
.wsca{word-spacing:3.872000pt;}
.ws7e{word-spacing:3.930667pt;}
.ws90{word-spacing:3.984000pt;}
.ws83{word-spacing:3.989333pt;}
.ws9d{word-spacing:4.032000pt;}
.wsd9{word-spacing:4.048000pt;}
.wsd3{word-spacing:4.106667pt;}
.ws8e{word-spacing:4.165333pt;}
.ws29{word-spacing:4.176000pt;}
.ws9a{word-spacing:4.224000pt;}
.ws17{word-spacing:4.282667pt;}
.ws62{word-spacing:4.341333pt;}
.wsb8{word-spacing:4.368000pt;}
.wsa3{word-spacing:4.400000pt;}
.ws100{word-spacing:4.458667pt;}
.ws93{word-spacing:4.517333pt;}
.ws7{word-spacing:4.560000pt;}
.ws104{word-spacing:4.576000pt;}
.wsc5{word-spacing:4.608000pt;}
.ws76{word-spacing:4.634667pt;}
.ws14{word-spacing:4.693333pt;}
.ws58{word-spacing:4.752000pt;}
.wsed{word-spacing:4.800000pt;}
.ws77{word-spacing:4.810667pt;}
.ws68{word-spacing:4.869333pt;}
.ws15{word-spacing:4.986667pt;}
.wsfe{word-spacing:5.104000pt;}
.ws8c{word-spacing:5.162667pt;}
.ws33{word-spacing:5.221333pt;}
.ws6a{word-spacing:5.328000pt;}
.ws1d{word-spacing:5.338667pt;}
.ws102{word-spacing:5.397333pt;}
.ws101{word-spacing:5.456000pt;}
.wsfd{word-spacing:5.514667pt;}
.wsa7{word-spacing:5.520000pt;}
.wseb{word-spacing:5.573333pt;}
.ws3a{word-spacing:5.632000pt;}
.ws80{word-spacing:5.690667pt;}
.ws5f{word-spacing:5.749333pt;}
.wsec{word-spacing:5.760000pt;}
.wsab{word-spacing:5.808000pt;}
.ws4e{word-spacing:5.866667pt;}
.wsd2{word-spacing:5.925333pt;}
.wsbc{word-spacing:5.952000pt;}
.ws4f{word-spacing:5.984000pt;}
.ws9c{word-spacing:6.101333pt;}
.ws97{word-spacing:6.160000pt;}
.wsef{word-spacing:6.277333pt;}
.ws6{word-spacing:6.288000pt;}
.ws95{word-spacing:6.336000pt;}
.ws10e{word-spacing:6.453333pt;}
.wsa2{word-spacing:6.512000pt;}
.ws53{word-spacing:6.624000pt;}
.ws50{word-spacing:6.629333pt;}
.wsb3{word-spacing:6.922667pt;}
.wsdd{word-spacing:7.098667pt;}
.ws111{word-spacing:7.274667pt;}
.ws51{word-spacing:7.333333pt;}
.ws65{word-spacing:7.509333pt;}
.ws31{word-spacing:7.744000pt;}
.ws10f{word-spacing:7.978667pt;}
.ws110{word-spacing:8.037333pt;}
.ws39{word-spacing:8.096000pt;}
.wsa1{word-spacing:8.213333pt;}
.ws46{word-spacing:8.272000pt;}
.ws96{word-spacing:8.330667pt;}
.wsc4{word-spacing:8.448000pt;}
.wsbb{word-spacing:8.506667pt;}
.wsac{word-spacing:8.565333pt;}
.wsce{word-spacing:8.682667pt;}
.wsba{word-spacing:8.741333pt;}
.wsfc{word-spacing:8.800000pt;}
.ws10c{word-spacing:9.738667pt;}
.ws66{word-spacing:10.560000pt;}
.ws10d{word-spacing:10.794667pt;}
.ws109{word-spacing:11.264000pt;}
.ws10a{word-spacing:12.613333pt;}
.ws107{word-spacing:14.138667pt;}
.ws108{word-spacing:17.952000pt;}
.wscc{word-spacing:33.840000pt;}
.ws27{word-spacing:57.840000pt;}
._7{margin-left:-1815.138882pt;}
._1f{margin-left:-33.840000pt;}
._8{margin-left:-7.761600pt;}
._4{margin-left:-6.328533pt;}
._2{margin-left:-5.420800pt;}
._3{margin-left:-3.703467pt;}
._0{margin-left:-2.436267pt;}
._1{margin-left:-0.891733pt;}
._5{width:1.151308pt;}
._9{width:2.125277pt;}
._e{width:3.524323pt;}
._c{width:5.073600pt;}
._16{width:6.101333pt;}
._1b{width:7.274667pt;}
._19{width:8.594667pt;}
._1c{width:9.645333pt;}
._21{width:10.953067pt;}
._22{width:12.607467pt;}
._17{width:28.320000pt;}
._11{width:29.280000pt;}
._14{width:30.672000pt;}
._15{width:32.400000pt;}
._13{width:33.840000pt;}
._12{width:35.891415pt;}
._b{width:53.664000pt;}
._10{width:55.968000pt;}
._f{width:57.840000pt;}
._a{width:60.480000pt;}
._20{width:529.049600pt;}
._1a{width:540.409600pt;}
._1e{width:542.382933pt;}
._1d{width:544.356267pt;}
._d{width:567.076267pt;}
._18{width:1734.953600pt;}
._6{width:1750.313600pt;}
.fs7{font-size:31.093333pt;}
.fs6{font-size:32.000000pt;}
.fs8{font-size:34.202667pt;}
.fs0{font-size:42.666667pt;}
.fs3{font-size:43.530667pt;}
.fs5{font-size:48.000000pt;}
.fs4{font-size:53.333333pt;}
.fs1{font-size:58.666667pt;}
.fs9{font-size:64.000000pt;}
.fs2{font-size:74.666667pt;}
.y0{bottom:0.000000pt;}
.y1e{bottom:8.000000pt;}
.y2{bottom:69.139733pt;}
.y21{bottom:72.289333pt;}
.y1{bottom:79.806400pt;}
.y20{bottom:82.956000pt;}
.y46{bottom:124.378000pt;}
.y45{bottom:136.378000pt;}
.y16d{bottom:144.742267pt;}
.y44{bottom:148.378000pt;}
.y43{bottom:160.378000pt;}
.y16c{bottom:162.342267pt;}
.y17f{bottom:170.950267pt;}
.y42{bottom:172.378000pt;}
.y16b{bottom:179.942267pt;}
.y41{bottom:184.378000pt;}
.y17e{bottom:188.550267pt;}
.y40{bottom:196.378000pt;}
.y16a{bottom:197.542267pt;}
.y17d{bottom:206.150267pt;}
.y3f{bottom:208.378000pt;}
.y1d{bottom:210.124933pt;}
.y169{bottom:215.142267pt;}
.y115{bottom:215.144267pt;}
.y3e{bottom:220.378000pt;}
.y61{bottom:220.626267pt;}
.y17c{bottom:223.750267pt;}
.y1c{bottom:224.524933pt;}
.y158{bottom:229.000933pt;}
.y7d{bottom:232.378000pt;}
.y168{bottom:232.742267pt;}
.y114{bottom:232.744267pt;}
.yd2{bottom:233.857200pt;}
.y60{bottom:238.226267pt;}
.y17b{bottom:241.350267pt;}
.yc0{bottom:241.364533pt;}
.ye1{bottom:241.980667pt;}
.yb1{bottom:241.984533pt;}
.y7c{bottom:244.378000pt;}
.y157{bottom:246.600933pt;}
.y167{bottom:250.342267pt;}
.y113{bottom:250.344267pt;}
.yd1{bottom:251.457200pt;}
.y5f{bottom:255.826267pt;}
.y7b{bottom:256.378000pt;}
.y1b{bottom:257.824933pt;}
.y17a{bottom:258.950267pt;}
.ybf{bottom:258.964533pt;}
.ye0{bottom:259.580667pt;}
.yb0{bottom:259.584533pt;}
.y156{bottom:264.200933pt;}
.y12e{bottom:267.307867pt;}
.y166{bottom:267.942267pt;}
.y112{bottom:267.944267pt;}
.y7a{bottom:268.378000pt;}
.yd0{bottom:269.057200pt;}
.y3d{bottom:271.473067pt;}
.y1a{bottom:272.224933pt;}
.y5e{bottom:273.426267pt;}
.y179{bottom:276.550267pt;}
.y99{bottom:276.564533pt;}
.ydf{bottom:277.180667pt;}
.yaf{bottom:277.184533pt;}
.y133{bottom:280.378000pt;}
.y155{bottom:281.800933pt;}
.y12d{bottom:284.907867pt;}
.y165{bottom:285.542267pt;}
.y111{bottom:285.544267pt;}
.y19{bottom:286.624933pt;}
.ycf{bottom:286.657200pt;}
.y3c{bottom:289.073067pt;}
.y5d{bottom:291.026267pt;}
.y132{bottom:292.378000pt;}
.y178{bottom:294.150267pt;}
.y98{bottom:294.164533pt;}
.y116{bottom:294.164667pt;}
.yde{bottom:294.780667pt;}
.yae{bottom:294.784533pt;}
.y154{bottom:299.400933pt;}
.y18{bottom:301.024933pt;}
.y12c{bottom:302.507200pt;}
.y164{bottom:303.142267pt;}
.y10a{bottom:303.144267pt;}
.yce{bottom:304.257200pt;}
.y131{bottom:304.378000pt;}
.y3b{bottom:306.673067pt;}
.y5c{bottom:308.626267pt;}
.y177{bottom:311.750267pt;}
.y97{bottom:311.764533pt;}
.ydd{bottom:312.380667pt;}
.yad{bottom:312.384533pt;}
.y17{bottom:315.424933pt;}
.y130{bottom:316.378000pt;}
.y153{bottom:317.000933pt;}
.y12b{bottom:320.107200pt;}
.y163{bottom:320.742267pt;}
.y109{bottom:320.744267pt;}
.ycd{bottom:321.857200pt;}
.y3a{bottom:324.273067pt;}
.y5b{bottom:326.226267pt;}
.y12f{bottom:328.378000pt;}
.y176{bottom:329.350267pt;}
.y96{bottom:329.364533pt;}
.ybe{bottom:329.364667pt;}
.y16{bottom:329.824933pt;}
.ydc{bottom:329.980667pt;}
.yac{bottom:329.984533pt;}
.y152{bottom:334.600933pt;}
.y12a{bottom:337.707200pt;}
.y162{bottom:338.342267pt;}
.y108{bottom:338.344267pt;}
.ycc{bottom:339.457200pt;}
.y13a{bottom:340.378000pt;}
.y39{bottom:341.873067pt;}
.y5a{bottom:343.826267pt;}
.y15{bottom:344.224933pt;}
.y175{bottom:346.950267pt;}
.y95{bottom:346.964533pt;}
.ybd{bottom:346.964667pt;}
.yd4{bottom:347.580667pt;}
.y79{bottom:347.584533pt;}
.y151{bottom:352.200933pt;}
.y139{bottom:352.378000pt;}
.y129{bottom:355.307200pt;}
.y161{bottom:355.942267pt;}
.y107{bottom:355.944267pt;}
.y14{bottom:358.624933pt;}
.y38{bottom:359.473067pt;}
.y59{bottom:361.426267pt;}
.yef{bottom:362.174533pt;}
.y138{bottom:364.378000pt;}
.y174{bottom:364.550267pt;}
.y94{bottom:364.564533pt;}
.ybc{bottom:364.564667pt;}
.yab{bottom:365.180667pt;}
.y78{bottom:365.184533pt;}
.y150{bottom:369.800933pt;}
.y128{bottom:372.907200pt;}
.y13{bottom:373.024933pt;}
.y160{bottom:373.542267pt;}
.y106{bottom:373.544267pt;}
.y137{bottom:376.378000pt;}
.y37{bottom:377.073067pt;}
.y58{bottom:379.026267pt;}
.yee{bottom:379.774533pt;}
.y173{bottom:382.150267pt;}
.y93{bottom:382.164533pt;}
.ybb{bottom:382.164667pt;}
.yaa{bottom:382.780667pt;}
.y77{bottom:382.784533pt;}
.ycb{bottom:383.515867pt;}
.y14f{bottom:387.400933pt;}
.y136{bottom:388.378000pt;}
.y127{bottom:390.507200pt;}
.y15f{bottom:391.142267pt;}
.y105{bottom:391.144267pt;}
.y36{bottom:394.673067pt;}
.y57{bottom:396.626267pt;}
.yed{bottom:397.374533pt;}
.y172{bottom:399.750267pt;}
.y92{bottom:399.764533pt;}
.yba{bottom:399.764667pt;}
.ya9{bottom:400.380667pt;}
.y76{bottom:400.384533pt;}
.y14e{bottom:405.000933pt;}
.y12{bottom:406.324933pt;}
.y15e{bottom:408.742267pt;}
.y104{bottom:408.744267pt;}
.y35{bottom:412.273067pt;}
.yec{bottom:414.974533pt;}
.y171{bottom:417.350267pt;}
.y91{bottom:417.364533pt;}
.yb9{bottom:417.364667pt;}
.ya8{bottom:417.980667pt;}
.y75{bottom:417.984533pt;}
.y11{bottom:420.724933pt;}
.y14d{bottom:422.600933pt;}
.y15d{bottom:426.342267pt;}
.y103{bottom:426.344267pt;}
.yca{bottom:426.839200pt;}
.yeb{bottom:432.574533pt;}
.y126{bottom:434.565867pt;}
.y170{bottom:434.950267pt;}
.y90{bottom:434.964533pt;}
.yb8{bottom:434.964667pt;}
.y10{bottom:435.124933pt;}
.ya7{bottom:435.580667pt;}
.y74{bottom:435.584533pt;}
.y14c{bottom:440.200933pt;}
.y56{bottom:440.684933pt;}
.y15c{bottom:443.942267pt;}
.y102{bottom:443.944267pt;}
.yc9{bottom:444.439200pt;}
.y34{bottom:447.475600pt;}
.yf{bottom:449.524933pt;}
.yea{bottom:450.174533pt;}
.y16f{bottom:452.550267pt;}
.y8f{bottom:452.564533pt;}
.yb7{bottom:452.564667pt;}
.ya6{bottom:453.180667pt;}
.y73{bottom:453.184533pt;}
.y14b{bottom:457.800933pt;}
.y15b{bottom:461.542267pt;}
.y101{bottom:461.544267pt;}
.yc8{bottom:462.039200pt;}
.ye{bottom:463.924933pt;}
.y33{bottom:465.075600pt;}
.ye9{bottom:467.774533pt;}
.y16e{bottom:470.150267pt;}
.y119{bottom:470.164533pt;}
.y8e{bottom:470.164667pt;}
.ya5{bottom:470.780667pt;}
.y72{bottom:470.784533pt;}
.y55{bottom:470.883600pt;}
.y14a{bottom:475.400933pt;}
.yd{bottom:478.324933pt;}
.y15a{bottom:479.142267pt;}
.y100{bottom:479.144267pt;}
.yc7{bottom:479.639200pt;}
.y125{bottom:481.633867pt;}
.y32{bottom:482.675600pt;}
.ye8{bottom:485.374533pt;}
.y54{bottom:487.750267pt;}
.yda{bottom:487.764533pt;}
.y8d{bottom:487.764667pt;}
.ya4{bottom:488.380667pt;}
.y71{bottom:488.384533pt;}
.yc{bottom:492.724933pt;}
.y149{bottom:493.000933pt;}
.y159{bottom:496.742267pt;}
.yff{bottom:496.744267pt;}
.yc6{bottom:497.239200pt;}
.y124{bottom:499.233867pt;}
.y31{bottom:500.275600pt;}
.ye7{bottom:502.974000pt;}
.y53{bottom:505.350267pt;}
.yd9{bottom:505.364533pt;}
.y8c{bottom:505.364667pt;}
.ya3{bottom:505.980667pt;}
.y70{bottom:505.984533pt;}
.yb{bottom:507.124933pt;}
.y148{bottom:510.600933pt;}
.y110{bottom:514.342267pt;}
.yfe{bottom:514.344267pt;}
.yc5{bottom:514.839200pt;}
.y123{bottom:516.833867pt;}
.y30{bottom:517.875600pt;}
.ye6{bottom:520.574000pt;}
.ya{bottom:521.524933pt;}
.y52{bottom:522.950267pt;}
.yd8{bottom:522.964533pt;}
.y8b{bottom:522.964667pt;}
.ya2{bottom:523.580667pt;}
.y6f{bottom:523.584533pt;}
.y147{bottom:528.200933pt;}
.y10f{bottom:531.942267pt;}
.yfd{bottom:531.944267pt;}
.yc4{bottom:532.439200pt;}
.y135{bottom:532.439333pt;}
.y122{bottom:534.433867pt;}
.y2f{bottom:535.475600pt;}
.ye5{bottom:538.174000pt;}
.y51{bottom:540.550267pt;}
.yd7{bottom:540.564533pt;}
.y8a{bottom:540.564667pt;}
.ya1{bottom:541.180667pt;}
.y6e{bottom:541.184533pt;}
.y146{bottom:545.800933pt;}
.y10e{bottom:549.542267pt;}
.yfc{bottom:549.544267pt;}
.yc3{bottom:550.039200pt;}
.ydb{bottom:550.039333pt;}
.y121{bottom:552.033867pt;}
.y2e{bottom:553.075600pt;}
.y9{bottom:554.822533pt;}
.ye4{bottom:555.774000pt;}
.y50{bottom:558.150267pt;}
.yd6{bottom:558.164533pt;}
.y89{bottom:558.164667pt;}
.y6d{bottom:558.780533pt;}
.ya0{bottom:558.780667pt;}
.y145{bottom:563.400933pt;}
.y10d{bottom:567.142267pt;}
.yfb{bottom:567.144267pt;}
.yc2{bottom:567.639200pt;}
.y120{bottom:569.633867pt;}
.y2d{bottom:570.675600pt;}
.y8{bottom:570.822533pt;}
.y4f{bottom:575.750267pt;}
.yd5{bottom:575.764533pt;}
.y88{bottom:575.764667pt;}
.y6c{bottom:576.380533pt;}
.y9f{bottom:576.380667pt;}
.y144{bottom:581.000933pt;}
.y10c{bottom:584.742267pt;}
.yfa{bottom:584.744267pt;}
.y11f{bottom:587.233867pt;}
.y2c{bottom:588.275600pt;}
.y4e{bottom:593.350267pt;}
.y118{bottom:593.364533pt;}
.y87{bottom:593.364667pt;}
.y6b{bottom:593.980533pt;}
.y9e{bottom:593.980667pt;}
.y143{bottom:598.600933pt;}
.ye3{bottom:599.832667pt;}
.y10b{bottom:602.342267pt;}
.yf9{bottom:602.344267pt;}
.y11e{bottom:604.833867pt;}
.y2b{bottom:605.875600pt;}
.y4d{bottom:610.950267pt;}
.y117{bottom:610.964533pt;}
.y86{bottom:610.964667pt;}
.y6a{bottom:611.580533pt;}
.y9d{bottom:611.580667pt;}
.yc1{bottom:611.697867pt;}
.y7{bottom:613.279333pt;}
.y142{bottom:616.200933pt;}
.ye2{bottom:616.699333pt;}
.yf8{bottom:619.942267pt;}
.y11d{bottom:622.433867pt;}
.y2a{bottom:623.475600pt;}
.y4c{bottom:628.550267pt;}
.y85{bottom:628.564533pt;}
.yb6{bottom:628.564667pt;}
.y69{bottom:629.180533pt;}
.y9c{bottom:629.180667pt;}
.y141{bottom:633.800933pt;}
.y6{bottom:635.679333pt;}
.yf7{bottom:637.542267pt;}
.y11c{bottom:640.033867pt;}
.y29{bottom:641.075600pt;}
.y4b{bottom:646.150267pt;}
.y84{bottom:646.164533pt;}
.yb5{bottom:646.164667pt;}
.y68{bottom:646.780533pt;}
.y9b{bottom:646.780667pt;}
.y140{bottom:651.402267pt;}
.yf6{bottom:655.142267pt;}
.y5{bottom:658.079333pt;}
.y28{bottom:658.675600pt;}
.y4a{bottom:663.750267pt;}
.y83{bottom:663.764533pt;}
.yb4{bottom:663.764667pt;}
.y67{bottom:664.380533pt;}
.y13f{bottom:669.002267pt;}
.yf5{bottom:672.742267pt;}
.yd3{bottom:673.239333pt;}
.y27{bottom:676.275600pt;}
.y4{bottom:680.479333pt;}
.y49{bottom:681.350267pt;}
.y82{bottom:681.364533pt;}
.yb3{bottom:681.364667pt;}
.y66{bottom:681.980533pt;}
.y13e{bottom:686.602267pt;}
.y11b{bottom:687.832533pt;}
.yf4{bottom:690.342267pt;}
.y9a{bottom:690.839333pt;}
.y48{bottom:698.950267pt;}
.y81{bottom:698.964533pt;}
.yb2{bottom:698.964667pt;}
.y13d{bottom:704.202267pt;}
.y11a{bottom:704.699200pt;}
.yf3{bottom:707.942267pt;}
.y26{bottom:716.550267pt;}
.y80{bottom:716.564533pt;}
.y13c{bottom:721.802267pt;}
.yf2{bottom:725.542267pt;}
.y65{bottom:726.039200pt;}
.y25{bottom:734.150267pt;}
.y7f{bottom:734.164533pt;}
.y13b{bottom:739.402267pt;}
.yf1{bottom:743.142267pt;}
.y24{bottom:751.750267pt;}
.y7e{bottom:751.764533pt;}
.y23{bottom:769.350267pt;}
.y64{bottom:769.364533pt;}
.y22{bottom:786.950267pt;}
.y63{bottom:786.964533pt;}
.yf0{bottom:787.200933pt;}
.y3{bottom:822.039333pt;}
.y62{bottom:823.835333pt;}
.y47{bottom:825.671200pt;}
.y1f{bottom:825.684267pt;}
.y134{bottom:825.688667pt;}
.h8{height:25.472000pt;}
.h3{height:37.437500pt;}
.h2{height:37.541667pt;}
.h4{height:39.101562pt;}
.h14{height:40.161458pt;}
.h7{height:42.117188pt;}
.hb{height:42.234375pt;}
.h15{height:45.042578pt;}
.h6{height:46.796875pt;}
.hc{height:46.927083pt;}
.ha{height:51.476562pt;}
.h10{height:51.477096pt;}
.h13{height:51.478696pt;}
.h17{height:51.479229pt;}
.h12{height:51.484562pt;}
.h11{height:51.492029pt;}
.hf{height:51.492562pt;}
.h9{height:51.619792pt;}
.h16{height:51.627792pt;}
.hd{height:52.106771pt;}
.he{height:56.156250pt;}
.h5{height:66.317708pt;}
.h0{height:963.086667pt;}
.h1{height:963.333333pt;}
.w0{width:698.520000pt;}
.w1{width:698.666667pt;}
.x0{left:0.000000pt;}
.xb{left:41.333333pt;}
.x1{left:122.488133pt;}
.x4{left:134.894267pt;}
.x2{left:144.992933pt;}
.x9{left:148.948267pt;}
.xd{left:169.700400pt;}
.xe{left:175.656533pt;}
.x5{left:212.286267pt;}
.x6{left:238.631600pt;}
.x3{left:245.792933pt;}
.x7{left:280.138267pt;}
.x10{left:284.226667pt;}
.xf{left:287.545867pt;}
.xc{left:291.780133pt;}
.xa{left:316.552267pt;}
.x8{left:319.324267pt;}
}




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