
    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_096d5f5cca9bd8132e9b8e6c.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_6249e5595014b9440c02f50e.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.106934;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_c708aadd5e261204bee1bf78.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.694336;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_80d8d258d6bd62801340c26e.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.101562;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_63c5c267cdfa99568cc0048d.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_e52f453c6e8cc397f319e987.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_b28b94841bad13c16ee62a79.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v2{vertical-align:-17.982000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:19.986000px;}
.v1{vertical-align:23.976000px;}
.ls2{letter-spacing:-1.800000px;}
.ls1{letter-spacing:-1.200000px;}
.lsf{letter-spacing:-0.362326px;}
.ls1e{letter-spacing:-0.357307px;}
.ls20{letter-spacing:-0.167406px;}
.lsd{letter-spacing:-0.132388px;}
.lsb{letter-spacing:-0.083614px;}
.ls7{letter-spacing:-0.076646px;}
.ls24{letter-spacing:-0.072785px;}
.ls23{letter-spacing:-0.062860px;}
.lse{letter-spacing:-0.045291px;}
.ls8{letter-spacing:-0.038323px;}
.ls28{letter-spacing:-0.017995px;}
.lsa{letter-spacing:-0.017420px;}
.ls1f{letter-spacing:-0.016542px;}
.ls27{letter-spacing:-0.010797px;}
.lsc{letter-spacing:-0.006968px;}
.ls26{letter-spacing:-0.003599px;}
.ls9{letter-spacing:-0.003484px;}
.ls21{letter-spacing:-0.003044px;}
.ls0{letter-spacing:0.000000px;}
.ls13{letter-spacing:0.003044px;}
.ls12{letter-spacing:0.003308px;}
.ls3{letter-spacing:0.003484px;}
.ls18{letter-spacing:0.003599px;}
.ls10{letter-spacing:0.006968px;}
.ls19{letter-spacing:0.007198px;}
.ls1a{letter-spacing:0.010797px;}
.ls2a{letter-spacing:0.012000px;}
.ls17{letter-spacing:0.012175px;}
.ls4{letter-spacing:0.013936px;}
.ls1d{letter-spacing:0.015219px;}
.ls29{letter-spacing:0.017995px;}
.ls1c{letter-spacing:0.024350px;}
.ls5{letter-spacing:0.024387px;}
.ls16{letter-spacing:0.030437px;}
.ls6{letter-spacing:0.031355px;}
.ls22{letter-spacing:0.039701px;}
.ls15{letter-spacing:0.054787px;}
.ls11{letter-spacing:0.060875px;}
.ls1b{letter-spacing:0.075577px;}
.ls25{letter-spacing:0.107968px;}
.ls14{letter-spacing:0.133925px;}
.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;}
}
.ws2{word-spacing:-72.000000px;}
.ws7{word-spacing:-60.000000px;}
.ws6{word-spacing:-21.000000px;}
.ws3{word-spacing:-18.000000px;}
.ws0{word-spacing:-15.000000px;}
.ws4{word-spacing:-10.494000px;}
.ws54{word-spacing:-9.406500px;}
.wsa9{word-spacing:-9.000899px;}
.wsea{word-spacing:-8.745000px;}
.ws55{word-spacing:-8.734137px;}
.ws56{word-spacing:-8.713234px;}
.ws5{word-spacing:-7.870500px;}
.wsa7{word-spacing:-7.612394px;}
.wsa8{word-spacing:-7.441944px;}
.wsbc{word-spacing:-6.642000px;}
.wsdf{word-spacing:-6.594000px;}
.ws19{word-spacing:-5.616000px;}
.wse0{word-spacing:-5.058000px;}
.ws84{word-spacing:-4.764000px;}
.ws83{word-spacing:-4.758000px;}
.wsf5{word-spacing:-4.512000px;}
.ws80{word-spacing:-4.230000px;}
.ws7f{word-spacing:-4.224000px;}
.wsec{word-spacing:-3.882000px;}
.wsee{word-spacing:-3.606000px;}
.ws36{word-spacing:-3.420000px;}
.ws5d{word-spacing:-3.276000px;}
.ws15{word-spacing:-3.024000px;}
.ws82{word-spacing:-2.958000px;}
.ws7b{word-spacing:-2.784000px;}
.wscb{word-spacing:-2.718000px;}
.wsd5{word-spacing:-2.574000px;}
.ws3d{word-spacing:-2.550000px;}
.wsb8{word-spacing:-2.448000px;}
.wsfa{word-spacing:-2.388000px;}
.wsae{word-spacing:-2.208000px;}
.ws8d{word-spacing:-1.848000px;}
.ws2d{word-spacing:-1.824000px;}
.wsf1{word-spacing:-1.782000px;}
.ws6b{word-spacing:-1.410000px;}
.ws94{word-spacing:-1.392000px;}
.wse{word-spacing:-1.086000px;}
.wsd7{word-spacing:-1.014000px;}
.wseb{word-spacing:-0.990000px;}
.ws46{word-spacing:-0.828000px;}
.ws1f{word-spacing:-0.756000px;}
.ws1e{word-spacing:-0.750000px;}
.ws5e{word-spacing:-0.480000px;}
.wsd{word-spacing:-0.402000px;}
.ws1a{word-spacing:-0.234000px;}
.wse9{word-spacing:-0.075577px;}
.ws1{word-spacing:-0.060000px;}
.ws2c{word-spacing:-0.018000px;}
.wse8{word-spacing:-0.017995px;}
.wse7{word-spacing:-0.010797px;}
.wse6{word-spacing:-0.007198px;}
.wsf8{word-spacing:-0.006000px;}
.ws8{word-spacing:0.000000px;}
.wse3{word-spacing:0.003044px;}
.wse4{word-spacing:0.010797px;}
.wsa6{word-spacing:0.017420px;}
.wse5{word-spacing:0.017995px;}
.wsa0{word-spacing:0.060000px;}
.wsde{word-spacing:0.066000px;}
.wsa4{word-spacing:0.076646px;}
.ws69{word-spacing:0.132000px;}
.ws2f{word-spacing:0.150000px;}
.wsa5{word-spacing:0.317035px;}
.ws78{word-spacing:0.504000px;}
.ws13{word-spacing:0.564000px;}
.wsdc{word-spacing:0.636000px;}
.wsa3{word-spacing:0.768000px;}
.ws99{word-spacing:0.912000px;}
.wsc4{word-spacing:0.924000px;}
.wsf9{word-spacing:1.266000px;}
.ws23{word-spacing:1.446000px;}
.ws64{word-spacing:1.452000px;}
.ws8a{word-spacing:1.470000px;}
.ws24{word-spacing:1.506000px;}
.wsb0{word-spacing:1.638000px;}
.ws12{word-spacing:1.686000px;}
.ws6c{word-spacing:1.710000px;}
.ws4c{word-spacing:1.722000px;}
.ws4b{word-spacing:1.740000px;}
.wsf6{word-spacing:1.782000px;}
.wsf7{word-spacing:1.788000px;}
.ws49{word-spacing:1.980000px;}
.wsc0{word-spacing:2.058000px;}
.wsd3{word-spacing:2.148000px;}
.ws97{word-spacing:2.250000px;}
.wsca{word-spacing:2.298000px;}
.ws66{word-spacing:2.346000px;}
.wsda{word-spacing:2.364000px;}
.wsc1{word-spacing:2.430000px;}
.ws3e{word-spacing:2.586000px;}
.ws10{word-spacing:2.628000px;}
.ws38{word-spacing:2.688000px;}
.wsef{word-spacing:2.706000px;}
.wsf0{word-spacing:2.712000px;}
.wsab{word-spacing:2.724000px;}
.wsc5{word-spacing:2.766000px;}
.wsc9{word-spacing:2.838000px;}
.wsb7{word-spacing:2.940000px;}
.wsb5{word-spacing:2.982000px;}
.ws1b{word-spacing:3.102000px;}
.ws6e{word-spacing:3.162000px;}
.ws48{word-spacing:3.168000px;}
.ws71{word-spacing:3.186000px;}
.ws35{word-spacing:3.384000px;}
.ws8f{word-spacing:3.408000px;}
.wsd6{word-spacing:3.486000px;}
.ws92{word-spacing:3.822000px;}
.ws93{word-spacing:3.852000px;}
.ws95{word-spacing:4.092000px;}
.wsdd{word-spacing:4.242000px;}
.ws8e{word-spacing:4.356000px;}
.ws5a{word-spacing:4.458000px;}
.ws5b{word-spacing:4.464000px;}
.ws4a{word-spacing:4.650000px;}
.ws53{word-spacing:4.770000px;}
.ws9b{word-spacing:4.794000px;}
.wsaf{word-spacing:4.956000px;}
.ws75{word-spacing:5.034000px;}
.ws47{word-spacing:5.316000px;}
.wsb2{word-spacing:5.346000px;}
.ws37{word-spacing:5.526000px;}
.wsc{word-spacing:5.646000px;}
.ws30{word-spacing:5.682000px;}
.wsf2{word-spacing:5.952000px;}
.wsf3{word-spacing:5.958000px;}
.ws98{word-spacing:6.162000px;}
.ws8b{word-spacing:6.408000px;}
.ws68{word-spacing:6.462000px;}
.wsb{word-spacing:6.582000px;}
.wsbe{word-spacing:6.630000px;}
.ws73{word-spacing:6.726000px;}
.wsfc{word-spacing:6.762000px;}
.wsc3{word-spacing:6.768000px;}
.ws4d{word-spacing:7.008000px;}
.ws77{word-spacing:7.302000px;}
.ws51{word-spacing:7.308000px;}
.ws33{word-spacing:7.536000px;}
.wsf4{word-spacing:7.548000px;}
.ws86{word-spacing:7.584000px;}
.wsfb{word-spacing:7.926000px;}
.ws96{word-spacing:8.190000px;}
.ws28{word-spacing:8.238000px;}
.ws57{word-spacing:8.262000px;}
.wsd2{word-spacing:8.346000px;}
.ws27{word-spacing:8.514000px;}
.ws81{word-spacing:8.610000px;}
.ws22{word-spacing:8.688000px;}
.wsc8{word-spacing:8.712000px;}
.ws9d{word-spacing:8.808000px;}
.ws70{word-spacing:8.886000px;}
.ws59{word-spacing:8.958000px;}
.ws74{word-spacing:9.240000px;}
.wsb4{word-spacing:9.576000px;}
.ws9c{word-spacing:9.816000px;}
.ws79{word-spacing:10.056000px;}
.ws45{word-spacing:10.092000px;}
.ws85{word-spacing:10.302000px;}
.ws52{word-spacing:10.320000px;}
.ws87{word-spacing:10.536000px;}
.ws20{word-spacing:10.596000px;}
.wscf{word-spacing:10.674000px;}
.wsd8{word-spacing:10.848000px;}
.wsd9{word-spacing:10.854000px;}
.ws9{word-spacing:10.896000px;}
.ws25{word-spacing:10.926000px;}
.wsa{word-spacing:10.932000px;}
.ws90{word-spacing:11.490000px;}
.ws3f{word-spacing:11.664000px;}
.ws1c{word-spacing:11.760000px;}
.ws63{word-spacing:11.988000px;}
.ws2b{word-spacing:12.132000px;}
.ws76{word-spacing:12.294000px;}
.ws6a{word-spacing:12.378000px;}
.wsdb{word-spacing:12.684000px;}
.wsce{word-spacing:13.044000px;}
.ws6d{word-spacing:13.200000px;}
.ws4f{word-spacing:13.284000px;}
.ws50{word-spacing:13.290000px;}
.wsbb{word-spacing:13.380000px;}
.wsed{word-spacing:13.578000px;}
.ws9e{word-spacing:13.650000px;}
.wsd1{word-spacing:13.656000px;}
.ws72{word-spacing:13.932000px;}
.ws11{word-spacing:14.022000px;}
.ws41{word-spacing:14.388000px;}
.wsb9{word-spacing:14.796000px;}
.ws40{word-spacing:14.808000px;}
.wsbd{word-spacing:15.018000px;}
.ws2e{word-spacing:15.330000px;}
.ws9f{word-spacing:15.372000px;}
.ws34{word-spacing:15.528000px;}
.wsaa{word-spacing:15.534000px;}
.ws65{word-spacing:15.630000px;}
.ws2a{word-spacing:15.816000px;}
.wsa1{word-spacing:16.002000px;}
.wse2{word-spacing:16.488000px;}
.ws6f{word-spacing:16.542000px;}
.ws7d{word-spacing:17.046000px;}
.ws89{word-spacing:17.556000px;}
.wsc7{word-spacing:17.574000px;}
.ws61{word-spacing:17.832000px;}
.wse1{word-spacing:17.874000px;}
.ws7a{word-spacing:18.204000px;}
.ws60{word-spacing:18.408000px;}
.wsd0{word-spacing:18.510000px;}
.ws43{word-spacing:18.846000px;}
.wsb3{word-spacing:18.864000px;}
.ws18{word-spacing:19.218000px;}
.ws8c{word-spacing:20.094000px;}
.ws3b{word-spacing:20.970000px;}
.wsa2{word-spacing:21.084000px;}
.ws26{word-spacing:21.912000px;}
.ws1d{word-spacing:22.746000px;}
.wsb1{word-spacing:23.154000px;}
.ws91{word-spacing:23.310000px;}
.ws3a{word-spacing:23.694000px;}
.ws21{word-spacing:23.856000px;}
.wsd4{word-spacing:23.970000px;}
.ws42{word-spacing:23.988000px;}
.ws58{word-spacing:24.096000px;}
.ws17{word-spacing:24.102000px;}
.wsac{word-spacing:24.618000px;}
.wsad{word-spacing:24.624000px;}
.wsba{word-spacing:24.726000px;}
.ws39{word-spacing:25.128000px;}
.ws4e{word-spacing:25.158000px;}
.ws44{word-spacing:25.524000px;}
.wsbf{word-spacing:25.722000px;}
.ws7c{word-spacing:26.778000px;}
.ws14{word-spacing:27.078000px;}
.ws88{word-spacing:27.576000px;}
.ws62{word-spacing:28.050000px;}
.ws32{word-spacing:28.194000px;}
.ws5f{word-spacing:28.428000px;}
.ws16{word-spacing:28.764000px;}
.ws7e{word-spacing:28.944000px;}
.ws29{word-spacing:30.816000px;}
.wsb6{word-spacing:30.858000px;}
.wsf{word-spacing:31.992000px;}
.wsc6{word-spacing:32.526000px;}
.ws31{word-spacing:36.642000px;}
.ws5c{word-spacing:38.928000px;}
.ws67{word-spacing:40.788000px;}
.wscc{word-spacing:41.310000px;}
.wscd{word-spacing:41.316000px;}
.ws9a{word-spacing:41.952000px;}
.wsc2{word-spacing:50.382000px;}
.ws3c{word-spacing:54.540000px;}
._15{margin-left:-55.788000px;}
._1a{margin-left:-35.364000px;}
._18{margin-left:-29.142000px;}
._b{margin-left:-25.386000px;}
._11{margin-left:-22.086000px;}
._d{margin-left:-20.976000px;}
._4{margin-left:-16.758000px;}
._1c{margin-left:-15.018000px;}
._14{margin-left:-13.872000px;}
._7{margin-left:-11.380800px;}
._f{margin-left:-8.886000px;}
._2{margin-left:-6.960600px;}
._17{margin-left:-5.508000px;}
._1{margin-left:-3.823200px;}
._0{margin-left:-1.900800px;}
._6{width:1.086000px;}
._e{width:2.406000px;}
._16{width:5.916000px;}
._13{width:7.074600px;}
._12{width:8.640000px;}
._1b{width:9.814800px;}
._9{width:13.096800px;}
._19{width:21.660000px;}
._c{width:22.728000px;}
._10{width:23.844000px;}
._a{width:27.066000px;}
._8{width:55.798200px;}
._5{width:116.322000px;}
._3{width:156.060000px;}
.fc2{color:rgb(146,148,151);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(35,31,32);}
.fs8{font-size:30.437400px;}
.fs5{font-size:31.482000px;}
.fs9{font-size:33.084000px;}
.fs6{font-size:34.839000px;}
.fsb{font-size:34.980000px;}
.fsa{font-size:35.989200px;}
.fs7{font-size:37.626000px;}
.fs4{font-size:41.976000px;}
.fs0{font-size:54.000000px;}
.fs1{font-size:60.000000px;}
.fs3{font-size:72.000000px;}
.fs2{font-size:84.000000px;}
.y0{bottom:0.000000px;}
.y114{bottom:1.075050px;}
.yb3{bottom:2.178038px;}
.y12b{bottom:2.316420px;}
.y142{bottom:3.688200px;}
.y144{bottom:3.688950px;}
.y146{bottom:3.689100px;}
.y148{bottom:3.689250px;}
.y14a{bottom:3.689400px;}
.yb9{bottom:4.092900px;}
.yb5{bottom:4.093200px;}
.ybd{bottom:4.093350px;}
.yb7{bottom:4.093500px;}
.ybb{bottom:4.093800px;}
.yac{bottom:4.703400px;}
.yb0{bottom:4.877550px;}
.yad{bottom:6.009863px;}
.ybf{bottom:7.752150px;}
.yc5{bottom:7.752300px;}
.yc2{bottom:7.772850px;}
.y11c{bottom:8.022600px;}
.y124{bottom:8.187651px;}
.ya9{bottom:8.534850px;}
.y130{bottom:8.685300px;}
.y127{bottom:8.849550px;}
.y12e{bottom:9.345930px;}
.yaa{bottom:10.799385px;}
.y12a{bottom:12.076200px;}
.yb2{bottom:12.194250px;}
.y12d{bottom:19.023000px;}
.y123{bottom:19.932683px;}
.y11a{bottom:22.496709px;}
.y122{bottom:31.429650px;}
.y121{bottom:31.437225px;}
.y119{bottom:36.723150px;}
.y120{bottom:42.851250px;}
.y117{bottom:50.949300px;}
.y11e{bottom:58.476000px;}
.y3{bottom:59.592000px;}
.y115{bottom:65.175450px;}
.y11d{bottom:67.987650px;}
.y13f{bottom:95.933700px;}
.y13c{bottom:97.463259px;}
.y13d{bottom:106.460550px;}
.ya7{bottom:107.260500px;}
.y13a{bottom:107.990100px;}
.y112{bottom:108.592650px;}
.y8d{bottom:109.557000px;}
.yf{bottom:110.959500px;}
.yf8{bottom:113.496000px;}
.y140{bottom:115.458150px;}
.ya6{bottom:125.260500px;}
.y111{bottom:126.592650px;}
.y8c{bottom:127.557000px;}
.ye{bottom:131.412000px;}
.yf7{bottom:135.748500px;}
.ya5{bottom:143.260500px;}
.y110{bottom:144.592650px;}
.y8b{bottom:145.557000px;}
.yf6{bottom:158.001000px;}
.y10f{bottom:162.592650px;}
.y8a{bottom:163.557000px;}
.ya4{bottom:165.513000px;}
.y31{bottom:169.585500px;}
.y56{bottom:173.379000px;}
.yf5{bottom:176.001000px;}
.ya3{bottom:183.513000px;}
.y89{bottom:185.808000px;}
.y30{bottom:187.585500px;}
.y55{bottom:191.379000px;}
.y10e{bottom:193.348500px;}
.yf4{bottom:194.001000px;}
.y132{bottom:201.472050px;}
.ya2{bottom:201.513000px;}
.y88{bottom:203.808000px;}
.y54{bottom:209.379000px;}
.y2f{bottom:209.836500px;}
.yf3{bottom:212.001000px;}
.ya1{bottom:219.513000px;}
.y87{bottom:221.808000px;}
.y53{bottom:227.379000px;}
.y2e{bottom:227.836500px;}
.yf2{bottom:234.252000px;}
.y10d{bottom:235.557000px;}
.ya0{bottom:237.513000px;}
.y86{bottom:239.808000px;}
.y52{bottom:245.379000px;}
.y2d{bottom:245.836500px;}
.yf1{bottom:252.252000px;}
.y10c{bottom:253.557000px;}
.y9f{bottom:255.513000px;}
.y85{bottom:257.808000px;}
.y51{bottom:263.379000px;}
.y2c{bottom:263.836500px;}
.y10b{bottom:271.557000px;}
.y9e{bottom:273.513000px;}
.yf0{bottom:274.504500px;}
.y84{bottom:275.808000px;}
.y50{bottom:281.379000px;}
.y2b{bottom:281.836500px;}
.y10a{bottom:289.557000px;}
.yef{bottom:292.504500px;}
.y83{bottom:293.808000px;}
.y9d{bottom:295.764000px;}
.y4f{bottom:299.379000px;}
.y2a{bottom:299.836500px;}
.y109{bottom:307.557000px;}
.yee{bottom:310.504500px;}
.y82{bottom:311.808000px;}
.y9c{bottom:313.764000px;}
.y4e{bottom:317.379000px;}
.y29{bottom:317.836500px;}
.yed{bottom:328.504500px;}
.y108{bottom:329.808000px;}
.y9b{bottom:331.764000px;}
.y81{bottom:334.060500px;}
.y4d{bottom:335.379000px;}
.y28{bottom:340.089000px;}
.yec{bottom:346.504500px;}
.y107{bottom:347.808000px;}
.y9a{bottom:349.764000px;}
.y80{bottom:352.060500px;}
.y4c{bottom:353.379000px;}
.y27{bottom:358.089000px;}
.yeb{bottom:364.504500px;}
.y106{bottom:365.808000px;}
.y99{bottom:367.764000px;}
.y7f{bottom:370.060500px;}
.y4b{bottom:371.379000px;}
.y26{bottom:376.089000px;}
.yea{bottom:382.504500px;}
.y105{bottom:383.808000px;}
.y98{bottom:385.764000px;}
.y7e{bottom:388.060500px;}
.y4a{bottom:389.379000px;}
.y25{bottom:394.089000px;}
.y104{bottom:401.808000px;}
.y97{bottom:403.764000px;}
.y7d{bottom:406.060500px;}
.y49{bottom:407.379000px;}
.ye9{bottom:409.008000px;}
.y24{bottom:412.089000px;}
.y103{bottom:419.808000px;}
.y96{bottom:421.764000px;}
.y7c{bottom:424.060500px;}
.y48{bottom:425.379000px;}
.ye8{bottom:427.008000px;}
.y23{bottom:430.089000px;}
.y102{bottom:437.808000px;}
.y7b{bottom:442.060500px;}
.y47{bottom:443.379000px;}
.y95{bottom:444.016500px;}
.y22{bottom:448.089000px;}
.ye7{bottom:449.260500px;}
.y101{bottom:455.808000px;}
.y7a{bottom:460.060500px;}
.y46{bottom:461.379000px;}
.y94{bottom:462.016500px;}
.y21{bottom:466.089000px;}
.ye6{bottom:467.260500px;}
.y169{bottom:469.675650px;}
.y100{bottom:473.808000px;}
.y79{bottom:478.060500px;}
.y45{bottom:479.379000px;}
.y93{bottom:480.016500px;}
.y168{bottom:487.675500px;}
.y20{bottom:488.341500px;}
.ye5{bottom:489.513000px;}
.yff{bottom:491.808000px;}
.y78{bottom:496.060500px;}
.y44{bottom:497.379000px;}
.y92{bottom:502.269000px;}
.y1f{bottom:506.341500px;}
.ye4{bottom:507.513000px;}
.yfe{bottom:509.808000px;}
.y167{bottom:509.926500px;}
.y77{bottom:514.060500px;}
.y43{bottom:519.630000px;}
.y91{bottom:520.269000px;}
.y1e{bottom:524.341500px;}
.y166{bottom:527.926500px;}
.ye3{bottom:529.764000px;}
.y76{bottom:536.313000px;}
.y42{bottom:537.630000px;}
.yfd{bottom:540.564000px;}
.y1d{bottom:542.341500px;}
.ye2{bottom:547.764000px;}
.y165{bottom:550.179000px;}
.y75{bottom:554.313000px;}
.y41{bottom:555.630000px;}
.y1c{bottom:560.341500px;}
.y90{bottom:564.772500px;}
.y164{bottom:568.179000px;}
.ye1{bottom:570.016500px;}
.y74{bottom:572.313000px;}
.y40{bottom:573.630000px;}
.y1b{bottom:578.341500px;}
.y8f{bottom:582.772500px;}
.y163{bottom:586.179000px;}
.ye0{bottom:588.016500px;}
.y73{bottom:590.313000px;}
.y3f{bottom:591.630000px;}
.y162{bottom:604.179000px;}
.ydf{bottom:606.016500px;}
.y1a{bottom:609.097500px;}
.y3e{bottom:609.630000px;}
.ybc{bottom:612.216000px;}
.y72{bottom:612.564000px;}
.yde{bottom:624.016500px;}
.y161{bottom:626.430000px;}
.y71{bottom:630.564000px;}
.y3d{bottom:631.882500px;}
.yba{bottom:638.344500px;}
.y131{bottom:643.218000px;}
.y160{bottom:644.430000px;}
.ydd{bottom:646.269000px;}
.y70{bottom:648.564000px;}
.ya8{bottom:649.668000px;}
.y3c{bottom:649.882500px;}
.y19{bottom:651.304500px;}
.y149{bottom:656.713500px;}
.y15f{bottom:662.430000px;}
.ydc{bottom:664.269000px;}
.yb8{bottom:664.474500px;}
.y3b{bottom:667.882500px;}
.y18{bottom:669.304500px;}
.y6f{bottom:670.816500px;}
.yc4{bottom:671.005500px;}
.yc6{bottom:678.757800px;}
.y15e{bottom:684.682500px;}
.y3a{bottom:685.882500px;}
.ydb{bottom:686.520000px;}
.y17{bottom:687.304500px;}
.y6e{bottom:688.816500px;}
.yb6{bottom:690.603000px;}
.y147{bottom:697.201500px;}
.y15d{bottom:702.682500px;}
.yc1{bottom:703.668000px;}
.y39{bottom:703.882500px;}
.yda{bottom:704.520000px;}
.y16{bottom:705.304500px;}
.y6d{bottom:706.816500px;}
.yc3{bottom:711.440850px;}
.yb4{bottom:716.754000px;}
.y15c{bottom:720.682500px;}
.y38{bottom:721.882500px;}
.y15{bottom:723.304500px;}
.y6c{bottom:724.816500px;}
.yd9{bottom:726.772500px;}
.ybe{bottom:736.350000px;}
.y145{bottom:737.712000px;}
.y13e{bottom:739.151700px;}
.y37{bottom:739.882500px;}
.y14{bottom:741.304500px;}
.y6b{bottom:742.816500px;}
.yc7{bottom:742.882500px;}
.y15b{bottom:742.935000px;}
.yc0{bottom:744.102150px;}
.yd8{bottom:744.772500px;}
.y13b{bottom:751.208100px;}
.y36{bottom:757.882500px;}
.y13{bottom:759.304500px;}
.y6a{bottom:760.816500px;}
.yd7{bottom:762.772500px;}
.y15a{bottom:765.186000px;}
.yab{bottom:765.702000px;}
.y139{bottom:767.763141px;}
.yb1{bottom:775.630500px;}
.y35{bottom:775.882500px;}
.y12{bottom:777.304500px;}
.y143{bottom:778.200000px;}
.y138{bottom:778.739847px;}
.y69{bottom:778.816500px;}
.yd6{bottom:780.772500px;}
.y159{bottom:783.186000px;}
.y137{bottom:789.716553px;}
.y34{bottom:793.882500px;}
.y11{bottom:795.304500px;}
.y68{bottom:796.816500px;}
.yd5{bottom:798.772500px;}
.y136{bottom:800.693259px;}
.y158{bottom:801.186000px;}
.y135{bottom:811.759938px;}
.y33{bottom:811.882500px;}
.yd4{bottom:816.772500px;}
.yaf{bottom:821.008500px;}
.y134{bottom:822.736644px;}
.y157{bottom:823.438500px;}
.y141{bottom:825.436500px;}
.yae{bottom:825.886050px;}
.y10{bottom:826.060500px;}
.y67{bottom:827.572500px;}
.y32{bottom:829.882500px;}
.y133{bottom:833.713350px;}
.yd3{bottom:834.772500px;}
.y156{bottom:841.438500px;}
.y8e{bottom:851.779500px;}
.yd2{bottom:857.023500px;}
.y155{bottom:863.691000px;}
.y66{bottom:869.779500px;}
.y9{bottom:869.995500px;}
.yd1{bottom:875.023500px;}
.y154{bottom:881.691000px;}
.y65{bottom:887.779500px;}
.y8{bottom:892.248000px;}
.yd0{bottom:893.023500px;}
.yfc{bottom:898.269000px;}
.y153{bottom:903.942000px;}
.y64{bottom:905.779500px;}
.y7{bottom:910.248000px;}
.ycf{bottom:911.023500px;}
.yfb{bottom:916.269000px;}
.y63{bottom:923.779500px;}
.y152{bottom:926.194500px;}
.y6{bottom:928.248000px;}
.yce{bottom:929.023500px;}
.y62{bottom:941.779500px;}
.y151{bottom:944.193000px;}
.y5{bottom:946.248000px;}
.ycd{bottom:947.023500px;}
.y11f{bottom:948.991500px;}
.y113{bottom:948.999000px;}
.y11b{bottom:957.021600px;}
.y61{bottom:959.779500px;}
.y128{bottom:963.307650px;}
.y4{bottom:964.248000px;}
.y125{bottom:964.548300px;}
.ycc{bottom:965.023500px;}
.y150{bottom:966.445500px;}
.y60{bottom:977.779500px;}
.y12f{bottom:980.014500px;}
.y14f{bottom:984.445500px;}
.y118{bottom:985.722150px;}
.ycb{bottom:987.276000px;}
.y12c{bottom:989.031000px;}
.y5f{bottom:995.779500px;}
.y129{bottom:996.474000px;}
.y57{bottom:996.514500px;}
.y116{bottom:999.948300px;}
.yca{bottom:1005.276000px;}
.y126{bottom:1005.573000px;}
.y14e{bottom:1006.698000px;}
.y5e{bottom:1013.779500px;}
.yd{bottom:1015.203000px;}
.yc9{bottom:1027.528500px;}
.y14d{bottom:1028.950500px;}
.y5d{bottom:1031.779500px;}
.yfa{bottom:1041.276000px;}
.yc8{bottom:1045.528500px;}
.yc{bottom:1049.559000px;}
.y5c{bottom:1049.779500px;}
.y14c{bottom:1051.203000px;}
.yf9{bottom:1063.528500px;}
.y5b{bottom:1067.779500px;}
.y14b{bottom:1069.203000px;}
.yb{bottom:1074.759000px;}
.y5a{bottom:1085.779500px;}
.ya{bottom:1099.959000px;}
.y59{bottom:1103.779500px;}
.y58{bottom:1158.678450px;}
.y2{bottom:1158.777900px;}
.y1{bottom:1183.481550px;}
.hf{height:13.753500px;}
.h13{height:13.755000px;}
.h10{height:13.761000px;}
.h24{height:14.298000px;}
.h25{height:14.305500px;}
.hc{height:17.524500px;}
.h1c{height:19.678500px;}
.hd{height:20.200500px;}
.h11{height:20.293500px;}
.h12{height:20.310000px;}
.h1e{height:22.828500px;}
.h1b{height:22.927500px;}
.h14{height:23.985000px;}
.h20{height:23.986942px;}
.h23{height:24.988595px;}
.h18{height:26.707035px;}
.h15{height:27.123171px;}
.h19{height:29.029271px;}
.h6{height:29.399836px;}
.h17{height:29.481592px;}
.h9{height:30.569181px;}
.he{height:31.045496px;}
.h21{height:31.578414px;}
.hb{height:33.529028px;}
.h1d{height:33.573000px;}
.ha{height:46.590000px;}
.h8{height:46.683000px;}
.h1{height:47.381836px;}
.h3{height:52.646484px;}
.h27{height:52.647084px;}
.h26{height:52.652484px;}
.h7{height:53.144531px;}
.h2{height:53.466797px;}
.h5{height:63.773438px;}
.h4{height:74.853516px;}
.h16{height:79.746000px;}
.h1a{height:79.753500px;}
.h22{height:125.347500px;}
.h1f{height:210.012000px;}
.h0{height:1263.000000px;}
.w3{width:19.941000px;}
.w2{width:19.945500px;}
.we{width:33.331500px;}
.w11{width:33.333000px;}
.w10{width:45.583500px;}
.wb{width:50.967000px;}
.wc{width:51.025500px;}
.wd{width:51.033000px;}
.w6{width:51.466500px;}
.w5{width:51.484500px;}
.wa{width:56.259000px;}
.wf{width:56.506500px;}
.w13{width:67.408500px;}
.w12{width:70.287000px;}
.w4{width:84.324000px;}
.w16{width:105.733500px;}
.w9{width:114.024000px;}
.w7{width:114.039000px;}
.w8{width:114.045000px;}
.w15{width:122.467500px;}
.w14{width:139.294500px;}
.w1{width:892.500000px;}
.w0{width:892.830000px;}
.x0{left:0.000000px;}
.x17{left:5.219100px;}
.x21{left:6.382500px;}
.xd{left:8.186850px;}
.x13{left:9.573150px;}
.x14{left:11.750587px;}
.x25{left:13.068536px;}
.x29{left:15.391125px;}
.xe{left:18.461742px;}
.x2f{left:23.659350px;}
.x37{left:24.742650px;}
.x38{left:26.452050px;}
.x36{left:28.971300px;}
.x24{left:34.180350px;}
.x27{left:35.834550px;}
.x32{left:45.999300px;}
.x11{left:62.549400px;}
.x1{left:106.299150px;}
.x1b{left:119.055150px;}
.x4{left:127.027500px;}
.x5{left:233.326500px;}
.x6{left:474.098100px;}
.xa{left:475.314600px;}
.x1d{left:478.542150px;}
.xc{left:480.408000px;}
.x1c{left:486.850650px;}
.x1f{left:490.359150px;}
.x7{left:495.357600px;}
.x2a{left:501.344700px;}
.x2e{left:513.965400px;}
.x12{left:516.906000px;}
.x16{left:529.882500px;}
.x22{left:531.699000px;}
.x26{left:546.835350px;}
.x23{left:548.572200px;}
.xb{left:553.083600px;}
.x33{left:559.963500px;}
.x34{left:567.792000px;}
.x1e{left:572.665650px;}
.x35{left:576.699000px;}
.x2b{left:588.129000px;}
.x10{left:592.695000px;}
.xf{left:614.381550px;}
.x20{left:627.250500px;}
.x15{left:647.587500px;}
.x2c{left:650.092350px;}
.x18{left:660.558000px;}
.x2{left:677.354550px;}
.x2d{left:683.431500px;}
.x19{left:685.554150px;}
.x1a{left:689.473500px;}
.x8{left:694.854600px;}
.x30{left:709.963500px;}
.x28{left:732.079500px;}
.x9{left:734.868000px;}
.x31{left:743.726400px;}
.x3{left:773.113500px;}
@media print{
.v2{vertical-align:-15.984000pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:17.765333pt;}
.v1{vertical-align:21.312000pt;}
.ls2{letter-spacing:-1.600000pt;}
.ls1{letter-spacing:-1.066667pt;}
.lsf{letter-spacing:-0.322067pt;}
.ls1e{letter-spacing:-0.317606pt;}
.ls20{letter-spacing:-0.148805pt;}
.lsd{letter-spacing:-0.117678pt;}
.lsb{letter-spacing:-0.074323pt;}
.ls7{letter-spacing:-0.068130pt;}
.ls24{letter-spacing:-0.064698pt;}
.ls23{letter-spacing:-0.055875pt;}
.lse{letter-spacing:-0.040258pt;}
.ls8{letter-spacing:-0.034065pt;}
.ls28{letter-spacing:-0.015995pt;}
.lsa{letter-spacing:-0.015484pt;}
.ls1f{letter-spacing:-0.014704pt;}
.ls27{letter-spacing:-0.009597pt;}
.lsc{letter-spacing:-0.006194pt;}
.ls26{letter-spacing:-0.003199pt;}
.ls9{letter-spacing:-0.003097pt;}
.ls21{letter-spacing:-0.002706pt;}
.ls0{letter-spacing:0.000000pt;}
.ls13{letter-spacing:0.002706pt;}
.ls12{letter-spacing:0.002941pt;}
.ls3{letter-spacing:0.003097pt;}
.ls18{letter-spacing:0.003199pt;}
.ls10{letter-spacing:0.006194pt;}
.ls19{letter-spacing:0.006398pt;}
.ls1a{letter-spacing:0.009597pt;}
.ls2a{letter-spacing:0.010667pt;}
.ls17{letter-spacing:0.010822pt;}
.ls4{letter-spacing:0.012387pt;}
.ls1d{letter-spacing:0.013528pt;}
.ls29{letter-spacing:0.015995pt;}
.ls1c{letter-spacing:0.021644pt;}
.ls5{letter-spacing:0.021678pt;}
.ls16{letter-spacing:0.027055pt;}
.ls6{letter-spacing:0.027871pt;}
.ls22{letter-spacing:0.035290pt;}
.ls15{letter-spacing:0.048700pt;}
.ls11{letter-spacing:0.054111pt;}
.ls1b{letter-spacing:0.067180pt;}
.ls25{letter-spacing:0.095971pt;}
.ls14{letter-spacing:0.119044pt;}
.ws2{word-spacing:-64.000000pt;}
.ws7{word-spacing:-53.333333pt;}
.ws6{word-spacing:-18.666667pt;}
.ws3{word-spacing:-16.000000pt;}
.ws0{word-spacing:-13.333333pt;}
.ws4{word-spacing:-9.328000pt;}
.ws54{word-spacing:-8.361333pt;}
.wsa9{word-spacing:-8.000799pt;}
.wsea{word-spacing:-7.773333pt;}
.ws55{word-spacing:-7.763678pt;}
.ws56{word-spacing:-7.745097pt;}
.ws5{word-spacing:-6.996000pt;}
.wsa7{word-spacing:-6.766572pt;}
.wsa8{word-spacing:-6.615062pt;}
.wsbc{word-spacing:-5.904000pt;}
.wsdf{word-spacing:-5.861333pt;}
.ws19{word-spacing:-4.992000pt;}
.wse0{word-spacing:-4.496000pt;}
.ws84{word-spacing:-4.234667pt;}
.ws83{word-spacing:-4.229333pt;}
.wsf5{word-spacing:-4.010667pt;}
.ws80{word-spacing:-3.760000pt;}
.ws7f{word-spacing:-3.754667pt;}
.wsec{word-spacing:-3.450667pt;}
.wsee{word-spacing:-3.205333pt;}
.ws36{word-spacing:-3.040000pt;}
.ws5d{word-spacing:-2.912000pt;}
.ws15{word-spacing:-2.688000pt;}
.ws82{word-spacing:-2.629333pt;}
.ws7b{word-spacing:-2.474667pt;}
.wscb{word-spacing:-2.416000pt;}
.wsd5{word-spacing:-2.288000pt;}
.ws3d{word-spacing:-2.266667pt;}
.wsb8{word-spacing:-2.176000pt;}
.wsfa{word-spacing:-2.122667pt;}
.wsae{word-spacing:-1.962667pt;}
.ws8d{word-spacing:-1.642667pt;}
.ws2d{word-spacing:-1.621333pt;}
.wsf1{word-spacing:-1.584000pt;}
.ws6b{word-spacing:-1.253333pt;}
.ws94{word-spacing:-1.237333pt;}
.wse{word-spacing:-0.965333pt;}
.wsd7{word-spacing:-0.901333pt;}
.wseb{word-spacing:-0.880000pt;}
.ws46{word-spacing:-0.736000pt;}
.ws1f{word-spacing:-0.672000pt;}
.ws1e{word-spacing:-0.666667pt;}
.ws5e{word-spacing:-0.426667pt;}
.wsd{word-spacing:-0.357333pt;}
.ws1a{word-spacing:-0.208000pt;}
.wse9{word-spacing:-0.067180pt;}
.ws1{word-spacing:-0.053333pt;}
.ws2c{word-spacing:-0.016000pt;}
.wse8{word-spacing:-0.015995pt;}
.wse7{word-spacing:-0.009597pt;}
.wse6{word-spacing:-0.006398pt;}
.wsf8{word-spacing:-0.005333pt;}
.ws8{word-spacing:0.000000pt;}
.wse3{word-spacing:0.002706pt;}
.wse4{word-spacing:0.009597pt;}
.wsa6{word-spacing:0.015484pt;}
.wse5{word-spacing:0.015995pt;}
.wsa0{word-spacing:0.053333pt;}
.wsde{word-spacing:0.058667pt;}
.wsa4{word-spacing:0.068130pt;}
.ws69{word-spacing:0.117333pt;}
.ws2f{word-spacing:0.133333pt;}
.wsa5{word-spacing:0.281809pt;}
.ws78{word-spacing:0.448000pt;}
.ws13{word-spacing:0.501333pt;}
.wsdc{word-spacing:0.565333pt;}
.wsa3{word-spacing:0.682667pt;}
.ws99{word-spacing:0.810667pt;}
.wsc4{word-spacing:0.821333pt;}
.wsf9{word-spacing:1.125333pt;}
.ws23{word-spacing:1.285333pt;}
.ws64{word-spacing:1.290667pt;}
.ws8a{word-spacing:1.306667pt;}
.ws24{word-spacing:1.338667pt;}
.wsb0{word-spacing:1.456000pt;}
.ws12{word-spacing:1.498667pt;}
.ws6c{word-spacing:1.520000pt;}
.ws4c{word-spacing:1.530667pt;}
.ws4b{word-spacing:1.546667pt;}
.wsf6{word-spacing:1.584000pt;}
.wsf7{word-spacing:1.589333pt;}
.ws49{word-spacing:1.760000pt;}
.wsc0{word-spacing:1.829333pt;}
.wsd3{word-spacing:1.909333pt;}
.ws97{word-spacing:2.000000pt;}
.wsca{word-spacing:2.042667pt;}
.ws66{word-spacing:2.085333pt;}
.wsda{word-spacing:2.101333pt;}
.wsc1{word-spacing:2.160000pt;}
.ws3e{word-spacing:2.298667pt;}
.ws10{word-spacing:2.336000pt;}
.ws38{word-spacing:2.389333pt;}
.wsef{word-spacing:2.405333pt;}
.wsf0{word-spacing:2.410667pt;}
.wsab{word-spacing:2.421333pt;}
.wsc5{word-spacing:2.458667pt;}
.wsc9{word-spacing:2.522667pt;}
.wsb7{word-spacing:2.613333pt;}
.wsb5{word-spacing:2.650667pt;}
.ws1b{word-spacing:2.757333pt;}
.ws6e{word-spacing:2.810667pt;}
.ws48{word-spacing:2.816000pt;}
.ws71{word-spacing:2.832000pt;}
.ws35{word-spacing:3.008000pt;}
.ws8f{word-spacing:3.029333pt;}
.wsd6{word-spacing:3.098667pt;}
.ws92{word-spacing:3.397333pt;}
.ws93{word-spacing:3.424000pt;}
.ws95{word-spacing:3.637333pt;}
.wsdd{word-spacing:3.770667pt;}
.ws8e{word-spacing:3.872000pt;}
.ws5a{word-spacing:3.962667pt;}
.ws5b{word-spacing:3.968000pt;}
.ws4a{word-spacing:4.133333pt;}
.ws53{word-spacing:4.240000pt;}
.ws9b{word-spacing:4.261333pt;}
.wsaf{word-spacing:4.405333pt;}
.ws75{word-spacing:4.474667pt;}
.ws47{word-spacing:4.725333pt;}
.wsb2{word-spacing:4.752000pt;}
.ws37{word-spacing:4.912000pt;}
.wsc{word-spacing:5.018667pt;}
.ws30{word-spacing:5.050667pt;}
.wsf2{word-spacing:5.290667pt;}
.wsf3{word-spacing:5.296000pt;}
.ws98{word-spacing:5.477333pt;}
.ws8b{word-spacing:5.696000pt;}
.ws68{word-spacing:5.744000pt;}
.wsb{word-spacing:5.850667pt;}
.wsbe{word-spacing:5.893333pt;}
.ws73{word-spacing:5.978667pt;}
.wsfc{word-spacing:6.010667pt;}
.wsc3{word-spacing:6.016000pt;}
.ws4d{word-spacing:6.229333pt;}
.ws77{word-spacing:6.490667pt;}
.ws51{word-spacing:6.496000pt;}
.ws33{word-spacing:6.698667pt;}
.wsf4{word-spacing:6.709333pt;}
.ws86{word-spacing:6.741333pt;}
.wsfb{word-spacing:7.045333pt;}
.ws96{word-spacing:7.280000pt;}
.ws28{word-spacing:7.322667pt;}
.ws57{word-spacing:7.344000pt;}
.wsd2{word-spacing:7.418667pt;}
.ws27{word-spacing:7.568000pt;}
.ws81{word-spacing:7.653333pt;}
.ws22{word-spacing:7.722667pt;}
.wsc8{word-spacing:7.744000pt;}
.ws9d{word-spacing:7.829333pt;}
.ws70{word-spacing:7.898667pt;}
.ws59{word-spacing:7.962667pt;}
.ws74{word-spacing:8.213333pt;}
.wsb4{word-spacing:8.512000pt;}
.ws9c{word-spacing:8.725333pt;}
.ws79{word-spacing:8.938667pt;}
.ws45{word-spacing:8.970667pt;}
.ws85{word-spacing:9.157333pt;}
.ws52{word-spacing:9.173333pt;}
.ws87{word-spacing:9.365333pt;}
.ws20{word-spacing:9.418667pt;}
.wscf{word-spacing:9.488000pt;}
.wsd8{word-spacing:9.642667pt;}
.wsd9{word-spacing:9.648000pt;}
.ws9{word-spacing:9.685333pt;}
.ws25{word-spacing:9.712000pt;}
.wsa{word-spacing:9.717333pt;}
.ws90{word-spacing:10.213333pt;}
.ws3f{word-spacing:10.368000pt;}
.ws1c{word-spacing:10.453333pt;}
.ws63{word-spacing:10.656000pt;}
.ws2b{word-spacing:10.784000pt;}
.ws76{word-spacing:10.928000pt;}
.ws6a{word-spacing:11.002667pt;}
.wsdb{word-spacing:11.274667pt;}
.wsce{word-spacing:11.594667pt;}
.ws6d{word-spacing:11.733333pt;}
.ws4f{word-spacing:11.808000pt;}
.ws50{word-spacing:11.813333pt;}
.wsbb{word-spacing:11.893333pt;}
.wsed{word-spacing:12.069333pt;}
.ws9e{word-spacing:12.133333pt;}
.wsd1{word-spacing:12.138667pt;}
.ws72{word-spacing:12.384000pt;}
.ws11{word-spacing:12.464000pt;}
.ws41{word-spacing:12.789333pt;}
.wsb9{word-spacing:13.152000pt;}
.ws40{word-spacing:13.162667pt;}
.wsbd{word-spacing:13.349333pt;}
.ws2e{word-spacing:13.626667pt;}
.ws9f{word-spacing:13.664000pt;}
.ws34{word-spacing:13.802667pt;}
.wsaa{word-spacing:13.808000pt;}
.ws65{word-spacing:13.893333pt;}
.ws2a{word-spacing:14.058667pt;}
.wsa1{word-spacing:14.224000pt;}
.wse2{word-spacing:14.656000pt;}
.ws6f{word-spacing:14.704000pt;}
.ws7d{word-spacing:15.152000pt;}
.ws89{word-spacing:15.605333pt;}
.wsc7{word-spacing:15.621333pt;}
.ws61{word-spacing:15.850667pt;}
.wse1{word-spacing:15.888000pt;}
.ws7a{word-spacing:16.181333pt;}
.ws60{word-spacing:16.362667pt;}
.wsd0{word-spacing:16.453333pt;}
.ws43{word-spacing:16.752000pt;}
.wsb3{word-spacing:16.768000pt;}
.ws18{word-spacing:17.082667pt;}
.ws8c{word-spacing:17.861333pt;}
.ws3b{word-spacing:18.640000pt;}
.wsa2{word-spacing:18.741333pt;}
.ws26{word-spacing:19.477333pt;}
.ws1d{word-spacing:20.218667pt;}
.wsb1{word-spacing:20.581333pt;}
.ws91{word-spacing:20.720000pt;}
.ws3a{word-spacing:21.061333pt;}
.ws21{word-spacing:21.205333pt;}
.wsd4{word-spacing:21.306667pt;}
.ws42{word-spacing:21.322667pt;}
.ws58{word-spacing:21.418667pt;}
.ws17{word-spacing:21.424000pt;}
.wsac{word-spacing:21.882667pt;}
.wsad{word-spacing:21.888000pt;}
.wsba{word-spacing:21.978667pt;}
.ws39{word-spacing:22.336000pt;}
.ws4e{word-spacing:22.362667pt;}
.ws44{word-spacing:22.688000pt;}
.wsbf{word-spacing:22.864000pt;}
.ws7c{word-spacing:23.802667pt;}
.ws14{word-spacing:24.069333pt;}
.ws88{word-spacing:24.512000pt;}
.ws62{word-spacing:24.933333pt;}
.ws32{word-spacing:25.061333pt;}
.ws5f{word-spacing:25.269333pt;}
.ws16{word-spacing:25.568000pt;}
.ws7e{word-spacing:25.728000pt;}
.ws29{word-spacing:27.392000pt;}
.wsb6{word-spacing:27.429333pt;}
.wsf{word-spacing:28.437333pt;}
.wsc6{word-spacing:28.912000pt;}
.ws31{word-spacing:32.570667pt;}
.ws5c{word-spacing:34.602667pt;}
.ws67{word-spacing:36.256000pt;}
.wscc{word-spacing:36.720000pt;}
.wscd{word-spacing:36.725333pt;}
.ws9a{word-spacing:37.290667pt;}
.wsc2{word-spacing:44.784000pt;}
.ws3c{word-spacing:48.480000pt;}
._15{margin-left:-49.589333pt;}
._1a{margin-left:-31.434667pt;}
._18{margin-left:-25.904000pt;}
._b{margin-left:-22.565333pt;}
._11{margin-left:-19.632000pt;}
._d{margin-left:-18.645333pt;}
._4{margin-left:-14.896000pt;}
._1c{margin-left:-13.349333pt;}
._14{margin-left:-12.330667pt;}
._7{margin-left:-10.116267pt;}
._f{margin-left:-7.898667pt;}
._2{margin-left:-6.187200pt;}
._17{margin-left:-4.896000pt;}
._1{margin-left:-3.398400pt;}
._0{margin-left:-1.689600pt;}
._6{width:0.965333pt;}
._e{width:2.138667pt;}
._16{width:5.258667pt;}
._13{width:6.288533pt;}
._12{width:7.680000pt;}
._1b{width:8.724267pt;}
._9{width:11.641600pt;}
._19{width:19.253333pt;}
._c{width:20.202667pt;}
._10{width:21.194667pt;}
._a{width:24.058667pt;}
._8{width:49.598400pt;}
._5{width:103.397333pt;}
._3{width:138.720000pt;}
.fs8{font-size:27.055467pt;}
.fs5{font-size:27.984000pt;}
.fs9{font-size:29.408000pt;}
.fs6{font-size:30.968000pt;}
.fsb{font-size:31.093333pt;}
.fsa{font-size:31.990400pt;}
.fs7{font-size:33.445333pt;}
.fs4{font-size:37.312000pt;}
.fs0{font-size:48.000000pt;}
.fs1{font-size:53.333333pt;}
.fs3{font-size:64.000000pt;}
.fs2{font-size:74.666667pt;}
.y0{bottom:0.000000pt;}
.y114{bottom:0.955600pt;}
.yb3{bottom:1.936033pt;}
.y12b{bottom:2.059040pt;}
.y142{bottom:3.278400pt;}
.y144{bottom:3.279067pt;}
.y146{bottom:3.279200pt;}
.y148{bottom:3.279333pt;}
.y14a{bottom:3.279467pt;}
.yb9{bottom:3.638133pt;}
.yb5{bottom:3.638400pt;}
.ybd{bottom:3.638533pt;}
.yb7{bottom:3.638667pt;}
.ybb{bottom:3.638933pt;}
.yac{bottom:4.180800pt;}
.yb0{bottom:4.335600pt;}
.yad{bottom:5.342100pt;}
.ybf{bottom:6.890800pt;}
.yc5{bottom:6.890933pt;}
.yc2{bottom:6.909200pt;}
.y11c{bottom:7.131200pt;}
.y124{bottom:7.277912pt;}
.ya9{bottom:7.586533pt;}
.y130{bottom:7.720267pt;}
.y127{bottom:7.866267pt;}
.y12e{bottom:8.307493pt;}
.yaa{bottom:9.599453pt;}
.y12a{bottom:10.734400pt;}
.yb2{bottom:10.839333pt;}
.y12d{bottom:16.909333pt;}
.y123{bottom:17.717941pt;}
.y11a{bottom:19.997075pt;}
.y122{bottom:27.937467pt;}
.y121{bottom:27.944200pt;}
.y119{bottom:32.642800pt;}
.y120{bottom:38.090000pt;}
.y117{bottom:45.288267pt;}
.y11e{bottom:51.978667pt;}
.y3{bottom:52.970667pt;}
.y115{bottom:57.933733pt;}
.y11d{bottom:60.433467pt;}
.y13f{bottom:85.274400pt;}
.y13c{bottom:86.634008pt;}
.y13d{bottom:94.631600pt;}
.ya7{bottom:95.342667pt;}
.y13a{bottom:95.991200pt;}
.y112{bottom:96.526800pt;}
.y8d{bottom:97.384000pt;}
.yf{bottom:98.630667pt;}
.yf8{bottom:100.885333pt;}
.y140{bottom:102.629467pt;}
.ya6{bottom:111.342667pt;}
.y111{bottom:112.526800pt;}
.y8c{bottom:113.384000pt;}
.ye{bottom:116.810667pt;}
.yf7{bottom:120.665333pt;}
.ya5{bottom:127.342667pt;}
.y110{bottom:128.526800pt;}
.y8b{bottom:129.384000pt;}
.yf6{bottom:140.445333pt;}
.y10f{bottom:144.526800pt;}
.y8a{bottom:145.384000pt;}
.ya4{bottom:147.122667pt;}
.y31{bottom:150.742667pt;}
.y56{bottom:154.114667pt;}
.yf5{bottom:156.445333pt;}
.ya3{bottom:163.122667pt;}
.y89{bottom:165.162667pt;}
.y30{bottom:166.742667pt;}
.y55{bottom:170.114667pt;}
.y10e{bottom:171.865333pt;}
.yf4{bottom:172.445333pt;}
.y132{bottom:179.086267pt;}
.ya2{bottom:179.122667pt;}
.y88{bottom:181.162667pt;}
.y54{bottom:186.114667pt;}
.y2f{bottom:186.521333pt;}
.yf3{bottom:188.445333pt;}
.ya1{bottom:195.122667pt;}
.y87{bottom:197.162667pt;}
.y53{bottom:202.114667pt;}
.y2e{bottom:202.521333pt;}
.yf2{bottom:208.224000pt;}
.y10d{bottom:209.384000pt;}
.ya0{bottom:211.122667pt;}
.y86{bottom:213.162667pt;}
.y52{bottom:218.114667pt;}
.y2d{bottom:218.521333pt;}
.yf1{bottom:224.224000pt;}
.y10c{bottom:225.384000pt;}
.y9f{bottom:227.122667pt;}
.y85{bottom:229.162667pt;}
.y51{bottom:234.114667pt;}
.y2c{bottom:234.521333pt;}
.y10b{bottom:241.384000pt;}
.y9e{bottom:243.122667pt;}
.yf0{bottom:244.004000pt;}
.y84{bottom:245.162667pt;}
.y50{bottom:250.114667pt;}
.y2b{bottom:250.521333pt;}
.y10a{bottom:257.384000pt;}
.yef{bottom:260.004000pt;}
.y83{bottom:261.162667pt;}
.y9d{bottom:262.901333pt;}
.y4f{bottom:266.114667pt;}
.y2a{bottom:266.521333pt;}
.y109{bottom:273.384000pt;}
.yee{bottom:276.004000pt;}
.y82{bottom:277.162667pt;}
.y9c{bottom:278.901333pt;}
.y4e{bottom:282.114667pt;}
.y29{bottom:282.521333pt;}
.yed{bottom:292.004000pt;}
.y108{bottom:293.162667pt;}
.y9b{bottom:294.901333pt;}
.y81{bottom:296.942667pt;}
.y4d{bottom:298.114667pt;}
.y28{bottom:302.301333pt;}
.yec{bottom:308.004000pt;}
.y107{bottom:309.162667pt;}
.y9a{bottom:310.901333pt;}
.y80{bottom:312.942667pt;}
.y4c{bottom:314.114667pt;}
.y27{bottom:318.301333pt;}
.yeb{bottom:324.004000pt;}
.y106{bottom:325.162667pt;}
.y99{bottom:326.901333pt;}
.y7f{bottom:328.942667pt;}
.y4b{bottom:330.114667pt;}
.y26{bottom:334.301333pt;}
.yea{bottom:340.004000pt;}
.y105{bottom:341.162667pt;}
.y98{bottom:342.901333pt;}
.y7e{bottom:344.942667pt;}
.y4a{bottom:346.114667pt;}
.y25{bottom:350.301333pt;}
.y104{bottom:357.162667pt;}
.y97{bottom:358.901333pt;}
.y7d{bottom:360.942667pt;}
.y49{bottom:362.114667pt;}
.ye9{bottom:363.562667pt;}
.y24{bottom:366.301333pt;}
.y103{bottom:373.162667pt;}
.y96{bottom:374.901333pt;}
.y7c{bottom:376.942667pt;}
.y48{bottom:378.114667pt;}
.ye8{bottom:379.562667pt;}
.y23{bottom:382.301333pt;}
.y102{bottom:389.162667pt;}
.y7b{bottom:392.942667pt;}
.y47{bottom:394.114667pt;}
.y95{bottom:394.681333pt;}
.y22{bottom:398.301333pt;}
.ye7{bottom:399.342667pt;}
.y101{bottom:405.162667pt;}
.y7a{bottom:408.942667pt;}
.y46{bottom:410.114667pt;}
.y94{bottom:410.681333pt;}
.y21{bottom:414.301333pt;}
.ye6{bottom:415.342667pt;}
.y169{bottom:417.489467pt;}
.y100{bottom:421.162667pt;}
.y79{bottom:424.942667pt;}
.y45{bottom:426.114667pt;}
.y93{bottom:426.681333pt;}
.y168{bottom:433.489333pt;}
.y20{bottom:434.081333pt;}
.ye5{bottom:435.122667pt;}
.yff{bottom:437.162667pt;}
.y78{bottom:440.942667pt;}
.y44{bottom:442.114667pt;}
.y92{bottom:446.461333pt;}
.y1f{bottom:450.081333pt;}
.ye4{bottom:451.122667pt;}
.yfe{bottom:453.162667pt;}
.y167{bottom:453.268000pt;}
.y77{bottom:456.942667pt;}
.y43{bottom:461.893333pt;}
.y91{bottom:462.461333pt;}
.y1e{bottom:466.081333pt;}
.y166{bottom:469.268000pt;}
.ye3{bottom:470.901333pt;}
.y76{bottom:476.722667pt;}
.y42{bottom:477.893333pt;}
.yfd{bottom:480.501333pt;}
.y1d{bottom:482.081333pt;}
.ye2{bottom:486.901333pt;}
.y165{bottom:489.048000pt;}
.y75{bottom:492.722667pt;}
.y41{bottom:493.893333pt;}
.y1c{bottom:498.081333pt;}
.y90{bottom:502.020000pt;}
.y164{bottom:505.048000pt;}
.ye1{bottom:506.681333pt;}
.y74{bottom:508.722667pt;}
.y40{bottom:509.893333pt;}
.y1b{bottom:514.081333pt;}
.y8f{bottom:518.020000pt;}
.y163{bottom:521.048000pt;}
.ye0{bottom:522.681333pt;}
.y73{bottom:524.722667pt;}
.y3f{bottom:525.893333pt;}
.y162{bottom:537.048000pt;}
.ydf{bottom:538.681333pt;}
.y1a{bottom:541.420000pt;}
.y3e{bottom:541.893333pt;}
.ybc{bottom:544.192000pt;}
.y72{bottom:544.501333pt;}
.yde{bottom:554.681333pt;}
.y161{bottom:556.826667pt;}
.y71{bottom:560.501333pt;}
.y3d{bottom:561.673333pt;}
.yba{bottom:567.417333pt;}
.y131{bottom:571.749333pt;}
.y160{bottom:572.826667pt;}
.ydd{bottom:574.461333pt;}
.y70{bottom:576.501333pt;}
.ya8{bottom:577.482667pt;}
.y3c{bottom:577.673333pt;}
.y19{bottom:578.937333pt;}
.y149{bottom:583.745333pt;}
.y15f{bottom:588.826667pt;}
.ydc{bottom:590.461333pt;}
.yb8{bottom:590.644000pt;}
.y3b{bottom:593.673333pt;}
.y18{bottom:594.937333pt;}
.y6f{bottom:596.281333pt;}
.yc4{bottom:596.449333pt;}
.yc6{bottom:603.340267pt;}
.y15e{bottom:608.606667pt;}
.y3a{bottom:609.673333pt;}
.ydb{bottom:610.240000pt;}
.y17{bottom:610.937333pt;}
.y6e{bottom:612.281333pt;}
.yb6{bottom:613.869333pt;}
.y147{bottom:619.734667pt;}
.y15d{bottom:624.606667pt;}
.yc1{bottom:625.482667pt;}
.y39{bottom:625.673333pt;}
.yda{bottom:626.240000pt;}
.y16{bottom:626.937333pt;}
.y6d{bottom:628.281333pt;}
.yc3{bottom:632.391867pt;}
.yb4{bottom:637.114667pt;}
.y15c{bottom:640.606667pt;}
.y38{bottom:641.673333pt;}
.y15{bottom:642.937333pt;}
.y6c{bottom:644.281333pt;}
.yd9{bottom:646.020000pt;}
.ybe{bottom:654.533333pt;}
.y145{bottom:655.744000pt;}
.y13e{bottom:657.023733pt;}
.y37{bottom:657.673333pt;}
.y14{bottom:658.937333pt;}
.y6b{bottom:660.281333pt;}
.yc7{bottom:660.340000pt;}
.y15b{bottom:660.386667pt;}
.yc0{bottom:661.424133pt;}
.yd8{bottom:662.020000pt;}
.y13b{bottom:667.740533pt;}
.y36{bottom:673.673333pt;}
.y13{bottom:674.937333pt;}
.y6a{bottom:676.281333pt;}
.yd7{bottom:678.020000pt;}
.y15a{bottom:680.165333pt;}
.yab{bottom:680.624000pt;}
.y139{bottom:682.456125pt;}
.yb1{bottom:689.449333pt;}
.y35{bottom:689.673333pt;}
.y12{bottom:690.937333pt;}
.y143{bottom:691.733333pt;}
.y138{bottom:692.213197pt;}
.y69{bottom:692.281333pt;}
.yd6{bottom:694.020000pt;}
.y159{bottom:696.165333pt;}
.y137{bottom:701.970269pt;}
.y34{bottom:705.673333pt;}
.y11{bottom:706.937333pt;}
.y68{bottom:708.281333pt;}
.yd5{bottom:710.020000pt;}
.y136{bottom:711.727341pt;}
.y158{bottom:712.165333pt;}
.y135{bottom:721.564389pt;}
.y33{bottom:721.673333pt;}
.yd4{bottom:726.020000pt;}
.yaf{bottom:729.785333pt;}
.y134{bottom:731.321461pt;}
.y157{bottom:731.945333pt;}
.y141{bottom:733.721333pt;}
.yae{bottom:734.120933pt;}
.y10{bottom:734.276000pt;}
.y67{bottom:735.620000pt;}
.y32{bottom:737.673333pt;}
.y133{bottom:741.078533pt;}
.yd3{bottom:742.020000pt;}
.y156{bottom:747.945333pt;}
.y8e{bottom:757.137333pt;}
.yd2{bottom:761.798667pt;}
.y155{bottom:767.725333pt;}
.y66{bottom:773.137333pt;}
.y9{bottom:773.329333pt;}
.yd1{bottom:777.798667pt;}
.y154{bottom:783.725333pt;}
.y65{bottom:789.137333pt;}
.y8{bottom:793.109333pt;}
.yd0{bottom:793.798667pt;}
.yfc{bottom:798.461333pt;}
.y153{bottom:803.504000pt;}
.y64{bottom:805.137333pt;}
.y7{bottom:809.109333pt;}
.ycf{bottom:809.798667pt;}
.yfb{bottom:814.461333pt;}
.y63{bottom:821.137333pt;}
.y152{bottom:823.284000pt;}
.y6{bottom:825.109333pt;}
.yce{bottom:825.798667pt;}
.y62{bottom:837.137333pt;}
.y151{bottom:839.282667pt;}
.y5{bottom:841.109333pt;}
.ycd{bottom:841.798667pt;}
.y11f{bottom:843.548000pt;}
.y113{bottom:843.554667pt;}
.y11b{bottom:850.685867pt;}
.y61{bottom:853.137333pt;}
.y128{bottom:856.273467pt;}
.y4{bottom:857.109333pt;}
.y125{bottom:857.376267pt;}
.ycc{bottom:857.798667pt;}
.y150{bottom:859.062667pt;}
.y60{bottom:869.137333pt;}
.y12f{bottom:871.124000pt;}
.y14f{bottom:875.062667pt;}
.y118{bottom:876.197467pt;}
.ycb{bottom:877.578667pt;}
.y12c{bottom:879.138667pt;}
.y5f{bottom:885.137333pt;}
.y129{bottom:885.754667pt;}
.y57{bottom:885.790667pt;}
.y116{bottom:888.842933pt;}
.yca{bottom:893.578667pt;}
.y126{bottom:893.842667pt;}
.y14e{bottom:894.842667pt;}
.y5e{bottom:901.137333pt;}
.yd{bottom:902.402667pt;}
.yc9{bottom:913.358667pt;}
.y14d{bottom:914.622667pt;}
.y5d{bottom:917.137333pt;}
.yfa{bottom:925.578667pt;}
.yc8{bottom:929.358667pt;}
.yc{bottom:932.941333pt;}
.y5c{bottom:933.137333pt;}
.y14c{bottom:934.402667pt;}
.yf9{bottom:945.358667pt;}
.y5b{bottom:949.137333pt;}
.y14b{bottom:950.402667pt;}
.yb{bottom:955.341333pt;}
.y5a{bottom:965.137333pt;}
.ya{bottom:977.741333pt;}
.y59{bottom:981.137333pt;}
.y58{bottom:1029.936400pt;}
.y2{bottom:1030.024800pt;}
.y1{bottom:1051.983600pt;}
.hf{height:12.225333pt;}
.h13{height:12.226667pt;}
.h10{height:12.232000pt;}
.h24{height:12.709333pt;}
.h25{height:12.716000pt;}
.hc{height:15.577333pt;}
.h1c{height:17.492000pt;}
.hd{height:17.956000pt;}
.h11{height:18.038667pt;}
.h12{height:18.053333pt;}
.h1e{height:20.292000pt;}
.h1b{height:20.380000pt;}
.h14{height:21.320000pt;}
.h20{height:21.321727pt;}
.h23{height:22.212084pt;}
.h18{height:23.739587pt;}
.h15{height:24.109486pt;}
.h19{height:25.803797pt;}
.h6{height:26.133188pt;}
.h17{height:26.205859pt;}
.h9{height:27.172605pt;}
.he{height:27.595996pt;}
.h21{height:28.069702pt;}
.hb{height:29.803581pt;}
.h1d{height:29.842667pt;}
.ha{height:41.413333pt;}
.h8{height:41.496000pt;}
.h1{height:42.117188pt;}
.h3{height:46.796875pt;}
.h27{height:46.797408pt;}
.h26{height:46.802208pt;}
.h7{height:47.239583pt;}
.h2{height:47.526042pt;}
.h5{height:56.687500pt;}
.h4{height:66.536458pt;}
.h16{height:70.885333pt;}
.h1a{height:70.892000pt;}
.h22{height:111.420000pt;}
.h1f{height:186.677333pt;}
.h0{height:1122.666667pt;}
.w3{width:17.725333pt;}
.w2{width:17.729333pt;}
.we{width:29.628000pt;}
.w11{width:29.629333pt;}
.w10{width:40.518667pt;}
.wb{width:45.304000pt;}
.wc{width:45.356000pt;}
.wd{width:45.362667pt;}
.w6{width:45.748000pt;}
.w5{width:45.764000pt;}
.wa{width:50.008000pt;}
.wf{width:50.228000pt;}
.w13{width:59.918667pt;}
.w12{width:62.477333pt;}
.w4{width:74.954667pt;}
.w16{width:93.985333pt;}
.w9{width:101.354667pt;}
.w7{width:101.368000pt;}
.w8{width:101.373333pt;}
.w15{width:108.860000pt;}
.w14{width:123.817333pt;}
.w1{width:793.333333pt;}
.w0{width:793.626667pt;}
.x0{left:0.000000pt;}
.x17{left:4.639200pt;}
.x21{left:5.673333pt;}
.xd{left:7.277200pt;}
.x13{left:8.509467pt;}
.x14{left:10.444967pt;}
.x25{left:11.616476pt;}
.x29{left:13.681000pt;}
.xe{left:16.410437pt;}
.x2f{left:21.030533pt;}
.x37{left:21.993467pt;}
.x38{left:23.512933pt;}
.x36{left:25.752267pt;}
.x24{left:30.382533pt;}
.x27{left:31.852933pt;}
.x32{left:40.888267pt;}
.x11{left:55.599467pt;}
.x1{left:94.488133pt;}
.x1b{left:105.826800pt;}
.x4{left:112.913333pt;}
.x5{left:207.401333pt;}
.x6{left:421.420533pt;}
.xa{left:422.501867pt;}
.x1d{left:425.370800pt;}
.xc{left:427.029333pt;}
.x1c{left:432.756133pt;}
.x1f{left:435.874800pt;}
.x7{left:440.317867pt;}
.x2a{left:445.639733pt;}
.x2e{left:456.858133pt;}
.x12{left:459.472000pt;}
.x16{left:471.006667pt;}
.x22{left:472.621333pt;}
.x26{left:486.075867pt;}
.x23{left:487.619733pt;}
.xb{left:491.629867pt;}
.x33{left:497.745333pt;}
.x34{left:504.704000pt;}
.x1e{left:509.036133pt;}
.x35{left:512.621333pt;}
.x2b{left:522.781333pt;}
.x10{left:526.840000pt;}
.xf{left:546.116933pt;}
.x20{left:557.556000pt;}
.x15{left:575.633333pt;}
.x2c{left:577.859867pt;}
.x18{left:587.162667pt;}
.x2{left:602.092933pt;}
.x2d{left:607.494667pt;}
.x19{left:609.381467pt;}
.x1a{left:612.865333pt;}
.x8{left:617.648533pt;}
.x30{left:631.078667pt;}
.x28{left:650.737333pt;}
.x9{left:653.216000pt;}
.x31{left:661.090133pt;}
.x3{left:687.212000pt;}
}




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