
    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_43e1875c8c5e8b2aa2a5885e.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.948000;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_d3fbce14299f568636ecbed7.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.951000;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_ef1e87306939cbd5141beded.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.948000;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_38e0b36d66e60aea8698491c.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.951000;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_aa441ee69445b1a0dc5e584a.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.071000;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_7c76f81145a4093b44107af9.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.125000;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_f3fe3a4a28fbeae9eae8d488.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.432129;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_86542d4e066395154694bada.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.073000;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_2a369886487840ad67dd3a94.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.071000;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_421fc9658f605d3273ff904c.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.936000;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_ef1e87306939cbd5141beded.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.948000;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_b7d25c543944a9506c836baa.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.071000;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);}
.v4{vertical-align:-20.979000px;}
.v3{vertical-align:-15.000000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:12.000000px;}
.v2{vertical-align:20.916000px;}
.ls9{letter-spacing:-4.500000px;}
.ls10{letter-spacing:-3.285000px;}
.lsc{letter-spacing:-1.575000px;}
.ls1b{letter-spacing:-1.260000px;}
.ls2{letter-spacing:-1.080000px;}
.ls0{letter-spacing:-1.050000px;}
.ls1c{letter-spacing:-0.734580px;}
.ls3{letter-spacing:-0.600000px;}
.lsf{letter-spacing:-0.420000px;}
.lsa{letter-spacing:-0.390000px;}
.lsb{letter-spacing:-0.330000px;}
.ls19{letter-spacing:-0.315000px;}
.ls12{letter-spacing:-0.225000px;}
.ls4{letter-spacing:-0.216000px;}
.ls1a{letter-spacing:-0.183645px;}
.ls11{letter-spacing:-0.180000px;}
.ls5{letter-spacing:-0.132000px;}
.lse{letter-spacing:-0.048000px;}
.lsd{letter-spacing:-0.030000px;}
.ls1{letter-spacing:0.000000px;}
.ls7{letter-spacing:0.000300px;}
.ls16{letter-spacing:0.183645px;}
.ls15{letter-spacing:0.315000px;}
.ls14{letter-spacing:0.367290px;}
.ls18{letter-spacing:0.550935px;}
.ls13{letter-spacing:0.630000px;}
.ls17{letter-spacing:0.945000px;}
.ls8{letter-spacing:4.275000px;}
.ls6{letter-spacing:37.680000px;}
.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;}
}
.ws9b{word-spacing:-21.105000px;}
.ws61{word-spacing:-20.790000px;}
.ws1b{word-spacing:-20.160000px;}
.wsac{word-spacing:-19.845000px;}
.wsb5{word-spacing:-18.900000px;}
.ws2{word-spacing:-16.128000px;}
.ws9a{word-spacing:-12.304215px;}
.ws3c{word-spacing:-12.120570px;}
.ws84{word-spacing:-11.936925px;}
.ws3{word-spacing:-11.753280px;}
.ws4{word-spacing:-11.655000px;}
.wsab{word-spacing:-11.569635px;}
.wsb6{word-spacing:-11.018700px;}
.ws5{word-spacing:-9.324000px;}
.ws1c{word-spacing:-9.144000px;}
.wsb3{word-spacing:-4.977000px;}
.ws26{word-spacing:-4.032000px;}
.ws83{word-spacing:-3.969000px;}
.wsae{word-spacing:-3.843000px;}
.wsa5{word-spacing:-3.780000px;}
.ws66{word-spacing:-3.717000px;}
.wsba{word-spacing:-3.654000px;}
.ws41{word-spacing:-3.591000px;}
.ws11{word-spacing:-3.528000px;}
.ws89{word-spacing:-3.402000px;}
.wsa6{word-spacing:-3.339000px;}
.wsb8{word-spacing:-3.276000px;}
.ws90{word-spacing:-3.213000px;}
.ws88{word-spacing:-3.024000px;}
.wsbb{word-spacing:-2.961000px;}
.wsa4{word-spacing:-2.898000px;}
.ws64{word-spacing:-2.835000px;}
.ws73{word-spacing:-2.709000px;}
.ws65{word-spacing:-2.646000px;}
.ws52{word-spacing:-2.583000px;}
.ws6a{word-spacing:-2.520000px;}
.ws85{word-spacing:-2.457000px;}
.ws27{word-spacing:-2.331000px;}
.ws5e{word-spacing:-2.268000px;}
.wsad{word-spacing:-2.205000px;}
.ws6c{word-spacing:-2.079000px;}
.wsa7{word-spacing:-2.016000px;}
.ws8a{word-spacing:-1.953000px;}
.ws42{word-spacing:-1.890000px;}
.ws49{word-spacing:-1.827000px;}
.ws3a{word-spacing:-1.764000px;}
.ws2b{word-spacing:-1.701000px;}
.ws1f{word-spacing:-1.638000px;}
.ws4b{word-spacing:-1.575000px;}
.ws55{word-spacing:-1.512000px;}
.ws63{word-spacing:-1.449000px;}
.ws62{word-spacing:-1.386000px;}
.wsb1{word-spacing:-1.323000px;}
.ws21{word-spacing:-1.260000px;}
.ws5f{word-spacing:-1.197000px;}
.ws43{word-spacing:-1.134000px;}
.ws99{word-spacing:-1.125000px;}
.ws71{word-spacing:-1.071000px;}
.ws6d{word-spacing:-1.008000px;}
.ws8f{word-spacing:-0.945000px;}
.ws74{word-spacing:-0.882000px;}
.ws40{word-spacing:-0.819000px;}
.ws20{word-spacing:-0.756000px;}
.ws91{word-spacing:-0.693000px;}
.wsbd{word-spacing:-0.675000px;}
.ws14{word-spacing:-0.630000px;}
.ws1d{word-spacing:-0.567000px;}
.ws36{word-spacing:-0.540000px;}
.ws2f{word-spacing:-0.504000px;}
.ws56{word-spacing:-0.441000px;}
.ws60{word-spacing:-0.378000px;}
.ws18{word-spacing:-0.315000px;}
.ws93{word-spacing:-0.252000px;}
.wsaa{word-spacing:-0.189000px;}
.ws95{word-spacing:-0.126000px;}
.ws2e{word-spacing:-0.063000px;}
.ws0{word-spacing:0.000000px;}
.ws54{word-spacing:0.030000px;}
.ws8e{word-spacing:0.063000px;}
.ws58{word-spacing:0.126000px;}
.ws34{word-spacing:0.180000px;}
.ws3e{word-spacing:0.189000px;}
.ws46{word-spacing:0.252000px;}
.ws4a{word-spacing:0.315000px;}
.ws77{word-spacing:0.378000px;}
.ws67{word-spacing:0.441000px;}
.ws75{word-spacing:0.450000px;}
.ws8{word-spacing:0.504000px;}
.ws45{word-spacing:0.567000px;}
.ws2c{word-spacing:0.630000px;}
.ws8c{word-spacing:0.693000px;}
.ws59{word-spacing:0.756000px;}
.ws31{word-spacing:0.765000px;}
.ws25{word-spacing:0.819000px;}
.ws6b{word-spacing:0.882000px;}
.ws86{word-spacing:0.945000px;}
.ws87{word-spacing:1.008000px;}
.ws23{word-spacing:1.071000px;}
.ws7e{word-spacing:1.134000px;}
.ws35{word-spacing:1.170000px;}
.ws38{word-spacing:1.197000px;}
.ws5b{word-spacing:1.260000px;}
.ws69{word-spacing:1.323000px;}
.ws53{word-spacing:1.350000px;}
.wse{word-spacing:1.386000px;}
.ws57{word-spacing:1.449000px;}
.ws50{word-spacing:1.512000px;}
.ws10{word-spacing:1.575000px;}
.ws2d{word-spacing:1.638000px;}
.ws51{word-spacing:1.701000px;}
.ws6e{word-spacing:1.764000px;}
.ws16{word-spacing:1.827000px;}
.ws12{word-spacing:1.890000px;}
.ws7a{word-spacing:1.953000px;}
.ws8b{word-spacing:2.016000px;}
.ws13{word-spacing:2.079000px;}
.ws39{word-spacing:2.142000px;}
.ws47{word-spacing:2.205000px;}
.ws76{word-spacing:2.268000px;}
.ws30{word-spacing:2.331000px;}
.ws9f{word-spacing:2.394000px;}
.ws97{word-spacing:2.457000px;}
.ws94{word-spacing:2.520000px;}
.ws98{word-spacing:2.565000px;}
.wsa9{word-spacing:2.583000px;}
.ws3f{word-spacing:2.646000px;}
.ws9{word-spacing:2.709000px;}
.ws1e{word-spacing:2.772000px;}
.ws72{word-spacing:2.835000px;}
.wsb4{word-spacing:2.898000px;}
.ws24{word-spacing:2.961000px;}
.ws28{word-spacing:3.024000px;}
.ws15{word-spacing:3.087000px;}
.ws48{word-spacing:3.150000px;}
.ws32{word-spacing:3.285000px;}
.ws5a{word-spacing:3.339000px;}
.wsaf{word-spacing:3.402000px;}
.ws6f{word-spacing:3.465000px;}
.ws19{word-spacing:3.510000px;}
.wsa0{word-spacing:3.528000px;}
.ws9c{word-spacing:3.591000px;}
.ws1a{word-spacing:3.645000px;}
.ws96{word-spacing:3.654000px;}
.wsb2{word-spacing:3.717000px;}
.ws68{word-spacing:3.780000px;}
.ws5d{word-spacing:3.843000px;}
.ws78{word-spacing:3.906000px;}
.wsd{word-spacing:3.969000px;}
.ws22{word-spacing:4.032000px;}
.ws4e{word-spacing:4.095000px;}
.wsb7{word-spacing:4.158000px;}
.ws44{word-spacing:4.284000px;}
.ws7f{word-spacing:4.347000px;}
.ws33{word-spacing:4.365000px;}
.ws80{word-spacing:4.410000px;}
.ws6{word-spacing:4.500000px;}
.ws70{word-spacing:4.536000px;}
.ws17{word-spacing:4.590000px;}
.ws5c{word-spacing:4.599000px;}
.wsc{word-spacing:4.662000px;}
.ws3d{word-spacing:4.725000px;}
.ws3b{word-spacing:4.788000px;}
.ws79{word-spacing:5.040000px;}
.ws37{word-spacing:5.166000px;}
.ws4d{word-spacing:5.229000px;}
.ws7d{word-spacing:5.544000px;}
.wsa1{word-spacing:5.607000px;}
.wsbc{word-spacing:5.733000px;}
.ws9e{word-spacing:5.859000px;}
.wsa8{word-spacing:5.922000px;}
.wsf{word-spacing:5.985000px;}
.ws82{word-spacing:6.048000px;}
.ws8d{word-spacing:6.300000px;}
.wsb9{word-spacing:6.363000px;}
.ws92{word-spacing:6.489000px;}
.wsa2{word-spacing:6.552000px;}
.ws4c{word-spacing:6.615000px;}
.ws2a{word-spacing:6.678000px;}
.wsbe{word-spacing:6.930000px;}
.ws4f{word-spacing:7.056000px;}
.wsa3{word-spacing:7.182000px;}
.ws29{word-spacing:7.245000px;}
.ws9d{word-spacing:7.371000px;}
.ws7c{word-spacing:7.623000px;}
.ws7{word-spacing:7.812000px;}
.wsb{word-spacing:7.938000px;}
.wsa{word-spacing:8.001000px;}
.ws7b{word-spacing:8.064000px;}
.wsb0{word-spacing:8.253000px;}
.ws81{word-spacing:9.576000px;}
.ws1{word-spacing:37.680000px;}
._3{margin-left:-6.804000px;}
._8{margin-left:-5.670000px;}
._4{margin-left:-4.429200px;}
._2{margin-left:-3.240000px;}
._7{margin-left:-2.205000px;}
._0{margin-left:-1.050000px;}
._1{width:1.050000px;}
._5{width:2.424600px;}
._6{width:4.485000px;}
.fc1{color:rgb(112,111,111);}
.fc0{color:rgb(0,0,0);}
.fsc{font-size:30.000000px;}
.fse{font-size:36.000000px;}
.fsb{font-size:36.729000px;}
.fsd{font-size:45.000000px;}
.fs5{font-size:48.000000px;}
.fsa{font-size:50.400000px;}
.fs7{font-size:51.000000px;}
.fs6{font-size:54.000000px;}
.fs2{font-size:57.000000px;}
.fs9{font-size:63.000000px;}
.fs4{font-size:66.000000px;}
.fs8{font-size:78.000000px;}
.fsf{font-size:84.000000px;}
.fs1{font-size:108.000000px;}
.fs3{font-size:150.000000px;}
.fs0{font-size:210.000000px;}
.y0{bottom:0.000000px;}
.y1b{bottom:8.525550px;}
.y1a{bottom:104.667450px;}
.y71{bottom:120.468600px;}
.y19{bottom:125.504550px;}
.y147{bottom:127.551450px;}
.y1df{bottom:127.555200px;}
.y40{bottom:127.555500px;}
.yab{bottom:127.558950px;}
.yaa{bottom:131.308950px;}
.y70{bottom:134.722350px;}
.y6f{bottom:138.472350px;}
.y146{bottom:141.805200px;}
.ya9{bottom:141.808950px;}
.y3f{bottom:141.809250px;}
.y75{bottom:145.502700px;}
.ya8{bottom:145.558950px;}
.y3e{bottom:145.559250px;}
.y6e{bottom:148.968600px;}
.y18{bottom:151.004550px;}
.y3d{bottom:156.055500px;}
.ya7{bottom:156.058950px;}
.ya6{bottom:159.808950px;}
.y6d{bottom:163.218600px;}
.y74{bottom:166.497450px;}
.y3c{bottom:170.305500px;}
.ya5{bottom:170.308950px;}
.y17{bottom:173.504550px;}
.ya4{bottom:174.058950px;}
.y6c{bottom:177.472350px;}
.y6b{bottom:181.222350px;}
.y1de{bottom:184.555200px;}
.ya3{bottom:184.558950px;}
.y3b{bottom:184.559250px;}
.y16{bottom:185.504550px;}
.y73{bottom:187.492200px;}
.ya2{bottom:188.308950px;}
.y3a{bottom:188.309250px;}
.y6a{bottom:191.722350px;}
.y69{bottom:195.472350px;}
.yeb{bottom:198.805200px;}
.y39{bottom:198.805500px;}
.ya1{bottom:198.808950px;}
.y179{bottom:199.447500px;}
.y15{bottom:200.504550px;}
.ya0{bottom:202.558950px;}
.y68{bottom:205.968600px;}
.y14{bottom:212.504550px;}
.y145{bottom:213.055200px;}
.y9f{bottom:213.058950px;}
.y38{bottom:213.059250px;}
.y9e{bottom:216.808950px;}
.y37{bottom:216.809250px;}
.y67{bottom:220.222350px;}
.y178{bottom:220.442250px;}
.y66{bottom:223.972350px;}
.y9d{bottom:227.308950px;}
.y36{bottom:227.309250px;}
.y72{bottom:229.492200px;}
.y9c{bottom:231.058950px;}
.y35{bottom:231.059250px;}
.y65{bottom:234.468600px;}
.y13{bottom:238.632150px;}
.y177{bottom:241.437000px;}
.y34{bottom:241.555500px;}
.yc9{bottom:241.558950px;}
.y1b5{bottom:241.704750px;}
.y9b{bottom:245.308950px;}
.y64{bottom:248.722350px;}
.y1d0{bottom:251.279550px;}
.y63{bottom:252.472350px;}
.y12{bottom:253.630650px;}
.y9a{bottom:255.805200px;}
.yc8{bottom:255.808950px;}
.y33{bottom:255.809250px;}
.yc7{bottom:259.558950px;}
.y32{bottom:259.559250px;}
.y176{bottom:262.431750px;}
.y1b4{bottom:262.699500px;}
.y99{bottom:270.058950px;}
.y1cf{bottom:272.274300px;}
.y98{bottom:273.808950px;}
.y175{bottom:283.426500px;}
.y10e{bottom:283.689000px;}
.y1b3{bottom:283.694250px;}
.y15d{bottom:284.308950px;}
.y15c{bottom:288.058950px;}
.y1ce{bottom:293.269050px;}
.y15b{bottom:298.558950px;}
.y62{bottom:301.906800px;}
.y15a{bottom:302.308950px;}
.y10d{bottom:304.689000px;}
.y159{bottom:312.808950px;}
.yea{bottom:313.941000px;}
.y144{bottom:313.951500px;}
.y1cd{bottom:314.263800px;}
.y158{bottom:316.558950px;}
.y61{bottom:322.901550px;}
.y31{bottom:325.017150px;}
.y174{bottom:325.683750px;}
.y1b2{bottom:325.699500px;}
.y10c{bottom:325.725750px;}
.y129{bottom:326.240250px;}
.y97{bottom:326.245500px;}
.y157{bottom:327.058950px;}
.y156{bottom:330.808950px;}
.ye9{bottom:334.935750px;}
.y143{bottom:334.946250px;}
.y197{bottom:335.200800px;}
.y1cc{bottom:335.258550px;}
.y155{bottom:341.308950px;}
.y60{bottom:343.896300px;}
.y154{bottom:345.058950px;}
.y30{bottom:346.011900px;}
.y173{bottom:346.678500px;}
.y1b1{bottom:346.694250px;}
.y10b{bottom:346.720500px;}
.yc6{bottom:346.948800px;}
.y128{bottom:347.235000px;}
.y96{bottom:347.240250px;}
.ye8{bottom:355.930500px;}
.y142{bottom:355.941000px;}
.y196{bottom:356.195550px;}
.y1cb{bottom:356.253300px;}
.y2f{bottom:367.006650px;}
.y1b0{bottom:367.689000px;}
.y10a{bottom:367.715250px;}
.yc5{bottom:367.948800px;}
.y127{bottom:368.229750px;}
.y95{bottom:368.235000px;}
.ye7{bottom:376.925250px;}
.y141{bottom:376.935750px;}
.y195{bottom:377.190300px;}
.y1ca{bottom:377.248050px;}
.y5f{bottom:377.652300px;}
.y2e{bottom:388.006650px;}
.y1af{bottom:388.689000px;}
.y109{bottom:388.710000px;}
.y172{bottom:388.780950px;}
.yc4{bottom:388.954050px;}
.y126{bottom:389.224500px;}
.y94{bottom:389.229750px;}
.y140{bottom:397.930500px;}
.ye6{bottom:397.935750px;}
.y194{bottom:398.185050px;}
.y1c9{bottom:398.242800px;}
.y2d{bottom:409.011900px;}
.y1ae{bottom:409.683750px;}
.y108{bottom:409.704750px;}
.y171{bottom:409.775700px;}
.yc3{bottom:409.948800px;}
.y125{bottom:410.219250px;}
.y93{bottom:410.224500px;}
.y153{bottom:410.229750px;}
.y13f{bottom:418.925250px;}
.ye5{bottom:418.930500px;}
.y193{bottom:419.200800px;}
.y1c8{bottom:419.237550px;}
.y2c{bottom:430.006650px;}
.y1ad{bottom:430.678500px;}
.y107{bottom:430.699500px;}
.y170{bottom:430.770450px;}
.yc2{bottom:430.948800px;}
.y124{bottom:431.214000px;}
.y92{bottom:431.219250px;}
.y152{bottom:431.224500px;}
.ye4{bottom:439.925250px;}
.y13e{bottom:439.930500px;}
.y5e{bottom:439.962000px;}
.y192{bottom:440.195550px;}
.y1c7{bottom:440.232300px;}
.y2b{bottom:451.006650px;}
.y106{bottom:451.694250px;}
.y16f{bottom:451.765200px;}
.yc1{bottom:451.954050px;}
.y123{bottom:452.208750px;}
.y91{bottom:452.214000px;}
.y151{bottom:452.219250px;}
.y13d{bottom:460.925250px;}
.ye3{bottom:460.951500px;}
.y5d{bottom:460.956750px;}
.y191{bottom:461.190300px;}
.y1c6{bottom:461.227050px;}
.y2a{bottom:472.011900px;}
.y105{bottom:472.689000px;}
.y1ac{bottom:472.749300px;}
.y16e{bottom:472.759950px;}
.yc0{bottom:472.948800px;}
.y90{bottom:473.208750px;}
.y150{bottom:473.214000px;}
.y1dd{bottom:473.224500px;}
.y122{bottom:473.229750px;}
.y13c{bottom:481.920000px;}
.ye2{bottom:481.946250px;}
.y5c{bottom:481.951500px;}
.y190{bottom:482.185050px;}
.y1c5{bottom:482.221800px;}
.y29{bottom:493.006650px;}
.y104{bottom:493.720500px;}
.y1ab{bottom:493.744050px;}
.y16d{bottom:493.754700px;}
.ybf{bottom:493.943550px;}
.y14f{bottom:494.208750px;}
.y8f{bottom:494.214000px;}
.y1dc{bottom:494.219250px;}
.y121{bottom:494.224500px;}
.y13b{bottom:502.914750px;}
.ye1{bottom:502.941000px;}
.y5b{bottom:502.946250px;}
.y18f{bottom:503.190300px;}
.y1c4{bottom:503.216550px;}
.y28{bottom:514.017150px;}
.y103{bottom:514.715250px;}
.y1aa{bottom:514.738800px;}
.y16c{bottom:514.749450px;}
.ybe{bottom:514.938300px;}
.y8e{bottom:515.208750px;}
.y1db{bottom:515.214000px;}
.y120{bottom:515.219250px;}
.ye0{bottom:523.935750px;}
.y5a{bottom:523.941000px;}
.y18e{bottom:524.185050px;}
.y1c3{bottom:524.211300px;}
.y27{bottom:535.011900px;}
.y102{bottom:535.710000px;}
.y1a9{bottom:535.733550px;}
.y16b{bottom:535.744200px;}
.y1da{bottom:536.208750px;}
.y11f{bottom:536.214000px;}
.y8d{bottom:536.219250px;}
.ydf{bottom:544.930500px;}
.y59{bottom:544.935750px;}
.y13a{bottom:545.001300px;}
.y18d{bottom:545.195550px;}
.y1c2{bottom:545.206050px;}
.y26{bottom:556.006650px;}
.y101{bottom:556.704750px;}
.y1a8{bottom:556.728300px;}
.y16a{bottom:556.738950px;}
.ybd{bottom:556.967250px;}
.y11e{bottom:557.208750px;}
.y8c{bottom:557.214000px;}
.y1d9{bottom:557.224500px;}
.yde{bottom:565.925250px;}
.y58{bottom:565.930500px;}
.y139{bottom:565.996050px;}
.y18c{bottom:566.190300px;}
.y1c1{bottom:566.200800px;}
.y25{bottom:577.017150px;}
.y100{bottom:577.699500px;}
.y1a7{bottom:577.723050px;}
.y169{bottom:577.733700px;}
.ybc{bottom:577.962000px;}
.y8b{bottom:578.208750px;}
.y11d{bottom:578.214000px;}
.y1d8{bottom:578.219250px;}
.y1c{bottom:585.212700px;}
.ydd{bottom:586.920000px;}
.y57{bottom:586.925250px;}
.y138{bottom:586.990800px;}
.y18b{bottom:587.185050px;}
.y1c0{bottom:587.195550px;}
.y24{bottom:598.011900px;}
.yff{bottom:598.694250px;}
.y1a6{bottom:598.717800px;}
.y168{bottom:598.728450px;}
.ybb{bottom:598.956750px;}
.y11c{bottom:599.208750px;}
.y8a{bottom:599.214000px;}
.y56{bottom:607.920000px;}
.y137{bottom:607.985550px;}
.y18a{bottom:608.190300px;}
.y23{bottom:619.006650px;}
.yfe{bottom:619.689000px;}
.y1a5{bottom:619.712550px;}
.y167{bottom:619.723200px;}
.yba{bottom:619.951500px;}
.y89{bottom:620.208750px;}
.y11b{bottom:620.245500px;}
.ydc{bottom:620.675850px;}
.y55{bottom:628.914750px;}
.y136{bottom:628.980300px;}
.y189{bottom:629.185050px;}
.y22{bottom:640.001400px;}
.yfd{bottom:640.683750px;}
.y166{bottom:640.717950px;}
.y14e{bottom:641.208750px;}
.y88{bottom:641.219250px;}
.y1d7{bottom:641.235000px;}
.y11a{bottom:641.240250px;}
.y135{bottom:649.975050px;}
.y188{bottom:650.185050px;}
.y1bf{bottom:650.190300px;}
.yfc{bottom:661.678500px;}
.y165{bottom:661.712700px;}
.y1a4{bottom:661.969800px;}
.yb9{bottom:662.208750px;}
.y87{bottom:662.214000px;}
.y1d6{bottom:662.229750px;}
.y119{bottom:662.235000px;}
.y54{bottom:670.964550px;}
.y134{bottom:670.969800px;}
.y1be{bottom:671.185050px;}
.y187{bottom:671.190300px;}
.y164{bottom:682.707450px;}
.ydb{bottom:682.954050px;}
.y1a3{bottom:682.964550px;}
.y86{bottom:683.208750px;}
.yb8{bottom:683.214000px;}
.y1d5{bottom:683.224500px;}
.y118{bottom:683.229750px;}
.y53{bottom:691.959300px;}
.y186{bottom:692.185050px;}
.y1bd{bottom:692.221800px;}
.y163{bottom:703.702200px;}
.yfb{bottom:703.712700px;}
.yda{bottom:703.948800px;}
.y1a2{bottom:703.959300px;}
.yb7{bottom:704.208750px;}
.y85{bottom:704.214000px;}
.y1d4{bottom:704.219250px;}
.y117{bottom:704.224500px;}
.ye{bottom:704.530650px;}
.y52{bottom:712.954050px;}
.y185{bottom:713.195550px;}
.y1bc{bottom:713.216550px;}
.y133{bottom:713.227050px;}
.yd{bottom:724.033650px;}
.yfa{bottom:724.707450px;}
.yd9{bottom:724.948800px;}
.y1a1{bottom:724.954050px;}
.y84{bottom:725.208750px;}
.y1d3{bottom:725.214000px;}
.y116{bottom:725.219250px;}
.yb6{bottom:725.224500px;}
.y51{bottom:733.948800px;}
.y184{bottom:734.190300px;}
.y1bb{bottom:734.211300px;}
.y132{bottom:734.221800px;}
.yc{bottom:743.536650px;}
.yf9{bottom:745.702200px;}
.y1a0{bottom:745.948800px;}
.yd8{bottom:745.959450px;}
.y1d2{bottom:746.208750px;}
.y83{bottom:746.214000px;}
.yb5{bottom:746.219250px;}
.y50{bottom:754.943550px;}
.y183{bottom:755.185050px;}
.y1ba{bottom:755.206050px;}
.y131{bottom:755.216550px;}
.yf8{bottom:766.696950px;}
.yd7{bottom:766.954200px;}
.y19f{bottom:766.975200px;}
.y82{bottom:767.208750px;}
.yb4{bottom:767.214000px;}
.y4f{bottom:775.938300px;}
.y182{bottom:776.200800px;}
.y130{bottom:776.211300px;}
.yd6{bottom:787.948950px;}
.y19e{bottom:787.969950px;}
.yb3{bottom:788.208750px;}
.y81{bottom:788.219250px;}
.y4e{bottom:796.933050px;}
.y181{bottom:797.195550px;}
.y12f{bottom:797.206050px;}
.yd5{bottom:808.943700px;}
.yf7{bottom:808.954200px;}
.y19d{bottom:808.964700px;}
.y80{bottom:809.214000px;}
.y14d{bottom:809.219250px;}
.yb2{bottom:809.229750px;}
.y180{bottom:818.190300px;}
.y12e{bottom:818.200800px;}
.yd4{bottom:829.938450px;}
.yf6{bottom:829.948950px;}
.y19c{bottom:829.959450px;}
.y7f{bottom:830.208750px;}
.y14c{bottom:830.214000px;}
.yb1{bottom:830.224500px;}
.y17f{bottom:839.185050px;}
.y4d{bottom:839.190300px;}
.y12d{bottom:839.195550px;}
.yb{bottom:843.827100px;}
.y19b{bottom:850.954200px;}
.yf5{bottom:850.959450px;}
.y115{bottom:851.208750px;}
.yb0{bottom:851.219250px;}
.y7e{bottom:851.271900px;}
.y1b9{bottom:860.179800px;}
.y4c{bottom:860.185050px;}
.y12c{bottom:860.190300px;}
.y17e{bottom:860.200950px;}
.y19a{bottom:871.948950px;}
.yf4{bottom:871.954200px;}
.yd3{bottom:871.972650px;}
.y162{bottom:871.998900px;}
.y1d1{bottom:872.208750px;}
.yaf{bottom:872.214000px;}
.y114{bottom:872.229900px;}
.y7d{bottom:872.266650px;}
.ya{bottom:873.824100px;}
.y4b{bottom:881.185050px;}
.y17d{bottom:881.195700px;}
.y199{bottom:892.943700px;}
.yf3{bottom:892.948950px;}
.yd2{bottom:892.967400px;}
.y161{bottom:892.993650px;}
.yae{bottom:893.208750px;}
.y113{bottom:893.224650px;}
.y7c{bottom:893.261400px;}
.y1b8{bottom:893.935800px;}
.y12b{bottom:902.179800px;}
.y4a{bottom:902.185050px;}
.y17c{bottom:902.190450px;}
.y1e4{bottom:902.195700px;}
.y198{bottom:913.938450px;}
.yf2{bottom:913.943700px;}
.yd1{bottom:913.962150px;}
.y160{bottom:913.988400px;}
.yad{bottom:914.208750px;}
.y14b{bottom:914.214150px;}
.y112{bottom:914.219400px;}
.y7b{bottom:914.256150px;}
.y49{bottom:923.185200px;}
.y1e3{bottom:923.190450px;}
.yf1{bottom:934.938450px;}
.yd0{bottom:934.956900px;}
.y15f{bottom:934.983150px;}
.yac{bottom:935.208900px;}
.y111{bottom:935.214150px;}
.y7a{bottom:935.250900px;}
.y12a{bottom:935.935800px;}
.y21{bottom:941.631300px;}
.y9{bottom:942.091800px;}
.y48{bottom:944.179950px;}
.y1e2{bottom:944.185200px;}
.ycf{bottom:955.951650px;}
.y15e{bottom:955.977900px;}
.y110{bottom:956.208900px;}
.y1b7{bottom:956.219400px;}
.y14a{bottom:956.240400px;}
.y79{bottom:956.245650px;}
.y20{bottom:962.631150px;}
.y1e1{bottom:965.179950px;}
.yf0{bottom:976.972650px;}
.y10f{bottom:977.208900px;}
.y1b6{bottom:977.214150px;}
.y149{bottom:977.235150px;}
.y78{bottom:977.240400px;}
.y47{bottom:977.935800px;}
.y8{bottom:978.091800px;}
.y4{bottom:986.414550px;}
.yef{bottom:997.967400px;}
.yce{bottom:998.208900px;}
.y148{bottom:998.229900px;}
.y77{bottom:998.235150px;}
.y1e0{bottom:998.935800px;}
.y11{bottom:1011.368550px;}
.y3{bottom:1017.923550px;}
.yee{bottom:1018.962150px;}
.ycd{bottom:1019.224650px;}
.y76{bottom:1019.229900px;}
.y1f{bottom:1027.650900px;}
.yed{bottom:1039.956900px;}
.y17b{bottom:1040.203650px;}
.ycc{bottom:1040.219400px;}
.y46{bottom:1040.224650px;}
.yec{bottom:1060.951650px;}
.y17a{bottom:1061.198400px;}
.ycb{bottom:1061.214150px;}
.y45{bottom:1061.219400px;}
.y1e{bottom:1066.650900px;}
.yca{bottom:1082.208900px;}
.y44{bottom:1082.214150px;}
.y43{bottom:1103.208900px;}
.y1d{bottom:1105.650900px;}
.y2{bottom:1107.809850px;}
.y10{bottom:1108.028550px;}
.y42{bottom:1124.203650px;}
.yf{bottom:1126.028550px;}
.y7{bottom:1157.983650px;}
.y1{bottom:1161.832350px;}
.y6{bottom:1174.485150px;}
.y41{bottom:1177.882200px;}
.y5{bottom:1190.986650px;}
.ha{height:18.000000px;}
.h10{height:22.560000px;}
.h15{height:24.240000px;}
.h13{height:36.096000px;}
.h11{height:39.240000px;}
.h12{height:39.255000px;}
.hc{height:42.126000px;}
.h4{height:42.864000px;}
.h7{height:42.960000px;}
.h8{height:48.330000px;}
.hb{height:50.062500px;}
.hf{height:52.038000px;}
.h9{height:54.960000px;}
.h6{height:57.552000px;}
.he{height:58.656000px;}
.h14{height:63.168000px;}
.h3{height:81.216000px;}
.h5{height:112.800000px;}
.hd{height:130.800000px;}
.h2{height:157.920000px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w2{width:146.780550px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xc{left:63.779550px;}
.x4{left:72.283350px;}
.x1{left:85.039350px;}
.x7{left:90.034200px;}
.x9{left:91.451700px;}
.x8{left:93.103350px;}
.xb{left:94.494300px;}
.xa{left:95.831700px;}
.x17{left:97.751700px;}
.x16{left:99.146550px;}
.xd{left:127.559100px;}
.xf{left:134.031300px;}
.x6{left:136.057650px;}
.x11{left:137.196300px;}
.x10{left:138.520050px;}
.x15{left:140.271300px;}
.x14{left:141.838800px;}
.xe{left:178.594350px;}
.x13{left:187.092000px;}
.x3{left:255.118050px;}
.x12{left:281.775300px;}
.x2{left:690.804900px;}
.x5{left:816.385050px;}
@media print{
.v4{vertical-align:-18.648000pt;}
.v3{vertical-align:-13.333333pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:10.666667pt;}
.v2{vertical-align:18.592000pt;}
.ls9{letter-spacing:-4.000000pt;}
.ls10{letter-spacing:-2.920000pt;}
.lsc{letter-spacing:-1.400000pt;}
.ls1b{letter-spacing:-1.120000pt;}
.ls2{letter-spacing:-0.960000pt;}
.ls0{letter-spacing:-0.933333pt;}
.ls1c{letter-spacing:-0.652960pt;}
.ls3{letter-spacing:-0.533333pt;}
.lsf{letter-spacing:-0.373333pt;}
.lsa{letter-spacing:-0.346667pt;}
.lsb{letter-spacing:-0.293333pt;}
.ls19{letter-spacing:-0.280000pt;}
.ls12{letter-spacing:-0.200000pt;}
.ls4{letter-spacing:-0.192000pt;}
.ls1a{letter-spacing:-0.163240pt;}
.ls11{letter-spacing:-0.160000pt;}
.ls5{letter-spacing:-0.117333pt;}
.lse{letter-spacing:-0.042667pt;}
.lsd{letter-spacing:-0.026667pt;}
.ls1{letter-spacing:0.000000pt;}
.ls7{letter-spacing:0.000267pt;}
.ls16{letter-spacing:0.163240pt;}
.ls15{letter-spacing:0.280000pt;}
.ls14{letter-spacing:0.326480pt;}
.ls18{letter-spacing:0.489720pt;}
.ls13{letter-spacing:0.560000pt;}
.ls17{letter-spacing:0.840000pt;}
.ls8{letter-spacing:3.800000pt;}
.ls6{letter-spacing:33.493333pt;}
.ws9b{word-spacing:-18.760000pt;}
.ws61{word-spacing:-18.480000pt;}
.ws1b{word-spacing:-17.920000pt;}
.wsac{word-spacing:-17.640000pt;}
.wsb5{word-spacing:-16.800000pt;}
.ws2{word-spacing:-14.336000pt;}
.ws9a{word-spacing:-10.937080pt;}
.ws3c{word-spacing:-10.773840pt;}
.ws84{word-spacing:-10.610600pt;}
.ws3{word-spacing:-10.447360pt;}
.ws4{word-spacing:-10.360000pt;}
.wsab{word-spacing:-10.284120pt;}
.wsb6{word-spacing:-9.794400pt;}
.ws5{word-spacing:-8.288000pt;}
.ws1c{word-spacing:-8.128000pt;}
.wsb3{word-spacing:-4.424000pt;}
.ws26{word-spacing:-3.584000pt;}
.ws83{word-spacing:-3.528000pt;}
.wsae{word-spacing:-3.416000pt;}
.wsa5{word-spacing:-3.360000pt;}
.ws66{word-spacing:-3.304000pt;}
.wsba{word-spacing:-3.248000pt;}
.ws41{word-spacing:-3.192000pt;}
.ws11{word-spacing:-3.136000pt;}
.ws89{word-spacing:-3.024000pt;}
.wsa6{word-spacing:-2.968000pt;}
.wsb8{word-spacing:-2.912000pt;}
.ws90{word-spacing:-2.856000pt;}
.ws88{word-spacing:-2.688000pt;}
.wsbb{word-spacing:-2.632000pt;}
.wsa4{word-spacing:-2.576000pt;}
.ws64{word-spacing:-2.520000pt;}
.ws73{word-spacing:-2.408000pt;}
.ws65{word-spacing:-2.352000pt;}
.ws52{word-spacing:-2.296000pt;}
.ws6a{word-spacing:-2.240000pt;}
.ws85{word-spacing:-2.184000pt;}
.ws27{word-spacing:-2.072000pt;}
.ws5e{word-spacing:-2.016000pt;}
.wsad{word-spacing:-1.960000pt;}
.ws6c{word-spacing:-1.848000pt;}
.wsa7{word-spacing:-1.792000pt;}
.ws8a{word-spacing:-1.736000pt;}
.ws42{word-spacing:-1.680000pt;}
.ws49{word-spacing:-1.624000pt;}
.ws3a{word-spacing:-1.568000pt;}
.ws2b{word-spacing:-1.512000pt;}
.ws1f{word-spacing:-1.456000pt;}
.ws4b{word-spacing:-1.400000pt;}
.ws55{word-spacing:-1.344000pt;}
.ws63{word-spacing:-1.288000pt;}
.ws62{word-spacing:-1.232000pt;}
.wsb1{word-spacing:-1.176000pt;}
.ws21{word-spacing:-1.120000pt;}
.ws5f{word-spacing:-1.064000pt;}
.ws43{word-spacing:-1.008000pt;}
.ws99{word-spacing:-1.000000pt;}
.ws71{word-spacing:-0.952000pt;}
.ws6d{word-spacing:-0.896000pt;}
.ws8f{word-spacing:-0.840000pt;}
.ws74{word-spacing:-0.784000pt;}
.ws40{word-spacing:-0.728000pt;}
.ws20{word-spacing:-0.672000pt;}
.ws91{word-spacing:-0.616000pt;}
.wsbd{word-spacing:-0.600000pt;}
.ws14{word-spacing:-0.560000pt;}
.ws1d{word-spacing:-0.504000pt;}
.ws36{word-spacing:-0.480000pt;}
.ws2f{word-spacing:-0.448000pt;}
.ws56{word-spacing:-0.392000pt;}
.ws60{word-spacing:-0.336000pt;}
.ws18{word-spacing:-0.280000pt;}
.ws93{word-spacing:-0.224000pt;}
.wsaa{word-spacing:-0.168000pt;}
.ws95{word-spacing:-0.112000pt;}
.ws2e{word-spacing:-0.056000pt;}
.ws0{word-spacing:0.000000pt;}
.ws54{word-spacing:0.026667pt;}
.ws8e{word-spacing:0.056000pt;}
.ws58{word-spacing:0.112000pt;}
.ws34{word-spacing:0.160000pt;}
.ws3e{word-spacing:0.168000pt;}
.ws46{word-spacing:0.224000pt;}
.ws4a{word-spacing:0.280000pt;}
.ws77{word-spacing:0.336000pt;}
.ws67{word-spacing:0.392000pt;}
.ws75{word-spacing:0.400000pt;}
.ws8{word-spacing:0.448000pt;}
.ws45{word-spacing:0.504000pt;}
.ws2c{word-spacing:0.560000pt;}
.ws8c{word-spacing:0.616000pt;}
.ws59{word-spacing:0.672000pt;}
.ws31{word-spacing:0.680000pt;}
.ws25{word-spacing:0.728000pt;}
.ws6b{word-spacing:0.784000pt;}
.ws86{word-spacing:0.840000pt;}
.ws87{word-spacing:0.896000pt;}
.ws23{word-spacing:0.952000pt;}
.ws7e{word-spacing:1.008000pt;}
.ws35{word-spacing:1.040000pt;}
.ws38{word-spacing:1.064000pt;}
.ws5b{word-spacing:1.120000pt;}
.ws69{word-spacing:1.176000pt;}
.ws53{word-spacing:1.200000pt;}
.wse{word-spacing:1.232000pt;}
.ws57{word-spacing:1.288000pt;}
.ws50{word-spacing:1.344000pt;}
.ws10{word-spacing:1.400000pt;}
.ws2d{word-spacing:1.456000pt;}
.ws51{word-spacing:1.512000pt;}
.ws6e{word-spacing:1.568000pt;}
.ws16{word-spacing:1.624000pt;}
.ws12{word-spacing:1.680000pt;}
.ws7a{word-spacing:1.736000pt;}
.ws8b{word-spacing:1.792000pt;}
.ws13{word-spacing:1.848000pt;}
.ws39{word-spacing:1.904000pt;}
.ws47{word-spacing:1.960000pt;}
.ws76{word-spacing:2.016000pt;}
.ws30{word-spacing:2.072000pt;}
.ws9f{word-spacing:2.128000pt;}
.ws97{word-spacing:2.184000pt;}
.ws94{word-spacing:2.240000pt;}
.ws98{word-spacing:2.280000pt;}
.wsa9{word-spacing:2.296000pt;}
.ws3f{word-spacing:2.352000pt;}
.ws9{word-spacing:2.408000pt;}
.ws1e{word-spacing:2.464000pt;}
.ws72{word-spacing:2.520000pt;}
.wsb4{word-spacing:2.576000pt;}
.ws24{word-spacing:2.632000pt;}
.ws28{word-spacing:2.688000pt;}
.ws15{word-spacing:2.744000pt;}
.ws48{word-spacing:2.800000pt;}
.ws32{word-spacing:2.920000pt;}
.ws5a{word-spacing:2.968000pt;}
.wsaf{word-spacing:3.024000pt;}
.ws6f{word-spacing:3.080000pt;}
.ws19{word-spacing:3.120000pt;}
.wsa0{word-spacing:3.136000pt;}
.ws9c{word-spacing:3.192000pt;}
.ws1a{word-spacing:3.240000pt;}
.ws96{word-spacing:3.248000pt;}
.wsb2{word-spacing:3.304000pt;}
.ws68{word-spacing:3.360000pt;}
.ws5d{word-spacing:3.416000pt;}
.ws78{word-spacing:3.472000pt;}
.wsd{word-spacing:3.528000pt;}
.ws22{word-spacing:3.584000pt;}
.ws4e{word-spacing:3.640000pt;}
.wsb7{word-spacing:3.696000pt;}
.ws44{word-spacing:3.808000pt;}
.ws7f{word-spacing:3.864000pt;}
.ws33{word-spacing:3.880000pt;}
.ws80{word-spacing:3.920000pt;}
.ws6{word-spacing:4.000000pt;}
.ws70{word-spacing:4.032000pt;}
.ws17{word-spacing:4.080000pt;}
.ws5c{word-spacing:4.088000pt;}
.wsc{word-spacing:4.144000pt;}
.ws3d{word-spacing:4.200000pt;}
.ws3b{word-spacing:4.256000pt;}
.ws79{word-spacing:4.480000pt;}
.ws37{word-spacing:4.592000pt;}
.ws4d{word-spacing:4.648000pt;}
.ws7d{word-spacing:4.928000pt;}
.wsa1{word-spacing:4.984000pt;}
.wsbc{word-spacing:5.096000pt;}
.ws9e{word-spacing:5.208000pt;}
.wsa8{word-spacing:5.264000pt;}
.wsf{word-spacing:5.320000pt;}
.ws82{word-spacing:5.376000pt;}
.ws8d{word-spacing:5.600000pt;}
.wsb9{word-spacing:5.656000pt;}
.ws92{word-spacing:5.768000pt;}
.wsa2{word-spacing:5.824000pt;}
.ws4c{word-spacing:5.880000pt;}
.ws2a{word-spacing:5.936000pt;}
.wsbe{word-spacing:6.160000pt;}
.ws4f{word-spacing:6.272000pt;}
.wsa3{word-spacing:6.384000pt;}
.ws29{word-spacing:6.440000pt;}
.ws9d{word-spacing:6.552000pt;}
.ws7c{word-spacing:6.776000pt;}
.ws7{word-spacing:6.944000pt;}
.wsb{word-spacing:7.056000pt;}
.wsa{word-spacing:7.112000pt;}
.ws7b{word-spacing:7.168000pt;}
.wsb0{word-spacing:7.336000pt;}
.ws81{word-spacing:8.512000pt;}
.ws1{word-spacing:33.493333pt;}
._3{margin-left:-6.048000pt;}
._8{margin-left:-5.040000pt;}
._4{margin-left:-3.937067pt;}
._2{margin-left:-2.880000pt;}
._7{margin-left:-1.960000pt;}
._0{margin-left:-0.933333pt;}
._1{width:0.933333pt;}
._5{width:2.155200pt;}
._6{width:3.986667pt;}
.fsc{font-size:26.666667pt;}
.fse{font-size:32.000000pt;}
.fsb{font-size:32.648000pt;}
.fsd{font-size:40.000000pt;}
.fs5{font-size:42.666667pt;}
.fsa{font-size:44.800000pt;}
.fs7{font-size:45.333333pt;}
.fs6{font-size:48.000000pt;}
.fs2{font-size:50.666667pt;}
.fs9{font-size:56.000000pt;}
.fs4{font-size:58.666667pt;}
.fs8{font-size:69.333333pt;}
.fsf{font-size:74.666667pt;}
.fs1{font-size:96.000000pt;}
.fs3{font-size:133.333333pt;}
.fs0{font-size:186.666667pt;}
.y0{bottom:0.000000pt;}
.y1b{bottom:7.578267pt;}
.y1a{bottom:93.037733pt;}
.y71{bottom:107.083200pt;}
.y19{bottom:111.559600pt;}
.y147{bottom:113.379067pt;}
.y1df{bottom:113.382400pt;}
.y40{bottom:113.382667pt;}
.yab{bottom:113.385733pt;}
.yaa{bottom:116.719067pt;}
.y70{bottom:119.753200pt;}
.y6f{bottom:123.086533pt;}
.y146{bottom:126.049067pt;}
.ya9{bottom:126.052400pt;}
.y3f{bottom:126.052667pt;}
.y75{bottom:129.335733pt;}
.ya8{bottom:129.385733pt;}
.y3e{bottom:129.386000pt;}
.y6e{bottom:132.416533pt;}
.y18{bottom:134.226267pt;}
.y3d{bottom:138.716000pt;}
.ya7{bottom:138.719067pt;}
.ya6{bottom:142.052400pt;}
.y6d{bottom:145.083200pt;}
.y74{bottom:147.997733pt;}
.y3c{bottom:151.382667pt;}
.ya5{bottom:151.385733pt;}
.y17{bottom:154.226267pt;}
.ya4{bottom:154.719067pt;}
.y6c{bottom:157.753200pt;}
.y6b{bottom:161.086533pt;}
.y1de{bottom:164.049067pt;}
.ya3{bottom:164.052400pt;}
.y3b{bottom:164.052667pt;}
.y16{bottom:164.892933pt;}
.y73{bottom:166.659733pt;}
.ya2{bottom:167.385733pt;}
.y3a{bottom:167.386000pt;}
.y6a{bottom:170.419867pt;}
.y69{bottom:173.753200pt;}
.yeb{bottom:176.715733pt;}
.y39{bottom:176.716000pt;}
.ya1{bottom:176.719067pt;}
.y179{bottom:177.286667pt;}
.y15{bottom:178.226267pt;}
.ya0{bottom:180.052400pt;}
.y68{bottom:183.083200pt;}
.y14{bottom:188.892933pt;}
.y145{bottom:189.382400pt;}
.y9f{bottom:189.385733pt;}
.y38{bottom:189.386000pt;}
.y9e{bottom:192.719067pt;}
.y37{bottom:192.719333pt;}
.y67{bottom:195.753200pt;}
.y178{bottom:195.948667pt;}
.y66{bottom:199.086533pt;}
.y9d{bottom:202.052400pt;}
.y36{bottom:202.052667pt;}
.y72{bottom:203.993067pt;}
.y9c{bottom:205.385733pt;}
.y35{bottom:205.386000pt;}
.y65{bottom:208.416533pt;}
.y13{bottom:212.117467pt;}
.y177{bottom:214.610667pt;}
.y34{bottom:214.716000pt;}
.yc9{bottom:214.719067pt;}
.y1b5{bottom:214.848667pt;}
.y9b{bottom:218.052400pt;}
.y64{bottom:221.086533pt;}
.y1d0{bottom:223.359600pt;}
.y63{bottom:224.419867pt;}
.y12{bottom:225.449467pt;}
.y9a{bottom:227.382400pt;}
.yc8{bottom:227.385733pt;}
.y33{bottom:227.386000pt;}
.yc7{bottom:230.719067pt;}
.y32{bottom:230.719333pt;}
.y176{bottom:233.272667pt;}
.y1b4{bottom:233.510667pt;}
.y99{bottom:240.052400pt;}
.y1cf{bottom:242.021600pt;}
.y98{bottom:243.385733pt;}
.y175{bottom:251.934667pt;}
.y10e{bottom:252.168000pt;}
.y1b3{bottom:252.172667pt;}
.y15d{bottom:252.719067pt;}
.y15c{bottom:256.052400pt;}
.y1ce{bottom:260.683600pt;}
.y15b{bottom:265.385733pt;}
.y62{bottom:268.361600pt;}
.y15a{bottom:268.719067pt;}
.y10d{bottom:270.834667pt;}
.y159{bottom:278.052400pt;}
.yea{bottom:279.058667pt;}
.y144{bottom:279.068000pt;}
.y1cd{bottom:279.345600pt;}
.y158{bottom:281.385733pt;}
.y61{bottom:287.023600pt;}
.y31{bottom:288.904133pt;}
.y174{bottom:289.496667pt;}
.y1b2{bottom:289.510667pt;}
.y10c{bottom:289.534000pt;}
.y129{bottom:289.991333pt;}
.y97{bottom:289.996000pt;}
.y157{bottom:290.719067pt;}
.y156{bottom:294.052400pt;}
.ye9{bottom:297.720667pt;}
.y143{bottom:297.730000pt;}
.y197{bottom:297.956267pt;}
.y1cc{bottom:298.007600pt;}
.y155{bottom:303.385733pt;}
.y60{bottom:305.685600pt;}
.y154{bottom:306.719067pt;}
.y30{bottom:307.566133pt;}
.y173{bottom:308.158667pt;}
.y1b1{bottom:308.172667pt;}
.y10b{bottom:308.196000pt;}
.yc6{bottom:308.398933pt;}
.y128{bottom:308.653333pt;}
.y96{bottom:308.658000pt;}
.ye8{bottom:316.382667pt;}
.y142{bottom:316.392000pt;}
.y196{bottom:316.618267pt;}
.y1cb{bottom:316.669600pt;}
.y2f{bottom:326.228133pt;}
.y1b0{bottom:326.834667pt;}
.y10a{bottom:326.858000pt;}
.yc5{bottom:327.065600pt;}
.y127{bottom:327.315333pt;}
.y95{bottom:327.320000pt;}
.ye7{bottom:335.044667pt;}
.y141{bottom:335.054000pt;}
.y195{bottom:335.280267pt;}
.y1ca{bottom:335.331600pt;}
.y5f{bottom:335.690933pt;}
.y2e{bottom:344.894800pt;}
.y1af{bottom:345.501333pt;}
.y109{bottom:345.520000pt;}
.y172{bottom:345.583067pt;}
.yc4{bottom:345.736933pt;}
.y126{bottom:345.977333pt;}
.y94{bottom:345.982000pt;}
.y140{bottom:353.716000pt;}
.ye6{bottom:353.720667pt;}
.y194{bottom:353.942267pt;}
.y1c9{bottom:353.993600pt;}
.y2d{bottom:363.566133pt;}
.y1ae{bottom:364.163333pt;}
.y108{bottom:364.182000pt;}
.y171{bottom:364.245067pt;}
.yc3{bottom:364.398933pt;}
.y125{bottom:364.639333pt;}
.y93{bottom:364.644000pt;}
.y153{bottom:364.648667pt;}
.y13f{bottom:372.378000pt;}
.ye5{bottom:372.382667pt;}
.y193{bottom:372.622933pt;}
.y1c8{bottom:372.655600pt;}
.y2c{bottom:382.228133pt;}
.y1ad{bottom:382.825333pt;}
.y107{bottom:382.844000pt;}
.y170{bottom:382.907067pt;}
.yc2{bottom:383.065600pt;}
.y124{bottom:383.301333pt;}
.y92{bottom:383.306000pt;}
.y152{bottom:383.310667pt;}
.ye4{bottom:391.044667pt;}
.y13e{bottom:391.049333pt;}
.y5e{bottom:391.077333pt;}
.y192{bottom:391.284933pt;}
.y1c7{bottom:391.317600pt;}
.y2b{bottom:400.894800pt;}
.y106{bottom:401.506000pt;}
.y16f{bottom:401.569067pt;}
.yc1{bottom:401.736933pt;}
.y123{bottom:401.963333pt;}
.y91{bottom:401.968000pt;}
.y151{bottom:401.972667pt;}
.y13d{bottom:409.711333pt;}
.ye3{bottom:409.734667pt;}
.y5d{bottom:409.739333pt;}
.y191{bottom:409.946933pt;}
.y1c6{bottom:409.979600pt;}
.y2a{bottom:419.566133pt;}
.y105{bottom:420.168000pt;}
.y1ac{bottom:420.221600pt;}
.y16e{bottom:420.231067pt;}
.yc0{bottom:420.398933pt;}
.y90{bottom:420.630000pt;}
.y150{bottom:420.634667pt;}
.y1dd{bottom:420.644000pt;}
.y122{bottom:420.648667pt;}
.y13c{bottom:428.373333pt;}
.ye2{bottom:428.396667pt;}
.y5c{bottom:428.401333pt;}
.y190{bottom:428.608933pt;}
.y1c5{bottom:428.641600pt;}
.y29{bottom:438.228133pt;}
.y104{bottom:438.862667pt;}
.y1ab{bottom:438.883600pt;}
.y16d{bottom:438.893067pt;}
.ybf{bottom:439.060933pt;}
.y14f{bottom:439.296667pt;}
.y8f{bottom:439.301333pt;}
.y1dc{bottom:439.306000pt;}
.y121{bottom:439.310667pt;}
.y13b{bottom:447.035333pt;}
.ye1{bottom:447.058667pt;}
.y5b{bottom:447.063333pt;}
.y18f{bottom:447.280267pt;}
.y1c4{bottom:447.303600pt;}
.y28{bottom:456.904133pt;}
.y103{bottom:457.524667pt;}
.y1aa{bottom:457.545600pt;}
.y16c{bottom:457.555067pt;}
.ybe{bottom:457.722933pt;}
.y8e{bottom:457.963333pt;}
.y1db{bottom:457.968000pt;}
.y120{bottom:457.972667pt;}
.ye0{bottom:465.720667pt;}
.y5a{bottom:465.725333pt;}
.y18e{bottom:465.942267pt;}
.y1c3{bottom:465.965600pt;}
.y27{bottom:475.566133pt;}
.y102{bottom:476.186667pt;}
.y1a9{bottom:476.207600pt;}
.y16b{bottom:476.217067pt;}
.y1da{bottom:476.630000pt;}
.y11f{bottom:476.634667pt;}
.y8d{bottom:476.639333pt;}
.ydf{bottom:484.382667pt;}
.y59{bottom:484.387333pt;}
.y13a{bottom:484.445600pt;}
.y18d{bottom:484.618267pt;}
.y1c2{bottom:484.627600pt;}
.y26{bottom:494.228133pt;}
.y101{bottom:494.848667pt;}
.y1a8{bottom:494.869600pt;}
.y16a{bottom:494.879067pt;}
.ybd{bottom:495.082000pt;}
.y11e{bottom:495.296667pt;}
.y8c{bottom:495.301333pt;}
.y1d9{bottom:495.310667pt;}
.yde{bottom:503.044667pt;}
.y58{bottom:503.049333pt;}
.y139{bottom:503.107600pt;}
.y18c{bottom:503.280267pt;}
.y1c1{bottom:503.289600pt;}
.y25{bottom:512.904133pt;}
.y100{bottom:513.510667pt;}
.y1a7{bottom:513.531600pt;}
.y169{bottom:513.541067pt;}
.ybc{bottom:513.744000pt;}
.y8b{bottom:513.963333pt;}
.y11d{bottom:513.968000pt;}
.y1d8{bottom:513.972667pt;}
.y1c{bottom:520.189067pt;}
.ydd{bottom:521.706667pt;}
.y57{bottom:521.711333pt;}
.y138{bottom:521.769600pt;}
.y18b{bottom:521.942267pt;}
.y1c0{bottom:521.951600pt;}
.y24{bottom:531.566133pt;}
.yff{bottom:532.172667pt;}
.y1a6{bottom:532.193600pt;}
.y168{bottom:532.203067pt;}
.ybb{bottom:532.406000pt;}
.y11c{bottom:532.630000pt;}
.y8a{bottom:532.634667pt;}
.y56{bottom:540.373333pt;}
.y137{bottom:540.431600pt;}
.y18a{bottom:540.613600pt;}
.y23{bottom:550.228133pt;}
.yfe{bottom:550.834667pt;}
.y1a5{bottom:550.855600pt;}
.y167{bottom:550.865067pt;}
.yba{bottom:551.068000pt;}
.y89{bottom:551.296667pt;}
.y11b{bottom:551.329333pt;}
.ydc{bottom:551.711867pt;}
.y55{bottom:559.035333pt;}
.y136{bottom:559.093600pt;}
.y189{bottom:559.275600pt;}
.y22{bottom:568.890133pt;}
.yfd{bottom:569.496667pt;}
.y166{bottom:569.527067pt;}
.y14e{bottom:569.963333pt;}
.y88{bottom:569.972667pt;}
.y1d7{bottom:569.986667pt;}
.y11a{bottom:569.991333pt;}
.y135{bottom:577.755600pt;}
.y188{bottom:577.942267pt;}
.y1bf{bottom:577.946933pt;}
.yfc{bottom:588.158667pt;}
.y165{bottom:588.189067pt;}
.y1a4{bottom:588.417600pt;}
.yb9{bottom:588.630000pt;}
.y87{bottom:588.634667pt;}
.y1d6{bottom:588.648667pt;}
.y119{bottom:588.653333pt;}
.y54{bottom:596.412933pt;}
.y134{bottom:596.417600pt;}
.y1be{bottom:596.608933pt;}
.y187{bottom:596.613600pt;}
.y164{bottom:606.851067pt;}
.ydb{bottom:607.070267pt;}
.y1a3{bottom:607.079600pt;}
.y86{bottom:607.296667pt;}
.yb8{bottom:607.301333pt;}
.y1d5{bottom:607.310667pt;}
.y118{bottom:607.315333pt;}
.y53{bottom:615.074933pt;}
.y186{bottom:615.275600pt;}
.y1bd{bottom:615.308267pt;}
.y163{bottom:625.513067pt;}
.yfb{bottom:625.522400pt;}
.yda{bottom:625.732267pt;}
.y1a2{bottom:625.741600pt;}
.yb7{bottom:625.963333pt;}
.y85{bottom:625.968000pt;}
.y1d4{bottom:625.972667pt;}
.y117{bottom:625.977333pt;}
.ye{bottom:626.249467pt;}
.y52{bottom:633.736933pt;}
.y185{bottom:633.951600pt;}
.y1bc{bottom:633.970267pt;}
.y133{bottom:633.979600pt;}
.yd{bottom:643.585467pt;}
.yfa{bottom:644.184400pt;}
.yd9{bottom:644.398933pt;}
.y1a1{bottom:644.403600pt;}
.y84{bottom:644.630000pt;}
.y1d3{bottom:644.634667pt;}
.y116{bottom:644.639333pt;}
.yb6{bottom:644.644000pt;}
.y51{bottom:652.398933pt;}
.y184{bottom:652.613600pt;}
.y1bb{bottom:652.632267pt;}
.y132{bottom:652.641600pt;}
.yc{bottom:660.921467pt;}
.yf9{bottom:662.846400pt;}
.y1a0{bottom:663.065600pt;}
.yd8{bottom:663.075067pt;}
.y1d2{bottom:663.296667pt;}
.y83{bottom:663.301333pt;}
.yb5{bottom:663.306000pt;}
.y50{bottom:671.060933pt;}
.y183{bottom:671.275600pt;}
.y1ba{bottom:671.294267pt;}
.y131{bottom:671.303600pt;}
.yf8{bottom:681.508400pt;}
.yd7{bottom:681.737067pt;}
.y19f{bottom:681.755733pt;}
.y82{bottom:681.963333pt;}
.yb4{bottom:681.968000pt;}
.y4f{bottom:689.722933pt;}
.y182{bottom:689.956267pt;}
.y130{bottom:689.965600pt;}
.yd6{bottom:700.399067pt;}
.y19e{bottom:700.417733pt;}
.yb3{bottom:700.630000pt;}
.y81{bottom:700.639333pt;}
.y4e{bottom:708.384933pt;}
.y181{bottom:708.618267pt;}
.y12f{bottom:708.627600pt;}
.yd5{bottom:719.061067pt;}
.yf7{bottom:719.070400pt;}
.y19d{bottom:719.079733pt;}
.y80{bottom:719.301333pt;}
.y14d{bottom:719.306000pt;}
.yb2{bottom:719.315333pt;}
.y180{bottom:727.280267pt;}
.y12e{bottom:727.289600pt;}
.yd4{bottom:737.723067pt;}
.yf6{bottom:737.732400pt;}
.y19c{bottom:737.741733pt;}
.y7f{bottom:737.963333pt;}
.y14c{bottom:737.968000pt;}
.yb1{bottom:737.977333pt;}
.y17f{bottom:745.942267pt;}
.y4d{bottom:745.946933pt;}
.y12d{bottom:745.951600pt;}
.yb{bottom:750.068533pt;}
.y19b{bottom:756.403733pt;}
.yf5{bottom:756.408400pt;}
.y115{bottom:756.630000pt;}
.yb0{bottom:756.639333pt;}
.y7e{bottom:756.686133pt;}
.y1b9{bottom:764.604267pt;}
.y4c{bottom:764.608933pt;}
.y12c{bottom:764.613600pt;}
.y17e{bottom:764.623067pt;}
.y19a{bottom:775.065733pt;}
.yf4{bottom:775.070400pt;}
.yd3{bottom:775.086800pt;}
.y162{bottom:775.110133pt;}
.y1d1{bottom:775.296667pt;}
.yaf{bottom:775.301333pt;}
.y114{bottom:775.315467pt;}
.y7d{bottom:775.348133pt;}
.ya{bottom:776.732533pt;}
.y4b{bottom:783.275600pt;}
.y17d{bottom:783.285067pt;}
.y199{bottom:793.727733pt;}
.yf3{bottom:793.732400pt;}
.yd2{bottom:793.748800pt;}
.y161{bottom:793.772133pt;}
.yae{bottom:793.963333pt;}
.y113{bottom:793.977467pt;}
.y7c{bottom:794.010133pt;}
.y1b8{bottom:794.609600pt;}
.y12b{bottom:801.937600pt;}
.y4a{bottom:801.942267pt;}
.y17c{bottom:801.947067pt;}
.y1e4{bottom:801.951733pt;}
.y198{bottom:812.389733pt;}
.yf2{bottom:812.394400pt;}
.yd1{bottom:812.410800pt;}
.y160{bottom:812.434133pt;}
.yad{bottom:812.630000pt;}
.y14b{bottom:812.634800pt;}
.y112{bottom:812.639467pt;}
.y7b{bottom:812.672133pt;}
.y49{bottom:820.609067pt;}
.y1e3{bottom:820.613733pt;}
.yf1{bottom:831.056400pt;}
.yd0{bottom:831.072800pt;}
.y15f{bottom:831.096133pt;}
.yac{bottom:831.296800pt;}
.y111{bottom:831.301467pt;}
.y7a{bottom:831.334133pt;}
.y12a{bottom:831.942933pt;}
.y21{bottom:837.005600pt;}
.y9{bottom:837.414933pt;}
.y48{bottom:839.271067pt;}
.y1e2{bottom:839.275733pt;}
.ycf{bottom:849.734800pt;}
.y15e{bottom:849.758133pt;}
.y110{bottom:849.963467pt;}
.y1b7{bottom:849.972800pt;}
.y14a{bottom:849.991467pt;}
.y79{bottom:849.996133pt;}
.y20{bottom:855.672133pt;}
.y1e1{bottom:857.937733pt;}
.yf0{bottom:868.420133pt;}
.y10f{bottom:868.630133pt;}
.y1b6{bottom:868.634800pt;}
.y149{bottom:868.653467pt;}
.y78{bottom:868.658133pt;}
.y47{bottom:869.276267pt;}
.y8{bottom:869.414933pt;}
.y4{bottom:876.812933pt;}
.yef{bottom:887.082133pt;}
.yce{bottom:887.296800pt;}
.y148{bottom:887.315467pt;}
.y77{bottom:887.320133pt;}
.y1e0{bottom:887.942933pt;}
.y11{bottom:898.994267pt;}
.y3{bottom:904.820933pt;}
.yee{bottom:905.744133pt;}
.ycd{bottom:905.977467pt;}
.y76{bottom:905.982133pt;}
.y1f{bottom:913.467467pt;}
.yed{bottom:924.406133pt;}
.y17b{bottom:924.625467pt;}
.ycc{bottom:924.639467pt;}
.y46{bottom:924.644133pt;}
.yec{bottom:943.068133pt;}
.y17a{bottom:943.287467pt;}
.ycb{bottom:943.301467pt;}
.y45{bottom:943.306133pt;}
.y1e{bottom:948.134133pt;}
.yca{bottom:961.963467pt;}
.y44{bottom:961.968133pt;}
.y43{bottom:980.630133pt;}
.y1d{bottom:982.800800pt;}
.y2{bottom:984.719867pt;}
.y10{bottom:984.914267pt;}
.y42{bottom:999.292133pt;}
.yf{bottom:1000.914267pt;}
.y7{bottom:1029.318800pt;}
.y1{bottom:1032.739867pt;}
.y6{bottom:1043.986800pt;}
.y41{bottom:1047.006400pt;}
.y5{bottom:1058.654800pt;}
.ha{height:16.000000pt;}
.h10{height:20.053333pt;}
.h15{height:21.546667pt;}
.h13{height:32.085333pt;}
.h11{height:34.880000pt;}
.h12{height:34.893333pt;}
.hc{height:37.445333pt;}
.h4{height:38.101333pt;}
.h7{height:38.186667pt;}
.h8{height:42.960000pt;}
.hb{height:44.500000pt;}
.hf{height:46.256000pt;}
.h9{height:48.853333pt;}
.h6{height:51.157333pt;}
.he{height:52.138667pt;}
.h14{height:56.149333pt;}
.h3{height:72.192000pt;}
.h5{height:100.266667pt;}
.hd{height:116.266667pt;}
.h2{height:140.373333pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w2{width:130.471600pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xc{left:56.692933pt;}
.x4{left:64.251867pt;}
.x1{left:75.590533pt;}
.x7{left:80.030400pt;}
.x9{left:81.290400pt;}
.x8{left:82.758533pt;}
.xb{left:83.994933pt;}
.xa{left:85.183733pt;}
.x17{left:86.890400pt;}
.x16{left:88.130267pt;}
.xd{left:113.385867pt;}
.xf{left:119.138933pt;}
.x6{left:120.940133pt;}
.x11{left:121.952267pt;}
.x10{left:123.128933pt;}
.x15{left:124.685600pt;}
.x14{left:126.078933pt;}
.xe{left:158.750533pt;}
.x13{left:166.304000pt;}
.x3{left:226.771600pt;}
.x12{left:250.466933pt;}
.x2{left:614.048800pt;}
.x5{left:725.675600pt;}
}




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