
    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_26735b2eb48a1180a2a20515.woff')format("woff");}.ff1{font-family:ff1;line-height:0.904785;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_31593c16b692e77d8a79fc39.woff')format("woff");}.ff2{font-family:ff2;line-height:1.082031;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_64f49209106789d0c158baf3.woff')format("woff");}.ff3{font-family:ff3;line-height:0.683594;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_66637baa1a598ea3485d67d7.woff')format("woff");}.ff4{font-family:ff4;line-height:0.904785;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_c431f6e553521096f80d497e.woff')format("woff");}.ff5{font-family:ff5;line-height:0.925781;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_1768ee788ab2cd49c0900228.woff')format("woff");}.ff6{font-family:ff6;line-height:1.078613;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_406c8ef39a1448aa941ee934.woff')format("woff");}.ff7{font-family:ff7;line-height:0.866211;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.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,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);}
.m4{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v4{vertical-align:-22.200000px;}
.v2{vertical-align:-2.982000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:2.982000px;}
.v5{vertical-align:26.640000px;}
.v3{vertical-align:37.668600px;}
.ls3c{letter-spacing:-6.666000px;}
.ls34{letter-spacing:-6.600000px;}
.ls28{letter-spacing:-1.224000px;}
.ls29{letter-spacing:-1.080000px;}
.ls1e{letter-spacing:-0.936000px;}
.ls19{letter-spacing:-0.864000px;}
.ls26{letter-spacing:-0.792000px;}
.ls1a{letter-spacing:-0.720000px;}
.lse{letter-spacing:-0.648000px;}
.ls46{letter-spacing:-0.594000px;}
.ls15{letter-spacing:-0.576000px;}
.ls3e{letter-spacing:-0.528000px;}
.ls11{letter-spacing:-0.504000px;}
.lsf{letter-spacing:-0.432000px;}
.ls39{letter-spacing:-0.396000px;}
.lsd{letter-spacing:-0.360000px;}
.ls35{letter-spacing:-0.330000px;}
.ls10{letter-spacing:-0.288000px;}
.ls21{letter-spacing:-0.285000px;}
.ls3b{letter-spacing:-0.264000px;}
.ls13{letter-spacing:-0.216000px;}
.ls33{letter-spacing:-0.198000px;}
.ls1c{letter-spacing:-0.144000px;}
.ls37{letter-spacing:-0.132000px;}
.ls14{letter-spacing:-0.072000px;}
.lsa{letter-spacing:0.000000px;}
.ls18{letter-spacing:0.064800px;}
.ls41{letter-spacing:0.066000px;}
.ls12{letter-spacing:0.072000px;}
.ls27{letter-spacing:0.122400px;}
.ls1f{letter-spacing:0.131400px;}
.ls38{letter-spacing:0.132000px;}
.lsb{letter-spacing:0.144000px;}
.ls6{letter-spacing:0.198000px;}
.ls9{letter-spacing:0.216000px;}
.ls42{letter-spacing:0.264000px;}
.ls7{letter-spacing:0.288000px;}
.ls36{letter-spacing:0.330000px;}
.ls1d{letter-spacing:0.360000px;}
.ls45{letter-spacing:0.396000px;}
.lsc{letter-spacing:0.432000px;}
.ls5{letter-spacing:0.462000px;}
.ls22{letter-spacing:0.504000px;}
.ls17{letter-spacing:0.576000px;}
.ls47{letter-spacing:0.594000px;}
.ls16{letter-spacing:0.648000px;}
.ls40{letter-spacing:0.660000px;}
.ls23{letter-spacing:0.720000px;}
.ls8{letter-spacing:0.792000px;}
.ls1b{letter-spacing:0.864000px;}
.ls2f{letter-spacing:0.924000px;}
.ls24{letter-spacing:0.936000px;}
.ls20{letter-spacing:1.224000px;}
.ls2a{letter-spacing:1.296000px;}
.ls44{letter-spacing:1.320000px;}
.ls2b{letter-spacing:1.368000px;}
.ls49{letter-spacing:1.584000px;}
.ls2c{letter-spacing:2.556000px;}
.ls0{letter-spacing:4.200000px;}
.ls3{letter-spacing:6.000000px;}
.ls30{letter-spacing:6.270000px;}
.ls1{letter-spacing:6.600000px;}
.ls43{letter-spacing:6.720000px;}
.ls4{letter-spacing:7.200000px;}
.ls48{letter-spacing:7.440000px;}
.ls2{letter-spacing:10.200000px;}
.ls25{letter-spacing:10.368000px;}
.ls3d{letter-spacing:10.428000px;}
.ls3a{letter-spacing:10.692000px;}
.ls2e{letter-spacing:10.758000px;}
.ls31{letter-spacing:10.824000px;}
.ls2d{letter-spacing:10.956000px;}
.ls32{letter-spacing:11.088000px;}
.ls3f{letter-spacing:19.800000px;}
.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;}
}
.ws7a{word-spacing:-38.346000px;}
.ws1{word-spacing:-27.432000px;}
.ws25{word-spacing:-20.448000px;}
.ws2a{word-spacing:-20.232000px;}
.ws32{word-spacing:-20.160000px;}
.ws7f{word-spacing:-19.800000px;}
.ws5f{word-spacing:-19.080000px;}
.ws31{word-spacing:-18.576000px;}
.ws68{word-spacing:-18.546000px;}
.ws2f{word-spacing:-18.504000px;}
.ws55{word-spacing:-18.288000px;}
.ws4e{word-spacing:-18.216000px;}
.ws41{word-spacing:-18.072000px;}
.ws30{word-spacing:-17.928000px;}
.ws56{word-spacing:-17.906400px;}
.ws36{word-spacing:-17.856000px;}
.ws1f{word-spacing:-17.784000px;}
.ws40{word-spacing:-17.712000px;}
.ws37{word-spacing:-17.640000px;}
.ws4d{word-spacing:-17.568000px;}
.ws2e{word-spacing:-17.496000px;}
.ws39{word-spacing:-17.424000px;}
.ws42{word-spacing:-17.064000px;}
.ws3f{word-spacing:-16.920000px;}
.ws0{word-spacing:-16.860000px;}
.ws57{word-spacing:-16.704000px;}
.ws67{word-spacing:-16.302000px;}
.ws2b{word-spacing:-16.017000px;}
.wsc{word-spacing:-12.139200px;}
.ws29{word-spacing:-11.923200px;}
.ws71{word-spacing:-11.088000px;}
.ws69{word-spacing:-10.956000px;}
.ws6a{word-spacing:-10.758000px;}
.ws74{word-spacing:-10.692000px;}
.ws78{word-spacing:-10.428000px;}
.ws84{word-spacing:-7.440000px;}
.ws22{word-spacing:-7.200000px;}
.ws7e{word-spacing:-6.720000px;}
.ws6{word-spacing:-6.000000px;}
.ws3{word-spacing:-4.200000px;}
.ws85{word-spacing:-1.584000px;}
.ws61{word-spacing:-1.368000px;}
.ws80{word-spacing:-1.320000px;}
.ws26{word-spacing:-1.224000px;}
.ws34{word-spacing:-0.936000px;}
.ws6c{word-spacing:-0.924000px;}
.ws20{word-spacing:-0.864000px;}
.wsa{word-spacing:-0.792000px;}
.ws35{word-spacing:-0.720000px;}
.ws7b{word-spacing:-0.660000px;}
.ws1b{word-spacing:-0.648000px;}
.ws83{word-spacing:-0.594000px;}
.ws1c{word-spacing:-0.576000px;}
.ws2c{word-spacing:-0.504000px;}
.ws7{word-spacing:-0.462000px;}
.ws15{word-spacing:-0.432000px;}
.ws82{word-spacing:-0.396000px;}
.ws23{word-spacing:-0.360000px;}
.ws9{word-spacing:-0.288000px;}
.ws7c{word-spacing:-0.264000px;}
.wsb{word-spacing:-0.216000px;}
.ws8{word-spacing:-0.198000px;}
.ws13{word-spacing:-0.144000px;}
.ws72{word-spacing:-0.132000px;}
.ws16{word-spacing:-0.072000px;}
.ws7d{word-spacing:-0.066000px;}
.ws2{word-spacing:0.000000px;}
.ws18{word-spacing:0.072000px;}
.ws70{word-spacing:0.132000px;}
.ws21{word-spacing:0.144000px;}
.ws6b{word-spacing:0.198000px;}
.ws17{word-spacing:0.216000px;}
.ws75{word-spacing:0.264000px;}
.ws28{word-spacing:0.285000px;}
.ws12{word-spacing:0.288000px;}
.ws6f{word-spacing:0.330000px;}
.wsf{word-spacing:0.360000px;}
.ws73{word-spacing:0.396000px;}
.ws11{word-spacing:0.432000px;}
.ws14{word-spacing:0.504000px;}
.ws79{word-spacing:0.528000px;}
.ws1a{word-spacing:0.576000px;}
.ws81{word-spacing:0.594000px;}
.ws10{word-spacing:0.648000px;}
.ws1e{word-spacing:0.720000px;}
.ws3a{word-spacing:0.792000px;}
.ws1d{word-spacing:0.864000px;}
.ws24{word-spacing:0.936000px;}
.ws5c{word-spacing:1.224000px;}
.ws5b{word-spacing:1.656000px;}
.ws58{word-spacing:1.728000px;}
.ws19{word-spacing:1.944000px;}
.ws59{word-spacing:2.016000px;}
.ws43{word-spacing:2.088000px;}
.ws4c{word-spacing:2.160000px;}
.ws50{word-spacing:2.376000px;}
.ws52{word-spacing:2.520000px;}
.ws4f{word-spacing:2.664000px;}
.ws51{word-spacing:2.880000px;}
.wsd{word-spacing:2.940000px;}
.wse{word-spacing:3.360000px;}
.ws45{word-spacing:3.456000px;}
.ws27{word-spacing:3.534000px;}
.ws49{word-spacing:4.104000px;}
.ws76{word-spacing:4.158000px;}
.ws5d{word-spacing:4.176000px;}
.ws5{word-spacing:4.200000px;}
.ws3c{word-spacing:4.464000px;}
.ws4{word-spacing:4.620000px;}
.ws64{word-spacing:5.040000px;}
.ws3b{word-spacing:5.184000px;}
.ws6d{word-spacing:5.346000px;}
.ws46{word-spacing:5.832000px;}
.ws3e{word-spacing:5.904000px;}
.ws66{word-spacing:5.976000px;}
.ws65{word-spacing:6.552000px;}
.ws6e{word-spacing:6.600000px;}
.ws4a{word-spacing:6.624000px;}
.ws77{word-spacing:6.666000px;}
.ws47{word-spacing:6.912000px;}
.ws5e{word-spacing:6.984000px;}
.ws4b{word-spacing:7.272000px;}
.ws60{word-spacing:7.488000px;}
.ws5a{word-spacing:7.632000px;}
.ws48{word-spacing:7.920000px;}
.ws53{word-spacing:8.064000px;}
.ws63{word-spacing:8.136000px;}
.ws54{word-spacing:8.640000px;}
.ws44{word-spacing:8.856000px;}
.ws2d{word-spacing:9.288000px;}
.ws3d{word-spacing:9.432000px;}
.ws38{word-spacing:10.080000px;}
.ws33{word-spacing:10.152000px;}
.ws62{word-spacing:10.296000px;}
._8{margin-left:-18.880200px;}
._18{margin-left:-11.665800px;}
._7{margin-left:-10.189800px;}
._11{margin-left:-8.740800px;}
._9{margin-left:-7.639800px;}
._4{margin-left:-6.018000px;}
._6{margin-left:-4.049400px;}
._3{margin-left:-2.640000px;}
._2{margin-left:-1.206000px;}
._1{width:1.890000px;}
._d{width:2.963400px;}
._0{width:4.200000px;}
._a{width:5.611800px;}
._5{width:7.191000px;}
._e{width:8.677200px;}
._b{width:9.706800px;}
._c{width:10.720200px;}
._f{width:11.767200px;}
._12{width:12.792000px;}
._14{width:14.784000px;}
._15{width:16.374600px;}
._16{width:19.560000px;}
._17{width:20.941800px;}
._13{width:38.923200px;}
._10{width:56.923200px;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:36.000000px;}
.fs2{font-size:42.000000px;}
.fs9{font-size:43.200000px;}
.fs1{font-size:48.000000px;}
.fs8{font-size:57.000000px;}
.fs0{font-size:60.000000px;}
.fs5{font-size:61.200000px;}
.fsa{font-size:63.000000px;}
.fs3{font-size:66.000000px;}
.fs6{font-size:72.000000px;}
.fs4{font-size:102.000000px;}
.y0{bottom:0.000000px;}
.y21{bottom:61.939350px;}
.y1{bottom:76.339350px;}
.y48{bottom:140.310450px;}
.y20{bottom:140.313450px;}
.y88{bottom:141.610350px;}
.y13e{bottom:142.360350px;}
.y1cd{bottom:143.068800px;}
.y6c{bottom:144.930300px;}
.y10a{bottom:145.254300px;}
.y12d{bottom:145.416300px;}
.y165{bottom:145.780500px;}
.yac{bottom:145.864950px;}
.y1ac{bottom:146.568450px;}
.y47{bottom:156.811950px;}
.y1f{bottom:162.364950px;}
.y1cc{bottom:163.165800px;}
.y87{bottom:163.210350px;}
.y13d{bottom:164.410350px;}
.y164{bottom:166.174500px;}
.y6b{bottom:166.674300px;}
.y1ab{bottom:166.962450px;}
.y109{bottom:167.610300px;}
.y12c{bottom:167.772300px;}
.ye6{bottom:173.311950px;}
.y46{bottom:173.313450px;}
.yab{bottom:182.262300px;}
.y1cb{bottom:183.262800px;}
.y86{bottom:184.810350px;}
.y13c{bottom:186.460350px;}
.y163{bottom:186.568500px;}
.y1aa{bottom:187.356450px;}
.y6a{bottom:188.418300px;}
.ye5{bottom:189.813450px;}
.y108{bottom:189.966300px;}
.y12b{bottom:190.128300px;}
.y45{bottom:195.364950px;}
.y1e{bottom:198.255150px;}
.y1ca{bottom:203.359800px;}
.yaa{bottom:203.556300px;}
.y44{bottom:206.313450px;}
.y85{bottom:206.410350px;}
.y162{bottom:206.962500px;}
.y1a9{bottom:207.750450px;}
.y13b{bottom:208.510350px;}
.y69{bottom:210.162300px;}
.yce{bottom:211.864950px;}
.y107{bottom:212.322300px;}
.y12a{bottom:212.484300px;}
.y1d{bottom:219.711150px;}
.ye4{bottom:222.811950px;}
.y1c9{bottom:223.456800px;}
.y188{bottom:224.605050px;}
.ya9{bottom:224.850300px;}
.y161{bottom:227.356500px;}
.y84{bottom:228.010350px;}
.y1a8{bottom:228.144450px;}
.y43{bottom:228.364950px;}
.y13a{bottom:230.560350px;}
.y68{bottom:231.906300px;}
.y106{bottom:234.678300px;}
.y129{bottom:234.840300px;}
.y42{bottom:239.308950px;}
.ye3{bottom:239.313450px;}
.y1c{bottom:241.167150px;}
.y187{bottom:241.861800px;}
.y1c8{bottom:243.553800px;}
.ya8{bottom:246.144300px;}
.ycd{bottom:246.650700px;}
.y160{bottom:247.750500px;}
.y1a7{bottom:248.538450px;}
.y83{bottom:249.610350px;}
.y139{bottom:252.610350px;}
.y67{bottom:253.650300px;}
.y41{bottom:255.810450px;}
.y105{bottom:257.034300px;}
.y128{bottom:257.196300px;}
.y186{bottom:259.273800px;}
.ye2{bottom:261.364950px;}
.y1b{bottom:262.623150px;}
.y1c7{bottom:263.650800px;}
.ya7{bottom:267.438300px;}
.ycc{bottom:268.106700px;}
.y15f{bottom:268.144500px;}
.y1a6{bottom:268.932450px;}
.y82{bottom:271.210350px;}
.y40{bottom:272.311950px;}
.ye1{bottom:272.313450px;}
.y138{bottom:274.660350px;}
.y66{bottom:275.394300px;}
.y104{bottom:279.390300px;}
.y185{bottom:279.519300px;}
.y127{bottom:279.552300px;}
.y1c6{bottom:283.747800px;}
.y1a{bottom:284.079150px;}
.y15e{bottom:288.538500px;}
.ya6{bottom:288.732300px;}
.y3f{bottom:288.813450px;}
.y1a5{bottom:289.326450px;}
.ycb{bottom:289.562700px;}
.y81{bottom:292.810350px;}
.ye0{bottom:294.364950px;}
.y137{bottom:296.710350px;}
.y65{bottom:297.138300px;}
.y184{bottom:299.764800px;}
.y103{bottom:301.746300px;}
.y126{bottom:301.908300px;}
.y1c5{bottom:303.844800px;}
.y19{bottom:305.535150px;}
.y15d{bottom:308.932500px;}
.y1a4{bottom:309.720450px;}
.ya5{bottom:310.026300px;}
.y3e{bottom:310.864950px;}
.yca{bottom:311.018700px;}
.y80{bottom:314.410350px;}
.y136{bottom:318.760350px;}
.y64{bottom:318.882300px;}
.y183{bottom:320.010300px;}
.y1c4{bottom:323.941800px;}
.y102{bottom:324.102300px;}
.y125{bottom:324.264300px;}
.y15c{bottom:329.326500px;}
.y1a3{bottom:330.114450px;}
.ydf{bottom:331.026300px;}
.ya4{bottom:331.320300px;}
.yc9{bottom:332.474700px;}
.y18{bottom:335.488950px;}
.y7f{bottom:336.010350px;}
.y182{bottom:340.255800px;}
.y63{bottom:340.626300px;}
.y135{bottom:340.810350px;}
.y1c3{bottom:344.038800px;}
.y3d{bottom:344.514300px;}
.y101{bottom:346.458300px;}
.y124{bottom:346.620300px;}
.y15b{bottom:349.720500px;}
.y1a2{bottom:350.508450px;}
.yde{bottom:352.626300px;}
.ya3{bottom:352.776300px;}
.yc8{bottom:353.930700px;}
.y7e{bottom:357.610350px;}
.y181{bottom:360.501300px;}
.y62{bottom:362.370300px;}
.y134{bottom:362.860350px;}
.y1c2{bottom:364.135800px;}
.y3c{bottom:366.114300px;}
.y100{bottom:368.814300px;}
.y123{bottom:368.976300px;}
.y15a{bottom:370.114500px;}
.y1a1{bottom:370.902450px;}
.ydd{bottom:373.920300px;}
.ya2{bottom:374.070300px;}
.yc7{bottom:375.386700px;}
.y7d{bottom:379.210350px;}
.y180{bottom:380.746800px;}
.y61{bottom:384.114300px;}
.y1c1{bottom:384.232800px;}
.y133{bottom:384.910350px;}
.y3b{bottom:387.714300px;}
.y159{bottom:390.508500px;}
.yff{bottom:391.170300px;}
.y1a0{bottom:391.296450px;}
.y122{bottom:391.332300px;}
.ydc{bottom:395.226300px;}
.ya1{bottom:395.364300px;}
.yc6{bottom:396.842700px;}
.y17{bottom:399.825600px;}
.y7c{bottom:400.810350px;}
.y17f{bottom:401.140800px;}
.y1c0{bottom:404.329800px;}
.y60{bottom:405.858300px;}
.y132{bottom:406.960350px;}
.y3a{bottom:409.314300px;}
.y158{bottom:410.902500px;}
.y19f{bottom:411.690450px;}
.yfe{bottom:413.526300px;}
.y121{bottom:413.688300px;}
.ydb{bottom:416.520300px;}
.ya0{bottom:416.658300px;}
.yc5{bottom:418.298700px;}
.y16{bottom:419.477100px;}
.y17e{bottom:421.534800px;}
.y7b{bottom:422.410350px;}
.y1bf{bottom:424.426800px;}
.y5f{bottom:427.602300px;}
.y131{bottom:429.010350px;}
.y39{bottom:430.914300px;}
.y157{bottom:431.296500px;}
.y19e{bottom:432.084450px;}
.yfd{bottom:435.882300px;}
.y120{bottom:436.044300px;}
.yda{bottom:437.886300px;}
.y9f{bottom:437.952300px;}
.y15{bottom:439.128600px;}
.yc4{bottom:439.706700px;}
.y17d{bottom:441.928800px;}
.y7a{bottom:444.010350px;}
.y1be{bottom:444.523800px;}
.y5e{bottom:449.346300px;}
.y130{bottom:451.060350px;}
.y156{bottom:451.690500px;}
.y19d{bottom:452.478450px;}
.y38{bottom:452.514300px;}
.yfc{bottom:458.238300px;}
.y11f{bottom:458.400300px;}
.y14{bottom:458.780100px;}
.yd9{bottom:459.180300px;}
.y9e{bottom:459.246300px;}
.yc3{bottom:461.162700px;}
.y17c{bottom:462.322800px;}
.y1bd{bottom:464.620800px;}
.y79{bottom:465.610350px;}
.y5d{bottom:471.090300px;}
.y155{bottom:472.084500px;}
.y19c{bottom:472.872450px;}
.y12f{bottom:473.110350px;}
.y37{bottom:474.114300px;}
.y13{bottom:478.431600px;}
.yd8{bottom:480.474300px;}
.y9d{bottom:480.540300px;}
.yfb{bottom:480.594300px;}
.y11e{bottom:480.756300px;}
.yc2{bottom:482.618700px;}
.y17b{bottom:482.716800px;}
.y1bc{bottom:484.717800px;}
.y78{bottom:487.210350px;}
.y154{bottom:492.478500px;}
.y5c{bottom:492.834300px;}
.y19b{bottom:493.266450px;}
.y36{bottom:495.714300px;}
.y12{bottom:498.083100px;}
.yd7{bottom:501.768300px;}
.y9c{bottom:501.834300px;}
.yfa{bottom:502.950300px;}
.y17a{bottom:503.110800px;}
.y11d{bottom:503.112300px;}
.y12e{bottom:503.664300px;}
.yc1{bottom:504.074700px;}
.y1bb{bottom:504.814800px;}
.y77{bottom:508.810350px;}
.y153{bottom:512.872500px;}
.y19a{bottom:513.660450px;}
.y5b{bottom:514.578300px;}
.y35{bottom:517.314300px;}
.y11{bottom:517.734600px;}
.yd6{bottom:523.062300px;}
.y9b{bottom:523.128300px;}
.y179{bottom:523.504800px;}
.y1ba{bottom:524.911800px;}
.yf9{bottom:525.306300px;}
.y11c{bottom:525.468300px;}
.yc0{bottom:525.530700px;}
.y76{bottom:530.410350px;}
.y152{bottom:533.266500px;}
.y199{bottom:534.054450px;}
.y5a{bottom:536.322300px;}
.y10{bottom:537.386100px;}
.y34{bottom:538.914300px;}
.y178{bottom:543.898800px;}
.yd5{bottom:544.356300px;}
.y9a{bottom:544.422300px;}
.ybf{bottom:546.986700px;}
.yf8{bottom:547.662300px;}
.y11b{bottom:547.824300px;}
.y75{bottom:552.010350px;}
.y151{bottom:553.660500px;}
.y198{bottom:554.448450px;}
.yf{bottom:557.037600px;}
.y1de{bottom:557.911800px;}
.y59{bottom:558.066300px;}
.y33{bottom:560.514300px;}
.y177{bottom:564.292800px;}
.y1b9{bottom:565.111800px;}
.yd4{bottom:565.650300px;}
.y99{bottom:565.716300px;}
.ybe{bottom:568.442700px;}
.yf7{bottom:570.018300px;}
.y11a{bottom:570.180300px;}
.y74{bottom:573.610350px;}
.y150{bottom:574.054500px;}
.y197{bottom:574.842450px;}
.y1dd{bottom:575.911800px;}
.ye{bottom:576.689100px;}
.y58{bottom:579.810300px;}
.y32{bottom:582.114300px;}
.y176{bottom:584.686800px;}
.yd3{bottom:586.944300px;}
.y98{bottom:587.010300px;}
.ybd{bottom:589.898700px;}
.yf6{bottom:592.374300px;}
.y119{bottom:592.536300px;}
.y1dc{bottom:593.911800px;}
.y14f{bottom:594.448500px;}
.y73{bottom:595.210350px;}
.y196{bottom:595.236450px;}
.y57{bottom:601.554300px;}
.y31{bottom:603.714300px;}
.yd{bottom:604.842900px;}
.y175{bottom:605.080800px;}
.y1b8{bottom:607.105800px;}
.yd2{bottom:608.238300px;}
.y97{bottom:608.304300px;}
.ybc{bottom:611.342700px;}
.y1db{bottom:611.911800px;}
.yf5{bottom:614.730300px;}
.y14e{bottom:614.842500px;}
.y118{bottom:614.892300px;}
.y195{bottom:615.630450px;}
.y72{bottom:616.810350px;}
.y56{bottom:623.298300px;}
.y30{bottom:625.314300px;}
.y174{bottom:625.474800px;}
.y1b7{bottom:629.011800px;}
.yd1{bottom:629.532300px;}
.y96{bottom:629.598300px;}
.y1da{bottom:629.911800px;}
.ybb{bottom:632.798700px;}
.y14d{bottom:635.236500px;}
.y194{bottom:636.024450px;}
.yf4{bottom:637.086300px;}
.y117{bottom:637.248300px;}
.y71{bottom:638.410350px;}
.y55{bottom:645.042300px;}
.y173{bottom:645.868800px;}
.y2f{bottom:646.914300px;}
.yd0{bottom:650.826300px;}
.y95{bottom:650.892300px;}
.y1b6{bottom:650.911800px;}
.yba{bottom:654.230700px;}
.y14c{bottom:655.630500px;}
.y193{bottom:656.418450px;}
.yf3{bottom:659.442300px;}
.y116{bottom:659.604300px;}
.y70{bottom:660.010350px;}
.y172{bottom:666.262800px;}
.y54{bottom:666.786300px;}
.yc{bottom:667.388400px;}
.y2e{bottom:668.514300px;}
.y1d9{bottom:669.511800px;}
.ycf{bottom:672.120300px;}
.y94{bottom:672.186300px;}
.yb9{bottom:675.686700px;}
.y14b{bottom:676.024500px;}
.y192{bottom:676.812450px;}
.y6f{bottom:681.610350px;}
.yf2{bottom:681.798300px;}
.y115{bottom:681.960300px;}
.y171{bottom:686.656800px;}
.yb{bottom:686.742900px;}
.y53{bottom:688.530300px;}
.y1d8{bottom:689.311800px;}
.y2d{bottom:690.114300px;}
.y93{bottom:693.480300px;}
.y14a{bottom:696.418500px;}
.yb8{bottom:697.142700px;}
.y191{bottom:697.206450px;}
.y6e{bottom:703.210350px;}
.yf1{bottom:704.154300px;}
.y114{bottom:704.316300px;}
.y170{bottom:707.050800px;}
.y52{bottom:710.274300px;}
.y2c{bottom:711.714300px;}
.y1b5{bottom:713.011800px;}
.y92{bottom:714.774300px;}
.y149{bottom:716.812500px;}
.y190{bottom:717.600450px;}
.yb7{bottom:718.598700px;}
.y6d{bottom:724.810350px;}
.yf0{bottom:726.510300px;}
.y113{bottom:726.672300px;}
.ya{bottom:727.260900px;}
.y16f{bottom:727.444800px;}
.y1d7{bottom:730.711800px;}
.y1b4{bottom:731.311800px;}
.y51{bottom:732.018300px;}
.y2b{bottom:733.314300px;}
.y91{bottom:736.068300px;}
.y148{bottom:737.206500px;}
.y18f{bottom:737.994450px;}
.yb6{bottom:740.054700px;}
.ye7{bottom:746.410350px;}
.y16e{bottom:747.838800px;}
.yef{bottom:748.866300px;}
.y112{bottom:749.028300px;}
.y1b3{bottom:749.611800px;}
.y1d6{bottom:750.511800px;}
.y50{bottom:753.762300px;}
.y2a{bottom:754.914300px;}
.y90{bottom:757.362300px;}
.y9{bottom:757.401900px;}
.y147{bottom:757.600500px;}
.y18e{bottom:758.701950px;}
.yb5{bottom:761.654700px;}
.y1b2{bottom:767.911800px;}
.y16d{bottom:768.232800px;}
.y1d5{bottom:770.311800px;}
.yee{bottom:771.222300px;}
.y111{bottom:771.384300px;}
.y4f{bottom:775.506300px;}
.y29{bottom:776.514300px;}
.y146{bottom:777.994500px;}
.y8f{bottom:778.656300px;}
.y18d{bottom:779.409450px;}
.yb4{bottom:783.254700px;}
.y1b1{bottom:786.211800px;}
.y8{bottom:787.542900px;}
.y16c{bottom:788.626800px;}
.y1d4{bottom:790.111800px;}
.yed{bottom:793.578300px;}
.y110{bottom:793.740300px;}
.y4e{bottom:797.250300px;}
.y28{bottom:798.114300px;}
.y145{bottom:798.388500px;}
.y8e{bottom:799.950300px;}
.yb3{bottom:804.854700px;}
.y16b{bottom:809.020800px;}
.y1d3{bottom:809.911800px;}
.yec{bottom:815.934300px;}
.y10f{bottom:816.096300px;}
.y144{bottom:818.782500px;}
.y4d{bottom:818.994300px;}
.y27{bottom:819.714300px;}
.y8d{bottom:821.244300px;}
.y18c{bottom:822.009450px;}
.y1b0{bottom:826.414800px;}
.y16a{bottom:828.969300px;}
.y1d2{bottom:829.711800px;}
.yeb{bottom:838.290300px;}
.y10e{bottom:838.452300px;}
.y143{bottom:839.176500px;}
.yb2{bottom:839.199450px;}
.y4c{bottom:840.738300px;}
.y26{bottom:841.314300px;}
.y7{bottom:842.354400px;}
.y8c{bottom:842.538300px;}
.y1af{bottom:846.511800px;}
.y169{bottom:848.917800px;}
.y1d1{bottom:849.511800px;}
.yb1{bottom:857.201700px;}
.y142{bottom:859.570500px;}
.y6{bottom:859.904400px;}
.yea{bottom:860.646300px;}
.y10d{bottom:860.808300px;}
.y4b{bottom:862.482300px;}
.y25{bottom:862.914300px;}
.y8b{bottom:863.832300px;}
.y18b{bottom:863.997450px;}
.y168{bottom:868.866300px;}
.y1d0{bottom:869.311800px;}
.yb0{bottom:875.203950px;}
.y5{bottom:877.454400px;}
.y4{bottom:877.456800px;}
.y141{bottom:880.113000px;}
.ye9{bottom:883.002300px;}
.y10c{bottom:883.164300px;}
.y4a{bottom:884.226300px;}
.y24{bottom:884.514300px;}
.y8a{bottom:885.126300px;}
.y18a{bottom:885.903450px;}
.y1ae{bottom:888.517800px;}
.y167{bottom:888.814800px;}
.y1cf{bottom:889.111800px;}
.yaf{bottom:893.206200px;}
.y140{bottom:900.655500px;}
.ye8{bottom:905.358300px;}
.y10b{bottom:905.520300px;}
.y49{bottom:905.970300px;}
.y23{bottom:906.114300px;}
.y89{bottom:906.420300px;}
.y189{bottom:907.809450px;}
.y1ad{bottom:908.614800px;}
.y166{bottom:908.763300px;}
.y1ce{bottom:908.911800px;}
.y3{bottom:911.161800px;}
.yae{bottom:911.208450px;}
.y22{bottom:927.714300px;}
.y2{bottom:928.711800px;}
.yad{bottom:929.210700px;}
.y13f{bottom:929.709450px;}
.ha{height:26.199902px;}
.hc{height:28.218750px;}
.hd{height:32.250000px;}
.h3{height:35.663086px;}
.h11{height:38.296875px;}
.h7{height:39.990234px;}
.h2{height:40.312500px;}
.h4{height:43.989258px;}
.h13{height:44.343750px;}
.h12{height:48.375000px;}
.hb{height:48.399902px;}
.h14{height:50.244141px;}
.h5{height:50.947266px;}
.he{height:53.494629px;}
.h8{height:56.041992px;}
.h9{height:61.136719px;}
.hf{height:61.184719px;}
.h10{height:61.328719px;}
.h6{height:86.610352px;}
.h0{height:1020.472500px;}
.h1{height:1020.750000px;}
.w0{width:722.835000px;}
.w1{width:723.000000px;}
.x0{left:0.000000px;}
.xb{left:76.535400px;}
.x1{left:97.795350px;}
.x6{left:119.055150px;}
.xc{left:140.323650px;}
.x2{left:143.170350px;}
.x3{left:163.476000px;}
.xf{left:181.366050px;}
.x5{left:199.239750px;}
.x10{left:269.957400px;}
.x7{left:326.905500px;}
.x9{left:331.209600px;}
.x8{left:405.013800px;}
.x4{left:410.917350px;}
.xe{left:508.755750px;}
.xd{left:517.719000px;}
.xa{left:610.039350px;}
@media print{
.v4{vertical-align:-19.733333pt;}
.v2{vertical-align:-2.650667pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:2.650667pt;}
.v5{vertical-align:23.680000pt;}
.v3{vertical-align:33.483200pt;}
.ls3c{letter-spacing:-5.925333pt;}
.ls34{letter-spacing:-5.866667pt;}
.ls28{letter-spacing:-1.088000pt;}
.ls29{letter-spacing:-0.960000pt;}
.ls1e{letter-spacing:-0.832000pt;}
.ls19{letter-spacing:-0.768000pt;}
.ls26{letter-spacing:-0.704000pt;}
.ls1a{letter-spacing:-0.640000pt;}
.lse{letter-spacing:-0.576000pt;}
.ls46{letter-spacing:-0.528000pt;}
.ls15{letter-spacing:-0.512000pt;}
.ls3e{letter-spacing:-0.469333pt;}
.ls11{letter-spacing:-0.448000pt;}
.lsf{letter-spacing:-0.384000pt;}
.ls39{letter-spacing:-0.352000pt;}
.lsd{letter-spacing:-0.320000pt;}
.ls35{letter-spacing:-0.293333pt;}
.ls10{letter-spacing:-0.256000pt;}
.ls21{letter-spacing:-0.253333pt;}
.ls3b{letter-spacing:-0.234667pt;}
.ls13{letter-spacing:-0.192000pt;}
.ls33{letter-spacing:-0.176000pt;}
.ls1c{letter-spacing:-0.128000pt;}
.ls37{letter-spacing:-0.117333pt;}
.ls14{letter-spacing:-0.064000pt;}
.lsa{letter-spacing:0.000000pt;}
.ls18{letter-spacing:0.057600pt;}
.ls41{letter-spacing:0.058667pt;}
.ls12{letter-spacing:0.064000pt;}
.ls27{letter-spacing:0.108800pt;}
.ls1f{letter-spacing:0.116800pt;}
.ls38{letter-spacing:0.117333pt;}
.lsb{letter-spacing:0.128000pt;}
.ls6{letter-spacing:0.176000pt;}
.ls9{letter-spacing:0.192000pt;}
.ls42{letter-spacing:0.234667pt;}
.ls7{letter-spacing:0.256000pt;}
.ls36{letter-spacing:0.293333pt;}
.ls1d{letter-spacing:0.320000pt;}
.ls45{letter-spacing:0.352000pt;}
.lsc{letter-spacing:0.384000pt;}
.ls5{letter-spacing:0.410667pt;}
.ls22{letter-spacing:0.448000pt;}
.ls17{letter-spacing:0.512000pt;}
.ls47{letter-spacing:0.528000pt;}
.ls16{letter-spacing:0.576000pt;}
.ls40{letter-spacing:0.586667pt;}
.ls23{letter-spacing:0.640000pt;}
.ls8{letter-spacing:0.704000pt;}
.ls1b{letter-spacing:0.768000pt;}
.ls2f{letter-spacing:0.821333pt;}
.ls24{letter-spacing:0.832000pt;}
.ls20{letter-spacing:1.088000pt;}
.ls2a{letter-spacing:1.152000pt;}
.ls44{letter-spacing:1.173333pt;}
.ls2b{letter-spacing:1.216000pt;}
.ls49{letter-spacing:1.408000pt;}
.ls2c{letter-spacing:2.272000pt;}
.ls0{letter-spacing:3.733333pt;}
.ls3{letter-spacing:5.333333pt;}
.ls30{letter-spacing:5.573333pt;}
.ls1{letter-spacing:5.866667pt;}
.ls43{letter-spacing:5.973333pt;}
.ls4{letter-spacing:6.400000pt;}
.ls48{letter-spacing:6.613333pt;}
.ls2{letter-spacing:9.066667pt;}
.ls25{letter-spacing:9.216000pt;}
.ls3d{letter-spacing:9.269333pt;}
.ls3a{letter-spacing:9.504000pt;}
.ls2e{letter-spacing:9.562667pt;}
.ls31{letter-spacing:9.621333pt;}
.ls2d{letter-spacing:9.738667pt;}
.ls32{letter-spacing:9.856000pt;}
.ls3f{letter-spacing:17.600000pt;}
.ws7a{word-spacing:-34.085333pt;}
.ws1{word-spacing:-24.384000pt;}
.ws25{word-spacing:-18.176000pt;}
.ws2a{word-spacing:-17.984000pt;}
.ws32{word-spacing:-17.920000pt;}
.ws7f{word-spacing:-17.600000pt;}
.ws5f{word-spacing:-16.960000pt;}
.ws31{word-spacing:-16.512000pt;}
.ws68{word-spacing:-16.485333pt;}
.ws2f{word-spacing:-16.448000pt;}
.ws55{word-spacing:-16.256000pt;}
.ws4e{word-spacing:-16.192000pt;}
.ws41{word-spacing:-16.064000pt;}
.ws30{word-spacing:-15.936000pt;}
.ws56{word-spacing:-15.916800pt;}
.ws36{word-spacing:-15.872000pt;}
.ws1f{word-spacing:-15.808000pt;}
.ws40{word-spacing:-15.744000pt;}
.ws37{word-spacing:-15.680000pt;}
.ws4d{word-spacing:-15.616000pt;}
.ws2e{word-spacing:-15.552000pt;}
.ws39{word-spacing:-15.488000pt;}
.ws42{word-spacing:-15.168000pt;}
.ws3f{word-spacing:-15.040000pt;}
.ws0{word-spacing:-14.986667pt;}
.ws57{word-spacing:-14.848000pt;}
.ws67{word-spacing:-14.490667pt;}
.ws2b{word-spacing:-14.237333pt;}
.wsc{word-spacing:-10.790400pt;}
.ws29{word-spacing:-10.598400pt;}
.ws71{word-spacing:-9.856000pt;}
.ws69{word-spacing:-9.738667pt;}
.ws6a{word-spacing:-9.562667pt;}
.ws74{word-spacing:-9.504000pt;}
.ws78{word-spacing:-9.269333pt;}
.ws84{word-spacing:-6.613333pt;}
.ws22{word-spacing:-6.400000pt;}
.ws7e{word-spacing:-5.973333pt;}
.ws6{word-spacing:-5.333333pt;}
.ws3{word-spacing:-3.733333pt;}
.ws85{word-spacing:-1.408000pt;}
.ws61{word-spacing:-1.216000pt;}
.ws80{word-spacing:-1.173333pt;}
.ws26{word-spacing:-1.088000pt;}
.ws34{word-spacing:-0.832000pt;}
.ws6c{word-spacing:-0.821333pt;}
.ws20{word-spacing:-0.768000pt;}
.wsa{word-spacing:-0.704000pt;}
.ws35{word-spacing:-0.640000pt;}
.ws7b{word-spacing:-0.586667pt;}
.ws1b{word-spacing:-0.576000pt;}
.ws83{word-spacing:-0.528000pt;}
.ws1c{word-spacing:-0.512000pt;}
.ws2c{word-spacing:-0.448000pt;}
.ws7{word-spacing:-0.410667pt;}
.ws15{word-spacing:-0.384000pt;}
.ws82{word-spacing:-0.352000pt;}
.ws23{word-spacing:-0.320000pt;}
.ws9{word-spacing:-0.256000pt;}
.ws7c{word-spacing:-0.234667pt;}
.wsb{word-spacing:-0.192000pt;}
.ws8{word-spacing:-0.176000pt;}
.ws13{word-spacing:-0.128000pt;}
.ws72{word-spacing:-0.117333pt;}
.ws16{word-spacing:-0.064000pt;}
.ws7d{word-spacing:-0.058667pt;}
.ws2{word-spacing:0.000000pt;}
.ws18{word-spacing:0.064000pt;}
.ws70{word-spacing:0.117333pt;}
.ws21{word-spacing:0.128000pt;}
.ws6b{word-spacing:0.176000pt;}
.ws17{word-spacing:0.192000pt;}
.ws75{word-spacing:0.234667pt;}
.ws28{word-spacing:0.253333pt;}
.ws12{word-spacing:0.256000pt;}
.ws6f{word-spacing:0.293333pt;}
.wsf{word-spacing:0.320000pt;}
.ws73{word-spacing:0.352000pt;}
.ws11{word-spacing:0.384000pt;}
.ws14{word-spacing:0.448000pt;}
.ws79{word-spacing:0.469333pt;}
.ws1a{word-spacing:0.512000pt;}
.ws81{word-spacing:0.528000pt;}
.ws10{word-spacing:0.576000pt;}
.ws1e{word-spacing:0.640000pt;}
.ws3a{word-spacing:0.704000pt;}
.ws1d{word-spacing:0.768000pt;}
.ws24{word-spacing:0.832000pt;}
.ws5c{word-spacing:1.088000pt;}
.ws5b{word-spacing:1.472000pt;}
.ws58{word-spacing:1.536000pt;}
.ws19{word-spacing:1.728000pt;}
.ws59{word-spacing:1.792000pt;}
.ws43{word-spacing:1.856000pt;}
.ws4c{word-spacing:1.920000pt;}
.ws50{word-spacing:2.112000pt;}
.ws52{word-spacing:2.240000pt;}
.ws4f{word-spacing:2.368000pt;}
.ws51{word-spacing:2.560000pt;}
.wsd{word-spacing:2.613333pt;}
.wse{word-spacing:2.986667pt;}
.ws45{word-spacing:3.072000pt;}
.ws27{word-spacing:3.141333pt;}
.ws49{word-spacing:3.648000pt;}
.ws76{word-spacing:3.696000pt;}
.ws5d{word-spacing:3.712000pt;}
.ws5{word-spacing:3.733333pt;}
.ws3c{word-spacing:3.968000pt;}
.ws4{word-spacing:4.106667pt;}
.ws64{word-spacing:4.480000pt;}
.ws3b{word-spacing:4.608000pt;}
.ws6d{word-spacing:4.752000pt;}
.ws46{word-spacing:5.184000pt;}
.ws3e{word-spacing:5.248000pt;}
.ws66{word-spacing:5.312000pt;}
.ws65{word-spacing:5.824000pt;}
.ws6e{word-spacing:5.866667pt;}
.ws4a{word-spacing:5.888000pt;}
.ws77{word-spacing:5.925333pt;}
.ws47{word-spacing:6.144000pt;}
.ws5e{word-spacing:6.208000pt;}
.ws4b{word-spacing:6.464000pt;}
.ws60{word-spacing:6.656000pt;}
.ws5a{word-spacing:6.784000pt;}
.ws48{word-spacing:7.040000pt;}
.ws53{word-spacing:7.168000pt;}
.ws63{word-spacing:7.232000pt;}
.ws54{word-spacing:7.680000pt;}
.ws44{word-spacing:7.872000pt;}
.ws2d{word-spacing:8.256000pt;}
.ws3d{word-spacing:8.384000pt;}
.ws38{word-spacing:8.960000pt;}
.ws33{word-spacing:9.024000pt;}
.ws62{word-spacing:9.152000pt;}
._8{margin-left:-16.782400pt;}
._18{margin-left:-10.369600pt;}
._7{margin-left:-9.057600pt;}
._11{margin-left:-7.769600pt;}
._9{margin-left:-6.790933pt;}
._4{margin-left:-5.349333pt;}
._6{margin-left:-3.599467pt;}
._3{margin-left:-2.346667pt;}
._2{margin-left:-1.072000pt;}
._1{width:1.680000pt;}
._d{width:2.634133pt;}
._0{width:3.733333pt;}
._a{width:4.988267pt;}
._5{width:6.392000pt;}
._e{width:7.713067pt;}
._b{width:8.628267pt;}
._c{width:9.529067pt;}
._f{width:10.459733pt;}
._12{width:11.370667pt;}
._14{width:13.141333pt;}
._15{width:14.555200pt;}
._16{width:17.386667pt;}
._17{width:18.614933pt;}
._13{width:34.598400pt;}
._10{width:50.598400pt;}
.fs7{font-size:32.000000pt;}
.fs2{font-size:37.333333pt;}
.fs9{font-size:38.400000pt;}
.fs1{font-size:42.666667pt;}
.fs8{font-size:50.666667pt;}
.fs0{font-size:53.333333pt;}
.fs5{font-size:54.400000pt;}
.fsa{font-size:56.000000pt;}
.fs3{font-size:58.666667pt;}
.fs6{font-size:64.000000pt;}
.fs4{font-size:90.666667pt;}
.y0{bottom:0.000000pt;}
.y21{bottom:55.057200pt;}
.y1{bottom:67.857200pt;}
.y48{bottom:124.720400pt;}
.y20{bottom:124.723067pt;}
.y88{bottom:125.875867pt;}
.y13e{bottom:126.542533pt;}
.y1cd{bottom:127.172267pt;}
.y6c{bottom:128.826933pt;}
.y10a{bottom:129.114933pt;}
.y12d{bottom:129.258933pt;}
.y165{bottom:129.582667pt;}
.yac{bottom:129.657733pt;}
.y1ac{bottom:130.283067pt;}
.y47{bottom:139.388400pt;}
.y1f{bottom:144.324400pt;}
.y1cc{bottom:145.036267pt;}
.y87{bottom:145.075867pt;}
.y13d{bottom:146.142533pt;}
.y164{bottom:147.710667pt;}
.y6b{bottom:148.154933pt;}
.y1ab{bottom:148.411067pt;}
.y109{bottom:148.986933pt;}
.y12c{bottom:149.130933pt;}
.ye6{bottom:154.055067pt;}
.y46{bottom:154.056400pt;}
.yab{bottom:162.010933pt;}
.y1cb{bottom:162.900267pt;}
.y86{bottom:164.275867pt;}
.y13c{bottom:165.742533pt;}
.y163{bottom:165.838667pt;}
.y1aa{bottom:166.539067pt;}
.y6a{bottom:167.482933pt;}
.ye5{bottom:168.723067pt;}
.y108{bottom:168.858933pt;}
.y12b{bottom:169.002933pt;}
.y45{bottom:173.657733pt;}
.y1e{bottom:176.226800pt;}
.y1ca{bottom:180.764267pt;}
.yaa{bottom:180.938933pt;}
.y44{bottom:183.389733pt;}
.y85{bottom:183.475867pt;}
.y162{bottom:183.966667pt;}
.y1a9{bottom:184.667067pt;}
.y13b{bottom:185.342533pt;}
.y69{bottom:186.810933pt;}
.yce{bottom:188.324400pt;}
.y107{bottom:188.730933pt;}
.y12a{bottom:188.874933pt;}
.y1d{bottom:195.298800pt;}
.ye4{bottom:198.055067pt;}
.y1c9{bottom:198.628267pt;}
.y188{bottom:199.648933pt;}
.ya9{bottom:199.866933pt;}
.y161{bottom:202.094667pt;}
.y84{bottom:202.675867pt;}
.y1a8{bottom:202.795067pt;}
.y43{bottom:202.991067pt;}
.y13a{bottom:204.942533pt;}
.y68{bottom:206.138933pt;}
.y106{bottom:208.602933pt;}
.y129{bottom:208.746933pt;}
.y42{bottom:212.719067pt;}
.ye3{bottom:212.723067pt;}
.y1c{bottom:214.370800pt;}
.y187{bottom:214.988267pt;}
.y1c8{bottom:216.492267pt;}
.ya8{bottom:218.794933pt;}
.ycd{bottom:219.245067pt;}
.y160{bottom:220.222667pt;}
.y1a7{bottom:220.923067pt;}
.y83{bottom:221.875867pt;}
.y139{bottom:224.542533pt;}
.y67{bottom:225.466933pt;}
.y41{bottom:227.387067pt;}
.y105{bottom:228.474933pt;}
.y128{bottom:228.618933pt;}
.y186{bottom:230.465600pt;}
.ye2{bottom:232.324400pt;}
.y1b{bottom:233.442800pt;}
.y1c7{bottom:234.356267pt;}
.ya7{bottom:237.722933pt;}
.ycc{bottom:238.317067pt;}
.y15f{bottom:238.350667pt;}
.y1a6{bottom:239.051067pt;}
.y82{bottom:241.075867pt;}
.y40{bottom:242.055067pt;}
.ye1{bottom:242.056400pt;}
.y138{bottom:244.142533pt;}
.y66{bottom:244.794933pt;}
.y104{bottom:248.346933pt;}
.y185{bottom:248.461600pt;}
.y127{bottom:248.490933pt;}
.y1c6{bottom:252.220267pt;}
.y1a{bottom:252.514800pt;}
.y15e{bottom:256.478667pt;}
.ya6{bottom:256.650933pt;}
.y3f{bottom:256.723067pt;}
.y1a5{bottom:257.179067pt;}
.ycb{bottom:257.389067pt;}
.y81{bottom:260.275867pt;}
.ye0{bottom:261.657733pt;}
.y137{bottom:263.742533pt;}
.y65{bottom:264.122933pt;}
.y184{bottom:266.457600pt;}
.y103{bottom:268.218933pt;}
.y126{bottom:268.362933pt;}
.y1c5{bottom:270.084267pt;}
.y19{bottom:271.586800pt;}
.y15d{bottom:274.606667pt;}
.y1a4{bottom:275.307067pt;}
.ya5{bottom:275.578933pt;}
.y3e{bottom:276.324400pt;}
.yca{bottom:276.461067pt;}
.y80{bottom:279.475867pt;}
.y136{bottom:283.342533pt;}
.y64{bottom:283.450933pt;}
.y183{bottom:284.453600pt;}
.y1c4{bottom:287.948267pt;}
.y102{bottom:288.090933pt;}
.y125{bottom:288.234933pt;}
.y15c{bottom:292.734667pt;}
.y1a3{bottom:293.435067pt;}
.ydf{bottom:294.245600pt;}
.ya4{bottom:294.506933pt;}
.yc9{bottom:295.533067pt;}
.y18{bottom:298.212400pt;}
.y7f{bottom:298.675867pt;}
.y182{bottom:302.449600pt;}
.y63{bottom:302.778933pt;}
.y135{bottom:302.942533pt;}
.y1c3{bottom:305.812267pt;}
.y3d{bottom:306.234933pt;}
.y101{bottom:307.962933pt;}
.y124{bottom:308.106933pt;}
.y15b{bottom:310.862667pt;}
.y1a2{bottom:311.563067pt;}
.yde{bottom:313.445600pt;}
.ya3{bottom:313.578933pt;}
.yc8{bottom:314.605067pt;}
.y7e{bottom:317.875867pt;}
.y181{bottom:320.445600pt;}
.y62{bottom:322.106933pt;}
.y134{bottom:322.542533pt;}
.y1c2{bottom:323.676267pt;}
.y3c{bottom:325.434933pt;}
.y100{bottom:327.834933pt;}
.y123{bottom:327.978933pt;}
.y15a{bottom:328.990667pt;}
.y1a1{bottom:329.691067pt;}
.ydd{bottom:332.373600pt;}
.ya2{bottom:332.506933pt;}
.yc7{bottom:333.677067pt;}
.y7d{bottom:337.075867pt;}
.y180{bottom:338.441600pt;}
.y61{bottom:341.434933pt;}
.y1c1{bottom:341.540267pt;}
.y133{bottom:342.142533pt;}
.y3b{bottom:344.634933pt;}
.y159{bottom:347.118667pt;}
.yff{bottom:347.706933pt;}
.y1a0{bottom:347.819067pt;}
.y122{bottom:347.850933pt;}
.ydc{bottom:351.312267pt;}
.ya1{bottom:351.434933pt;}
.yc6{bottom:352.749067pt;}
.y17{bottom:355.400533pt;}
.y7c{bottom:356.275867pt;}
.y17f{bottom:356.569600pt;}
.y1c0{bottom:359.404267pt;}
.y60{bottom:360.762933pt;}
.y132{bottom:361.742533pt;}
.y3a{bottom:363.834933pt;}
.y158{bottom:365.246667pt;}
.y19f{bottom:365.947067pt;}
.yfe{bottom:367.578933pt;}
.y121{bottom:367.722933pt;}
.ydb{bottom:370.240267pt;}
.ya0{bottom:370.362933pt;}
.yc5{bottom:371.821067pt;}
.y16{bottom:372.868533pt;}
.y17e{bottom:374.697600pt;}
.y7b{bottom:375.475867pt;}
.y1bf{bottom:377.268267pt;}
.y5f{bottom:380.090933pt;}
.y131{bottom:381.342533pt;}
.y39{bottom:383.034933pt;}
.y157{bottom:383.374667pt;}
.y19e{bottom:384.075067pt;}
.yfd{bottom:387.450933pt;}
.y120{bottom:387.594933pt;}
.yda{bottom:389.232267pt;}
.y9f{bottom:389.290933pt;}
.y15{bottom:390.336533pt;}
.yc4{bottom:390.850400pt;}
.y17d{bottom:392.825600pt;}
.y7a{bottom:394.675867pt;}
.y1be{bottom:395.132267pt;}
.y5e{bottom:399.418933pt;}
.y130{bottom:400.942533pt;}
.y156{bottom:401.502667pt;}
.y19d{bottom:402.203067pt;}
.y38{bottom:402.234933pt;}
.yfc{bottom:407.322933pt;}
.y11f{bottom:407.466933pt;}
.y14{bottom:407.804533pt;}
.yd9{bottom:408.160267pt;}
.y9e{bottom:408.218933pt;}
.yc3{bottom:409.922400pt;}
.y17c{bottom:410.953600pt;}
.y1bd{bottom:412.996267pt;}
.y79{bottom:413.875867pt;}
.y5d{bottom:418.746933pt;}
.y155{bottom:419.630667pt;}
.y19c{bottom:420.331067pt;}
.y12f{bottom:420.542533pt;}
.y37{bottom:421.434933pt;}
.y13{bottom:425.272533pt;}
.yd8{bottom:427.088267pt;}
.y9d{bottom:427.146933pt;}
.yfb{bottom:427.194933pt;}
.y11e{bottom:427.338933pt;}
.yc2{bottom:428.994400pt;}
.y17b{bottom:429.081600pt;}
.y1bc{bottom:430.860267pt;}
.y78{bottom:433.075867pt;}
.y154{bottom:437.758667pt;}
.y5c{bottom:438.074933pt;}
.y19b{bottom:438.459067pt;}
.y36{bottom:440.634933pt;}
.y12{bottom:442.740533pt;}
.yd7{bottom:446.016267pt;}
.y9c{bottom:446.074933pt;}
.yfa{bottom:447.066933pt;}
.y17a{bottom:447.209600pt;}
.y11d{bottom:447.210933pt;}
.y12e{bottom:447.701600pt;}
.yc1{bottom:448.066400pt;}
.y1bb{bottom:448.724267pt;}
.y77{bottom:452.275867pt;}
.y153{bottom:455.886667pt;}
.y19a{bottom:456.587067pt;}
.y5b{bottom:457.402933pt;}
.y35{bottom:459.834933pt;}
.y11{bottom:460.208533pt;}
.yd6{bottom:464.944267pt;}
.y9b{bottom:465.002933pt;}
.y179{bottom:465.337600pt;}
.y1ba{bottom:466.588267pt;}
.yf9{bottom:466.938933pt;}
.y11c{bottom:467.082933pt;}
.yc0{bottom:467.138400pt;}
.y76{bottom:471.475867pt;}
.y152{bottom:474.014667pt;}
.y199{bottom:474.715067pt;}
.y5a{bottom:476.730933pt;}
.y10{bottom:477.676533pt;}
.y34{bottom:479.034933pt;}
.y178{bottom:483.465600pt;}
.yd5{bottom:483.872267pt;}
.y9a{bottom:483.930933pt;}
.ybf{bottom:486.210400pt;}
.yf8{bottom:486.810933pt;}
.y11b{bottom:486.954933pt;}
.y75{bottom:490.675867pt;}
.y151{bottom:492.142667pt;}
.y198{bottom:492.843067pt;}
.yf{bottom:495.144533pt;}
.y1de{bottom:495.921600pt;}
.y59{bottom:496.058933pt;}
.y33{bottom:498.234933pt;}
.y177{bottom:501.593600pt;}
.y1b9{bottom:502.321600pt;}
.yd4{bottom:502.800267pt;}
.y99{bottom:502.858933pt;}
.ybe{bottom:505.282400pt;}
.yf7{bottom:506.682933pt;}
.y11a{bottom:506.826933pt;}
.y74{bottom:509.875867pt;}
.y150{bottom:510.270667pt;}
.y197{bottom:510.971067pt;}
.y1dd{bottom:511.921600pt;}
.ye{bottom:512.612533pt;}
.y58{bottom:515.386933pt;}
.y32{bottom:517.434933pt;}
.y176{bottom:519.721600pt;}
.yd3{bottom:521.728267pt;}
.y98{bottom:521.786933pt;}
.ybd{bottom:524.354400pt;}
.yf6{bottom:526.554933pt;}
.y119{bottom:526.698933pt;}
.y1dc{bottom:527.921600pt;}
.y14f{bottom:528.398667pt;}
.y73{bottom:529.075867pt;}
.y196{bottom:529.099067pt;}
.y57{bottom:534.714933pt;}
.y31{bottom:536.634933pt;}
.yd{bottom:537.638133pt;}
.y175{bottom:537.849600pt;}
.y1b8{bottom:539.649600pt;}
.yd2{bottom:540.656267pt;}
.y97{bottom:540.714933pt;}
.ybc{bottom:543.415733pt;}
.y1db{bottom:543.921600pt;}
.yf5{bottom:546.426933pt;}
.y14e{bottom:546.526667pt;}
.y118{bottom:546.570933pt;}
.y195{bottom:547.227067pt;}
.y72{bottom:548.275867pt;}
.y56{bottom:554.042933pt;}
.y30{bottom:555.834933pt;}
.y174{bottom:555.977600pt;}
.y1b7{bottom:559.121600pt;}
.yd1{bottom:559.584267pt;}
.y96{bottom:559.642933pt;}
.y1da{bottom:559.921600pt;}
.ybb{bottom:562.487733pt;}
.y14d{bottom:564.654667pt;}
.y194{bottom:565.355067pt;}
.yf4{bottom:566.298933pt;}
.y117{bottom:566.442933pt;}
.y71{bottom:567.475867pt;}
.y55{bottom:573.370933pt;}
.y173{bottom:574.105600pt;}
.y2f{bottom:575.034933pt;}
.yd0{bottom:578.512267pt;}
.y95{bottom:578.570933pt;}
.y1b6{bottom:578.588267pt;}
.yba{bottom:581.538400pt;}
.y14c{bottom:582.782667pt;}
.y193{bottom:583.483067pt;}
.yf3{bottom:586.170933pt;}
.y116{bottom:586.314933pt;}
.y70{bottom:586.675867pt;}
.y172{bottom:592.233600pt;}
.y54{bottom:592.698933pt;}
.yc{bottom:593.234133pt;}
.y2e{bottom:594.234933pt;}
.y1d9{bottom:595.121600pt;}
.ycf{bottom:597.440267pt;}
.y94{bottom:597.498933pt;}
.yb9{bottom:600.610400pt;}
.y14b{bottom:600.910667pt;}
.y192{bottom:601.611067pt;}
.y6f{bottom:605.875867pt;}
.yf2{bottom:606.042933pt;}
.y115{bottom:606.186933pt;}
.y171{bottom:610.361600pt;}
.yb{bottom:610.438133pt;}
.y53{bottom:612.026933pt;}
.y1d8{bottom:612.721600pt;}
.y2d{bottom:613.434933pt;}
.y93{bottom:616.426933pt;}
.y14a{bottom:619.038667pt;}
.yb8{bottom:619.682400pt;}
.y191{bottom:619.739067pt;}
.y6e{bottom:625.075867pt;}
.yf1{bottom:625.914933pt;}
.y114{bottom:626.058933pt;}
.y170{bottom:628.489600pt;}
.y52{bottom:631.354933pt;}
.y2c{bottom:632.634933pt;}
.y1b5{bottom:633.788267pt;}
.y92{bottom:635.354933pt;}
.y149{bottom:637.166667pt;}
.y190{bottom:637.867067pt;}
.yb7{bottom:638.754400pt;}
.y6d{bottom:644.275867pt;}
.yf0{bottom:645.786933pt;}
.y113{bottom:645.930933pt;}
.ya{bottom:646.454133pt;}
.y16f{bottom:646.617600pt;}
.y1d7{bottom:649.521600pt;}
.y1b4{bottom:650.054933pt;}
.y51{bottom:650.682933pt;}
.y2b{bottom:651.834933pt;}
.y91{bottom:654.282933pt;}
.y148{bottom:655.294667pt;}
.y18f{bottom:655.995067pt;}
.yb6{bottom:657.826400pt;}
.ye7{bottom:663.475867pt;}
.y16e{bottom:664.745600pt;}
.yef{bottom:665.658933pt;}
.y112{bottom:665.802933pt;}
.y1b3{bottom:666.321600pt;}
.y1d6{bottom:667.121600pt;}
.y50{bottom:670.010933pt;}
.y2a{bottom:671.034933pt;}
.y90{bottom:673.210933pt;}
.y9{bottom:673.246133pt;}
.y147{bottom:673.422667pt;}
.y18e{bottom:674.401733pt;}
.yb5{bottom:677.026400pt;}
.y1b2{bottom:682.588267pt;}
.y16d{bottom:682.873600pt;}
.y1d5{bottom:684.721600pt;}
.yee{bottom:685.530933pt;}
.y111{bottom:685.674933pt;}
.y4f{bottom:689.338933pt;}
.y29{bottom:690.234933pt;}
.y146{bottom:691.550667pt;}
.y8f{bottom:692.138933pt;}
.y18d{bottom:692.808400pt;}
.yb4{bottom:696.226400pt;}
.y1b1{bottom:698.854933pt;}
.y8{bottom:700.038133pt;}
.y16c{bottom:701.001600pt;}
.y1d4{bottom:702.321600pt;}
.yed{bottom:705.402933pt;}
.y110{bottom:705.546933pt;}
.y4e{bottom:708.666933pt;}
.y28{bottom:709.434933pt;}
.y145{bottom:709.678667pt;}
.y8e{bottom:711.066933pt;}
.yb3{bottom:715.426400pt;}
.y16b{bottom:719.129600pt;}
.y1d3{bottom:719.921600pt;}
.yec{bottom:725.274933pt;}
.y10f{bottom:725.418933pt;}
.y144{bottom:727.806667pt;}
.y4d{bottom:727.994933pt;}
.y27{bottom:728.634933pt;}
.y8d{bottom:729.994933pt;}
.y18c{bottom:730.675067pt;}
.y1b0{bottom:734.590933pt;}
.y16a{bottom:736.861600pt;}
.y1d2{bottom:737.521600pt;}
.yeb{bottom:745.146933pt;}
.y10e{bottom:745.290933pt;}
.y143{bottom:745.934667pt;}
.yb2{bottom:745.955067pt;}
.y4c{bottom:747.322933pt;}
.y26{bottom:747.834933pt;}
.y7{bottom:748.759467pt;}
.y8c{bottom:748.922933pt;}
.y1af{bottom:752.454933pt;}
.y169{bottom:754.593600pt;}
.y1d1{bottom:755.121600pt;}
.yb1{bottom:761.957067pt;}
.y142{bottom:764.062667pt;}
.y6{bottom:764.359467pt;}
.yea{bottom:765.018933pt;}
.y10d{bottom:765.162933pt;}
.y4b{bottom:766.650933pt;}
.y25{bottom:767.034933pt;}
.y8b{bottom:767.850933pt;}
.y18b{bottom:767.997733pt;}
.y168{bottom:772.325600pt;}
.y1d0{bottom:772.721600pt;}
.yb0{bottom:777.959067pt;}
.y5{bottom:779.959467pt;}
.y4{bottom:779.961600pt;}
.y141{bottom:782.322667pt;}
.ye9{bottom:784.890933pt;}
.y10c{bottom:785.034933pt;}
.y4a{bottom:785.978933pt;}
.y24{bottom:786.234933pt;}
.y8a{bottom:786.778933pt;}
.y18a{bottom:787.469733pt;}
.y1ae{bottom:789.793600pt;}
.y167{bottom:790.057600pt;}
.y1cf{bottom:790.321600pt;}
.yaf{bottom:793.961067pt;}
.y140{bottom:800.582667pt;}
.ye8{bottom:804.762933pt;}
.y10b{bottom:804.906933pt;}
.y49{bottom:805.306933pt;}
.y23{bottom:805.434933pt;}
.y89{bottom:805.706933pt;}
.y189{bottom:806.941733pt;}
.y1ad{bottom:807.657600pt;}
.y166{bottom:807.789600pt;}
.y1ce{bottom:807.921600pt;}
.y3{bottom:809.921600pt;}
.yae{bottom:809.963067pt;}
.y22{bottom:824.634933pt;}
.y2{bottom:825.521600pt;}
.yad{bottom:825.965067pt;}
.y13f{bottom:826.408400pt;}
.ha{height:23.288802pt;}
.hc{height:25.083333pt;}
.hd{height:28.666667pt;}
.h3{height:31.700521pt;}
.h11{height:34.041667pt;}
.h7{height:35.546875pt;}
.h2{height:35.833333pt;}
.h4{height:39.101562pt;}
.h13{height:39.416667pt;}
.h12{height:43.000000pt;}
.hb{height:43.022135pt;}
.h14{height:44.661458pt;}
.h5{height:45.286458pt;}
.he{height:47.550781pt;}
.h8{height:49.815104pt;}
.h9{height:54.343750pt;}
.hf{height:54.386417pt;}
.h10{height:54.514417pt;}
.h6{height:76.986979pt;}
.h0{height:907.086667pt;}
.h1{height:907.333333pt;}
.w0{width:642.520000pt;}
.w1{width:642.666667pt;}
.x0{left:0.000000pt;}
.xb{left:68.031467pt;}
.x1{left:86.929200pt;}
.x6{left:105.826800pt;}
.xc{left:124.732133pt;}
.x2{left:127.262533pt;}
.x3{left:145.312000pt;}
.xf{left:161.214267pt;}
.x5{left:177.102000pt;}
.x10{left:239.962133pt;}
.x7{left:290.582667pt;}
.x9{left:294.408533pt;}
.x8{left:360.012267pt;}
.x4{left:365.259867pt;}
.xe{left:452.227333pt;}
.xd{left:460.194667pt;}
.xa{left:542.257200pt;}
}




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