
    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_873404770a478dd98a1c77fa.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.958496;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_f415370665f07769af774ec2.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.192383;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_c6911ebe5dacf00516ffd596.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.722656;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_725a996f9614ece427d0c4e4.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.349000;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_b4be84d07792b02be9b5c7eb.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.946289;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_3e2a125c356ee46fb90a8c4e.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.190918;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_3b5675e0585c28743ef25b3e.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.192383;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_f36f62b99d24541f0a351eab.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.362000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_6ce8d83a749685e148b54db1.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.384000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_b67d86a6a86ac7d1c3b57ffc.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.750000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_7c6862d983d3ac2a72e2e208.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.908203;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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);}
.v5{vertical-align:-18.630066px;}
.v3{vertical-align:-17.594991px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:17.594991px;}
.v2{vertical-align:18.629974px;}
.v1{vertical-align:20.700073px;}
.ls11{letter-spacing:-4.860000px;}
.ls19{letter-spacing:-3.150000px;}
.lsd{letter-spacing:-1.566000px;}
.ls1c{letter-spacing:-1.395000px;}
.ls10{letter-spacing:-1.188000px;}
.ls1d{letter-spacing:-1.026000px;}
.ls18{letter-spacing:-0.720000px;}
.lse{letter-spacing:-0.648000px;}
.lsa{letter-spacing:-0.486000px;}
.ls1b{letter-spacing:-0.450000px;}
.ls17{letter-spacing:-0.315000px;}
.ls1a{letter-spacing:-0.180000px;}
.ls8{letter-spacing:-0.108000px;}
.ls7{letter-spacing:0.000000px;}
.ls4{letter-spacing:0.000008px;}
.ls3{letter-spacing:0.000012px;}
.ls9{letter-spacing:0.000044px;}
.lsb{letter-spacing:0.000049px;}
.lsf{letter-spacing:0.000056px;}
.ls14{letter-spacing:0.000088px;}
.ls2{letter-spacing:0.000104px;}
.lsc{letter-spacing:0.000141px;}
.ls13{letter-spacing:0.005581px;}
.ls5{letter-spacing:0.011429px;}
.ls1{letter-spacing:0.014254px;}
.ls0{letter-spacing:0.014437px;}
.ls16{letter-spacing:0.135000px;}
.ls15{letter-spacing:0.730679px;}
.ls6{letter-spacing:3.000000px;}
.ls12{letter-spacing:5.803433px;}
.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;}
}
.ws3{word-spacing:-15.000000px;}
.ws1c{word-spacing:-13.596000px;}
.ws1d{word-spacing:-12.366000px;}
.ws8f{word-spacing:-12.360000px;}
.ws1{word-spacing:-12.258000px;}
.ws35{word-spacing:-11.718000px;}
.wse6{word-spacing:-11.232000px;}
.wsb9{word-spacing:-10.305000px;}
.wsbb{word-spacing:-10.125000px;}
.wsba{word-spacing:-9.855000px;}
.wsb8{word-spacing:-9.765000px;}
.wsbc{word-spacing:-9.585000px;}
.wsbd{word-spacing:-8.910000px;}
.ws0{word-spacing:-8.580600px;}
.ws2{word-spacing:-7.140000px;}
.ws2b{word-spacing:-5.508000px;}
.ws8b{word-spacing:-4.968000px;}
.ws74{word-spacing:-4.860000px;}
.ws8c{word-spacing:-4.320000px;}
.ws48{word-spacing:-4.104000px;}
.ws9e{word-spacing:-3.888000px;}
.ws77{word-spacing:-3.618000px;}
.ws9c{word-spacing:-3.564000px;}
.ws22{word-spacing:-3.456000px;}
.ws13{word-spacing:-3.402000px;}
.wsa6{word-spacing:-3.132000px;}
.wsae{word-spacing:-3.078000px;}
.ws6e{word-spacing:-2.970000px;}
.wsb4{word-spacing:-2.808000px;}
.ws63{word-spacing:-2.754000px;}
.ws3d{word-spacing:-2.646000px;}
.ws5{word-spacing:-2.640000px;}
.wsce{word-spacing:-2.385000px;}
.ws11{word-spacing:-2.376000px;}
.ws7a{word-spacing:-2.322000px;}
.ws69{word-spacing:-2.268000px;}
.ws9b{word-spacing:-2.160000px;}
.ws10{word-spacing:-2.052000px;}
.ws82{word-spacing:-1.998000px;}
.ws4e{word-spacing:-1.944000px;}
.ws41{word-spacing:-1.890000px;}
.ws76{word-spacing:-1.782000px;}
.ws59{word-spacing:-1.674000px;}
.ws83{word-spacing:-1.620000px;}
.ws45{word-spacing:-1.566000px;}
.ws49{word-spacing:-1.512000px;}
.wsc7{word-spacing:-1.485000px;}
.ws1a{word-spacing:-1.479000px;}
.wse5{word-spacing:-1.458000px;}
.wsc6{word-spacing:-1.440000px;}
.wscc{word-spacing:-1.395000px;}
.ws9a{word-spacing:-1.350000px;}
.wsda{word-spacing:-1.260000px;}
.wsea{word-spacing:-1.242000px;}
.ws6a{word-spacing:-1.188000px;}
.wsdf{word-spacing:-1.170000px;}
.ws6{word-spacing:-1.140000px;}
.ws36{word-spacing:-1.134000px;}
.wsd9{word-spacing:-1.125000px;}
.ws4d{word-spacing:-1.026000px;}
.ws56{word-spacing:-0.972000px;}
.ws1f{word-spacing:-0.918000px;}
.ws47{word-spacing:-0.864000px;}
.wsc1{word-spacing:-0.855000px;}
.ws5b{word-spacing:-0.810000px;}
.wsc2{word-spacing:-0.765000px;}
.ws43{word-spacing:-0.648000px;}
.wsd1{word-spacing:-0.630000px;}
.ws97{word-spacing:-0.594000px;}
.wsd0{word-spacing:-0.585000px;}
.ws9{word-spacing:-0.540000px;}
.ws27{word-spacing:-0.486000px;}
.ws12{word-spacing:-0.432000px;}
.wscb{word-spacing:-0.405000px;}
.ws9f{word-spacing:-0.378000px;}
.wsb0{word-spacing:-0.324000px;}
.ws72{word-spacing:-0.270000px;}
.ws53{word-spacing:-0.216000px;}
.ws71{word-spacing:-0.162000px;}
.wsbe{word-spacing:-0.135000px;}
.wsa8{word-spacing:-0.054000px;}
.wsc4{word-spacing:-0.045000px;}
.ws4{word-spacing:0.000000px;}
.wse2{word-spacing:0.045000px;}
.ws99{word-spacing:0.054000px;}
.ws1b{word-spacing:0.108000px;}
.ws98{word-spacing:0.162000px;}
.wsca{word-spacing:0.180000px;}
.ws54{word-spacing:0.216000px;}
.ws19{word-spacing:0.255000px;}
.ws89{word-spacing:0.270000px;}
.wsc3{word-spacing:0.315000px;}
.ws21{word-spacing:0.324000px;}
.ws17{word-spacing:0.432000px;}
.wsd7{word-spacing:0.450000px;}
.ws34{word-spacing:0.486000px;}
.ws84{word-spacing:0.540000px;}
.ws64{word-spacing:0.594000px;}
.wsc5{word-spacing:0.675000px;}
.wsa3{word-spacing:0.702000px;}
.wsd4{word-spacing:0.720000px;}
.wse1{word-spacing:0.810000px;}
.ws30{word-spacing:0.864000px;}
.ws29{word-spacing:0.918000px;}
.ws2e{word-spacing:0.972000px;}
.wsd8{word-spacing:0.990000px;}
.ws4f{word-spacing:1.026000px;}
.ws4c{word-spacing:1.080000px;}
.wsd5{word-spacing:1.170000px;}
.ws92{word-spacing:1.188000px;}
.ws2d{word-spacing:1.242000px;}
.ws2c{word-spacing:1.296000px;}
.wsdb{word-spacing:1.395000px;}
.ws25{word-spacing:1.404000px;}
.wsdc{word-spacing:1.440000px;}
.ws20{word-spacing:1.458000px;}
.ws16{word-spacing:1.512000px;}
.ws67{word-spacing:1.566000px;}
.ws7e{word-spacing:1.620000px;}
.wse8{word-spacing:1.728000px;}
.ws44{word-spacing:1.782000px;}
.wse{word-spacing:1.836000px;}
.ws5a{word-spacing:1.998000px;}
.ws7d{word-spacing:2.052000px;}
.wsf{word-spacing:2.106000px;}
.ws4b{word-spacing:2.160000px;}
.wsdd{word-spacing:2.250000px;}
.ws79{word-spacing:2.268000px;}
.ws23{word-spacing:2.322000px;}
.wsd6{word-spacing:2.340000px;}
.ws18{word-spacing:2.376000px;}
.ws6f{word-spacing:2.484000px;}
.wsc{word-spacing:2.538000px;}
.wsde{word-spacing:2.565000px;}
.ws78{word-spacing:2.700000px;}
.wscd{word-spacing:2.790000px;}
.ws32{word-spacing:2.808000px;}
.ws6b{word-spacing:2.916000px;}
.ws42{word-spacing:3.024000px;}
.wse9{word-spacing:3.078000px;}
.wse7{word-spacing:3.132000px;}
.wsc9{word-spacing:3.150000px;}
.ws1e{word-spacing:3.186000px;}
.wscf{word-spacing:3.195000px;}
.ws31{word-spacing:3.240000px;}
.ws68{word-spacing:3.294000px;}
.ws2a{word-spacing:3.348000px;}
.wsab{word-spacing:3.402000px;}
.wsa9{word-spacing:3.456000px;}
.wsc8{word-spacing:3.465000px;}
.ws3b{word-spacing:3.510000px;}
.wsd3{word-spacing:3.555000px;}
.ws7c{word-spacing:3.564000px;}
.wsd2{word-spacing:3.600000px;}
.ws58{word-spacing:3.618000px;}
.ws5d{word-spacing:3.672000px;}
.ws7{word-spacing:3.726000px;}
.ws65{word-spacing:3.780000px;}
.ws37{word-spacing:3.834000px;}
.ws9d{word-spacing:3.888000px;}
.ws66{word-spacing:3.942000px;}
.ws24{word-spacing:3.996000px;}
.ws26{word-spacing:4.104000px;}
.ws46{word-spacing:4.266000px;}
.ws88{word-spacing:4.320000px;}
.ws28{word-spacing:4.374000px;}
.wsa{word-spacing:4.428000px;}
.wsd{word-spacing:4.482000px;}
.wsa0{word-spacing:4.536000px;}
.wsac{word-spacing:4.590000px;}
.wsa4{word-spacing:4.644000px;}
.ws2f{word-spacing:4.698000px;}
.ws14{word-spacing:4.752000px;}
.ws8e{word-spacing:4.806000px;}
.wsaa{word-spacing:4.860000px;}
.ws7f{word-spacing:5.130000px;}
.wsaf{word-spacing:5.292000px;}
.ws8{word-spacing:5.346000px;}
.ws40{word-spacing:5.454000px;}
.ws39{word-spacing:5.562000px;}
.ws15{word-spacing:5.670000px;}
.ws5f{word-spacing:5.724000px;}
.wsbf{word-spacing:5.805000px;}
.ws50{word-spacing:5.832000px;}
.wsc0{word-spacing:5.850000px;}
.ws70{word-spacing:5.940000px;}
.wsb1{word-spacing:5.994000px;}
.ws91{word-spacing:6.048000px;}
.ws57{word-spacing:6.102000px;}
.ws6c{word-spacing:6.156000px;}
.wsa2{word-spacing:6.318000px;}
.wsb6{word-spacing:6.372000px;}
.ws94{word-spacing:6.642000px;}
.ws3a{word-spacing:6.696000px;}
.ws3c{word-spacing:6.804000px;}
.ws85{word-spacing:6.966000px;}
.ws38{word-spacing:7.074000px;}
.ws5e{word-spacing:7.128000px;}
.ws33{word-spacing:7.182000px;}
.ws3f{word-spacing:7.236000px;}
.wse3{word-spacing:7.335000px;}
.ws7b{word-spacing:7.722000px;}
.wse0{word-spacing:7.785000px;}
.wsa7{word-spacing:7.830000px;}
.ws96{word-spacing:7.938000px;}
.wsa1{word-spacing:8.100000px;}
.ws75{word-spacing:8.478000px;}
.ws90{word-spacing:8.586000px;}
.wsb{word-spacing:8.694000px;}
.wsad{word-spacing:8.802000px;}
.ws87{word-spacing:8.910000px;}
.ws86{word-spacing:9.180000px;}
.ws55{word-spacing:9.288000px;}
.ws8d{word-spacing:9.342000px;}
.ws4a{word-spacing:9.504000px;}
.ws6d{word-spacing:9.990000px;}
.wsb7{word-spacing:10.260000px;}
.wsb5{word-spacing:10.368000px;}
.ws3e{word-spacing:10.476000px;}
.ws62{word-spacing:10.746000px;}
.ws81{word-spacing:10.800000px;}
.ws52{word-spacing:11.016000px;}
.wsb2{word-spacing:11.178000px;}
.ws51{word-spacing:11.610000px;}
.ws93{word-spacing:11.934000px;}
.ws60{word-spacing:12.096000px;}
.wsb3{word-spacing:12.150000px;}
.ws80{word-spacing:13.014000px;}
.ws95{word-spacing:13.446000px;}
.ws5c{word-spacing:15.714000px;}
.ws8a{word-spacing:17.118000px;}
.wsa5{word-spacing:18.090000px;}
.ws61{word-spacing:18.252000px;}
.ws73{word-spacing:19.116000px;}
.wse4{word-spacing:23.706000px;}
._18{margin-left:-29.025000px;}
._12{margin-left:-17.001788px;}
._13{margin-left:-14.012643px;}
._d{margin-left:-12.632944px;}
._0{margin-left:-10.904400px;}
._f{margin-left:-9.305189px;}
._17{margin-left:-8.266004px;}
._8{margin-left:-7.026245px;}
._a{margin-left:-5.549936px;}
._3{margin-left:-4.505965px;}
._1{margin-left:-3.415835px;}
._2{margin-left:-1.493238px;}
._5{width:1.085676px;}
._6{width:2.225808px;}
._b{width:3.441400px;}
._10{width:4.624966px;}
._14{width:5.952576px;}
._11{width:7.899039px;}
._9{width:9.067588px;}
._e{width:10.183324px;}
._16{width:11.207953px;}
._1a{width:13.137047px;}
._c{width:14.308764px;}
._15{width:15.897740px;}
._4{width:17.548017px;}
._19{width:28.809000px;}
._1b{width:2234.987315px;}
._7{width:2265.748668px;}
.fc3{color:rgb(205,23,25);}
.fc1{color:rgb(0,0,255);}
.fc2{color:rgb(217,228,235);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:35.699999px;}
.fs4{font-size:37.800000px;}
.fs2{font-size:42.000000px;}
.fsa{font-size:45.000000px;}
.fs8{font-size:48.000000px;}
.fs6{font-size:51.000000px;}
.fs3{font-size:54.000000px;}
.fs1{font-size:60.000000px;}
.fs9{font-size:66.000000px;}
.fs7{font-size:108.000000px;}
.fs0{font-size:156.000000px;}
.y0{bottom:0.000000px;}
.y31{bottom:27.634050px;}
.y32{bottom:27.643049px;}
.y142{bottom:63.480148px;}
.y112{bottom:64.980148px;}
.y2f{bottom:68.031452px;}
.y191{bottom:68.794498px;}
.y6e{bottom:71.018852px;}
.y5a{bottom:78.524998px;}
.y111{bottom:79.980148px;}
.y190{bottom:81.394650px;}
.y6d{bottom:86.018852px;}
.y2e{bottom:87.430200px;}
.y95{bottom:89.258852px;}
.yd6{bottom:91.338449px;}
.y59{bottom:93.524998px;}
.y18f{bottom:93.994497px;}
.y110{bottom:94.980148px;}
.y6c{bottom:101.018852px;}
.y94{bottom:104.258846px;}
.yd5{bottom:106.338455px;}
.y18e{bottom:106.594505px;}
.y58{bottom:108.524998px;}
.yb4{bottom:109.478850px;}
.y10f{bottom:109.980148px;}
.y6b{bottom:116.018852px;}
.y18d{bottom:119.194496px;}
.y93{bottom:119.258846px;}
.yd4{bottom:121.338455px;}
.y57{bottom:123.524998px;}
.yb3{bottom:124.478850px;}
.y10e{bottom:124.980148px;}
.y2d{bottom:128.829150px;}
.y6a{bottom:131.018852px;}
.y18c{bottom:131.794498px;}
.y92{bottom:134.258846px;}
.yd3{bottom:136.338455px;}
.y56{bottom:138.524998px;}
.yb2{bottom:139.478850px;}
.y10d{bottom:139.980148px;}
.y2c{bottom:143.829150px;}
.y18b{bottom:144.394650px;}
.y69{bottom:146.018852px;}
.y91{bottom:149.258846px;}
.yd2{bottom:151.338455px;}
.y55{bottom:153.524998px;}
.yb1{bottom:154.478850px;}
.y10c{bottom:154.980148px;}
.y18a{bottom:156.994503px;}
.y141{bottom:157.980148px;}
.y2b{bottom:158.829150px;}
.y68{bottom:161.018852px;}
.y90{bottom:164.258846px;}
.yd1{bottom:166.338455px;}
.y54{bottom:168.524998px;}
.yb0{bottom:169.478850px;}
.y189{bottom:169.594505px;}
.y10b{bottom:169.980148px;}
.y140{bottom:172.980148px;}
.y2a{bottom:173.829150px;}
.y67{bottom:176.018852px;}
.y8f{bottom:179.258846px;}
.yd0{bottom:181.338455px;}
.y188{bottom:182.194496px;}
.y53{bottom:183.524998px;}
.yaf{bottom:184.478850px;}
.y10a{bottom:184.980148px;}
.y13f{bottom:187.980148px;}
.y29{bottom:188.829150px;}
.y66{bottom:191.018852px;}
.y8e{bottom:194.258858px;}
.y187{bottom:194.794510px;}
.ycf{bottom:196.338455px;}
.yae{bottom:199.478850px;}
.y109{bottom:199.980148px;}
.y13e{bottom:202.980148px;}
.y28{bottom:203.829140px;}
.y186{bottom:207.394661px;}
.y8d{bottom:209.258858px;}
.yce{bottom:211.338455px;}
.yad{bottom:214.478850px;}
.y108{bottom:214.980148px;}
.y13d{bottom:217.980148px;}
.y27{bottom:218.829140px;}
.y185{bottom:219.994492px;}
.y65{bottom:221.018852px;}
.ycd{bottom:226.338455px;}
.yac{bottom:229.478850px;}
.y107{bottom:229.980148px;}
.y184{bottom:232.594505px;}
.y13c{bottom:232.980148px;}
.y26{bottom:233.829140px;}
.y64{bottom:236.018852px;}
.y8c{bottom:239.258858px;}
.ycc{bottom:241.338455px;}
.yab{bottom:244.478850px;}
.y106{bottom:244.980148px;}
.y183{bottom:245.194496px;}
.y13b{bottom:247.980148px;}
.y25{bottom:248.829140px;}
.y63{bottom:251.018852px;}
.y8b{bottom:254.258858px;}
.ycb{bottom:256.338455px;}
.y182{bottom:257.794510px;}
.yaa{bottom:259.478850px;}
.y105{bottom:259.980148px;}
.y13a{bottom:262.980148px;}
.y24{bottom:263.829140px;}
.y62{bottom:266.018852px;}
.y8a{bottom:269.258858px;}
.y181{bottom:270.394661px;}
.yca{bottom:271.338455px;}
.ya9{bottom:274.478850px;}
.y104{bottom:274.980148px;}
.y139{bottom:277.980148px;}
.y23{bottom:278.829140px;}
.y61{bottom:281.018852px;}
.y180{bottom:282.994492px;}
.y89{bottom:284.258858px;}
.yc9{bottom:286.338455px;}
.ya8{bottom:289.478850px;}
.y103{bottom:289.980148px;}
.y138{bottom:292.980148px;}
.y22{bottom:293.829140px;}
.y17f{bottom:295.594505px;}
.y60{bottom:296.018852px;}
.y88{bottom:299.258858px;}
.yc8{bottom:301.338455px;}
.ya7{bottom:304.478850px;}
.y102{bottom:304.980148px;}
.y17e{bottom:308.194496px;}
.y21{bottom:308.829140px;}
.y5f{bottom:311.018852px;}
.y87{bottom:314.258858px;}
.yc7{bottom:316.338455px;}
.ya6{bottom:319.478850px;}
.y101{bottom:319.980148px;}
.y17d{bottom:320.794510px;}
.y137{bottom:322.980148px;}
.y20{bottom:323.829140px;}
.y5e{bottom:326.018852px;}
.y86{bottom:329.258858px;}
.yc6{bottom:331.338455px;}
.y17c{bottom:333.394500px;}
.y100{bottom:334.980148px;}
.y136{bottom:337.980148px;}
.y1f{bottom:338.829140px;}
.y5d{bottom:341.018852px;}
.y85{bottom:344.258858px;}
.y17b{bottom:345.994492px;}
.yc5{bottom:346.338455px;}
.ya5{bottom:349.478850px;}
.yff{bottom:349.980148px;}
.y135{bottom:352.980148px;}
.y1e{bottom:353.829140px;}
.y17a{bottom:358.594505px;}
.y84{bottom:359.258858px;}
.yc4{bottom:361.338455px;}
.ya4{bottom:364.478850px;}
.yfe{bottom:364.980148px;}
.y134{bottom:367.980148px;}
.y1d{bottom:368.829140px;}
.y179{bottom:371.194496px;}
.y83{bottom:374.258858px;}
.yc3{bottom:376.338455px;}
.ya3{bottom:379.478850px;}
.yfd{bottom:379.980148px;}
.y133{bottom:382.980148px;}
.y178{bottom:383.794510px;}
.y1c{bottom:383.829140px;}
.y82{bottom:389.258835px;}
.yc2{bottom:391.338455px;}
.ya2{bottom:394.478850px;}
.yfc{bottom:394.980148px;}
.y177{bottom:396.394500px;}
.y132{bottom:397.980148px;}
.y1b{bottom:398.829163px;}
.y76{bottom:398.880157px;}
.y81{bottom:404.258835px;}
.y176{bottom:408.994492px;}
.ya1{bottom:409.478850px;}
.yfb{bottom:409.980148px;}
.y131{bottom:412.980148px;}
.y75{bottom:413.880157px;}
.y80{bottom:419.258835px;}
.y175{bottom:421.594482px;}
.ya0{bottom:424.478850px;}
.yfa{bottom:424.980148px;}
.y130{bottom:427.980148px;}
.y74{bottom:428.880157px;}
.y1a{bottom:431.829163px;}
.y174{bottom:434.194519px;}
.y7f{bottom:434.258835px;}
.y9f{bottom:439.478850px;}
.yf9{bottom:439.980148px;}
.y12f{bottom:442.980148px;}
.y73{bottom:443.880157px;}
.y173{bottom:446.794510px;}
.y7e{bottom:449.258835px;}
.ye1{bottom:450.540161px;}
.y9e{bottom:454.478850px;}
.yf8{bottom:454.980148px;}
.y12e{bottom:457.980148px;}
.y72{bottom:458.880157px;}
.y172{bottom:459.394500px;}
.y19{bottom:461.085022px;}
.y7d{bottom:464.258835px;}
.ye0{bottom:465.540161px;}
.yf7{bottom:469.980148px;}
.y171{bottom:471.994492px;}
.y12d{bottom:472.980148px;}
.y71{bottom:473.880157px;}
.y18{bottom:477.585022px;}
.ydf{bottom:480.540161px;}
.y170{bottom:484.594482px;}
.yf6{bottom:484.980148px;}
.y70{bottom:488.880157px;}
.y17{bottom:494.085022px;}
.y7c{bottom:494.258835px;}
.yde{bottom:495.540161px;}
.y16f{bottom:497.194519px;}
.y1b0{bottom:497.618683px;}
.yf5{bottom:499.980148px;}
.y12c{bottom:502.980148px;}
.y6f{bottom:503.880157px;}
.y7b{bottom:509.258835px;}
.y16e{bottom:509.794510px;}
.ydd{bottom:510.540161px;}
.y16{bottom:510.585022px;}
.yc1{bottom:512.340134px;}
.yf4{bottom:514.980148px;}
.y12b{bottom:517.980148px;}
.y16d{bottom:522.394500px;}
.y7a{bottom:524.258835px;}
.ydc{bottom:525.540161px;}
.y15{bottom:527.085022px;}
.yc0{bottom:527.340134px;}
.y1af{bottom:528.818848px;}
.yf3{bottom:529.980148px;}
.y12a{bottom:532.980148px;}
.y16c{bottom:534.994492px;}
.y79{bottom:539.258835px;}
.ydb{bottom:540.540161px;}
.ybf{bottom:542.340134px;}
.y14{bottom:543.585022px;}
.y1ae{bottom:543.818848px;}
.yf2{bottom:544.980148px;}
.y16b{bottom:547.594482px;}
.y129{bottom:547.980148px;}
.y78{bottom:554.258835px;}
.yda{bottom:555.540161px;}
.y5b{bottom:556.125000px;}
.ybe{bottom:557.340134px;}
.y1ad{bottom:558.818848px;}
.yf1{bottom:559.980148px;}
.y13{bottom:560.085022px;}
.y16a{bottom:560.194519px;}
.y128{bottom:562.980148px;}
.y77{bottom:569.258835px;}
.yd9{bottom:570.540161px;}
.ybd{bottom:572.340134px;}
.y169{bottom:572.794510px;}
.y1ac{bottom:573.818848px;}
.yf0{bottom:574.980148px;}
.y12{bottom:576.585022px;}
.y127{bottom:577.980148px;}
.y168{bottom:585.394500px;}
.yd8{bottom:585.540161px;}
.ybc{bottom:587.340134px;}
.y1ab{bottom:588.818848px;}
.yef{bottom:589.980148px;}
.y126{bottom:592.980148px;}
.y11{bottom:593.085022px;}
.y167{bottom:597.994492px;}
.yd7{bottom:600.540161px;}
.ybb{bottom:602.340134px;}
.y1aa{bottom:603.818848px;}
.y52{bottom:604.980148px;}
.y125{bottom:607.980148px;}
.y10{bottom:609.585022px;}
.y166{bottom:610.594482px;}
.yba{bottom:617.340134px;}
.y1a9{bottom:618.818848px;}
.y51{bottom:619.980148px;}
.y124{bottom:622.980148px;}
.y165{bottom:623.194519px;}
.yf{bottom:626.085022px;}
.y9d{bottom:627.119980px;}
.yb9{bottom:632.340134px;}
.y1a8{bottom:633.818848px;}
.y50{bottom:634.980148px;}
.y164{bottom:635.794510px;}
.y123{bottom:637.980148px;}
.y9c{bottom:642.119980px;}
.ye{bottom:642.585022px;}
.yb8{bottom:647.340134px;}
.y163{bottom:648.394500px;}
.yee{bottom:649.980148px;}
.y121{bottom:652.980148px;}
.y9b{bottom:657.119980px;}
.y1a7{bottom:657.818848px;}
.yd{bottom:659.085022px;}
.y162{bottom:660.994492px;}
.yb7{bottom:662.340134px;}
.y4f{bottom:664.980148px;}
.y120{bottom:667.980148px;}
.y9a{bottom:672.119980px;}
.y1a6{bottom:672.818848px;}
.y161{bottom:673.594482px;}
.yc{bottom:675.585022px;}
.yb6{bottom:677.340134px;}
.y4e{bottom:679.980148px;}
.y11f{bottom:682.980148px;}
.y160{bottom:686.194519px;}
.y99{bottom:687.119980px;}
.yb{bottom:692.085022px;}
.yb5{bottom:692.340134px;}
.y4d{bottom:694.980148px;}
.y1a5{bottom:695.387238px;}
.y11e{bottom:697.980148px;}
.y15f{bottom:698.794510px;}
.y98{bottom:702.119980px;}
.ya{bottom:708.585022px;}
.y4c{bottom:709.980148px;}
.y15e{bottom:711.394500px;}
.y11d{bottom:712.980148px;}
.y97{bottom:717.119980px;}
.y1a4{bottom:717.955811px;}
.y15d{bottom:723.994492px;}
.y4b{bottom:724.980148px;}
.y9{bottom:725.085022px;}
.y11c{bottom:727.980148px;}
.y96{bottom:732.119980px;}
.y15c{bottom:736.594482px;}
.y4a{bottom:739.980148px;}
.y1a3{bottom:740.524338px;}
.y8{bottom:741.585022px;}
.y11b{bottom:742.980148px;}
.y15b{bottom:749.194519px;}
.y49{bottom:754.980148px;}
.y1a2{bottom:755.524338px;}
.y11a{bottom:757.980148px;}
.y7{bottom:758.085022px;}
.y15a{bottom:761.794510px;}
.y48{bottom:769.980194px;}
.y1a1{bottom:770.524384px;}
.y119{bottom:772.980194px;}
.y159{bottom:774.394684px;}
.y6{bottom:774.585022px;}
.y47{bottom:784.980194px;}
.y158{bottom:786.994537px;}
.y118{bottom:787.980194px;}
.y5{bottom:791.085022px;}
.y157{bottom:799.594482px;}
.y46{bottom:799.980194px;}
.y117{bottom:802.980194px;}
.y1a0{bottom:803.524384px;}
.y156{bottom:812.194519px;}
.y45{bottom:814.980194px;}
.y122{bottom:817.980194px;}
.y19f{bottom:818.524384px;}
.y4{bottom:820.978821px;}
.y155{bottom:824.794464px;}
.y44{bottom:829.980194px;}
.y116{bottom:832.980194px;}
.y154{bottom:837.394684px;}
.y43{bottom:844.980194px;}
.y115{bottom:847.980194px;}
.y153{bottom:849.994537px;}
.y19e{bottom:851.524384px;}
.y3{bottom:853.945679px;}
.y42{bottom:859.980194px;}
.y152{bottom:862.594482px;}
.y114{bottom:862.980194px;}
.yed{bottom:874.980194px;}
.y151{bottom:875.194519px;}
.y113{bottom:877.980194px;}
.y19d{bottom:884.524384px;}
.y150{bottom:887.794464px;}
.yec{bottom:889.980194px;}
.y41{bottom:892.980194px;}
.y2{bottom:898.945679px;}
.y19c{bottom:899.524384px;}
.y14f{bottom:900.394684px;}
.yeb{bottom:904.980194px;}
.y40{bottom:907.980194px;}
.y14e{bottom:912.994537px;}
.yea{bottom:919.980194px;}
.y3f{bottom:922.980194px;}
.y14d{bottom:925.594482px;}
.y19b{bottom:932.524384px;}
.ye9{bottom:934.980194px;}
.y3e{bottom:937.980194px;}
.y14c{bottom:938.194519px;}
.y1{bottom:943.945679px;}
.y19a{bottom:947.524384px;}
.ye8{bottom:949.980194px;}
.y14b{bottom:950.794464px;}
.y30{bottom:952.050934px;}
.y3d{bottom:952.980194px;}
.y199{bottom:962.524384px;}
.y14a{bottom:963.394684px;}
.ye7{bottom:964.980194px;}
.y3c{bottom:967.980194px;}
.y149{bottom:975.994537px;}
.y198{bottom:977.524384px;}
.ye6{bottom:979.980194px;}
.y3b{bottom:982.980194px;}
.y148{bottom:988.594482px;}
.y197{bottom:992.524384px;}
.ye5{bottom:994.980194px;}
.y3a{bottom:997.980194px;}
.y147{bottom:1001.194519px;}
.ye4{bottom:1009.980194px;}
.y39{bottom:1012.980194px;}
.y146{bottom:1013.794464px;}
.ye3{bottom:1024.980194px;}
.y196{bottom:1025.524384px;}
.y145{bottom:1026.394684px;}
.y38{bottom:1027.980194px;}
.y144{bottom:1038.994537px;}
.ye2{bottom:1039.980194px;}
.y195{bottom:1040.524384px;}
.y37{bottom:1042.980194px;}
.y143{bottom:1051.594482px;}
.y194{bottom:1055.524384px;}
.y36{bottom:1057.980194px;}
.y193{bottom:1070.524384px;}
.y35{bottom:1072.980194px;}
.y192{bottom:1085.524384px;}
.y34{bottom:1087.980194px;}
.y33{bottom:1140.708343px;}
.y5c{bottom:1140.800079px;}
.h9{height:30.939677px;}
.hd{height:33.937500px;}
.h16{height:35.411133px;}
.h4{height:38.838867px;}
.h11{height:43.154297px;}
.h18{height:44.505000px;}
.h19{height:45.090000px;}
.hc{height:45.679688px;}
.h17{height:46.080000px;}
.h10{height:47.469727px;}
.ha{height:48.534668px;}
.h5{height:53.406000px;}
.h12{height:54.108000px;}
.h13{height:55.296000px;}
.hf{height:56.013350px;}
.h14{height:56.014083px;}
.h6{height:56.014174px;}
.h8{height:56.014179px;}
.h15{height:56.014220px;}
.h7{height:56.014266px;}
.he{height:57.099609px;}
.h3{height:57.128906px;}
.hb{height:102.832031px;}
.h2{height:112.201172px;}
.h0{height:1173.543000px;}
.h1{height:1173.750000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x4{left:61.653448px;}
.x8{left:108.379795px;}
.x3{left:140.352448px;}
.x7{left:153.199802px;}
.x9{left:154.279804px;}
.x1{left:233.858253px;}
.x2{left:251.858253px;}
.xa{left:252.992249px;}
.x5{left:338.775604px;}
.x6{left:585.853363px;}
@media print{
.v5{vertical-align:-16.560059pt;}
.v3{vertical-align:-15.639992pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:15.639992pt;}
.v2{vertical-align:16.559977pt;}
.v1{vertical-align:18.400065pt;}
.ls11{letter-spacing:-4.320000pt;}
.ls19{letter-spacing:-2.800000pt;}
.lsd{letter-spacing:-1.392000pt;}
.ls1c{letter-spacing:-1.240000pt;}
.ls10{letter-spacing:-1.056000pt;}
.ls1d{letter-spacing:-0.912000pt;}
.ls18{letter-spacing:-0.640000pt;}
.lse{letter-spacing:-0.576000pt;}
.lsa{letter-spacing:-0.432000pt;}
.ls1b{letter-spacing:-0.400000pt;}
.ls17{letter-spacing:-0.280000pt;}
.ls1a{letter-spacing:-0.160000pt;}
.ls8{letter-spacing:-0.096000pt;}
.ls7{letter-spacing:0.000000pt;}
.ls4{letter-spacing:0.000007pt;}
.ls3{letter-spacing:0.000011pt;}
.ls9{letter-spacing:0.000039pt;}
.lsb{letter-spacing:0.000044pt;}
.lsf{letter-spacing:0.000049pt;}
.ls14{letter-spacing:0.000078pt;}
.ls2{letter-spacing:0.000092pt;}
.lsc{letter-spacing:0.000125pt;}
.ls13{letter-spacing:0.004961pt;}
.ls5{letter-spacing:0.010159pt;}
.ls1{letter-spacing:0.012671pt;}
.ls0{letter-spacing:0.012833pt;}
.ls16{letter-spacing:0.120000pt;}
.ls15{letter-spacing:0.649492pt;}
.ls6{letter-spacing:2.666667pt;}
.ls12{letter-spacing:5.158607pt;}
.ws3{word-spacing:-13.333333pt;}
.ws1c{word-spacing:-12.085333pt;}
.ws1d{word-spacing:-10.992000pt;}
.ws8f{word-spacing:-10.986667pt;}
.ws1{word-spacing:-10.896000pt;}
.ws35{word-spacing:-10.416000pt;}
.wse6{word-spacing:-9.984000pt;}
.wsb9{word-spacing:-9.160000pt;}
.wsbb{word-spacing:-9.000000pt;}
.wsba{word-spacing:-8.760000pt;}
.wsb8{word-spacing:-8.680000pt;}
.wsbc{word-spacing:-8.520000pt;}
.wsbd{word-spacing:-7.920000pt;}
.ws0{word-spacing:-7.627200pt;}
.ws2{word-spacing:-6.346666pt;}
.ws2b{word-spacing:-4.896000pt;}
.ws8b{word-spacing:-4.416000pt;}
.ws74{word-spacing:-4.320000pt;}
.ws8c{word-spacing:-3.840000pt;}
.ws48{word-spacing:-3.648000pt;}
.ws9e{word-spacing:-3.456000pt;}
.ws77{word-spacing:-3.216000pt;}
.ws9c{word-spacing:-3.168000pt;}
.ws22{word-spacing:-3.072000pt;}
.ws13{word-spacing:-3.024000pt;}
.wsa6{word-spacing:-2.784000pt;}
.wsae{word-spacing:-2.736000pt;}
.ws6e{word-spacing:-2.640000pt;}
.wsb4{word-spacing:-2.496000pt;}
.ws63{word-spacing:-2.448000pt;}
.ws3d{word-spacing:-2.352000pt;}
.ws5{word-spacing:-2.346667pt;}
.wsce{word-spacing:-2.120000pt;}
.ws11{word-spacing:-2.112000pt;}
.ws7a{word-spacing:-2.064000pt;}
.ws69{word-spacing:-2.016000pt;}
.ws9b{word-spacing:-1.920000pt;}
.ws10{word-spacing:-1.824000pt;}
.ws82{word-spacing:-1.776000pt;}
.ws4e{word-spacing:-1.728000pt;}
.ws41{word-spacing:-1.680000pt;}
.ws76{word-spacing:-1.584000pt;}
.ws59{word-spacing:-1.488000pt;}
.ws83{word-spacing:-1.440000pt;}
.ws45{word-spacing:-1.392000pt;}
.ws49{word-spacing:-1.344000pt;}
.wsc7{word-spacing:-1.320000pt;}
.ws1a{word-spacing:-1.314667pt;}
.wse5{word-spacing:-1.296000pt;}
.wsc6{word-spacing:-1.280000pt;}
.wscc{word-spacing:-1.240000pt;}
.ws9a{word-spacing:-1.200000pt;}
.wsda{word-spacing:-1.120000pt;}
.wsea{word-spacing:-1.104000pt;}
.ws6a{word-spacing:-1.056000pt;}
.wsdf{word-spacing:-1.040000pt;}
.ws6{word-spacing:-1.013333pt;}
.ws36{word-spacing:-1.008000pt;}
.wsd9{word-spacing:-1.000000pt;}
.ws4d{word-spacing:-0.912000pt;}
.ws56{word-spacing:-0.864000pt;}
.ws1f{word-spacing:-0.816000pt;}
.ws47{word-spacing:-0.768000pt;}
.wsc1{word-spacing:-0.760000pt;}
.ws5b{word-spacing:-0.720000pt;}
.wsc2{word-spacing:-0.680000pt;}
.ws43{word-spacing:-0.576000pt;}
.wsd1{word-spacing:-0.560000pt;}
.ws97{word-spacing:-0.528000pt;}
.wsd0{word-spacing:-0.520000pt;}
.ws9{word-spacing:-0.480000pt;}
.ws27{word-spacing:-0.432000pt;}
.ws12{word-spacing:-0.384000pt;}
.wscb{word-spacing:-0.360000pt;}
.ws9f{word-spacing:-0.336000pt;}
.wsb0{word-spacing:-0.288000pt;}
.ws72{word-spacing:-0.240000pt;}
.ws53{word-spacing:-0.192000pt;}
.ws71{word-spacing:-0.144000pt;}
.wsbe{word-spacing:-0.120000pt;}
.wsa8{word-spacing:-0.048000pt;}
.wsc4{word-spacing:-0.040000pt;}
.ws4{word-spacing:0.000000pt;}
.wse2{word-spacing:0.040000pt;}
.ws99{word-spacing:0.048000pt;}
.ws1b{word-spacing:0.096000pt;}
.ws98{word-spacing:0.144000pt;}
.wsca{word-spacing:0.160000pt;}
.ws54{word-spacing:0.192000pt;}
.ws19{word-spacing:0.226667pt;}
.ws89{word-spacing:0.240000pt;}
.wsc3{word-spacing:0.280000pt;}
.ws21{word-spacing:0.288000pt;}
.ws17{word-spacing:0.384000pt;}
.wsd7{word-spacing:0.400000pt;}
.ws34{word-spacing:0.432000pt;}
.ws84{word-spacing:0.480000pt;}
.ws64{word-spacing:0.528000pt;}
.wsc5{word-spacing:0.600000pt;}
.wsa3{word-spacing:0.624000pt;}
.wsd4{word-spacing:0.640000pt;}
.wse1{word-spacing:0.720000pt;}
.ws30{word-spacing:0.768000pt;}
.ws29{word-spacing:0.816000pt;}
.ws2e{word-spacing:0.864000pt;}
.wsd8{word-spacing:0.880000pt;}
.ws4f{word-spacing:0.912000pt;}
.ws4c{word-spacing:0.960000pt;}
.wsd5{word-spacing:1.040000pt;}
.ws92{word-spacing:1.056000pt;}
.ws2d{word-spacing:1.104000pt;}
.ws2c{word-spacing:1.152000pt;}
.wsdb{word-spacing:1.240000pt;}
.ws25{word-spacing:1.248000pt;}
.wsdc{word-spacing:1.280000pt;}
.ws20{word-spacing:1.296000pt;}
.ws16{word-spacing:1.344000pt;}
.ws67{word-spacing:1.392000pt;}
.ws7e{word-spacing:1.440000pt;}
.wse8{word-spacing:1.536000pt;}
.ws44{word-spacing:1.584000pt;}
.wse{word-spacing:1.632000pt;}
.ws5a{word-spacing:1.776000pt;}
.ws7d{word-spacing:1.824000pt;}
.wsf{word-spacing:1.872000pt;}
.ws4b{word-spacing:1.920000pt;}
.wsdd{word-spacing:2.000000pt;}
.ws79{word-spacing:2.016000pt;}
.ws23{word-spacing:2.064000pt;}
.wsd6{word-spacing:2.080000pt;}
.ws18{word-spacing:2.112000pt;}
.ws6f{word-spacing:2.208000pt;}
.wsc{word-spacing:2.256000pt;}
.wsde{word-spacing:2.280000pt;}
.ws78{word-spacing:2.400000pt;}
.wscd{word-spacing:2.480000pt;}
.ws32{word-spacing:2.496000pt;}
.ws6b{word-spacing:2.592000pt;}
.ws42{word-spacing:2.688000pt;}
.wse9{word-spacing:2.736000pt;}
.wse7{word-spacing:2.784000pt;}
.wsc9{word-spacing:2.800000pt;}
.ws1e{word-spacing:2.832000pt;}
.wscf{word-spacing:2.840000pt;}
.ws31{word-spacing:2.880000pt;}
.ws68{word-spacing:2.928000pt;}
.ws2a{word-spacing:2.976000pt;}
.wsab{word-spacing:3.024000pt;}
.wsa9{word-spacing:3.072000pt;}
.wsc8{word-spacing:3.080000pt;}
.ws3b{word-spacing:3.120000pt;}
.wsd3{word-spacing:3.160000pt;}
.ws7c{word-spacing:3.168000pt;}
.wsd2{word-spacing:3.200000pt;}
.ws58{word-spacing:3.216000pt;}
.ws5d{word-spacing:3.264000pt;}
.ws7{word-spacing:3.312000pt;}
.ws65{word-spacing:3.360000pt;}
.ws37{word-spacing:3.408000pt;}
.ws9d{word-spacing:3.456000pt;}
.ws66{word-spacing:3.504000pt;}
.ws24{word-spacing:3.552000pt;}
.ws26{word-spacing:3.648000pt;}
.ws46{word-spacing:3.792000pt;}
.ws88{word-spacing:3.840000pt;}
.ws28{word-spacing:3.888000pt;}
.wsa{word-spacing:3.936000pt;}
.wsd{word-spacing:3.984000pt;}
.wsa0{word-spacing:4.032000pt;}
.wsac{word-spacing:4.080000pt;}
.wsa4{word-spacing:4.128000pt;}
.ws2f{word-spacing:4.176000pt;}
.ws14{word-spacing:4.224000pt;}
.ws8e{word-spacing:4.272000pt;}
.wsaa{word-spacing:4.320000pt;}
.ws7f{word-spacing:4.560000pt;}
.wsaf{word-spacing:4.704000pt;}
.ws8{word-spacing:4.752000pt;}
.ws40{word-spacing:4.848000pt;}
.ws39{word-spacing:4.944000pt;}
.ws15{word-spacing:5.040000pt;}
.ws5f{word-spacing:5.088000pt;}
.wsbf{word-spacing:5.160000pt;}
.ws50{word-spacing:5.184000pt;}
.wsc0{word-spacing:5.200000pt;}
.ws70{word-spacing:5.280000pt;}
.wsb1{word-spacing:5.328000pt;}
.ws91{word-spacing:5.376000pt;}
.ws57{word-spacing:5.424000pt;}
.ws6c{word-spacing:5.472000pt;}
.wsa2{word-spacing:5.616000pt;}
.wsb6{word-spacing:5.664000pt;}
.ws94{word-spacing:5.904000pt;}
.ws3a{word-spacing:5.952000pt;}
.ws3c{word-spacing:6.048000pt;}
.ws85{word-spacing:6.192000pt;}
.ws38{word-spacing:6.288000pt;}
.ws5e{word-spacing:6.336000pt;}
.ws33{word-spacing:6.384000pt;}
.ws3f{word-spacing:6.432000pt;}
.wse3{word-spacing:6.520000pt;}
.ws7b{word-spacing:6.864000pt;}
.wse0{word-spacing:6.920000pt;}
.wsa7{word-spacing:6.960000pt;}
.ws96{word-spacing:7.056000pt;}
.wsa1{word-spacing:7.200000pt;}
.ws75{word-spacing:7.536000pt;}
.ws90{word-spacing:7.632000pt;}
.wsb{word-spacing:7.728000pt;}
.wsad{word-spacing:7.824000pt;}
.ws87{word-spacing:7.920000pt;}
.ws86{word-spacing:8.160000pt;}
.ws55{word-spacing:8.256000pt;}
.ws8d{word-spacing:8.304000pt;}
.ws4a{word-spacing:8.448000pt;}
.ws6d{word-spacing:8.880000pt;}
.wsb7{word-spacing:9.120000pt;}
.wsb5{word-spacing:9.216000pt;}
.ws3e{word-spacing:9.312000pt;}
.ws62{word-spacing:9.552000pt;}
.ws81{word-spacing:9.600000pt;}
.ws52{word-spacing:9.792000pt;}
.wsb2{word-spacing:9.936000pt;}
.ws51{word-spacing:10.320000pt;}
.ws93{word-spacing:10.608000pt;}
.ws60{word-spacing:10.752000pt;}
.wsb3{word-spacing:10.800000pt;}
.ws80{word-spacing:11.568000pt;}
.ws95{word-spacing:11.952000pt;}
.ws5c{word-spacing:13.968000pt;}
.ws8a{word-spacing:15.216000pt;}
.wsa5{word-spacing:16.080000pt;}
.ws61{word-spacing:16.224000pt;}
.ws73{word-spacing:16.992000pt;}
.wse4{word-spacing:21.072000pt;}
._18{margin-left:-25.800000pt;}
._12{margin-left:-15.112701pt;}
._13{margin-left:-12.455682pt;}
._d{margin-left:-11.229283pt;}
._0{margin-left:-9.692800pt;}
._f{margin-left:-8.271279pt;}
._17{margin-left:-7.347560pt;}
._8{margin-left:-6.245552pt;}
._a{margin-left:-4.933277pt;}
._3{margin-left:-4.005302pt;}
._1{margin-left:-3.036298pt;}
._2{margin-left:-1.327323pt;}
._5{width:0.965046pt;}
._6{width:1.978496pt;}
._b{width:3.059022pt;}
._10{width:4.111081pt;}
._14{width:5.291179pt;}
._11{width:7.021368pt;}
._9{width:8.060078pt;}
._e{width:9.051844pt;}
._16{width:9.962625pt;}
._1a{width:11.677375pt;}
._c{width:12.718902pt;}
._15{width:14.131325pt;}
._4{width:15.598238pt;}
._19{width:25.608000pt;}
._1b{width:1986.655391pt;}
._7{width:2013.998816pt;}
.fs5{font-size:31.733332pt;}
.fs4{font-size:33.600000pt;}
.fs2{font-size:37.333333pt;}
.fsa{font-size:40.000000pt;}
.fs8{font-size:42.666667pt;}
.fs6{font-size:45.333333pt;}
.fs3{font-size:48.000000pt;}
.fs1{font-size:53.333333pt;}
.fs9{font-size:58.666667pt;}
.fs7{font-size:96.000000pt;}
.fs0{font-size:138.666667pt;}
.y0{bottom:0.000000pt;}
.y31{bottom:24.563600pt;}
.y32{bottom:24.571599pt;}
.y142{bottom:56.426799pt;}
.y112{bottom:57.760132pt;}
.y2f{bottom:60.472402pt;}
.y191{bottom:61.150665pt;}
.y6e{bottom:63.127869pt;}
.y5a{bottom:69.799998pt;}
.y111{bottom:71.093465pt;}
.y190{bottom:72.350800pt;}
.y6d{bottom:76.461202pt;}
.y2e{bottom:77.715733pt;}
.y95{bottom:79.341202pt;}
.yd6{bottom:81.189733pt;}
.y59{bottom:83.133331pt;}
.y18f{bottom:83.550664pt;}
.y110{bottom:84.426799pt;}
.y6c{bottom:89.794535pt;}
.y94{bottom:92.674530pt;}
.yd5{bottom:94.523071pt;}
.y18e{bottom:94.750671pt;}
.y58{bottom:96.466665pt;}
.yb4{bottom:97.314533pt;}
.y10f{bottom:97.760132pt;}
.y6b{bottom:103.127869pt;}
.y18d{bottom:105.950663pt;}
.y93{bottom:106.007863pt;}
.yd4{bottom:107.856405pt;}
.y57{bottom:109.799998pt;}
.yb3{bottom:110.647867pt;}
.y10e{bottom:111.093465pt;}
.y2d{bottom:114.514800pt;}
.y6a{bottom:116.461202pt;}
.y18c{bottom:117.150665pt;}
.y92{bottom:119.341197pt;}
.yd3{bottom:121.189738pt;}
.y56{bottom:123.133331pt;}
.yb2{bottom:123.981200pt;}
.y10d{bottom:124.426799pt;}
.y2c{bottom:127.848133pt;}
.y18b{bottom:128.350800pt;}
.y69{bottom:129.794535pt;}
.y91{bottom:132.674530pt;}
.yd2{bottom:134.523071pt;}
.y55{bottom:136.466665pt;}
.yb1{bottom:137.314533pt;}
.y10c{bottom:137.760132pt;}
.y18a{bottom:139.550669pt;}
.y141{bottom:140.426799pt;}
.y2b{bottom:141.181467pt;}
.y68{bottom:143.127869pt;}
.y90{bottom:146.007863pt;}
.yd1{bottom:147.856405pt;}
.y54{bottom:149.799998pt;}
.yb0{bottom:150.647867pt;}
.y189{bottom:150.750671pt;}
.y10b{bottom:151.093465pt;}
.y140{bottom:153.760132pt;}
.y2a{bottom:154.514800pt;}
.y67{bottom:156.461202pt;}
.y8f{bottom:159.341197pt;}
.yd0{bottom:161.189738pt;}
.y188{bottom:161.950663pt;}
.y53{bottom:163.133331pt;}
.yaf{bottom:163.981200pt;}
.y10a{bottom:164.426799pt;}
.y13f{bottom:167.093465pt;}
.y29{bottom:167.848133pt;}
.y66{bottom:169.794535pt;}
.y8e{bottom:172.674540pt;}
.y187{bottom:173.150675pt;}
.ycf{bottom:174.523071pt;}
.yae{bottom:177.314533pt;}
.y109{bottom:177.760132pt;}
.y13e{bottom:180.426799pt;}
.y28{bottom:181.181458pt;}
.y186{bottom:184.350810pt;}
.y8d{bottom:186.007874pt;}
.yce{bottom:187.856405pt;}
.yad{bottom:190.647867pt;}
.y108{bottom:191.093465pt;}
.y13d{bottom:193.760132pt;}
.y27{bottom:194.514791pt;}
.y185{bottom:195.550659pt;}
.y65{bottom:196.461202pt;}
.ycd{bottom:201.189738pt;}
.yac{bottom:203.981200pt;}
.y107{bottom:204.426799pt;}
.y184{bottom:206.750671pt;}
.y13c{bottom:207.093465pt;}
.y26{bottom:207.848124pt;}
.y64{bottom:209.794535pt;}
.y8c{bottom:212.674540pt;}
.ycc{bottom:214.523071pt;}
.yab{bottom:217.314533pt;}
.y106{bottom:217.760132pt;}
.y183{bottom:217.950663pt;}
.y13b{bottom:220.426799pt;}
.y25{bottom:221.181458pt;}
.y63{bottom:223.127869pt;}
.y8b{bottom:226.007874pt;}
.ycb{bottom:227.856405pt;}
.y182{bottom:229.150675pt;}
.yaa{bottom:230.647867pt;}
.y105{bottom:231.093465pt;}
.y13a{bottom:233.760132pt;}
.y24{bottom:234.514791pt;}
.y62{bottom:236.461202pt;}
.y8a{bottom:239.341207pt;}
.y181{bottom:240.350810pt;}
.yca{bottom:241.189738pt;}
.ya9{bottom:243.981200pt;}
.y104{bottom:244.426799pt;}
.y139{bottom:247.093465pt;}
.y23{bottom:247.848124pt;}
.y61{bottom:249.794535pt;}
.y180{bottom:251.550659pt;}
.y89{bottom:252.674540pt;}
.yc9{bottom:254.523071pt;}
.ya8{bottom:257.314533pt;}
.y103{bottom:257.760132pt;}
.y138{bottom:260.426799pt;}
.y22{bottom:261.181458pt;}
.y17f{bottom:262.750671pt;}
.y60{bottom:263.127869pt;}
.y88{bottom:266.007874pt;}
.yc8{bottom:267.856405pt;}
.ya7{bottom:270.647867pt;}
.y102{bottom:271.093465pt;}
.y17e{bottom:273.950663pt;}
.y21{bottom:274.514791pt;}
.y5f{bottom:276.461202pt;}
.y87{bottom:279.341207pt;}
.yc7{bottom:281.189738pt;}
.ya6{bottom:283.981200pt;}
.y101{bottom:284.426799pt;}
.y17d{bottom:285.150675pt;}
.y137{bottom:287.093465pt;}
.y20{bottom:287.848124pt;}
.y5e{bottom:289.794535pt;}
.y86{bottom:292.674540pt;}
.yc6{bottom:294.523071pt;}
.y17c{bottom:296.350667pt;}
.y100{bottom:297.760132pt;}
.y136{bottom:300.426799pt;}
.y1f{bottom:301.181458pt;}
.y5d{bottom:303.127869pt;}
.y85{bottom:306.007874pt;}
.y17b{bottom:307.550659pt;}
.yc5{bottom:307.856405pt;}
.ya5{bottom:310.647867pt;}
.yff{bottom:311.093465pt;}
.y135{bottom:313.760132pt;}
.y1e{bottom:314.514791pt;}
.y17a{bottom:318.750671pt;}
.y84{bottom:319.341207pt;}
.yc4{bottom:321.189738pt;}
.ya4{bottom:323.981200pt;}
.yfe{bottom:324.426799pt;}
.y134{bottom:327.093465pt;}
.y1d{bottom:327.848124pt;}
.y179{bottom:329.950663pt;}
.y83{bottom:332.674540pt;}
.yc3{bottom:334.523071pt;}
.ya3{bottom:337.314533pt;}
.yfd{bottom:337.760132pt;}
.y133{bottom:340.426799pt;}
.y178{bottom:341.150675pt;}
.y1c{bottom:341.181458pt;}
.y82{bottom:346.007853pt;}
.yc2{bottom:347.856405pt;}
.ya2{bottom:350.647867pt;}
.yfc{bottom:351.093465pt;}
.y177{bottom:352.350667pt;}
.y132{bottom:353.760132pt;}
.y1b{bottom:354.514811pt;}
.y76{bottom:354.560140pt;}
.y81{bottom:359.341187pt;}
.y176{bottom:363.550659pt;}
.ya1{bottom:363.981200pt;}
.yfb{bottom:364.426799pt;}
.y131{bottom:367.093465pt;}
.y75{bottom:367.893473pt;}
.y80{bottom:372.674520pt;}
.y175{bottom:374.750651pt;}
.ya0{bottom:377.314533pt;}
.yfa{bottom:377.760132pt;}
.y130{bottom:380.426799pt;}
.y74{bottom:381.226807pt;}
.y1a{bottom:383.848145pt;}
.y174{bottom:385.950684pt;}
.y7f{bottom:386.007853pt;}
.y9f{bottom:390.647867pt;}
.yf9{bottom:391.093465pt;}
.y12f{bottom:393.760132pt;}
.y73{bottom:394.560140pt;}
.y173{bottom:397.150675pt;}
.y7e{bottom:399.341187pt;}
.ye1{bottom:400.480143pt;}
.y9e{bottom:403.981200pt;}
.yf8{bottom:404.426799pt;}
.y12e{bottom:407.093465pt;}
.y72{bottom:407.893473pt;}
.y172{bottom:408.350667pt;}
.y19{bottom:409.853353pt;}
.y7d{bottom:412.674520pt;}
.ye0{bottom:413.813477pt;}
.yf7{bottom:417.760132pt;}
.y171{bottom:419.550659pt;}
.y12d{bottom:420.426799pt;}
.y71{bottom:421.226807pt;}
.y18{bottom:424.520020pt;}
.ydf{bottom:427.146810pt;}
.y170{bottom:430.750651pt;}
.yf6{bottom:431.093465pt;}
.y70{bottom:434.560140pt;}
.y17{bottom:439.186686pt;}
.y7c{bottom:439.341187pt;}
.yde{bottom:440.480143pt;}
.y16f{bottom:441.950684pt;}
.y1b0{bottom:442.327718pt;}
.yf5{bottom:444.426799pt;}
.y12c{bottom:447.093465pt;}
.y6f{bottom:447.893473pt;}
.y7b{bottom:452.674520pt;}
.y16e{bottom:453.150675pt;}
.ydd{bottom:453.813477pt;}
.y16{bottom:453.853353pt;}
.yc1{bottom:455.413452pt;}
.yf4{bottom:457.760132pt;}
.y12b{bottom:460.426799pt;}
.y16d{bottom:464.350667pt;}
.y7a{bottom:466.007853pt;}
.ydc{bottom:467.146810pt;}
.y15{bottom:468.520020pt;}
.yc0{bottom:468.746785pt;}
.y1af{bottom:470.061198pt;}
.yf3{bottom:471.093465pt;}
.y12a{bottom:473.760132pt;}
.y16c{bottom:475.550659pt;}
.y79{bottom:479.341187pt;}
.ydb{bottom:480.480143pt;}
.ybf{bottom:482.080119pt;}
.y14{bottom:483.186686pt;}
.y1ae{bottom:483.394531pt;}
.yf2{bottom:484.426799pt;}
.y16b{bottom:486.750651pt;}
.y129{bottom:487.093465pt;}
.y78{bottom:492.674520pt;}
.yda{bottom:493.813477pt;}
.y5b{bottom:494.333333pt;}
.ybe{bottom:495.413452pt;}
.y1ad{bottom:496.727865pt;}
.yf1{bottom:497.760132pt;}
.y13{bottom:497.853353pt;}
.y16a{bottom:497.950684pt;}
.y128{bottom:500.426799pt;}
.y77{bottom:506.007853pt;}
.yd9{bottom:507.146810pt;}
.ybd{bottom:508.746785pt;}
.y169{bottom:509.150675pt;}
.y1ac{bottom:510.061198pt;}
.yf0{bottom:511.093465pt;}
.y12{bottom:512.520020pt;}
.y127{bottom:513.760132pt;}
.y168{bottom:520.350667pt;}
.yd8{bottom:520.480143pt;}
.ybc{bottom:522.080119pt;}
.y1ab{bottom:523.394531pt;}
.yef{bottom:524.426799pt;}
.y126{bottom:527.093465pt;}
.y11{bottom:527.186686pt;}
.y167{bottom:531.550659pt;}
.yd7{bottom:533.813477pt;}
.ybb{bottom:535.413452pt;}
.y1aa{bottom:536.727865pt;}
.y52{bottom:537.760132pt;}
.y125{bottom:540.426799pt;}
.y10{bottom:541.853353pt;}
.y166{bottom:542.750651pt;}
.yba{bottom:548.746785pt;}
.y1a9{bottom:550.061198pt;}
.y51{bottom:551.093465pt;}
.y124{bottom:553.760132pt;}
.y165{bottom:553.950684pt;}
.yf{bottom:556.520020pt;}
.y9d{bottom:557.439982pt;}
.yb9{bottom:562.080119pt;}
.y1a8{bottom:563.394531pt;}
.y50{bottom:564.426799pt;}
.y164{bottom:565.150675pt;}
.y123{bottom:567.093465pt;}
.y9c{bottom:570.773315pt;}
.ye{bottom:571.186686pt;}
.yb8{bottom:575.413452pt;}
.y163{bottom:576.350667pt;}
.yee{bottom:577.760132pt;}
.y121{bottom:580.426799pt;}
.y9b{bottom:584.106649pt;}
.y1a7{bottom:584.727865pt;}
.yd{bottom:585.853353pt;}
.y162{bottom:587.550659pt;}
.yb7{bottom:588.746785pt;}
.y4f{bottom:591.093465pt;}
.y120{bottom:593.760132pt;}
.y9a{bottom:597.439982pt;}
.y1a6{bottom:598.061198pt;}
.y161{bottom:598.750651pt;}
.yc{bottom:600.520020pt;}
.yb6{bottom:602.080119pt;}
.y4e{bottom:604.426799pt;}
.y11f{bottom:607.093465pt;}
.y160{bottom:609.950684pt;}
.y99{bottom:610.773315pt;}
.yb{bottom:615.186686pt;}
.yb5{bottom:615.413452pt;}
.y4d{bottom:617.760132pt;}
.y1a5{bottom:618.121989pt;}
.y11e{bottom:620.426799pt;}
.y15f{bottom:621.150675pt;}
.y98{bottom:624.106649pt;}
.ya{bottom:629.853353pt;}
.y4c{bottom:631.093465pt;}
.y15e{bottom:632.350667pt;}
.y11d{bottom:633.760132pt;}
.y97{bottom:637.439982pt;}
.y1a4{bottom:638.182943pt;}
.y15d{bottom:643.550659pt;}
.y4b{bottom:644.426799pt;}
.y9{bottom:644.520020pt;}
.y11c{bottom:647.093465pt;}
.y96{bottom:650.773315pt;}
.y15c{bottom:654.750651pt;}
.y4a{bottom:657.760132pt;}
.y1a3{bottom:658.243856pt;}
.y8{bottom:659.186686pt;}
.y11b{bottom:660.426799pt;}
.y15b{bottom:665.950684pt;}
.y49{bottom:671.093465pt;}
.y1a2{bottom:671.577189pt;}
.y11a{bottom:673.760132pt;}
.y7{bottom:673.853353pt;}
.y15a{bottom:677.150675pt;}
.y48{bottom:684.426839pt;}
.y1a1{bottom:684.910563pt;}
.y119{bottom:687.093506pt;}
.y159{bottom:688.350830pt;}
.y6{bottom:688.520020pt;}
.y47{bottom:697.760173pt;}
.y158{bottom:699.550700pt;}
.y118{bottom:700.426839pt;}
.y5{bottom:703.186686pt;}
.y157{bottom:710.750651pt;}
.y46{bottom:711.093506pt;}
.y117{bottom:713.760173pt;}
.y1a0{bottom:714.243896pt;}
.y156{bottom:721.950684pt;}
.y45{bottom:724.426839pt;}
.y122{bottom:727.093506pt;}
.y19f{bottom:727.577230pt;}
.y4{bottom:729.758952pt;}
.y155{bottom:733.150635pt;}
.y44{bottom:737.760173pt;}
.y116{bottom:740.426839pt;}
.y154{bottom:744.350830pt;}
.y43{bottom:751.093506pt;}
.y115{bottom:753.760173pt;}
.y153{bottom:755.550700pt;}
.y19e{bottom:756.910563pt;}
.y3{bottom:759.062826pt;}
.y42{bottom:764.426839pt;}
.y152{bottom:766.750651pt;}
.y114{bottom:767.093506pt;}
.yed{bottom:777.760173pt;}
.y151{bottom:777.950684pt;}
.y113{bottom:780.426839pt;}
.y19d{bottom:786.243896pt;}
.y150{bottom:789.150635pt;}
.yec{bottom:791.093506pt;}
.y41{bottom:793.760173pt;}
.y2{bottom:799.062826pt;}
.y19c{bottom:799.577230pt;}
.y14f{bottom:800.350830pt;}
.yeb{bottom:804.426839pt;}
.y40{bottom:807.093506pt;}
.y14e{bottom:811.550700pt;}
.yea{bottom:817.760173pt;}
.y3f{bottom:820.426839pt;}
.y14d{bottom:822.750651pt;}
.y19b{bottom:828.910563pt;}
.ye9{bottom:831.093506pt;}
.y3e{bottom:833.760173pt;}
.y14c{bottom:833.950684pt;}
.y1{bottom:839.062826pt;}
.y19a{bottom:842.243896pt;}
.ye8{bottom:844.426839pt;}
.y14b{bottom:845.150635pt;}
.y30{bottom:846.267497pt;}
.y3d{bottom:847.093506pt;}
.y199{bottom:855.577230pt;}
.y14a{bottom:856.350830pt;}
.ye7{bottom:857.760173pt;}
.y3c{bottom:860.426839pt;}
.y149{bottom:867.550700pt;}
.y198{bottom:868.910563pt;}
.ye6{bottom:871.093506pt;}
.y3b{bottom:873.760173pt;}
.y148{bottom:878.750651pt;}
.y197{bottom:882.243896pt;}
.ye5{bottom:884.426839pt;}
.y3a{bottom:887.093506pt;}
.y147{bottom:889.950684pt;}
.ye4{bottom:897.760173pt;}
.y39{bottom:900.426839pt;}
.y146{bottom:901.150635pt;}
.ye3{bottom:911.093506pt;}
.y196{bottom:911.577230pt;}
.y145{bottom:912.350830pt;}
.y38{bottom:913.760173pt;}
.y144{bottom:923.550700pt;}
.ye2{bottom:924.426839pt;}
.y195{bottom:924.910563pt;}
.y37{bottom:927.093506pt;}
.y143{bottom:934.750651pt;}
.y194{bottom:938.243896pt;}
.y36{bottom:940.426839pt;}
.y193{bottom:951.577230pt;}
.y35{bottom:953.760173pt;}
.y192{bottom:964.910563pt;}
.y34{bottom:967.093506pt;}
.y33{bottom:1013.962972pt;}
.y5c{bottom:1014.044515pt;}
.h9{height:27.501935pt;}
.hd{height:30.166667pt;}
.h16{height:31.476562pt;}
.h4{height:34.523438pt;}
.h11{height:38.359375pt;}
.h18{height:39.560000pt;}
.h19{height:40.080000pt;}
.hc{height:40.604167pt;}
.h17{height:40.960000pt;}
.h10{height:42.195312pt;}
.ha{height:43.141927pt;}
.h5{height:47.472000pt;}
.h12{height:48.096000pt;}
.h13{height:49.152000pt;}
.hf{height:49.789645pt;}
.h14{height:49.790296pt;}
.h6{height:49.790377pt;}
.h8{height:49.790381pt;}
.h15{height:49.790418pt;}
.h7{height:49.790459pt;}
.he{height:50.755208pt;}
.h3{height:50.781250pt;}
.hb{height:91.406250pt;}
.h2{height:99.734375pt;}
.h0{height:1043.149333pt;}
.h1{height:1043.333333pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x4{left:54.803065pt;}
.x8{left:96.337596pt;}
.x3{left:124.757731pt;}
.x7{left:136.177602pt;}
.x9{left:137.137604pt;}
.x1{left:207.874003pt;}
.x2{left:223.874003pt;}
.xa{left:224.881999pt;}
.x5{left:301.133870pt;}
.x6{left:520.758545pt;}
}




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