
    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_7f8a30f69acf655b90754756.woff')format("woff");}.ff1{font-family:ff1;line-height:0.682617;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_c459c46b67880d70e4d64c9e.woff')format("woff");}.ff2{font-family:ff2;line-height:0.922852;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_a314bdab8a0c2f3ea632f375.woff')format("woff");}.ff3{font-family:ff3;line-height:0.907715;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_1dbc84960bccaef9d2e82ccf.woff')format("woff");}.ff4{font-family:ff4;line-height:0.708000;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_ad8e5c280b3309ca36bfb56d.woff')format("woff");}.ff5{font-family:ff5;line-height:0.922852;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_f3d21f7388792be25fd757fc.woff')format("woff");}.ff6{font-family:ff6;line-height:1.028000;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_85865faff835e4b405f9f2eb.woff')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_08f3c73ed855f09415144819.woff')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_44f8cf6118d8dade179167a4.woff')format("woff");}.ff9{font-family:ff9;line-height:0.881836;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_94e026c0a981ac1d1c7fd0d3.woff')format("woff");}.ffa{font-family:ffa;line-height:0.899414;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);}
.v2{vertical-align:-16.830000px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:19.800000px;}
.v3{vertical-align:23.728200px;}
.v1{vertical-align:53.760000px;}
.ls2d{letter-spacing:-2.808000px;}
.ls1f{letter-spacing:-1.152000px;}
.ls2a{letter-spacing:-1.008000px;}
.ls2b{letter-spacing:-0.936000px;}
.ls1b{letter-spacing:-0.864000px;}
.ls28{letter-spacing:-0.792000px;}
.ls19{letter-spacing:-0.720000px;}
.lsf{letter-spacing:-0.648000px;}
.ls1a{letter-spacing:-0.576000px;}
.ls22{letter-spacing:-0.504000px;}
.ls17{letter-spacing:-0.432000px;}
.ls18{letter-spacing:-0.360000px;}
.ls4{letter-spacing:-0.300000px;}
.ls10{letter-spacing:-0.288000px;}
.ls2e{letter-spacing:-0.240000px;}
.ls16{letter-spacing:-0.216000px;}
.ls30{letter-spacing:-0.210000px;}
.ls12{letter-spacing:-0.144000px;}
.ls7{letter-spacing:-0.072000px;}
.ls3{letter-spacing:0.000000px;}
.ls24{letter-spacing:0.000600px;}
.ls9{letter-spacing:0.072000px;}
.ls14{letter-spacing:0.144000px;}
.ls29{letter-spacing:0.151200px;}
.lsc{letter-spacing:0.216000px;}
.ls13{letter-spacing:0.288000px;}
.ls0{letter-spacing:0.300000px;}
.ls23{letter-spacing:0.311400px;}
.ls1e{letter-spacing:0.360000px;}
.ls15{letter-spacing:0.432000px;}
.ls1d{letter-spacing:0.504000px;}
.lsd{letter-spacing:0.576000px;}
.ls11{letter-spacing:0.648000px;}
.ls8{letter-spacing:0.720000px;}
.lsb{letter-spacing:0.792000px;}
.lse{letter-spacing:0.864000px;}
.lsa{letter-spacing:0.936000px;}
.ls21{letter-spacing:1.008000px;}
.ls2f{letter-spacing:1.080000px;}
.ls27{letter-spacing:1.296000px;}
.ls1c{letter-spacing:1.519200px;}
.ls20{letter-spacing:1.728000px;}
.ls31{letter-spacing:2.448000px;}
.ls1{letter-spacing:2.850000px;}
.ls25{letter-spacing:3.364800px;}
.ls26{letter-spacing:3.408000px;}
.ls6{letter-spacing:4.560000px;}
.ls32{letter-spacing:4.752000px;}
.ls2c{letter-spacing:6.624000px;}
.ls33{letter-spacing:8.100000px;}
.ls5{letter-spacing:8.460000px;}
.ls2{letter-spacing:10.740000px;}
.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:-25.320000px;}
.ws1d{word-spacing:-21.168000px;}
.ws1e{word-spacing:-20.232000px;}
.ws1c{word-spacing:-19.944000px;}
.ws1{word-spacing:-18.867000px;}
.ws1b{word-spacing:-17.784000px;}
.ws45{word-spacing:-16.860000px;}
.wsaf{word-spacing:-14.820000px;}
.ws77{word-spacing:-14.313600px;}
.ws2{word-spacing:-14.162400px;}
.ws64{word-spacing:-13.488000px;}
.ws7{word-spacing:-11.100000px;}
.ws8a{word-spacing:-10.031700px;}
.wsae{word-spacing:-8.100000px;}
.ws9c{word-spacing:-6.426000px;}
.wsac{word-spacing:-4.752000px;}
.ws10{word-spacing:-4.560000px;}
.ws7a{word-spacing:-2.088000px;}
.ws7b{word-spacing:-2.016000px;}
.ws7f{word-spacing:-1.872000px;}
.ws8e{word-spacing:-1.800000px;}
.ws79{word-spacing:-1.656000px;}
.ws8f{word-spacing:-1.224000px;}
.ws7d{word-spacing:-1.008000px;}
.ws29{word-spacing:-0.792000px;}
.ws5c{word-spacing:-0.360000px;}
.ws12{word-spacing:-0.300000px;}
.ws38{word-spacing:-0.288000px;}
.ws7c{word-spacing:-0.216000px;}
.ws27{word-spacing:-0.072000px;}
.ws4{word-spacing:0.000000px;}
.ws3c{word-spacing:0.072000px;}
.ws91{word-spacing:0.144000px;}
.ws94{word-spacing:0.216000px;}
.wsa2{word-spacing:0.240000px;}
.ws28{word-spacing:0.288000px;}
.ws6{word-spacing:0.300000px;}
.ws49{word-spacing:0.360000px;}
.wsa9{word-spacing:0.432000px;}
.ws42{word-spacing:0.504000px;}
.ws93{word-spacing:0.576000px;}
.ws2a{word-spacing:0.648000px;}
.ws48{word-spacing:0.720000px;}
.ws7e{word-spacing:0.792000px;}
.ws70{word-spacing:0.864000px;}
.ws6c{word-spacing:0.936000px;}
.wsa4{word-spacing:1.008000px;}
.wsc{word-spacing:1.140000px;}
.ws58{word-spacing:1.152000px;}
.ws14{word-spacing:1.200000px;}
.ws2c{word-spacing:1.224000px;}
.ws39{word-spacing:1.296000px;}
.ws44{word-spacing:1.368000px;}
.ws4d{word-spacing:1.440000px;}
.ws3a{word-spacing:1.512000px;}
.ws1f{word-spacing:1.584000px;}
.ws11{word-spacing:1.620000px;}
.ws57{word-spacing:1.656000px;}
.ws50{word-spacing:1.728000px;}
.ws9{word-spacing:1.800000px;}
.ws46{word-spacing:1.944000px;}
.wsa3{word-spacing:2.016000px;}
.ws6b{word-spacing:2.088000px;}
.ws76{word-spacing:2.160000px;}
.ws89{word-spacing:2.232000px;}
.ws24{word-spacing:2.304000px;}
.wsa1{word-spacing:2.400000px;}
.ws8b{word-spacing:2.448000px;}
.ws65{word-spacing:2.520000px;}
.ws3d{word-spacing:2.592000px;}
.ws23{word-spacing:2.664000px;}
.ws95{word-spacing:2.736000px;}
.ws33{word-spacing:2.808000px;}
.ws16{word-spacing:2.880000px;}
.ws2b{word-spacing:2.952000px;}
.wsad{word-spacing:2.976000px;}
.ws5f{word-spacing:3.024000px;}
.ws73{word-spacing:3.096000px;}
.ws5e{word-spacing:3.168000px;}
.ws5b{word-spacing:3.240000px;}
.wsf{word-spacing:3.360000px;}
.ws4e{word-spacing:3.384000px;}
.ws59{word-spacing:3.528000px;}
.ws53{word-spacing:3.600000px;}
.ws84{word-spacing:3.672000px;}
.ws13{word-spacing:3.720000px;}
.ws6f{word-spacing:3.744000px;}
.ws78{word-spacing:3.816000px;}
.ws17{word-spacing:3.888000px;}
.wsab{word-spacing:3.960000px;}
.wsb{word-spacing:3.990000px;}
.ws3b{word-spacing:4.104000px;}
.wse{word-spacing:4.140000px;}
.ws62{word-spacing:4.176000px;}
.wsd{word-spacing:4.200000px;}
.ws74{word-spacing:4.248000px;}
.ws4c{word-spacing:4.320000px;}
.wsa{word-spacing:4.464000px;}
.ws47{word-spacing:4.536000px;}
.ws36{word-spacing:4.608000px;}
.ws6d{word-spacing:4.680000px;}
.ws15{word-spacing:4.752000px;}
.ws5d{word-spacing:4.824000px;}
.ws21{word-spacing:4.896000px;}
.ws61{word-spacing:4.968000px;}
.ws1a{word-spacing:5.040000px;}
.ws32{word-spacing:5.112000px;}
.ws51{word-spacing:5.184000px;}
.ws22{word-spacing:5.256000px;}
.ws31{word-spacing:5.328000px;}
.ws25{word-spacing:5.400000px;}
.ws3e{word-spacing:5.472000px;}
.ws2e{word-spacing:5.544000px;}
.ws60{word-spacing:5.616000px;}
.ws3f{word-spacing:5.760000px;}
.ws80{word-spacing:5.832000px;}
.ws2f{word-spacing:5.904000px;}
.ws19{word-spacing:5.976000px;}
.ws68{word-spacing:6.048000px;}
.ws67{word-spacing:6.120000px;}
.ws8c{word-spacing:6.264000px;}
.ws35{word-spacing:6.336000px;}
.ws4f{word-spacing:6.408000px;}
.ws75{word-spacing:6.480000px;}
.ws41{word-spacing:6.552000px;}
.ws98{word-spacing:6.624000px;}
.ws30{word-spacing:6.696000px;}
.ws92{word-spacing:6.768000px;}
.ws9a{word-spacing:6.840000px;}
.ws83{word-spacing:6.912000px;}
.ws43{word-spacing:6.984000px;}
.ws37{word-spacing:7.056000px;}
.ws2d{word-spacing:7.128000px;}
.ws63{word-spacing:7.200000px;}
.ws85{word-spacing:7.272000px;}
.ws66{word-spacing:7.344000px;}
.ws54{word-spacing:7.488000px;}
.ws71{word-spacing:7.560000px;}
.ws4a{word-spacing:7.704000px;}
.ws52{word-spacing:7.776000px;}
.ws87{word-spacing:7.848000px;}
.wsaa{word-spacing:7.992000px;}
.ws55{word-spacing:8.064000px;}
.ws9b{word-spacing:8.136000px;}
.ws6e{word-spacing:8.208000px;}
.ws82{word-spacing:8.352000px;}
.ws0{word-spacing:8.376000px;}
.ws8{word-spacing:8.400000px;}
.ws6a{word-spacing:8.496000px;}
.ws4b{word-spacing:8.568000px;}
.ws8d{word-spacing:8.640000px;}
.wsa5{word-spacing:8.712000px;}
.ws18{word-spacing:8.784000px;}
.ws96{word-spacing:8.856000px;}
.wsa6{word-spacing:8.928000px;}
.ws97{word-spacing:9.000000px;}
.wsa8{word-spacing:9.144000px;}
.ws86{word-spacing:9.216000px;}
.ws69{word-spacing:9.288000px;}
.ws34{word-spacing:9.360000px;}
.ws88{word-spacing:9.432000px;}
.ws81{word-spacing:9.504000px;}
.ws5a{word-spacing:9.720000px;}
.ws56{word-spacing:9.792000px;}
.ws99{word-spacing:9.864000px;}
.ws40{word-spacing:9.936000px;}
.ws20{word-spacing:10.080000px;}
.ws26{word-spacing:10.152000px;}
.ws90{word-spacing:10.320000px;}
.ws72{word-spacing:11.376000px;}
.wsa7{word-spacing:17.280000px;}
.ws5{word-spacing:34.080000px;}
.ws9d{word-spacing:164.040000px;}
.ws9f{word-spacing:169.314000px;}
.wsa0{word-spacing:181.980000px;}
.ws9e{word-spacing:183.720000px;}
._e{margin-left:-940.386000px;}
._1{margin-left:-38.880000px;}
._15{margin-left:-14.306400px;}
._9{margin-left:-11.928000px;}
._c{margin-left:-10.116000px;}
._11{margin-left:-8.220000px;}
._f{margin-left:-7.110000px;}
._2{margin-left:-6.024000px;}
._d{margin-left:-4.992000px;}
._7{margin-left:-3.744000px;}
._a{margin-left:-2.532000px;}
._6{margin-left:-1.020000px;}
._b{width:1.728000px;}
._4{width:2.730000px;}
._8{width:3.792000px;}
._10{width:5.148000px;}
._14{width:7.408800px;}
._12{width:8.784000px;}
._13{width:9.936000px;}
._5{width:11.400000px;}
._16{width:13.796100px;}
._3{width:31.200000px;}
._17{width:52.620000px;}
._20{width:57.780000px;}
._1a{width:59.472000px;}
._1d{width:71.400000px;}
._18{width:79.320000px;}
._22{width:84.180000px;}
._1e{width:99.000000px;}
._21{width:112.860000px;}
._1b{width:116.292000px;}
._1c{width:128.220000px;}
._19{width:147.420000px;}
._1f{width:155.820000px;}
._23{width:171.000000px;}
._0{width:201.564000px;}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:35.700000px;}
.fs7{font-size:42.000000px;}
.fs6{font-size:48.000000px;}
.fs3{font-size:50.400000px;}
.fs8{font-size:54.000000px;}
.fs1{font-size:57.000000px;}
.fs0{font-size:60.000000px;}
.fs4{font-size:72.000000px;}
.fs2{font-size:120.000000px;}
.y0{bottom:0.000000px;}
.y2{bottom:55.500000px;}
.y1{bottom:72.000000px;}
.y6d{bottom:117.000000px;}
.y118{bottom:117.078000px;}
.y48{bottom:117.944400px;}
.y22{bottom:121.207500px;}
.y160{bottom:122.412000px;}
.y18d{bottom:123.158250px;}
.y11d{bottom:132.000000px;}
.yf2{bottom:136.207500px;}
.y117{bottom:138.984000px;}
.y6c{bottom:139.500000px;}
.y47{bottom:140.300400px;}
.y18c{bottom:141.758250px;}
.yd5{bottom:143.707500px;}
.y15f{bottom:144.768000px;}
.y11c{bottom:147.000000px;}
.y18b{bottom:160.358250px;}
.y116{bottom:160.890000px;}
.y6b{bottom:162.000000px;}
.y46{bottom:162.656400px;}
.yb2{bottom:163.254000px;}
.y21{bottom:165.144300px;}
.yd4{bottom:166.207500px;}
.y15e{bottom:167.124000px;}
.y90{bottom:168.796050px;}
.y11b{bottom:177.000000px;}
.yf1{bottom:178.038000px;}
.y18a{bottom:178.958250px;}
.y115{bottom:182.796000px;}
.y20{bottom:184.044300px;}
.y6a{bottom:184.500000px;}
.y45{bottom:185.012400px;}
.yb1{bottom:186.204000px;}
.yd3{bottom:188.707500px;}
.y15d{bottom:189.480000px;}
.y8f{bottom:191.296050px;}
.y11a{bottom:192.000000px;}
.y189{bottom:197.558250px;}
.yf0{bottom:199.944000px;}
.y1f{bottom:202.944300px;}
.y13c{bottom:204.301500px;}
.y114{bottom:204.702000px;}
.y69{bottom:207.000000px;}
.y44{bottom:207.368400px;}
.yb0{bottom:209.154000px;}
.y119{bottom:211.207500px;}
.y15c{bottom:211.836000px;}
.y8e{bottom:213.346050px;}
.y188{bottom:216.158250px;}
.y1e{bottom:221.844300px;}
.yef{bottom:221.850000px;}
.y13b{bottom:226.495500px;}
.y113{bottom:226.608000px;}
.y68{bottom:229.500000px;}
.y43{bottom:229.724400px;}
.yd2{bottom:230.682000px;}
.yaf{bottom:232.104000px;}
.y15b{bottom:234.192000px;}
.y187{bottom:234.758250px;}
.y8d{bottom:235.396050px;}
.y1d{bottom:240.744300px;}
.yee{bottom:243.900000px;}
.y112{bottom:248.514000px;}
.y13a{bottom:248.689500px;}
.y67{bottom:252.000000px;}
.y42{bottom:252.080400px;}
.yd1{bottom:252.876000px;}
.y186{bottom:253.358250px;}
.yae{bottom:255.054000px;}
.y15a{bottom:256.548000px;}
.y8c{bottom:257.446050px;}
.y1c{bottom:259.644300px;}
.yed{bottom:265.950000px;}
.y111{bottom:270.420000px;}
.y139{bottom:270.883500px;}
.y185{bottom:271.958250px;}
.y41{bottom:274.430400px;}
.y66{bottom:274.500000px;}
.yd0{bottom:275.070000px;}
.yad{bottom:278.004000px;}
.y1b{bottom:278.544300px;}
.y159{bottom:278.904000px;}
.y8b{bottom:279.496050px;}
.yec{bottom:288.000000px;}
.y184{bottom:290.558250px;}
.y110{bottom:292.326000px;}
.y40{bottom:296.780400px;}
.y65{bottom:297.000000px;}
.ycf{bottom:297.264000px;}
.y1a{bottom:297.444300px;}
.y158{bottom:301.260000px;}
.y8a{bottom:301.546050px;}
.y183{bottom:309.158250px;}
.yac{bottom:309.450000px;}
.yeb{bottom:310.050000px;}
.y138{bottom:312.148500px;}
.y10f{bottom:314.232000px;}
.y19{bottom:316.344300px;}
.yce{bottom:319.458000px;}
.y64{bottom:319.500000px;}
.y89{bottom:323.596050px;}
.y157{bottom:323.616000px;}
.y182{bottom:327.758250px;}
.y137{bottom:330.298500px;}
.yea{bottom:332.100000px;}
.yab{bottom:332.400000px;}
.y18{bottom:335.244300px;}
.y10e{bottom:336.138000px;}
.y3f{bottom:341.480400px;}
.ycd{bottom:341.652000px;}
.y63{bottom:342.000000px;}
.y88{bottom:345.646050px;}
.y156{bottom:345.972000px;}
.y181{bottom:346.358250px;}
.y136{bottom:348.448500px;}
.y17{bottom:354.144300px;}
.ye9{bottom:354.150000px;}
.yaa{bottom:355.254000px;}
.y1a5{bottom:357.000000px;}
.y10d{bottom:358.044000px;}
.y3e{bottom:360.080400px;}
.ycc{bottom:363.846000px;}
.y62{bottom:364.500000px;}
.y180{bottom:364.958250px;}
.y87{bottom:367.696050px;}
.y155{bottom:368.328000px;}
.y16{bottom:373.044300px;}
.y135{bottom:375.433500px;}
.y1a4{bottom:375.750000px;}
.ye8{bottom:376.200000px;}
.ya9{bottom:378.204000px;}
.y10c{bottom:379.950000px;}
.y17f{bottom:383.558250px;}
.ycb{bottom:386.040000px;}
.y61{bottom:387.000000px;}
.y3d{bottom:387.181050px;}
.y86{bottom:389.746050px;}
.y154{bottom:390.684000px;}
.y134{bottom:393.583500px;}
.y1a3{bottom:394.500000px;}
.ye7{bottom:398.250000px;}
.y15{bottom:400.449300px;}
.ya8{bottom:401.154000px;}
.y10b{bottom:401.856000px;}
.y17e{bottom:402.158250px;}
.y3c{bottom:405.781050px;}
.yca{bottom:408.234000px;}
.y60{bottom:409.500000px;}
.y133{bottom:411.733500px;}
.y85{bottom:411.796050px;}
.y153{bottom:413.040000px;}
.y1a2{bottom:413.250000px;}
.y14{bottom:419.349300px;}
.ye6{bottom:420.300000px;}
.y17d{bottom:420.758250px;}
.y10a{bottom:423.762000px;}
.ya7{bottom:424.104000px;}
.y3b{bottom:424.381050px;}
.yc9{bottom:430.428000px;}
.y5f{bottom:432.000000px;}
.y84{bottom:433.846050px;}
.y152{bottom:435.396000px;}
.y13{bottom:438.249300px;}
.y132{bottom:438.718500px;}
.ye5{bottom:442.350000px;}
.y109{bottom:445.668000px;}
.ya6{bottom:447.054000px;}
.y1a1{bottom:450.750000px;}
.y3a{bottom:451.486050px;}
.y17c{bottom:452.114250px;}
.y5e{bottom:454.500000px;}
.y83{bottom:455.904000px;}
.y131{bottom:456.868500px;}
.y12{bottom:457.149300px;}
.y151{bottom:457.752000px;}
.yc8{bottom:461.136000px;}
.ye4{bottom:464.400000px;}
.y108{bottom:467.574000px;}
.y1a0{bottom:469.500000px;}
.ya5{bottom:470.004000px;}
.y39{bottom:470.086050px;}
.y130{bottom:475.018500px;}
.y11{bottom:476.049300px;}
.y5d{bottom:477.000000px;}
.y82{bottom:477.954000px;}
.y150{bottom:480.108000px;}
.y17b{bottom:482.802000px;}
.yc7{bottom:483.330000px;}
.ye3{bottom:486.450000px;}
.y38{bottom:488.686050px;}
.y107{bottom:489.480000px;}
.ya4{bottom:492.954000px;}
.y10{bottom:494.949300px;}
.y5c{bottom:499.500000px;}
.y81{bottom:500.004000px;}
.y17a{bottom:500.646000px;}
.y12f{bottom:502.003500px;}
.y14f{bottom:502.464000px;}
.yc6{bottom:505.524000px;}
.y19f{bottom:507.000000px;}
.y37{bottom:507.286050px;}
.ye2{bottom:508.500000px;}
.y106{bottom:511.386000px;}
.yf{bottom:513.849300px;}
.ya3{bottom:515.904000px;}
.y12e{bottom:520.153500px;}
.y5b{bottom:522.000000px;}
.y80{bottom:522.054000px;}
.y14e{bottom:524.820000px;}
.y19e{bottom:525.750000px;}
.y36{bottom:525.886050px;}
.yc5{bottom:527.718000px;}
.ye1{bottom:530.550000px;}
.y105{bottom:533.292000px;}
.ya2{bottom:538.854000px;}
.ye{bottom:541.254300px;}
.y7f{bottom:544.104000px;}
.y35{bottom:544.486050px;}
.y5a{bottom:544.500000px;}
.y12d{bottom:547.138500px;}
.y14d{bottom:547.176000px;}
.y179{bottom:549.594000px;}
.yc4{bottom:549.912000px;}
.ye0{bottom:552.600000px;}
.y104{bottom:555.198000px;}
.ya1{bottom:561.804000px;}
.y34{bottom:563.086050px;}
.y19d{bottom:563.250000px;}
.y178{bottom:564.438000px;}
.y12c{bottom:565.288500px;}
.y7e{bottom:566.154000px;}
.y59{bottom:567.000000px;}
.y14c{bottom:569.532000px;}
.yc3{bottom:572.106000px;}
.ydf{bottom:574.650000px;}
.y103{bottom:577.104000px;}
.y177{bottom:579.282000px;}
.y33{bottom:581.686050px;}
.y19c{bottom:582.000000px;}
.y12b{bottom:583.438500px;}
.ya0{bottom:584.610000px;}
.yd{bottom:586.554300px;}
.y7d{bottom:588.204000px;}
.y58{bottom:589.500000px;}
.y14b{bottom:591.888000px;}
.y176{bottom:594.138000px;}
.yc2{bottom:594.306000px;}
.yde{bottom:596.700000px;}
.y102{bottom:599.010000px;}
.y32{bottom:600.286050px;}
.y19b{bottom:600.750000px;}
.yc{bottom:606.054300px;}
.y9f{bottom:607.416000px;}
.y175{bottom:608.982000px;}
.y7c{bottom:610.254000px;}
.y12a{bottom:610.423500px;}
.y57{bottom:612.000000px;}
.y14a{bottom:614.244000px;}
.yc1{bottom:616.506000px;}
.ydd{bottom:618.750000px;}
.y31{bottom:618.886050px;}
.y19a{bottom:619.500000px;}
.y101{bottom:620.916000px;}
.y174{bottom:623.826000px;}
.y129{bottom:628.573500px;}
.yb{bottom:628.704300px;}
.y9e{bottom:630.222000px;}
.y7b{bottom:632.304000px;}
.y56{bottom:634.500000px;}
.y149{bottom:636.600000px;}
.y30{bottom:637.486050px;}
.y173{bottom:638.670000px;}
.yc0{bottom:638.706000px;}
.ydc{bottom:640.800000px;}
.y100{bottom:642.822000px;}
.y128{bottom:646.723500px;}
.y9d{bottom:653.028000px;}
.y172{bottom:653.514000px;}
.y7a{bottom:654.354000px;}
.y55{bottom:657.000000px;}
.y148{bottom:658.950000px;}
.ybf{bottom:660.960000px;}
.ydb{bottom:662.850000px;}
.y2f{bottom:664.591050px;}
.yff{bottom:664.728000px;}
.y171{bottom:668.370000px;}
.y127{bottom:673.708500px;}
.ya{bottom:674.004300px;}
.y9c{bottom:675.834000px;}
.y79{bottom:676.404000px;}
.y54{bottom:679.500000px;}
.ybe{bottom:683.154000px;}
.y2e{bottom:683.191050px;}
.y170{bottom:683.214000px;}
.yda{bottom:684.900000px;}
.yfe{bottom:686.634000px;}
.y199{bottom:687.000000px;}
.y126{bottom:691.858500px;}
.y9{bottom:693.504300px;}
.y16f{bottom:698.058000px;}
.y78{bottom:698.454000px;}
.y9b{bottom:698.640000px;}
.y2d{bottom:701.791050px;}
.y53{bottom:702.000000px;}
.y147{bottom:703.590000px;}
.ybd{bottom:705.348000px;}
.y198{bottom:705.750000px;}
.yd9{bottom:706.950000px;}
.yfd{bottom:708.540000px;}
.y125{bottom:710.008500px;}
.y16e{bottom:712.902000px;}
.y8{bottom:716.154300px;}
.y2c{bottom:720.391050px;}
.y77{bottom:720.504000px;}
.y9a{bottom:721.446000px;}
.y52{bottom:724.500000px;}
.y146{bottom:725.946000px;}
.ybc{bottom:727.542000px;}
.y16d{bottom:727.746000px;}
.yd8{bottom:729.000000px;}
.yfc{bottom:730.446000px;}
.y124{bottom:736.993500px;}
.y2b{bottom:738.991050px;}
.y76{bottom:742.554000px;}
.y16c{bottom:742.602000px;}
.y197{bottom:743.250000px;}
.y99{bottom:744.252000px;}
.y51{bottom:747.000000px;}
.y145{bottom:748.302000px;}
.ybb{bottom:749.736000px;}
.yd7{bottom:751.050000px;}
.yfb{bottom:752.352000px;}
.y123{bottom:755.143500px;}
.y16b{bottom:757.446000px;}
.y2a{bottom:757.591050px;}
.y196{bottom:762.000000px;}
.y75{bottom:764.604000px;}
.y98{bottom:767.058000px;}
.y50{bottom:769.500000px;}
.y144{bottom:770.658000px;}
.yba{bottom:771.930000px;}
.y16a{bottom:772.290000px;}
.yd6{bottom:773.100000px;}
.yfa{bottom:774.258000px;}
.y29{bottom:776.191050px;}
.y195{bottom:780.750000px;}
.y122{bottom:782.128500px;}
.y7{bottom:783.450000px;}
.y169{bottom:787.134000px;}
.y97{bottom:789.864000px;}
.y4f{bottom:792.000000px;}
.y143{bottom:793.014000px;}
.yb9{bottom:794.124000px;}
.y74{bottom:795.150000px;}
.yf9{bottom:796.164000px;}
.y194{bottom:799.500000px;}
.y121{bottom:800.278500px;}
.y168{bottom:801.978000px;}
.y28{bottom:803.296050px;}
.y96{bottom:812.670000px;}
.y6{bottom:813.600000px;}
.y4e{bottom:814.500000px;}
.y142{bottom:815.370000px;}
.yb8{bottom:816.318000px;}
.y167{bottom:816.834000px;}
.y73{bottom:817.200000px;}
.yf8{bottom:818.070000px;}
.y193{bottom:818.250000px;}
.y120{bottom:828.463500px;}
.y166{bottom:831.678000px;}
.y95{bottom:835.476000px;}
.y4d{bottom:837.000000px;}
.y141{bottom:837.726000px;}
.yb7{bottom:838.512000px;}
.y72{bottom:839.250000px;}
.yf7{bottom:839.976000px;}
.y5{bottom:843.750000px;}
.y165{bottom:846.534000px;}
.y11f{bottom:846.613500px;}
.y27{bottom:847.996050px;}
.y192{bottom:855.750000px;}
.y94{bottom:858.282000px;}
.y4c{bottom:859.500000px;}
.y140{bottom:860.082000px;}
.yb6{bottom:860.706000px;}
.y71{bottom:861.300000px;}
.y164{bottom:861.378000px;}
.yf6{bottom:861.882000px;}
.y11e{bottom:864.763500px;}
.y26{bottom:866.596050px;}
.y4{bottom:873.900000px;}
.y191{bottom:874.500000px;}
.y163{bottom:876.222000px;}
.y93{bottom:881.088000px;}
.y4b{bottom:882.000000px;}
.y13f{bottom:882.438000px;}
.yb5{bottom:882.900000px;}
.y70{bottom:883.350000px;}
.yf5{bottom:883.788000px;}
.y162{bottom:891.078000px;}
.y190{bottom:893.250000px;}
.y25{bottom:893.700000px;}
.y92{bottom:903.894000px;}
.y4a{bottom:904.500000px;}
.y13e{bottom:904.794000px;}
.yb4{bottom:905.100000px;}
.y6f{bottom:905.400000px;}
.yf4{bottom:905.694000px;}
.y161{bottom:905.922000px;}
.y18f{bottom:912.000000px;}
.y24{bottom:912.300000px;}
.y3{bottom:926.550000px;}
.y91{bottom:926.700000px;}
.y49{bottom:927.000000px;}
.y13d{bottom:927.150000px;}
.yb3{bottom:927.300000px;}
.y6e{bottom:927.450000px;}
.yf3{bottom:927.600000px;}
.y18e{bottom:930.750000px;}
.y23{bottom:930.900000px;}
.h7{height:24.630908px;}
.h11{height:33.117188px;}
.h17{height:37.256836px;}
.h15{height:39.072000px;}
.h2{height:39.326660px;}
.h14{height:39.990234px;}
.h16{height:40.757812px;}
.h1{height:41.396484px;}
.h5{height:42.000000px;}
.h6{height:47.988281px;}
.h12{height:48.840000px;}
.h9{height:49.675781px;}
.hb{height:50.765625px;}
.h8{height:50.947266px;}
.h13{height:53.988000px;}
.hf{height:58.293047px;}
.hc{height:58.501247px;}
.h10{height:58.509047px;}
.hd{height:58.533047px;}
.he{height:58.917047px;}
.ha{height:61.136719px;}
.h3{height:82.792969px;}
.h4{height:88.533047px;}
.h0{height:1017.000000px;}
.w0{width:720.000000px;}
.x0{left:0.000000px;}
.x1{left:67.500000px;}
.x8{left:82.381950px;}
.x3{left:97.263750px;}
.x9{left:99.391950px;}
.x6{left:112.620000px;}
.xb{left:118.827750px;}
.x7{left:127.381950px;}
.x2{left:135.000000px;}
.x5{left:142.263750px;}
.xa{left:144.392850px;}
.x10{left:180.540000px;}
.xc{left:201.192750px;}
.xd{left:320.067750px;}
.xe{left:437.157750px;}
.xf{left:538.077750px;}
.x4{left:635.390550px;}
@media print{
.v2{vertical-align:-14.960000pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:17.600000pt;}
.v3{vertical-align:21.091733pt;}
.v1{vertical-align:47.786667pt;}
.ls2d{letter-spacing:-2.496000pt;}
.ls1f{letter-spacing:-1.024000pt;}
.ls2a{letter-spacing:-0.896000pt;}
.ls2b{letter-spacing:-0.832000pt;}
.ls1b{letter-spacing:-0.768000pt;}
.ls28{letter-spacing:-0.704000pt;}
.ls19{letter-spacing:-0.640000pt;}
.lsf{letter-spacing:-0.576000pt;}
.ls1a{letter-spacing:-0.512000pt;}
.ls22{letter-spacing:-0.448000pt;}
.ls17{letter-spacing:-0.384000pt;}
.ls18{letter-spacing:-0.320000pt;}
.ls4{letter-spacing:-0.266667pt;}
.ls10{letter-spacing:-0.256000pt;}
.ls2e{letter-spacing:-0.213333pt;}
.ls16{letter-spacing:-0.192000pt;}
.ls30{letter-spacing:-0.186667pt;}
.ls12{letter-spacing:-0.128000pt;}
.ls7{letter-spacing:-0.064000pt;}
.ls3{letter-spacing:0.000000pt;}
.ls24{letter-spacing:0.000533pt;}
.ls9{letter-spacing:0.064000pt;}
.ls14{letter-spacing:0.128000pt;}
.ls29{letter-spacing:0.134400pt;}
.lsc{letter-spacing:0.192000pt;}
.ls13{letter-spacing:0.256000pt;}
.ls0{letter-spacing:0.266667pt;}
.ls23{letter-spacing:0.276800pt;}
.ls1e{letter-spacing:0.320000pt;}
.ls15{letter-spacing:0.384000pt;}
.ls1d{letter-spacing:0.448000pt;}
.lsd{letter-spacing:0.512000pt;}
.ls11{letter-spacing:0.576000pt;}
.ls8{letter-spacing:0.640000pt;}
.lsb{letter-spacing:0.704000pt;}
.lse{letter-spacing:0.768000pt;}
.lsa{letter-spacing:0.832000pt;}
.ls21{letter-spacing:0.896000pt;}
.ls2f{letter-spacing:0.960000pt;}
.ls27{letter-spacing:1.152000pt;}
.ls1c{letter-spacing:1.350400pt;}
.ls20{letter-spacing:1.536000pt;}
.ls31{letter-spacing:2.176000pt;}
.ls1{letter-spacing:2.533333pt;}
.ls25{letter-spacing:2.990933pt;}
.ls26{letter-spacing:3.029333pt;}
.ls6{letter-spacing:4.053333pt;}
.ls32{letter-spacing:4.224000pt;}
.ls2c{letter-spacing:5.888000pt;}
.ls33{letter-spacing:7.200000pt;}
.ls5{letter-spacing:7.520000pt;}
.ls2{letter-spacing:9.546667pt;}
.ws3{word-spacing:-22.506667pt;}
.ws1d{word-spacing:-18.816000pt;}
.ws1e{word-spacing:-17.984000pt;}
.ws1c{word-spacing:-17.728000pt;}
.ws1{word-spacing:-16.770667pt;}
.ws1b{word-spacing:-15.808000pt;}
.ws45{word-spacing:-14.986667pt;}
.wsaf{word-spacing:-13.173333pt;}
.ws77{word-spacing:-12.723200pt;}
.ws2{word-spacing:-12.588800pt;}
.ws64{word-spacing:-11.989333pt;}
.ws7{word-spacing:-9.866667pt;}
.ws8a{word-spacing:-8.917067pt;}
.wsae{word-spacing:-7.200000pt;}
.ws9c{word-spacing:-5.712000pt;}
.wsac{word-spacing:-4.224000pt;}
.ws10{word-spacing:-4.053333pt;}
.ws7a{word-spacing:-1.856000pt;}
.ws7b{word-spacing:-1.792000pt;}
.ws7f{word-spacing:-1.664000pt;}
.ws8e{word-spacing:-1.600000pt;}
.ws79{word-spacing:-1.472000pt;}
.ws8f{word-spacing:-1.088000pt;}
.ws7d{word-spacing:-0.896000pt;}
.ws29{word-spacing:-0.704000pt;}
.ws5c{word-spacing:-0.320000pt;}
.ws12{word-spacing:-0.266667pt;}
.ws38{word-spacing:-0.256000pt;}
.ws7c{word-spacing:-0.192000pt;}
.ws27{word-spacing:-0.064000pt;}
.ws4{word-spacing:0.000000pt;}
.ws3c{word-spacing:0.064000pt;}
.ws91{word-spacing:0.128000pt;}
.ws94{word-spacing:0.192000pt;}
.wsa2{word-spacing:0.213333pt;}
.ws28{word-spacing:0.256000pt;}
.ws6{word-spacing:0.266667pt;}
.ws49{word-spacing:0.320000pt;}
.wsa9{word-spacing:0.384000pt;}
.ws42{word-spacing:0.448000pt;}
.ws93{word-spacing:0.512000pt;}
.ws2a{word-spacing:0.576000pt;}
.ws48{word-spacing:0.640000pt;}
.ws7e{word-spacing:0.704000pt;}
.ws70{word-spacing:0.768000pt;}
.ws6c{word-spacing:0.832000pt;}
.wsa4{word-spacing:0.896000pt;}
.wsc{word-spacing:1.013333pt;}
.ws58{word-spacing:1.024000pt;}
.ws14{word-spacing:1.066667pt;}
.ws2c{word-spacing:1.088000pt;}
.ws39{word-spacing:1.152000pt;}
.ws44{word-spacing:1.216000pt;}
.ws4d{word-spacing:1.280000pt;}
.ws3a{word-spacing:1.344000pt;}
.ws1f{word-spacing:1.408000pt;}
.ws11{word-spacing:1.440000pt;}
.ws57{word-spacing:1.472000pt;}
.ws50{word-spacing:1.536000pt;}
.ws9{word-spacing:1.600000pt;}
.ws46{word-spacing:1.728000pt;}
.wsa3{word-spacing:1.792000pt;}
.ws6b{word-spacing:1.856000pt;}
.ws76{word-spacing:1.920000pt;}
.ws89{word-spacing:1.984000pt;}
.ws24{word-spacing:2.048000pt;}
.wsa1{word-spacing:2.133333pt;}
.ws8b{word-spacing:2.176000pt;}
.ws65{word-spacing:2.240000pt;}
.ws3d{word-spacing:2.304000pt;}
.ws23{word-spacing:2.368000pt;}
.ws95{word-spacing:2.432000pt;}
.ws33{word-spacing:2.496000pt;}
.ws16{word-spacing:2.560000pt;}
.ws2b{word-spacing:2.624000pt;}
.wsad{word-spacing:2.645333pt;}
.ws5f{word-spacing:2.688000pt;}
.ws73{word-spacing:2.752000pt;}
.ws5e{word-spacing:2.816000pt;}
.ws5b{word-spacing:2.880000pt;}
.wsf{word-spacing:2.986667pt;}
.ws4e{word-spacing:3.008000pt;}
.ws59{word-spacing:3.136000pt;}
.ws53{word-spacing:3.200000pt;}
.ws84{word-spacing:3.264000pt;}
.ws13{word-spacing:3.306667pt;}
.ws6f{word-spacing:3.328000pt;}
.ws78{word-spacing:3.392000pt;}
.ws17{word-spacing:3.456000pt;}
.wsab{word-spacing:3.520000pt;}
.wsb{word-spacing:3.546667pt;}
.ws3b{word-spacing:3.648000pt;}
.wse{word-spacing:3.680000pt;}
.ws62{word-spacing:3.712000pt;}
.wsd{word-spacing:3.733333pt;}
.ws74{word-spacing:3.776000pt;}
.ws4c{word-spacing:3.840000pt;}
.wsa{word-spacing:3.968000pt;}
.ws47{word-spacing:4.032000pt;}
.ws36{word-spacing:4.096000pt;}
.ws6d{word-spacing:4.160000pt;}
.ws15{word-spacing:4.224000pt;}
.ws5d{word-spacing:4.288000pt;}
.ws21{word-spacing:4.352000pt;}
.ws61{word-spacing:4.416000pt;}
.ws1a{word-spacing:4.480000pt;}
.ws32{word-spacing:4.544000pt;}
.ws51{word-spacing:4.608000pt;}
.ws22{word-spacing:4.672000pt;}
.ws31{word-spacing:4.736000pt;}
.ws25{word-spacing:4.800000pt;}
.ws3e{word-spacing:4.864000pt;}
.ws2e{word-spacing:4.928000pt;}
.ws60{word-spacing:4.992000pt;}
.ws3f{word-spacing:5.120000pt;}
.ws80{word-spacing:5.184000pt;}
.ws2f{word-spacing:5.248000pt;}
.ws19{word-spacing:5.312000pt;}
.ws68{word-spacing:5.376000pt;}
.ws67{word-spacing:5.440000pt;}
.ws8c{word-spacing:5.568000pt;}
.ws35{word-spacing:5.632000pt;}
.ws4f{word-spacing:5.696000pt;}
.ws75{word-spacing:5.760000pt;}
.ws41{word-spacing:5.824000pt;}
.ws98{word-spacing:5.888000pt;}
.ws30{word-spacing:5.952000pt;}
.ws92{word-spacing:6.016000pt;}
.ws9a{word-spacing:6.080000pt;}
.ws83{word-spacing:6.144000pt;}
.ws43{word-spacing:6.208000pt;}
.ws37{word-spacing:6.272000pt;}
.ws2d{word-spacing:6.336000pt;}
.ws63{word-spacing:6.400000pt;}
.ws85{word-spacing:6.464000pt;}
.ws66{word-spacing:6.528000pt;}
.ws54{word-spacing:6.656000pt;}
.ws71{word-spacing:6.720000pt;}
.ws4a{word-spacing:6.848000pt;}
.ws52{word-spacing:6.912000pt;}
.ws87{word-spacing:6.976000pt;}
.wsaa{word-spacing:7.104000pt;}
.ws55{word-spacing:7.168000pt;}
.ws9b{word-spacing:7.232000pt;}
.ws6e{word-spacing:7.296000pt;}
.ws82{word-spacing:7.424000pt;}
.ws0{word-spacing:7.445333pt;}
.ws8{word-spacing:7.466667pt;}
.ws6a{word-spacing:7.552000pt;}
.ws4b{word-spacing:7.616000pt;}
.ws8d{word-spacing:7.680000pt;}
.wsa5{word-spacing:7.744000pt;}
.ws18{word-spacing:7.808000pt;}
.ws96{word-spacing:7.872000pt;}
.wsa6{word-spacing:7.936000pt;}
.ws97{word-spacing:8.000000pt;}
.wsa8{word-spacing:8.128000pt;}
.ws86{word-spacing:8.192000pt;}
.ws69{word-spacing:8.256000pt;}
.ws34{word-spacing:8.320000pt;}
.ws88{word-spacing:8.384000pt;}
.ws81{word-spacing:8.448000pt;}
.ws5a{word-spacing:8.640000pt;}
.ws56{word-spacing:8.704000pt;}
.ws99{word-spacing:8.768000pt;}
.ws40{word-spacing:8.832000pt;}
.ws20{word-spacing:8.960000pt;}
.ws26{word-spacing:9.024000pt;}
.ws90{word-spacing:9.173333pt;}
.ws72{word-spacing:10.112000pt;}
.wsa7{word-spacing:15.360000pt;}
.ws5{word-spacing:30.293333pt;}
.ws9d{word-spacing:145.813333pt;}
.ws9f{word-spacing:150.501333pt;}
.wsa0{word-spacing:161.760000pt;}
.ws9e{word-spacing:163.306667pt;}
._e{margin-left:-835.898667pt;}
._1{margin-left:-34.560000pt;}
._15{margin-left:-12.716800pt;}
._9{margin-left:-10.602667pt;}
._c{margin-left:-8.992000pt;}
._11{margin-left:-7.306667pt;}
._f{margin-left:-6.320000pt;}
._2{margin-left:-5.354667pt;}
._d{margin-left:-4.437333pt;}
._7{margin-left:-3.328000pt;}
._a{margin-left:-2.250667pt;}
._6{margin-left:-0.906667pt;}
._b{width:1.536000pt;}
._4{width:2.426667pt;}
._8{width:3.370667pt;}
._10{width:4.576000pt;}
._14{width:6.585600pt;}
._12{width:7.808000pt;}
._13{width:8.832000pt;}
._5{width:10.133333pt;}
._16{width:12.263200pt;}
._3{width:27.733333pt;}
._17{width:46.773333pt;}
._20{width:51.360000pt;}
._1a{width:52.864000pt;}
._1d{width:63.466667pt;}
._18{width:70.506667pt;}
._22{width:74.826667pt;}
._1e{width:88.000000pt;}
._21{width:100.320000pt;}
._1b{width:103.370667pt;}
._1c{width:113.973333pt;}
._19{width:131.040000pt;}
._1f{width:138.506667pt;}
._23{width:152.000000pt;}
._0{width:179.168000pt;}
.fs5{font-size:31.733333pt;}
.fs7{font-size:37.333333pt;}
.fs6{font-size:42.666667pt;}
.fs3{font-size:44.800000pt;}
.fs8{font-size:48.000000pt;}
.fs1{font-size:50.666667pt;}
.fs0{font-size:53.333333pt;}
.fs4{font-size:64.000000pt;}
.fs2{font-size:106.666667pt;}
.y0{bottom:0.000000pt;}
.y2{bottom:49.333333pt;}
.y1{bottom:64.000000pt;}
.y6d{bottom:104.000000pt;}
.y118{bottom:104.069333pt;}
.y48{bottom:104.839467pt;}
.y22{bottom:107.740000pt;}
.y160{bottom:108.810667pt;}
.y18d{bottom:109.474000pt;}
.y11d{bottom:117.333333pt;}
.yf2{bottom:121.073333pt;}
.y117{bottom:123.541333pt;}
.y6c{bottom:124.000000pt;}
.y47{bottom:124.711467pt;}
.y18c{bottom:126.007333pt;}
.yd5{bottom:127.740000pt;}
.y15f{bottom:128.682667pt;}
.y11c{bottom:130.666667pt;}
.y18b{bottom:142.540667pt;}
.y116{bottom:143.013333pt;}
.y6b{bottom:144.000000pt;}
.y46{bottom:144.583467pt;}
.yb2{bottom:145.114667pt;}
.y21{bottom:146.794933pt;}
.yd4{bottom:147.740000pt;}
.y15e{bottom:148.554667pt;}
.y90{bottom:150.040933pt;}
.y11b{bottom:157.333333pt;}
.yf1{bottom:158.256000pt;}
.y18a{bottom:159.074000pt;}
.y115{bottom:162.485333pt;}
.y20{bottom:163.594933pt;}
.y6a{bottom:164.000000pt;}
.y45{bottom:164.455467pt;}
.yb1{bottom:165.514667pt;}
.yd3{bottom:167.740000pt;}
.y15d{bottom:168.426667pt;}
.y8f{bottom:170.040933pt;}
.y11a{bottom:170.666667pt;}
.y189{bottom:175.607333pt;}
.yf0{bottom:177.728000pt;}
.y1f{bottom:180.394933pt;}
.y13c{bottom:181.601333pt;}
.y114{bottom:181.957333pt;}
.y69{bottom:184.000000pt;}
.y44{bottom:184.327467pt;}
.yb0{bottom:185.914667pt;}
.y119{bottom:187.740000pt;}
.y15c{bottom:188.298667pt;}
.y8e{bottom:189.640933pt;}
.y188{bottom:192.140667pt;}
.y1e{bottom:197.194933pt;}
.yef{bottom:197.200000pt;}
.y13b{bottom:201.329333pt;}
.y113{bottom:201.429333pt;}
.y68{bottom:204.000000pt;}
.y43{bottom:204.199467pt;}
.yd2{bottom:205.050667pt;}
.yaf{bottom:206.314667pt;}
.y15b{bottom:208.170667pt;}
.y187{bottom:208.674000pt;}
.y8d{bottom:209.240933pt;}
.y1d{bottom:213.994933pt;}
.yee{bottom:216.800000pt;}
.y112{bottom:220.901333pt;}
.y13a{bottom:221.057333pt;}
.y67{bottom:224.000000pt;}
.y42{bottom:224.071467pt;}
.yd1{bottom:224.778667pt;}
.y186{bottom:225.207333pt;}
.yae{bottom:226.714667pt;}
.y15a{bottom:228.042667pt;}
.y8c{bottom:228.840933pt;}
.y1c{bottom:230.794933pt;}
.yed{bottom:236.400000pt;}
.y111{bottom:240.373333pt;}
.y139{bottom:240.785333pt;}
.y185{bottom:241.740667pt;}
.y41{bottom:243.938133pt;}
.y66{bottom:244.000000pt;}
.yd0{bottom:244.506667pt;}
.yad{bottom:247.114667pt;}
.y1b{bottom:247.594933pt;}
.y159{bottom:247.914667pt;}
.y8b{bottom:248.440933pt;}
.yec{bottom:256.000000pt;}
.y184{bottom:258.274000pt;}
.y110{bottom:259.845333pt;}
.y40{bottom:263.804800pt;}
.y65{bottom:264.000000pt;}
.ycf{bottom:264.234667pt;}
.y1a{bottom:264.394933pt;}
.y158{bottom:267.786667pt;}
.y8a{bottom:268.040933pt;}
.y183{bottom:274.807333pt;}
.yac{bottom:275.066667pt;}
.yeb{bottom:275.600000pt;}
.y138{bottom:277.465333pt;}
.y10f{bottom:279.317333pt;}
.y19{bottom:281.194933pt;}
.yce{bottom:283.962667pt;}
.y64{bottom:284.000000pt;}
.y89{bottom:287.640933pt;}
.y157{bottom:287.658667pt;}
.y182{bottom:291.340667pt;}
.y137{bottom:293.598667pt;}
.yea{bottom:295.200000pt;}
.yab{bottom:295.466667pt;}
.y18{bottom:297.994933pt;}
.y10e{bottom:298.789333pt;}
.y3f{bottom:303.538133pt;}
.ycd{bottom:303.690667pt;}
.y63{bottom:304.000000pt;}
.y88{bottom:307.240933pt;}
.y156{bottom:307.530667pt;}
.y181{bottom:307.874000pt;}
.y136{bottom:309.732000pt;}
.y17{bottom:314.794933pt;}
.ye9{bottom:314.800000pt;}
.yaa{bottom:315.781333pt;}
.y1a5{bottom:317.333333pt;}
.y10d{bottom:318.261333pt;}
.y3e{bottom:320.071467pt;}
.ycc{bottom:323.418667pt;}
.y62{bottom:324.000000pt;}
.y180{bottom:324.407333pt;}
.y87{bottom:326.840933pt;}
.y155{bottom:327.402667pt;}
.y16{bottom:331.594933pt;}
.y135{bottom:333.718667pt;}
.y1a4{bottom:334.000000pt;}
.ye8{bottom:334.400000pt;}
.ya9{bottom:336.181333pt;}
.y10c{bottom:337.733333pt;}
.y17f{bottom:340.940667pt;}
.ycb{bottom:343.146667pt;}
.y61{bottom:344.000000pt;}
.y3d{bottom:344.160933pt;}
.y86{bottom:346.440933pt;}
.y154{bottom:347.274667pt;}
.y134{bottom:349.852000pt;}
.y1a3{bottom:350.666667pt;}
.ye7{bottom:354.000000pt;}
.y15{bottom:355.954933pt;}
.ya8{bottom:356.581333pt;}
.y10b{bottom:357.205333pt;}
.y17e{bottom:357.474000pt;}
.y3c{bottom:360.694267pt;}
.yca{bottom:362.874667pt;}
.y60{bottom:364.000000pt;}
.y133{bottom:365.985333pt;}
.y85{bottom:366.040933pt;}
.y153{bottom:367.146667pt;}
.y1a2{bottom:367.333333pt;}
.y14{bottom:372.754933pt;}
.ye6{bottom:373.600000pt;}
.y17d{bottom:374.007333pt;}
.y10a{bottom:376.677333pt;}
.ya7{bottom:376.981333pt;}
.y3b{bottom:377.227600pt;}
.yc9{bottom:382.602667pt;}
.y5f{bottom:384.000000pt;}
.y84{bottom:385.640933pt;}
.y152{bottom:387.018667pt;}
.y13{bottom:389.554933pt;}
.y132{bottom:389.972000pt;}
.ye5{bottom:393.200000pt;}
.y109{bottom:396.149333pt;}
.ya6{bottom:397.381333pt;}
.y1a1{bottom:400.666667pt;}
.y3a{bottom:401.320933pt;}
.y17c{bottom:401.879333pt;}
.y5e{bottom:404.000000pt;}
.y83{bottom:405.248000pt;}
.y131{bottom:406.105333pt;}
.y12{bottom:406.354933pt;}
.y151{bottom:406.890667pt;}
.yc8{bottom:409.898667pt;}
.ye4{bottom:412.800000pt;}
.y108{bottom:415.621333pt;}
.y1a0{bottom:417.333333pt;}
.ya5{bottom:417.781333pt;}
.y39{bottom:417.854267pt;}
.y130{bottom:422.238667pt;}
.y11{bottom:423.154933pt;}
.y5d{bottom:424.000000pt;}
.y82{bottom:424.848000pt;}
.y150{bottom:426.762667pt;}
.y17b{bottom:429.157333pt;}
.yc7{bottom:429.626667pt;}
.ye3{bottom:432.400000pt;}
.y38{bottom:434.387600pt;}
.y107{bottom:435.093333pt;}
.ya4{bottom:438.181333pt;}
.y10{bottom:439.954933pt;}
.y5c{bottom:444.000000pt;}
.y81{bottom:444.448000pt;}
.y17a{bottom:445.018667pt;}
.y12f{bottom:446.225333pt;}
.y14f{bottom:446.634667pt;}
.yc6{bottom:449.354667pt;}
.y19f{bottom:450.666667pt;}
.y37{bottom:450.920933pt;}
.ye2{bottom:452.000000pt;}
.y106{bottom:454.565333pt;}
.yf{bottom:456.754933pt;}
.ya3{bottom:458.581333pt;}
.y12e{bottom:462.358667pt;}
.y5b{bottom:464.000000pt;}
.y80{bottom:464.048000pt;}
.y14e{bottom:466.506667pt;}
.y19e{bottom:467.333333pt;}
.y36{bottom:467.454267pt;}
.yc5{bottom:469.082667pt;}
.ye1{bottom:471.600000pt;}
.y105{bottom:474.037333pt;}
.ya2{bottom:478.981333pt;}
.ye{bottom:481.114933pt;}
.y7f{bottom:483.648000pt;}
.y35{bottom:483.987600pt;}
.y5a{bottom:484.000000pt;}
.y12d{bottom:486.345333pt;}
.y14d{bottom:486.378667pt;}
.y179{bottom:488.528000pt;}
.yc4{bottom:488.810667pt;}
.ye0{bottom:491.200000pt;}
.y104{bottom:493.509333pt;}
.ya1{bottom:499.381333pt;}
.y34{bottom:500.520933pt;}
.y19d{bottom:500.666667pt;}
.y178{bottom:501.722667pt;}
.y12c{bottom:502.478667pt;}
.y7e{bottom:503.248000pt;}
.y59{bottom:504.000000pt;}
.y14c{bottom:506.250667pt;}
.yc3{bottom:508.538667pt;}
.ydf{bottom:510.800000pt;}
.y103{bottom:512.981333pt;}
.y177{bottom:514.917333pt;}
.y33{bottom:517.054267pt;}
.y19c{bottom:517.333333pt;}
.y12b{bottom:518.612000pt;}
.ya0{bottom:519.653333pt;}
.yd{bottom:521.381600pt;}
.y7d{bottom:522.848000pt;}
.y58{bottom:524.000000pt;}
.y14b{bottom:526.122667pt;}
.y176{bottom:528.122667pt;}
.yc2{bottom:528.272000pt;}
.yde{bottom:530.400000pt;}
.y102{bottom:532.453333pt;}
.y32{bottom:533.587600pt;}
.y19b{bottom:534.000000pt;}
.yc{bottom:538.714933pt;}
.y9f{bottom:539.925333pt;}
.y175{bottom:541.317333pt;}
.y7c{bottom:542.448000pt;}
.y12a{bottom:542.598667pt;}
.y57{bottom:544.000000pt;}
.y14a{bottom:545.994667pt;}
.yc1{bottom:548.005333pt;}
.ydd{bottom:550.000000pt;}
.y31{bottom:550.120933pt;}
.y19a{bottom:550.666667pt;}
.y101{bottom:551.925333pt;}
.y174{bottom:554.512000pt;}
.y129{bottom:558.732000pt;}
.yb{bottom:558.848267pt;}
.y9e{bottom:560.197333pt;}
.y7b{bottom:562.048000pt;}
.y56{bottom:564.000000pt;}
.y149{bottom:565.866667pt;}
.y30{bottom:566.654267pt;}
.y173{bottom:567.706667pt;}
.yc0{bottom:567.738667pt;}
.ydc{bottom:569.600000pt;}
.y100{bottom:571.397333pt;}
.y128{bottom:574.865333pt;}
.y9d{bottom:580.469333pt;}
.y172{bottom:580.901333pt;}
.y7a{bottom:581.648000pt;}
.y55{bottom:584.000000pt;}
.y148{bottom:585.733333pt;}
.ybf{bottom:587.520000pt;}
.ydb{bottom:589.200000pt;}
.y2f{bottom:590.747600pt;}
.yff{bottom:590.869333pt;}
.y171{bottom:594.106667pt;}
.y127{bottom:598.852000pt;}
.ya{bottom:599.114933pt;}
.y9c{bottom:600.741333pt;}
.y79{bottom:601.248000pt;}
.y54{bottom:604.000000pt;}
.ybe{bottom:607.248000pt;}
.y2e{bottom:607.280933pt;}
.y170{bottom:607.301333pt;}
.yda{bottom:608.800000pt;}
.yfe{bottom:610.341333pt;}
.y199{bottom:610.666667pt;}
.y126{bottom:614.985333pt;}
.y9{bottom:616.448267pt;}
.y16f{bottom:620.496000pt;}
.y78{bottom:620.848000pt;}
.y9b{bottom:621.013333pt;}
.y2d{bottom:623.814267pt;}
.y53{bottom:624.000000pt;}
.y147{bottom:625.413333pt;}
.ybd{bottom:626.976000pt;}
.y198{bottom:627.333333pt;}
.yd9{bottom:628.400000pt;}
.yfd{bottom:629.813333pt;}
.y125{bottom:631.118667pt;}
.y16e{bottom:633.690667pt;}
.y8{bottom:636.581600pt;}
.y2c{bottom:640.347600pt;}
.y77{bottom:640.448000pt;}
.y9a{bottom:641.285333pt;}
.y52{bottom:644.000000pt;}
.y146{bottom:645.285333pt;}
.ybc{bottom:646.704000pt;}
.y16d{bottom:646.885333pt;}
.yd8{bottom:648.000000pt;}
.yfc{bottom:649.285333pt;}
.y124{bottom:655.105333pt;}
.y2b{bottom:656.880933pt;}
.y76{bottom:660.048000pt;}
.y16c{bottom:660.090667pt;}
.y197{bottom:660.666667pt;}
.y99{bottom:661.557333pt;}
.y51{bottom:664.000000pt;}
.y145{bottom:665.157333pt;}
.ybb{bottom:666.432000pt;}
.yd7{bottom:667.600000pt;}
.yfb{bottom:668.757333pt;}
.y123{bottom:671.238667pt;}
.y16b{bottom:673.285333pt;}
.y2a{bottom:673.414267pt;}
.y196{bottom:677.333333pt;}
.y75{bottom:679.648000pt;}
.y98{bottom:681.829333pt;}
.y50{bottom:684.000000pt;}
.y144{bottom:685.029333pt;}
.yba{bottom:686.160000pt;}
.y16a{bottom:686.480000pt;}
.yd6{bottom:687.200000pt;}
.yfa{bottom:688.229333pt;}
.y29{bottom:689.947600pt;}
.y195{bottom:694.000000pt;}
.y122{bottom:695.225333pt;}
.y7{bottom:696.400000pt;}
.y169{bottom:699.674667pt;}
.y97{bottom:702.101333pt;}
.y4f{bottom:704.000000pt;}
.y143{bottom:704.901333pt;}
.yb9{bottom:705.888000pt;}
.y74{bottom:706.800000pt;}
.yf9{bottom:707.701333pt;}
.y194{bottom:710.666667pt;}
.y121{bottom:711.358667pt;}
.y168{bottom:712.869333pt;}
.y28{bottom:714.040933pt;}
.y96{bottom:722.373333pt;}
.y6{bottom:723.200000pt;}
.y4e{bottom:724.000000pt;}
.y142{bottom:724.773333pt;}
.yb8{bottom:725.616000pt;}
.y167{bottom:726.074667pt;}
.y73{bottom:726.400000pt;}
.yf8{bottom:727.173333pt;}
.y193{bottom:727.333333pt;}
.y120{bottom:736.412000pt;}
.y166{bottom:739.269333pt;}
.y95{bottom:742.645333pt;}
.y4d{bottom:744.000000pt;}
.y141{bottom:744.645333pt;}
.yb7{bottom:745.344000pt;}
.y72{bottom:746.000000pt;}
.yf7{bottom:746.645333pt;}
.y5{bottom:750.000000pt;}
.y165{bottom:752.474667pt;}
.y11f{bottom:752.545333pt;}
.y27{bottom:753.774267pt;}
.y192{bottom:760.666667pt;}
.y94{bottom:762.917333pt;}
.y4c{bottom:764.000000pt;}
.y140{bottom:764.517333pt;}
.yb6{bottom:765.072000pt;}
.y71{bottom:765.600000pt;}
.y164{bottom:765.669333pt;}
.yf6{bottom:766.117333pt;}
.y11e{bottom:768.678667pt;}
.y26{bottom:770.307600pt;}
.y4{bottom:776.800000pt;}
.y191{bottom:777.333333pt;}
.y163{bottom:778.864000pt;}
.y93{bottom:783.189333pt;}
.y4b{bottom:784.000000pt;}
.y13f{bottom:784.389333pt;}
.yb5{bottom:784.800000pt;}
.y70{bottom:785.200000pt;}
.yf5{bottom:785.589333pt;}
.y162{bottom:792.069333pt;}
.y190{bottom:794.000000pt;}
.y25{bottom:794.400000pt;}
.y92{bottom:803.461333pt;}
.y4a{bottom:804.000000pt;}
.y13e{bottom:804.261333pt;}
.yb4{bottom:804.533333pt;}
.y6f{bottom:804.800000pt;}
.yf4{bottom:805.061333pt;}
.y161{bottom:805.264000pt;}
.y18f{bottom:810.666667pt;}
.y24{bottom:810.933333pt;}
.y3{bottom:823.600000pt;}
.y91{bottom:823.733333pt;}
.y49{bottom:824.000000pt;}
.y13d{bottom:824.133333pt;}
.yb3{bottom:824.266667pt;}
.y6e{bottom:824.400000pt;}
.yf3{bottom:824.533333pt;}
.y18e{bottom:827.333333pt;}
.y23{bottom:827.466667pt;}
.h7{height:21.894141pt;}
.h11{height:29.437500pt;}
.h17{height:33.117188pt;}
.h15{height:34.730667pt;}
.h2{height:34.957031pt;}
.h14{height:35.546875pt;}
.h16{height:36.229167pt;}
.h1{height:36.796875pt;}
.h5{height:37.333333pt;}
.h6{height:42.656250pt;}
.h12{height:43.413333pt;}
.h9{height:44.156250pt;}
.hb{height:45.125000pt;}
.h8{height:45.286458pt;}
.h13{height:47.989333pt;}
.hf{height:51.816042pt;}
.hc{height:52.001108pt;}
.h10{height:52.008042pt;}
.hd{height:52.029375pt;}
.he{height:52.370708pt;}
.ha{height:54.343750pt;}
.h3{height:73.593750pt;}
.h4{height:78.696042pt;}
.h0{height:904.000000pt;}
.w0{width:640.000000pt;}
.x0{left:0.000000pt;}
.x1{left:60.000000pt;}
.x8{left:73.228400pt;}
.x3{left:86.456667pt;}
.x9{left:88.348400pt;}
.x6{left:100.106667pt;}
.xb{left:105.624667pt;}
.x7{left:113.228400pt;}
.x2{left:120.000000pt;}
.x5{left:126.456667pt;}
.xa{left:128.349200pt;}
.x10{left:160.480000pt;}
.xc{left:178.838000pt;}
.xd{left:284.504667pt;}
.xe{left:388.584667pt;}
.xf{left:478.291333pt;}
.x4{left:564.791600pt;}
}




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