
    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_4c2e401395d27fc25ac3b2ef.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.122000;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_2e4060f4e1396b602c2fc357.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.931000;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_5326dc7ee03564db3be4154e.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_85e8a2f0b787fbf0f16346bd.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.938000;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_2e4060f4e1396b602c2fc357.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.931000;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_bafd3e915496eac307a3e678.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.102000;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_9af53889c24d2d5b1be85afc.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.087000;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_6dd46c8992aa0338c6a58e27.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.108000;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_c770d8a44ec17469ec15251e.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.116000;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_fc9051e9bd12da3e94c9588d.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.116000;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_96ebd9a0f9c218169946d1db.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.122000;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_6dd46c8992aa0338c6a58e27.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.108000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_21b990f23d0c3ca677061ee7.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.728000;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:ffe;src:url('chunks/assets/font_5bf0fc28014e22fe72d862c6.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.714000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m2{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);}
.v0{vertical-align:0.000000px;}
.ls20{letter-spacing:-0.900000px;}
.lsc{letter-spacing:-0.480000px;}
.ls21{letter-spacing:-0.420000px;}
.ls18{letter-spacing:-0.300000px;}
.ls3d{letter-spacing:-0.180000px;}
.ls3c{letter-spacing:-0.060000px;}
.lsb{letter-spacing:0.000000px;}
.ls3a{letter-spacing:0.030000px;}
.ls3{letter-spacing:0.048000px;}
.ls26{letter-spacing:0.060000px;}
.ls31{letter-spacing:0.090000px;}
.ls7{letter-spacing:0.096000px;}
.ls17{letter-spacing:0.120000px;}
.ls27{letter-spacing:0.180000px;}
.ls24{letter-spacing:0.210000px;}
.ls6{letter-spacing:0.240000px;}
.ls2d{letter-spacing:0.270000px;}
.ls2e{letter-spacing:0.300000px;}
.ls16{letter-spacing:0.360000px;}
.ls28{letter-spacing:0.390000px;}
.ls13{letter-spacing:0.420000px;}
.lsa{letter-spacing:0.450000px;}
.lsd{letter-spacing:0.480000px;}
.ls2a{letter-spacing:0.510000px;}
.ls1b{letter-spacing:0.540000px;}
.ls1d{letter-spacing:0.600000px;}
.ls25{letter-spacing:0.660000px;}
.ls38{letter-spacing:0.690000px;}
.ls4{letter-spacing:0.720000px;}
.ls5{letter-spacing:0.739200px;}
.ls29{letter-spacing:0.780000px;}
.ls37{letter-spacing:0.840000px;}
.ls30{letter-spacing:0.900000px;}
.ls8{letter-spacing:0.912000px;}
.ls1c{letter-spacing:0.960000px;}
.ls22{letter-spacing:1.020000px;}
.ls9{letter-spacing:1.080000px;}
.ls23{letter-spacing:1.140000px;}
.ls12{letter-spacing:1.170000px;}
.ls1f{letter-spacing:1.200000px;}
.ls32{letter-spacing:1.260000px;}
.ls11{letter-spacing:1.380000px;}
.ls15{letter-spacing:1.440000px;}
.ls3b{letter-spacing:1.500000px;}
.ls1a{letter-spacing:1.560000px;}
.ls36{letter-spacing:1.644000px;}
.ls2{letter-spacing:1.680000px;}
.ls14{letter-spacing:1.740000px;}
.lsf{letter-spacing:1.800000px;}
.ls33{letter-spacing:1.860000px;}
.ls39{letter-spacing:1.920000px;}
.ls1e{letter-spacing:1.980000px;}
.ls34{letter-spacing:2.130000px;}
.ls2f{letter-spacing:2.160000px;}
.ls10{letter-spacing:2.220000px;}
.ls2c{letter-spacing:2.310000px;}
.ls35{letter-spacing:2.340000px;}
.ls2b{letter-spacing:2.700000px;}
.ls1{letter-spacing:12.510000px;}
.ls19{letter-spacing:1928.352000px;}
.lse{letter-spacing:2033.050800px;}
.ls0{letter-spacing:2765.404800px;}
.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;}
}
.ws0{word-spacing:-30.024000px;}
.ws1{word-spacing:-22.518000px;}
.ws14{word-spacing:-18.348000px;}
.ws2{word-spacing:-17.160000px;}
.ws4e{word-spacing:-16.680000px;}
.ws43{word-spacing:-15.012000px;}
.ws27{word-spacing:-14.178000px;}
.ws92{word-spacing:-1.860000px;}
.ws66{word-spacing:-1.140000px;}
.ws2a{word-spacing:-0.540000px;}
.ws4d{word-spacing:-0.240000px;}
.ws79{word-spacing:-0.180000px;}
.ws86{word-spacing:-0.045000px;}
.ws3{word-spacing:0.000000px;}
.ws16{word-spacing:0.060000px;}
.ws71{word-spacing:0.120000px;}
.ws46{word-spacing:0.180000px;}
.ws2d{word-spacing:0.240000px;}
.ws1b{word-spacing:0.300000px;}
.ws12{word-spacing:0.360000px;}
.ws6c{word-spacing:0.420000px;}
.ws7{word-spacing:0.432000px;}
.wsa{word-spacing:0.480000px;}
.ws78{word-spacing:0.540000px;}
.ws1d{word-spacing:0.600000px;}
.ws5{word-spacing:0.672000px;}
.ws89{word-spacing:0.720000px;}
.ws52{word-spacing:0.780000px;}
.ws23{word-spacing:0.840000px;}
.ws90{word-spacing:0.900000px;}
.ws50{word-spacing:0.960000px;}
.ws45{word-spacing:1.020000px;}
.ws7a{word-spacing:1.080000px;}
.ws2e{word-spacing:1.140000px;}
.ws35{word-spacing:1.200000px;}
.ws4f{word-spacing:1.260000px;}
.ws8b{word-spacing:1.320000px;}
.ws61{word-spacing:1.380000px;}
.ws34{word-spacing:1.440000px;}
.ws31{word-spacing:1.500000px;}
.ws22{word-spacing:1.560000px;}
.ws26{word-spacing:1.620000px;}
.ws54{word-spacing:1.680000px;}
.ws1e{word-spacing:1.740000px;}
.ws8a{word-spacing:1.800000px;}
.ws21{word-spacing:1.920000px;}
.ws24{word-spacing:1.980000px;}
.ws8d{word-spacing:2.040000px;}
.ws8f{word-spacing:2.100000px;}
.ws77{word-spacing:2.160000px;}
.ws58{word-spacing:2.280000px;}
.ws1c{word-spacing:2.340000px;}
.ws8e{word-spacing:2.400000px;}
.ws87{word-spacing:2.460000px;}
.ws67{word-spacing:2.520000px;}
.ws9{word-spacing:2.544000px;}
.ws5f{word-spacing:2.580000px;}
.ws63{word-spacing:2.700000px;}
.ws6{word-spacing:2.772000px;}
.ws7b{word-spacing:2.820000px;}
.ws4b{word-spacing:2.880000px;}
.ws73{word-spacing:3.000000px;}
.ws82{word-spacing:3.060000px;}
.ws59{word-spacing:3.120000px;}
.ws80{word-spacing:3.180000px;}
.wse{word-spacing:3.216000px;}
.ws68{word-spacing:3.240000px;}
.ws20{word-spacing:3.300000px;}
.ws72{word-spacing:3.420000px;}
.ws84{word-spacing:3.480000px;}
.ws18{word-spacing:3.540000px;}
.wsd{word-spacing:3.600000px;}
.ws19{word-spacing:3.720000px;}
.ws29{word-spacing:3.780000px;}
.ws74{word-spacing:3.840000px;}
.ws37{word-spacing:3.900000px;}
.ws85{word-spacing:3.960000px;}
.ws3a{word-spacing:4.020000px;}
.ws42{word-spacing:4.080000px;}
.wsb{word-spacing:4.176000px;}
.ws91{word-spacing:4.260000px;}
.ws3b{word-spacing:4.320000px;}
.ws69{word-spacing:4.380000px;}
.ws2c{word-spacing:4.440000px;}
.ws6f{word-spacing:4.500000px;}
.ws1f{word-spacing:4.620000px;}
.ws5d{word-spacing:4.680000px;}
.ws41{word-spacing:4.740000px;}
.ws81{word-spacing:4.800000px;}
.ws5b{word-spacing:4.860000px;}
.ws57{word-spacing:4.920000px;}
.ws3f{word-spacing:4.980000px;}
.ws17{word-spacing:5.040000px;}
.ws1a{word-spacing:5.100000px;}
.ws5c{word-spacing:5.160000px;}
.ws6a{word-spacing:5.280000px;}
.ws7d{word-spacing:5.340000px;}
.ws60{word-spacing:5.400000px;}
.ws7c{word-spacing:5.460000px;}
.ws51{word-spacing:5.520000px;}
.ws40{word-spacing:5.640000px;}
.ws53{word-spacing:5.700000px;}
.ws3d{word-spacing:5.760000px;}
.ws76{word-spacing:5.820000px;}
.ws4c{word-spacing:5.880000px;}
.ws55{word-spacing:5.940000px;}
.ws28{word-spacing:6.000000px;}
.ws3c{word-spacing:6.060000px;}
.ws4a{word-spacing:6.120000px;}
.ws70{word-spacing:6.180000px;}
.ws2f{word-spacing:6.240000px;}
.ws11{word-spacing:6.300000px;}
.wsc{word-spacing:6.336000px;}
.ws62{word-spacing:6.360000px;}
.ws7f{word-spacing:6.420000px;}
.ws38{word-spacing:6.480000px;}
.ws83{word-spacing:6.540000px;}
.ws5a{word-spacing:6.600000px;}
.ws88{word-spacing:6.660000px;}
.ws8{word-spacing:6.672000px;}
.ws49{word-spacing:6.720000px;}
.ws56{word-spacing:6.780000px;}
.ws6b{word-spacing:6.900000px;}
.ws6d{word-spacing:6.960000px;}
.ws5e{word-spacing:7.080000px;}
.ws75{word-spacing:7.260000px;}
.ws33{word-spacing:7.320000px;}
.ws13{word-spacing:7.380000px;}
.ws64{word-spacing:7.440000px;}
.ws30{word-spacing:7.500000px;}
.ws2b{word-spacing:7.506000px;}
.ws65{word-spacing:7.560000px;}
.ws7e{word-spacing:7.620000px;}
.ws15{word-spacing:7.680000px;}
.ws47{word-spacing:7.740000px;}
.ws8c{word-spacing:7.860000px;}
.ws36{word-spacing:7.920000px;}
.ws32{word-spacing:7.980000px;}
.ws44{word-spacing:8.100000px;}
.ws25{word-spacing:8.160000px;}
.ws6e{word-spacing:8.220000px;}
.ws39{word-spacing:8.280000px;}
.ws10{word-spacing:8.340000px;}
.ws3e{word-spacing:8.400000px;}
.ws48{word-spacing:9.060000px;}
.ws4{word-spacing:10.008000px;}
.wsf{word-spacing:17.316000px;}
._7{margin-left:-23.352000px;}
._4{margin-left:-12.297600px;}
._6{margin-left:-9.324000px;}
._a{margin-left:-2.220000px;}
._8{margin-left:-1.000800px;}
._1{width:1.407000px;}
._3{width:2.763600px;}
._d{width:4.320000px;}
._11{width:5.376000px;}
._9{width:7.728000px;}
._2{width:8.862000px;}
._0{width:11.004000px;}
._5{width:12.348000px;}
._c{width:13.986000px;}
._12{width:15.900000px;}
._b{width:17.316000px;}
._f{width:18.360000px;}
._e{width:22.740000px;}
._10{width:23.880000px;}
.fc1{color:rgb(180,141,14);}
.fc0{color:rgb(0,0,0);}
.fs2{font-size:36.000000px;}
.fs3{font-size:42.000000px;}
.fs4{font-size:45.000000px;}
.fs9{font-size:48.000000px;}
.fsb{font-size:51.000000px;}
.fsd{font-size:54.000000px;}
.fs0{font-size:57.000000px;}
.fs8{font-size:60.000000px;}
.fsc{font-size:63.000000px;}
.fs1{font-size:66.000000px;}
.fsa{font-size:78.000000px;}
.fs6{font-size:81.000000px;}
.fs7{font-size:84.000000px;}
.fs5{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:85.039350px;}
.y145{bottom:138.017850px;}
.y119{bottom:138.217800px;}
.ybc{bottom:138.658350px;}
.y62{bottom:138.693600px;}
.y1bc{bottom:139.665750px;}
.y195{bottom:139.698150px;}
.y7c{bottom:140.199300px;}
.ya{bottom:140.313450px;}
.y16b{bottom:140.826000px;}
.yf2{bottom:140.862900px;}
.yd8{bottom:140.905800px;}
.y9a{bottom:141.032550px;}
.y1d3{bottom:141.069600px;}
.y9{bottom:152.314950px;}
.y144{bottom:159.107850px;}
.y118{bottom:159.337800px;}
.ybb{bottom:159.448350px;}
.y61{bottom:159.483600px;}
.y1bb{bottom:160.455750px;}
.y194{bottom:160.488150px;}
.y7b{bottom:160.989300px;}
.y16a{bottom:161.616000px;}
.yf1{bottom:161.652900px;}
.yd7{bottom:161.695800px;}
.y99{bottom:161.822550px;}
.y1d2{bottom:161.859600px;}
.y8{bottom:170.693850px;}
.y143{bottom:180.197850px;}
.yba{bottom:180.238350px;}
.y60{bottom:180.273600px;}
.y1ba{bottom:181.245750px;}
.y193{bottom:181.278150px;}
.y169{bottom:182.406000px;}
.yd6{bottom:182.485800px;}
.y1d1{bottom:182.649600px;}
.y7{bottom:188.249850px;}
.y117{bottom:190.852800px;}
.y7a{bottom:192.174300px;}
.yf0{bottom:192.837900px;}
.y98{bottom:193.007550px;}
.yb9{bottom:201.028350px;}
.y5f{bottom:201.063600px;}
.y142{bottom:201.287850px;}
.y1b9{bottom:202.035750px;}
.y192{bottom:202.068150px;}
.y168{bottom:203.196000px;}
.yd5{bottom:203.275800px;}
.y6{bottom:205.805850px;}
.y1de{bottom:211.458600px;}
.y116{bottom:211.972800px;}
.y79{bottom:212.964300px;}
.y97{bottom:213.797550px;}
.y1d0{bottom:213.834600px;}
.y5{bottom:216.988350px;}
.yb8{bottom:221.818350px;}
.y5e{bottom:221.853600px;}
.y1b8{bottom:222.825750px;}
.y191{bottom:222.858150px;}
.y167{bottom:223.986000px;}
.yef{bottom:224.022900px;}
.yd4{bottom:224.065800px;}
.y1dd{bottom:232.248600px;}
.y4{bottom:232.423350px;}
.y141{bottom:232.772850px;}
.y78{bottom:233.754300px;}
.y1cf{bottom:234.624600px;}
.yb7{bottom:242.608350px;}
.y5d{bottom:242.643600px;}
.y115{bottom:243.487800px;}
.y3{bottom:243.605850px;}
.y1b7{bottom:243.615750px;}
.y166{bottom:244.776000px;}
.yd3{bottom:244.855800px;}
.y140{bottom:253.862850px;}
.y77{bottom:254.544300px;}
.yee{bottom:255.207900px;}
.y96{bottom:255.377550px;}
.y1ce{bottom:255.414600px;}
.y190{bottom:255.978150px;}
.yb6{bottom:263.398350px;}
.y5c{bottom:263.433600px;}
.y1b6{bottom:264.405750px;}
.y114{bottom:264.607800px;}
.y165{bottom:265.566000px;}
.yd2{bottom:265.645800px;}
.y13f{bottom:274.952850px;}
.y76{bottom:275.334300px;}
.y95{bottom:276.167550px;}
.y1cd{bottom:276.204600px;}
.y18f{bottom:276.768150px;}
.yb5{bottom:284.188350px;}
.y5b{bottom:284.223600px;}
.yed{bottom:286.392900px;}
.y13e{bottom:296.042850px;}
.y75{bottom:296.124300px;}
.y164{bottom:296.751000px;}
.yd1{bottom:296.830800px;}
.y1cc{bottom:296.994600px;}
.y1b5{bottom:297.525750px;}
.y18e{bottom:297.558150px;}
.y35{bottom:299.803350px;}
.yb4{bottom:304.978350px;}
.y5a{bottom:305.013600px;}
.y113{bottom:306.517800px;}
.yec{bottom:307.182900px;}
.y94{bottom:307.352550px;}
.y1dc{bottom:315.408600px;}
.y74{bottom:316.914300px;}
.y13d{bottom:317.132850px;}
.y163{bottom:317.541000px;}
.yd0{bottom:317.620800px;}
.y1cb{bottom:317.784600px;}
.y1b4{bottom:318.315750px;}
.y18d{bottom:318.348150px;}
.y34{bottom:320.593350px;}
.yb3{bottom:325.768350px;}
.y59{bottom:325.803600px;}
.y112{bottom:327.637800px;}
.y93{bottom:328.142550px;}
.y1db{bottom:336.198600px;}
.y73{bottom:337.704300px;}
.y13c{bottom:338.222850px;}
.y162{bottom:338.331000px;}
.yeb{bottom:338.367900px;}
.ycf{bottom:338.410800px;}
.y1ca{bottom:338.574600px;}
.y1b3{bottom:339.105750px;}
.y18c{bottom:339.138150px;}
.y33{bottom:341.383350px;}
.yb2{bottom:346.558350px;}
.y111{bottom:348.887850px;}
.y92{bottom:348.932550px;}
.y58{bottom:356.988600px;}
.y72{bottom:358.494300px;}
.y161{bottom:359.121000px;}
.yea{bottom:359.157900px;}
.yce{bottom:359.200800px;}
.y13b{bottom:359.312850px;}
.y1c9{bottom:359.364600px;}
.y1b2{bottom:359.895750px;}
.y32{bottom:362.173350px;}
.y1da{bottom:367.383600px;}
.y91{bottom:369.722550px;}
.y110{bottom:370.007850px;}
.y18b{bottom:372.258150px;}
.yb1{bottom:377.743350px;}
.y57{bottom:377.778600px;}
.y160{bottom:379.911000px;}
.ycd{bottom:379.990800px;}
.y1c8{bottom:380.154600px;}
.y13a{bottom:380.402850px;}
.y1b1{bottom:380.685750px;}
.y31{bottom:382.963350px;}
.y1d9{bottom:388.173600px;}
.y71{bottom:389.679300px;}
.ye9{bottom:390.342900px;}
.y90{bottom:390.512550px;}
.y10f{bottom:391.127850px;}
.y18a{bottom:393.048150px;}
.yb0{bottom:398.533350px;}
.y56{bottom:398.568600px;}
.y15f{bottom:400.701000px;}
.ycc{bottom:400.780800px;}
.y139{bottom:401.492850px;}
.y30{bottom:403.753350px;}
.y70{bottom:410.469300px;}
.y8f{bottom:411.302550px;}
.y1c7{bottom:411.339600px;}
.y10e{bottom:412.247850px;}
.y189{bottom:413.751000px;}
.y1b0{bottom:413.805750px;}
.yaf{bottom:419.323350px;}
.y55{bottom:419.358600px;}
.y15e{bottom:421.491000px;}
.ye8{bottom:421.527900px;}
.ycb{bottom:421.570800px;}
.y6f{bottom:431.259300px;}
.y1c6{bottom:432.129600px;}
.y138{bottom:432.977850px;}
.y10d{bottom:433.367850px;}
.y188{bottom:434.541000px;}
.y1af{bottom:434.595750px;}
.yae{bottom:440.113350px;}
.y54{bottom:440.148600px;}
.ye7{bottom:442.317900px;}
.y8e{bottom:442.487550px;}
.y2f{bottom:449.816100px;}
.y6e{bottom:452.049300px;}
.yca{bottom:452.672850px;}
.y1c5{bottom:452.919600px;}
.y137{bottom:454.067850px;}
.y10c{bottom:454.487850px;}
.y187{bottom:455.331000px;}
.y1ae{bottom:455.385750px;}
.yad{bottom:460.903350px;}
.y53{bottom:460.938600px;}
.y15d{bottom:463.071000px;}
.y8d{bottom:463.277550px;}
.y6d{bottom:472.839300px;}
.yc9{bottom:473.462850px;}
.ye6{bottom:473.502900px;}
.y1c4{bottom:473.709600px;}
.y136{bottom:475.157850px;}
.y186{bottom:476.121000px;}
.yac{bottom:481.693350px;}
.y52{bottom:481.728600px;}
.y8c{bottom:484.067550px;}
.y10b{bottom:486.002850px;}
.y1ad{bottom:488.505750px;}
.y1d8{bottom:492.123600px;}
.y6c{bottom:493.629300px;}
.yc8{bottom:494.252850px;}
.y15c{bottom:494.256000px;}
.ye5{bottom:494.292900px;}
.y1c3{bottom:494.499600px;}
.y135{bottom:496.247850px;}
.y185{bottom:496.911000px;}
.yab{bottom:502.483350px;}
.y51{bottom:502.518600px;}
.y8b{bottom:504.857550px;}
.y10a{bottom:507.122850px;}
.y1ac{bottom:509.295750px;}
.y1d7{bottom:512.913600px;}
.y6b{bottom:514.419300px;}
.yc7{bottom:515.042850px;}
.y134{bottom:517.337850px;}
.y184{bottom:517.701000px;}
.yaa{bottom:523.273350px;}
.y50{bottom:523.308600px;}
.y15b{bottom:525.441000px;}
.ye4{bottom:525.477900px;}
.y8a{bottom:525.647550px;}
.y109{bottom:528.242850px;}
.y1ab{bottom:530.085750px;}
.y6a{bottom:535.209300px;}
.y133{bottom:538.427850px;}
.y1c2{bottom:540.562350px;}
.ya9{bottom:544.063350px;}
.y4f{bottom:544.098600px;}
.yc6{bottom:546.227850px;}
.ye3{bottom:546.267900px;}
.y89{bottom:546.437550px;}
.y108{bottom:549.362850px;}
.y183{bottom:550.821000px;}
.y1aa{bottom:550.875750px;}
.y69{bottom:555.999300px;}
.y15a{bottom:556.626000px;}
.y132{bottom:559.517850px;}
.y26{bottom:562.327950px;}
.ya8{bottom:564.853350px;}
.y4e{bottom:564.888600px;}
.yc5{bottom:567.017850px;}
.y88{bottom:567.227550px;}
.y107{bottom:570.482850px;}
.y182{bottom:571.611000px;}
.y1a9{bottom:571.665750px;}
.y2e{bottom:576.521850px;}
.y68{bottom:576.789300px;}
.y159{bottom:577.416000px;}
.ye2{bottom:577.452900px;}
.y25{bottom:579.922950px;}
.y131{bottom:580.607850px;}
.ya7{bottom:585.643350px;}
.y4d{bottom:585.678600px;}
.yc4{bottom:587.807850px;}
.y87{bottom:588.017550px;}
.y2d{bottom:590.909850px;}
.y106{bottom:591.602850px;}
.y181{bottom:592.401000px;}
.y1a8{bottom:592.455750px;}
.y24{bottom:597.517950px;}
.y158{bottom:598.206000px;}
.ye1{bottom:598.242900px;}
.y130{bottom:601.697850px;}
.y2c{bottom:605.297850px;}
.ya6{bottom:606.433350px;}
.yc3{bottom:608.597850px;}
.y86{bottom:608.807550px;}
.y105{bottom:612.722850px;}
.y180{bottom:613.191000px;}
.y1a7{bottom:613.245750px;}
.y23{bottom:615.112950px;}
.y2b{bottom:619.685850px;}
.y12f{bottom:622.787850px;}
.y67{bottom:629.233050px;}
.yc2{bottom:629.387850px;}
.y157{bottom:629.391000px;}
.y85{bottom:629.597550px;}
.y4c{bottom:631.741500px;}
.y22{bottom:632.707950px;}
.y104{bottom:633.842850px;}
.y1a6{bottom:634.035750px;}
.y2a{bottom:634.073850px;}
.ya5{bottom:637.618350px;}
.ye0{bottom:639.822900px;}
.y12e{bottom:643.877850px;}
.y66{bottom:645.217050px;}
.y17f{bottom:646.311000px;}
.y29{bottom:648.461850px;}
.y1c1{bottom:650.177850px;}
.y156{bottom:650.181000px;}
.y21{bottom:650.302950px;}
.y84{bottom:650.387550px;}
.y1a5{bottom:654.767850px;}
.ya4{bottom:658.408350px;}
.ydf{bottom:660.612900px;}
.y28{bottom:662.849850px;}
.y103{bottom:665.357850px;}
.y17e{bottom:667.101000px;}
.yc1{bottom:670.967850px;}
.y83{bottom:671.177550px;}
.y20{bottom:675.095850px;}
.y12d{bottom:675.362850px;}
.y27{bottom:677.237850px;}
.ya3{bottom:679.198350px;}
.y155{bottom:681.366000px;}
.y102{bottom:686.477850px;}
.y1a4{bottom:687.887850px;}
.y17d{bottom:687.891000px;}
.y1c0{bottom:691.757850px;}
.yde{bottom:691.797900px;}
.y82{bottom:691.967550px;}
.y12c{bottom:696.452850px;}
.ya2{bottom:699.988350px;}
.yc0{bottom:702.152850px;}
.y154{bottom:702.156000px;}
.y101{bottom:707.597850px;}
.y1a3{bottom:708.677850px;}
.y17c{bottom:708.681000px;}
.y4b{bottom:712.547850px;}
.ydd{bottom:712.587900px;}
.y81{bottom:712.757550px;}
.y1f{bottom:715.600950px;}
.y12b{bottom:717.542850px;}
.y17{bottom:719.002050px;}
.ya1{bottom:720.778350px;}
.y1bf{bottom:722.942850px;}
.y153{bottom:722.946000px;}
.y100{bottom:728.717850px;}
.y1a2{bottom:729.467850px;}
.y17b{bottom:729.471000px;}
.y1e{bottom:729.988950px;}
.y4a{bottom:733.337850px;}
.ydc{bottom:733.377900px;}
.y80{bottom:733.547550px;}
.y16{bottom:736.597050px;}
.y12a{bottom:738.632850px;}
.ya0{bottom:741.568350px;}
.y1be{bottom:743.732850px;}
.y1d{bottom:744.376950px;}
.yff{bottom:749.837850px;}
.y1a1{bottom:750.257850px;}
.y17a{bottom:750.261000px;}
.y49{bottom:754.127850px;}
.y152{bottom:754.131000px;}
.ydb{bottom:754.167900px;}
.y15{bottom:754.192050px;}
.y7f{bottom:754.337550px;}
.y1c{bottom:758.764950px;}
.y129{bottom:759.722850px;}
.y9f{bottom:762.358350px;}
.ybf{bottom:764.522850px;}
.y1a0{bottom:771.047850px;}
.y179{bottom:771.051000px;}
.y14{bottom:771.787050px;}
.y1b{bottom:773.152950px;}
.y48{bottom:774.917850px;}
.y151{bottom:774.921000px;}
.yda{bottom:774.957900px;}
.y128{bottom:780.812850px;}
.yfe{bottom:781.352850px;}
.y9e{bottom:783.148350px;}
.y1bd{bottom:785.312850px;}
.y1a{bottom:787.540950px;}
.y13{bottom:789.382050px;}
.y178{bottom:791.841000px;}
.y47{bottom:795.707850px;}
.yd9{bottom:795.747900px;}
.y7e{bottom:800.400300px;}
.y127{bottom:801.902850px;}
.y19{bottom:801.928950px;}
.yfd{bottom:802.472850px;}
.y19f{bottom:804.167850px;}
.ybe{bottom:806.102850px;}
.y150{bottom:806.106000px;}
.y177{bottom:812.631000px;}
.y12{bottom:814.174950px;}
.y18{bottom:816.316950px;}
.y1d6{bottom:816.497850px;}
.y126{bottom:822.992850px;}
.yfc{bottom:823.592850px;}
.y19e{bottom:824.957850px;}
.y46{bottom:826.892850px;}
.y14f{bottom:826.896000px;}
.y1e8{bottom:826.907100px;}
.y9d{bottom:829.211100px;}
.y176{bottom:833.421000px;}
.y1d5{bottom:837.287850px;}
.y125{bottom:844.082850px;}
.yfb{bottom:844.712850px;}
.y19d{bottom:845.747850px;}
.y45{bottom:847.682850px;}
.y1e7{bottom:847.697100px;}
.y175{bottom:854.211000px;}
.y14e{bottom:858.081000px;}
.y124{bottom:865.172850px;}
.y65{bottom:865.299150px;}
.y19c{bottom:866.537850px;}
.y44{bottom:868.472850px;}
.y14d{bottom:878.871000px;}
.y1e6{bottom:878.882100px;}
.y123{bottom:886.262850px;}
.yfa{bottom:886.622850px;}
.y19b{bottom:887.327850px;}
.y174{bottom:887.331000px;}
.y43{bottom:889.262850px;}
.y1e5{bottom:899.672100px;}
.y122{bottom:907.352850px;}
.yf9{bottom:907.742850px;}
.y19a{bottom:908.117850px;}
.y173{bottom:908.121000px;}
.y42{bottom:910.052850px;}
.y14c{bottom:910.056000px;}
.y11{bottom:911.043300px;}
.ybd{bottom:920.447850px;}
.y1e4{bottom:920.462100px;}
.y121{bottom:928.442850px;}
.y199{bottom:928.907850px;}
.y172{bottom:928.911000px;}
.y41{bottom:930.842850px;}
.y10{bottom:931.833300px;}
.yf8{bottom:939.257850px;}
.y120{bottom:949.532850px;}
.y198{bottom:949.697850px;}
.y171{bottom:949.701000px;}
.y40{bottom:951.632850px;}
.y14b{bottom:951.636000px;}
.y1e3{bottom:951.647100px;}
.yf{bottom:952.611150px;}
.y7d{bottom:962.027850px;}
.y197{bottom:970.487850px;}
.y170{bottom:970.491000px;}
.yf7{bottom:970.772850px;}
.y3f{bottom:972.422850px;}
.y14a{bottom:972.426000px;}
.y1e2{bottom:972.437100px;}
.y11f{bottom:981.017850px;}
.y64{bottom:982.817850px;}
.y196{bottom:991.277850px;}
.y16f{bottom:991.281000px;}
.yf6{bottom:991.892850px;}
.y3e{bottom:993.212850px;}
.y149{bottom:993.216000px;}
.ye{bottom:997.005150px;}
.y11e{bottom:1002.107850px;}
.y63{bottom:1003.607850px;}
.y1e1{bottom:1003.615050px;}
.y16e{bottom:1012.071000px;}
.y9c{bottom:1014.002850px;}
.y148{bottom:1014.006000px;}
.yd{bottom:1022.205150px;}
.y11d{bottom:1023.197850px;}
.yf5{bottom:1023.407850px;}
.y3d{bottom:1024.397850px;}
.y16d{bottom:1032.861000px;}
.y9b{bottom:1034.792850px;}
.y147{bottom:1034.796000px;}
.y1e0{bottom:1034.800050px;}
.y11c{bottom:1044.287850px;}
.y3c{bottom:1045.187850px;}
.y16c{bottom:1053.651000px;}
.yf4{bottom:1054.922850px;}
.y1d4{bottom:1055.582850px;}
.y146{bottom:1055.586000px;}
.y11b{bottom:1065.377850px;}
.y3b{bottom:1065.977850px;}
.yc{bottom:1066.590150px;}
.y1df{bottom:1076.372850px;}
.yf3{bottom:1086.437850px;}
.y11a{bottom:1086.467850px;}
.y3a{bottom:1086.767850px;}
.yb{bottom:1098.990000px;}
.y39{bottom:1107.557850px;}
.y2{bottom:1164.901350px;}
.y38{bottom:1172.943900px;}
.y37{bottom:1193.874900px;}
.y36{bottom:1207.374900px;}
.h3{height:26.496000px;}
.h6{height:30.912000px;}
.h4{height:31.206000px;}
.h5{height:33.435000px;}
.hf{height:35.328000px;}
.hd{height:43.584000px;}
.hc{height:44.160000px;}
.h10{height:46.308000px;}
.h12{height:49.032000px;}
.ha{height:54.480000px;}
.h16{height:54.492600px;}
.h1a{height:54.508200px;}
.h19{height:54.508800px;}
.h15{height:54.640200px;}
.h18{height:54.711600px;}
.h14{height:54.811800px;}
.h17{height:54.828600px;}
.h13{height:54.848400px;}
.hb{height:55.200000px;}
.h11{height:57.960000px;}
.h2{height:59.928000px;}
.he{height:71.760000px;}
.h9{height:75.432000px;}
.h8{height:76.272000px;}
.h7{height:99.360000px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:85.039350px;}
.x10{left:86.980500px;}
.xd{left:93.543300px;}
.x15{left:104.179350px;}
.x12{left:108.424350px;}
.x3{left:110.554350px;}
.x14{left:112.684350px;}
.x13{left:114.622350px;}
.x6{left:116.873700px;}
.x16{left:136.069350px;}
.x17{left:138.010500px;}
.x4{left:145.195650px;}
.x5{left:150.820650px;}
.x7{left:217.155900px;}
.x8{left:229.123350px;}
.xe{left:263.622000px;}
.x11{left:304.947750px;}
.x9{left:381.940350px;}
.xb{left:417.311400px;}
.xc{left:550.826400px;}
.xa{left:605.653350px;}
.xf{left:689.581950px;}
.x2{left:752.406450px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls20{letter-spacing:-0.800000pt;}
.lsc{letter-spacing:-0.426667pt;}
.ls21{letter-spacing:-0.373333pt;}
.ls18{letter-spacing:-0.266667pt;}
.ls3d{letter-spacing:-0.160000pt;}
.ls3c{letter-spacing:-0.053333pt;}
.lsb{letter-spacing:0.000000pt;}
.ls3a{letter-spacing:0.026667pt;}
.ls3{letter-spacing:0.042667pt;}
.ls26{letter-spacing:0.053333pt;}
.ls31{letter-spacing:0.080000pt;}
.ls7{letter-spacing:0.085333pt;}
.ls17{letter-spacing:0.106667pt;}
.ls27{letter-spacing:0.160000pt;}
.ls24{letter-spacing:0.186667pt;}
.ls6{letter-spacing:0.213333pt;}
.ls2d{letter-spacing:0.240000pt;}
.ls2e{letter-spacing:0.266667pt;}
.ls16{letter-spacing:0.320000pt;}
.ls28{letter-spacing:0.346667pt;}
.ls13{letter-spacing:0.373333pt;}
.lsa{letter-spacing:0.400000pt;}
.lsd{letter-spacing:0.426667pt;}
.ls2a{letter-spacing:0.453333pt;}
.ls1b{letter-spacing:0.480000pt;}
.ls1d{letter-spacing:0.533333pt;}
.ls25{letter-spacing:0.586667pt;}
.ls38{letter-spacing:0.613333pt;}
.ls4{letter-spacing:0.640000pt;}
.ls5{letter-spacing:0.657067pt;}
.ls29{letter-spacing:0.693333pt;}
.ls37{letter-spacing:0.746667pt;}
.ls30{letter-spacing:0.800000pt;}
.ls8{letter-spacing:0.810667pt;}
.ls1c{letter-spacing:0.853333pt;}
.ls22{letter-spacing:0.906667pt;}
.ls9{letter-spacing:0.960000pt;}
.ls23{letter-spacing:1.013333pt;}
.ls12{letter-spacing:1.040000pt;}
.ls1f{letter-spacing:1.066667pt;}
.ls32{letter-spacing:1.120000pt;}
.ls11{letter-spacing:1.226667pt;}
.ls15{letter-spacing:1.280000pt;}
.ls3b{letter-spacing:1.333333pt;}
.ls1a{letter-spacing:1.386667pt;}
.ls36{letter-spacing:1.461333pt;}
.ls2{letter-spacing:1.493333pt;}
.ls14{letter-spacing:1.546667pt;}
.lsf{letter-spacing:1.600000pt;}
.ls33{letter-spacing:1.653333pt;}
.ls39{letter-spacing:1.706667pt;}
.ls1e{letter-spacing:1.760000pt;}
.ls34{letter-spacing:1.893333pt;}
.ls2f{letter-spacing:1.920000pt;}
.ls10{letter-spacing:1.973333pt;}
.ls2c{letter-spacing:2.053333pt;}
.ls35{letter-spacing:2.080000pt;}
.ls2b{letter-spacing:2.400000pt;}
.ls1{letter-spacing:11.120000pt;}
.ls19{letter-spacing:1714.090667pt;}
.lse{letter-spacing:1807.156267pt;}
.ls0{letter-spacing:2458.137600pt;}
.ws0{word-spacing:-26.688000pt;}
.ws1{word-spacing:-20.016000pt;}
.ws14{word-spacing:-16.309333pt;}
.ws2{word-spacing:-15.253333pt;}
.ws4e{word-spacing:-14.826667pt;}
.ws43{word-spacing:-13.344000pt;}
.ws27{word-spacing:-12.602667pt;}
.ws92{word-spacing:-1.653333pt;}
.ws66{word-spacing:-1.013333pt;}
.ws2a{word-spacing:-0.480000pt;}
.ws4d{word-spacing:-0.213333pt;}
.ws79{word-spacing:-0.160000pt;}
.ws86{word-spacing:-0.040000pt;}
.ws3{word-spacing:0.000000pt;}
.ws16{word-spacing:0.053333pt;}
.ws71{word-spacing:0.106667pt;}
.ws46{word-spacing:0.160000pt;}
.ws2d{word-spacing:0.213333pt;}
.ws1b{word-spacing:0.266667pt;}
.ws12{word-spacing:0.320000pt;}
.ws6c{word-spacing:0.373333pt;}
.ws7{word-spacing:0.384000pt;}
.wsa{word-spacing:0.426667pt;}
.ws78{word-spacing:0.480000pt;}
.ws1d{word-spacing:0.533333pt;}
.ws5{word-spacing:0.597333pt;}
.ws89{word-spacing:0.640000pt;}
.ws52{word-spacing:0.693333pt;}
.ws23{word-spacing:0.746667pt;}
.ws90{word-spacing:0.800000pt;}
.ws50{word-spacing:0.853333pt;}
.ws45{word-spacing:0.906667pt;}
.ws7a{word-spacing:0.960000pt;}
.ws2e{word-spacing:1.013333pt;}
.ws35{word-spacing:1.066667pt;}
.ws4f{word-spacing:1.120000pt;}
.ws8b{word-spacing:1.173333pt;}
.ws61{word-spacing:1.226667pt;}
.ws34{word-spacing:1.280000pt;}
.ws31{word-spacing:1.333333pt;}
.ws22{word-spacing:1.386667pt;}
.ws26{word-spacing:1.440000pt;}
.ws54{word-spacing:1.493333pt;}
.ws1e{word-spacing:1.546667pt;}
.ws8a{word-spacing:1.600000pt;}
.ws21{word-spacing:1.706667pt;}
.ws24{word-spacing:1.760000pt;}
.ws8d{word-spacing:1.813333pt;}
.ws8f{word-spacing:1.866667pt;}
.ws77{word-spacing:1.920000pt;}
.ws58{word-spacing:2.026667pt;}
.ws1c{word-spacing:2.080000pt;}
.ws8e{word-spacing:2.133333pt;}
.ws87{word-spacing:2.186667pt;}
.ws67{word-spacing:2.240000pt;}
.ws9{word-spacing:2.261333pt;}
.ws5f{word-spacing:2.293333pt;}
.ws63{word-spacing:2.400000pt;}
.ws6{word-spacing:2.464000pt;}
.ws7b{word-spacing:2.506667pt;}
.ws4b{word-spacing:2.560000pt;}
.ws73{word-spacing:2.666667pt;}
.ws82{word-spacing:2.720000pt;}
.ws59{word-spacing:2.773333pt;}
.ws80{word-spacing:2.826667pt;}
.wse{word-spacing:2.858667pt;}
.ws68{word-spacing:2.880000pt;}
.ws20{word-spacing:2.933333pt;}
.ws72{word-spacing:3.040000pt;}
.ws84{word-spacing:3.093333pt;}
.ws18{word-spacing:3.146667pt;}
.wsd{word-spacing:3.200000pt;}
.ws19{word-spacing:3.306667pt;}
.ws29{word-spacing:3.360000pt;}
.ws74{word-spacing:3.413333pt;}
.ws37{word-spacing:3.466667pt;}
.ws85{word-spacing:3.520000pt;}
.ws3a{word-spacing:3.573333pt;}
.ws42{word-spacing:3.626667pt;}
.wsb{word-spacing:3.712000pt;}
.ws91{word-spacing:3.786667pt;}
.ws3b{word-spacing:3.840000pt;}
.ws69{word-spacing:3.893333pt;}
.ws2c{word-spacing:3.946667pt;}
.ws6f{word-spacing:4.000000pt;}
.ws1f{word-spacing:4.106667pt;}
.ws5d{word-spacing:4.160000pt;}
.ws41{word-spacing:4.213333pt;}
.ws81{word-spacing:4.266667pt;}
.ws5b{word-spacing:4.320000pt;}
.ws57{word-spacing:4.373333pt;}
.ws3f{word-spacing:4.426667pt;}
.ws17{word-spacing:4.480000pt;}
.ws1a{word-spacing:4.533333pt;}
.ws5c{word-spacing:4.586667pt;}
.ws6a{word-spacing:4.693333pt;}
.ws7d{word-spacing:4.746667pt;}
.ws60{word-spacing:4.800000pt;}
.ws7c{word-spacing:4.853333pt;}
.ws51{word-spacing:4.906667pt;}
.ws40{word-spacing:5.013333pt;}
.ws53{word-spacing:5.066667pt;}
.ws3d{word-spacing:5.120000pt;}
.ws76{word-spacing:5.173333pt;}
.ws4c{word-spacing:5.226667pt;}
.ws55{word-spacing:5.280000pt;}
.ws28{word-spacing:5.333333pt;}
.ws3c{word-spacing:5.386667pt;}
.ws4a{word-spacing:5.440000pt;}
.ws70{word-spacing:5.493333pt;}
.ws2f{word-spacing:5.546667pt;}
.ws11{word-spacing:5.600000pt;}
.wsc{word-spacing:5.632000pt;}
.ws62{word-spacing:5.653333pt;}
.ws7f{word-spacing:5.706667pt;}
.ws38{word-spacing:5.760000pt;}
.ws83{word-spacing:5.813333pt;}
.ws5a{word-spacing:5.866667pt;}
.ws88{word-spacing:5.920000pt;}
.ws8{word-spacing:5.930667pt;}
.ws49{word-spacing:5.973333pt;}
.ws56{word-spacing:6.026667pt;}
.ws6b{word-spacing:6.133333pt;}
.ws6d{word-spacing:6.186667pt;}
.ws5e{word-spacing:6.293333pt;}
.ws75{word-spacing:6.453333pt;}
.ws33{word-spacing:6.506667pt;}
.ws13{word-spacing:6.560000pt;}
.ws64{word-spacing:6.613333pt;}
.ws30{word-spacing:6.666667pt;}
.ws2b{word-spacing:6.672000pt;}
.ws65{word-spacing:6.720000pt;}
.ws7e{word-spacing:6.773333pt;}
.ws15{word-spacing:6.826667pt;}
.ws47{word-spacing:6.880000pt;}
.ws8c{word-spacing:6.986667pt;}
.ws36{word-spacing:7.040000pt;}
.ws32{word-spacing:7.093333pt;}
.ws44{word-spacing:7.200000pt;}
.ws25{word-spacing:7.253333pt;}
.ws6e{word-spacing:7.306667pt;}
.ws39{word-spacing:7.360000pt;}
.ws10{word-spacing:7.413333pt;}
.ws3e{word-spacing:7.466667pt;}
.ws48{word-spacing:8.053333pt;}
.ws4{word-spacing:8.896000pt;}
.wsf{word-spacing:15.392000pt;}
._7{margin-left:-20.757333pt;}
._4{margin-left:-10.931200pt;}
._6{margin-left:-8.288000pt;}
._a{margin-left:-1.973333pt;}
._8{margin-left:-0.889600pt;}
._1{width:1.250667pt;}
._3{width:2.456533pt;}
._d{width:3.840000pt;}
._11{width:4.778667pt;}
._9{width:6.869333pt;}
._2{width:7.877333pt;}
._0{width:9.781333pt;}
._5{width:10.976000pt;}
._c{width:12.432000pt;}
._12{width:14.133333pt;}
._b{width:15.392000pt;}
._f{width:16.320000pt;}
._e{width:20.213333pt;}
._10{width:21.226667pt;}
.fs2{font-size:32.000000pt;}
.fs3{font-size:37.333333pt;}
.fs4{font-size:40.000000pt;}
.fs9{font-size:42.666667pt;}
.fsb{font-size:45.333333pt;}
.fsd{font-size:48.000000pt;}
.fs0{font-size:50.666667pt;}
.fs8{font-size:53.333333pt;}
.fsc{font-size:56.000000pt;}
.fs1{font-size:58.666667pt;}
.fsa{font-size:69.333333pt;}
.fs6{font-size:72.000000pt;}
.fs7{font-size:74.666667pt;}
.fs5{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:75.590533pt;}
.y145{bottom:122.682533pt;}
.y119{bottom:122.860267pt;}
.ybc{bottom:123.251867pt;}
.y62{bottom:123.283200pt;}
.y1bc{bottom:124.147333pt;}
.y195{bottom:124.176133pt;}
.y7c{bottom:124.621600pt;}
.ya{bottom:124.723067pt;}
.y16b{bottom:125.178667pt;}
.yf2{bottom:125.211467pt;}
.yd8{bottom:125.249600pt;}
.y9a{bottom:125.362267pt;}
.y1d3{bottom:125.395200pt;}
.y9{bottom:135.391067pt;}
.y144{bottom:141.429200pt;}
.y118{bottom:141.633600pt;}
.ybb{bottom:141.731867pt;}
.y61{bottom:141.763200pt;}
.y1bb{bottom:142.627333pt;}
.y194{bottom:142.656133pt;}
.y7b{bottom:143.101600pt;}
.y16a{bottom:143.658667pt;}
.yf1{bottom:143.691467pt;}
.yd7{bottom:143.729600pt;}
.y99{bottom:143.842267pt;}
.y1d2{bottom:143.875200pt;}
.y8{bottom:151.727867pt;}
.y143{bottom:160.175867pt;}
.yba{bottom:160.211867pt;}
.y60{bottom:160.243200pt;}
.y1ba{bottom:161.107333pt;}
.y193{bottom:161.136133pt;}
.y169{bottom:162.138667pt;}
.yd6{bottom:162.209600pt;}
.y1d1{bottom:162.355200pt;}
.y7{bottom:167.333200pt;}
.y117{bottom:169.646933pt;}
.y7a{bottom:170.821600pt;}
.yf0{bottom:171.411467pt;}
.y98{bottom:171.562267pt;}
.yb9{bottom:178.691867pt;}
.y5f{bottom:178.723200pt;}
.y142{bottom:178.922533pt;}
.y1b9{bottom:179.587333pt;}
.y192{bottom:179.616133pt;}
.y168{bottom:180.618667pt;}
.yd5{bottom:180.689600pt;}
.y6{bottom:182.938533pt;}
.y1de{bottom:187.963200pt;}
.y116{bottom:188.420267pt;}
.y79{bottom:189.301600pt;}
.y97{bottom:190.042267pt;}
.y1d0{bottom:190.075200pt;}
.y5{bottom:192.878533pt;}
.yb8{bottom:197.171867pt;}
.y5e{bottom:197.203200pt;}
.y1b8{bottom:198.067333pt;}
.y191{bottom:198.096133pt;}
.y167{bottom:199.098667pt;}
.yef{bottom:199.131467pt;}
.yd4{bottom:199.169600pt;}
.y1dd{bottom:206.443200pt;}
.y4{bottom:206.598533pt;}
.y141{bottom:206.909200pt;}
.y78{bottom:207.781600pt;}
.y1cf{bottom:208.555200pt;}
.yb7{bottom:215.651867pt;}
.y5d{bottom:215.683200pt;}
.y115{bottom:216.433600pt;}
.y3{bottom:216.538533pt;}
.y1b7{bottom:216.547333pt;}
.y166{bottom:217.578667pt;}
.yd3{bottom:217.649600pt;}
.y140{bottom:225.655867pt;}
.y77{bottom:226.261600pt;}
.yee{bottom:226.851467pt;}
.y96{bottom:227.002267pt;}
.y1ce{bottom:227.035200pt;}
.y190{bottom:227.536133pt;}
.yb6{bottom:234.131867pt;}
.y5c{bottom:234.163200pt;}
.y1b6{bottom:235.027333pt;}
.y114{bottom:235.206933pt;}
.y165{bottom:236.058667pt;}
.yd2{bottom:236.129600pt;}
.y13f{bottom:244.402533pt;}
.y76{bottom:244.741600pt;}
.y95{bottom:245.482267pt;}
.y1cd{bottom:245.515200pt;}
.y18f{bottom:246.016133pt;}
.yb5{bottom:252.611867pt;}
.y5b{bottom:252.643200pt;}
.yed{bottom:254.571467pt;}
.y13e{bottom:263.149200pt;}
.y75{bottom:263.221600pt;}
.y164{bottom:263.778667pt;}
.yd1{bottom:263.849600pt;}
.y1cc{bottom:263.995200pt;}
.y1b5{bottom:264.467333pt;}
.y18e{bottom:264.496133pt;}
.y35{bottom:266.491867pt;}
.yb4{bottom:271.091867pt;}
.y5a{bottom:271.123200pt;}
.y113{bottom:272.460267pt;}
.yec{bottom:273.051467pt;}
.y94{bottom:273.202267pt;}
.y1dc{bottom:280.363200pt;}
.y74{bottom:281.701600pt;}
.y13d{bottom:281.895867pt;}
.y163{bottom:282.258667pt;}
.yd0{bottom:282.329600pt;}
.y1cb{bottom:282.475200pt;}
.y1b4{bottom:282.947333pt;}
.y18d{bottom:282.976133pt;}
.y34{bottom:284.971867pt;}
.yb3{bottom:289.571867pt;}
.y59{bottom:289.603200pt;}
.y112{bottom:291.233600pt;}
.y93{bottom:291.682267pt;}
.y1db{bottom:298.843200pt;}
.y73{bottom:300.181600pt;}
.y13c{bottom:300.642533pt;}
.y162{bottom:300.738667pt;}
.yeb{bottom:300.771467pt;}
.ycf{bottom:300.809600pt;}
.y1ca{bottom:300.955200pt;}
.y1b3{bottom:301.427333pt;}
.y18c{bottom:301.456133pt;}
.y33{bottom:303.451867pt;}
.yb2{bottom:308.051867pt;}
.y111{bottom:310.122533pt;}
.y92{bottom:310.162267pt;}
.y58{bottom:317.323200pt;}
.y72{bottom:318.661600pt;}
.y161{bottom:319.218667pt;}
.yea{bottom:319.251467pt;}
.yce{bottom:319.289600pt;}
.y13b{bottom:319.389200pt;}
.y1c9{bottom:319.435200pt;}
.y1b2{bottom:319.907333pt;}
.y32{bottom:321.931867pt;}
.y1da{bottom:326.563200pt;}
.y91{bottom:328.642267pt;}
.y110{bottom:328.895867pt;}
.y18b{bottom:330.896133pt;}
.yb1{bottom:335.771867pt;}
.y57{bottom:335.803200pt;}
.y160{bottom:337.698667pt;}
.ycd{bottom:337.769600pt;}
.y1c8{bottom:337.915200pt;}
.y13a{bottom:338.135867pt;}
.y1b1{bottom:338.387333pt;}
.y31{bottom:340.411867pt;}
.y1d9{bottom:345.043200pt;}
.y71{bottom:346.381600pt;}
.ye9{bottom:346.971467pt;}
.y90{bottom:347.122267pt;}
.y10f{bottom:347.669200pt;}
.y18a{bottom:349.376133pt;}
.yb0{bottom:354.251867pt;}
.y56{bottom:354.283200pt;}
.y15f{bottom:356.178667pt;}
.ycc{bottom:356.249600pt;}
.y139{bottom:356.882533pt;}
.y30{bottom:358.891867pt;}
.y70{bottom:364.861600pt;}
.y8f{bottom:365.602267pt;}
.y1c7{bottom:365.635200pt;}
.y10e{bottom:366.442533pt;}
.y189{bottom:367.778667pt;}
.y1b0{bottom:367.827333pt;}
.yaf{bottom:372.731867pt;}
.y55{bottom:372.763200pt;}
.y15e{bottom:374.658667pt;}
.ye8{bottom:374.691467pt;}
.ycb{bottom:374.729600pt;}
.y6f{bottom:383.341600pt;}
.y1c6{bottom:384.115200pt;}
.y138{bottom:384.869200pt;}
.y10d{bottom:385.215867pt;}
.y188{bottom:386.258667pt;}
.y1af{bottom:386.307333pt;}
.yae{bottom:391.211867pt;}
.y54{bottom:391.243200pt;}
.ye7{bottom:393.171467pt;}
.y8e{bottom:393.322267pt;}
.y2f{bottom:399.836533pt;}
.y6e{bottom:401.821600pt;}
.yca{bottom:402.375867pt;}
.y1c5{bottom:402.595200pt;}
.y137{bottom:403.615867pt;}
.y10c{bottom:403.989200pt;}
.y187{bottom:404.738667pt;}
.y1ae{bottom:404.787333pt;}
.yad{bottom:409.691867pt;}
.y53{bottom:409.723200pt;}
.y15d{bottom:411.618667pt;}
.y8d{bottom:411.802267pt;}
.y6d{bottom:420.301600pt;}
.yc9{bottom:420.855867pt;}
.ye6{bottom:420.891467pt;}
.y1c4{bottom:421.075200pt;}
.y136{bottom:422.362533pt;}
.y186{bottom:423.218667pt;}
.yac{bottom:428.171867pt;}
.y52{bottom:428.203200pt;}
.y8c{bottom:430.282267pt;}
.y10b{bottom:432.002533pt;}
.y1ad{bottom:434.227333pt;}
.y1d8{bottom:437.443200pt;}
.y6c{bottom:438.781600pt;}
.yc8{bottom:439.335867pt;}
.y15c{bottom:439.338667pt;}
.ye5{bottom:439.371467pt;}
.y1c3{bottom:439.555200pt;}
.y135{bottom:441.109200pt;}
.y185{bottom:441.698667pt;}
.yab{bottom:446.651867pt;}
.y51{bottom:446.683200pt;}
.y8b{bottom:448.762267pt;}
.y10a{bottom:450.775867pt;}
.y1ac{bottom:452.707333pt;}
.y1d7{bottom:455.923200pt;}
.y6b{bottom:457.261600pt;}
.yc7{bottom:457.815867pt;}
.y134{bottom:459.855867pt;}
.y184{bottom:460.178667pt;}
.yaa{bottom:465.131867pt;}
.y50{bottom:465.163200pt;}
.y15b{bottom:467.058667pt;}
.ye4{bottom:467.091467pt;}
.y8a{bottom:467.242267pt;}
.y109{bottom:469.549200pt;}
.y1ab{bottom:471.187333pt;}
.y6a{bottom:475.741600pt;}
.y133{bottom:478.602533pt;}
.y1c2{bottom:480.499867pt;}
.ya9{bottom:483.611867pt;}
.y4f{bottom:483.643200pt;}
.yc6{bottom:485.535867pt;}
.ye3{bottom:485.571467pt;}
.y89{bottom:485.722267pt;}
.y108{bottom:488.322533pt;}
.y183{bottom:489.618667pt;}
.y1aa{bottom:489.667333pt;}
.y69{bottom:494.221600pt;}
.y15a{bottom:494.778667pt;}
.y132{bottom:497.349200pt;}
.y26{bottom:499.847067pt;}
.ya8{bottom:502.091867pt;}
.y4e{bottom:502.123200pt;}
.yc5{bottom:504.015867pt;}
.y88{bottom:504.202267pt;}
.y107{bottom:507.095867pt;}
.y182{bottom:508.098667pt;}
.y1a9{bottom:508.147333pt;}
.y2e{bottom:512.463867pt;}
.y68{bottom:512.701600pt;}
.y159{bottom:513.258667pt;}
.ye2{bottom:513.291467pt;}
.y25{bottom:515.487067pt;}
.y131{bottom:516.095867pt;}
.ya7{bottom:520.571867pt;}
.y4d{bottom:520.603200pt;}
.yc4{bottom:522.495867pt;}
.y87{bottom:522.682267pt;}
.y2d{bottom:525.253200pt;}
.y106{bottom:525.869200pt;}
.y181{bottom:526.578667pt;}
.y1a8{bottom:526.627333pt;}
.y24{bottom:531.127067pt;}
.y158{bottom:531.738667pt;}
.ye1{bottom:531.771467pt;}
.y130{bottom:534.842533pt;}
.y2c{bottom:538.042533pt;}
.ya6{bottom:539.051867pt;}
.yc3{bottom:540.975867pt;}
.y86{bottom:541.162267pt;}
.y105{bottom:544.642533pt;}
.y180{bottom:545.058667pt;}
.y1a7{bottom:545.107333pt;}
.y23{bottom:546.767067pt;}
.y2b{bottom:550.831867pt;}
.y12f{bottom:553.589200pt;}
.y67{bottom:559.318267pt;}
.yc2{bottom:559.455867pt;}
.y157{bottom:559.458667pt;}
.y85{bottom:559.642267pt;}
.y4c{bottom:561.548000pt;}
.y22{bottom:562.407067pt;}
.y104{bottom:563.415867pt;}
.y1a6{bottom:563.587333pt;}
.y2a{bottom:563.621200pt;}
.ya5{bottom:566.771867pt;}
.ye0{bottom:568.731467pt;}
.y12e{bottom:572.335867pt;}
.y66{bottom:573.526267pt;}
.y17f{bottom:574.498667pt;}
.y29{bottom:576.410533pt;}
.y1c1{bottom:577.935867pt;}
.y156{bottom:577.938667pt;}
.y21{bottom:578.047067pt;}
.y84{bottom:578.122267pt;}
.y1a5{bottom:582.015867pt;}
.ya4{bottom:585.251867pt;}
.ydf{bottom:587.211467pt;}
.y28{bottom:589.199867pt;}
.y103{bottom:591.429200pt;}
.y17e{bottom:592.978667pt;}
.yc1{bottom:596.415867pt;}
.y83{bottom:596.602267pt;}
.y20{bottom:600.085200pt;}
.y12d{bottom:600.322533pt;}
.y27{bottom:601.989200pt;}
.ya3{bottom:603.731867pt;}
.y155{bottom:605.658667pt;}
.y102{bottom:610.202533pt;}
.y1a4{bottom:611.455867pt;}
.y17d{bottom:611.458667pt;}
.y1c0{bottom:614.895867pt;}
.yde{bottom:614.931467pt;}
.y82{bottom:615.082267pt;}
.y12c{bottom:619.069200pt;}
.ya2{bottom:622.211867pt;}
.yc0{bottom:624.135867pt;}
.y154{bottom:624.138667pt;}
.y101{bottom:628.975867pt;}
.y1a3{bottom:629.935867pt;}
.y17c{bottom:629.938667pt;}
.y4b{bottom:633.375867pt;}
.ydd{bottom:633.411467pt;}
.y81{bottom:633.562267pt;}
.y1f{bottom:636.089733pt;}
.y12b{bottom:637.815867pt;}
.y17{bottom:639.112933pt;}
.ya1{bottom:640.691867pt;}
.y1bf{bottom:642.615867pt;}
.y153{bottom:642.618667pt;}
.y100{bottom:647.749200pt;}
.y1a2{bottom:648.415867pt;}
.y17b{bottom:648.418667pt;}
.y1e{bottom:648.879067pt;}
.y4a{bottom:651.855867pt;}
.ydc{bottom:651.891467pt;}
.y80{bottom:652.042267pt;}
.y16{bottom:654.752933pt;}
.y12a{bottom:656.562533pt;}
.ya0{bottom:659.171867pt;}
.y1be{bottom:661.095867pt;}
.y1d{bottom:661.668400pt;}
.yff{bottom:666.522533pt;}
.y1a1{bottom:666.895867pt;}
.y17a{bottom:666.898667pt;}
.y49{bottom:670.335867pt;}
.y152{bottom:670.338667pt;}
.ydb{bottom:670.371467pt;}
.y15{bottom:670.392933pt;}
.y7f{bottom:670.522267pt;}
.y1c{bottom:674.457733pt;}
.y129{bottom:675.309200pt;}
.y9f{bottom:677.651867pt;}
.ybf{bottom:679.575867pt;}
.y1a0{bottom:685.375867pt;}
.y179{bottom:685.378667pt;}
.y14{bottom:686.032933pt;}
.y1b{bottom:687.247067pt;}
.y48{bottom:688.815867pt;}
.y151{bottom:688.818667pt;}
.yda{bottom:688.851467pt;}
.y128{bottom:694.055867pt;}
.yfe{bottom:694.535867pt;}
.y9e{bottom:696.131867pt;}
.y1bd{bottom:698.055867pt;}
.y1a{bottom:700.036400pt;}
.y13{bottom:701.672933pt;}
.y178{bottom:703.858667pt;}
.y47{bottom:707.295867pt;}
.yd9{bottom:707.331467pt;}
.y7e{bottom:711.466933pt;}
.y127{bottom:712.802533pt;}
.y19{bottom:712.825733pt;}
.yfd{bottom:713.309200pt;}
.y19f{bottom:714.815867pt;}
.ybe{bottom:716.535867pt;}
.y150{bottom:716.538667pt;}
.y177{bottom:722.338667pt;}
.y12{bottom:723.711067pt;}
.y18{bottom:725.615067pt;}
.y1d6{bottom:725.775867pt;}
.y126{bottom:731.549200pt;}
.yfc{bottom:732.082533pt;}
.y19e{bottom:733.295867pt;}
.y46{bottom:735.015867pt;}
.y14f{bottom:735.018667pt;}
.y1e8{bottom:735.028533pt;}
.y9d{bottom:737.076533pt;}
.y176{bottom:740.818667pt;}
.y1d5{bottom:744.255867pt;}
.y125{bottom:750.295867pt;}
.yfb{bottom:750.855867pt;}
.y19d{bottom:751.775867pt;}
.y45{bottom:753.495867pt;}
.y1e7{bottom:753.508533pt;}
.y175{bottom:759.298667pt;}
.y14e{bottom:762.738667pt;}
.y124{bottom:769.042533pt;}
.y65{bottom:769.154800pt;}
.y19c{bottom:770.255867pt;}
.y44{bottom:771.975867pt;}
.y14d{bottom:781.218667pt;}
.y1e6{bottom:781.228533pt;}
.y123{bottom:787.789200pt;}
.yfa{bottom:788.109200pt;}
.y19b{bottom:788.735867pt;}
.y174{bottom:788.738667pt;}
.y43{bottom:790.455867pt;}
.y1e5{bottom:799.708533pt;}
.y122{bottom:806.535867pt;}
.yf9{bottom:806.882533pt;}
.y19a{bottom:807.215867pt;}
.y173{bottom:807.218667pt;}
.y42{bottom:808.935867pt;}
.y14c{bottom:808.938667pt;}
.y11{bottom:809.816267pt;}
.ybd{bottom:818.175867pt;}
.y1e4{bottom:818.188533pt;}
.y121{bottom:825.282533pt;}
.y199{bottom:825.695867pt;}
.y172{bottom:825.698667pt;}
.y41{bottom:827.415867pt;}
.y10{bottom:828.296267pt;}
.yf8{bottom:834.895867pt;}
.y120{bottom:844.029200pt;}
.y198{bottom:844.175867pt;}
.y171{bottom:844.178667pt;}
.y40{bottom:845.895867pt;}
.y14b{bottom:845.898667pt;}
.y1e3{bottom:845.908533pt;}
.yf{bottom:846.765467pt;}
.y7d{bottom:855.135867pt;}
.y197{bottom:862.655867pt;}
.y170{bottom:862.658667pt;}
.yf7{bottom:862.909200pt;}
.y3f{bottom:864.375867pt;}
.y14a{bottom:864.378667pt;}
.y1e2{bottom:864.388533pt;}
.y11f{bottom:872.015867pt;}
.y64{bottom:873.615867pt;}
.y196{bottom:881.135867pt;}
.y16f{bottom:881.138667pt;}
.yf6{bottom:881.682533pt;}
.y3e{bottom:882.855867pt;}
.y149{bottom:882.858667pt;}
.ye{bottom:886.226800pt;}
.y11e{bottom:890.762533pt;}
.y63{bottom:892.095867pt;}
.y1e1{bottom:892.102267pt;}
.y16e{bottom:899.618667pt;}
.y9c{bottom:901.335867pt;}
.y148{bottom:901.338667pt;}
.yd{bottom:908.626800pt;}
.y11d{bottom:909.509200pt;}
.yf5{bottom:909.695867pt;}
.y3d{bottom:910.575867pt;}
.y16d{bottom:918.098667pt;}
.y9b{bottom:919.815867pt;}
.y147{bottom:919.818667pt;}
.y1e0{bottom:919.822267pt;}
.y11c{bottom:928.255867pt;}
.y3c{bottom:929.055867pt;}
.y16c{bottom:936.578667pt;}
.yf4{bottom:937.709200pt;}
.y1d4{bottom:938.295867pt;}
.y146{bottom:938.298667pt;}
.y11b{bottom:947.002533pt;}
.y3b{bottom:947.535867pt;}
.yc{bottom:948.080133pt;}
.y1df{bottom:956.775867pt;}
.yf3{bottom:965.722533pt;}
.y11a{bottom:965.749200pt;}
.y3a{bottom:966.015867pt;}
.yb{bottom:976.880000pt;}
.y39{bottom:984.495867pt;}
.y2{bottom:1035.467867pt;}
.y38{bottom:1042.616800pt;}
.y37{bottom:1061.222133pt;}
.y36{bottom:1073.222133pt;}
.h3{height:23.552000pt;}
.h6{height:27.477333pt;}
.h4{height:27.738667pt;}
.h5{height:29.720000pt;}
.hf{height:31.402667pt;}
.hd{height:38.741333pt;}
.hc{height:39.253333pt;}
.h10{height:41.162667pt;}
.h12{height:43.584000pt;}
.ha{height:48.426667pt;}
.h16{height:48.437867pt;}
.h1a{height:48.451733pt;}
.h19{height:48.452267pt;}
.h15{height:48.569067pt;}
.h18{height:48.632533pt;}
.h14{height:48.721600pt;}
.h17{height:48.736533pt;}
.h13{height:48.754133pt;}
.hb{height:49.066667pt;}
.h11{height:51.520000pt;}
.h2{height:53.269333pt;}
.he{height:63.786667pt;}
.h9{height:67.050667pt;}
.h8{height:67.797333pt;}
.h7{height:88.320000pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:75.590533pt;}
.x10{left:77.316000pt;}
.xd{left:83.149600pt;}
.x15{left:92.603867pt;}
.x12{left:96.377200pt;}
.x3{left:98.270533pt;}
.x14{left:100.163867pt;}
.x13{left:101.886533pt;}
.x6{left:103.887733pt;}
.x16{left:120.950533pt;}
.x17{left:122.676000pt;}
.x4{left:129.062800pt;}
.x5{left:134.062800pt;}
.x7{left:193.027467pt;}
.x8{left:203.665200pt;}
.xe{left:234.330667pt;}
.x11{left:271.064667pt;}
.x9{left:339.502533pt;}
.xb{left:370.943467pt;}
.xc{left:489.623467pt;}
.xa{left:538.358533pt;}
.xf{left:612.961733pt;}
.x2{left:668.805733pt;}
}




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