
    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_680c10b89f8967f805d5092e.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_eea7a6b5590636a02122f9c2.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_bacc095dbd6042f46136a606.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.728027;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_27cc0ee43473af05681aefda.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_ea5cd5d51c545c5e5aa54609.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_954b88be144e77816ad15964.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_fcdd0e9b60daf6a7d140cd58.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_7cf5df10269b54a07785e8c4.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_a22322325c599df10d04869e.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.925293;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_ed60f9de03ed6a89c7f5a325.woff2')format("woff");}.ffa{font-family:ffa;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:-15.442200px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:1.620000px;}
.v1{vertical-align:21.619200px;}
.ls52{letter-spacing:-7.920000px;}
.ls1e{letter-spacing:-2.278800px;}
.ls1f{letter-spacing:-1.899000px;}
.ls1d{letter-spacing:-0.780000px;}
.ls45{letter-spacing:-0.360000px;}
.ls4a{letter-spacing:-0.240000px;}
.ls51{letter-spacing:-0.180000px;}
.ls42{letter-spacing:-0.120000px;}
.ls6f{letter-spacing:-0.096000px;}
.ls38{letter-spacing:-0.060000px;}
.ls6d{letter-spacing:-0.048000px;}
.ls20{letter-spacing:-0.045000px;}
.ls1c{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.004200px;}
.ls0{letter-spacing:0.005400px;}
.ls70{letter-spacing:0.048000px;}
.ls30{letter-spacing:0.060000px;}
.ls6a{letter-spacing:0.096000px;}
.ls1b{letter-spacing:0.120000px;}
.ls5d{letter-spacing:0.144000px;}
.ls1a{letter-spacing:0.180000px;}
.ls69{letter-spacing:0.192000px;}
.ls32{letter-spacing:0.240000px;}
.ls65{letter-spacing:0.288000px;}
.ls19{letter-spacing:0.300000px;}
.ls74{letter-spacing:0.336000px;}
.ls8{letter-spacing:0.360000px;}
.ls6e{letter-spacing:0.384000px;}
.ls24{letter-spacing:0.420000px;}
.ls5c{letter-spacing:0.432000px;}
.ls21{letter-spacing:0.480000px;}
.ls5e{letter-spacing:0.528000px;}
.ls37{letter-spacing:0.540000px;}
.ls67{letter-spacing:0.576000px;}
.ls22{letter-spacing:0.600000px;}
.ls5a{letter-spacing:0.624000px;}
.ls2f{letter-spacing:0.660000px;}
.ls73{letter-spacing:0.672000px;}
.ls23{letter-spacing:0.720000px;}
.ls6b{letter-spacing:0.768000px;}
.ls35{letter-spacing:0.780000px;}
.ls62{letter-spacing:0.816000px;}
.ls10{letter-spacing:0.840000px;}
.lsa{letter-spacing:0.900000px;}
.ls28{letter-spacing:0.960000px;}
.ls2{letter-spacing:1.020000px;}
.ls79{letter-spacing:1.056000px;}
.lsb{letter-spacing:1.080000px;}
.ls57{letter-spacing:1.104000px;}
.ls5{letter-spacing:1.140000px;}
.ls5b{letter-spacing:1.152000px;}
.ls2a{letter-spacing:1.200000px;}
.ls61{letter-spacing:1.248000px;}
.ls48{letter-spacing:1.260000px;}
.ls76{letter-spacing:1.296000px;}
.lsf{letter-spacing:1.320000px;}
.ls77{letter-spacing:1.344000px;}
.ls2b{letter-spacing:1.380000px;}
.ls75{letter-spacing:1.392000px;}
.ls12{letter-spacing:1.440000px;}
.ls68{letter-spacing:1.488000px;}
.ls31{letter-spacing:1.500000px;}
.ls66{letter-spacing:1.536000px;}
.ls18{letter-spacing:1.560000px;}
.ls64{letter-spacing:1.584000px;}
.ls29{letter-spacing:1.620000px;}
.ls9{letter-spacing:1.680000px;}
.ls5f{letter-spacing:1.728000px;}
.ls2d{letter-spacing:1.740000px;}
.ls60{letter-spacing:1.776000px;}
.ls33{letter-spacing:1.800000px;}
.ls7{letter-spacing:1.860000px;}
.ls72{letter-spacing:1.872000px;}
.ls44{letter-spacing:1.920000px;}
.ls63{letter-spacing:1.968000px;}
.lsd{letter-spacing:1.980000px;}
.lsc{letter-spacing:2.040000px;}
.lse{letter-spacing:2.100000px;}
.ls3a{letter-spacing:2.160000px;}
.ls78{letter-spacing:2.208000px;}
.ls2e{letter-spacing:2.220000px;}
.ls11{letter-spacing:2.280000px;}
.ls15{letter-spacing:2.340000px;}
.ls6{letter-spacing:2.400000px;}
.ls17{letter-spacing:2.460000px;}
.ls14{letter-spacing:2.520000px;}
.ls40{letter-spacing:2.580000px;}
.ls4c{letter-spacing:2.640000px;}
.ls34{letter-spacing:2.700000px;}
.ls47{letter-spacing:2.760000px;}
.ls13{letter-spacing:2.820000px;}
.ls16{letter-spacing:2.880000px;}
.ls49{letter-spacing:2.940000px;}
.ls4b{letter-spacing:3.060000px;}
.ls58{letter-spacing:3.072000px;}
.ls3c{letter-spacing:3.120000px;}
.ls2c{letter-spacing:3.180000px;}
.ls6c{letter-spacing:3.216000px;}
.ls4f{letter-spacing:3.240000px;}
.ls39{letter-spacing:3.300000px;}
.ls56{letter-spacing:3.312000px;}
.ls46{letter-spacing:3.360000px;}
.ls4e{letter-spacing:3.420000px;}
.ls26{letter-spacing:3.540000px;}
.ls3d{letter-spacing:3.600000px;}
.ls36{letter-spacing:3.660000px;}
.ls71{letter-spacing:3.696000px;}
.ls55{letter-spacing:3.780000px;}
.ls3b{letter-spacing:3.900000px;}
.ls3f{letter-spacing:3.960000px;}
.ls27{letter-spacing:4.020000px;}
.ls25{letter-spacing:4.080000px;}
.ls50{letter-spacing:4.260000px;}
.ls41{letter-spacing:4.320000px;}
.ls43{letter-spacing:4.380000px;}
.ls4{letter-spacing:4.560000px;}
.ls59{letter-spacing:4.704000px;}
.ls53{letter-spacing:5.100000px;}
.ls4d{letter-spacing:5.160000px;}
.ls3e{letter-spacing:5.880000px;}
.ls3{letter-spacing:5.940000px;}
.ls54{letter-spacing:10.080000px;}
.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;}
}
.ws74{word-spacing:-21.780000px;}
.ws32{word-spacing:-20.880000px;}
.ws33{word-spacing:-19.320000px;}
.ws5d{word-spacing:-19.260000px;}
.ws53{word-spacing:-17.880000px;}
.ws5c{word-spacing:-17.580000px;}
.ws2f{word-spacing:-17.460000px;}
.ws5{word-spacing:-17.340000px;}
.ws3{word-spacing:-17.280000px;}
.ws5e{word-spacing:-17.160000px;}
.ws4{word-spacing:-16.980000px;}
.ws31{word-spacing:-16.800000px;}
.ws1{word-spacing:-16.680000px;}
.ws2{word-spacing:-16.020000px;}
.ws5f{word-spacing:-15.960000px;}
.ws1d{word-spacing:-15.780000px;}
.ws1c{word-spacing:-15.600000px;}
.ws30{word-spacing:-15.480000px;}
.ws52{word-spacing:-15.420000px;}
.ws6{word-spacing:-15.300000px;}
.ws2e{word-spacing:-15.000000px;}
.ws90{word-spacing:-14.208000px;}
.ws8c{word-spacing:-13.872000px;}
.ws76{word-spacing:-13.776000px;}
.ws78{word-spacing:-13.584000px;}
.ws8e{word-spacing:-13.392000px;}
.ws8{word-spacing:-13.344000px;}
.ws8f{word-spacing:-13.296000px;}
.ws91{word-spacing:-12.528000px;}
.ws7{word-spacing:-12.510000px;}
.ws8d{word-spacing:-12.336000px;}
.ws77{word-spacing:-12.096000px;}
.ws75{word-spacing:-12.000000px;}
.ws0{word-spacing:-10.508400px;}
.ws67{word-spacing:-4.560000px;}
.ws46{word-spacing:-4.380000px;}
.ws22{word-spacing:-4.020000px;}
.ws43{word-spacing:-3.300000px;}
.wsa{word-spacing:-2.886000px;}
.ws18{word-spacing:-2.880000px;}
.ws14{word-spacing:-2.820000px;}
.ws70{word-spacing:-2.760000px;}
.ws66{word-spacing:-2.640000px;}
.ws19{word-spacing:-2.520000px;}
.ws73{word-spacing:-2.340000px;}
.ws4e{word-spacing:-2.280000px;}
.ws21{word-spacing:-2.220000px;}
.ws95{word-spacing:-2.208000px;}
.ws38{word-spacing:-2.160000px;}
.ws15{word-spacing:-1.980000px;}
.ws4c{word-spacing:-1.920000px;}
.ws4b{word-spacing:-1.740000px;}
.ws17{word-spacing:-1.680000px;}
.ws28{word-spacing:-1.620000px;}
.ws1a{word-spacing:-1.560000px;}
.ws13{word-spacing:-1.440000px;}
.ws29{word-spacing:-1.380000px;}
.ws4d{word-spacing:-1.320000px;}
.ws2b{word-spacing:-1.260000px;}
.wsc{word-spacing:-1.134000px;}
.ws81{word-spacing:-1.104000px;}
.ws25{word-spacing:-1.080000px;}
.ws65{word-spacing:-0.900000px;}
.ws47{word-spacing:-0.864000px;}
.ws10{word-spacing:-0.840000px;}
.ws27{word-spacing:-0.660000px;}
.ws96{word-spacing:-0.528000px;}
.ws84{word-spacing:-0.480000px;}
.ws69{word-spacing:-0.420000px;}
.ws92{word-spacing:-0.336000px;}
.ws6f{word-spacing:-0.300000px;}
.ws88{word-spacing:-0.288000px;}
.ws2a{word-spacing:-0.240000px;}
.ws93{word-spacing:-0.192000px;}
.ws20{word-spacing:-0.180000px;}
.ws85{word-spacing:-0.144000px;}
.ws8a{word-spacing:-0.096000px;}
.ws6c{word-spacing:-0.060000px;}
.ws9{word-spacing:0.000000px;}
.ws1b{word-spacing:0.045000px;}
.ws4a{word-spacing:0.060000px;}
.ws3d{word-spacing:0.120000px;}
.ws48{word-spacing:0.144000px;}
.ws6a{word-spacing:0.180000px;}
.ws68{word-spacing:0.360000px;}
.ws57{word-spacing:0.420000px;}
.ws51{word-spacing:0.432000px;}
.ws50{word-spacing:0.480000px;}
.ws86{word-spacing:0.528000px;}
.ws64{word-spacing:0.540000px;}
.ws23{word-spacing:0.600000px;}
.ws83{word-spacing:0.816000px;}
.ws89{word-spacing:0.864000px;}
.ws16{word-spacing:0.960000px;}
.ws39{word-spacing:1.080000px;}
.ws3b{word-spacing:1.140000px;}
.ws40{word-spacing:1.200000px;}
.ws5b{word-spacing:1.260000px;}
.ws12{word-spacing:1.620000px;}
.ws7d{word-spacing:1.632000px;}
.ws71{word-spacing:1.680000px;}
.ws79{word-spacing:1.740000px;}
.ws58{word-spacing:1.800000px;}
.wsb{word-spacing:1.899000px;}
.ws26{word-spacing:1.920000px;}
.ws7c{word-spacing:1.980000px;}
.ws61{word-spacing:2.040000px;}
.ws62{word-spacing:2.100000px;}
.ws7a{word-spacing:2.160000px;}
.ws8b{word-spacing:2.256000px;}
.ws35{word-spacing:2.280000px;}
.ws44{word-spacing:2.460000px;}
.ws2d{word-spacing:2.592000px;}
.ws60{word-spacing:2.640000px;}
.ws5a{word-spacing:2.700000px;}
.ws1e{word-spacing:2.760000px;}
.ws6e{word-spacing:2.820000px;}
.ws45{word-spacing:2.880000px;}
.ws37{word-spacing:2.940000px;}
.ws2c{word-spacing:3.060000px;}
.ws63{word-spacing:3.120000px;}
.ws59{word-spacing:3.240000px;}
.ws94{word-spacing:3.264000px;}
.ws72{word-spacing:3.360000px;}
.ws82{word-spacing:3.504000px;}
.ws6d{word-spacing:3.540000px;}
.ws3c{word-spacing:3.600000px;}
.ws49{word-spacing:3.780000px;}
.ws87{word-spacing:3.792000px;}
.ws11{word-spacing:3.840000px;}
.ws7f{word-spacing:3.888000px;}
.ws1f{word-spacing:3.900000px;}
.ws80{word-spacing:3.936000px;}
.ws3e{word-spacing:3.960000px;}
.ws7e{word-spacing:3.984000px;}
.ws42{word-spacing:4.140000px;}
.ws3a{word-spacing:4.320000px;}
.ws34{word-spacing:4.440000px;}
.wse{word-spacing:4.500000px;}
.ws24{word-spacing:4.620000px;}
.ws41{word-spacing:4.680000px;}
.ws3f{word-spacing:4.740000px;}
.ws4f{word-spacing:4.800000px;}
.ws36{word-spacing:4.860000px;}
.wsd{word-spacing:4.920000px;}
.wsf{word-spacing:4.980000px;}
.ws7b{word-spacing:5.520000px;}
.ws6b{word-spacing:7.920000px;}
.ws56{word-spacing:119.136000px;}
.ws55{word-spacing:143.136000px;}
.ws54{word-spacing:187.152000px;}
._f{margin-left:-2898.144000px;}
._14{margin-left:-2874.336000px;}
._2{margin-left:-9.368400px;}
._7{margin-left:-7.560000px;}
._6{margin-left:-6.480000px;}
._1{margin-left:-5.376000px;}
._4{margin-left:-4.005000px;}
._0{margin-left:-2.310000px;}
._5{margin-left:-1.200000px;}
._3{width:1.065000px;}
._d{width:2.160000px;}
._9{width:3.360000px;}
._c{width:4.560000px;}
._8{width:5.640000px;}
._b{width:6.900000px;}
._a{width:7.920000px;}
._e{width:9.000000px;}
._17{width:155.136000px;}
._13{width:196.944000px;}
._12{width:324.336000px;}
._10{width:340.752000px;}
._15{width:345.984000px;}
._18{width:387.030000px;}
._11{width:421.056000px;}
._16{width:597.750000px;}
._19{width:1200.768000px;}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:27.000000px;}
.fs4{font-size:37.800000px;}
.fs7{font-size:39.000000px;}
.fs0{font-size:42.000000px;}
.fs6{font-size:45.000000px;}
.fs9{font-size:48.000000px;}
.fs8{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;}
.ye6{bottom:83.236050px;}
.y62{bottom:83.628600px;}
.y110{bottom:83.635350px;}
.yff{bottom:83.770350px;}
.ye2{bottom:83.873850px;}
.y2c{bottom:88.029450px;}
.y8e{bottom:90.680850px;}
.yf1{bottom:92.454000px;}
.yde{bottom:92.528700px;}
.y121{bottom:95.121900px;}
.y161{bottom:95.263500px;}
.ye5{bottom:98.980050px;}
.ye1{bottom:99.617850px;}
.y61{bottom:101.628600px;}
.y10f{bottom:101.635350px;}
.yfe{bottom:101.770350px;}
.y2b{bottom:103.023000px;}
.y8d{bottom:105.680850px;}
.yf0{bottom:108.702000px;}
.ydd{bottom:109.028700px;}
.y120{bottom:110.121900px;}
.y160{bottom:110.263500px;}
.ye4{bottom:114.724050px;}
.ye0{bottom:115.361850px;}
.y60{bottom:119.628600px;}
.y10e{bottom:119.635350px;}
.yfd{bottom:119.770350px;}
.yef{bottom:124.950000px;}
.y11f{bottom:125.121900px;}
.y15f{bottom:125.263500px;}
.ydc{bottom:125.528700px;}
.y5f{bottom:137.628600px;}
.y10d{bottom:137.635350px;}
.yfc{bottom:137.770350px;}
.y8c{bottom:138.798600px;}
.y11e{bottom:140.121900px;}
.y15e{bottom:140.263500px;}
.yee{bottom:141.198000px;}
.ydb{bottom:142.028700px;}
.y11d{bottom:155.121900px;}
.y15d{bottom:155.263500px;}
.y5e{bottom:155.628600px;}
.y10c{bottom:155.635350px;}
.yfb{bottom:155.770350px;}
.y28{bottom:156.523500px;}
.yed{bottom:157.446000px;}
.yda{bottom:158.528700px;}
.y11c{bottom:170.121900px;}
.y15c{bottom:170.263500px;}
.y5d{bottom:173.628600px;}
.y10b{bottom:173.635350px;}
.yec{bottom:173.694000px;}
.yfa{bottom:173.770350px;}
.y27{bottom:174.523500px;}
.y8b{bottom:174.648600px;}
.yd9{bottom:175.028700px;}
.y11b{bottom:185.121900px;}
.y15b{bottom:185.263500px;}
.y5c{bottom:191.628600px;}
.y10a{bottom:191.635350px;}
.yf9{bottom:191.770350px;}
.y26{bottom:192.523500px;}
.y8a{bottom:192.648600px;}
.y11a{bottom:200.121900px;}
.y15a{bottom:200.263500px;}
.yeb{bottom:205.206000px;}
.yd8{bottom:206.540700px;}
.y5b{bottom:209.628600px;}
.y109{bottom:209.635350px;}
.yf8{bottom:209.770350px;}
.y25{bottom:210.523500px;}
.y119{bottom:215.121900px;}
.y159{bottom:215.263500px;}
.y5a{bottom:227.628600px;}
.y108{bottom:227.635350px;}
.yf7{bottom:227.770350px;}
.y89{bottom:228.513600px;}
.y24{bottom:228.523500px;}
.y118{bottom:230.121900px;}
.y158{bottom:230.263500px;}
.yea{bottom:240.101100px;}
.yd7{bottom:241.435350px;}
.y157{bottom:245.263500px;}
.y59{bottom:245.628600px;}
.y107{bottom:245.635350px;}
.yf6{bottom:245.770350px;}
.y23{bottom:246.523500px;}
.y156{bottom:260.263500px;}
.yd6{bottom:260.935350px;}
.y117{bottom:263.230350px;}
.y88{bottom:263.523600px;}
.y58{bottom:263.628600px;}
.y106{bottom:263.635350px;}
.yf5{bottom:263.770350px;}
.y22{bottom:264.523500px;}
.y155{bottom:275.263500px;}
.y57{bottom:281.628600px;}
.y105{bottom:281.635350px;}
.yf4{bottom:281.770350px;}
.y21{bottom:282.523500px;}
.ye9{bottom:286.184700px;}
.y154{bottom:290.263500px;}
.y56{bottom:299.628600px;}
.y104{bottom:299.635350px;}
.yf3{bottom:299.770350px;}
.y20{bottom:300.523500px;}
.y153{bottom:305.263500px;}
.y55{bottom:317.628600px;}
.y103{bottom:317.635350px;}
.yd5{bottom:317.770350px;}
.y87{bottom:318.063600px;}
.y1f{bottom:318.523500px;}
.y152{bottom:320.263500px;}
.yb7{bottom:320.770350px;}
.y151{bottom:335.263500px;}
.y116{bottom:335.365350px;}
.y54{bottom:335.628600px;}
.y102{bottom:335.635350px;}
.yd4{bottom:335.770350px;}
.y86{bottom:336.063600px;}
.y1e{bottom:336.523500px;}
.yb6{bottom:338.770350px;}
.y150{bottom:350.263500px;}
.y53{bottom:353.628600px;}
.y101{bottom:353.635350px;}
.yd3{bottom:353.770350px;}
.y85{bottom:354.063600px;}
.y1d{bottom:354.523500px;}
.yb5{bottom:356.770350px;}
.y14f{bottom:365.263500px;}
.y115{bottom:371.365350px;}
.y52{bottom:371.628600px;}
.yd2{bottom:371.770350px;}
.y84{bottom:372.063600px;}
.y1c{bottom:372.523500px;}
.yb4{bottom:374.770350px;}
.y14e{bottom:380.263500px;}
.y100{bottom:389.230350px;}
.y51{bottom:389.628600px;}
.yd1{bottom:389.770350px;}
.y83{bottom:390.063600px;}
.y1b{bottom:390.523500px;}
.yb3{bottom:392.770350px;}
.y14d{bottom:395.263500px;}
.y50{bottom:407.628600px;}
.yd0{bottom:407.770350px;}
.y82{bottom:408.063600px;}
.y1a{bottom:408.523500px;}
.y14c{bottom:410.263500px;}
.yb2{bottom:410.770350px;}
.y14b{bottom:425.263500px;}
.y4f{bottom:425.628600px;}
.ycf{bottom:425.770350px;}
.y81{bottom:426.063600px;}
.y2a{bottom:426.523500px;}
.yb1{bottom:428.770350px;}
.y14a{bottom:440.263500px;}
.y4e{bottom:443.628600px;}
.yce{bottom:443.770350px;}
.y80{bottom:444.063600px;}
.y19{bottom:444.118500px;}
.y29{bottom:444.523500px;}
.yb0{bottom:446.770350px;}
.y149{bottom:455.263500px;}
.y114{bottom:461.365350px;}
.y4d{bottom:461.628600px;}
.ycd{bottom:461.770350px;}
.yaf{bottom:464.770350px;}
.y148{bottom:470.265900px;}
.y4c{bottom:479.628600px;}
.y7f{bottom:479.658600px;}
.ycc{bottom:479.770350px;}
.yae{bottom:482.770350px;}
.y147{bottom:485.265900px;}
.y4b{bottom:497.635350px;}
.ycb{bottom:497.770350px;}
.y146{bottom:500.265900px;}
.yad{bottom:500.770350px;}
.y145{bottom:515.265900px;}
.y113{bottom:515.365350px;}
.y4a{bottom:515.635350px;}
.yca{bottom:515.770350px;}
.y7e{bottom:515.913600px;}
.y18{bottom:516.064200px;}
.yac{bottom:518.770350px;}
.y144{bottom:530.265900px;}
.y49{bottom:533.635350px;}
.yc9{bottom:533.770350px;}
.y7d{bottom:533.913600px;}
.yab{bottom:536.770350px;}
.y17{bottom:543.409200px;}
.y143{bottom:545.265900px;}
.y48{bottom:551.635350px;}
.yc8{bottom:551.770350px;}
.y7c{bottom:551.913600px;}
.yaa{bottom:554.770350px;}
.y142{bottom:560.265900px;}
.y16{bottom:561.409200px;}
.y47{bottom:569.635350px;}
.yc7{bottom:569.770350px;}
.y7b{bottom:569.913600px;}
.ya9{bottom:572.770350px;}
.y141{bottom:575.265900px;}
.y15{bottom:579.409200px;}
.y46{bottom:587.635350px;}
.yc6{bottom:587.770350px;}
.y7a{bottom:587.913600px;}
.y140{bottom:590.265900px;}
.ya8{bottom:590.770350px;}
.y14{bottom:597.409200px;}
.y13f{bottom:605.265900px;}
.y45{bottom:605.635350px;}
.yc5{bottom:605.770350px;}
.y79{bottom:605.913600px;}
.ya7{bottom:608.770350px;}
.y13{bottom:615.409200px;}
.y13e{bottom:620.265900px;}
.y44{bottom:623.635350px;}
.yc4{bottom:623.770350px;}
.y78{bottom:623.913600px;}
.ya6{bottom:626.770350px;}
.y12{bottom:633.409200px;}
.y13d{bottom:635.265900px;}
.y43{bottom:641.635350px;}
.yc3{bottom:641.770350px;}
.y77{bottom:641.913600px;}
.ya5{bottom:644.770350px;}
.y13c{bottom:650.265900px;}
.y112{bottom:659.365350px;}
.y42{bottom:659.635350px;}
.yc2{bottom:659.770350px;}
.y76{bottom:659.913600px;}
.ya4{bottom:662.770350px;}
.y13b{bottom:665.265900px;}
.y41{bottom:677.635350px;}
.yc1{bottom:677.770350px;}
.y75{bottom:677.913600px;}
.y11{bottom:678.567300px;}
.y13a{bottom:680.265900px;}
.ya3{bottom:680.770350px;}
.y10{bottom:691.018050px;}
.y139{bottom:695.265900px;}
.y40{bottom:695.635350px;}
.yc0{bottom:695.770350px;}
.y74{bottom:695.913600px;}
.ya2{bottom:698.770350px;}
.y138{bottom:710.265900px;}
.y3f{bottom:713.635350px;}
.ybf{bottom:713.770350px;}
.y73{bottom:713.913600px;}
.ya1{bottom:716.770350px;}
.y137{bottom:725.265900px;}
.yf{bottom:726.594150px;}
.y3e{bottom:731.635350px;}
.ybe{bottom:731.770350px;}
.y72{bottom:731.913600px;}
.ya0{bottom:734.770350px;}
.ye{bottom:740.094150px;}
.y176{bottom:740.263500px;}
.y136{bottom:740.265900px;}
.y3d{bottom:749.635350px;}
.yd{bottom:749.733600px;}
.ybd{bottom:749.770350px;}
.y71{bottom:749.913600px;}
.y9f{bottom:752.770350px;}
.y175{bottom:755.263500px;}
.y135{bottom:755.265900px;}
.yc{bottom:767.094150px;}
.y3c{bottom:767.635350px;}
.ybc{bottom:767.770350px;}
.y70{bottom:767.913600px;}
.y174{bottom:770.263500px;}
.y134{bottom:770.265900px;}
.y9e{bottom:770.770350px;}
.yb{bottom:780.594150px;}
.y173{bottom:785.263500px;}
.y133{bottom:785.265900px;}
.ye8{bottom:785.635350px;}
.ybb{bottom:785.770350px;}
.y6f{bottom:785.913600px;}
.y9d{bottom:788.770350px;}
.ya{bottom:794.094150px;}
.y172{bottom:800.263500px;}
.y132{bottom:800.265900px;}
.y3b{bottom:803.230350px;}
.y9{bottom:803.733600px;}
.yba{bottom:803.770350px;}
.y6e{bottom:803.913600px;}
.y9c{bottom:806.770350px;}
.y171{bottom:815.263500px;}
.y131{bottom:815.265900px;}
.y8{bottom:821.094150px;}
.ye7{bottom:821.230350px;}
.yb9{bottom:821.770350px;}
.y6d{bottom:821.913600px;}
.y9b{bottom:824.770350px;}
.y170{bottom:830.263500px;}
.y130{bottom:830.265900px;}
.yb8{bottom:839.770350px;}
.y6c{bottom:839.913600px;}
.y9a{bottom:842.770350px;}
.y16f{bottom:845.263500px;}
.y12f{bottom:845.265900px;}
.y7{bottom:851.380950px;}
.y3a{bottom:857.770350px;}
.y6b{bottom:857.913600px;}
.y16e{bottom:860.263500px;}
.y12e{bottom:860.265900px;}
.y99{bottom:860.770350px;}
.y16d{bottom:875.263500px;}
.y12d{bottom:875.265900px;}
.y39{bottom:875.770350px;}
.y6a{bottom:875.913600px;}
.y98{bottom:878.770350px;}
.y16c{bottom:890.263500px;}
.y12c{bottom:890.265900px;}
.y38{bottom:893.770350px;}
.y69{bottom:893.913600px;}
.y97{bottom:896.770350px;}
.y6{bottom:897.543600px;}
.y16b{bottom:905.263500px;}
.y12b{bottom:905.265900px;}
.y37{bottom:911.770350px;}
.y68{bottom:911.913600px;}
.y96{bottom:914.770350px;}
.y16a{bottom:920.263500px;}
.y12a{bottom:920.265900px;}
.y111{bottom:929.365350px;}
.y36{bottom:929.770350px;}
.y67{bottom:929.913600px;}
.y95{bottom:932.770350px;}
.y5{bottom:934.004400px;}
.y169{bottom:935.263500px;}
.y129{bottom:935.265900px;}
.y35{bottom:947.770350px;}
.y66{bottom:947.913600px;}
.y168{bottom:950.263500px;}
.y128{bottom:950.265900px;}
.y94{bottom:950.770350px;}
.y167{bottom:965.263500px;}
.y127{bottom:965.265900px;}
.y34{bottom:965.770350px;}
.y65{bottom:965.913600px;}
.y93{bottom:968.770350px;}
.y4{bottom:970.465200px;}
.y166{bottom:980.263500px;}
.y126{bottom:980.265900px;}
.y33{bottom:983.770350px;}
.y92{bottom:986.770350px;}
.y165{bottom:995.263500px;}
.y125{bottom:995.265900px;}
.y64{bottom:1001.508600px;}
.y32{bottom:1001.770350px;}
.y91{bottom:1004.770350px;}
.y3{bottom:1006.926000px;}
.y164{bottom:1010.263500px;}
.y124{bottom:1010.265900px;}
.y31{bottom:1019.770350px;}
.y163{bottom:1025.263500px;}
.y123{bottom:1025.265900px;}
.y63{bottom:1037.763600px;}
.y30{bottom:1037.770350px;}
.y90{bottom:1040.263500px;}
.y122{bottom:1040.265900px;}
.y2{bottom:1069.300350px;}
.ydf{bottom:1132.412700px;}
.y8f{bottom:1132.412850px;}
.ye3{bottom:1132.418700px;}
.y162{bottom:1132.423500px;}
.yf2{bottom:1132.434000px;}
.y2e{bottom:1136.092500px;}
.y2d{bottom:1150.492500px;}
.h6{height:19.683105px;}
.h8{height:28.412109px;}
.h2{height:30.597656px;}
.hf{height:32.783203px;}
.h7{height:32.805176px;}
.he{height:32.815976px;}
.h13{height:33.328125px;}
.h12{height:33.351562px;}
.h11{height:34.968750px;}
.h10{height:34.992188px;}
.hd{height:41.689453px;}
.hb{height:43.681641px;}
.ha{height:43.710938px;}
.hc{height:43.717434px;}
.h9{height:43.740234px;}
.h5{height:49.138634px;}
.h3{height:56.786133px;}
.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;}
.x24{left:78.666150px;}
.x8{left:96.094500px;}
.x1{left:97.795200px;}
.x19{left:99.921300px;}
.x26{left:102.047400px;}
.x4{left:106.299150px;}
.xb{left:110.551200px;}
.x27{left:123.307350px;}
.x3{left:125.433000px;}
.x6{left:131.817600px;}
.xc{left:144.736200px;}
.x1a{left:172.605300px;}
.x25{left:194.300400px;}
.x5{left:212.877600px;}
.x1c{left:349.017300px;}
.x1d{left:351.465300px;}
.x1b{left:369.345300px;}
.x9{left:455.041500px;}
.xd{left:457.085400px;}
.x17{left:478.341000px;}
.x7{left:480.477600px;}
.x14{left:482.598600px;}
.xe{left:491.105400px;}
.x12{left:496.055400px;}
.x23{left:501.114150px;}
.x28{left:503.863350px;}
.x1e{left:509.673300px;}
.x18{left:512.361000px;}
.x1f{left:516.585300px;}
.x13{left:518.180400px;}
.x11{left:558.155400px;}
.x22{left:579.425400px;}
.x10{left:583.460400px;}
.xf{left:591.650400px;}
.x16{left:663.492300px;}
.x2{left:693.365400px;}
.x20{left:703.665300px;}
.x15{left:735.066600px;}
.x21{left:756.321300px;}
@media print{
.v2{vertical-align:-13.726400pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:1.440000pt;}
.v1{vertical-align:19.217067pt;}
.ls52{letter-spacing:-7.040000pt;}
.ls1e{letter-spacing:-2.025600pt;}
.ls1f{letter-spacing:-1.688000pt;}
.ls1d{letter-spacing:-0.693333pt;}
.ls45{letter-spacing:-0.320000pt;}
.ls4a{letter-spacing:-0.213333pt;}
.ls51{letter-spacing:-0.160000pt;}
.ls42{letter-spacing:-0.106667pt;}
.ls6f{letter-spacing:-0.085333pt;}
.ls38{letter-spacing:-0.053333pt;}
.ls6d{letter-spacing:-0.042667pt;}
.ls20{letter-spacing:-0.040000pt;}
.ls1c{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.003733pt;}
.ls0{letter-spacing:0.004800pt;}
.ls70{letter-spacing:0.042667pt;}
.ls30{letter-spacing:0.053333pt;}
.ls6a{letter-spacing:0.085333pt;}
.ls1b{letter-spacing:0.106667pt;}
.ls5d{letter-spacing:0.128000pt;}
.ls1a{letter-spacing:0.160000pt;}
.ls69{letter-spacing:0.170667pt;}
.ls32{letter-spacing:0.213333pt;}
.ls65{letter-spacing:0.256000pt;}
.ls19{letter-spacing:0.266667pt;}
.ls74{letter-spacing:0.298667pt;}
.ls8{letter-spacing:0.320000pt;}
.ls6e{letter-spacing:0.341333pt;}
.ls24{letter-spacing:0.373333pt;}
.ls5c{letter-spacing:0.384000pt;}
.ls21{letter-spacing:0.426667pt;}
.ls5e{letter-spacing:0.469333pt;}
.ls37{letter-spacing:0.480000pt;}
.ls67{letter-spacing:0.512000pt;}
.ls22{letter-spacing:0.533333pt;}
.ls5a{letter-spacing:0.554667pt;}
.ls2f{letter-spacing:0.586667pt;}
.ls73{letter-spacing:0.597333pt;}
.ls23{letter-spacing:0.640000pt;}
.ls6b{letter-spacing:0.682667pt;}
.ls35{letter-spacing:0.693333pt;}
.ls62{letter-spacing:0.725333pt;}
.ls10{letter-spacing:0.746667pt;}
.lsa{letter-spacing:0.800000pt;}
.ls28{letter-spacing:0.853333pt;}
.ls2{letter-spacing:0.906667pt;}
.ls79{letter-spacing:0.938667pt;}
.lsb{letter-spacing:0.960000pt;}
.ls57{letter-spacing:0.981333pt;}
.ls5{letter-spacing:1.013333pt;}
.ls5b{letter-spacing:1.024000pt;}
.ls2a{letter-spacing:1.066667pt;}
.ls61{letter-spacing:1.109333pt;}
.ls48{letter-spacing:1.120000pt;}
.ls76{letter-spacing:1.152000pt;}
.lsf{letter-spacing:1.173333pt;}
.ls77{letter-spacing:1.194667pt;}
.ls2b{letter-spacing:1.226667pt;}
.ls75{letter-spacing:1.237333pt;}
.ls12{letter-spacing:1.280000pt;}
.ls68{letter-spacing:1.322667pt;}
.ls31{letter-spacing:1.333333pt;}
.ls66{letter-spacing:1.365333pt;}
.ls18{letter-spacing:1.386667pt;}
.ls64{letter-spacing:1.408000pt;}
.ls29{letter-spacing:1.440000pt;}
.ls9{letter-spacing:1.493333pt;}
.ls5f{letter-spacing:1.536000pt;}
.ls2d{letter-spacing:1.546667pt;}
.ls60{letter-spacing:1.578667pt;}
.ls33{letter-spacing:1.600000pt;}
.ls7{letter-spacing:1.653333pt;}
.ls72{letter-spacing:1.664000pt;}
.ls44{letter-spacing:1.706667pt;}
.ls63{letter-spacing:1.749333pt;}
.lsd{letter-spacing:1.760000pt;}
.lsc{letter-spacing:1.813333pt;}
.lse{letter-spacing:1.866667pt;}
.ls3a{letter-spacing:1.920000pt;}
.ls78{letter-spacing:1.962667pt;}
.ls2e{letter-spacing:1.973333pt;}
.ls11{letter-spacing:2.026667pt;}
.ls15{letter-spacing:2.080000pt;}
.ls6{letter-spacing:2.133333pt;}
.ls17{letter-spacing:2.186667pt;}
.ls14{letter-spacing:2.240000pt;}
.ls40{letter-spacing:2.293333pt;}
.ls4c{letter-spacing:2.346667pt;}
.ls34{letter-spacing:2.400000pt;}
.ls47{letter-spacing:2.453333pt;}
.ls13{letter-spacing:2.506667pt;}
.ls16{letter-spacing:2.560000pt;}
.ls49{letter-spacing:2.613333pt;}
.ls4b{letter-spacing:2.720000pt;}
.ls58{letter-spacing:2.730667pt;}
.ls3c{letter-spacing:2.773333pt;}
.ls2c{letter-spacing:2.826667pt;}
.ls6c{letter-spacing:2.858667pt;}
.ls4f{letter-spacing:2.880000pt;}
.ls39{letter-spacing:2.933333pt;}
.ls56{letter-spacing:2.944000pt;}
.ls46{letter-spacing:2.986667pt;}
.ls4e{letter-spacing:3.040000pt;}
.ls26{letter-spacing:3.146667pt;}
.ls3d{letter-spacing:3.200000pt;}
.ls36{letter-spacing:3.253333pt;}
.ls71{letter-spacing:3.285333pt;}
.ls55{letter-spacing:3.360000pt;}
.ls3b{letter-spacing:3.466667pt;}
.ls3f{letter-spacing:3.520000pt;}
.ls27{letter-spacing:3.573333pt;}
.ls25{letter-spacing:3.626667pt;}
.ls50{letter-spacing:3.786667pt;}
.ls41{letter-spacing:3.840000pt;}
.ls43{letter-spacing:3.893333pt;}
.ls4{letter-spacing:4.053333pt;}
.ls59{letter-spacing:4.181333pt;}
.ls53{letter-spacing:4.533333pt;}
.ls4d{letter-spacing:4.586667pt;}
.ls3e{letter-spacing:5.226667pt;}
.ls3{letter-spacing:5.280000pt;}
.ls54{letter-spacing:8.960000pt;}
.ws74{word-spacing:-19.360000pt;}
.ws32{word-spacing:-18.560000pt;}
.ws33{word-spacing:-17.173333pt;}
.ws5d{word-spacing:-17.120000pt;}
.ws53{word-spacing:-15.893333pt;}
.ws5c{word-spacing:-15.626667pt;}
.ws2f{word-spacing:-15.520000pt;}
.ws5{word-spacing:-15.413333pt;}
.ws3{word-spacing:-15.360000pt;}
.ws5e{word-spacing:-15.253333pt;}
.ws4{word-spacing:-15.093333pt;}
.ws31{word-spacing:-14.933333pt;}
.ws1{word-spacing:-14.826667pt;}
.ws2{word-spacing:-14.240000pt;}
.ws5f{word-spacing:-14.186667pt;}
.ws1d{word-spacing:-14.026667pt;}
.ws1c{word-spacing:-13.866667pt;}
.ws30{word-spacing:-13.760000pt;}
.ws52{word-spacing:-13.706667pt;}
.ws6{word-spacing:-13.600000pt;}
.ws2e{word-spacing:-13.333333pt;}
.ws90{word-spacing:-12.629333pt;}
.ws8c{word-spacing:-12.330667pt;}
.ws76{word-spacing:-12.245333pt;}
.ws78{word-spacing:-12.074667pt;}
.ws8e{word-spacing:-11.904000pt;}
.ws8{word-spacing:-11.861333pt;}
.ws8f{word-spacing:-11.818667pt;}
.ws91{word-spacing:-11.136000pt;}
.ws7{word-spacing:-11.120000pt;}
.ws8d{word-spacing:-10.965333pt;}
.ws77{word-spacing:-10.752000pt;}
.ws75{word-spacing:-10.666667pt;}
.ws0{word-spacing:-9.340800pt;}
.ws67{word-spacing:-4.053333pt;}
.ws46{word-spacing:-3.893333pt;}
.ws22{word-spacing:-3.573333pt;}
.ws43{word-spacing:-2.933333pt;}
.wsa{word-spacing:-2.565333pt;}
.ws18{word-spacing:-2.560000pt;}
.ws14{word-spacing:-2.506667pt;}
.ws70{word-spacing:-2.453333pt;}
.ws66{word-spacing:-2.346667pt;}
.ws19{word-spacing:-2.240000pt;}
.ws73{word-spacing:-2.080000pt;}
.ws4e{word-spacing:-2.026667pt;}
.ws21{word-spacing:-1.973333pt;}
.ws95{word-spacing:-1.962667pt;}
.ws38{word-spacing:-1.920000pt;}
.ws15{word-spacing:-1.760000pt;}
.ws4c{word-spacing:-1.706667pt;}
.ws4b{word-spacing:-1.546667pt;}
.ws17{word-spacing:-1.493333pt;}
.ws28{word-spacing:-1.440000pt;}
.ws1a{word-spacing:-1.386667pt;}
.ws13{word-spacing:-1.280000pt;}
.ws29{word-spacing:-1.226667pt;}
.ws4d{word-spacing:-1.173333pt;}
.ws2b{word-spacing:-1.120000pt;}
.wsc{word-spacing:-1.008000pt;}
.ws81{word-spacing:-0.981333pt;}
.ws25{word-spacing:-0.960000pt;}
.ws65{word-spacing:-0.800000pt;}
.ws47{word-spacing:-0.768000pt;}
.ws10{word-spacing:-0.746667pt;}
.ws27{word-spacing:-0.586667pt;}
.ws96{word-spacing:-0.469333pt;}
.ws84{word-spacing:-0.426667pt;}
.ws69{word-spacing:-0.373333pt;}
.ws92{word-spacing:-0.298667pt;}
.ws6f{word-spacing:-0.266667pt;}
.ws88{word-spacing:-0.256000pt;}
.ws2a{word-spacing:-0.213333pt;}
.ws93{word-spacing:-0.170667pt;}
.ws20{word-spacing:-0.160000pt;}
.ws85{word-spacing:-0.128000pt;}
.ws8a{word-spacing:-0.085333pt;}
.ws6c{word-spacing:-0.053333pt;}
.ws9{word-spacing:0.000000pt;}
.ws1b{word-spacing:0.040000pt;}
.ws4a{word-spacing:0.053333pt;}
.ws3d{word-spacing:0.106667pt;}
.ws48{word-spacing:0.128000pt;}
.ws6a{word-spacing:0.160000pt;}
.ws68{word-spacing:0.320000pt;}
.ws57{word-spacing:0.373333pt;}
.ws51{word-spacing:0.384000pt;}
.ws50{word-spacing:0.426667pt;}
.ws86{word-spacing:0.469333pt;}
.ws64{word-spacing:0.480000pt;}
.ws23{word-spacing:0.533333pt;}
.ws83{word-spacing:0.725333pt;}
.ws89{word-spacing:0.768000pt;}
.ws16{word-spacing:0.853333pt;}
.ws39{word-spacing:0.960000pt;}
.ws3b{word-spacing:1.013333pt;}
.ws40{word-spacing:1.066667pt;}
.ws5b{word-spacing:1.120000pt;}
.ws12{word-spacing:1.440000pt;}
.ws7d{word-spacing:1.450667pt;}
.ws71{word-spacing:1.493333pt;}
.ws79{word-spacing:1.546667pt;}
.ws58{word-spacing:1.600000pt;}
.wsb{word-spacing:1.688000pt;}
.ws26{word-spacing:1.706667pt;}
.ws7c{word-spacing:1.760000pt;}
.ws61{word-spacing:1.813333pt;}
.ws62{word-spacing:1.866667pt;}
.ws7a{word-spacing:1.920000pt;}
.ws8b{word-spacing:2.005333pt;}
.ws35{word-spacing:2.026667pt;}
.ws44{word-spacing:2.186667pt;}
.ws2d{word-spacing:2.304000pt;}
.ws60{word-spacing:2.346667pt;}
.ws5a{word-spacing:2.400000pt;}
.ws1e{word-spacing:2.453333pt;}
.ws6e{word-spacing:2.506667pt;}
.ws45{word-spacing:2.560000pt;}
.ws37{word-spacing:2.613333pt;}
.ws2c{word-spacing:2.720000pt;}
.ws63{word-spacing:2.773333pt;}
.ws59{word-spacing:2.880000pt;}
.ws94{word-spacing:2.901333pt;}
.ws72{word-spacing:2.986667pt;}
.ws82{word-spacing:3.114667pt;}
.ws6d{word-spacing:3.146667pt;}
.ws3c{word-spacing:3.200000pt;}
.ws49{word-spacing:3.360000pt;}
.ws87{word-spacing:3.370667pt;}
.ws11{word-spacing:3.413333pt;}
.ws7f{word-spacing:3.456000pt;}
.ws1f{word-spacing:3.466667pt;}
.ws80{word-spacing:3.498667pt;}
.ws3e{word-spacing:3.520000pt;}
.ws7e{word-spacing:3.541333pt;}
.ws42{word-spacing:3.680000pt;}
.ws3a{word-spacing:3.840000pt;}
.ws34{word-spacing:3.946667pt;}
.wse{word-spacing:4.000000pt;}
.ws24{word-spacing:4.106667pt;}
.ws41{word-spacing:4.160000pt;}
.ws3f{word-spacing:4.213333pt;}
.ws4f{word-spacing:4.266667pt;}
.ws36{word-spacing:4.320000pt;}
.wsd{word-spacing:4.373333pt;}
.wsf{word-spacing:4.426667pt;}
.ws7b{word-spacing:4.906667pt;}
.ws6b{word-spacing:7.040000pt;}
.ws56{word-spacing:105.898667pt;}
.ws55{word-spacing:127.232000pt;}
.ws54{word-spacing:166.357333pt;}
._f{margin-left:-2576.128000pt;}
._14{margin-left:-2554.965333pt;}
._2{margin-left:-8.327467pt;}
._7{margin-left:-6.720000pt;}
._6{margin-left:-5.760000pt;}
._1{margin-left:-4.778667pt;}
._4{margin-left:-3.560000pt;}
._0{margin-left:-2.053333pt;}
._5{margin-left:-1.066667pt;}
._3{width:0.946667pt;}
._d{width:1.920000pt;}
._9{width:2.986667pt;}
._c{width:4.053333pt;}
._8{width:5.013333pt;}
._b{width:6.133333pt;}
._a{width:7.040000pt;}
._e{width:8.000000pt;}
._17{width:137.898667pt;}
._13{width:175.061333pt;}
._12{width:288.298667pt;}
._10{width:302.890667pt;}
._15{width:307.541333pt;}
._18{width:344.026667pt;}
._11{width:374.272000pt;}
._16{width:531.333333pt;}
._19{width:1067.349333pt;}
.fs5{font-size:24.000000pt;}
.fs4{font-size:33.600000pt;}
.fs7{font-size:34.666667pt;}
.fs0{font-size:37.333333pt;}
.fs6{font-size:40.000000pt;}
.fs9{font-size:42.666667pt;}
.fs8{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;}
.ye6{bottom:73.987600pt;}
.y62{bottom:74.336533pt;}
.y110{bottom:74.342533pt;}
.yff{bottom:74.462533pt;}
.ye2{bottom:74.554533pt;}
.y2c{bottom:78.248400pt;}
.y8e{bottom:80.605200pt;}
.yf1{bottom:82.181333pt;}
.yde{bottom:82.247733pt;}
.y121{bottom:84.552800pt;}
.y161{bottom:84.678667pt;}
.ye5{bottom:87.982267pt;}
.ye1{bottom:88.549200pt;}
.y61{bottom:90.336533pt;}
.y10f{bottom:90.342533pt;}
.yfe{bottom:90.462533pt;}
.y2b{bottom:91.576000pt;}
.y8d{bottom:93.938533pt;}
.yf0{bottom:96.624000pt;}
.ydd{bottom:96.914400pt;}
.y120{bottom:97.886133pt;}
.y160{bottom:98.012000pt;}
.ye4{bottom:101.976933pt;}
.ye0{bottom:102.543867pt;}
.y60{bottom:106.336533pt;}
.y10e{bottom:106.342533pt;}
.yfd{bottom:106.462533pt;}
.yef{bottom:111.066667pt;}
.y11f{bottom:111.219467pt;}
.y15f{bottom:111.345333pt;}
.ydc{bottom:111.581067pt;}
.y5f{bottom:122.336533pt;}
.y10d{bottom:122.342533pt;}
.yfc{bottom:122.462533pt;}
.y8c{bottom:123.376533pt;}
.y11e{bottom:124.552800pt;}
.y15e{bottom:124.678667pt;}
.yee{bottom:125.509333pt;}
.ydb{bottom:126.247733pt;}
.y11d{bottom:137.886133pt;}
.y15d{bottom:138.012000pt;}
.y5e{bottom:138.336533pt;}
.y10c{bottom:138.342533pt;}
.yfb{bottom:138.462533pt;}
.y28{bottom:139.132000pt;}
.yed{bottom:139.952000pt;}
.yda{bottom:140.914400pt;}
.y11c{bottom:151.219467pt;}
.y15c{bottom:151.345333pt;}
.y5d{bottom:154.336533pt;}
.y10b{bottom:154.342533pt;}
.yec{bottom:154.394667pt;}
.yfa{bottom:154.462533pt;}
.y27{bottom:155.132000pt;}
.y8b{bottom:155.243200pt;}
.yd9{bottom:155.581067pt;}
.y11b{bottom:164.552800pt;}
.y15b{bottom:164.678667pt;}
.y5c{bottom:170.336533pt;}
.y10a{bottom:170.342533pt;}
.yf9{bottom:170.462533pt;}
.y26{bottom:171.132000pt;}
.y8a{bottom:171.243200pt;}
.y11a{bottom:177.886133pt;}
.y15a{bottom:178.012000pt;}
.yeb{bottom:182.405333pt;}
.yd8{bottom:183.591733pt;}
.y5b{bottom:186.336533pt;}
.y109{bottom:186.342533pt;}
.yf8{bottom:186.462533pt;}
.y25{bottom:187.132000pt;}
.y119{bottom:191.219467pt;}
.y159{bottom:191.345333pt;}
.y5a{bottom:202.336533pt;}
.y108{bottom:202.342533pt;}
.yf7{bottom:202.462533pt;}
.y89{bottom:203.123200pt;}
.y24{bottom:203.132000pt;}
.y118{bottom:204.552800pt;}
.y158{bottom:204.678667pt;}
.yea{bottom:213.423200pt;}
.yd7{bottom:214.609200pt;}
.y157{bottom:218.012000pt;}
.y59{bottom:218.336533pt;}
.y107{bottom:218.342533pt;}
.yf6{bottom:218.462533pt;}
.y23{bottom:219.132000pt;}
.y156{bottom:231.345333pt;}
.yd6{bottom:231.942533pt;}
.y117{bottom:233.982533pt;}
.y88{bottom:234.243200pt;}
.y58{bottom:234.336533pt;}
.y106{bottom:234.342533pt;}
.yf5{bottom:234.462533pt;}
.y22{bottom:235.132000pt;}
.y155{bottom:244.678667pt;}
.y57{bottom:250.336533pt;}
.y105{bottom:250.342533pt;}
.yf4{bottom:250.462533pt;}
.y21{bottom:251.132000pt;}
.ye9{bottom:254.386400pt;}
.y154{bottom:258.012000pt;}
.y56{bottom:266.336533pt;}
.y104{bottom:266.342533pt;}
.yf3{bottom:266.462533pt;}
.y20{bottom:267.132000pt;}
.y153{bottom:271.345333pt;}
.y55{bottom:282.336533pt;}
.y103{bottom:282.342533pt;}
.yd5{bottom:282.462533pt;}
.y87{bottom:282.723200pt;}
.y1f{bottom:283.132000pt;}
.y152{bottom:284.678667pt;}
.yb7{bottom:285.129200pt;}
.y151{bottom:298.012000pt;}
.y116{bottom:298.102533pt;}
.y54{bottom:298.336533pt;}
.y102{bottom:298.342533pt;}
.yd4{bottom:298.462533pt;}
.y86{bottom:298.723200pt;}
.y1e{bottom:299.132000pt;}
.yb6{bottom:301.129200pt;}
.y150{bottom:311.345333pt;}
.y53{bottom:314.336533pt;}
.y101{bottom:314.342533pt;}
.yd3{bottom:314.462533pt;}
.y85{bottom:314.723200pt;}
.y1d{bottom:315.132000pt;}
.yb5{bottom:317.129200pt;}
.y14f{bottom:324.678667pt;}
.y115{bottom:330.102533pt;}
.y52{bottom:330.336533pt;}
.yd2{bottom:330.462533pt;}
.y84{bottom:330.723200pt;}
.y1c{bottom:331.132000pt;}
.yb4{bottom:333.129200pt;}
.y14e{bottom:338.012000pt;}
.y100{bottom:345.982533pt;}
.y51{bottom:346.336533pt;}
.yd1{bottom:346.462533pt;}
.y83{bottom:346.723200pt;}
.y1b{bottom:347.132000pt;}
.yb3{bottom:349.129200pt;}
.y14d{bottom:351.345333pt;}
.y50{bottom:362.336533pt;}
.yd0{bottom:362.462533pt;}
.y82{bottom:362.723200pt;}
.y1a{bottom:363.132000pt;}
.y14c{bottom:364.678667pt;}
.yb2{bottom:365.129200pt;}
.y14b{bottom:378.012000pt;}
.y4f{bottom:378.336533pt;}
.ycf{bottom:378.462533pt;}
.y81{bottom:378.723200pt;}
.y2a{bottom:379.132000pt;}
.yb1{bottom:381.129200pt;}
.y14a{bottom:391.345333pt;}
.y4e{bottom:394.336533pt;}
.yce{bottom:394.462533pt;}
.y80{bottom:394.723200pt;}
.y19{bottom:394.772000pt;}
.y29{bottom:395.132000pt;}
.yb0{bottom:397.129200pt;}
.y149{bottom:404.678667pt;}
.y114{bottom:410.102533pt;}
.y4d{bottom:410.336533pt;}
.ycd{bottom:410.462533pt;}
.yaf{bottom:413.129200pt;}
.y148{bottom:418.014133pt;}
.y4c{bottom:426.336533pt;}
.y7f{bottom:426.363200pt;}
.ycc{bottom:426.462533pt;}
.yae{bottom:429.129200pt;}
.y147{bottom:431.347467pt;}
.y4b{bottom:442.342533pt;}
.ycb{bottom:442.462533pt;}
.y146{bottom:444.680800pt;}
.yad{bottom:445.129200pt;}
.y145{bottom:458.014133pt;}
.y113{bottom:458.102533pt;}
.y4a{bottom:458.342533pt;}
.yca{bottom:458.462533pt;}
.y7e{bottom:458.589867pt;}
.y18{bottom:458.723733pt;}
.yac{bottom:461.129200pt;}
.y144{bottom:471.347467pt;}
.y49{bottom:474.342533pt;}
.yc9{bottom:474.462533pt;}
.y7d{bottom:474.589867pt;}
.yab{bottom:477.129200pt;}
.y17{bottom:483.030400pt;}
.y143{bottom:484.680800pt;}
.y48{bottom:490.342533pt;}
.yc8{bottom:490.462533pt;}
.y7c{bottom:490.589867pt;}
.yaa{bottom:493.129200pt;}
.y142{bottom:498.014133pt;}
.y16{bottom:499.030400pt;}
.y47{bottom:506.342533pt;}
.yc7{bottom:506.462533pt;}
.y7b{bottom:506.589867pt;}
.ya9{bottom:509.129200pt;}
.y141{bottom:511.347467pt;}
.y15{bottom:515.030400pt;}
.y46{bottom:522.342533pt;}
.yc6{bottom:522.462533pt;}
.y7a{bottom:522.589867pt;}
.y140{bottom:524.680800pt;}
.ya8{bottom:525.129200pt;}
.y14{bottom:531.030400pt;}
.y13f{bottom:538.014133pt;}
.y45{bottom:538.342533pt;}
.yc5{bottom:538.462533pt;}
.y79{bottom:538.589867pt;}
.ya7{bottom:541.129200pt;}
.y13{bottom:547.030400pt;}
.y13e{bottom:551.347467pt;}
.y44{bottom:554.342533pt;}
.yc4{bottom:554.462533pt;}
.y78{bottom:554.589867pt;}
.ya6{bottom:557.129200pt;}
.y12{bottom:563.030400pt;}
.y13d{bottom:564.680800pt;}
.y43{bottom:570.342533pt;}
.yc3{bottom:570.462533pt;}
.y77{bottom:570.589867pt;}
.ya5{bottom:573.129200pt;}
.y13c{bottom:578.014133pt;}
.y112{bottom:586.102533pt;}
.y42{bottom:586.342533pt;}
.yc2{bottom:586.462533pt;}
.y76{bottom:586.589867pt;}
.ya4{bottom:589.129200pt;}
.y13b{bottom:591.347467pt;}
.y41{bottom:602.342533pt;}
.yc1{bottom:602.462533pt;}
.y75{bottom:602.589867pt;}
.y11{bottom:603.170933pt;}
.y13a{bottom:604.680800pt;}
.ya3{bottom:605.129200pt;}
.y10{bottom:614.238267pt;}
.y139{bottom:618.014133pt;}
.y40{bottom:618.342533pt;}
.yc0{bottom:618.462533pt;}
.y74{bottom:618.589867pt;}
.ya2{bottom:621.129200pt;}
.y138{bottom:631.347467pt;}
.y3f{bottom:634.342533pt;}
.ybf{bottom:634.462533pt;}
.y73{bottom:634.589867pt;}
.ya1{bottom:637.129200pt;}
.y137{bottom:644.680800pt;}
.yf{bottom:645.861467pt;}
.y3e{bottom:650.342533pt;}
.ybe{bottom:650.462533pt;}
.y72{bottom:650.589867pt;}
.ya0{bottom:653.129200pt;}
.ye{bottom:657.861467pt;}
.y176{bottom:658.012000pt;}
.y136{bottom:658.014133pt;}
.y3d{bottom:666.342533pt;}
.yd{bottom:666.429867pt;}
.ybd{bottom:666.462533pt;}
.y71{bottom:666.589867pt;}
.y9f{bottom:669.129200pt;}
.y175{bottom:671.345333pt;}
.y135{bottom:671.347467pt;}
.yc{bottom:681.861467pt;}
.y3c{bottom:682.342533pt;}
.ybc{bottom:682.462533pt;}
.y70{bottom:682.589867pt;}
.y174{bottom:684.678667pt;}
.y134{bottom:684.680800pt;}
.y9e{bottom:685.129200pt;}
.yb{bottom:693.861467pt;}
.y173{bottom:698.012000pt;}
.y133{bottom:698.014133pt;}
.ye8{bottom:698.342533pt;}
.ybb{bottom:698.462533pt;}
.y6f{bottom:698.589867pt;}
.y9d{bottom:701.129200pt;}
.ya{bottom:705.861467pt;}
.y172{bottom:711.345333pt;}
.y132{bottom:711.347467pt;}
.y3b{bottom:713.982533pt;}
.y9{bottom:714.429867pt;}
.yba{bottom:714.462533pt;}
.y6e{bottom:714.589867pt;}
.y9c{bottom:717.129200pt;}
.y171{bottom:724.678667pt;}
.y131{bottom:724.680800pt;}
.y8{bottom:729.861467pt;}
.ye7{bottom:729.982533pt;}
.yb9{bottom:730.462533pt;}
.y6d{bottom:730.589867pt;}
.y9b{bottom:733.129200pt;}
.y170{bottom:738.012000pt;}
.y130{bottom:738.014133pt;}
.yb8{bottom:746.462533pt;}
.y6c{bottom:746.589867pt;}
.y9a{bottom:749.129200pt;}
.y16f{bottom:751.345333pt;}
.y12f{bottom:751.347467pt;}
.y7{bottom:756.783067pt;}
.y3a{bottom:762.462533pt;}
.y6b{bottom:762.589867pt;}
.y16e{bottom:764.678667pt;}
.y12e{bottom:764.680800pt;}
.y99{bottom:765.129200pt;}
.y16d{bottom:778.012000pt;}
.y12d{bottom:778.014133pt;}
.y39{bottom:778.462533pt;}
.y6a{bottom:778.589867pt;}
.y98{bottom:781.129200pt;}
.y16c{bottom:791.345333pt;}
.y12c{bottom:791.347467pt;}
.y38{bottom:794.462533pt;}
.y69{bottom:794.589867pt;}
.y97{bottom:797.129200pt;}
.y6{bottom:797.816533pt;}
.y16b{bottom:804.678667pt;}
.y12b{bottom:804.680800pt;}
.y37{bottom:810.462533pt;}
.y68{bottom:810.589867pt;}
.y96{bottom:813.129200pt;}
.y16a{bottom:818.012000pt;}
.y12a{bottom:818.014133pt;}
.y111{bottom:826.102533pt;}
.y36{bottom:826.462533pt;}
.y67{bottom:826.589867pt;}
.y95{bottom:829.129200pt;}
.y5{bottom:830.226133pt;}
.y169{bottom:831.345333pt;}
.y129{bottom:831.347467pt;}
.y35{bottom:842.462533pt;}
.y66{bottom:842.589867pt;}
.y168{bottom:844.678667pt;}
.y128{bottom:844.680800pt;}
.y94{bottom:845.129200pt;}
.y167{bottom:858.012000pt;}
.y127{bottom:858.014133pt;}
.y34{bottom:858.462533pt;}
.y65{bottom:858.589867pt;}
.y93{bottom:861.129200pt;}
.y4{bottom:862.635733pt;}
.y166{bottom:871.345333pt;}
.y126{bottom:871.347467pt;}
.y33{bottom:874.462533pt;}
.y92{bottom:877.129200pt;}
.y165{bottom:884.678667pt;}
.y125{bottom:884.680800pt;}
.y64{bottom:890.229867pt;}
.y32{bottom:890.462533pt;}
.y91{bottom:893.129200pt;}
.y3{bottom:895.045333pt;}
.y164{bottom:898.012000pt;}
.y124{bottom:898.014133pt;}
.y31{bottom:906.462533pt;}
.y163{bottom:911.345333pt;}
.y123{bottom:911.347467pt;}
.y63{bottom:922.456533pt;}
.y30{bottom:922.462533pt;}
.y90{bottom:924.678667pt;}
.y122{bottom:924.680800pt;}
.y2{bottom:950.489200pt;}
.ydf{bottom:1006.589067pt;}
.y8f{bottom:1006.589200pt;}
.ye3{bottom:1006.594400pt;}
.y162{bottom:1006.598667pt;}
.yf2{bottom:1006.608000pt;}
.y2e{bottom:1009.860000pt;}
.y2d{bottom:1022.660000pt;}
.h6{height:17.496094pt;}
.h8{height:25.255208pt;}
.h2{height:27.197917pt;}
.hf{height:29.140625pt;}
.h7{height:29.160156pt;}
.he{height:29.169756pt;}
.h13{height:29.625000pt;}
.h12{height:29.645833pt;}
.h11{height:31.083333pt;}
.h10{height:31.104167pt;}
.hd{height:37.057292pt;}
.hb{height:38.828125pt;}
.ha{height:38.854167pt;}
.hc{height:38.859942pt;}
.h9{height:38.880208pt;}
.h5{height:43.678785pt;}
.h3{height:50.476562pt;}
.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;}
.x24{left:69.925467pt;}
.x8{left:85.417333pt;}
.x1{left:86.929067pt;}
.x19{left:88.818933pt;}
.x26{left:90.708800pt;}
.x4{left:94.488133pt;}
.xb{left:98.267733pt;}
.x27{left:109.606533pt;}
.x3{left:111.496000pt;}
.x6{left:117.171200pt;}
.xc{left:128.654400pt;}
.x1a{left:153.426933pt;}
.x25{left:172.711467pt;}
.x5{left:189.224533pt;}
.x1c{left:310.237600pt;}
.x1d{left:312.413600pt;}
.x1b{left:328.306933pt;}
.x9{left:404.481333pt;}
.xd{left:406.298133pt;}
.x17{left:425.192000pt;}
.x7{left:427.091200pt;}
.x14{left:428.976533pt;}
.xe{left:436.538133pt;}
.x12{left:440.938133pt;}
.x23{left:445.434800pt;}
.x28{left:447.878533pt;}
.x1e{left:453.042933pt;}
.x18{left:455.432000pt;}
.x1f{left:459.186933pt;}
.x13{left:460.604800pt;}
.x11{left:496.138133pt;}
.x22{left:515.044800pt;}
.x10{left:518.631467pt;}
.xf{left:525.911467pt;}
.x16{left:589.770933pt;}
.x2{left:616.324800pt;}
.x20{left:625.480267pt;}
.x15{left:653.392533pt;}
.x21{left:672.285600pt;}
}




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