
    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_139b937d704149ae5b8312e3.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.938477;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_77c365601ab37f4ea18a0534.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.938477;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_4d66d680c909875bb8603e12.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.938477;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_c10121d3e41258eb5ba7dda9.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.939453;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_046c79a68a61e025e9e6a7c8.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.938965;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_24db68c4109c43a654d5a07b.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.910645;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_51ae99cbfd23f5a0c22c2397.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.910156;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_38f28fb17fff7064c1696454.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.910645;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_b74649be4427b7dd05e9e91e.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.893555;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-21.701400px;}
.v3{vertical-align:-18.811800px;}
.v4{vertical-align:-11.697000px;}
.v0{vertical-align:0.000000px;}
.v6{vertical-align:1.620000px;}
.v5{vertical-align:28.203000px;}
.v1{vertical-align:30.381600px;}
.ls7a{letter-spacing:-2.640000px;}
.ls12{letter-spacing:-0.780000px;}
.ls35{letter-spacing:-0.540000px;}
.ls34{letter-spacing:-0.300000px;}
.ls36{letter-spacing:-0.240000px;}
.ls7c{letter-spacing:-0.192000px;}
.ls3d{letter-spacing:-0.180000px;}
.ls48{letter-spacing:-0.120000px;}
.ls13{letter-spacing:-0.090000px;}
.ls3e{letter-spacing:-0.060000px;}
.ls7b{letter-spacing:-0.048000px;}
.ls11{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.003828px;}
.ls2{letter-spacing:0.004140px;}
.ls0{letter-spacing:0.005076px;}
.ls1{letter-spacing:0.005676px;}
.ls38{letter-spacing:0.010200px;}
.ls78{letter-spacing:0.048000px;}
.lsa{letter-spacing:0.060000px;}
.ls75{letter-spacing:0.096000px;}
.lse{letter-spacing:0.120000px;}
.ls6a{letter-spacing:0.144000px;}
.ls22{letter-spacing:0.180000px;}
.ls63{letter-spacing:0.192000px;}
.ls2d{letter-spacing:0.240000px;}
.ls56{letter-spacing:0.288000px;}
.ls19{letter-spacing:0.300000px;}
.ls65{letter-spacing:0.336000px;}
.ls37{letter-spacing:0.360000px;}
.lsd{letter-spacing:0.420000px;}
.ls57{letter-spacing:0.432000px;}
.ls7{letter-spacing:0.480000px;}
.ls64{letter-spacing:0.528000px;}
.ls25{letter-spacing:0.540000px;}
.ls62{letter-spacing:0.576000px;}
.ls26{letter-spacing:0.600000px;}
.ls2b{letter-spacing:0.660000px;}
.ls59{letter-spacing:0.672000px;}
.ls1f{letter-spacing:0.720000px;}
.ls5b{letter-spacing:0.768000px;}
.ls27{letter-spacing:0.780000px;}
.ls5f{letter-spacing:0.816000px;}
.ls20{letter-spacing:0.840000px;}
.ls58{letter-spacing:0.864000px;}
.ls30{letter-spacing:0.900000px;}
.ls68{letter-spacing:0.912000px;}
.ls10{letter-spacing:0.960000px;}
.ls53{letter-spacing:1.008000px;}
.lsc{letter-spacing:1.020000px;}
.ls54{letter-spacing:1.056000px;}
.lsf{letter-spacing:1.080000px;}
.ls1d{letter-spacing:1.140000px;}
.ls3a{letter-spacing:1.174200px;}
.ls16{letter-spacing:1.200000px;}
.ls60{letter-spacing:1.248000px;}
.ls31{letter-spacing:1.260000px;}
.ls5d{letter-spacing:1.296000px;}
.ls1e{letter-spacing:1.320000px;}
.ls69{letter-spacing:1.344000px;}
.ls6{letter-spacing:1.380000px;}
.ls5c{letter-spacing:1.392000px;}
.ls42{letter-spacing:1.440000px;}
.ls5a{letter-spacing:1.488000px;}
.ls24{letter-spacing:1.500000px;}
.ls6f{letter-spacing:1.536000px;}
.ls47{letter-spacing:1.560000px;}
.ls79{letter-spacing:1.584000px;}
.ls1b{letter-spacing:1.620000px;}
.ls4{letter-spacing:1.680000px;}
.ls73{letter-spacing:1.728000px;}
.ls21{letter-spacing:1.740000px;}
.ls74{letter-spacing:1.776000px;}
.ls18{letter-spacing:1.800000px;}
.ls70{letter-spacing:1.824000px;}
.ls45{letter-spacing:1.860000px;}
.ls76{letter-spacing:1.872000px;}
.ls17{letter-spacing:1.920000px;}
.ls1a{letter-spacing:1.980000px;}
.ls5e{letter-spacing:2.016000px;}
.ls33{letter-spacing:2.040000px;}
.ls67{letter-spacing:2.064000px;}
.ls23{letter-spacing:2.100000px;}
.ls55{letter-spacing:2.112000px;}
.ls8{letter-spacing:2.160000px;}
.ls5{letter-spacing:2.220000px;}
.ls6e{letter-spacing:2.256000px;}
.ls3f{letter-spacing:2.280000px;}
.ls2e{letter-spacing:2.340000px;}
.ls71{letter-spacing:2.400000px;}
.ls46{letter-spacing:2.460000px;}
.ls2f{letter-spacing:2.520000px;}
.ls39{letter-spacing:2.580000px;}
.ls61{letter-spacing:2.592000px;}
.ls3c{letter-spacing:2.640000px;}
.ls2c{letter-spacing:2.700000px;}
.lsb{letter-spacing:2.820000px;}
.ls72{letter-spacing:2.976000px;}
.ls50{letter-spacing:3.000000px;}
.ls28{letter-spacing:3.060000px;}
.ls2a{letter-spacing:3.120000px;}
.ls77{letter-spacing:3.168000px;}
.ls1c{letter-spacing:3.180000px;}
.ls66{letter-spacing:3.216000px;}
.ls40{letter-spacing:3.360000px;}
.ls15{letter-spacing:3.420000px;}
.ls44{letter-spacing:3.480000px;}
.ls32{letter-spacing:3.540000px;}
.ls6d{letter-spacing:3.552000px;}
.ls29{letter-spacing:3.720000px;}
.ls4d{letter-spacing:3.780000px;}
.ls41{letter-spacing:3.840000px;}
.ls43{letter-spacing:3.900000px;}
.ls49{letter-spacing:3.960000px;}
.ls9{letter-spacing:4.200000px;}
.ls6b{letter-spacing:4.320000px;}
.ls6c{letter-spacing:4.368000px;}
.ls4c{letter-spacing:4.380000px;}
.ls4b{letter-spacing:4.440000px;}
.ls4a{letter-spacing:4.680000px;}
.ls3b{letter-spacing:5.100000px;}
.ls52{letter-spacing:5.520000px;}
.ls14{letter-spacing:5.640000px;}
.ls4f{letter-spacing:6.060000px;}
.ls51{letter-spacing:6.120000px;}
.ls4e{letter-spacing:6.720000px;}
.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;}
}
.ws32{word-spacing:-18.480000px;}
.ws4b{word-spacing:-18.420000px;}
.ws4a{word-spacing:-17.520000px;}
.ws21{word-spacing:-16.740000px;}
.ws31{word-spacing:-16.680000px;}
.ws5d{word-spacing:-16.368000px;}
.wsc{word-spacing:-16.320000px;}
.ws30{word-spacing:-16.260000px;}
.ws49{word-spacing:-16.140000px;}
.ws3e{word-spacing:-15.900000px;}
.wse{word-spacing:-15.540000px;}
.wsd{word-spacing:-15.420000px;}
.wsf{word-spacing:-15.240000px;}
.ws33{word-spacing:-15.000000px;}
.ws75{word-spacing:-14.976000px;}
.ws5e{word-spacing:-14.256000px;}
.ws5b{word-spacing:-14.064000px;}
.ws79{word-spacing:-13.872000px;}
.ws78{word-spacing:-13.680000px;}
.ws5f{word-spacing:-13.536000px;}
.ws4{word-spacing:-13.344000px;}
.ws5c{word-spacing:-13.200000px;}
.ws57{word-spacing:-12.864000px;}
.ws58{word-spacing:-12.720000px;}
.ws3{word-spacing:-12.510000px;}
.ws76{word-spacing:-12.240000px;}
.ws59{word-spacing:-12.192000px;}
.ws5a{word-spacing:-12.000000px;}
.ws0{word-spacing:-10.210662px;}
.ws77{word-spacing:-9.360000px;}
.ws22{word-spacing:-8.745000px;}
.ws2{word-spacing:-7.293330px;}
.ws71{word-spacing:-4.368000px;}
.ws39{word-spacing:-3.960000px;}
.ws3b{word-spacing:-3.480000px;}
.ws64{word-spacing:-3.120000px;}
.ws6{word-spacing:-2.886000px;}
.ws60{word-spacing:-2.700000px;}
.ws3d{word-spacing:-2.640000px;}
.ws65{word-spacing:-2.016000px;}
.ws45{word-spacing:-1.920000px;}
.ws7f{word-spacing:-1.872000px;}
.ws74{word-spacing:-1.536000px;}
.ws19{word-spacing:-1.500000px;}
.ws12{word-spacing:-1.320000px;}
.ws55{word-spacing:-1.200000px;}
.ws54{word-spacing:-1.080000px;}
.ws47{word-spacing:-1.020000px;}
.ws44{word-spacing:-0.720000px;}
.ws2b{word-spacing:-0.540000px;}
.ws26{word-spacing:-0.480000px;}
.ws63{word-spacing:-0.432000px;}
.ws15{word-spacing:-0.420000px;}
.ws41{word-spacing:-0.360000px;}
.ws10{word-spacing:-0.300000px;}
.ws73{word-spacing:-0.288000px;}
.ws1c{word-spacing:-0.240000px;}
.ws66{word-spacing:-0.192000px;}
.ws42{word-spacing:-0.180000px;}
.ws6f{word-spacing:-0.144000px;}
.ws2e{word-spacing:-0.120000px;}
.ws9{word-spacing:-0.060000px;}
.ws5{word-spacing:0.000000px;}
.ws6d{word-spacing:0.096000px;}
.ws1d{word-spacing:0.120000px;}
.ws80{word-spacing:0.144000px;}
.ws2a{word-spacing:0.180000px;}
.ws7b{word-spacing:0.192000px;}
.ws3f{word-spacing:0.240000px;}
.ws4f{word-spacing:0.300000px;}
.ws7d{word-spacing:0.336000px;}
.ws69{word-spacing:0.432000px;}
.ws16{word-spacing:0.540000px;}
.ws1b{word-spacing:0.600000px;}
.ws6e{word-spacing:0.624000px;}
.ws1f{word-spacing:0.660000px;}
.ws6b{word-spacing:0.720000px;}
.ws68{word-spacing:0.816000px;}
.ws70{word-spacing:0.864000px;}
.ws1e{word-spacing:0.900000px;}
.ws7c{word-spacing:0.912000px;}
.ws3a{word-spacing:1.020000px;}
.ws52{word-spacing:1.140000px;}
.ws7a{word-spacing:1.152000px;}
.ws48{word-spacing:1.248000px;}
.ws4c{word-spacing:1.260000px;}
.ws43{word-spacing:1.320000px;}
.ws67{word-spacing:1.344000px;}
.ws53{word-spacing:1.440000px;}
.ws6c{word-spacing:1.536000px;}
.ws24{word-spacing:1.560000px;}
.ws11{word-spacing:1.680000px;}
.ws6a{word-spacing:1.776000px;}
.ws40{word-spacing:1.980000px;}
.ws56{word-spacing:2.040000px;}
.ws14{word-spacing:2.160000px;}
.wsb{word-spacing:2.220000px;}
.ws4e{word-spacing:2.520000px;}
.ws36{word-spacing:2.580000px;}
.ws25{word-spacing:2.700000px;}
.ws38{word-spacing:2.820000px;}
.ws3c{word-spacing:2.940000px;}
.ws23{word-spacing:3.000000px;}
.ws35{word-spacing:3.060000px;}
.ws1a{word-spacing:3.240000px;}
.ws7e{word-spacing:3.312000px;}
.ws46{word-spacing:3.360000px;}
.ws37{word-spacing:3.600000px;}
.ws72{word-spacing:3.648000px;}
.ws17{word-spacing:3.660000px;}
.ws50{word-spacing:3.720000px;}
.ws2d{word-spacing:3.780000px;}
.ws51{word-spacing:3.840000px;}
.ws29{word-spacing:3.900000px;}
.ws62{word-spacing:3.936000px;}
.ws28{word-spacing:3.960000px;}
.ws61{word-spacing:3.984000px;}
.ws13{word-spacing:4.200000px;}
.ws2c{word-spacing:4.320000px;}
.ws20{word-spacing:4.380000px;}
.ws4d{word-spacing:4.440000px;}
.ws18{word-spacing:4.500000px;}
.ws27{word-spacing:4.560000px;}
.wsa{word-spacing:4.740000px;}
.ws2f{word-spacing:4.800000px;}
.ws7{word-spacing:4.920000px;}
.ws8{word-spacing:4.980000px;}
.ws1{word-spacing:49.320456px;}
.ws34{word-spacing:910.512000px;}
._a{margin-left:-2898.144000px;}
._b{margin-left:-2874.336000px;}
._4{margin-left:-6.660000px;}
._1{margin-left:-5.376000px;}
._2{margin-left:-3.574860px;}
._0{margin-left:-2.310000px;}
._3{margin-left:-1.020000px;}
._5{width:1.020000px;}
._9{width:2.220000px;}
._7{width:4.200000px;}
._6{width:5.280000px;}
._8{width:6.334860px;}
._d{width:7.680000px;}
._c{width:9.060000px;}
._1b{width:97.920000px;}
._e{width:99.936000px;}
._15{width:121.440000px;}
._11{width:145.920000px;}
._12{width:148.656000px;}
._18{width:156.672000px;}
._f{width:189.600000px;}
._22{width:203.676000px;}
._13{width:215.232000px;}
._1c{width:219.552000px;}
._23{width:220.950000px;}
._19{width:223.200000px;}
._14{width:231.552000px;}
._10{width:293.376000px;}
._17{width:404.064000px;}
._16{width:425.376000px;}
._1e{width:501.408000px;}
._1d{width:522.720000px;}
._21{width:549.408000px;}
._20{width:557.376000px;}
._1f{width:560.436000px;}
._1a{width:562.294860px;}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:22.737000px;}
.fs5{font-size:26.235000px;}
.fsb{font-size:34.980000px;}
.fs4{font-size:36.729000px;}
.fs8{font-size:39.000000px;}
.fs0{font-size:42.000000px;}
.fs6{font-size:45.000000px;}
.fsa{font-size:48.000000px;}
.fs9{font-size:60.000000px;}
.fs3{font-size:63.000000px;}
.fs1{font-size:78.000000px;}
.fs2{font-size:126.600000px;}
.y0{bottom:0.000000px;}
.y1{bottom:46.264950px;}
.y2f{bottom:47.777250px;}
.y9d{bottom:83.001300px;}
.y113{bottom:83.635500px;}
.yad{bottom:83.661150px;}
.y88{bottom:83.684700px;}
.y65{bottom:83.770350px;}
.ye4{bottom:83.770500px;}
.y148{bottom:86.121900px;}
.y2c{bottom:88.026750px;}
.y188{bottom:95.263500px;}
.yac{bottom:99.405150px;}
.y147{bottom:101.121900px;}
.y112{bottom:101.230500px;}
.y64{bottom:101.770350px;}
.ye3{bottom:101.770500px;}
.y2b{bottom:103.023000px;}
.y9c{bottom:108.513300px;}
.y187{bottom:110.263500px;}
.yab{bottom:115.149150px;}
.y146{bottom:116.121900px;}
.y63{bottom:119.770350px;}
.ye2{bottom:119.770500px;}
.y9b{bottom:124.761300px;}
.y186{bottom:125.263500px;}
.y145{bottom:131.121900px;}
.y111{bottom:137.635500px;}
.y62{bottom:137.770350px;}
.ye1{bottom:137.770500px;}
.y185{bottom:140.263500px;}
.y9a{bottom:141.009300px;}
.y144{bottom:146.121900px;}
.y184{bottom:155.263500px;}
.y110{bottom:155.635500px;}
.y61{bottom:155.770350px;}
.ye0{bottom:155.770500px;}
.y99{bottom:157.257300px;}
.y143{bottom:161.121900px;}
.y183{bottom:170.263500px;}
.y28{bottom:171.325500px;}
.y98{bottom:173.505300px;}
.y10f{bottom:173.635500px;}
.y60{bottom:173.770350px;}
.ydf{bottom:173.770500px;}
.y142{bottom:176.121900px;}
.y182{bottom:185.263500px;}
.y27{bottom:189.325500px;}
.y97{bottom:189.753300px;}
.y141{bottom:191.121900px;}
.y10e{bottom:191.635500px;}
.y5f{bottom:191.770350px;}
.yde{bottom:191.770500px;}
.y181{bottom:200.263500px;}
.y96{bottom:206.001300px;}
.y140{bottom:206.121900px;}
.y26{bottom:207.325500px;}
.y10d{bottom:209.635500px;}
.y5e{bottom:209.770350px;}
.ydd{bottom:209.770500px;}
.y180{bottom:215.263500px;}
.y13f{bottom:221.121900px;}
.y95{bottom:222.249300px;}
.y25{bottom:225.325500px;}
.y10c{bottom:227.635500px;}
.y5d{bottom:227.770350px;}
.ydc{bottom:227.770500px;}
.y17f{bottom:230.263500px;}
.y13e{bottom:236.121900px;}
.y94{bottom:238.497300px;}
.y24{bottom:243.325500px;}
.y10b{bottom:245.230500px;}
.y17e{bottom:245.263500px;}
.y5c{bottom:245.770350px;}
.ydb{bottom:245.770500px;}
.y13d{bottom:251.121900px;}
.y93{bottom:254.745300px;}
.y17d{bottom:260.263500px;}
.y23{bottom:261.325500px;}
.y5b{bottom:263.770350px;}
.yda{bottom:263.770500px;}
.y13c{bottom:266.121900px;}
.y92{bottom:270.993300px;}
.y17c{bottom:275.263500px;}
.y22{bottom:279.325500px;}
.y13b{bottom:281.121900px;}
.y10a{bottom:281.635500px;}
.y5a{bottom:281.770350px;}
.yd9{bottom:281.770500px;}
.y91{bottom:287.241300px;}
.y17b{bottom:290.263500px;}
.y13a{bottom:296.121900px;}
.y21{bottom:297.325500px;}
.y109{bottom:299.635500px;}
.y59{bottom:299.770350px;}
.yd8{bottom:299.770500px;}
.y17a{bottom:305.263500px;}
.y139{bottom:311.121900px;}
.y2a{bottom:315.325500px;}
.y90{bottom:316.245300px;}
.y108{bottom:317.635500px;}
.y58{bottom:317.770350px;}
.yd7{bottom:317.770500px;}
.y179{bottom:320.263500px;}
.y138{bottom:326.121900px;}
.y8f{bottom:332.745300px;}
.y20{bottom:332.922750px;}
.y29{bottom:333.325500px;}
.y178{bottom:335.263500px;}
.y107{bottom:335.635500px;}
.y57{bottom:335.770350px;}
.yd6{bottom:335.770500px;}
.y137{bottom:341.121900px;}
.y177{bottom:350.263500px;}
.y106{bottom:353.635500px;}
.y56{bottom:353.770350px;}
.yd5{bottom:353.770500px;}
.y136{bottom:356.121900px;}
.y8e{bottom:361.749300px;}
.y176{bottom:365.263500px;}
.y135{bottom:371.121900px;}
.y105{bottom:371.635500px;}
.y55{bottom:371.770350px;}
.yd4{bottom:371.770500px;}
.y175{bottom:380.263500px;}
.y134{bottom:386.121900px;}
.y104{bottom:389.635500px;}
.y54{bottom:389.770350px;}
.yd3{bottom:389.770500px;}
.y8d{bottom:394.135350px;}
.y174{bottom:395.263500px;}
.y133{bottom:401.121900px;}
.yaa{bottom:407.635350px;}
.y103{bottom:407.635500px;}
.y53{bottom:407.770350px;}
.yd2{bottom:407.770500px;}
.y173{bottom:410.263500px;}
.y1f{bottom:410.314200px;}
.y8c{bottom:413.635350px;}
.y132{bottom:416.121900px;}
.y102{bottom:425.230500px;}
.y172{bottom:425.263500px;}
.ya9{bottom:425.635350px;}
.y52{bottom:425.770350px;}
.yd1{bottom:425.770500px;}
.y131{bottom:431.121900px;}
.y8b{bottom:433.135350px;}
.y1e{bottom:437.659200px;}
.y171{bottom:440.263500px;}
.ya8{bottom:443.635350px;}
.y51{bottom:443.770350px;}
.yd0{bottom:443.770500px;}
.y130{bottom:446.121900px;}
.y170{bottom:455.263500px;}
.y1d{bottom:455.659200px;}
.y12f{bottom:461.121900px;}
.ya7{bottom:461.635350px;}
.y101{bottom:461.635500px;}
.y50{bottom:461.770350px;}
.ycf{bottom:461.770500px;}
.y16f{bottom:470.263500px;}
.y1c{bottom:473.659200px;}
.y12e{bottom:476.121900px;}
.ya6{bottom:479.635350px;}
.y100{bottom:479.635500px;}
.y4f{bottom:479.770350px;}
.yce{bottom:479.770500px;}
.y73{bottom:479.920350px;}
.y16e{bottom:485.263500px;}
.y1b1{bottom:488.914350px;}
.y12d{bottom:491.121900px;}
.y1b{bottom:491.659200px;}
.ya5{bottom:497.635350px;}
.yff{bottom:497.635500px;}
.y4e{bottom:497.770350px;}
.ycd{bottom:497.770500px;}
.y72{bottom:497.920350px;}
.y16d{bottom:500.263500px;}
.y12c{bottom:506.121900px;}
.y1b0{bottom:506.914350px;}
.y1a{bottom:509.659200px;}
.y16c{bottom:515.263500px;}
.y67{bottom:515.365350px;}
.ya4{bottom:515.635350px;}
.yfe{bottom:515.635500px;}
.y4d{bottom:515.770350px;}
.ycc{bottom:515.770500px;}
.y71{bottom:515.920350px;}
.y12b{bottom:521.121900px;}
.y1af{bottom:524.914350px;}
.y19{bottom:527.659200px;}
.y16b{bottom:530.263500px;}
.ya3{bottom:533.635350px;}
.yfd{bottom:533.635500px;}
.y4c{bottom:533.770350px;}
.ycb{bottom:533.770500px;}
.y70{bottom:533.920350px;}
.y12a{bottom:536.121900px;}
.y1ab{bottom:545.263500px;}
.y16a{bottom:545.265900px;}
.y18{bottom:545.659200px;}
.y129{bottom:551.121900px;}
.y66{bottom:551.230350px;}
.ya2{bottom:551.635350px;}
.yfc{bottom:551.635500px;}
.y4b{bottom:551.770350px;}
.yca{bottom:551.770500px;}
.y6f{bottom:551.920350px;}
.y1aa{bottom:560.263500px;}
.y169{bottom:560.265900px;}
.y1ae{bottom:560.914350px;}
.y17{bottom:563.659200px;}
.y128{bottom:566.121900px;}
.ya1{bottom:569.635350px;}
.yfb{bottom:569.635500px;}
.y4a{bottom:569.770350px;}
.yc9{bottom:569.770500px;}
.y6e{bottom:569.920350px;}
.y1a9{bottom:575.263500px;}
.y168{bottom:575.265900px;}
.y1ad{bottom:578.914350px;}
.y127{bottom:581.121900px;}
.y16{bottom:581.659200px;}
.y87{bottom:587.515350px;}
.ya0{bottom:587.635350px;}
.yfa{bottom:587.635500px;}
.y49{bottom:587.770350px;}
.yc8{bottom:587.770500px;}
.y6d{bottom:587.920350px;}
.y1a8{bottom:590.263500px;}
.y167{bottom:590.265900px;}
.y126{bottom:596.121900px;}
.y15{bottom:599.659200px;}
.y1a7{bottom:605.263500px;}
.y166{bottom:605.265900px;}
.yf9{bottom:605.635500px;}
.y48{bottom:605.770350px;}
.yc7{bottom:605.770500px;}
.y6c{bottom:605.920350px;}
.y125{bottom:611.121900px;}
.y1ac{bottom:614.509350px;}
.y14{bottom:617.659200px;}
.y1a6{bottom:620.263500px;}
.y165{bottom:620.265900px;}
.y9f{bottom:623.230350px;}
.yf8{bottom:623.635500px;}
.y47{bottom:623.770350px;}
.yc6{bottom:623.770500px;}
.y6b{bottom:623.920350px;}
.y124{bottom:626.121900px;}
.y1a5{bottom:635.263500px;}
.y164{bottom:635.265900px;}
.y13{bottom:635.659200px;}
.y123{bottom:641.121900px;}
.yf7{bottom:641.635500px;}
.y46{bottom:641.770350px;}
.yc5{bottom:641.770500px;}
.y6a{bottom:641.920350px;}
.y1a4{bottom:650.263500px;}
.y163{bottom:650.265900px;}
.y12{bottom:653.659200px;}
.y122{bottom:656.121900px;}
.yf6{bottom:659.635500px;}
.y45{bottom:659.770350px;}
.yc4{bottom:659.770500px;}
.y1a3{bottom:665.263500px;}
.y162{bottom:665.265900px;}
.y121{bottom:671.121900px;}
.y11{bottom:671.659200px;}
.y69{bottom:677.515350px;}
.yf5{bottom:677.635500px;}
.y44{bottom:677.770350px;}
.yc3{bottom:677.770500px;}
.y1a2{bottom:680.263500px;}
.y161{bottom:680.265900px;}
.y120{bottom:686.121900px;}
.y1a1{bottom:695.263500px;}
.y160{bottom:695.265900px;}
.yf4{bottom:695.635500px;}
.y43{bottom:695.770350px;}
.yc2{bottom:695.770500px;}
.y11f{bottom:701.121900px;}
.y1a0{bottom:710.263500px;}
.y15f{bottom:710.265900px;}
.yf3{bottom:713.635500px;}
.y42{bottom:713.770350px;}
.yc1{bottom:713.770500px;}
.y86{bottom:713.785350px;}
.y11e{bottom:716.121900px;}
.y10{bottom:716.817300px;}
.y19f{bottom:725.263500px;}
.y15e{bottom:725.265900px;}
.yf{bottom:729.268050px;}
.y11d{bottom:731.121900px;}
.yf2{bottom:731.635500px;}
.y41{bottom:731.770350px;}
.yc0{bottom:731.770500px;}
.y85{bottom:731.785350px;}
.y19e{bottom:740.263500px;}
.y15d{bottom:740.265900px;}
.ye{bottom:745.671000px;}
.y11c{bottom:746.121900px;}
.yf1{bottom:749.635500px;}
.y40{bottom:749.770350px;}
.ybf{bottom:749.770500px;}
.y84{bottom:749.785350px;}
.y19d{bottom:755.263500px;}
.y15c{bottom:755.265900px;}
.y11b{bottom:761.121900px;}
.yf0{bottom:767.635500px;}
.y3f{bottom:767.770350px;}
.ybe{bottom:767.770500px;}
.y83{bottom:767.785350px;}
.y19c{bottom:770.263500px;}
.y15b{bottom:770.265900px;}
.y11a{bottom:776.121900px;}
.yd{bottom:778.108950px;}
.y19b{bottom:785.263500px;}
.y15a{bottom:785.265900px;}
.yef{bottom:785.635500px;}
.y3e{bottom:785.770350px;}
.ybd{bottom:785.770500px;}
.y82{bottom:785.785350px;}
.y119{bottom:791.121900px;}
.yc{bottom:791.608950px;}
.yb{bottom:799.683600px;}
.y19a{bottom:800.263500px;}
.y159{bottom:800.265900px;}
.yee{bottom:803.635500px;}
.y3d{bottom:803.770350px;}
.ybc{bottom:803.770500px;}
.y81{bottom:803.785350px;}
.y118{bottom:806.121900px;}
.ya{bottom:813.183600px;}
.y199{bottom:815.263500px;}
.y158{bottom:815.265900px;}
.yed{bottom:821.635500px;}
.y3c{bottom:821.770350px;}
.ybb{bottom:821.770500px;}
.y80{bottom:821.785350px;}
.y198{bottom:830.263500px;}
.y157{bottom:830.265900px;}
.y9{bottom:832.108950px;}
.y117{bottom:839.230350px;}
.yec{bottom:839.635500px;}
.y3b{bottom:839.770350px;}
.yba{bottom:839.770500px;}
.y7f{bottom:839.785350px;}
.y8{bottom:840.183600px;}
.y197{bottom:845.263500px;}
.y156{bottom:845.265900px;}
.yeb{bottom:857.635500px;}
.y3a{bottom:857.770350px;}
.yb9{bottom:857.770500px;}
.y7e{bottom:857.785350px;}
.y7{bottom:859.108950px;}
.y196{bottom:860.263500px;}
.y155{bottom:860.265900px;}
.y195{bottom:875.263500px;}
.y154{bottom:875.265900px;}
.yea{bottom:875.635500px;}
.y39{bottom:875.770350px;}
.yb8{bottom:875.770500px;}
.y7d{bottom:875.785350px;}
.y6{bottom:887.830950px;}
.y194{bottom:890.263500px;}
.y153{bottom:890.265900px;}
.ye9{bottom:893.635500px;}
.y38{bottom:893.770350px;}
.yb7{bottom:893.770500px;}
.y7c{bottom:893.785350px;}
.y193{bottom:905.263500px;}
.y152{bottom:905.265900px;}
.y116{bottom:911.365350px;}
.ye8{bottom:911.635500px;}
.y37{bottom:911.770350px;}
.yb6{bottom:911.770500px;}
.y7b{bottom:911.785350px;}
.y192{bottom:920.263500px;}
.y151{bottom:920.265900px;}
.ye7{bottom:929.635500px;}
.y36{bottom:929.770350px;}
.yb5{bottom:929.770500px;}
.y7a{bottom:929.785350px;}
.y5{bottom:934.004400px;}
.y191{bottom:935.263500px;}
.y150{bottom:935.265900px;}
.y115{bottom:947.365350px;}
.ye6{bottom:947.635500px;}
.y35{bottom:947.770350px;}
.yb4{bottom:947.770500px;}
.y79{bottom:947.785350px;}
.y190{bottom:950.263500px;}
.y14f{bottom:950.265900px;}
.y18f{bottom:965.263500px;}
.y14e{bottom:965.265900px;}
.y34{bottom:965.770350px;}
.yb3{bottom:965.770500px;}
.y78{bottom:965.785350px;}
.y4{bottom:970.465200px;}
.y18e{bottom:980.263500px;}
.y14d{bottom:980.265900px;}
.ye5{bottom:983.230500px;}
.y33{bottom:983.770350px;}
.yb2{bottom:983.770500px;}
.y77{bottom:983.785350px;}
.y18d{bottom:995.263500px;}
.y14c{bottom:995.265900px;}
.y114{bottom:1001.365350px;}
.y32{bottom:1001.770350px;}
.yb1{bottom:1001.770500px;}
.y76{bottom:1001.785350px;}
.y3{bottom:1006.926000px;}
.y18c{bottom:1010.263500px;}
.y14b{bottom:1010.265900px;}
.y31{bottom:1019.770350px;}
.yb0{bottom:1019.770500px;}
.y75{bottom:1019.785350px;}
.y18b{bottom:1025.263500px;}
.y14a{bottom:1025.265900px;}
.y8a{bottom:1037.365350px;}
.y30{bottom:1037.770350px;}
.yaf{bottom:1037.770500px;}
.y74{bottom:1037.785350px;}
.y18a{bottom:1040.263500px;}
.y149{bottom:1040.265900px;}
.y2{bottom:1069.300350px;}
.y89{bottom:1132.412700px;}
.y68{bottom:1132.418700px;}
.yae{bottom:1132.421700px;}
.y189{bottom:1132.423500px;}
.y9e{bottom:1132.461300px;}
.y2e{bottom:1136.092500px;}
.y2d{bottom:1150.492500px;}
.h8{height:16.553158px;}
.h6{height:19.125417px;}
.h9{height:28.393066px;}
.h2{height:30.577148px;}
.he{height:32.761230px;}
.hd{height:32.783203px;}
.h7{height:32.805176px;}
.h12{height:33.351562px;}
.h10{height:34.945312px;}
.h13{height:34.968750px;}
.hf{height:34.992188px;}
.hc{height:41.689453px;}
.hb{height:43.681641px;}
.ha{height:43.710938px;}
.h11{height:52.507951px;}
.h3{height:56.786133px;}
.h5{height:57.121316px;}
.h4{height:92.168262px;}
.h1{height:1190.250000px;}
.h0{height:1190.551500px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xa{left:76.535400px;}
.x1c{left:78.672300px;}
.x8{left:96.094500px;}
.x1{left:97.795200px;}
.x22{left:102.047250px;}
.x4{left:106.299150px;}
.xb{left:110.551200px;}
.x20{left:123.307200px;}
.x3{left:125.433900px;}
.x6{left:131.811000px;}
.x5{left:212.876400px;}
.x1f{left:215.545350px;}
.x1d{left:220.120350px;}
.x16{left:292.956300px;}
.x15{left:339.252300px;}
.x9{left:455.041500px;}
.xc{left:457.081200px;}
.x17{left:462.168300px;}
.x11{left:478.349250px;}
.x7{left:480.471000px;}
.x23{left:482.603250px;}
.xe{left:491.101200px;}
.x21{left:503.875200px;}
.x12{left:512.369250px;}
.xd{left:525.271200px;}
.x19{left:560.796300px;}
.x18{left:564.972300px;}
.x1e{left:570.680400px;}
.x14{left:591.650400px;}
.x10{left:663.492300px;}
.x1b{left:688.356300px;}
.x2{left:693.365400px;}
.x1a{left:707.532300px;}
.xf{left:735.065400px;}
.x13{left:756.319350px;}
@media print{
.v2{vertical-align:-19.290133pt;}
.v3{vertical-align:-16.721600pt;}
.v4{vertical-align:-10.397333pt;}
.v0{vertical-align:0.000000pt;}
.v6{vertical-align:1.440000pt;}
.v5{vertical-align:25.069333pt;}
.v1{vertical-align:27.005867pt;}
.ls7a{letter-spacing:-2.346667pt;}
.ls12{letter-spacing:-0.693333pt;}
.ls35{letter-spacing:-0.480000pt;}
.ls34{letter-spacing:-0.266667pt;}
.ls36{letter-spacing:-0.213333pt;}
.ls7c{letter-spacing:-0.170667pt;}
.ls3d{letter-spacing:-0.160000pt;}
.ls48{letter-spacing:-0.106667pt;}
.ls13{letter-spacing:-0.080000pt;}
.ls3e{letter-spacing:-0.053333pt;}
.ls7b{letter-spacing:-0.042667pt;}
.ls11{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.003403pt;}
.ls2{letter-spacing:0.003680pt;}
.ls0{letter-spacing:0.004512pt;}
.ls1{letter-spacing:0.005045pt;}
.ls38{letter-spacing:0.009067pt;}
.ls78{letter-spacing:0.042667pt;}
.lsa{letter-spacing:0.053333pt;}
.ls75{letter-spacing:0.085333pt;}
.lse{letter-spacing:0.106667pt;}
.ls6a{letter-spacing:0.128000pt;}
.ls22{letter-spacing:0.160000pt;}
.ls63{letter-spacing:0.170667pt;}
.ls2d{letter-spacing:0.213333pt;}
.ls56{letter-spacing:0.256000pt;}
.ls19{letter-spacing:0.266667pt;}
.ls65{letter-spacing:0.298667pt;}
.ls37{letter-spacing:0.320000pt;}
.lsd{letter-spacing:0.373333pt;}
.ls57{letter-spacing:0.384000pt;}
.ls7{letter-spacing:0.426667pt;}
.ls64{letter-spacing:0.469333pt;}
.ls25{letter-spacing:0.480000pt;}
.ls62{letter-spacing:0.512000pt;}
.ls26{letter-spacing:0.533333pt;}
.ls2b{letter-spacing:0.586667pt;}
.ls59{letter-spacing:0.597333pt;}
.ls1f{letter-spacing:0.640000pt;}
.ls5b{letter-spacing:0.682667pt;}
.ls27{letter-spacing:0.693333pt;}
.ls5f{letter-spacing:0.725333pt;}
.ls20{letter-spacing:0.746667pt;}
.ls58{letter-spacing:0.768000pt;}
.ls30{letter-spacing:0.800000pt;}
.ls68{letter-spacing:0.810667pt;}
.ls10{letter-spacing:0.853333pt;}
.ls53{letter-spacing:0.896000pt;}
.lsc{letter-spacing:0.906667pt;}
.ls54{letter-spacing:0.938667pt;}
.lsf{letter-spacing:0.960000pt;}
.ls1d{letter-spacing:1.013333pt;}
.ls3a{letter-spacing:1.043733pt;}
.ls16{letter-spacing:1.066667pt;}
.ls60{letter-spacing:1.109333pt;}
.ls31{letter-spacing:1.120000pt;}
.ls5d{letter-spacing:1.152000pt;}
.ls1e{letter-spacing:1.173333pt;}
.ls69{letter-spacing:1.194667pt;}
.ls6{letter-spacing:1.226667pt;}
.ls5c{letter-spacing:1.237333pt;}
.ls42{letter-spacing:1.280000pt;}
.ls5a{letter-spacing:1.322667pt;}
.ls24{letter-spacing:1.333333pt;}
.ls6f{letter-spacing:1.365333pt;}
.ls47{letter-spacing:1.386667pt;}
.ls79{letter-spacing:1.408000pt;}
.ls1b{letter-spacing:1.440000pt;}
.ls4{letter-spacing:1.493333pt;}
.ls73{letter-spacing:1.536000pt;}
.ls21{letter-spacing:1.546667pt;}
.ls74{letter-spacing:1.578667pt;}
.ls18{letter-spacing:1.600000pt;}
.ls70{letter-spacing:1.621333pt;}
.ls45{letter-spacing:1.653333pt;}
.ls76{letter-spacing:1.664000pt;}
.ls17{letter-spacing:1.706667pt;}
.ls1a{letter-spacing:1.760000pt;}
.ls5e{letter-spacing:1.792000pt;}
.ls33{letter-spacing:1.813333pt;}
.ls67{letter-spacing:1.834667pt;}
.ls23{letter-spacing:1.866667pt;}
.ls55{letter-spacing:1.877333pt;}
.ls8{letter-spacing:1.920000pt;}
.ls5{letter-spacing:1.973333pt;}
.ls6e{letter-spacing:2.005333pt;}
.ls3f{letter-spacing:2.026667pt;}
.ls2e{letter-spacing:2.080000pt;}
.ls71{letter-spacing:2.133333pt;}
.ls46{letter-spacing:2.186667pt;}
.ls2f{letter-spacing:2.240000pt;}
.ls39{letter-spacing:2.293333pt;}
.ls61{letter-spacing:2.304000pt;}
.ls3c{letter-spacing:2.346667pt;}
.ls2c{letter-spacing:2.400000pt;}
.lsb{letter-spacing:2.506667pt;}
.ls72{letter-spacing:2.645333pt;}
.ls50{letter-spacing:2.666667pt;}
.ls28{letter-spacing:2.720000pt;}
.ls2a{letter-spacing:2.773333pt;}
.ls77{letter-spacing:2.816000pt;}
.ls1c{letter-spacing:2.826667pt;}
.ls66{letter-spacing:2.858667pt;}
.ls40{letter-spacing:2.986667pt;}
.ls15{letter-spacing:3.040000pt;}
.ls44{letter-spacing:3.093333pt;}
.ls32{letter-spacing:3.146667pt;}
.ls6d{letter-spacing:3.157333pt;}
.ls29{letter-spacing:3.306667pt;}
.ls4d{letter-spacing:3.360000pt;}
.ls41{letter-spacing:3.413333pt;}
.ls43{letter-spacing:3.466667pt;}
.ls49{letter-spacing:3.520000pt;}
.ls9{letter-spacing:3.733333pt;}
.ls6b{letter-spacing:3.840000pt;}
.ls6c{letter-spacing:3.882667pt;}
.ls4c{letter-spacing:3.893333pt;}
.ls4b{letter-spacing:3.946667pt;}
.ls4a{letter-spacing:4.160000pt;}
.ls3b{letter-spacing:4.533333pt;}
.ls52{letter-spacing:4.906667pt;}
.ls14{letter-spacing:5.013333pt;}
.ls4f{letter-spacing:5.386667pt;}
.ls51{letter-spacing:5.440000pt;}
.ls4e{letter-spacing:5.973333pt;}
.ws32{word-spacing:-16.426667pt;}
.ws4b{word-spacing:-16.373333pt;}
.ws4a{word-spacing:-15.573333pt;}
.ws21{word-spacing:-14.880000pt;}
.ws31{word-spacing:-14.826667pt;}
.ws5d{word-spacing:-14.549333pt;}
.wsc{word-spacing:-14.506667pt;}
.ws30{word-spacing:-14.453333pt;}
.ws49{word-spacing:-14.346667pt;}
.ws3e{word-spacing:-14.133333pt;}
.wse{word-spacing:-13.813333pt;}
.wsd{word-spacing:-13.706667pt;}
.wsf{word-spacing:-13.546667pt;}
.ws33{word-spacing:-13.333333pt;}
.ws75{word-spacing:-13.312000pt;}
.ws5e{word-spacing:-12.672000pt;}
.ws5b{word-spacing:-12.501333pt;}
.ws79{word-spacing:-12.330667pt;}
.ws78{word-spacing:-12.160000pt;}
.ws5f{word-spacing:-12.032000pt;}
.ws4{word-spacing:-11.861333pt;}
.ws5c{word-spacing:-11.733333pt;}
.ws57{word-spacing:-11.434667pt;}
.ws58{word-spacing:-11.306667pt;}
.ws3{word-spacing:-11.120000pt;}
.ws76{word-spacing:-10.880000pt;}
.ws59{word-spacing:-10.837333pt;}
.ws5a{word-spacing:-10.666667pt;}
.ws0{word-spacing:-9.076144pt;}
.ws77{word-spacing:-8.320000pt;}
.ws22{word-spacing:-7.773333pt;}
.ws2{word-spacing:-6.482960pt;}
.ws71{word-spacing:-3.882667pt;}
.ws39{word-spacing:-3.520000pt;}
.ws3b{word-spacing:-3.093333pt;}
.ws64{word-spacing:-2.773333pt;}
.ws6{word-spacing:-2.565333pt;}
.ws60{word-spacing:-2.400000pt;}
.ws3d{word-spacing:-2.346667pt;}
.ws65{word-spacing:-1.792000pt;}
.ws45{word-spacing:-1.706667pt;}
.ws7f{word-spacing:-1.664000pt;}
.ws74{word-spacing:-1.365333pt;}
.ws19{word-spacing:-1.333333pt;}
.ws12{word-spacing:-1.173333pt;}
.ws55{word-spacing:-1.066667pt;}
.ws54{word-spacing:-0.960000pt;}
.ws47{word-spacing:-0.906667pt;}
.ws44{word-spacing:-0.640000pt;}
.ws2b{word-spacing:-0.480000pt;}
.ws26{word-spacing:-0.426667pt;}
.ws63{word-spacing:-0.384000pt;}
.ws15{word-spacing:-0.373333pt;}
.ws41{word-spacing:-0.320000pt;}
.ws10{word-spacing:-0.266667pt;}
.ws73{word-spacing:-0.256000pt;}
.ws1c{word-spacing:-0.213333pt;}
.ws66{word-spacing:-0.170667pt;}
.ws42{word-spacing:-0.160000pt;}
.ws6f{word-spacing:-0.128000pt;}
.ws2e{word-spacing:-0.106667pt;}
.ws9{word-spacing:-0.053333pt;}
.ws5{word-spacing:0.000000pt;}
.ws6d{word-spacing:0.085333pt;}
.ws1d{word-spacing:0.106667pt;}
.ws80{word-spacing:0.128000pt;}
.ws2a{word-spacing:0.160000pt;}
.ws7b{word-spacing:0.170667pt;}
.ws3f{word-spacing:0.213333pt;}
.ws4f{word-spacing:0.266667pt;}
.ws7d{word-spacing:0.298667pt;}
.ws69{word-spacing:0.384000pt;}
.ws16{word-spacing:0.480000pt;}
.ws1b{word-spacing:0.533333pt;}
.ws6e{word-spacing:0.554667pt;}
.ws1f{word-spacing:0.586667pt;}
.ws6b{word-spacing:0.640000pt;}
.ws68{word-spacing:0.725333pt;}
.ws70{word-spacing:0.768000pt;}
.ws1e{word-spacing:0.800000pt;}
.ws7c{word-spacing:0.810667pt;}
.ws3a{word-spacing:0.906667pt;}
.ws52{word-spacing:1.013333pt;}
.ws7a{word-spacing:1.024000pt;}
.ws48{word-spacing:1.109333pt;}
.ws4c{word-spacing:1.120000pt;}
.ws43{word-spacing:1.173333pt;}
.ws67{word-spacing:1.194667pt;}
.ws53{word-spacing:1.280000pt;}
.ws6c{word-spacing:1.365333pt;}
.ws24{word-spacing:1.386667pt;}
.ws11{word-spacing:1.493333pt;}
.ws6a{word-spacing:1.578667pt;}
.ws40{word-spacing:1.760000pt;}
.ws56{word-spacing:1.813333pt;}
.ws14{word-spacing:1.920000pt;}
.wsb{word-spacing:1.973333pt;}
.ws4e{word-spacing:2.240000pt;}
.ws36{word-spacing:2.293333pt;}
.ws25{word-spacing:2.400000pt;}
.ws38{word-spacing:2.506667pt;}
.ws3c{word-spacing:2.613333pt;}
.ws23{word-spacing:2.666667pt;}
.ws35{word-spacing:2.720000pt;}
.ws1a{word-spacing:2.880000pt;}
.ws7e{word-spacing:2.944000pt;}
.ws46{word-spacing:2.986667pt;}
.ws37{word-spacing:3.200000pt;}
.ws72{word-spacing:3.242667pt;}
.ws17{word-spacing:3.253333pt;}
.ws50{word-spacing:3.306667pt;}
.ws2d{word-spacing:3.360000pt;}
.ws51{word-spacing:3.413333pt;}
.ws29{word-spacing:3.466667pt;}
.ws62{word-spacing:3.498667pt;}
.ws28{word-spacing:3.520000pt;}
.ws61{word-spacing:3.541333pt;}
.ws13{word-spacing:3.733333pt;}
.ws2c{word-spacing:3.840000pt;}
.ws20{word-spacing:3.893333pt;}
.ws4d{word-spacing:3.946667pt;}
.ws18{word-spacing:4.000000pt;}
.ws27{word-spacing:4.053333pt;}
.wsa{word-spacing:4.213333pt;}
.ws2f{word-spacing:4.266667pt;}
.ws7{word-spacing:4.373333pt;}
.ws8{word-spacing:4.426667pt;}
.ws1{word-spacing:43.840405pt;}
.ws34{word-spacing:809.344000pt;}
._a{margin-left:-2576.128000pt;}
._b{margin-left:-2554.965333pt;}
._4{margin-left:-5.920000pt;}
._1{margin-left:-4.778667pt;}
._2{margin-left:-3.177653pt;}
._0{margin-left:-2.053333pt;}
._3{margin-left:-0.906667pt;}
._5{width:0.906667pt;}
._9{width:1.973333pt;}
._7{width:3.733333pt;}
._6{width:4.693333pt;}
._8{width:5.630987pt;}
._d{width:6.826667pt;}
._c{width:8.053333pt;}
._1b{width:87.040000pt;}
._e{width:88.832000pt;}
._15{width:107.946667pt;}
._11{width:129.706667pt;}
._12{width:132.138667pt;}
._18{width:139.264000pt;}
._f{width:168.533333pt;}
._22{width:181.045333pt;}
._13{width:191.317333pt;}
._1c{width:195.157333pt;}
._23{width:196.400000pt;}
._19{width:198.400000pt;}
._14{width:205.824000pt;}
._10{width:260.778667pt;}
._17{width:359.168000pt;}
._16{width:378.112000pt;}
._1e{width:445.696000pt;}
._1d{width:464.640000pt;}
._21{width:488.362667pt;}
._20{width:495.445333pt;}
._1f{width:498.165333pt;}
._1a{width:499.817653pt;}
.fs7{font-size:20.210667pt;}
.fs5{font-size:23.320000pt;}
.fsb{font-size:31.093333pt;}
.fs4{font-size:32.648000pt;}
.fs8{font-size:34.666667pt;}
.fs0{font-size:37.333333pt;}
.fs6{font-size:40.000000pt;}
.fsa{font-size:42.666667pt;}
.fs9{font-size:53.333333pt;}
.fs3{font-size:56.000000pt;}
.fs1{font-size:69.333333pt;}
.fs2{font-size:112.533333pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:41.124400pt;}
.y2f{bottom:42.468667pt;}
.y9d{bottom:73.778933pt;}
.y113{bottom:74.342667pt;}
.yad{bottom:74.365467pt;}
.y88{bottom:74.386400pt;}
.y65{bottom:74.462533pt;}
.ye4{bottom:74.462667pt;}
.y148{bottom:76.552800pt;}
.y2c{bottom:78.246000pt;}
.y188{bottom:84.678667pt;}
.yac{bottom:88.360133pt;}
.y147{bottom:89.886133pt;}
.y112{bottom:89.982667pt;}
.y64{bottom:90.462533pt;}
.ye3{bottom:90.462667pt;}
.y2b{bottom:91.576000pt;}
.y9c{bottom:96.456267pt;}
.y187{bottom:98.012000pt;}
.yab{bottom:102.354800pt;}
.y146{bottom:103.219467pt;}
.y63{bottom:106.462533pt;}
.ye2{bottom:106.462667pt;}
.y9b{bottom:110.898933pt;}
.y186{bottom:111.345333pt;}
.y145{bottom:116.552800pt;}
.y111{bottom:122.342667pt;}
.y62{bottom:122.462533pt;}
.ye1{bottom:122.462667pt;}
.y185{bottom:124.678667pt;}
.y9a{bottom:125.341600pt;}
.y144{bottom:129.886133pt;}
.y184{bottom:138.012000pt;}
.y110{bottom:138.342667pt;}
.y61{bottom:138.462533pt;}
.ye0{bottom:138.462667pt;}
.y99{bottom:139.784267pt;}
.y143{bottom:143.219467pt;}
.y183{bottom:151.345333pt;}
.y28{bottom:152.289333pt;}
.y98{bottom:154.226933pt;}
.y10f{bottom:154.342667pt;}
.y60{bottom:154.462533pt;}
.ydf{bottom:154.462667pt;}
.y142{bottom:156.552800pt;}
.y182{bottom:164.678667pt;}
.y27{bottom:168.289333pt;}
.y97{bottom:168.669600pt;}
.y141{bottom:169.886133pt;}
.y10e{bottom:170.342667pt;}
.y5f{bottom:170.462533pt;}
.yde{bottom:170.462667pt;}
.y181{bottom:178.012000pt;}
.y96{bottom:183.112267pt;}
.y140{bottom:183.219467pt;}
.y26{bottom:184.289333pt;}
.y10d{bottom:186.342667pt;}
.y5e{bottom:186.462533pt;}
.ydd{bottom:186.462667pt;}
.y180{bottom:191.345333pt;}
.y13f{bottom:196.552800pt;}
.y95{bottom:197.554933pt;}
.y25{bottom:200.289333pt;}
.y10c{bottom:202.342667pt;}
.y5d{bottom:202.462533pt;}
.ydc{bottom:202.462667pt;}
.y17f{bottom:204.678667pt;}
.y13e{bottom:209.886133pt;}
.y94{bottom:211.997600pt;}
.y24{bottom:216.289333pt;}
.y10b{bottom:217.982667pt;}
.y17e{bottom:218.012000pt;}
.y5c{bottom:218.462533pt;}
.ydb{bottom:218.462667pt;}
.y13d{bottom:223.219467pt;}
.y93{bottom:226.440267pt;}
.y17d{bottom:231.345333pt;}
.y23{bottom:232.289333pt;}
.y5b{bottom:234.462533pt;}
.yda{bottom:234.462667pt;}
.y13c{bottom:236.552800pt;}
.y92{bottom:240.882933pt;}
.y17c{bottom:244.678667pt;}
.y22{bottom:248.289333pt;}
.y13b{bottom:249.886133pt;}
.y10a{bottom:250.342667pt;}
.y5a{bottom:250.462533pt;}
.yd9{bottom:250.462667pt;}
.y91{bottom:255.325600pt;}
.y17b{bottom:258.012000pt;}
.y13a{bottom:263.219467pt;}
.y21{bottom:264.289333pt;}
.y109{bottom:266.342667pt;}
.y59{bottom:266.462533pt;}
.yd8{bottom:266.462667pt;}
.y17a{bottom:271.345333pt;}
.y139{bottom:276.552800pt;}
.y2a{bottom:280.289333pt;}
.y90{bottom:281.106933pt;}
.y108{bottom:282.342667pt;}
.y58{bottom:282.462533pt;}
.yd7{bottom:282.462667pt;}
.y179{bottom:284.678667pt;}
.y138{bottom:289.886133pt;}
.y8f{bottom:295.773600pt;}
.y20{bottom:295.931333pt;}
.y29{bottom:296.289333pt;}
.y178{bottom:298.012000pt;}
.y107{bottom:298.342667pt;}
.y57{bottom:298.462533pt;}
.yd6{bottom:298.462667pt;}
.y137{bottom:303.219467pt;}
.y177{bottom:311.345333pt;}
.y106{bottom:314.342667pt;}
.y56{bottom:314.462533pt;}
.yd5{bottom:314.462667pt;}
.y136{bottom:316.552800pt;}
.y8e{bottom:321.554933pt;}
.y176{bottom:324.678667pt;}
.y135{bottom:329.886133pt;}
.y105{bottom:330.342667pt;}
.y55{bottom:330.462533pt;}
.yd4{bottom:330.462667pt;}
.y175{bottom:338.012000pt;}
.y134{bottom:343.219467pt;}
.y104{bottom:346.342667pt;}
.y54{bottom:346.462533pt;}
.yd3{bottom:346.462667pt;}
.y8d{bottom:350.342533pt;}
.y174{bottom:351.345333pt;}
.y133{bottom:356.552800pt;}
.yaa{bottom:362.342533pt;}
.y103{bottom:362.342667pt;}
.y53{bottom:362.462533pt;}
.yd2{bottom:362.462667pt;}
.y173{bottom:364.678667pt;}
.y1f{bottom:364.723733pt;}
.y8c{bottom:367.675867pt;}
.y132{bottom:369.886133pt;}
.y102{bottom:377.982667pt;}
.y172{bottom:378.012000pt;}
.ya9{bottom:378.342533pt;}
.y52{bottom:378.462533pt;}
.yd1{bottom:378.462667pt;}
.y131{bottom:383.219467pt;}
.y8b{bottom:385.009200pt;}
.y1e{bottom:389.030400pt;}
.y171{bottom:391.345333pt;}
.ya8{bottom:394.342533pt;}
.y51{bottom:394.462533pt;}
.yd0{bottom:394.462667pt;}
.y130{bottom:396.552800pt;}
.y170{bottom:404.678667pt;}
.y1d{bottom:405.030400pt;}
.y12f{bottom:409.886133pt;}
.ya7{bottom:410.342533pt;}
.y101{bottom:410.342667pt;}
.y50{bottom:410.462533pt;}
.ycf{bottom:410.462667pt;}
.y16f{bottom:418.012000pt;}
.y1c{bottom:421.030400pt;}
.y12e{bottom:423.219467pt;}
.ya6{bottom:426.342533pt;}
.y100{bottom:426.342667pt;}
.y4f{bottom:426.462533pt;}
.yce{bottom:426.462667pt;}
.y73{bottom:426.595867pt;}
.y16e{bottom:431.345333pt;}
.y1b1{bottom:434.590533pt;}
.y12d{bottom:436.552800pt;}
.y1b{bottom:437.030400pt;}
.ya5{bottom:442.342533pt;}
.yff{bottom:442.342667pt;}
.y4e{bottom:442.462533pt;}
.ycd{bottom:442.462667pt;}
.y72{bottom:442.595867pt;}
.y16d{bottom:444.678667pt;}
.y12c{bottom:449.886133pt;}
.y1b0{bottom:450.590533pt;}
.y1a{bottom:453.030400pt;}
.y16c{bottom:458.012000pt;}
.y67{bottom:458.102533pt;}
.ya4{bottom:458.342533pt;}
.yfe{bottom:458.342667pt;}
.y4d{bottom:458.462533pt;}
.ycc{bottom:458.462667pt;}
.y71{bottom:458.595867pt;}
.y12b{bottom:463.219467pt;}
.y1af{bottom:466.590533pt;}
.y19{bottom:469.030400pt;}
.y16b{bottom:471.345333pt;}
.ya3{bottom:474.342533pt;}
.yfd{bottom:474.342667pt;}
.y4c{bottom:474.462533pt;}
.ycb{bottom:474.462667pt;}
.y70{bottom:474.595867pt;}
.y12a{bottom:476.552800pt;}
.y1ab{bottom:484.678667pt;}
.y16a{bottom:484.680800pt;}
.y18{bottom:485.030400pt;}
.y129{bottom:489.886133pt;}
.y66{bottom:489.982533pt;}
.ya2{bottom:490.342533pt;}
.yfc{bottom:490.342667pt;}
.y4b{bottom:490.462533pt;}
.yca{bottom:490.462667pt;}
.y6f{bottom:490.595867pt;}
.y1aa{bottom:498.012000pt;}
.y169{bottom:498.014133pt;}
.y1ae{bottom:498.590533pt;}
.y17{bottom:501.030400pt;}
.y128{bottom:503.219467pt;}
.ya1{bottom:506.342533pt;}
.yfb{bottom:506.342667pt;}
.y4a{bottom:506.462533pt;}
.yc9{bottom:506.462667pt;}
.y6e{bottom:506.595867pt;}
.y1a9{bottom:511.345333pt;}
.y168{bottom:511.347467pt;}
.y1ad{bottom:514.590533pt;}
.y127{bottom:516.552800pt;}
.y16{bottom:517.030400pt;}
.y87{bottom:522.235867pt;}
.ya0{bottom:522.342533pt;}
.yfa{bottom:522.342667pt;}
.y49{bottom:522.462533pt;}
.yc8{bottom:522.462667pt;}
.y6d{bottom:522.595867pt;}
.y1a8{bottom:524.678667pt;}
.y167{bottom:524.680800pt;}
.y126{bottom:529.886133pt;}
.y15{bottom:533.030400pt;}
.y1a7{bottom:538.012000pt;}
.y166{bottom:538.014133pt;}
.yf9{bottom:538.342667pt;}
.y48{bottom:538.462533pt;}
.yc7{bottom:538.462667pt;}
.y6c{bottom:538.595867pt;}
.y125{bottom:543.219467pt;}
.y1ac{bottom:546.230533pt;}
.y14{bottom:549.030400pt;}
.y1a6{bottom:551.345333pt;}
.y165{bottom:551.347467pt;}
.y9f{bottom:553.982533pt;}
.yf8{bottom:554.342667pt;}
.y47{bottom:554.462533pt;}
.yc6{bottom:554.462667pt;}
.y6b{bottom:554.595867pt;}
.y124{bottom:556.552800pt;}
.y1a5{bottom:564.678667pt;}
.y164{bottom:564.680800pt;}
.y13{bottom:565.030400pt;}
.y123{bottom:569.886133pt;}
.yf7{bottom:570.342667pt;}
.y46{bottom:570.462533pt;}
.yc5{bottom:570.462667pt;}
.y6a{bottom:570.595867pt;}
.y1a4{bottom:578.012000pt;}
.y163{bottom:578.014133pt;}
.y12{bottom:581.030400pt;}
.y122{bottom:583.219467pt;}
.yf6{bottom:586.342667pt;}
.y45{bottom:586.462533pt;}
.yc4{bottom:586.462667pt;}
.y1a3{bottom:591.345333pt;}
.y162{bottom:591.347467pt;}
.y121{bottom:596.552800pt;}
.y11{bottom:597.030400pt;}
.y69{bottom:602.235867pt;}
.yf5{bottom:602.342667pt;}
.y44{bottom:602.462533pt;}
.yc3{bottom:602.462667pt;}
.y1a2{bottom:604.678667pt;}
.y161{bottom:604.680800pt;}
.y120{bottom:609.886133pt;}
.y1a1{bottom:618.012000pt;}
.y160{bottom:618.014133pt;}
.yf4{bottom:618.342667pt;}
.y43{bottom:618.462533pt;}
.yc2{bottom:618.462667pt;}
.y11f{bottom:623.219467pt;}
.y1a0{bottom:631.345333pt;}
.y15f{bottom:631.347467pt;}
.yf3{bottom:634.342667pt;}
.y42{bottom:634.462533pt;}
.yc1{bottom:634.462667pt;}
.y86{bottom:634.475867pt;}
.y11e{bottom:636.552800pt;}
.y10{bottom:637.170933pt;}
.y19f{bottom:644.678667pt;}
.y15e{bottom:644.680800pt;}
.yf{bottom:648.238267pt;}
.y11d{bottom:649.886133pt;}
.yf2{bottom:650.342667pt;}
.y41{bottom:650.462533pt;}
.yc0{bottom:650.462667pt;}
.y85{bottom:650.475867pt;}
.y19e{bottom:658.012000pt;}
.y15d{bottom:658.014133pt;}
.ye{bottom:662.818667pt;}
.y11c{bottom:663.219467pt;}
.yf1{bottom:666.342667pt;}
.y40{bottom:666.462533pt;}
.ybf{bottom:666.462667pt;}
.y84{bottom:666.475867pt;}
.y19d{bottom:671.345333pt;}
.y15c{bottom:671.347467pt;}
.y11b{bottom:676.552800pt;}
.yf0{bottom:682.342667pt;}
.y3f{bottom:682.462533pt;}
.ybe{bottom:682.462667pt;}
.y83{bottom:682.475867pt;}
.y19c{bottom:684.678667pt;}
.y15b{bottom:684.680800pt;}
.y11a{bottom:689.886133pt;}
.yd{bottom:691.652400pt;}
.y19b{bottom:698.012000pt;}
.y15a{bottom:698.014133pt;}
.yef{bottom:698.342667pt;}
.y3e{bottom:698.462533pt;}
.ybd{bottom:698.462667pt;}
.y82{bottom:698.475867pt;}
.y119{bottom:703.219467pt;}
.yc{bottom:703.652400pt;}
.yb{bottom:710.829867pt;}
.y19a{bottom:711.345333pt;}
.y159{bottom:711.347467pt;}
.yee{bottom:714.342667pt;}
.y3d{bottom:714.462533pt;}
.ybc{bottom:714.462667pt;}
.y81{bottom:714.475867pt;}
.y118{bottom:716.552800pt;}
.ya{bottom:722.829867pt;}
.y199{bottom:724.678667pt;}
.y158{bottom:724.680800pt;}
.yed{bottom:730.342667pt;}
.y3c{bottom:730.462533pt;}
.ybb{bottom:730.462667pt;}
.y80{bottom:730.475867pt;}
.y198{bottom:738.012000pt;}
.y157{bottom:738.014133pt;}
.y9{bottom:739.652400pt;}
.y117{bottom:745.982533pt;}
.yec{bottom:746.342667pt;}
.y3b{bottom:746.462533pt;}
.yba{bottom:746.462667pt;}
.y7f{bottom:746.475867pt;}
.y8{bottom:746.829867pt;}
.y197{bottom:751.345333pt;}
.y156{bottom:751.347467pt;}
.yeb{bottom:762.342667pt;}
.y3a{bottom:762.462533pt;}
.yb9{bottom:762.462667pt;}
.y7e{bottom:762.475867pt;}
.y7{bottom:763.652400pt;}
.y196{bottom:764.678667pt;}
.y155{bottom:764.680800pt;}
.y195{bottom:778.012000pt;}
.y154{bottom:778.014133pt;}
.yea{bottom:778.342667pt;}
.y39{bottom:778.462533pt;}
.yb8{bottom:778.462667pt;}
.y7d{bottom:778.475867pt;}
.y6{bottom:789.183067pt;}
.y194{bottom:791.345333pt;}
.y153{bottom:791.347467pt;}
.ye9{bottom:794.342667pt;}
.y38{bottom:794.462533pt;}
.yb7{bottom:794.462667pt;}
.y7c{bottom:794.475867pt;}
.y193{bottom:804.678667pt;}
.y152{bottom:804.680800pt;}
.y116{bottom:810.102533pt;}
.ye8{bottom:810.342667pt;}
.y37{bottom:810.462533pt;}
.yb6{bottom:810.462667pt;}
.y7b{bottom:810.475867pt;}
.y192{bottom:818.012000pt;}
.y151{bottom:818.014133pt;}
.ye7{bottom:826.342667pt;}
.y36{bottom:826.462533pt;}
.yb5{bottom:826.462667pt;}
.y7a{bottom:826.475867pt;}
.y5{bottom:830.226133pt;}
.y191{bottom:831.345333pt;}
.y150{bottom:831.347467pt;}
.y115{bottom:842.102533pt;}
.ye6{bottom:842.342667pt;}
.y35{bottom:842.462533pt;}
.yb4{bottom:842.462667pt;}
.y79{bottom:842.475867pt;}
.y190{bottom:844.678667pt;}
.y14f{bottom:844.680800pt;}
.y18f{bottom:858.012000pt;}
.y14e{bottom:858.014133pt;}
.y34{bottom:858.462533pt;}
.yb3{bottom:858.462667pt;}
.y78{bottom:858.475867pt;}
.y4{bottom:862.635733pt;}
.y18e{bottom:871.345333pt;}
.y14d{bottom:871.347467pt;}
.ye5{bottom:873.982667pt;}
.y33{bottom:874.462533pt;}
.yb2{bottom:874.462667pt;}
.y77{bottom:874.475867pt;}
.y18d{bottom:884.678667pt;}
.y14c{bottom:884.680800pt;}
.y114{bottom:890.102533pt;}
.y32{bottom:890.462533pt;}
.yb1{bottom:890.462667pt;}
.y76{bottom:890.475867pt;}
.y3{bottom:895.045333pt;}
.y18c{bottom:898.012000pt;}
.y14b{bottom:898.014133pt;}
.y31{bottom:906.462533pt;}
.yb0{bottom:906.462667pt;}
.y75{bottom:906.475867pt;}
.y18b{bottom:911.345333pt;}
.y14a{bottom:911.347467pt;}
.y8a{bottom:922.102533pt;}
.y30{bottom:922.462533pt;}
.yaf{bottom:922.462667pt;}
.y74{bottom:922.475867pt;}
.y18a{bottom:924.678667pt;}
.y149{bottom:924.680800pt;}
.y2{bottom:950.489200pt;}
.y89{bottom:1006.589067pt;}
.y68{bottom:1006.594400pt;}
.yae{bottom:1006.597067pt;}
.y189{bottom:1006.598667pt;}
.y9e{bottom:1006.632267pt;}
.y2e{bottom:1009.860000pt;}
.y2d{bottom:1022.660000pt;}
.h8{height:14.713918pt;}
.h6{height:17.000371pt;}
.h9{height:25.238281pt;}
.h2{height:27.179688pt;}
.he{height:29.121094pt;}
.hd{height:29.140625pt;}
.h7{height:29.160156pt;}
.h12{height:29.645833pt;}
.h10{height:31.062500pt;}
.h13{height:31.083333pt;}
.hf{height:31.104167pt;}
.hc{height:37.057292pt;}
.hb{height:38.828125pt;}
.ha{height:38.854167pt;}
.h11{height:46.673734pt;}
.h3{height:50.476562pt;}
.h5{height:50.774503pt;}
.h4{height:81.927344pt;}
.h1{height:1058.000000pt;}
.h0{height:1058.268000pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xa{left:68.031467pt;}
.x1c{left:69.930933pt;}
.x8{left:85.417333pt;}
.x1{left:86.929067pt;}
.x22{left:90.708667pt;}
.x4{left:94.488133pt;}
.xb{left:98.267733pt;}
.x20{left:109.606400pt;}
.x3{left:111.496800pt;}
.x6{left:117.165333pt;}
.x5{left:189.223467pt;}
.x1f{left:191.595867pt;}
.x1d{left:195.662533pt;}
.x16{left:260.405600pt;}
.x15{left:301.557600pt;}
.x9{left:404.481333pt;}
.xc{left:406.294400pt;}
.x17{left:410.816267pt;}
.x11{left:425.199333pt;}
.x7{left:427.085333pt;}
.x23{left:428.980667pt;}
.xe{left:436.534400pt;}
.x21{left:447.889067pt;}
.x12{left:455.439333pt;}
.xd{left:466.907733pt;}
.x19{left:498.485600pt;}
.x18{left:502.197600pt;}
.x1e{left:507.271467pt;}
.x14{left:525.911467pt;}
.x10{left:589.770933pt;}
.x1b{left:611.872267pt;}
.x2{left:616.324800pt;}
.x1a{left:628.917600pt;}
.xf{left:653.391467pt;}
.x13{left:672.283867pt;}
}




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