
    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_b84903a2e68f4a19e3ce8383.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_f726d4b32c6102c95b6ce5ee.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_4709b5778ceb73ead39050b8.woff')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_06fbe5350ef4bd8ee3777f90.woff')format("woff");}.ff4{font-family:ff4;line-height:0.831000;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_95a8165f7aaf28b7703e8d9f.woff')format("woff");}.ff5{font-family:ff5;line-height:0.931152;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_990c4a4d831316a863a8476c.woff')format("woff");}.ff6{font-family:ff6;line-height:1.014000;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_19fb88b69ef6c149c0190ac8.woff')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_498cc3a6dc58842dc62d714e.woff')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_1d6194c6c156aef02385ea7d.woff')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_2e2160e1ceed4b8cee011437.woff')format("woff");}.ffa{font-family:ffa;line-height:0.931152;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_72349ce6b9683d24a0ac36cf.woff')format("woff");}.ffb{font-family:ffb;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;}
@font-face{font-family:ffc;src:url('chunks/assets/font_6bfda9169d428a966e8d0222.woff')format("woff");}.ffc{font-family:ffc;line-height:0.902344;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:ffd;src:url('chunks/assets/font_dfe56591031e8b01d1d6f720.woff')format("woff");}.ffd{font-family:ffd;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;}
.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;}
.v3{vertical-align:23.880000px;}
.v1{vertical-align:47.760600px;}
.ls14{letter-spacing:-1.152000px;}
.ls1e{letter-spacing:-1.008000px;}
.ls1d{letter-spacing:-0.936000px;}
.ls1f{letter-spacing:-0.864000px;}
.ls19{letter-spacing:-0.720000px;}
.lsc{letter-spacing:-0.648000px;}
.ls27{letter-spacing:-0.576000px;}
.ls15{letter-spacing:-0.504000px;}
.ls22{letter-spacing:-0.432000px;}
.ls13{letter-spacing:-0.360000px;}
.ls6{letter-spacing:-0.300000px;}
.ls23{letter-spacing:-0.288000px;}
.ls7{letter-spacing:-0.240000px;}
.lse{letter-spacing:-0.216000px;}
.lsf{letter-spacing:-0.144000px;}
.lsd{letter-spacing:-0.072000px;}
.ls3{letter-spacing:0.000000px;}
.ls16{letter-spacing:0.072000px;}
.ls2{letter-spacing:0.120000px;}
.lsa{letter-spacing:0.144000px;}
.lsb{letter-spacing:0.216000px;}
.ls21{letter-spacing:0.240000px;}
.ls1b{letter-spacing:0.241200px;}
.ls18{letter-spacing:0.288000px;}
.ls2b{letter-spacing:0.300000px;}
.ls11{letter-spacing:0.359400px;}
.ls12{letter-spacing:0.360000px;}
.ls24{letter-spacing:0.432000px;}
.ls10{letter-spacing:0.504000px;}
.ls1a{letter-spacing:0.576000px;}
.ls17{letter-spacing:0.648000px;}
.ls20{letter-spacing:0.720000px;}
.ls29{letter-spacing:0.792000px;}
.ls25{letter-spacing:0.864000px;}
.ls1c{letter-spacing:0.936000px;}
.ls26{letter-spacing:1.008000px;}
.ls0{letter-spacing:2.850000px;}
.ls28{letter-spacing:4.260000px;}
.ls9{letter-spacing:4.560000px;}
.ls5{letter-spacing:4.608000px;}
.ls2a{letter-spacing:4.752000px;}
.ls2c{letter-spacing:8.100000px;}
.ls4{letter-spacing:8.460000px;}
.ls1{letter-spacing:10.740000px;}
.ls8{letter-spacing:55.140000px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2{word-spacing:-25.320000px;}
.ws4d{word-spacing:-20.232000px;}
.ws1{word-spacing:-18.867000px;}
.ws7d{word-spacing:-18.648000px;}
.ws7e{word-spacing:-18.360000px;}
.ws90{word-spacing:-18.288000px;}
.ws9e{word-spacing:-18.216000px;}
.ws97{word-spacing:-18.144000px;}
.ws3d{word-spacing:-18.072000px;}
.ws70{word-spacing:-18.000000px;}
.ws8e{word-spacing:-17.928000px;}
.ws3b{word-spacing:-17.784000px;}
.ws3c{word-spacing:-17.712000px;}
.ws7f{word-spacing:-17.568000px;}
.ws6f{word-spacing:-17.496000px;}
.ws6e{word-spacing:-17.424000px;}
.wsa6{word-spacing:-15.120000px;}
.ws8f{word-spacing:-14.820000px;}
.ws3{word-spacing:-14.520000px;}
.ws28{word-spacing:-14.162400px;}
.ws98{word-spacing:-11.856000px;}
.wsa7{word-spacing:-8.100000px;}
.wsa4{word-spacing:-4.752000px;}
.ws9{word-spacing:-4.608000px;}
.ws2d{word-spacing:-2.016000px;}
.ws2c{word-spacing:-1.800000px;}
.ws5f{word-spacing:-1.008000px;}
.ws80{word-spacing:-0.864000px;}
.ws81{word-spacing:-0.648000px;}
.ws82{word-spacing:-0.576000px;}
.ws2f{word-spacing:-0.360000px;}
.wsa8{word-spacing:-0.300000px;}
.ws4b{word-spacing:-0.288000px;}
.wsa5{word-spacing:-0.240000px;}
.ws76{word-spacing:-0.216000px;}
.ws8b{word-spacing:-0.060000px;}
.ws6{word-spacing:0.000000px;}
.ws75{word-spacing:0.072000px;}
.ws78{word-spacing:0.144000px;}
.ws40{word-spacing:0.216000px;}
.wsf{word-spacing:0.240000px;}
.ws13{word-spacing:0.288000px;}
.wsb{word-spacing:0.300000px;}
.ws37{word-spacing:0.360000px;}
.ws74{word-spacing:0.432000px;}
.ws2b{word-spacing:0.504000px;}
.ws36{word-spacing:0.576000px;}
.ws55{word-spacing:0.720000px;}
.ws2e{word-spacing:0.864000px;}
.ws67{word-spacing:0.936000px;}
.ws1e{word-spacing:1.008000px;}
.ws6b{word-spacing:1.224000px;}
.ws72{word-spacing:1.296000px;}
.ws73{word-spacing:1.368000px;}
.wsa2{word-spacing:1.440000px;}
.ws27{word-spacing:1.512000px;}
.ws20{word-spacing:1.656000px;}
.ws8a{word-spacing:1.728000px;}
.ws7{word-spacing:1.800000px;}
.ws12{word-spacing:1.824000px;}
.ws1f{word-spacing:1.872000px;}
.ws2a{word-spacing:1.944000px;}
.ws1a{word-spacing:2.016000px;}
.ws17{word-spacing:2.088000px;}
.ws4e{word-spacing:2.160000px;}
.ws7a{word-spacing:2.232000px;}
.ws31{word-spacing:2.304000px;}
.ws41{word-spacing:2.376000px;}
.ws5e{word-spacing:2.400000px;}
.ws8d{word-spacing:2.448000px;}
.ws30{word-spacing:2.520000px;}
.ws9d{word-spacing:2.592000px;}
.ws43{word-spacing:2.664000px;}
.ws1d{word-spacing:2.736000px;}
.ws71{word-spacing:2.808000px;}
.ws14{word-spacing:2.880000px;}
.wse{word-spacing:2.976000px;}
.ws46{word-spacing:3.024000px;}
.ws61{word-spacing:3.096000px;}
.ws3e{word-spacing:3.168000px;}
.ws6c{word-spacing:3.240000px;}
.ws32{word-spacing:3.312000px;}
.wsd{word-spacing:3.360000px;}
.ws9f{word-spacing:3.384000px;}
.ws11{word-spacing:3.420000px;}
.ws79{word-spacing:3.456000px;}
.ws93{word-spacing:3.528000px;}
.ws65{word-spacing:3.600000px;}
.ws4f{word-spacing:3.672000px;}
.wsc{word-spacing:3.720000px;}
.ws35{word-spacing:3.744000px;}
.ws9a{word-spacing:3.816000px;}
.ws96{word-spacing:3.888000px;}
.ws91{word-spacing:3.960000px;}
.ws49{word-spacing:4.032000px;}
.ws4{word-spacing:4.200000px;}
.ws68{word-spacing:4.248000px;}
.ws84{word-spacing:4.392000px;}
.ws8{word-spacing:4.464000px;}
.ws45{word-spacing:4.536000px;}
.ws59{word-spacing:4.608000px;}
.ws94{word-spacing:4.680000px;}
.ws63{word-spacing:4.752000px;}
.ws25{word-spacing:4.824000px;}
.ws29{word-spacing:4.896000px;}
.ws54{word-spacing:4.968000px;}
.ws1c{word-spacing:5.040000px;}
.ws64{word-spacing:5.112000px;}
.ws47{word-spacing:5.256000px;}
.ws39{word-spacing:5.328000px;}
.ws95{word-spacing:5.400000px;}
.ws99{word-spacing:5.544000px;}
.ws56{word-spacing:5.616000px;}
.ws53{word-spacing:5.688000px;}
.ws22{word-spacing:5.760000px;}
.ws24{word-spacing:5.832000px;}
.wsa0{word-spacing:5.976000px;}
.ws69{word-spacing:6.048000px;}
.ws9c{word-spacing:6.120000px;}
.ws42{word-spacing:6.192000px;}
.ws92{word-spacing:6.336000px;}
.ws58{word-spacing:6.408000px;}
.ws19{word-spacing:6.480000px;}
.ws5a{word-spacing:6.768000px;}
.ws9b{word-spacing:6.840000px;}
.ws52{word-spacing:6.912000px;}
.ws26{word-spacing:6.984000px;}
.ws33{word-spacing:7.056000px;}
.ws6d{word-spacing:7.272000px;}
.ws57{word-spacing:7.344000px;}
.ws89{word-spacing:7.488000px;}
.ws51{word-spacing:7.560000px;}
.ws18{word-spacing:7.632000px;}
.ws88{word-spacing:7.704000px;}
.ws50{word-spacing:7.776000px;}
.ws1b{word-spacing:7.920000px;}
.ws4a{word-spacing:7.992000px;}
.ws48{word-spacing:8.064000px;}
.ws6a{word-spacing:8.136000px;}
.ws60{word-spacing:8.208000px;}
.ws8c{word-spacing:8.280000px;}
.ws77{word-spacing:8.352000px;}
.ws0{word-spacing:8.376000px;}
.ws5{word-spacing:8.400000px;}
.wsa1{word-spacing:8.424000px;}
.wsa{word-spacing:8.460000px;}
.ws23{word-spacing:8.496000px;}
.ws15{word-spacing:8.568000px;}
.ws7c{word-spacing:8.640000px;}
.ws38{word-spacing:8.712000px;}
.ws87{word-spacing:8.784000px;}
.ws4c{word-spacing:8.856000px;}
.ws7b{word-spacing:8.928000px;}
.ws3f{word-spacing:9.072000px;}
.ws86{word-spacing:9.144000px;}
.ws44{word-spacing:9.288000px;}
.ws34{word-spacing:9.360000px;}
.wsa3{word-spacing:9.432000px;}
.ws62{word-spacing:9.576000px;}
.ws16{word-spacing:9.720000px;}
.ws66{word-spacing:9.792000px;}
.ws21{word-spacing:10.080000px;}
.ws3a{word-spacing:10.152000px;}
.ws85{word-spacing:10.368000px;}
.ws83{word-spacing:10.800000px;}
.ws10{word-spacing:34.980000px;}
.ws5b{word-spacing:62.580000px;}
.ws5c{word-spacing:65.580000px;}
.ws5d{word-spacing:88.500000px;}
._0{margin-left:-940.386000px;}
._f{margin-left:-16.920000px;}
._9{margin-left:-13.782600px;}
._10{margin-left:-8.300400px;}
._6{margin-left:-7.098600px;}
._1{margin-left:-5.964000px;}
._12{margin-left:-4.502400px;}
._4{margin-left:-3.300000px;}
._5{margin-left:-2.255400px;}
._3{margin-left:-1.248000px;}
._2{width:1.878000px;}
._11{width:2.944800px;}
._7{width:3.948000px;}
._d{width:5.124000px;}
._1f{width:7.416000px;}
._14{width:9.809400px;}
._1e{width:10.968600px;}
._b{width:19.044000px;}
._13{width:20.047200px;}
._20{width:21.711000px;}
._8{width:31.646100px;}
._c{width:40.452000px;}
._e{width:72.478800px;}
._17{width:117.300000px;}
._1b{width:163.140000px;}
._18{width:187.860000px;}
._1c{width:189.120000px;}
._19{width:193.140000px;}
._a{width:201.564000px;}
._16{width:220.584000px;}
._1a{width:263.664000px;}
._1d{width:268.980000px;}
._15{width:438.601800px;}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:35.700000px;}
.fs5{font-size:48.000000px;}
.fs3{font-size:50.400000px;}
.fs7{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;}
.y23{bottom:39.000000px;}
.y22{bottom:55.500000px;}
.y1{bottom:72.000000px;}
.y21{bottom:117.000000px;}
.ycd{bottom:117.252000px;}
.ya9{bottom:117.917700px;}
.y19b{bottom:118.788300px;}
.y168{bottom:119.460000px;}
.y11f{bottom:121.072500px;}
.y6a{bottom:121.207500px;}
.y47{bottom:122.464050px;}
.y20{bottom:132.000000px;}
.y167{bottom:133.416000px;}
.y91{bottom:136.207500px;}
.y19a{bottom:137.388300px;}
.ycc{bottom:139.158000px;}
.y69{bottom:139.500000px;}
.y11e{bottom:139.522500px;}
.ya8{bottom:140.417700px;}
.y46{bottom:144.514050px;}
.y1f{bottom:147.000000px;}
.y166{bottom:147.372000px;}
.yfa{bottom:151.207500px;}
.y199{bottom:155.988300px;}
.y68{bottom:158.707500px;}
.ycb{bottom:161.064000px;}
.y165{bottom:161.328000px;}
.y8d{bottom:162.000000px;}
.ya7{bottom:162.917700px;}
.y1e{bottom:166.207500px;}
.y11d{bottom:166.500450px;}
.y45{bottom:167.158050px;}
.y198{bottom:174.588300px;}
.y164{bottom:175.272000px;}
.y90{bottom:177.000000px;}
.y141{bottom:177.750000px;}
.yca{bottom:182.970000px;}
.y8c{bottom:184.500000px;}
.ya6{bottom:185.417700px;}
.y11c{bottom:188.694450px;}
.y44{bottom:189.802050px;}
.yf9{bottom:190.814100px;}
.y8f{bottom:192.000000px;}
.y163{bottom:195.600000px;}
.y67{bottom:198.444000px;}
.y1d{bottom:198.807150px;}
.y140{bottom:199.800000px;}
.ye9{bottom:204.732000px;}
.yc9{bottom:204.876000px;}
.y197{bottom:205.944150px;}
.y8b{bottom:207.000000px;}
.ya5{bottom:207.917700px;}
.y11b{bottom:210.888450px;}
.y8e{bottom:211.207500px;}
.y43{bottom:212.446050px;}
.yf8{bottom:212.864100px;}
.y1c{bottom:217.707150px;}
.y1bf{bottom:218.850000px;}
.y66{bottom:221.088000px;}
.y13f{bottom:221.850000px;}
.ye8{bottom:226.638000px;}
.yc8{bottom:226.782000px;}
.y8a{bottom:229.500000px;}
.ya4{bottom:230.417700px;}
.y11a{bottom:233.082450px;}
.yf7{bottom:234.914100px;}
.y42{bottom:235.090050px;}
.y1b{bottom:236.607150px;}
.y196{bottom:236.790000px;}
.y1be{bottom:237.600000px;}
.y162{bottom:238.428000px;}
.y65{bottom:243.732000px;}
.y13e{bottom:243.900000px;}
.ye7{bottom:248.544000px;}
.yc7{bottom:248.688000px;}
.y89{bottom:252.000000px;}
.ya3{bottom:252.917700px;}
.y119{bottom:255.276450px;}
.y1a{bottom:255.507150px;}
.y1bd{bottom:256.350000px;}
.yf6{bottom:256.964100px;}
.y41{bottom:257.734050px;}
.y161{bottom:259.884000px;}
.y13d{bottom:265.950000px;}
.y64{bottom:266.376000px;}
.ye6{bottom:270.450000px;}
.yc6{bottom:270.594000px;}
.y19{bottom:274.407150px;}
.y88{bottom:274.500000px;}
.y1bc{bottom:275.100000px;}
.ya2{bottom:275.417700px;}
.yf5{bottom:279.014100px;}
.y40{bottom:280.378050px;}
.y160{bottom:281.340000px;}
.y195{bottom:281.490000px;}
.y118{bottom:285.980400px;}
.y13c{bottom:288.000000px;}
.y63{bottom:289.020000px;}
.ye5{bottom:292.356000px;}
.yc5{bottom:292.500000px;}
.y18{bottom:293.307150px;}
.y1bb{bottom:293.850000px;}
.y194{bottom:296.334000px;}
.y87{bottom:297.000000px;}
.ya1{bottom:297.917700px;}
.yf4{bottom:301.064100px;}
.y15f{bottom:302.796000px;}
.y3f{bottom:303.022050px;}
.y117{bottom:304.430400px;}
.y13b{bottom:310.050000px;}
.y193{bottom:311.178000px;}
.y62{bottom:311.664000px;}
.ye4{bottom:314.262000px;}
.yc4{bottom:314.400000px;}
.y86{bottom:319.500000px;}
.ya0{bottom:320.417700px;}
.y17{bottom:320.712150px;}
.y116{bottom:322.880400px;}
.yf3{bottom:323.114100px;}
.y1ba{bottom:323.850000px;}
.y15e{bottom:324.252000px;}
.y3e{bottom:325.666050px;}
.y192{bottom:326.022000px;}
.y13a{bottom:332.100000px;}
.y61{bottom:334.308000px;}
.ye3{bottom:336.168000px;}
.y191{bottom:340.866000px;}
.y115{bottom:341.330400px;}
.y85{bottom:342.000000px;}
.y1b9{bottom:342.600000px;}
.y9f{bottom:342.917700px;}
.yf2{bottom:345.164100px;}
.y15d{bottom:345.708000px;}
.y3d{bottom:348.310050px;}
.y139{bottom:354.150000px;}
.y190{bottom:355.710000px;}
.y60{bottom:357.114000px;}
.yc3{bottom:358.062000px;}
.ye2{bottom:358.074000px;}
.y1b8{bottom:361.350000px;}
.y84{bottom:364.500000px;}
.y9e{bottom:365.417700px;}
.y16{bottom:365.712150px;}
.y15c{bottom:367.164000px;}
.yf1{bottom:367.214100px;}
.y114{bottom:368.362350px;}
.y18f{bottom:370.554000px;}
.y3c{bottom:370.954050px;}
.y138{bottom:376.200000px;}
.y5f{bottom:379.920000px;}
.yc2{bottom:379.968000px;}
.ye1{bottom:379.980000px;}
.y1b7{bottom:380.100000px;}
.y15{bottom:384.462150px;}
.y18e{bottom:385.398000px;}
.y83{bottom:387.000000px;}
.y9d{bottom:387.917700px;}
.y15b{bottom:388.620000px;}
.yf0{bottom:389.264100px;}
.y113{bottom:390.556350px;}
.y3b{bottom:393.598050px;}
.y137{bottom:398.250000px;}
.y1b6{bottom:398.850000px;}
.y18d{bottom:400.242000px;}
.yc1{bottom:401.874000px;}
.ye0{bottom:401.886000px;}
.y5e{bottom:402.726000px;}
.y82{bottom:409.500000px;}
.y15a{bottom:410.076000px;}
.y9c{bottom:410.417700px;}
.yef{bottom:411.314100px;}
.y14{bottom:411.715050px;}
.y112{bottom:412.750350px;}
.y18c{bottom:415.086000px;}
.y3a{bottom:416.242050px;}
.yc0{bottom:423.780000px;}
.ydf{bottom:423.792000px;}
.y5d{bottom:425.532000px;}
.y1b5{bottom:428.850000px;}
.y18b{bottom:429.930000px;}
.y13{bottom:430.465050px;}
.y159{bottom:431.532000px;}
.y81{bottom:432.000000px;}
.y9b{bottom:432.917700px;}
.yee{bottom:433.364100px;}
.y111{bottom:434.944350px;}
.y39{bottom:438.886050px;}
.y136{bottom:442.350000px;}
.y18a{bottom:444.774000px;}
.ybf{bottom:445.686000px;}
.yde{bottom:445.698000px;}
.y1b4{bottom:447.600000px;}
.y5c{bottom:448.338000px;}
.y12{bottom:449.215050px;}
.y158{bottom:452.988000px;}
.y80{bottom:454.500000px;}
.yed{bottom:455.414100px;}
.y110{bottom:457.138350px;}
.y189{bottom:459.618000px;}
.y38{bottom:461.530050px;}
.y135{bottom:464.400000px;}
.y1b3{bottom:466.350000px;}
.ybe{bottom:467.592000px;}
.ydd{bottom:467.604000px;}
.y11{bottom:467.965050px;}
.y5b{bottom:471.144000px;}
.y157{bottom:474.444000px;}
.y188{bottom:474.462000px;}
.y7f{bottom:477.000000px;}
.yec{bottom:477.464100px;}
.y9a{bottom:477.917700px;}
.y10f{bottom:479.332350px;}
.y37{bottom:484.174050px;}
.y1b2{bottom:485.100000px;}
.y134{bottom:486.450000px;}
.y10{bottom:486.715050px;}
.y187{bottom:489.306000px;}
.ybd{bottom:489.498000px;}
.ydc{bottom:489.510000px;}
.y5a{bottom:493.950000px;}
.y156{bottom:495.900000px;}
.y7e{bottom:499.500000px;}
.yeb{bottom:499.514100px;}
.y99{bottom:500.417700px;}
.y10e{bottom:501.526350px;}
.y1b1{bottom:503.850000px;}
.y186{bottom:504.150000px;}
.yf{bottom:505.465050px;}
.y36{bottom:506.818050px;}
.y133{bottom:508.500000px;}
.ybc{bottom:511.404000px;}
.ydb{bottom:511.416000px;}
.y59{bottom:516.750000px;}
.y155{bottom:517.500000px;}
.y185{bottom:518.994000px;}
.yea{bottom:521.564100px;}
.y7d{bottom:522.000000px;}
.y98{bottom:522.917700px;}
.y10d{bottom:523.720350px;}
.ye{bottom:524.215050px;}
.y35{bottom:529.462050px;}
.y132{bottom:530.550000px;}
.ybb{bottom:533.310000px;}
.yda{bottom:533.322000px;}
.y184{bottom:533.838000px;}
.y1b0{bottom:533.850000px;}
.y154{bottom:539.100000px;}
.yd{bottom:542.965050px;}
.y7c{bottom:544.500000px;}
.y97{bottom:545.417700px;}
.y10c{bottom:545.914350px;}
.y183{bottom:548.682000px;}
.y34{bottom:552.106050px;}
.y131{bottom:552.600000px;}
.yba{bottom:555.216000px;}
.yd9{bottom:555.228000px;}
.y153{bottom:560.700000px;}
.yc{bottom:561.715050px;}
.y58{bottom:562.308000px;}
.y182{bottom:563.526000px;}
.y7b{bottom:567.000000px;}
.y96{bottom:567.917700px;}
.y10b{bottom:568.108350px;}
.y130{bottom:574.650000px;}
.y33{bottom:574.750050px;}
.y1af{bottom:575.100000px;}
.yd8{bottom:577.134000px;}
.y181{bottom:578.370000px;}
.y152{bottom:582.300000px;}
.y57{bottom:585.114000px;}
.yb{bottom:588.970050px;}
.y7a{bottom:589.500000px;}
.y10a{bottom:590.302350px;}
.y95{bottom:590.417700px;}
.y180{bottom:593.214000px;}
.y1ae{bottom:593.850000px;}
.y12f{bottom:596.700000px;}
.y32{bottom:597.394050px;}
.yb9{bottom:599.010000px;}
.yd7{bottom:599.040000px;}
.y151{bottom:603.900000px;}
.y56{bottom:607.920000px;}
.y17f{bottom:608.058000px;}
.y79{bottom:612.000000px;}
.y109{bottom:612.496350px;}
.y1ad{bottom:612.600000px;}
.y12e{bottom:618.750000px;}
.y31{bottom:620.038050px;}
.yb8{bottom:620.916000px;}
.yd6{bottom:620.946000px;}
.y17e{bottom:622.902000px;}
.y150{bottom:625.500000px;}
.y55{bottom:630.726000px;}
.y94{bottom:630.793650px;}
.y1ac{bottom:631.350000px;}
.y78{bottom:634.500000px;}
.y108{bottom:634.690350px;}
.ya{bottom:634.855800px;}
.y17d{bottom:637.746000px;}
.y12d{bottom:640.800000px;}
.y30{bottom:642.682050px;}
.yb7{bottom:642.822000px;}
.yd5{bottom:642.852000px;}
.y14f{bottom:647.100000px;}
.y1ab{bottom:650.100000px;}
.y17c{bottom:652.590000px;}
.y54{bottom:653.532000px;}
.y107{bottom:656.884350px;}
.y77{bottom:657.000000px;}
.y9{bottom:657.355800px;}
.y93{bottom:657.778650px;}
.y12c{bottom:662.850000px;}
.yb6{bottom:664.728000px;}
.yd4{bottom:664.758000px;}
.y2f{bottom:665.326050px;}
.y17b{bottom:667.434000px;}
.y14e{bottom:668.700000px;}
.y1aa{bottom:668.850000px;}
.y53{bottom:676.338000px;}
.y76{bottom:679.500000px;}
.y17a{bottom:682.278000px;}
.y92{bottom:684.763650px;}
.y12b{bottom:684.900000px;}
.yb5{bottom:686.634000px;}
.yd3{bottom:686.664000px;}
.y106{bottom:687.586050px;}
.y1a9{bottom:687.600000px;}
.y2e{bottom:687.970050px;}
.y14d{bottom:690.300000px;}
.y179{bottom:697.122000px;}
.y52{bottom:699.144000px;}
.y75{bottom:702.000000px;}
.y8{bottom:703.241700px;}
.y105{bottom:706.036050px;}
.y1a8{bottom:706.350000px;}
.y12a{bottom:706.950000px;}
.yb4{bottom:708.540000px;}
.yd2{bottom:708.570000px;}
.y2d{bottom:710.614050px;}
.y14c{bottom:711.900000px;}
.y178{bottom:711.966000px;}
.y51{bottom:721.920000px;}
.y104{bottom:724.486050px;}
.y74{bottom:724.500000px;}
.y1a7{bottom:725.100000px;}
.y7{bottom:725.741700px;}
.y177{bottom:726.810000px;}
.y129{bottom:729.000000px;}
.yb3{bottom:730.446000px;}
.yd1{bottom:730.476000px;}
.y2c{bottom:733.258050px;}
.y14b{bottom:733.500000px;}
.y176{bottom:741.654000px;}
.y1a6{bottom:743.850000px;}
.y50{bottom:744.726000px;}
.y73{bottom:747.000000px;}
.y128{bottom:751.050000px;}
.y103{bottom:751.441050px;}
.yb2{bottom:752.352000px;}
.yd0{bottom:752.382000px;}
.y14a{bottom:755.100000px;}
.y2b{bottom:755.902050px;}
.y175{bottom:756.498000px;}
.y1a5{bottom:762.600000px;}
.y4f{bottom:767.532000px;}
.y72{bottom:769.500000px;}
.y102{bottom:769.891050px;}
.y174{bottom:771.342000px;}
.y6{bottom:771.627450px;}
.y127{bottom:773.100000px;}
.yb1{bottom:774.258000px;}
.ycf{bottom:774.288000px;}
.y149{bottom:776.700000px;}
.y2a{bottom:778.546050px;}
.y1a4{bottom:781.350000px;}
.y173{bottom:786.186000px;}
.y4e{bottom:790.338000px;}
.y71{bottom:792.000000px;}
.y5{bottom:794.127450px;}
.y126{bottom:795.150000px;}
.yb0{bottom:796.164000px;}
.yce{bottom:796.194000px;}
.y101{bottom:796.846050px;}
.y148{bottom:798.300000px;}
.y1a3{bottom:800.100000px;}
.y172{bottom:801.030000px;}
.y29{bottom:801.196050px;}
.y4d{bottom:813.144000px;}
.y70{bottom:814.500000px;}
.y100{bottom:815.296050px;}
.y171{bottom:815.886000px;}
.y125{bottom:817.200000px;}
.yaf{bottom:818.070000px;}
.y1a2{bottom:818.850000px;}
.y147{bottom:819.900000px;}
.y170{bottom:830.730000px;}
.yff{bottom:833.746050px;}
.y4c{bottom:835.950000px;}
.y6f{bottom:837.000000px;}
.y1a1{bottom:837.600000px;}
.y124{bottom:839.250000px;}
.yae{bottom:839.976000px;}
.y146{bottom:841.500000px;}
.y16f{bottom:845.574000px;}
.y28{bottom:846.496050px;}
.y1a0{bottom:856.350000px;}
.y4b{bottom:858.756000px;}
.y6e{bottom:859.500000px;}
.y16e{bottom:860.418000px;}
.yfe{bottom:860.718000px;}
.y4{bottom:861.273150px;}
.y123{bottom:861.300000px;}
.yad{bottom:861.882000px;}
.y145{bottom:863.100000px;}
.y27{bottom:865.396050px;}
.y19f{bottom:875.100000px;}
.y16d{bottom:875.262000px;}
.y4a{bottom:881.562000px;}
.y6d{bottom:882.000000px;}
.yfd{bottom:882.912000px;}
.y122{bottom:883.350000px;}
.yac{bottom:883.788000px;}
.y144{bottom:884.700000px;}
.y16c{bottom:890.118000px;}
.y3{bottom:891.273150px;}
.y26{bottom:892.800000px;}
.y19e{bottom:893.700000px;}
.y49{bottom:904.206000px;}
.y6c{bottom:904.500000px;}
.y16b{bottom:904.962000px;}
.yfc{bottom:905.106000px;}
.y121{bottom:905.400000px;}
.yab{bottom:905.694000px;}
.y143{bottom:906.300000px;}
.y25{bottom:911.700000px;}
.y19d{bottom:912.300000px;}
.y16a{bottom:919.806000px;}
.y48{bottom:926.850000px;}
.y6b{bottom:927.000000px;}
.yfb{bottom:927.300000px;}
.y120{bottom:927.450000px;}
.yaa{bottom:927.600000px;}
.y142{bottom:927.900000px;}
.y24{bottom:930.600000px;}
.y19c{bottom:930.900000px;}
.y169{bottom:934.650000px;}
.y2{bottom:940.023150px;}
.h7{height:30.313623px;}
.h10{height:33.117188px;}
.hf{height:39.072000px;}
.h8{height:40.757812px;}
.h6{height:41.396484px;}
.h11{height:45.852539px;}
.hd{height:47.988281px;}
.h2{height:48.399902px;}
.he{height:48.840000px;}
.h4{height:49.380000px;}
.h5{height:49.675781px;}
.h1{height:50.947266px;}
.h9{height:61.136719px;}
.hc{height:66.555703px;}
.ha{height:66.675703px;}
.hb{height:66.723703px;}
.h3{height:101.894531px;}
.h0{height:1017.000000px;}
.w0{width:720.000000px;}
.x0{left:0.000000px;}
.x5{left:67.500000px;}
.xa{left:73.828950px;}
.x8{left:82.381950px;}
.x7{left:97.263750px;}
.x2{left:112.500000px;}
.x4{left:127.381950px;}
.x6{left:135.000000px;}
.x3{left:142.263750px;}
.xb{left:167.763750px;}
.x9{left:170.353950px;}
.xc{left:180.525000px;}
.x1{left:635.390550px;}
@media print{
.v2{vertical-align:-14.960000pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:21.226667pt;}
.v1{vertical-align:42.453867pt;}
.ls14{letter-spacing:-1.024000pt;}
.ls1e{letter-spacing:-0.896000pt;}
.ls1d{letter-spacing:-0.832000pt;}
.ls1f{letter-spacing:-0.768000pt;}
.ls19{letter-spacing:-0.640000pt;}
.lsc{letter-spacing:-0.576000pt;}
.ls27{letter-spacing:-0.512000pt;}
.ls15{letter-spacing:-0.448000pt;}
.ls22{letter-spacing:-0.384000pt;}
.ls13{letter-spacing:-0.320000pt;}
.ls6{letter-spacing:-0.266667pt;}
.ls23{letter-spacing:-0.256000pt;}
.ls7{letter-spacing:-0.213333pt;}
.lse{letter-spacing:-0.192000pt;}
.lsf{letter-spacing:-0.128000pt;}
.lsd{letter-spacing:-0.064000pt;}
.ls3{letter-spacing:0.000000pt;}
.ls16{letter-spacing:0.064000pt;}
.ls2{letter-spacing:0.106667pt;}
.lsa{letter-spacing:0.128000pt;}
.lsb{letter-spacing:0.192000pt;}
.ls21{letter-spacing:0.213333pt;}
.ls1b{letter-spacing:0.214400pt;}
.ls18{letter-spacing:0.256000pt;}
.ls2b{letter-spacing:0.266667pt;}
.ls11{letter-spacing:0.319467pt;}
.ls12{letter-spacing:0.320000pt;}
.ls24{letter-spacing:0.384000pt;}
.ls10{letter-spacing:0.448000pt;}
.ls1a{letter-spacing:0.512000pt;}
.ls17{letter-spacing:0.576000pt;}
.ls20{letter-spacing:0.640000pt;}
.ls29{letter-spacing:0.704000pt;}
.ls25{letter-spacing:0.768000pt;}
.ls1c{letter-spacing:0.832000pt;}
.ls26{letter-spacing:0.896000pt;}
.ls0{letter-spacing:2.533333pt;}
.ls28{letter-spacing:3.786667pt;}
.ls9{letter-spacing:4.053333pt;}
.ls5{letter-spacing:4.096000pt;}
.ls2a{letter-spacing:4.224000pt;}
.ls2c{letter-spacing:7.200000pt;}
.ls4{letter-spacing:7.520000pt;}
.ls1{letter-spacing:9.546667pt;}
.ls8{letter-spacing:49.013333pt;}
.ws2{word-spacing:-22.506667pt;}
.ws4d{word-spacing:-17.984000pt;}
.ws1{word-spacing:-16.770667pt;}
.ws7d{word-spacing:-16.576000pt;}
.ws7e{word-spacing:-16.320000pt;}
.ws90{word-spacing:-16.256000pt;}
.ws9e{word-spacing:-16.192000pt;}
.ws97{word-spacing:-16.128000pt;}
.ws3d{word-spacing:-16.064000pt;}
.ws70{word-spacing:-16.000000pt;}
.ws8e{word-spacing:-15.936000pt;}
.ws3b{word-spacing:-15.808000pt;}
.ws3c{word-spacing:-15.744000pt;}
.ws7f{word-spacing:-15.616000pt;}
.ws6f{word-spacing:-15.552000pt;}
.ws6e{word-spacing:-15.488000pt;}
.wsa6{word-spacing:-13.440000pt;}
.ws8f{word-spacing:-13.173333pt;}
.ws3{word-spacing:-12.906667pt;}
.ws28{word-spacing:-12.588800pt;}
.ws98{word-spacing:-10.538667pt;}
.wsa7{word-spacing:-7.200000pt;}
.wsa4{word-spacing:-4.224000pt;}
.ws9{word-spacing:-4.096000pt;}
.ws2d{word-spacing:-1.792000pt;}
.ws2c{word-spacing:-1.600000pt;}
.ws5f{word-spacing:-0.896000pt;}
.ws80{word-spacing:-0.768000pt;}
.ws81{word-spacing:-0.576000pt;}
.ws82{word-spacing:-0.512000pt;}
.ws2f{word-spacing:-0.320000pt;}
.wsa8{word-spacing:-0.266667pt;}
.ws4b{word-spacing:-0.256000pt;}
.wsa5{word-spacing:-0.213333pt;}
.ws76{word-spacing:-0.192000pt;}
.ws8b{word-spacing:-0.053333pt;}
.ws6{word-spacing:0.000000pt;}
.ws75{word-spacing:0.064000pt;}
.ws78{word-spacing:0.128000pt;}
.ws40{word-spacing:0.192000pt;}
.wsf{word-spacing:0.213333pt;}
.ws13{word-spacing:0.256000pt;}
.wsb{word-spacing:0.266667pt;}
.ws37{word-spacing:0.320000pt;}
.ws74{word-spacing:0.384000pt;}
.ws2b{word-spacing:0.448000pt;}
.ws36{word-spacing:0.512000pt;}
.ws55{word-spacing:0.640000pt;}
.ws2e{word-spacing:0.768000pt;}
.ws67{word-spacing:0.832000pt;}
.ws1e{word-spacing:0.896000pt;}
.ws6b{word-spacing:1.088000pt;}
.ws72{word-spacing:1.152000pt;}
.ws73{word-spacing:1.216000pt;}
.wsa2{word-spacing:1.280000pt;}
.ws27{word-spacing:1.344000pt;}
.ws20{word-spacing:1.472000pt;}
.ws8a{word-spacing:1.536000pt;}
.ws7{word-spacing:1.600000pt;}
.ws12{word-spacing:1.621333pt;}
.ws1f{word-spacing:1.664000pt;}
.ws2a{word-spacing:1.728000pt;}
.ws1a{word-spacing:1.792000pt;}
.ws17{word-spacing:1.856000pt;}
.ws4e{word-spacing:1.920000pt;}
.ws7a{word-spacing:1.984000pt;}
.ws31{word-spacing:2.048000pt;}
.ws41{word-spacing:2.112000pt;}
.ws5e{word-spacing:2.133333pt;}
.ws8d{word-spacing:2.176000pt;}
.ws30{word-spacing:2.240000pt;}
.ws9d{word-spacing:2.304000pt;}
.ws43{word-spacing:2.368000pt;}
.ws1d{word-spacing:2.432000pt;}
.ws71{word-spacing:2.496000pt;}
.ws14{word-spacing:2.560000pt;}
.wse{word-spacing:2.645333pt;}
.ws46{word-spacing:2.688000pt;}
.ws61{word-spacing:2.752000pt;}
.ws3e{word-spacing:2.816000pt;}
.ws6c{word-spacing:2.880000pt;}
.ws32{word-spacing:2.944000pt;}
.wsd{word-spacing:2.986667pt;}
.ws9f{word-spacing:3.008000pt;}
.ws11{word-spacing:3.040000pt;}
.ws79{word-spacing:3.072000pt;}
.ws93{word-spacing:3.136000pt;}
.ws65{word-spacing:3.200000pt;}
.ws4f{word-spacing:3.264000pt;}
.wsc{word-spacing:3.306667pt;}
.ws35{word-spacing:3.328000pt;}
.ws9a{word-spacing:3.392000pt;}
.ws96{word-spacing:3.456000pt;}
.ws91{word-spacing:3.520000pt;}
.ws49{word-spacing:3.584000pt;}
.ws4{word-spacing:3.733333pt;}
.ws68{word-spacing:3.776000pt;}
.ws84{word-spacing:3.904000pt;}
.ws8{word-spacing:3.968000pt;}
.ws45{word-spacing:4.032000pt;}
.ws59{word-spacing:4.096000pt;}
.ws94{word-spacing:4.160000pt;}
.ws63{word-spacing:4.224000pt;}
.ws25{word-spacing:4.288000pt;}
.ws29{word-spacing:4.352000pt;}
.ws54{word-spacing:4.416000pt;}
.ws1c{word-spacing:4.480000pt;}
.ws64{word-spacing:4.544000pt;}
.ws47{word-spacing:4.672000pt;}
.ws39{word-spacing:4.736000pt;}
.ws95{word-spacing:4.800000pt;}
.ws99{word-spacing:4.928000pt;}
.ws56{word-spacing:4.992000pt;}
.ws53{word-spacing:5.056000pt;}
.ws22{word-spacing:5.120000pt;}
.ws24{word-spacing:5.184000pt;}
.wsa0{word-spacing:5.312000pt;}
.ws69{word-spacing:5.376000pt;}
.ws9c{word-spacing:5.440000pt;}
.ws42{word-spacing:5.504000pt;}
.ws92{word-spacing:5.632000pt;}
.ws58{word-spacing:5.696000pt;}
.ws19{word-spacing:5.760000pt;}
.ws5a{word-spacing:6.016000pt;}
.ws9b{word-spacing:6.080000pt;}
.ws52{word-spacing:6.144000pt;}
.ws26{word-spacing:6.208000pt;}
.ws33{word-spacing:6.272000pt;}
.ws6d{word-spacing:6.464000pt;}
.ws57{word-spacing:6.528000pt;}
.ws89{word-spacing:6.656000pt;}
.ws51{word-spacing:6.720000pt;}
.ws18{word-spacing:6.784000pt;}
.ws88{word-spacing:6.848000pt;}
.ws50{word-spacing:6.912000pt;}
.ws1b{word-spacing:7.040000pt;}
.ws4a{word-spacing:7.104000pt;}
.ws48{word-spacing:7.168000pt;}
.ws6a{word-spacing:7.232000pt;}
.ws60{word-spacing:7.296000pt;}
.ws8c{word-spacing:7.360000pt;}
.ws77{word-spacing:7.424000pt;}
.ws0{word-spacing:7.445333pt;}
.ws5{word-spacing:7.466667pt;}
.wsa1{word-spacing:7.488000pt;}
.wsa{word-spacing:7.520000pt;}
.ws23{word-spacing:7.552000pt;}
.ws15{word-spacing:7.616000pt;}
.ws7c{word-spacing:7.680000pt;}
.ws38{word-spacing:7.744000pt;}
.ws87{word-spacing:7.808000pt;}
.ws4c{word-spacing:7.872000pt;}
.ws7b{word-spacing:7.936000pt;}
.ws3f{word-spacing:8.064000pt;}
.ws86{word-spacing:8.128000pt;}
.ws44{word-spacing:8.256000pt;}
.ws34{word-spacing:8.320000pt;}
.wsa3{word-spacing:8.384000pt;}
.ws62{word-spacing:8.512000pt;}
.ws16{word-spacing:8.640000pt;}
.ws66{word-spacing:8.704000pt;}
.ws21{word-spacing:8.960000pt;}
.ws3a{word-spacing:9.024000pt;}
.ws85{word-spacing:9.216000pt;}
.ws83{word-spacing:9.600000pt;}
.ws10{word-spacing:31.093333pt;}
.ws5b{word-spacing:55.626667pt;}
.ws5c{word-spacing:58.293333pt;}
.ws5d{word-spacing:78.666667pt;}
._0{margin-left:-835.898667pt;}
._f{margin-left:-15.040000pt;}
._9{margin-left:-12.251200pt;}
._10{margin-left:-7.378133pt;}
._6{margin-left:-6.309867pt;}
._1{margin-left:-5.301333pt;}
._12{margin-left:-4.002133pt;}
._4{margin-left:-2.933333pt;}
._5{margin-left:-2.004800pt;}
._3{margin-left:-1.109333pt;}
._2{width:1.669333pt;}
._11{width:2.617600pt;}
._7{width:3.509333pt;}
._d{width:4.554667pt;}
._1f{width:6.592000pt;}
._14{width:8.719467pt;}
._1e{width:9.749867pt;}
._b{width:16.928000pt;}
._13{width:17.819733pt;}
._20{width:19.298667pt;}
._8{width:28.129867pt;}
._c{width:35.957333pt;}
._e{width:64.425600pt;}
._17{width:104.266667pt;}
._1b{width:145.013333pt;}
._18{width:166.986667pt;}
._1c{width:168.106667pt;}
._19{width:171.680000pt;}
._a{width:179.168000pt;}
._16{width:196.074667pt;}
._1a{width:234.368000pt;}
._1d{width:239.093333pt;}
._15{width:389.868267pt;}
.fs6{font-size:31.733333pt;}
.fs5{font-size:42.666667pt;}
.fs3{font-size:44.800000pt;}
.fs7{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;}
.y23{bottom:34.666667pt;}
.y22{bottom:49.333333pt;}
.y1{bottom:64.000000pt;}
.y21{bottom:104.000000pt;}
.ycd{bottom:104.224000pt;}
.ya9{bottom:104.815733pt;}
.y19b{bottom:105.589600pt;}
.y168{bottom:106.186667pt;}
.y11f{bottom:107.620000pt;}
.y6a{bottom:107.740000pt;}
.y47{bottom:108.856933pt;}
.y20{bottom:117.333333pt;}
.y167{bottom:118.592000pt;}
.y91{bottom:121.073333pt;}
.y19a{bottom:122.122933pt;}
.ycc{bottom:123.696000pt;}
.y69{bottom:124.000000pt;}
.y11e{bottom:124.020000pt;}
.ya8{bottom:124.815733pt;}
.y46{bottom:128.456933pt;}
.y1f{bottom:130.666667pt;}
.y166{bottom:130.997333pt;}
.yfa{bottom:134.406667pt;}
.y199{bottom:138.656267pt;}
.y68{bottom:141.073333pt;}
.ycb{bottom:143.168000pt;}
.y165{bottom:143.402667pt;}
.y8d{bottom:144.000000pt;}
.ya7{bottom:144.815733pt;}
.y1e{bottom:147.740000pt;}
.y11d{bottom:148.000400pt;}
.y45{bottom:148.584933pt;}
.y198{bottom:155.189600pt;}
.y164{bottom:155.797333pt;}
.y90{bottom:157.333333pt;}
.y141{bottom:158.000000pt;}
.yca{bottom:162.640000pt;}
.y8c{bottom:164.000000pt;}
.ya6{bottom:164.815733pt;}
.y11c{bottom:167.728400pt;}
.y44{bottom:168.712933pt;}
.yf9{bottom:169.612533pt;}
.y8f{bottom:170.666667pt;}
.y163{bottom:173.866667pt;}
.y67{bottom:176.394667pt;}
.y1d{bottom:176.717467pt;}
.y140{bottom:177.600000pt;}
.ye9{bottom:181.984000pt;}
.yc9{bottom:182.112000pt;}
.y197{bottom:183.061467pt;}
.y8b{bottom:184.000000pt;}
.ya5{bottom:184.815733pt;}
.y11b{bottom:187.456400pt;}
.y8e{bottom:187.740000pt;}
.y43{bottom:188.840933pt;}
.yf8{bottom:189.212533pt;}
.y1c{bottom:193.517467pt;}
.y1bf{bottom:194.533333pt;}
.y66{bottom:196.522667pt;}
.y13f{bottom:197.200000pt;}
.ye8{bottom:201.456000pt;}
.yc8{bottom:201.584000pt;}
.y8a{bottom:204.000000pt;}
.ya4{bottom:204.815733pt;}
.y11a{bottom:207.184400pt;}
.yf7{bottom:208.812533pt;}
.y42{bottom:208.968933pt;}
.y1b{bottom:210.317467pt;}
.y196{bottom:210.480000pt;}
.y1be{bottom:211.200000pt;}
.y162{bottom:211.936000pt;}
.y65{bottom:216.650667pt;}
.y13e{bottom:216.800000pt;}
.ye7{bottom:220.928000pt;}
.yc7{bottom:221.056000pt;}
.y89{bottom:224.000000pt;}
.ya3{bottom:224.815733pt;}
.y119{bottom:226.912400pt;}
.y1a{bottom:227.117467pt;}
.y1bd{bottom:227.866667pt;}
.yf6{bottom:228.412533pt;}
.y41{bottom:229.096933pt;}
.y161{bottom:231.008000pt;}
.y13d{bottom:236.400000pt;}
.y64{bottom:236.778667pt;}
.ye6{bottom:240.400000pt;}
.yc6{bottom:240.528000pt;}
.y19{bottom:243.917467pt;}
.y88{bottom:244.000000pt;}
.y1bc{bottom:244.533333pt;}
.ya2{bottom:244.815733pt;}
.yf5{bottom:248.012533pt;}
.y40{bottom:249.224933pt;}
.y160{bottom:250.080000pt;}
.y195{bottom:250.213333pt;}
.y118{bottom:254.204800pt;}
.y13c{bottom:256.000000pt;}
.y63{bottom:256.906667pt;}
.ye5{bottom:259.872000pt;}
.yc5{bottom:260.000000pt;}
.y18{bottom:260.717467pt;}
.y1bb{bottom:261.200000pt;}
.y194{bottom:263.408000pt;}
.y87{bottom:264.000000pt;}
.ya1{bottom:264.815733pt;}
.yf4{bottom:267.612533pt;}
.y15f{bottom:269.152000pt;}
.y3f{bottom:269.352933pt;}
.y117{bottom:270.604800pt;}
.y13b{bottom:275.600000pt;}
.y193{bottom:276.602667pt;}
.y62{bottom:277.034667pt;}
.ye4{bottom:279.344000pt;}
.yc4{bottom:279.466667pt;}
.y86{bottom:284.000000pt;}
.ya0{bottom:284.815733pt;}
.y17{bottom:285.077467pt;}
.y116{bottom:287.004800pt;}
.yf3{bottom:287.212533pt;}
.y1ba{bottom:287.866667pt;}
.y15e{bottom:288.224000pt;}
.y3e{bottom:289.480933pt;}
.y192{bottom:289.797333pt;}
.y13a{bottom:295.200000pt;}
.y61{bottom:297.162667pt;}
.ye3{bottom:298.816000pt;}
.y191{bottom:302.992000pt;}
.y115{bottom:303.404800pt;}
.y85{bottom:304.000000pt;}
.y1b9{bottom:304.533333pt;}
.y9f{bottom:304.815733pt;}
.yf2{bottom:306.812533pt;}
.y15d{bottom:307.296000pt;}
.y3d{bottom:309.608933pt;}
.y139{bottom:314.800000pt;}
.y190{bottom:316.186667pt;}
.y60{bottom:317.434667pt;}
.yc3{bottom:318.277333pt;}
.ye2{bottom:318.288000pt;}
.y1b8{bottom:321.200000pt;}
.y84{bottom:324.000000pt;}
.y9e{bottom:324.815733pt;}
.y16{bottom:325.077467pt;}
.y15c{bottom:326.368000pt;}
.yf1{bottom:326.412533pt;}
.y114{bottom:327.433200pt;}
.y18f{bottom:329.381333pt;}
.y3c{bottom:329.736933pt;}
.y138{bottom:334.400000pt;}
.y5f{bottom:337.706667pt;}
.yc2{bottom:337.749333pt;}
.ye1{bottom:337.760000pt;}
.y1b7{bottom:337.866667pt;}
.y15{bottom:341.744133pt;}
.y18e{bottom:342.576000pt;}
.y83{bottom:344.000000pt;}
.y9d{bottom:344.815733pt;}
.y15b{bottom:345.440000pt;}
.yf0{bottom:346.012533pt;}
.y113{bottom:347.161200pt;}
.y3b{bottom:349.864933pt;}
.y137{bottom:354.000000pt;}
.y1b6{bottom:354.533333pt;}
.y18d{bottom:355.770667pt;}
.yc1{bottom:357.221333pt;}
.ye0{bottom:357.232000pt;}
.y5e{bottom:357.978667pt;}
.y82{bottom:364.000000pt;}
.y15a{bottom:364.512000pt;}
.y9c{bottom:364.815733pt;}
.yef{bottom:365.612533pt;}
.y14{bottom:365.968933pt;}
.y112{bottom:366.889200pt;}
.y18c{bottom:368.965333pt;}
.y3a{bottom:369.992933pt;}
.yc0{bottom:376.693333pt;}
.ydf{bottom:376.704000pt;}
.y5d{bottom:378.250667pt;}
.y1b5{bottom:381.200000pt;}
.y18b{bottom:382.160000pt;}
.y13{bottom:382.635600pt;}
.y159{bottom:383.584000pt;}
.y81{bottom:384.000000pt;}
.y9b{bottom:384.815733pt;}
.yee{bottom:385.212533pt;}
.y111{bottom:386.617200pt;}
.y39{bottom:390.120933pt;}
.y136{bottom:393.200000pt;}
.y18a{bottom:395.354667pt;}
.ybf{bottom:396.165333pt;}
.yde{bottom:396.176000pt;}
.y1b4{bottom:397.866667pt;}
.y5c{bottom:398.522667pt;}
.y12{bottom:399.302267pt;}
.y158{bottom:402.656000pt;}
.y80{bottom:404.000000pt;}
.yed{bottom:404.812533pt;}
.y110{bottom:406.345200pt;}
.y189{bottom:408.549333pt;}
.y38{bottom:410.248933pt;}
.y135{bottom:412.800000pt;}
.y1b3{bottom:414.533333pt;}
.ybe{bottom:415.637333pt;}
.ydd{bottom:415.648000pt;}
.y11{bottom:415.968933pt;}
.y5b{bottom:418.794667pt;}
.y157{bottom:421.728000pt;}
.y188{bottom:421.744000pt;}
.y7f{bottom:424.000000pt;}
.yec{bottom:424.412533pt;}
.y9a{bottom:424.815733pt;}
.y10f{bottom:426.073200pt;}
.y37{bottom:430.376933pt;}
.y1b2{bottom:431.200000pt;}
.y134{bottom:432.400000pt;}
.y10{bottom:432.635600pt;}
.y187{bottom:434.938667pt;}
.ybd{bottom:435.109333pt;}
.ydc{bottom:435.120000pt;}
.y5a{bottom:439.066667pt;}
.y156{bottom:440.800000pt;}
.y7e{bottom:444.000000pt;}
.yeb{bottom:444.012533pt;}
.y99{bottom:444.815733pt;}
.y10e{bottom:445.801200pt;}
.y1b1{bottom:447.866667pt;}
.y186{bottom:448.133333pt;}
.yf{bottom:449.302267pt;}
.y36{bottom:450.504933pt;}
.y133{bottom:452.000000pt;}
.ybc{bottom:454.581333pt;}
.ydb{bottom:454.592000pt;}
.y59{bottom:459.333333pt;}
.y155{bottom:460.000000pt;}
.y185{bottom:461.328000pt;}
.yea{bottom:463.612533pt;}
.y7d{bottom:464.000000pt;}
.y98{bottom:464.815733pt;}
.y10d{bottom:465.529200pt;}
.ye{bottom:465.968933pt;}
.y35{bottom:470.632933pt;}
.y132{bottom:471.600000pt;}
.ybb{bottom:474.053333pt;}
.yda{bottom:474.064000pt;}
.y184{bottom:474.522667pt;}
.y1b0{bottom:474.533333pt;}
.y154{bottom:479.200000pt;}
.yd{bottom:482.635600pt;}
.y7c{bottom:484.000000pt;}
.y97{bottom:484.815733pt;}
.y10c{bottom:485.257200pt;}
.y183{bottom:487.717333pt;}
.y34{bottom:490.760933pt;}
.y131{bottom:491.200000pt;}
.yba{bottom:493.525333pt;}
.yd9{bottom:493.536000pt;}
.y153{bottom:498.400000pt;}
.yc{bottom:499.302267pt;}
.y58{bottom:499.829333pt;}
.y182{bottom:500.912000pt;}
.y7b{bottom:504.000000pt;}
.y96{bottom:504.815733pt;}
.y10b{bottom:504.985200pt;}
.y130{bottom:510.800000pt;}
.y33{bottom:510.888933pt;}
.y1af{bottom:511.200000pt;}
.yd8{bottom:513.008000pt;}
.y181{bottom:514.106667pt;}
.y152{bottom:517.600000pt;}
.y57{bottom:520.101333pt;}
.yb{bottom:523.528933pt;}
.y7a{bottom:524.000000pt;}
.y10a{bottom:524.713200pt;}
.y95{bottom:524.815733pt;}
.y180{bottom:527.301333pt;}
.y1ae{bottom:527.866667pt;}
.y12f{bottom:530.400000pt;}
.y32{bottom:531.016933pt;}
.yb9{bottom:532.453333pt;}
.yd7{bottom:532.480000pt;}
.y151{bottom:536.800000pt;}
.y56{bottom:540.373333pt;}
.y17f{bottom:540.496000pt;}
.y79{bottom:544.000000pt;}
.y109{bottom:544.441200pt;}
.y1ad{bottom:544.533333pt;}
.y12e{bottom:550.000000pt;}
.y31{bottom:551.144933pt;}
.yb8{bottom:551.925333pt;}
.yd6{bottom:551.952000pt;}
.y17e{bottom:553.690667pt;}
.y150{bottom:556.000000pt;}
.y55{bottom:560.645333pt;}
.y94{bottom:560.705467pt;}
.y1ac{bottom:561.200000pt;}
.y78{bottom:564.000000pt;}
.y108{bottom:564.169200pt;}
.ya{bottom:564.316267pt;}
.y17d{bottom:566.885333pt;}
.y12d{bottom:569.600000pt;}
.y30{bottom:571.272933pt;}
.yb7{bottom:571.397333pt;}
.yd5{bottom:571.424000pt;}
.y14f{bottom:575.200000pt;}
.y1ab{bottom:577.866667pt;}
.y17c{bottom:580.080000pt;}
.y54{bottom:580.917333pt;}
.y107{bottom:583.897200pt;}
.y77{bottom:584.000000pt;}
.y9{bottom:584.316267pt;}
.y93{bottom:584.692133pt;}
.y12c{bottom:589.200000pt;}
.yb6{bottom:590.869333pt;}
.yd4{bottom:590.896000pt;}
.y2f{bottom:591.400933pt;}
.y17b{bottom:593.274667pt;}
.y14e{bottom:594.400000pt;}
.y1aa{bottom:594.533333pt;}
.y53{bottom:601.189333pt;}
.y76{bottom:604.000000pt;}
.y17a{bottom:606.469333pt;}
.y92{bottom:608.678800pt;}
.y12b{bottom:608.800000pt;}
.yb5{bottom:610.341333pt;}
.yd3{bottom:610.368000pt;}
.y106{bottom:611.187600pt;}
.y1a9{bottom:611.200000pt;}
.y2e{bottom:611.528933pt;}
.y14d{bottom:613.600000pt;}
.y179{bottom:619.664000pt;}
.y52{bottom:621.461333pt;}
.y75{bottom:624.000000pt;}
.y8{bottom:625.103733pt;}
.y105{bottom:627.587600pt;}
.y1a8{bottom:627.866667pt;}
.y12a{bottom:628.400000pt;}
.yb4{bottom:629.813333pt;}
.yd2{bottom:629.840000pt;}
.y2d{bottom:631.656933pt;}
.y14c{bottom:632.800000pt;}
.y178{bottom:632.858667pt;}
.y51{bottom:641.706667pt;}
.y104{bottom:643.987600pt;}
.y74{bottom:644.000000pt;}
.y1a7{bottom:644.533333pt;}
.y7{bottom:645.103733pt;}
.y177{bottom:646.053333pt;}
.y129{bottom:648.000000pt;}
.yb3{bottom:649.285333pt;}
.yd1{bottom:649.312000pt;}
.y2c{bottom:651.784933pt;}
.y14b{bottom:652.000000pt;}
.y176{bottom:659.248000pt;}
.y1a6{bottom:661.200000pt;}
.y50{bottom:661.978667pt;}
.y73{bottom:664.000000pt;}
.y128{bottom:667.600000pt;}
.y103{bottom:667.947600pt;}
.yb2{bottom:668.757333pt;}
.yd0{bottom:668.784000pt;}
.y14a{bottom:671.200000pt;}
.y2b{bottom:671.912933pt;}
.y175{bottom:672.442667pt;}
.y1a5{bottom:677.866667pt;}
.y4f{bottom:682.250667pt;}
.y72{bottom:684.000000pt;}
.y102{bottom:684.347600pt;}
.y174{bottom:685.637333pt;}
.y6{bottom:685.891067pt;}
.y127{bottom:687.200000pt;}
.yb1{bottom:688.229333pt;}
.ycf{bottom:688.256000pt;}
.y149{bottom:690.400000pt;}
.y2a{bottom:692.040933pt;}
.y1a4{bottom:694.533333pt;}
.y173{bottom:698.832000pt;}
.y4e{bottom:702.522667pt;}
.y71{bottom:704.000000pt;}
.y5{bottom:705.891067pt;}
.y126{bottom:706.800000pt;}
.yb0{bottom:707.701333pt;}
.yce{bottom:707.728000pt;}
.y101{bottom:708.307600pt;}
.y148{bottom:709.600000pt;}
.y1a3{bottom:711.200000pt;}
.y172{bottom:712.026667pt;}
.y29{bottom:712.174267pt;}
.y4d{bottom:722.794667pt;}
.y70{bottom:724.000000pt;}
.y100{bottom:724.707600pt;}
.y171{bottom:725.232000pt;}
.y125{bottom:726.400000pt;}
.yaf{bottom:727.173333pt;}
.y1a2{bottom:727.866667pt;}
.y147{bottom:728.800000pt;}
.y170{bottom:738.426667pt;}
.yff{bottom:741.107600pt;}
.y4c{bottom:743.066667pt;}
.y6f{bottom:744.000000pt;}
.y1a1{bottom:744.533333pt;}
.y124{bottom:746.000000pt;}
.yae{bottom:746.645333pt;}
.y146{bottom:748.000000pt;}
.y16f{bottom:751.621333pt;}
.y28{bottom:752.440933pt;}
.y1a0{bottom:761.200000pt;}
.y4b{bottom:763.338667pt;}
.y6e{bottom:764.000000pt;}
.y16e{bottom:764.816000pt;}
.yfe{bottom:765.082667pt;}
.y4{bottom:765.576133pt;}
.y123{bottom:765.600000pt;}
.yad{bottom:766.117333pt;}
.y145{bottom:767.200000pt;}
.y27{bottom:769.240933pt;}
.y19f{bottom:777.866667pt;}
.y16d{bottom:778.010667pt;}
.y4a{bottom:783.610667pt;}
.y6d{bottom:784.000000pt;}
.yfd{bottom:784.810667pt;}
.y122{bottom:785.200000pt;}
.yac{bottom:785.589333pt;}
.y144{bottom:786.400000pt;}
.y16c{bottom:791.216000pt;}
.y3{bottom:792.242800pt;}
.y26{bottom:793.600000pt;}
.y19e{bottom:794.400000pt;}
.y49{bottom:803.738667pt;}
.y6c{bottom:804.000000pt;}
.y16b{bottom:804.410667pt;}
.yfc{bottom:804.538667pt;}
.y121{bottom:804.800000pt;}
.yab{bottom:805.061333pt;}
.y143{bottom:805.600000pt;}
.y25{bottom:810.400000pt;}
.y19d{bottom:810.933333pt;}
.y16a{bottom:817.605333pt;}
.y48{bottom:823.866667pt;}
.y6b{bottom:824.000000pt;}
.yfb{bottom:824.266667pt;}
.y120{bottom:824.400000pt;}
.yaa{bottom:824.533333pt;}
.y142{bottom:824.800000pt;}
.y24{bottom:827.200000pt;}
.y19c{bottom:827.466667pt;}
.y169{bottom:830.800000pt;}
.y2{bottom:835.576133pt;}
.h7{height:26.945443pt;}
.h10{height:29.437500pt;}
.hf{height:34.730667pt;}
.h8{height:36.229167pt;}
.h6{height:36.796875pt;}
.h11{height:40.757812pt;}
.hd{height:42.656250pt;}
.h2{height:43.022135pt;}
.he{height:43.413333pt;}
.h4{height:43.893333pt;}
.h5{height:44.156250pt;}
.h1{height:45.286458pt;}
.h9{height:54.343750pt;}
.hc{height:59.160625pt;}
.ha{height:59.267292pt;}
.hb{height:59.309958pt;}
.h3{height:90.572917pt;}
.h0{height:904.000000pt;}
.w0{width:640.000000pt;}
.x0{left:0.000000pt;}
.x5{left:60.000000pt;}
.xa{left:65.625733pt;}
.x8{left:73.228400pt;}
.x7{left:86.456667pt;}
.x2{left:100.000000pt;}
.x4{left:113.228400pt;}
.x6{left:120.000000pt;}
.x3{left:126.456667pt;}
.xb{left:149.123333pt;}
.x9{left:151.425733pt;}
.xc{left:160.466667pt;}
.x1{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; }
  