
    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_aefe7099665708f7bb65000c.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.108000;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_9d9a0b6da4ce799a227d8acd.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.108000;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_28d65d77db6c3ba067d6a028.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.083000;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_aefe7099665708f7bb65000c.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.108000;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_f1beef19b42f218321864aa4.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.128000;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_f067d57695d09afe8f5c98f3.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.882324;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);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v4{vertical-align:-52.482000px;}
.v9{vertical-align:-17.982000px;}
.v2{vertical-align:-15.984000px;}
.v3{vertical-align:-13.986000px;}
.v0{vertical-align:0.000000px;}
.v7{vertical-align:5.182800px;}
.v8{vertical-align:17.982000px;}
.v1{vertical-align:19.980000px;}
.v5{vertical-align:33.000000px;}
.v6{vertical-align:66.000000px;}
.ls9{letter-spacing:-5.022000px;}
.ls16{letter-spacing:-2.700000px;}
.lsb{letter-spacing:-2.160000px;}
.ls1e{letter-spacing:-1.944000px;}
.ls1c{letter-spacing:-1.728000px;}
.lsa{letter-spacing:-1.620000px;}
.ls7{letter-spacing:-1.350000px;}
.ls1d{letter-spacing:-0.972000px;}
.ls17{letter-spacing:-0.787050px;}
.ls1b{letter-spacing:-0.756000px;}
.ls2{letter-spacing:-0.600000px;}
.ls8{letter-spacing:-0.540000px;}
.ls18{letter-spacing:-0.300000px;}
.ls1{letter-spacing:-0.210000px;}
.ls0{letter-spacing:0.000000px;}
.ls4{letter-spacing:0.300000px;}
.ls5{letter-spacing:0.600000px;}
.ls1f{letter-spacing:0.840600px;}
.ls20{letter-spacing:0.841200px;}
.ls21{letter-spacing:0.864000px;}
.ls3{letter-spacing:1.200000px;}
.ls19{letter-spacing:3.657000px;}
.ls1a{letter-spacing:5.107800px;}
.lse{letter-spacing:70.311600px;}
.lsf{letter-spacing:87.694200px;}
.lsc{letter-spacing:96.198000px;}
.lsd{letter-spacing:129.839400px;}
.ls11{letter-spacing:135.364800px;}
.ls12{letter-spacing:144.877200px;}
.ls13{letter-spacing:152.747400px;}
.ls14{letter-spacing:161.251800px;}
.ls6{letter-spacing:185.111400px;}
.ls10{letter-spacing:187.021800px;}
.ls15{letter-spacing:194.892600px;}
.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;}
}
.ws82{word-spacing:-60.000000px;}
.ws87{word-spacing:-54.000000px;}
.ws95{word-spacing:-15.000000px;}
.ws116{word-spacing:-14.364000px;}
.ws4a{word-spacing:-13.500000px;}
.ws80{word-spacing:-12.960000px;}
.wsdb{word-spacing:-12.744000px;}
.wsdd{word-spacing:-12.528000px;}
.ws88{word-spacing:-12.150000px;}
.ws0{word-spacing:-12.000000px;}
.wsdc{word-spacing:-11.772000px;}
.wsde{word-spacing:-11.556000px;}
.ws1{word-spacing:-8.745000px;}
.ws4c{word-spacing:-8.478000px;}
.ws89{word-spacing:-7.870500px;}
.ws2{word-spacing:-6.121500px;}
.wscf{word-spacing:-5.880000px;}
.wsaf{word-spacing:-5.580000px;}
.ws3f{word-spacing:-5.400000px;}
.ws72{word-spacing:-5.100000px;}
.ws43{word-spacing:-4.740000px;}
.wsce{word-spacing:-4.500000px;}
.ws73{word-spacing:-4.380000px;}
.wse4{word-spacing:-4.320000px;}
.ws10e{word-spacing:-4.266000px;}
.ws5f{word-spacing:-4.260000px;}
.ws12{word-spacing:-4.140000px;}
.ws125{word-spacing:-4.104000px;}
.wsf0{word-spacing:-4.050000px;}
.wsd0{word-spacing:-3.960000px;}
.ws92{word-spacing:-3.900000px;}
.ws9e{word-spacing:-3.780000px;}
.ws59{word-spacing:-3.660000px;}
.wsd8{word-spacing:-3.300000px;}
.ws105{word-spacing:-3.078000px;}
.ws70{word-spacing:-3.000000px;}
.ws35{word-spacing:-2.940000px;}
.wse2{word-spacing:-2.916000px;}
.wsa7{word-spacing:-2.880000px;}
.wscc{word-spacing:-2.700000px;}
.ws8d{word-spacing:-2.640000px;}
.wsb8{word-spacing:-2.520000px;}
.ws91{word-spacing:-2.460000px;}
.ws10a{word-spacing:-2.430000px;}
.ws5a{word-spacing:-2.340000px;}
.ws10d{word-spacing:-2.322000px;}
.wsec{word-spacing:-2.268000px;}
.ws36{word-spacing:-2.220000px;}
.ws120{word-spacing:-2.214000px;}
.wsd{word-spacing:-2.208000px;}
.ws19{word-spacing:-2.160000px;}
.wse1{word-spacing:-1.674000px;}
.ws9b{word-spacing:-1.620000px;}
.wsfa{word-spacing:-1.566000px;}
.ws93{word-spacing:-1.500000px;}
.ws121{word-spacing:-1.458000px;}
.wsb{word-spacing:-1.440000px;}
.ws1b{word-spacing:-1.380000px;}
.ws108{word-spacing:-1.350000px;}
.ws2b{word-spacing:-1.260000px;}
.wsf2{word-spacing:-1.242000px;}
.ws1e{word-spacing:-1.200000px;}
.ws11c{word-spacing:-1.188000px;}
.ws34{word-spacing:-1.080000px;}
.wsc{word-spacing:-1.056000px;}
.wsae{word-spacing:-1.020000px;}
.ws7d{word-spacing:-0.960000px;}
.ws9a{word-spacing:-0.900000px;}
.wsed{word-spacing:-0.864000px;}
.ws6f{word-spacing:-0.840000px;}
.wsbf{word-spacing:-0.780000px;}
.wse6{word-spacing:-0.756000px;}
.ws7b{word-spacing:-0.720000px;}
.wsd4{word-spacing:-0.660000px;}
.ws37{word-spacing:-0.540000px;}
.ws118{word-spacing:-0.486000px;}
.ws8e{word-spacing:-0.480000px;}
.ws113{word-spacing:-0.432000px;}
.ws64{word-spacing:-0.420000px;}
.wsa8{word-spacing:-0.360000px;}
.ws110{word-spacing:-0.324000px;}
.wsda{word-spacing:-0.300000px;}
.ws9c{word-spacing:-0.240000px;}
.ws12c{word-spacing:-0.216000px;}
.ws17{word-spacing:-0.180000px;}
.ws58{word-spacing:-0.120000px;}
.ws117{word-spacing:-0.108000px;}
.wsb7{word-spacing:-0.060000px;}
.ws3{word-spacing:0.000000px;}
.ws67{word-spacing:0.060000px;}
.wsf6{word-spacing:0.108000px;}
.wscb{word-spacing:0.120000px;}
.wsef{word-spacing:0.162000px;}
.wsd3{word-spacing:0.180000px;}
.wse9{word-spacing:0.216000px;}
.wscd{word-spacing:0.240000px;}
.ws114{word-spacing:0.270000px;}
.ws15{word-spacing:0.300000px;}
.ws6a{word-spacing:0.360000px;}
.wsf9{word-spacing:0.432000px;}
.wsd2{word-spacing:0.480000px;}
.ws81{word-spacing:0.540000px;}
.ws3a{word-spacing:0.600000px;}
.ws79{word-spacing:0.660000px;}
.ws6{word-spacing:0.720000px;}
.wse3{word-spacing:0.756000px;}
.ws42{word-spacing:0.780000px;}
.ws12a{word-spacing:0.864000px;}
.ws25{word-spacing:0.900000px;}
.wsf1{word-spacing:0.918000px;}
.wsa0{word-spacing:0.960000px;}
.wsee{word-spacing:0.972000px;}
.ws4{word-spacing:1.008000px;}
.ws30{word-spacing:1.020000px;}
.ws101{word-spacing:1.080000px;}
.wse7{word-spacing:1.134000px;}
.ws47{word-spacing:1.140000px;}
.ws111{word-spacing:1.188000px;}
.ws71{word-spacing:1.260000px;}
.ws94{word-spacing:1.350000px;}
.ws16{word-spacing:1.380000px;}
.wsb6{word-spacing:1.500000px;}
.wsc1{word-spacing:1.620000px;}
.ws11b{word-spacing:1.674000px;}
.ws3b{word-spacing:1.680000px;}
.ws74{word-spacing:1.740000px;}
.ws76{word-spacing:1.800000px;}
.ws5b{word-spacing:1.860000px;}
.wsac{word-spacing:1.920000px;}
.wsbb{word-spacing:1.980000px;}
.wsf{word-spacing:2.016000px;}
.ws78{word-spacing:2.040000px;}
.wse0{word-spacing:2.100000px;}
.ws1a{word-spacing:2.160000px;}
.ws63{word-spacing:2.220000px;}
.ws7{word-spacing:2.256000px;}
.ws66{word-spacing:2.280000px;}
.wsfe{word-spacing:2.322000px;}
.wsdf{word-spacing:2.340000px;}
.ws5{word-spacing:2.352000px;}
.ws6b{word-spacing:2.400000px;}
.ws20{word-spacing:2.460000px;}
.ws123{word-spacing:2.484000px;}
.wsa5{word-spacing:2.520000px;}
.ws11e{word-spacing:2.592000px;}
.ws33{word-spacing:2.700000px;}
.ws98{word-spacing:2.760000px;}
.wsfc{word-spacing:2.811600px;}
.ws24{word-spacing:2.820000px;}
.wse5{word-spacing:2.862000px;}
.wsa{word-spacing:2.880000px;}
.wsc0{word-spacing:3.000000px;}
.ws18{word-spacing:3.060000px;}
.wse{word-spacing:3.072000px;}
.ws3e{word-spacing:3.120000px;}
.ws97{word-spacing:3.180000px;}
.wsf8{word-spacing:3.186000px;}
.ws68{word-spacing:3.240000px;}
.ws102{word-spacing:3.294000px;}
.ws2c{word-spacing:3.300000px;}
.wsc3{word-spacing:3.360000px;}
.wsb9{word-spacing:3.420000px;}
.ws13{word-spacing:3.480000px;}
.ws2d{word-spacing:3.540000px;}
.ws12e{word-spacing:3.564000px;}
.ws27{word-spacing:3.600000px;}
.ws44{word-spacing:3.660000px;}
.wseb{word-spacing:3.672000px;}
.wsb1{word-spacing:3.720000px;}
.ws6c{word-spacing:3.780000px;}
.ws65{word-spacing:3.900000px;}
.ws77{word-spacing:3.960000px;}
.ws28{word-spacing:4.020000px;}
.ws8{word-spacing:4.080000px;}
.wsf4{word-spacing:4.104000px;}
.ws5c{word-spacing:4.140000px;}
.wsba{word-spacing:4.200000px;}
.ws1f{word-spacing:4.320000px;}
.ws38{word-spacing:4.380000px;}
.wsa6{word-spacing:4.440000px;}
.ws69{word-spacing:4.500000px;}
.wsc6{word-spacing:4.560000px;}
.ws129{word-spacing:4.590000px;}
.wsb3{word-spacing:4.620000px;}
.ws7a{word-spacing:4.680000px;}
.ws7e{word-spacing:4.860000px;}
.wsc4{word-spacing:4.920000px;}
.ws115{word-spacing:5.022000px;}
.wsa3{word-spacing:5.040000px;}
.wsd1{word-spacing:5.100000px;}
.wsfb{word-spacing:5.130000px;}
.ws9{word-spacing:5.184000px;}
.ws22{word-spacing:5.280000px;}
.ws1c{word-spacing:5.340000px;}
.ws10c{word-spacing:5.346000px;}
.ws62{word-spacing:5.400000px;}
.ws100{word-spacing:5.562000px;}
.ws10f{word-spacing:5.670000px;}
.ws49{word-spacing:5.700000px;}
.ws45{word-spacing:5.760000px;}
.wsf3{word-spacing:5.832000px;}
.wsff{word-spacing:5.940000px;}
.wsc2{word-spacing:6.000000px;}
.ws12f{word-spacing:6.048000px;}
.ws10{word-spacing:6.144000px;}
.wsaa{word-spacing:6.180000px;}
.wsbc{word-spacing:6.240000px;}
.ws12d{word-spacing:6.264000px;}
.ws6e{word-spacing:6.300000px;}
.wsab{word-spacing:6.360000px;}
.ws3d{word-spacing:6.420000px;}
.ws119{word-spacing:6.426000px;}
.ws26{word-spacing:6.480000px;}
.wsd7{word-spacing:6.600000px;}
.ws29{word-spacing:6.660000px;}
.wsbd{word-spacing:6.780000px;}
.ws10b{word-spacing:6.804000px;}
.ws96{word-spacing:6.840000px;}
.ws104{word-spacing:6.912000px;}
.wsb4{word-spacing:7.020000px;}
.wsbe{word-spacing:7.260000px;}
.ws57{word-spacing:7.320000px;}
.wsca{word-spacing:7.380000px;}
.ws39{word-spacing:7.440000px;}
.ws9f{word-spacing:7.500000px;}
.wsa2{word-spacing:7.560000px;}
.wsc9{word-spacing:7.620000px;}
.ws40{word-spacing:7.740000px;}
.ws46{word-spacing:7.800000px;}
.ws7c{word-spacing:7.860000px;}
.wsd5{word-spacing:7.980000px;}
.ws32{word-spacing:8.040000px;}
.ws122{word-spacing:8.046000px;}
.ws6d{word-spacing:8.280000px;}
.wsf5{word-spacing:8.316000px;}
.wsb2{word-spacing:8.340000px;}
.ws8f{word-spacing:8.400000px;}
.ws128{word-spacing:8.478000px;}
.ws2e{word-spacing:8.580000px;}
.ws9d{word-spacing:8.640000px;}
.ws5d{word-spacing:8.820000px;}
.wsa1{word-spacing:8.880000px;}
.ws14{word-spacing:8.940000px;}
.wsb0{word-spacing:9.060000px;}
.ws21{word-spacing:9.120000px;}
.wsea{word-spacing:9.180000px;}
.ws90{word-spacing:9.300000px;}
.wsd9{word-spacing:9.420000px;}
.ws127{word-spacing:9.990000px;}
.wse8{word-spacing:10.044000px;}
.ws103{word-spacing:10.206000px;}
.wsa4{word-spacing:10.260000px;}
.wsad{word-spacing:10.740000px;}
.wsc5{word-spacing:10.800000px;}
.ws41{word-spacing:10.980000px;}
.ws31{word-spacing:11.640000px;}
.ws75{word-spacing:12.000000px;}
.ws130{word-spacing:12.096000px;}
.wsb5{word-spacing:12.360000px;}
.ws11f{word-spacing:12.366000px;}
.ws11a{word-spacing:12.474000px;}
.wsa9{word-spacing:12.540000px;}
.ws12b{word-spacing:12.744000px;}
.ws11d{word-spacing:12.906000px;}
.ws112{word-spacing:13.014000px;}
.ws1d{word-spacing:13.200000px;}
.ws2a{word-spacing:14.160000px;}
.ws124{word-spacing:14.202000px;}
.ws23{word-spacing:14.220000px;}
.wsd6{word-spacing:14.280000px;}
.ws109{word-spacing:14.580000px;}
.wsc8{word-spacing:14.640000px;}
.ws61{word-spacing:15.060000px;}
.wsf7{word-spacing:15.336000px;}
.ws48{word-spacing:15.360000px;}
.ws5e{word-spacing:15.420000px;}
.ws99{word-spacing:15.660000px;}
.ws60{word-spacing:16.140000px;}
.ws3c{word-spacing:16.200000px;}
.ws106{word-spacing:16.308000px;}
.wsc7{word-spacing:17.400000px;}
.wsfd{word-spacing:17.496000px;}
.ws2f{word-spacing:19.500000px;}
.ws126{word-spacing:20.466000px;}
.ws107{word-spacing:21.654000px;}
.ws84{word-spacing:34.687800px;}
.ws85{word-spacing:35.694600px;}
.ws11{word-spacing:42.060000px;}
.ws4b{word-spacing:57.391800px;}
.ws83{word-spacing:62.391000px;}
.ws53{word-spacing:85.376400px;}
.ws86{word-spacing:95.563200px;}
.ws4e{word-spacing:97.388400px;}
.ws50{word-spacing:100.264200px;}
.ws51{word-spacing:112.306200px;}
.ws52{word-spacing:116.356200px;}
.ws8c{word-spacing:121.864800px;}
.ws8b{word-spacing:129.735000px;}
.ws8a{word-spacing:147.118200px;}
.ws4d{word-spacing:164.108400px;}
.ws54{word-spacing:164.109000px;}
.ws4f{word-spacing:188.619600px;}
.ws56{word-spacing:193.438800px;}
.ws55{word-spacing:219.308400px;}
.ws7f{word-spacing:811.080000px;}
._3a{margin-left:-36.000000px;}
._34{margin-left:-22.320000px;}
._38{margin-left:-14.040000px;}
._36{margin-left:-10.962000px;}
._4{margin-left:-6.636000px;}
._1{margin-left:-4.662000px;}
._2{margin-left:-3.108000px;}
._0{margin-left:-1.680000px;}
._15{width:1.350000px;}
._a{width:2.862000px;}
._9{width:4.050000px;}
._6{width:5.376000px;}
._35{width:6.865800px;}
._37{width:8.673600px;}
._3b{width:10.419600px;}
._3c{width:12.088800px;}
._39{width:16.310400px;}
._26{width:41.563200px;}
._5{width:47.460000px;}
._23{width:54.486600px;}
._2a{width:55.639200px;}
._2b{width:68.563200px;}
._24{width:72.866400px;}
._2c{width:76.155000px;}
._3{width:79.296000px;}
._30{width:81.208200px;}
._27{width:89.655000px;}
._2e{width:93.322200px;}
._25{width:104.111400px;}
._22{width:116.235000px;}
._29{width:117.611400px;}
._e{width:120.865200px;}
._18{width:123.228000px;}
._32{width:129.911400px;}
._1b{width:134.784000px;}
._17{width:136.215000px;}
._16{width:140.886000px;}
._2d{width:142.370400px;}
._1d{width:143.505000px;}
._33{width:147.118200px;}
._2f{width:152.654400px;}
._28{width:160.524600px;}
._1e{width:162.270000px;}
._1c{width:163.917000px;}
._1a{width:168.588000px;}
._12{width:173.099400px;}
._11{width:176.798400px;}
._7{width:178.777200px;}
._f{width:185.856000px;}
._13{width:190.363800px;}
._31{width:194.850000px;}
._14{width:198.611400px;}
._21{width:200.691000px;}
._10{width:203.120400px;}
._8{width:204.783600px;}
._1f{width:212.598000px;}
._20{width:220.401000px;}
._19{width:222.858000px;}
._b{width:233.689800px;}
._c{width:272.702400px;}
._d{width:298.213200px;}
.fc2{color:rgb(0,0,255);}
.fc1{color:transparent;}
.fc0{color:rgb(35,31,32);}
.fs7{font-size:24.486000px;}
.fs6{font-size:27.984000px;}
.fs9{font-size:31.482000px;}
.fs5{font-size:34.980000px;}
.fs1{font-size:42.000000px;}
.fs0{font-size:45.000000px;}
.fs3{font-size:48.000000px;}
.fs8{font-size:54.000000px;}
.fs2{font-size:60.000000px;}
.fs4{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.y4{bottom:62.038500px;}
.y9{bottom:80.631600px;}
.y8{bottom:94.131600px;}
.y58{bottom:115.188150px;}
.yd4{bottom:115.659900px;}
.y83{bottom:115.992900px;}
.yac{bottom:117.327900px;}
.y127{bottom:117.712650px;}
.yf7{bottom:118.188150px;}
.y2b{bottom:118.299600px;}
.y57{bottom:133.188150px;}
.y82{bottom:133.992900px;}
.y126{bottom:134.212650px;}
.yf6{bottom:134.688150px;}
.yd3{bottom:140.161950px;}
.yab{bottom:144.873150px;}
.y125{bottom:150.712650px;}
.y56{bottom:151.188150px;}
.y81{bottom:151.992900px;}
.yd2{bottom:157.886400px;}
.y124{bottom:167.212650px;}
.yaa{bottom:167.388450px;}
.yf5{bottom:167.688150px;}
.y55{bottom:169.188150px;}
.y80{bottom:169.992900px;}
.yd1{bottom:175.610700px;}
.ya9{bottom:175.638450px;}
.y123{bottom:183.712650px;}
.yf4{bottom:184.188150px;}
.y54{bottom:187.188150px;}
.y7f{bottom:187.992900px;}
.yd0{bottom:193.335150px;}
.y2a{bottom:198.757200px;}
.y122{bottom:200.212650px;}
.yf3{bottom:200.688150px;}
.ya8{bottom:205.108050px;}
.y53{bottom:205.188150px;}
.ycf{bottom:211.059600px;}
.ya7{bottom:213.358050px;}
.y29{bottom:216.308400px;}
.y121{bottom:216.712650px;}
.yf2{bottom:217.188150px;}
.y52{bottom:223.188150px;}
.y7e{bottom:223.992900px;}
.yce{bottom:228.784050px;}
.y28{bottom:231.308400px;}
.y120{bottom:233.212650px;}
.yf1{bottom:233.688150px;}
.y51{bottom:241.188150px;}
.ya6{bottom:242.827500px;}
.y27{bottom:246.308400px;}
.ycd{bottom:246.508500px;}
.y11f{bottom:249.712650px;}
.yf0{bottom:250.188150px;}
.ya5{bottom:251.077500px;}
.y50{bottom:259.188150px;}
.y7d{bottom:259.992900px;}
.y26{bottom:261.308400px;}
.ycc{bottom:264.232800px;}
.y11e{bottom:266.212650px;}
.yef{bottom:266.688150px;}
.y25{bottom:276.308400px;}
.y4f{bottom:277.188150px;}
.y7c{bottom:277.992900px;}
.ya4{bottom:280.547100px;}
.ycb{bottom:281.957250px;}
.y11d{bottom:282.712650px;}
.yee{bottom:283.188150px;}
.ya3{bottom:288.797100px;}
.y24{bottom:291.308400px;}
.y4e{bottom:295.188150px;}
.y7b{bottom:295.992900px;}
.y11c{bottom:299.212650px;}
.yca{bottom:299.681700px;}
.yed{bottom:299.688150px;}
.y23{bottom:306.308400px;}
.y4d{bottom:313.188150px;}
.y7a{bottom:313.992900px;}
.y11b{bottom:315.712650px;}
.yec{bottom:316.188150px;}
.yc9{bottom:317.406150px;}
.ya2{bottom:318.266550px;}
.y22{bottom:321.308400px;}
.ya1{bottom:326.516550px;}
.y4c{bottom:331.188150px;}
.y79{bottom:331.992900px;}
.y11a{bottom:332.212650px;}
.yeb{bottom:332.688150px;}
.yc8{bottom:335.130450px;}
.y21{bottom:336.308400px;}
.y119{bottom:348.712650px;}
.y4b{bottom:349.188150px;}
.y78{bottom:349.992900px;}
.yc7{bottom:352.854900px;}
.ya0{bottom:357.281850px;}
.y118{bottom:365.212650px;}
.yea{bottom:365.688150px;}
.y4a{bottom:367.188150px;}
.y77{bottom:367.992900px;}
.yc6{bottom:370.579350px;}
.y9f{bottom:379.797150px;}
.y20{bottom:381.308400px;}
.y117{bottom:381.712650px;}
.ye9{bottom:382.188150px;}
.y49{bottom:385.188150px;}
.y76{bottom:385.992900px;}
.yc5{bottom:388.303800px;}
.y9d{bottom:396.297150px;}
.y116{bottom:398.212650px;}
.ye8{bottom:398.688150px;}
.y1f{bottom:398.859600px;}
.y48{bottom:403.188150px;}
.y75{bottom:403.992900px;}
.yc4{bottom:406.028250px;}
.y9e{bottom:412.797150px;}
.y1e{bottom:413.859600px;}
.y115{bottom:414.712650px;}
.ye7{bottom:415.188150px;}
.y47{bottom:421.188150px;}
.y74{bottom:421.992900px;}
.yc3{bottom:423.752700px;}
.y1d{bottom:428.859600px;}
.y114{bottom:431.212650px;}
.ye6{bottom:431.688150px;}
.y9c{bottom:434.016750px;}
.y46{bottom:439.188150px;}
.y73{bottom:439.992900px;}
.yc2{bottom:441.477150px;}
.y9b{bottom:442.266750px;}
.y1c{bottom:443.859600px;}
.y113{bottom:447.712650px;}
.ye5{bottom:448.188150px;}
.y45{bottom:457.188150px;}
.y72{bottom:457.992900px;}
.y1b{bottom:458.859600px;}
.yc1{bottom:459.201450px;}
.y112{bottom:464.212650px;}
.ye4{bottom:464.688150px;}
.y9a{bottom:471.736200px;}
.y1a{bottom:473.859600px;}
.y44{bottom:475.188150px;}
.y71{bottom:475.992900px;}
.yc0{bottom:476.925900px;}
.y99{bottom:479.986200px;}
.y111{bottom:480.712650px;}
.ye3{bottom:481.188150px;}
.y19{bottom:488.859600px;}
.y43{bottom:493.188150px;}
.ybf{bottom:494.720250px;}
.y110{bottom:497.212650px;}
.ye2{bottom:497.688150px;}
.y18{bottom:503.859600px;}
.y98{bottom:509.455800px;}
.y42{bottom:511.188150px;}
.y70{bottom:511.992900px;}
.ybe{bottom:512.514750px;}
.y10f{bottom:513.712650px;}
.ye1{bottom:514.188150px;}
.y97{bottom:517.705800px;}
.y17{bottom:518.859600px;}
.ybd{bottom:529.014750px;}
.y41{bottom:529.188150px;}
.y10e{bottom:530.212650px;}
.ye0{bottom:530.688150px;}
.y16{bottom:533.859600px;}
.y10d{bottom:546.712650px;}
.y40{bottom:547.188150px;}
.y96{bottom:548.471100px;}
.ybc{bottom:561.237150px;}
.y10c{bottom:563.212650px;}
.ydf{bottom:563.688150px;}
.y3f{bottom:565.188150px;}
.y6f{bottom:565.992900px;}
.y95{bottom:570.986400px;}
.ybb{bottom:577.737150px;}
.y94{bottom:579.236400px;}
.y10b{bottom:579.712650px;}
.yde{bottom:580.188150px;}
.y3e{bottom:583.188150px;}
.y15{bottom:588.855600px;}
.y6d{bottom:595.524000px;}
.y10a{bottom:596.212650px;}
.ydd{bottom:596.688150px;}
.y3d{bottom:601.188150px;}
.y6c{bottom:603.774000px;}
.y14{bottom:604.359600px;}
.y93{bottom:608.706000px;}
.y6e{bottom:612.024000px;}
.y109{bottom:612.712650px;}
.ydc{bottom:613.188150px;}
.y92{bottom:616.956000px;}
.y3c{bottom:619.188150px;}
.y13{bottom:623.355600px;}
.yba{bottom:627.237150px;}
.y108{bottom:629.212650px;}
.ydb{bottom:629.688150px;}
.y6a{bottom:636.806700px;}
.y3b{bottom:637.188150px;}
.y69{bottom:645.056700px;}
.yb9{bottom:645.237150px;}
.y107{bottom:645.712650px;}
.yda{bottom:646.188150px;}
.y91{bottom:646.425450px;}
.y12{bottom:652.359600px;}
.y6b{bottom:653.306700px;}
.y90{bottom:654.675450px;}
.y3a{bottom:655.188150px;}
.y106{bottom:662.212650px;}
.yd9{bottom:662.688150px;}
.yb8{bottom:663.237150px;}
.y11{bottom:670.359600px;}
.y39{bottom:673.188150px;}
.y67{bottom:678.089400px;}
.y105{bottom:678.712650px;}
.yd8{bottom:679.188150px;}
.yb7{bottom:681.237150px;}
.y8f{bottom:684.144900px;}
.y66{bottom:686.339400px;}
.y10{bottom:688.359600px;}
.y38{bottom:691.188150px;}
.y8e{bottom:692.394900px;}
.y68{bottom:694.589400px;}
.y104{bottom:695.212650px;}
.yd7{bottom:695.688150px;}
.yb6{bottom:699.237150px;}
.yf{bottom:706.359600px;}
.y37{bottom:709.188150px;}
.y103{bottom:711.712650px;}
.yd6{bottom:712.188150px;}
.yb5{bottom:717.237150px;}
.y64{bottom:719.372100px;}
.y8d{bottom:721.864500px;}
.y36{bottom:727.188150px;}
.y63{bottom:727.622100px;}
.y102{bottom:728.212650px;}
.yd5{bottom:728.688150px;}
.y8c{bottom:730.114500px;}
.yb4{bottom:735.237150px;}
.y65{bottom:735.872100px;}
.y101{bottom:744.712650px;}
.y35{bottom:745.188150px;}
.yb3{bottom:753.237150px;}
.y8b{bottom:759.583950px;}
.ye{bottom:760.359600px;}
.y61{bottom:760.654800px;}
.y100{bottom:761.212650px;}
.y34{bottom:763.188150px;}
.y8a{bottom:767.833950px;}
.y60{bottom:768.904800px;}
.yb2{bottom:771.237150px;}
.y62{bottom:777.154800px;}
.yff{bottom:777.712650px;}
.yd{bottom:778.359600px;}
.y33{bottom:781.188150px;}
.yb1{bottom:789.237150px;}
.yfe{bottom:794.212650px;}
.y89{bottom:797.303550px;}
.y32{bottom:799.188150px;}
.y5f{bottom:801.937500px;}
.y88{bottom:805.553550px;}
.yfd{bottom:810.712650px;}
.y31{bottom:817.188150px;}
.yc{bottom:817.359600px;}
.y5e{bottom:818.437500px;}
.yb0{bottom:823.737150px;}
.yfc{bottom:827.212650px;}
.y87{bottom:835.023150px;}
.y30{bottom:835.188150px;}
.yb{bottom:838.359600px;}
.y86{bottom:843.273150px;}
.y5d{bottom:843.584700px;}
.yfb{bottom:843.712650px;}
.y2f{bottom:853.188150px;}
.ya{bottom:859.359600px;}
.yfa{bottom:860.212650px;}
.y5c{bottom:869.461050px;}
.y2e{bottom:871.188150px;}
.y85{bottom:872.742600px;}
.yaf{bottom:874.737150px;}
.yf9{bottom:876.712650px;}
.y2d{bottom:889.188150px;}
.y84{bottom:889.242600px;}
.yae{bottom:892.737150px;}
.yf8{bottom:893.212650px;}
.y59{bottom:907.188150px;}
.y5b{bottom:909.712650px;}
.y5{bottom:925.111050px;}
.y2c{bottom:925.188150px;}
.y5a{bottom:926.212650px;}
.yad{bottom:927.237150px;}
.y3{bottom:954.772950px;}
.y7{bottom:963.961950px;}
.y2{bottom:966.772950px;}
.y6{bottom:977.461950px;}
.y1{bottom:978.772950px;}
.h9{height:23.394000px;}
.h8{height:26.736000px;}
.h3{height:37.380000px;}
.h2{height:40.050000px;}
.h5{height:42.720000px;}
.ha{height:48.060000px;}
.hd{height:49.842000px;}
.h7{height:52.560000px;}
.hf{height:53.242800px;}
.h4{height:53.400000px;}
.h6{height:64.080000px;}
.hb{height:81.060000px;}
.he{height:82.842000px;}
.hc{height:114.060000px;}
.h1{height:1062.750000px;}
.h0{height:1062.991500px;}
.w0{width:722.835000px;}
.w1{width:723.000000px;}
.x0{left:0.000000px;}
.x12{left:85.039350px;}
.x29{left:92.029500px;}
.x25{left:93.804750px;}
.x2f{left:95.040000px;}
.x5{left:97.795350px;}
.x15{left:99.427500px;}
.x2{left:100.888200px;}
.x40{left:103.557150px;}
.x49{left:105.372900px;}
.x41{left:108.747900px;}
.x13{left:110.551200px;}
.x55{left:116.002650px;}
.x10{left:119.055150px;}
.x51{left:121.369050px;}
.x6{left:123.592200px;}
.x3{left:135.989700px;}
.x14{left:139.977600px;}
.x35{left:147.835050px;}
.x17{left:154.713300px;}
.x50{left:156.749850px;}
.x7{left:160.995900px;}
.xd{left:165.190200px;}
.x37{left:168.908850px;}
.x4b{left:175.100400px;}
.x16{left:176.968350px;}
.x52{left:180.019950px;}
.x44{left:182.721150px;}
.x3f{left:189.178350px;}
.x36{left:196.732650px;}
.x4c{left:199.197750px;}
.x19{left:200.235900px;}
.x42{left:204.591150px;}
.x18{left:212.662650px;}
.x45{left:229.100400px;}
.x53{left:232.541700px;}
.x4e{left:242.161500px;}
.x2a{left:245.630250px;}
.x1b{left:252.508500px;}
.xc{left:255.097200px;}
.x1a{left:262.687500px;}
.x4a{left:264.436650px;}
.x39{left:266.704050px;}
.x4d{left:270.639750px;}
.x8{left:273.930000px;}
.xe{left:279.600900px;}
.x4f{left:281.298000px;}
.x38{left:285.259800px;}
.x3e{left:288.217350px;}
.x9{left:290.593050px;}
.x2b{left:294.527850px;}
.xa{left:295.687350px;}
.xb{left:298.672050px;}
.x56{left:300.973200px;}
.x46{left:302.499900px;}
.x1c{left:310.458000px;}
.x54{left:323.155500px;}
.x11{left:336.697650px;}
.xf{left:339.127650px;}
.x48{left:344.329650px;}
.x26{left:346.614600px;}
.x1e{left:353.492700px;}
.x43{left:355.014900px;}
.x1d{left:363.671850px;}
.x2c{left:365.170200px;}
.x47{left:366.813900px;}
.x3b{left:370.877250px;}
.x3a{left:386.058000px;}
.x27{left:398.515050px;}
.x20{left:402.018300px;}
.x1f{left:417.820200px;}
.x1{left:438.929100px;}
.x31{left:457.165650px;}
.x22{left:464.043900px;}
.x21{left:474.223050px;}
.x30{left:475.721400px;}
.x3d{left:481.428450px;}
.x3c{left:499.984200px;}
.x2d{left:509.066250px;}
.x33{left:512.441250px;}
.x24{left:515.944500px;}
.x23{left:528.371400px;}
.x32{left:530.997000px;}
.x28{left:568.593900px;}
.x2e{left:583.774650px;}
.x34{left:587.149650px;}
.x4{left:622.795350px;}
@media print{
.v4{vertical-align:-46.650667pt;}
.v9{vertical-align:-15.984000pt;}
.v2{vertical-align:-14.208000pt;}
.v3{vertical-align:-12.432000pt;}
.v0{vertical-align:0.000000pt;}
.v7{vertical-align:4.606933pt;}
.v8{vertical-align:15.984000pt;}
.v1{vertical-align:17.760000pt;}
.v5{vertical-align:29.333333pt;}
.v6{vertical-align:58.666667pt;}
.ls9{letter-spacing:-4.464000pt;}
.ls16{letter-spacing:-2.400000pt;}
.lsb{letter-spacing:-1.920000pt;}
.ls1e{letter-spacing:-1.728000pt;}
.ls1c{letter-spacing:-1.536000pt;}
.lsa{letter-spacing:-1.440000pt;}
.ls7{letter-spacing:-1.200000pt;}
.ls1d{letter-spacing:-0.864000pt;}
.ls17{letter-spacing:-0.699600pt;}
.ls1b{letter-spacing:-0.672000pt;}
.ls2{letter-spacing:-0.533333pt;}
.ls8{letter-spacing:-0.480000pt;}
.ls18{letter-spacing:-0.266667pt;}
.ls1{letter-spacing:-0.186667pt;}
.ls0{letter-spacing:0.000000pt;}
.ls4{letter-spacing:0.266667pt;}
.ls5{letter-spacing:0.533333pt;}
.ls1f{letter-spacing:0.747200pt;}
.ls20{letter-spacing:0.747733pt;}
.ls21{letter-spacing:0.768000pt;}
.ls3{letter-spacing:1.066667pt;}
.ls19{letter-spacing:3.250667pt;}
.ls1a{letter-spacing:4.540267pt;}
.lse{letter-spacing:62.499200pt;}
.lsf{letter-spacing:77.950400pt;}
.lsc{letter-spacing:85.509333pt;}
.lsd{letter-spacing:115.412800pt;}
.ls11{letter-spacing:120.324267pt;}
.ls12{letter-spacing:128.779733pt;}
.ls13{letter-spacing:135.775467pt;}
.ls14{letter-spacing:143.334933pt;}
.ls6{letter-spacing:164.543467pt;}
.ls10{letter-spacing:166.241600pt;}
.ls15{letter-spacing:173.237867pt;}
.ws82{word-spacing:-53.333333pt;}
.ws87{word-spacing:-48.000000pt;}
.ws95{word-spacing:-13.333333pt;}
.ws116{word-spacing:-12.768000pt;}
.ws4a{word-spacing:-12.000000pt;}
.ws80{word-spacing:-11.520000pt;}
.wsdb{word-spacing:-11.328000pt;}
.wsdd{word-spacing:-11.136000pt;}
.ws88{word-spacing:-10.800000pt;}
.ws0{word-spacing:-10.666667pt;}
.wsdc{word-spacing:-10.464000pt;}
.wsde{word-spacing:-10.272000pt;}
.ws1{word-spacing:-7.773333pt;}
.ws4c{word-spacing:-7.536000pt;}
.ws89{word-spacing:-6.996000pt;}
.ws2{word-spacing:-5.441333pt;}
.wscf{word-spacing:-5.226667pt;}
.wsaf{word-spacing:-4.960000pt;}
.ws3f{word-spacing:-4.800000pt;}
.ws72{word-spacing:-4.533333pt;}
.ws43{word-spacing:-4.213333pt;}
.wsce{word-spacing:-4.000000pt;}
.ws73{word-spacing:-3.893333pt;}
.wse4{word-spacing:-3.840000pt;}
.ws10e{word-spacing:-3.792000pt;}
.ws5f{word-spacing:-3.786667pt;}
.ws12{word-spacing:-3.680000pt;}
.ws125{word-spacing:-3.648000pt;}
.wsf0{word-spacing:-3.600000pt;}
.wsd0{word-spacing:-3.520000pt;}
.ws92{word-spacing:-3.466667pt;}
.ws9e{word-spacing:-3.360000pt;}
.ws59{word-spacing:-3.253333pt;}
.wsd8{word-spacing:-2.933333pt;}
.ws105{word-spacing:-2.736000pt;}
.ws70{word-spacing:-2.666667pt;}
.ws35{word-spacing:-2.613333pt;}
.wse2{word-spacing:-2.592000pt;}
.wsa7{word-spacing:-2.560000pt;}
.wscc{word-spacing:-2.400000pt;}
.ws8d{word-spacing:-2.346667pt;}
.wsb8{word-spacing:-2.240000pt;}
.ws91{word-spacing:-2.186667pt;}
.ws10a{word-spacing:-2.160000pt;}
.ws5a{word-spacing:-2.080000pt;}
.ws10d{word-spacing:-2.064000pt;}
.wsec{word-spacing:-2.016000pt;}
.ws36{word-spacing:-1.973333pt;}
.ws120{word-spacing:-1.968000pt;}
.wsd{word-spacing:-1.962667pt;}
.ws19{word-spacing:-1.920000pt;}
.wse1{word-spacing:-1.488000pt;}
.ws9b{word-spacing:-1.440000pt;}
.wsfa{word-spacing:-1.392000pt;}
.ws93{word-spacing:-1.333333pt;}
.ws121{word-spacing:-1.296000pt;}
.wsb{word-spacing:-1.280000pt;}
.ws1b{word-spacing:-1.226667pt;}
.ws108{word-spacing:-1.200000pt;}
.ws2b{word-spacing:-1.120000pt;}
.wsf2{word-spacing:-1.104000pt;}
.ws1e{word-spacing:-1.066667pt;}
.ws11c{word-spacing:-1.056000pt;}
.ws34{word-spacing:-0.960000pt;}
.wsc{word-spacing:-0.938667pt;}
.wsae{word-spacing:-0.906667pt;}
.ws7d{word-spacing:-0.853333pt;}
.ws9a{word-spacing:-0.800000pt;}
.wsed{word-spacing:-0.768000pt;}
.ws6f{word-spacing:-0.746667pt;}
.wsbf{word-spacing:-0.693333pt;}
.wse6{word-spacing:-0.672000pt;}
.ws7b{word-spacing:-0.640000pt;}
.wsd4{word-spacing:-0.586667pt;}
.ws37{word-spacing:-0.480000pt;}
.ws118{word-spacing:-0.432000pt;}
.ws8e{word-spacing:-0.426667pt;}
.ws113{word-spacing:-0.384000pt;}
.ws64{word-spacing:-0.373333pt;}
.wsa8{word-spacing:-0.320000pt;}
.ws110{word-spacing:-0.288000pt;}
.wsda{word-spacing:-0.266667pt;}
.ws9c{word-spacing:-0.213333pt;}
.ws12c{word-spacing:-0.192000pt;}
.ws17{word-spacing:-0.160000pt;}
.ws58{word-spacing:-0.106667pt;}
.ws117{word-spacing:-0.096000pt;}
.wsb7{word-spacing:-0.053333pt;}
.ws3{word-spacing:0.000000pt;}
.ws67{word-spacing:0.053333pt;}
.wsf6{word-spacing:0.096000pt;}
.wscb{word-spacing:0.106667pt;}
.wsef{word-spacing:0.144000pt;}
.wsd3{word-spacing:0.160000pt;}
.wse9{word-spacing:0.192000pt;}
.wscd{word-spacing:0.213333pt;}
.ws114{word-spacing:0.240000pt;}
.ws15{word-spacing:0.266667pt;}
.ws6a{word-spacing:0.320000pt;}
.wsf9{word-spacing:0.384000pt;}
.wsd2{word-spacing:0.426667pt;}
.ws81{word-spacing:0.480000pt;}
.ws3a{word-spacing:0.533333pt;}
.ws79{word-spacing:0.586667pt;}
.ws6{word-spacing:0.640000pt;}
.wse3{word-spacing:0.672000pt;}
.ws42{word-spacing:0.693333pt;}
.ws12a{word-spacing:0.768000pt;}
.ws25{word-spacing:0.800000pt;}
.wsf1{word-spacing:0.816000pt;}
.wsa0{word-spacing:0.853333pt;}
.wsee{word-spacing:0.864000pt;}
.ws4{word-spacing:0.896000pt;}
.ws30{word-spacing:0.906667pt;}
.ws101{word-spacing:0.960000pt;}
.wse7{word-spacing:1.008000pt;}
.ws47{word-spacing:1.013333pt;}
.ws111{word-spacing:1.056000pt;}
.ws71{word-spacing:1.120000pt;}
.ws94{word-spacing:1.200000pt;}
.ws16{word-spacing:1.226667pt;}
.wsb6{word-spacing:1.333333pt;}
.wsc1{word-spacing:1.440000pt;}
.ws11b{word-spacing:1.488000pt;}
.ws3b{word-spacing:1.493333pt;}
.ws74{word-spacing:1.546667pt;}
.ws76{word-spacing:1.600000pt;}
.ws5b{word-spacing:1.653333pt;}
.wsac{word-spacing:1.706667pt;}
.wsbb{word-spacing:1.760000pt;}
.wsf{word-spacing:1.792000pt;}
.ws78{word-spacing:1.813333pt;}
.wse0{word-spacing:1.866667pt;}
.ws1a{word-spacing:1.920000pt;}
.ws63{word-spacing:1.973333pt;}
.ws7{word-spacing:2.005333pt;}
.ws66{word-spacing:2.026667pt;}
.wsfe{word-spacing:2.064000pt;}
.wsdf{word-spacing:2.080000pt;}
.ws5{word-spacing:2.090667pt;}
.ws6b{word-spacing:2.133333pt;}
.ws20{word-spacing:2.186667pt;}
.ws123{word-spacing:2.208000pt;}
.wsa5{word-spacing:2.240000pt;}
.ws11e{word-spacing:2.304000pt;}
.ws33{word-spacing:2.400000pt;}
.ws98{word-spacing:2.453333pt;}
.wsfc{word-spacing:2.499200pt;}
.ws24{word-spacing:2.506667pt;}
.wse5{word-spacing:2.544000pt;}
.wsa{word-spacing:2.560000pt;}
.wsc0{word-spacing:2.666667pt;}
.ws18{word-spacing:2.720000pt;}
.wse{word-spacing:2.730667pt;}
.ws3e{word-spacing:2.773333pt;}
.ws97{word-spacing:2.826667pt;}
.wsf8{word-spacing:2.832000pt;}
.ws68{word-spacing:2.880000pt;}
.ws102{word-spacing:2.928000pt;}
.ws2c{word-spacing:2.933333pt;}
.wsc3{word-spacing:2.986667pt;}
.wsb9{word-spacing:3.040000pt;}
.ws13{word-spacing:3.093333pt;}
.ws2d{word-spacing:3.146667pt;}
.ws12e{word-spacing:3.168000pt;}
.ws27{word-spacing:3.200000pt;}
.ws44{word-spacing:3.253333pt;}
.wseb{word-spacing:3.264000pt;}
.wsb1{word-spacing:3.306667pt;}
.ws6c{word-spacing:3.360000pt;}
.ws65{word-spacing:3.466667pt;}
.ws77{word-spacing:3.520000pt;}
.ws28{word-spacing:3.573333pt;}
.ws8{word-spacing:3.626667pt;}
.wsf4{word-spacing:3.648000pt;}
.ws5c{word-spacing:3.680000pt;}
.wsba{word-spacing:3.733333pt;}
.ws1f{word-spacing:3.840000pt;}
.ws38{word-spacing:3.893333pt;}
.wsa6{word-spacing:3.946667pt;}
.ws69{word-spacing:4.000000pt;}
.wsc6{word-spacing:4.053333pt;}
.ws129{word-spacing:4.080000pt;}
.wsb3{word-spacing:4.106667pt;}
.ws7a{word-spacing:4.160000pt;}
.ws7e{word-spacing:4.320000pt;}
.wsc4{word-spacing:4.373333pt;}
.ws115{word-spacing:4.464000pt;}
.wsa3{word-spacing:4.480000pt;}
.wsd1{word-spacing:4.533333pt;}
.wsfb{word-spacing:4.560000pt;}
.ws9{word-spacing:4.608000pt;}
.ws22{word-spacing:4.693333pt;}
.ws1c{word-spacing:4.746667pt;}
.ws10c{word-spacing:4.752000pt;}
.ws62{word-spacing:4.800000pt;}
.ws100{word-spacing:4.944000pt;}
.ws10f{word-spacing:5.040000pt;}
.ws49{word-spacing:5.066667pt;}
.ws45{word-spacing:5.120000pt;}
.wsf3{word-spacing:5.184000pt;}
.wsff{word-spacing:5.280000pt;}
.wsc2{word-spacing:5.333333pt;}
.ws12f{word-spacing:5.376000pt;}
.ws10{word-spacing:5.461333pt;}
.wsaa{word-spacing:5.493333pt;}
.wsbc{word-spacing:5.546667pt;}
.ws12d{word-spacing:5.568000pt;}
.ws6e{word-spacing:5.600000pt;}
.wsab{word-spacing:5.653333pt;}
.ws3d{word-spacing:5.706667pt;}
.ws119{word-spacing:5.712000pt;}
.ws26{word-spacing:5.760000pt;}
.wsd7{word-spacing:5.866667pt;}
.ws29{word-spacing:5.920000pt;}
.wsbd{word-spacing:6.026667pt;}
.ws10b{word-spacing:6.048000pt;}
.ws96{word-spacing:6.080000pt;}
.ws104{word-spacing:6.144000pt;}
.wsb4{word-spacing:6.240000pt;}
.wsbe{word-spacing:6.453333pt;}
.ws57{word-spacing:6.506667pt;}
.wsca{word-spacing:6.560000pt;}
.ws39{word-spacing:6.613333pt;}
.ws9f{word-spacing:6.666667pt;}
.wsa2{word-spacing:6.720000pt;}
.wsc9{word-spacing:6.773333pt;}
.ws40{word-spacing:6.880000pt;}
.ws46{word-spacing:6.933333pt;}
.ws7c{word-spacing:6.986667pt;}
.wsd5{word-spacing:7.093333pt;}
.ws32{word-spacing:7.146667pt;}
.ws122{word-spacing:7.152000pt;}
.ws6d{word-spacing:7.360000pt;}
.wsf5{word-spacing:7.392000pt;}
.wsb2{word-spacing:7.413333pt;}
.ws8f{word-spacing:7.466667pt;}
.ws128{word-spacing:7.536000pt;}
.ws2e{word-spacing:7.626667pt;}
.ws9d{word-spacing:7.680000pt;}
.ws5d{word-spacing:7.840000pt;}
.wsa1{word-spacing:7.893333pt;}
.ws14{word-spacing:7.946667pt;}
.wsb0{word-spacing:8.053333pt;}
.ws21{word-spacing:8.106667pt;}
.wsea{word-spacing:8.160000pt;}
.ws90{word-spacing:8.266667pt;}
.wsd9{word-spacing:8.373333pt;}
.ws127{word-spacing:8.880000pt;}
.wse8{word-spacing:8.928000pt;}
.ws103{word-spacing:9.072000pt;}
.wsa4{word-spacing:9.120000pt;}
.wsad{word-spacing:9.546667pt;}
.wsc5{word-spacing:9.600000pt;}
.ws41{word-spacing:9.760000pt;}
.ws31{word-spacing:10.346667pt;}
.ws75{word-spacing:10.666667pt;}
.ws130{word-spacing:10.752000pt;}
.wsb5{word-spacing:10.986667pt;}
.ws11f{word-spacing:10.992000pt;}
.ws11a{word-spacing:11.088000pt;}
.wsa9{word-spacing:11.146667pt;}
.ws12b{word-spacing:11.328000pt;}
.ws11d{word-spacing:11.472000pt;}
.ws112{word-spacing:11.568000pt;}
.ws1d{word-spacing:11.733333pt;}
.ws2a{word-spacing:12.586667pt;}
.ws124{word-spacing:12.624000pt;}
.ws23{word-spacing:12.640000pt;}
.wsd6{word-spacing:12.693333pt;}
.ws109{word-spacing:12.960000pt;}
.wsc8{word-spacing:13.013333pt;}
.ws61{word-spacing:13.386667pt;}
.wsf7{word-spacing:13.632000pt;}
.ws48{word-spacing:13.653333pt;}
.ws5e{word-spacing:13.706667pt;}
.ws99{word-spacing:13.920000pt;}
.ws60{word-spacing:14.346667pt;}
.ws3c{word-spacing:14.400000pt;}
.ws106{word-spacing:14.496000pt;}
.wsc7{word-spacing:15.466667pt;}
.wsfd{word-spacing:15.552000pt;}
.ws2f{word-spacing:17.333333pt;}
.ws126{word-spacing:18.192000pt;}
.ws107{word-spacing:19.248000pt;}
.ws84{word-spacing:30.833600pt;}
.ws85{word-spacing:31.728533pt;}
.ws11{word-spacing:37.386667pt;}
.ws4b{word-spacing:51.014933pt;}
.ws83{word-spacing:55.458667pt;}
.ws53{word-spacing:75.890133pt;}
.ws86{word-spacing:84.945067pt;}
.ws4e{word-spacing:86.567467pt;}
.ws50{word-spacing:89.123733pt;}
.ws51{word-spacing:99.827733pt;}
.ws52{word-spacing:103.427733pt;}
.ws8c{word-spacing:108.324267pt;}
.ws8b{word-spacing:115.320000pt;}
.ws8a{word-spacing:130.771733pt;}
.ws4d{word-spacing:145.874133pt;}
.ws54{word-spacing:145.874667pt;}
.ws4f{word-spacing:167.661867pt;}
.ws56{word-spacing:171.945600pt;}
.ws55{word-spacing:194.940800pt;}
.ws7f{word-spacing:720.960000pt;}
._3a{margin-left:-32.000000pt;}
._34{margin-left:-19.840000pt;}
._38{margin-left:-12.480000pt;}
._36{margin-left:-9.744000pt;}
._4{margin-left:-5.898667pt;}
._1{margin-left:-4.144000pt;}
._2{margin-left:-2.762667pt;}
._0{margin-left:-1.493333pt;}
._15{width:1.200000pt;}
._a{width:2.544000pt;}
._9{width:3.600000pt;}
._6{width:4.778667pt;}
._35{width:6.102933pt;}
._37{width:7.709867pt;}
._3b{width:9.261867pt;}
._3c{width:10.745600pt;}
._39{width:14.498133pt;}
._26{width:36.945067pt;}
._5{width:42.186667pt;}
._23{width:48.432533pt;}
._2a{width:49.457067pt;}
._2b{width:60.945067pt;}
._24{width:64.770133pt;}
._2c{width:67.693333pt;}
._3{width:70.485333pt;}
._30{width:72.185067pt;}
._27{width:79.693333pt;}
._2e{width:82.953067pt;}
._25{width:92.543467pt;}
._22{width:103.320000pt;}
._29{width:104.543467pt;}
._e{width:107.435733pt;}
._18{width:109.536000pt;}
._32{width:115.476800pt;}
._1b{width:119.808000pt;}
._17{width:121.080000pt;}
._16{width:125.232000pt;}
._2d{width:126.551467pt;}
._1d{width:127.560000pt;}
._33{width:130.771733pt;}
._2f{width:135.692800pt;}
._28{width:142.688533pt;}
._1e{width:144.240000pt;}
._1c{width:145.704000pt;}
._1a{width:149.856000pt;}
._12{width:153.866133pt;}
._11{width:157.154133pt;}
._7{width:158.913067pt;}
._f{width:165.205333pt;}
._13{width:169.212267pt;}
._31{width:173.200000pt;}
._14{width:176.543467pt;}
._21{width:178.392000pt;}
._10{width:180.551467pt;}
._8{width:182.029867pt;}
._1f{width:188.976000pt;}
._20{width:195.912000pt;}
._19{width:198.096000pt;}
._b{width:207.724267pt;}
._c{width:242.402133pt;}
._d{width:265.078400pt;}
.fs7{font-size:21.765333pt;}
.fs6{font-size:24.874667pt;}
.fs9{font-size:27.984000pt;}
.fs5{font-size:31.093333pt;}
.fs1{font-size:37.333333pt;}
.fs0{font-size:40.000000pt;}
.fs3{font-size:42.666667pt;}
.fs8{font-size:48.000000pt;}
.fs2{font-size:53.333333pt;}
.fs4{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.y4{bottom:55.145333pt;}
.y9{bottom:71.672533pt;}
.y8{bottom:83.672533pt;}
.y58{bottom:102.389467pt;}
.yd4{bottom:102.808800pt;}
.y83{bottom:103.104800pt;}
.yac{bottom:104.291467pt;}
.y127{bottom:104.633467pt;}
.yf7{bottom:105.056133pt;}
.y2b{bottom:105.155200pt;}
.y57{bottom:118.389467pt;}
.y82{bottom:119.104800pt;}
.y126{bottom:119.300133pt;}
.yf6{bottom:119.722800pt;}
.yd3{bottom:124.588400pt;}
.yab{bottom:128.776133pt;}
.y125{bottom:133.966800pt;}
.y56{bottom:134.389467pt;}
.y81{bottom:135.104800pt;}
.yd2{bottom:140.343467pt;}
.y124{bottom:148.633467pt;}
.yaa{bottom:148.789733pt;}
.yf5{bottom:149.056133pt;}
.y55{bottom:150.389467pt;}
.y80{bottom:151.104800pt;}
.yd1{bottom:156.098400pt;}
.ya9{bottom:156.123067pt;}
.y123{bottom:163.300133pt;}
.yf4{bottom:163.722800pt;}
.y54{bottom:166.389467pt;}
.y7f{bottom:167.104800pt;}
.yd0{bottom:171.853467pt;}
.y2a{bottom:176.673067pt;}
.y122{bottom:177.966800pt;}
.yf3{bottom:178.389467pt;}
.ya8{bottom:182.318267pt;}
.y53{bottom:182.389467pt;}
.ycf{bottom:187.608533pt;}
.ya7{bottom:189.651600pt;}
.y29{bottom:192.274133pt;}
.y121{bottom:192.633467pt;}
.yf2{bottom:193.056133pt;}
.y52{bottom:198.389467pt;}
.y7e{bottom:199.104800pt;}
.yce{bottom:203.363600pt;}
.y28{bottom:205.607467pt;}
.y120{bottom:207.300133pt;}
.yf1{bottom:207.722800pt;}
.y51{bottom:214.389467pt;}
.ya6{bottom:215.846667pt;}
.y27{bottom:218.940800pt;}
.ycd{bottom:219.118667pt;}
.y11f{bottom:221.966800pt;}
.yf0{bottom:222.389467pt;}
.ya5{bottom:223.180000pt;}
.y50{bottom:230.389467pt;}
.y7d{bottom:231.104800pt;}
.y26{bottom:232.274133pt;}
.ycc{bottom:234.873600pt;}
.y11e{bottom:236.633467pt;}
.yef{bottom:237.056133pt;}
.y25{bottom:245.607467pt;}
.y4f{bottom:246.389467pt;}
.y7c{bottom:247.104800pt;}
.ya4{bottom:249.375200pt;}
.ycb{bottom:250.628667pt;}
.y11d{bottom:251.300133pt;}
.yee{bottom:251.722800pt;}
.ya3{bottom:256.708533pt;}
.y24{bottom:258.940800pt;}
.y4e{bottom:262.389467pt;}
.y7b{bottom:263.104800pt;}
.y11c{bottom:265.966800pt;}
.yca{bottom:266.383733pt;}
.yed{bottom:266.389467pt;}
.y23{bottom:272.274133pt;}
.y4d{bottom:278.389467pt;}
.y7a{bottom:279.104800pt;}
.y11b{bottom:280.633467pt;}
.yec{bottom:281.056133pt;}
.yc9{bottom:282.138800pt;}
.ya2{bottom:282.903600pt;}
.y22{bottom:285.607467pt;}
.ya1{bottom:290.236933pt;}
.y4c{bottom:294.389467pt;}
.y79{bottom:295.104800pt;}
.y11a{bottom:295.300133pt;}
.yeb{bottom:295.722800pt;}
.yc8{bottom:297.893733pt;}
.y21{bottom:298.940800pt;}
.y119{bottom:309.966800pt;}
.y4b{bottom:310.389467pt;}
.y78{bottom:311.104800pt;}
.yc7{bottom:313.648800pt;}
.ya0{bottom:317.583867pt;}
.y118{bottom:324.633467pt;}
.yea{bottom:325.056133pt;}
.y4a{bottom:326.389467pt;}
.y77{bottom:327.104800pt;}
.yc6{bottom:329.403867pt;}
.y9f{bottom:337.597467pt;}
.y20{bottom:338.940800pt;}
.y117{bottom:339.300133pt;}
.ye9{bottom:339.722800pt;}
.y49{bottom:342.389467pt;}
.y76{bottom:343.104800pt;}
.yc5{bottom:345.158933pt;}
.y9d{bottom:352.264133pt;}
.y116{bottom:353.966800pt;}
.ye8{bottom:354.389467pt;}
.y1f{bottom:354.541867pt;}
.y48{bottom:358.389467pt;}
.y75{bottom:359.104800pt;}
.yc4{bottom:360.914000pt;}
.y9e{bottom:366.930800pt;}
.y1e{bottom:367.875200pt;}
.y115{bottom:368.633467pt;}
.ye7{bottom:369.056133pt;}
.y47{bottom:374.389467pt;}
.y74{bottom:375.104800pt;}
.yc3{bottom:376.669067pt;}
.y1d{bottom:381.208533pt;}
.y114{bottom:383.300133pt;}
.ye6{bottom:383.722800pt;}
.y9c{bottom:385.792667pt;}
.y46{bottom:390.389467pt;}
.y73{bottom:391.104800pt;}
.yc2{bottom:392.424133pt;}
.y9b{bottom:393.126000pt;}
.y1c{bottom:394.541867pt;}
.y113{bottom:397.966800pt;}
.ye5{bottom:398.389467pt;}
.y45{bottom:406.389467pt;}
.y72{bottom:407.104800pt;}
.y1b{bottom:407.875200pt;}
.yc1{bottom:408.179067pt;}
.y112{bottom:412.633467pt;}
.ye4{bottom:413.056133pt;}
.y9a{bottom:419.321067pt;}
.y1a{bottom:421.208533pt;}
.y44{bottom:422.389467pt;}
.y71{bottom:423.104800pt;}
.yc0{bottom:423.934133pt;}
.y99{bottom:426.654400pt;}
.y111{bottom:427.300133pt;}
.ye3{bottom:427.722800pt;}
.y19{bottom:434.541867pt;}
.y43{bottom:438.389467pt;}
.ybf{bottom:439.751333pt;}
.y110{bottom:441.966800pt;}
.ye2{bottom:442.389467pt;}
.y18{bottom:447.875200pt;}
.y98{bottom:452.849600pt;}
.y42{bottom:454.389467pt;}
.y70{bottom:455.104800pt;}
.ybe{bottom:455.568667pt;}
.y10f{bottom:456.633467pt;}
.ye1{bottom:457.056133pt;}
.y97{bottom:460.182933pt;}
.y17{bottom:461.208533pt;}
.ybd{bottom:470.235333pt;}
.y41{bottom:470.389467pt;}
.y10e{bottom:471.300133pt;}
.ye0{bottom:471.722800pt;}
.y16{bottom:474.541867pt;}
.y10d{bottom:485.966800pt;}
.y40{bottom:486.389467pt;}
.y96{bottom:487.529867pt;}
.ybc{bottom:498.877467pt;}
.y10c{bottom:500.633467pt;}
.ydf{bottom:501.056133pt;}
.y3f{bottom:502.389467pt;}
.y6f{bottom:503.104800pt;}
.y95{bottom:507.543467pt;}
.ybb{bottom:513.544133pt;}
.y94{bottom:514.876800pt;}
.y10b{bottom:515.300133pt;}
.yde{bottom:515.722800pt;}
.y3e{bottom:518.389467pt;}
.y15{bottom:523.427200pt;}
.y6d{bottom:529.354667pt;}
.y10a{bottom:529.966800pt;}
.ydd{bottom:530.389467pt;}
.y3d{bottom:534.389467pt;}
.y6c{bottom:536.688000pt;}
.y14{bottom:537.208533pt;}
.y93{bottom:541.072000pt;}
.y6e{bottom:544.021333pt;}
.y109{bottom:544.633467pt;}
.ydc{bottom:545.056133pt;}
.y92{bottom:548.405333pt;}
.y3c{bottom:550.389467pt;}
.y13{bottom:554.093867pt;}
.yba{bottom:557.544133pt;}
.y108{bottom:559.300133pt;}
.ydb{bottom:559.722800pt;}
.y6a{bottom:566.050400pt;}
.y3b{bottom:566.389467pt;}
.y69{bottom:573.383733pt;}
.yb9{bottom:573.544133pt;}
.y107{bottom:573.966800pt;}
.yda{bottom:574.389467pt;}
.y91{bottom:574.600400pt;}
.y12{bottom:579.875200pt;}
.y6b{bottom:580.717067pt;}
.y90{bottom:581.933733pt;}
.y3a{bottom:582.389467pt;}
.y106{bottom:588.633467pt;}
.yd9{bottom:589.056133pt;}
.yb8{bottom:589.544133pt;}
.y11{bottom:595.875200pt;}
.y39{bottom:598.389467pt;}
.y67{bottom:602.746133pt;}
.y105{bottom:603.300133pt;}
.yd8{bottom:603.722800pt;}
.yb7{bottom:605.544133pt;}
.y8f{bottom:608.128800pt;}
.y66{bottom:610.079467pt;}
.y10{bottom:611.875200pt;}
.y38{bottom:614.389467pt;}
.y8e{bottom:615.462133pt;}
.y68{bottom:617.412800pt;}
.y104{bottom:617.966800pt;}
.yd7{bottom:618.389467pt;}
.yb6{bottom:621.544133pt;}
.yf{bottom:627.875200pt;}
.y37{bottom:630.389467pt;}
.y103{bottom:632.633467pt;}
.yd6{bottom:633.056133pt;}
.yb5{bottom:637.544133pt;}
.y64{bottom:639.441867pt;}
.y8d{bottom:641.657333pt;}
.y36{bottom:646.389467pt;}
.y63{bottom:646.775200pt;}
.y102{bottom:647.300133pt;}
.yd5{bottom:647.722800pt;}
.y8c{bottom:648.990667pt;}
.yb4{bottom:653.544133pt;}
.y65{bottom:654.108533pt;}
.y101{bottom:661.966800pt;}
.y35{bottom:662.389467pt;}
.yb3{bottom:669.544133pt;}
.y8b{bottom:675.185733pt;}
.ye{bottom:675.875200pt;}
.y61{bottom:676.137600pt;}
.y100{bottom:676.633467pt;}
.y34{bottom:678.389467pt;}
.y8a{bottom:682.519067pt;}
.y60{bottom:683.470933pt;}
.yb2{bottom:685.544133pt;}
.y62{bottom:690.804267pt;}
.yff{bottom:691.300133pt;}
.yd{bottom:691.875200pt;}
.y33{bottom:694.389467pt;}
.yb1{bottom:701.544133pt;}
.yfe{bottom:705.966800pt;}
.y89{bottom:708.714267pt;}
.y32{bottom:710.389467pt;}
.y5f{bottom:712.833333pt;}
.y88{bottom:716.047600pt;}
.yfd{bottom:720.633467pt;}
.y31{bottom:726.389467pt;}
.yc{bottom:726.541867pt;}
.y5e{bottom:727.500000pt;}
.yb0{bottom:732.210800pt;}
.yfc{bottom:735.300133pt;}
.y87{bottom:742.242800pt;}
.y30{bottom:742.389467pt;}
.yb{bottom:745.208533pt;}
.y86{bottom:749.576133pt;}
.y5d{bottom:749.853067pt;}
.yfb{bottom:749.966800pt;}
.y2f{bottom:758.389467pt;}
.ya{bottom:763.875200pt;}
.yfa{bottom:764.633467pt;}
.y5c{bottom:772.854267pt;}
.y2e{bottom:774.389467pt;}
.y85{bottom:775.771200pt;}
.yaf{bottom:777.544133pt;}
.yf9{bottom:779.300133pt;}
.y2d{bottom:790.389467pt;}
.y84{bottom:790.437867pt;}
.yae{bottom:793.544133pt;}
.yf8{bottom:793.966800pt;}
.y59{bottom:806.389467pt;}
.y5b{bottom:808.633467pt;}
.y5{bottom:822.320933pt;}
.y2c{bottom:822.389467pt;}
.y5a{bottom:823.300133pt;}
.yad{bottom:824.210800pt;}
.y3{bottom:848.687067pt;}
.y7{bottom:856.855067pt;}
.y2{bottom:859.353733pt;}
.y6{bottom:868.855067pt;}
.y1{bottom:870.020400pt;}
.h9{height:20.794667pt;}
.h8{height:23.765333pt;}
.h3{height:33.226667pt;}
.h2{height:35.600000pt;}
.h5{height:37.973333pt;}
.ha{height:42.720000pt;}
.hd{height:44.304000pt;}
.h7{height:46.720000pt;}
.hf{height:47.326933pt;}
.h4{height:47.466667pt;}
.h6{height:56.960000pt;}
.hb{height:72.053333pt;}
.he{height:73.637333pt;}
.hc{height:101.386667pt;}
.h1{height:944.666667pt;}
.h0{height:944.881333pt;}
.w0{width:642.520000pt;}
.w1{width:642.666667pt;}
.x0{left:0.000000pt;}
.x12{left:75.590533pt;}
.x29{left:81.804000pt;}
.x25{left:83.382000pt;}
.x2f{left:84.480000pt;}
.x5{left:86.929200pt;}
.x15{left:88.380000pt;}
.x2{left:89.678400pt;}
.x40{left:92.050800pt;}
.x49{left:93.664800pt;}
.x41{left:96.664800pt;}
.x13{left:98.267733pt;}
.x55{left:103.113467pt;}
.x10{left:105.826800pt;}
.x51{left:107.883600pt;}
.x6{left:109.859733pt;}
.x3{left:120.879733pt;}
.x14{left:124.424533pt;}
.x35{left:131.408933pt;}
.x17{left:137.522933pt;}
.x50{left:139.333200pt;}
.x7{left:143.107467pt;}
.xd{left:146.835733pt;}
.x37{left:150.141200pt;}
.x4b{left:155.644800pt;}
.x16{left:157.305200pt;}
.x52{left:160.017733pt;}
.x44{left:162.418800pt;}
.x3f{left:168.158533pt;}
.x36{left:174.873467pt;}
.x4c{left:177.064667pt;}
.x19{left:177.987467pt;}
.x42{left:181.858800pt;}
.x18{left:189.033467pt;}
.x45{left:203.644800pt;}
.x53{left:206.703733pt;}
.x4e{left:215.254667pt;}
.x2a{left:218.338000pt;}
.x1b{left:224.452000pt;}
.xc{left:226.753067pt;}
.x1a{left:233.500000pt;}
.x4a{left:235.054800pt;}
.x39{left:237.070267pt;}
.x4d{left:240.568667pt;}
.x8{left:243.493333pt;}
.xe{left:248.534133pt;}
.x4f{left:250.042667pt;}
.x38{left:253.564267pt;}
.x3e{left:256.193200pt;}
.x9{left:258.304933pt;}
.x2b{left:261.802533pt;}
.xa{left:262.833200pt;}
.xb{left:265.486267pt;}
.x56{left:267.531733pt;}
.x46{left:268.888800pt;}
.x1c{left:275.962667pt;}
.x54{left:287.249333pt;}
.x11{left:299.286800pt;}
.xf{left:301.446800pt;}
.x48{left:306.070800pt;}
.x26{left:308.101867pt;}
.x1e{left:314.215733pt;}
.x43{left:315.568800pt;}
.x1d{left:323.263867pt;}
.x2c{left:324.595733pt;}
.x47{left:326.056800pt;}
.x3b{left:329.668667pt;}
.x3a{left:343.162667pt;}
.x27{left:354.235600pt;}
.x20{left:357.349600pt;}
.x1f{left:371.395733pt;}
.x1{left:390.159200pt;}
.x31{left:406.369467pt;}
.x22{left:412.483467pt;}
.x21{left:421.531600pt;}
.x30{left:422.863467pt;}
.x3d{left:427.936400pt;}
.x3c{left:444.430400pt;}
.x2d{left:452.503333pt;}
.x33{left:455.503333pt;}
.x24{left:458.617333pt;}
.x23{left:469.663467pt;}
.x32{left:471.997333pt;}
.x28{left:505.416800pt;}
.x2e{left:518.910800pt;}
.x34{left:521.910800pt;}
.x4{left:553.595867pt;}
}




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