
    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_65ab45c0ca6a7283f88a51ee.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_7784f99ffe3f8eef49da8820.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_f8e8780db108fcdee4126d4b.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.925781;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_2ccc05b53570cd29bc4db8c8.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_65375a33204fb0b3f1fd6209.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_852ae13b1a853cb8bfcd6a50.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.093262;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_35b8fc63817f70bd9826f25a.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_cd6e45ba3946c6c2a9b07e1c.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_bb747b37aba4864d19e378d6.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.893555;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_ada9e7ddd8498c502ea554d6.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.887695;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_6b0bad798c1910b8b4e71983.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.877441;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-21.701400px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:1.620000px;}
.v3{vertical-align:28.236600px;}
.v1{vertical-align:30.381600px;}
.ls8c{letter-spacing:-2.640000px;}
.ls62{letter-spacing:-1.140000px;}
.ls8f{letter-spacing:-1.008000px;}
.ls8e{letter-spacing:-0.960000px;}
.ls3{letter-spacing:-0.780000px;}
.ls56{letter-spacing:-0.480000px;}
.ls5d{letter-spacing:-0.420000px;}
.ls63{letter-spacing:-0.240000px;}
.ls38{letter-spacing:-0.180000px;}
.ls8d{letter-spacing:-0.144000px;}
.ls39{letter-spacing:-0.120000px;}
.ls4{letter-spacing:-0.060000px;}
.ls78{letter-spacing:-0.048000px;}
.ls2{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.003540px;}
.ls1f{letter-spacing:0.060000px;}
.ls54{letter-spacing:0.096000px;}
.lse{letter-spacing:0.120000px;}
.ls75{letter-spacing:0.144000px;}
.ls27{letter-spacing:0.180000px;}
.ls6e{letter-spacing:0.192000px;}
.ls17{letter-spacing:0.240000px;}
.ls7d{letter-spacing:0.288000px;}
.ls21{letter-spacing:0.300000px;}
.ls76{letter-spacing:0.336000px;}
.ls1c{letter-spacing:0.360000px;}
.ls71{letter-spacing:0.384000px;}
.lsf{letter-spacing:0.420000px;}
.ls55{letter-spacing:0.432000px;}
.ls23{letter-spacing:0.480000px;}
.lsb{letter-spacing:0.540000px;}
.ls65{letter-spacing:0.576000px;}
.ls44{letter-spacing:0.588000px;}
.ls16{letter-spacing:0.600000px;}
.ls7e{letter-spacing:0.624000px;}
.ls12{letter-spacing:0.660000px;}
.ls72{letter-spacing:0.672000px;}
.ls8{letter-spacing:0.720000px;}
.ls53{letter-spacing:0.768000px;}
.ls2b{letter-spacing:0.780000px;}
.ls5e{letter-spacing:0.816000px;}
.ls29{letter-spacing:0.840000px;}
.ls1e{letter-spacing:0.900000px;}
.ls7b{letter-spacing:0.912000px;}
.ls22{letter-spacing:0.960000px;}
.ls73{letter-spacing:1.008000px;}
.ls7{letter-spacing:1.020000px;}
.ls7f{letter-spacing:1.056000px;}
.lsa{letter-spacing:1.080000px;}
.ls77{letter-spacing:1.104000px;}
.ls2f{letter-spacing:1.140000px;}
.ls24{letter-spacing:1.200000px;}
.ls25{letter-spacing:1.260000px;}
.ls2a{letter-spacing:1.320000px;}
.ls80{letter-spacing:1.344000px;}
.ls18{letter-spacing:1.380000px;}
.ls79{letter-spacing:1.392000px;}
.ls9{letter-spacing:1.440000px;}
.ls85{letter-spacing:1.488000px;}
.ls13{letter-spacing:1.500000px;}
.ls81{letter-spacing:1.536000px;}
.ls26{letter-spacing:1.560000px;}
.ls88{letter-spacing:1.584000px;}
.ls1d{letter-spacing:1.620000px;}
.ls4e{letter-spacing:1.680000px;}
.ls14{letter-spacing:1.740000px;}
.ls82{letter-spacing:1.776000px;}
.lsd{letter-spacing:1.800000px;}
.ls74{letter-spacing:1.824000px;}
.ls59{letter-spacing:1.860000px;}
.lsc{letter-spacing:1.920000px;}
.ls8b{letter-spacing:1.968000px;}
.ls10{letter-spacing:1.980000px;}
.ls6c{letter-spacing:2.016000px;}
.ls47{letter-spacing:2.040000px;}
.ls83{letter-spacing:2.064000px;}
.ls1b{letter-spacing:2.100000px;}
.ls7a{letter-spacing:2.112000px;}
.ls28{letter-spacing:2.160000px;}
.ls84{letter-spacing:2.208000px;}
.ls4f{letter-spacing:2.220000px;}
.ls8a{letter-spacing:2.256000px;}
.ls1a{letter-spacing:2.280000px;}
.ls5a{letter-spacing:2.340000px;}
.ls41{letter-spacing:2.400000px;}
.ls89{letter-spacing:2.448000px;}
.ls61{letter-spacing:2.460000px;}
.ls87{letter-spacing:2.496000px;}
.ls6{letter-spacing:2.520000px;}
.ls2c{letter-spacing:2.580000px;}
.ls70{letter-spacing:2.592000px;}
.ls3f{letter-spacing:2.640000px;}
.ls3a{letter-spacing:2.700000px;}
.ls50{letter-spacing:2.760000px;}
.ls6f{letter-spacing:2.784000px;}
.ls5{letter-spacing:2.820000px;}
.ls6d{letter-spacing:2.832000px;}
.ls11{letter-spacing:2.880000px;}
.ls86{letter-spacing:2.928000px;}
.ls2d{letter-spacing:2.940000px;}
.ls30{letter-spacing:3.000000px;}
.ls68{letter-spacing:3.060000px;}
.ls43{letter-spacing:3.120000px;}
.ls58{letter-spacing:3.240000px;}
.ls3b{letter-spacing:3.300000px;}
.ls3c{letter-spacing:3.360000px;}
.ls20{letter-spacing:3.420000px;}
.ls67{letter-spacing:3.480000px;}
.ls6b{letter-spacing:3.504000px;}
.ls51{letter-spacing:3.540000px;}
.ls40{letter-spacing:3.660000px;}
.ls35{letter-spacing:3.780000px;}
.ls15{letter-spacing:4.020000px;}
.ls34{letter-spacing:4.380000px;}
.ls45{letter-spacing:4.560000px;}
.ls7c{letter-spacing:4.848000px;}
.ls49{letter-spacing:5.160000px;}
.ls5b{letter-spacing:5.340000px;}
.ls33{letter-spacing:5.400000px;}
.ls42{letter-spacing:5.460000px;}
.ls52{letter-spacing:5.520000px;}
.ls5f{letter-spacing:5.580000px;}
.ls4a{letter-spacing:5.880000px;}
.ls46{letter-spacing:5.940000px;}
.ls32{letter-spacing:6.000000px;}
.ls2e{letter-spacing:6.060000px;}
.ls60{letter-spacing:6.480000px;}
.ls3e{letter-spacing:6.540000px;}
.ls64{letter-spacing:6.600000px;}
.ls66{letter-spacing:6.780000px;}
.ls37{letter-spacing:7.140000px;}
.ls6a{letter-spacing:7.200000px;}
.ls57{letter-spacing:7.260000px;}
.ls19{letter-spacing:7.320000px;}
.ls69{letter-spacing:7.680000px;}
.ls4c{letter-spacing:7.740000px;}
.ls31{letter-spacing:7.980000px;}
.ls3d{letter-spacing:8.340000px;}
.ls36{letter-spacing:8.700000px;}
.ls5c{letter-spacing:10.320000px;}
.ls48{letter-spacing:10.740000px;}
.ls4d{letter-spacing:10.800000px;}
.ls4b{letter-spacing:10.860000px;}
.ls0{letter-spacing:59.532876px;}
.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;}
}
.wsa5{word-spacing:-50.208000px;}
.wsa4{word-spacing:-50.064000px;}
.ws8f{word-spacing:-48.336000px;}
.wsa6{word-spacing:-48.240000px;}
.ws5a{word-spacing:-22.260000px;}
.ws2b{word-spacing:-20.880000px;}
.ws27{word-spacing:-20.460000px;}
.ws5e{word-spacing:-20.340000px;}
.ws8d{word-spacing:-20.100000px;}
.ws65{word-spacing:-19.560000px;}
.ws9{word-spacing:-19.380000px;}
.ws25{word-spacing:-18.360000px;}
.ws5f{word-spacing:-18.120000px;}
.ws8c{word-spacing:-18.060000px;}
.ws8e{word-spacing:-17.820000px;}
.ws7a{word-spacing:-17.460000px;}
.ws88{word-spacing:-17.400000px;}
.ws3e{word-spacing:-17.220000px;}
.ws29{word-spacing:-17.040000px;}
.ws7{word-spacing:-16.920000px;}
.ws79{word-spacing:-16.740000px;}
.ws1{word-spacing:-16.680000px;}
.ws76{word-spacing:-16.620000px;}
.ws26{word-spacing:-16.560000px;}
.ws78{word-spacing:-16.500000px;}
.ws5c{word-spacing:-16.200000px;}
.ws6{word-spacing:-16.020000px;}
.ws86{word-spacing:-15.780000px;}
.wsa{word-spacing:-15.660000px;}
.ws70{word-spacing:-15.600000px;}
.ws75{word-spacing:-15.540000px;}
.ws8{word-spacing:-15.480000px;}
.ws5b{word-spacing:-15.420000px;}
.ws7b{word-spacing:-15.240000px;}
.ws5d{word-spacing:-15.180000px;}
.ws2a{word-spacing:-15.000000px;}
.ws87{word-spacing:-14.940000px;}
.wsa7{word-spacing:-14.832000px;}
.ws77{word-spacing:-13.860000px;}
.wsa3{word-spacing:-13.776000px;}
.ws28{word-spacing:-13.500000px;}
.ws3{word-spacing:-13.344000px;}
.wsa0{word-spacing:-12.912000px;}
.wsa1{word-spacing:-12.624000px;}
.ws2{word-spacing:-12.510000px;}
.ws55{word-spacing:-12.000000px;}
.ws0{word-spacing:-10.210662px;}
.wsa2{word-spacing:-9.360000px;}
.ws7e{word-spacing:-5.940000px;}
.ws22{word-spacing:-3.780000px;}
.ws7f{word-spacing:-3.300000px;}
.ws62{word-spacing:-3.120000px;}
.ws20{word-spacing:-3.000000px;}
.ws5{word-spacing:-2.886000px;}
.ws9e{word-spacing:-2.880000px;}
.ws2c{word-spacing:-2.700000px;}
.ws59{word-spacing:-2.640000px;}
.ws97{word-spacing:-2.592000px;}
.wsba{word-spacing:-2.496000px;}
.ws74{word-spacing:-2.400000px;}
.wsbd{word-spacing:-2.304000px;}
.ws34{word-spacing:-2.220000px;}
.wsa8{word-spacing:-2.112000px;}
.ws3a{word-spacing:-2.040000px;}
.wsb2{word-spacing:-2.016000px;}
.ws1e{word-spacing:-1.980000px;}
.ws18{word-spacing:-1.800000px;}
.ws2d{word-spacing:-1.740000px;}
.ws32{word-spacing:-1.560000px;}
.ws33{word-spacing:-1.500000px;}
.wsb9{word-spacing:-1.488000px;}
.ws61{word-spacing:-1.320000px;}
.ws9b{word-spacing:-1.104000px;}
.ws1a{word-spacing:-1.080000px;}
.wsae{word-spacing:-1.056000px;}
.ws23{word-spacing:-1.020000px;}
.ws73{word-spacing:-0.960000px;}
.wsa9{word-spacing:-0.912000px;}
.ws6f{word-spacing:-0.840000px;}
.ws89{word-spacing:-0.780000px;}
.wsab{word-spacing:-0.768000px;}
.wsbb{word-spacing:-0.720000px;}
.ws24{word-spacing:-0.660000px;}
.wsb4{word-spacing:-0.624000px;}
.ws21{word-spacing:-0.600000px;}
.wsb3{word-spacing:-0.576000px;}
.ws37{word-spacing:-0.480000px;}
.ws63{word-spacing:-0.420000px;}
.ws99{word-spacing:-0.384000px;}
.ws17{word-spacing:-0.360000px;}
.ws9a{word-spacing:-0.336000px;}
.ws42{word-spacing:-0.300000px;}
.wsb7{word-spacing:-0.288000px;}
.wsb6{word-spacing:-0.240000px;}
.wsad{word-spacing:-0.192000px;}
.ws52{word-spacing:-0.180000px;}
.ws3f{word-spacing:-0.120000px;}
.ws38{word-spacing:-0.060000px;}
.ws4{word-spacing:0.000000px;}
.ws16{word-spacing:0.060000px;}
.ws30{word-spacing:0.120000px;}
.wsbf{word-spacing:0.144000px;}
.ws3b{word-spacing:0.180000px;}
.wsac{word-spacing:0.240000px;}
.ws95{word-spacing:0.288000px;}
.ws49{word-spacing:0.360000px;}
.wsb0{word-spacing:0.384000px;}
.ws58{word-spacing:0.480000px;}
.ws1b{word-spacing:0.540000px;}
.ws35{word-spacing:0.600000px;}
.ws98{word-spacing:0.672000px;}
.ws51{word-spacing:0.720000px;}
.ws84{word-spacing:0.900000px;}
.ws3c{word-spacing:0.960000px;}
.wsb5{word-spacing:1.008000px;}
.ws13{word-spacing:1.020000px;}
.ws72{word-spacing:1.140000px;}
.ws6e{word-spacing:1.200000px;}
.ws68{word-spacing:1.248000px;}
.ws94{word-spacing:1.260000px;}
.ws9c{word-spacing:1.296000px;}
.ws57{word-spacing:1.320000px;}
.ws64{word-spacing:1.344000px;}
.ws9d{word-spacing:1.392000px;}
.ws93{word-spacing:1.440000px;}
.wsb1{word-spacing:1.488000px;}
.ws83{word-spacing:1.500000px;}
.ws14{word-spacing:1.560000px;}
.ws11{word-spacing:1.620000px;}
.ws44{word-spacing:1.680000px;}
.ws6c{word-spacing:1.740000px;}
.ws1c{word-spacing:1.800000px;}
.wsaa{word-spacing:1.968000px;}
.ws50{word-spacing:1.980000px;}
.ws48{word-spacing:2.100000px;}
.ws90{word-spacing:2.160000px;}
.ws60{word-spacing:2.280000px;}
.ws7d{word-spacing:2.340000px;}
.wsaf{word-spacing:2.352000px;}
.ws36{word-spacing:2.400000px;}
.ws67{word-spacing:2.460000px;}
.ws45{word-spacing:2.520000px;}
.ws82{word-spacing:2.580000px;}
.ws39{word-spacing:2.640000px;}
.ws12{word-spacing:2.700000px;}
.ws1f{word-spacing:2.760000px;}
.ws96{word-spacing:2.784000px;}
.ws1d{word-spacing:2.820000px;}
.ws6a{word-spacing:2.880000px;}
.ws2e{word-spacing:2.940000px;}
.ws43{word-spacing:3.000000px;}
.ws9f{word-spacing:3.072000px;}
.wsbc{word-spacing:3.120000px;}
.ws3d{word-spacing:3.300000px;}
.wsbe{word-spacing:3.360000px;}
.wsb8{word-spacing:3.408000px;}
.wsc{word-spacing:3.420000px;}
.ws8a{word-spacing:3.480000px;}
.ws6b{word-spacing:3.540000px;}
.ws6d{word-spacing:3.600000px;}
.ws47{word-spacing:3.660000px;}
.ws41{word-spacing:3.720000px;}
.ws46{word-spacing:3.792000px;}
.ws31{word-spacing:3.840000px;}
.ws8b{word-spacing:3.900000px;}
.ws4a{word-spacing:3.936000px;}
.ws40{word-spacing:3.960000px;}
.ws4e{word-spacing:3.984000px;}
.ws56{word-spacing:4.020000px;}
.ws4f{word-spacing:4.080000px;}
.ws2f{word-spacing:4.140000px;}
.wsd{word-spacing:4.200000px;}
.ws80{word-spacing:4.260000px;}
.ws19{word-spacing:4.380000px;}
.ws53{word-spacing:4.416000px;}
.wsf{word-spacing:4.500000px;}
.ws85{word-spacing:4.512000px;}
.ws15{word-spacing:4.560000px;}
.ws66{word-spacing:4.620000px;}
.ws7c{word-spacing:4.680000px;}
.ws91{word-spacing:4.740000px;}
.ws4b{word-spacing:4.752000px;}
.ws10{word-spacing:4.860000px;}
.wsb{word-spacing:4.920000px;}
.wse{word-spacing:4.980000px;}
.ws92{word-spacing:5.520000px;}
.ws81{word-spacing:7.320000px;}
.ws69{word-spacing:357.120000px;}
.ws71{word-spacing:368.208000px;}
.ws54{word-spacing:369.120000px;}
.ws4c{word-spacing:380.208000px;}
.ws4d{word-spacing:392.208000px;}
._d{margin-left:-2898.096000px;}
._f{margin-left:-2874.288000px;}
._e{margin-left:-10.740000px;}
._2{margin-left:-9.368400px;}
._10{margin-left:-7.740000px;}
._7{margin-left:-6.712200px;}
._1{margin-left:-5.376000px;}
._4{margin-left:-3.960000px;}
._0{margin-left:-2.310000px;}
._5{margin-left:-1.020000px;}
._6{width:1.056000px;}
._b{width:2.184000px;}
._8{width:3.300000px;}
._9{width:5.280000px;}
._a{width:6.840000px;}
._c{width:8.340000px;}
._3{width:59.553414px;}
._13{width:340.704000px;}
._12{width:349.632000px;}
._14{width:364.464000px;}
._11{width:365.616000px;}
._22{width:379.830000px;}
._1a{width:392.208000px;}
._17{width:404.208000px;}
._19{width:416.208000px;}
._1f{width:422.208000px;}
._1c{width:426.240000px;}
._23{width:438.240000px;}
._1b{width:470.208000px;}
._16{width:550.176000px;}
._15{width:555.504000px;}
._1d{width:556.824000px;}
._18{width:560.502000px;}
._24{width:568.824000px;}
._21{width:571.464000px;}
._1e{width:583.464000px;}
._20{width:595.464000px;}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:26.235000px;}
.fsa{font-size:34.980000px;}
.fs4{font-size:36.729000px;}
.fs7{font-size:39.000000px;}
.fs0{font-size:42.000000px;}
.fs6{font-size:45.000000px;}
.fs9{font-size:48.000000px;}
.fsb{font-size:54.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;}
.y30{bottom:47.777250px;}
.y11d{bottom:82.928850px;}
.y18a{bottom:83.365650px;}
.y1ac{bottom:83.515350px;}
.y11b{bottom:83.571750px;}
.ya2{bottom:83.628600px;}
.y6e{bottom:83.770350px;}
.y65{bottom:83.772600px;}
.yd7{bottom:83.784450px;}
.y122{bottom:84.629550px;}
.ye5{bottom:85.697700px;}
.y14f{bottom:86.335350px;}
.y2d{bottom:87.908550px;}
.yd2{bottom:91.253850px;}
.y1e3{bottom:92.121900px;}
.yee{bottom:93.410700px;}
.y11c{bottom:98.672850px;}
.y11a{bottom:99.315750px;}
.yd6{bottom:99.528450px;}
.y121{bottom:100.373550px;}
.ye4{bottom:101.441700px;}
.ya1{bottom:101.628600px;}
.y6d{bottom:101.770350px;}
.y64{bottom:101.772600px;}
.y2c{bottom:102.904800px;}
.ye2{bottom:103.509150px;}
.y14e{bottom:104.335350px;}
.y1e2{bottom:107.121900px;}
.yd1{bottom:109.253850px;}
.yed{bottom:109.658700px;}
.y12b{bottom:113.076000px;}
.y2b{bottom:117.904800px;}
.ya0{bottom:119.628600px;}
.ye1{bottom:119.757150px;}
.y6c{bottom:119.770350px;}
.y63{bottom:119.772600px;}
.y1ab{bottom:119.920350px;}
.y1e1{bottom:122.121900px;}
.y14d{bottom:122.335350px;}
.yec{bottom:125.906700px;}
.yd0{bottom:127.253850px;}
.y12a{bottom:129.324000px;}
.ye0{bottom:136.005150px;}
.y1e0{bottom:137.121900px;}
.y9f{bottom:137.628600px;}
.y6b{bottom:137.770350px;}
.y62{bottom:137.772600px;}
.y1aa{bottom:137.920350px;}
.y14c{bottom:140.335350px;}
.yeb{bottom:142.154700px;}
.ycf{bottom:145.253850px;}
.y129{bottom:145.572000px;}
.y1df{bottom:152.121900px;}
.ydf{bottom:152.253150px;}
.y9e{bottom:155.628600px;}
.y6a{bottom:155.770350px;}
.y61{bottom:155.772600px;}
.y1a9{bottom:155.920350px;}
.yea{bottom:158.402700px;}
.y128{bottom:161.820000px;}
.yce{bottom:163.253850px;}
.y1de{bottom:167.121900px;}
.yde{bottom:168.501150px;}
.y9d{bottom:173.628600px;}
.y69{bottom:173.770350px;}
.y60{bottom:173.772600px;}
.y1a8{bottom:173.920350px;}
.ye9{bottom:174.650700px;}
.y14b{bottom:175.930350px;}
.y127{bottom:178.068000px;}
.ycd{bottom:181.253850px;}
.y1dd{bottom:182.121900px;}
.y2a{bottom:183.364200px;}
.ydd{bottom:184.749150px;}
.y9c{bottom:191.628600px;}
.y68{bottom:191.770350px;}
.y5f{bottom:191.772600px;}
.y1a7{bottom:191.920350px;}
.y126{bottom:194.316000px;}
.y1dc{bottom:197.121900px;}
.ycc{bottom:199.253850px;}
.ye8{bottom:206.162700px;}
.y1a6{bottom:209.515350px;}
.y9b{bottom:209.628600px;}
.y17e{bottom:209.770350px;}
.y5e{bottom:209.772600px;}
.y29{bottom:209.959200px;}
.y1db{bottom:212.121900px;}
.ydc{bottom:216.261150px;}
.ycb{bottom:217.253850px;}
.y125{bottom:225.828000px;}
.y1da{bottom:227.121900px;}
.y28{bottom:227.209200px;}
.y9a{bottom:227.628600px;}
.y17d{bottom:227.770350px;}
.y5d{bottom:227.772600px;}
.y14a{bottom:230.470350px;}
.yca{bottom:235.253850px;}
.y11f{bottom:241.057800px;}
.ye7{bottom:241.060350px;}
.y1d9{bottom:242.121900px;}
.y27{bottom:244.459200px;}
.y99{bottom:245.628600px;}
.y17c{bottom:245.770350px;}
.y5c{bottom:245.772600px;}
.y1a5{bottom:245.920350px;}
.y149{bottom:248.470350px;}
.ydb{bottom:251.156250px;}
.yc9{bottom:253.253850px;}
.y1d8{bottom:257.121900px;}
.y219{bottom:260.263500px;}
.y124{bottom:260.723100px;}
.y26{bottom:261.709200px;}
.y98{bottom:263.628600px;}
.y17b{bottom:263.770350px;}
.y5b{bottom:263.772600px;}
.y1a4{bottom:263.920350px;}
.y148{bottom:266.470350px;}
.yc8{bottom:271.253850px;}
.y1d7{bottom:272.121900px;}
.y218{bottom:275.263500px;}
.y25{bottom:278.959200px;}
.y97{bottom:281.628600px;}
.y5a{bottom:281.772600px;}
.y17a{bottom:281.800350px;}
.y1a3{bottom:281.920350px;}
.y11e{bottom:281.932650px;}
.yef{bottom:282.698700px;}
.y147{bottom:284.470350px;}
.y1d6{bottom:287.121900px;}
.yc7{bottom:289.253850px;}
.y217{bottom:290.263500px;}
.y24{bottom:296.209200px;}
.yda{bottom:299.571750px;}
.y96{bottom:299.628600px;}
.y59{bottom:299.772600px;}
.y179{bottom:299.800350px;}
.y1a2{bottom:299.920350px;}
.y1d5{bottom:302.121900px;}
.y123{bottom:302.235750px;}
.y146{bottom:302.470350px;}
.y216{bottom:305.263500px;}
.yc6{bottom:307.253850px;}
.y23{bottom:313.459200px;}
.yd9{bottom:315.315750px;}
.y1d4{bottom:317.121900px;}
.y95{bottom:317.628600px;}
.y58{bottom:317.772600px;}
.y178{bottom:317.800350px;}
.y1a1{bottom:317.920350px;}
.y215{bottom:320.263500px;}
.y145{bottom:320.470350px;}
.yc5{bottom:325.253850px;}
.y22{bottom:330.709200px;}
.y1d3{bottom:332.121900px;}
.y214{bottom:335.263500px;}
.y94{bottom:335.628600px;}
.y57{bottom:335.772600px;}
.y177{bottom:335.800350px;}
.y1a0{bottom:335.920350px;}
.y144{bottom:338.470350px;}
.yc4{bottom:343.253850px;}
.y1d2{bottom:347.121900px;}
.y21{bottom:347.959200px;}
.y213{bottom:350.263500px;}
.y93{bottom:353.628600px;}
.y56{bottom:353.772600px;}
.y176{bottom:353.800350px;}
.y19f{bottom:353.920350px;}
.y143{bottom:356.470350px;}
.yc3{bottom:361.253850px;}
.y1d1{bottom:362.121900px;}
.y20{bottom:365.209200px;}
.y212{bottom:365.263500px;}
.y92{bottom:371.628600px;}
.y55{bottom:371.772600px;}
.y175{bottom:371.800350px;}
.y19e{bottom:371.920350px;}
.y142{bottom:374.470350px;}
.y1d0{bottom:377.121900px;}
.yc2{bottom:379.253850px;}
.y211{bottom:380.263500px;}
.y1f{bottom:382.459200px;}
.y91{bottom:389.628600px;}
.y54{bottom:389.772600px;}
.y174{bottom:389.800350px;}
.y19d{bottom:389.920350px;}
.y1cf{bottom:392.121900px;}
.y141{bottom:392.470350px;}
.y210{bottom:395.263500px;}
.yc1{bottom:397.253850px;}
.y1e{bottom:399.709200px;}
.y1ce{bottom:407.121900px;}
.y90{bottom:407.635350px;}
.y53{bottom:407.772600px;}
.y173{bottom:407.800350px;}
.y19c{bottom:407.920350px;}
.y20f{bottom:410.263500px;}
.y140{bottom:410.470350px;}
.yc0{bottom:415.253850px;}
.y1d{bottom:416.959200px;}
.y1cd{bottom:422.121900px;}
.y20e{bottom:425.263500px;}
.y8f{bottom:425.635350px;}
.y52{bottom:425.772600px;}
.y172{bottom:425.800350px;}
.y19b{bottom:425.920350px;}
.y13f{bottom:428.470350px;}
.ybf{bottom:433.253850px;}
.y1c{bottom:434.209200px;}
.y1cc{bottom:437.121900px;}
.y20d{bottom:440.263500px;}
.y8e{bottom:443.635350px;}
.y51{bottom:443.772600px;}
.y171{bottom:443.800350px;}
.y19a{bottom:443.920350px;}
.y13e{bottom:446.470350px;}
.ybe{bottom:451.253850px;}
.y1b{bottom:451.459200px;}
.y1cb{bottom:452.121900px;}
.y20c{bottom:455.263500px;}
.y8d{bottom:461.635350px;}
.y50{bottom:461.772600px;}
.y170{bottom:461.800350px;}
.y199{bottom:461.920350px;}
.y13d{bottom:464.470350px;}
.y1ca{bottom:467.121900px;}
.y1a{bottom:468.709200px;}
.ybd{bottom:469.253850px;}
.y20b{bottom:470.263500px;}
.y8c{bottom:479.635350px;}
.y4f{bottom:479.772600px;}
.y16f{bottom:479.800350px;}
.y198{bottom:479.920350px;}
.y1c9{bottom:482.121900px;}
.y13c{bottom:482.470350px;}
.y20a{bottom:485.263500px;}
.y19{bottom:485.959200px;}
.ybc{bottom:487.253850px;}
.y1c8{bottom:497.121900px;}
.y8b{bottom:497.635350px;}
.y4e{bottom:497.772600px;}
.y16e{bottom:497.800350px;}
.y197{bottom:497.920350px;}
.y209{bottom:500.263500px;}
.y13b{bottom:500.470350px;}
.y18{bottom:503.209200px;}
.ybb{bottom:505.253850px;}
.y1c7{bottom:512.121900px;}
.y208{bottom:515.263500px;}
.y8a{bottom:515.635350px;}
.y4d{bottom:515.772600px;}
.y16d{bottom:515.800350px;}
.y196{bottom:515.920350px;}
.y13a{bottom:518.470350px;}
.y17{bottom:520.459200px;}
.yba{bottom:523.253850px;}
.y1c6{bottom:527.121900px;}
.y207{bottom:530.263500px;}
.y89{bottom:533.635350px;}
.y4c{bottom:533.772600px;}
.y16c{bottom:533.800350px;}
.y195{bottom:533.920350px;}
.y139{bottom:536.470350px;}
.y16{bottom:537.709200px;}
.yb9{bottom:541.253850px;}
.y1c5{bottom:542.121900px;}
.y206{bottom:545.263500px;}
.y88{bottom:551.635350px;}
.y182{bottom:551.770350px;}
.y4b{bottom:551.772600px;}
.y16b{bottom:551.800350px;}
.y194{bottom:551.920350px;}
.y138{bottom:554.470350px;}
.y15{bottom:554.959200px;}
.y1c4{bottom:557.121900px;}
.yb8{bottom:559.253850px;}
.y205{bottom:560.263500px;}
.y87{bottom:569.635350px;}
.y181{bottom:569.770350px;}
.y4a{bottom:569.772600px;}
.y16a{bottom:569.800350px;}
.y193{bottom:569.920350px;}
.y1c3{bottom:572.121900px;}
.y14{bottom:572.209200px;}
.y137{bottom:572.470350px;}
.y204{bottom:575.263500px;}
.yb7{bottom:577.253850px;}
.y1c2{bottom:587.121900px;}
.y86{bottom:587.635350px;}
.y180{bottom:587.770350px;}
.y49{bottom:587.772600px;}
.y169{bottom:587.800350px;}
.y192{bottom:587.920350px;}
.y13{bottom:589.459200px;}
.y203{bottom:590.263500px;}
.y136{bottom:590.470350px;}
.yb6{bottom:595.253850px;}
.y1c1{bottom:602.121900px;}
.y202{bottom:605.263500px;}
.y189{bottom:605.635350px;}
.y17f{bottom:605.770350px;}
.y48{bottom:605.772600px;}
.y168{bottom:605.800350px;}
.y191{bottom:605.920350px;}
.y12{bottom:606.709200px;}
.y135{bottom:608.470350px;}
.y1c0{bottom:617.121900px;}
.y201{bottom:620.263500px;}
.y85{bottom:623.230350px;}
.y188{bottom:623.635350px;}
.yd5{bottom:623.770350px;}
.y47{bottom:623.772600px;}
.y167{bottom:623.800350px;}
.y190{bottom:623.920350px;}
.y11{bottom:623.959200px;}
.y134{bottom:626.470350px;}
.yb5{bottom:630.094350px;}
.y1bf{bottom:632.121900px;}
.y200{bottom:635.263500px;}
.y187{bottom:641.635350px;}
.yd4{bottom:641.770350px;}
.y46{bottom:641.772600px;}
.y166{bottom:641.800350px;}
.y18f{bottom:641.920350px;}
.y133{bottom:644.470350px;}
.yb4{bottom:645.700350px;}
.y1be{bottom:647.121900px;}
.y103{bottom:649.112100px;}
.y1ff{bottom:650.263500px;}
.y186{bottom:659.635350px;}
.yd3{bottom:659.770350px;}
.y45{bottom:659.772600px;}
.y119{bottom:659.777100px;}
.y165{bottom:659.800350px;}
.y18e{bottom:659.920350px;}
.yb3{bottom:660.048600px;}
.y1bd{bottom:662.121900px;}
.y132{bottom:662.470350px;}
.y1fe{bottom:665.263500px;}
.y102{bottom:667.112100px;}
.y10{bottom:669.117300px;}
.y1bc{bottom:677.121900px;}
.y185{bottom:677.635350px;}
.yb2{bottom:677.643600px;}
.y84{bottom:677.770350px;}
.y44{bottom:677.772600px;}
.y118{bottom:677.777100px;}
.y164{bottom:677.800350px;}
.y18d{bottom:677.920350px;}
.y1fd{bottom:680.263500px;}
.y131{bottom:680.470350px;}
.yf{bottom:681.568050px;}
.y101{bottom:685.112100px;}
.y1bb{bottom:692.121900px;}
.y1fc{bottom:695.263500px;}
.y184{bottom:695.635350px;}
.y83{bottom:695.770350px;}
.y43{bottom:695.772600px;}
.y117{bottom:695.777100px;}
.y163{bottom:695.800350px;}
.y100{bottom:703.112100px;}
.y1ba{bottom:707.121900px;}
.y1fb{bottom:710.263500px;}
.ye{bottom:713.283600px;}
.yb1{bottom:713.493600px;}
.y18c{bottom:713.515350px;}
.y82{bottom:713.770350px;}
.y42{bottom:713.772600px;}
.y116{bottom:713.777100px;}
.y162{bottom:713.800350px;}
.y130{bottom:714.070350px;}
.yff{bottom:721.112100px;}
.y1b9{bottom:722.121900px;}
.y1fa{bottom:725.263500px;}
.y183{bottom:731.230350px;}
.yb0{bottom:731.493600px;}
.y12f{bottom:731.665350px;}
.y81{bottom:731.770350px;}
.y41{bottom:731.772600px;}
.y115{bottom:731.777100px;}
.y161{bottom:731.800350px;}
.yd{bottom:732.208950px;}
.y1b8{bottom:737.121900px;}
.yfe{bottom:739.112100px;}
.y1f9{bottom:740.263500px;}
.yc{bottom:745.708950px;}
.yaf{bottom:749.493600px;}
.y80{bottom:749.770350px;}
.y40{bottom:749.772600px;}
.y114{bottom:749.777100px;}
.y160{bottom:749.800350px;}
.y1b7{bottom:752.121900px;}
.yb{bottom:753.783600px;}
.y1f8{bottom:755.263500px;}
.yfd{bottom:757.112100px;}
.ya{bottom:767.283600px;}
.yae{bottom:767.493600px;}
.y12e{bottom:767.515350px;}
.y7f{bottom:767.770350px;}
.y3f{bottom:767.772600px;}
.y113{bottom:767.777100px;}
.y15f{bottom:767.800350px;}
.y1f7{bottom:770.263500px;}
.yfc{bottom:775.112100px;}
.y1b6{bottom:785.245350px;}
.y1f6{bottom:785.263500px;}
.y12d{bottom:785.515350px;}
.y7e{bottom:785.770350px;}
.y3e{bottom:785.772600px;}
.y112{bottom:785.777100px;}
.y15e{bottom:785.800350px;}
.y9{bottom:786.208950px;}
.yfb{bottom:793.112100px;}
.y1f5{bottom:800.263500px;}
.yad{bottom:803.358600px;}
.y12c{bottom:803.515350px;}
.y7d{bottom:803.770350px;}
.y3d{bottom:803.772600px;}
.y111{bottom:803.777100px;}
.y15d{bottom:803.800350px;}
.yfa{bottom:811.112100px;}
.y8{bottom:814.930800px;}
.y1f4{bottom:815.263500px;}
.y7c{bottom:821.770350px;}
.y3c{bottom:821.772600px;}
.y110{bottom:821.777100px;}
.y15c{bottom:821.800350px;}
.yf9{bottom:829.112100px;}
.y1f3{bottom:830.263500px;}
.yac{bottom:839.223600px;}
.y7b{bottom:839.770350px;}
.y3b{bottom:839.772600px;}
.y10f{bottom:839.777100px;}
.y1b5{bottom:839.785350px;}
.y15b{bottom:839.800350px;}
.y1f2{bottom:845.263500px;}
.yf8{bottom:847.112100px;}
.y1b4{bottom:857.380350px;}
.y7a{bottom:857.770350px;}
.y3a{bottom:857.772600px;}
.y10e{bottom:857.777100px;}
.y15a{bottom:857.800350px;}
.y1f1{bottom:860.263500px;}
.y7{bottom:861.082800px;}
.yf7{bottom:865.112100px;}
.y1f0{bottom:875.263500px;}
.y79{bottom:875.770350px;}
.y39{bottom:875.772600px;}
.y10d{bottom:875.777100px;}
.y159{bottom:875.800350px;}
.yf6{bottom:883.112100px;}
.y1ef{bottom:890.263500px;}
.yab{bottom:893.763600px;}
.y78{bottom:893.770350px;}
.y38{bottom:893.772600px;}
.y10c{bottom:893.777100px;}
.y1b3{bottom:893.785350px;}
.y158{bottom:893.800350px;}
.y6{bottom:897.543600px;}
.y1ee{bottom:905.263500px;}
.y1b2{bottom:911.380350px;}
.yaa{bottom:911.763600px;}
.y77{bottom:911.770350px;}
.y37{bottom:911.772600px;}
.y10b{bottom:911.777100px;}
.y157{bottom:911.800350px;}
.yf5{bottom:917.952600px;}
.y1ed{bottom:920.263500px;}
.y18b{bottom:929.365350px;}
.ya9{bottom:929.763600px;}
.y76{bottom:929.770350px;}
.y36{bottom:929.772600px;}
.y10a{bottom:929.777100px;}
.y156{bottom:929.800350px;}
.yf4{bottom:933.558600px;}
.y5{bottom:934.004400px;}
.y1ec{bottom:935.263500px;}
.ya8{bottom:947.763600px;}
.y75{bottom:947.770350px;}
.y35{bottom:947.772600px;}
.y109{bottom:947.777100px;}
.y1b1{bottom:947.785350px;}
.y155{bottom:947.800350px;}
.yf3{bottom:947.922600px;}
.y1eb{bottom:950.263500px;}
.y1ea{bottom:965.263500px;}
.yf2{bottom:965.517600px;}
.ya7{bottom:965.763600px;}
.y74{bottom:965.770350px;}
.y34{bottom:965.772600px;}
.y108{bottom:965.777100px;}
.y1b0{bottom:965.785350px;}
.y154{bottom:965.800350px;}
.y4{bottom:970.465200px;}
.y1e9{bottom:980.263500px;}
.ya6{bottom:983.763600px;}
.y73{bottom:983.770350px;}
.y33{bottom:983.772600px;}
.y107{bottom:983.777100px;}
.y1af{bottom:983.785350px;}
.y153{bottom:983.800350px;}
.y1e8{bottom:995.263500px;}
.yf1{bottom:1001.367600px;}
.y1ae{bottom:1001.380350px;}
.ya5{bottom:1001.763600px;}
.y72{bottom:1001.770350px;}
.y32{bottom:1001.772600px;}
.y106{bottom:1001.777100px;}
.y152{bottom:1001.800350px;}
.y3{bottom:1006.926000px;}
.y1e7{bottom:1010.263500px;}
.yf0{bottom:1019.367600px;}
.ya4{bottom:1019.763600px;}
.y71{bottom:1019.770350px;}
.y67{bottom:1019.772600px;}
.y105{bottom:1019.777100px;}
.y151{bottom:1019.800350px;}
.y1e6{bottom:1025.263500px;}
.y31{bottom:1037.367600px;}
.ya3{bottom:1037.763600px;}
.y70{bottom:1037.770350px;}
.y66{bottom:1037.772600px;}
.y104{bottom:1037.777100px;}
.y1ad{bottom:1037.785350px;}
.y150{bottom:1037.800350px;}
.y1e5{bottom:1040.263500px;}
.y2{bottom:1069.300350px;}
.y1e4{bottom:1132.413900px;}
.y6f{bottom:1132.418700px;}
.ye6{bottom:1132.421700px;}
.y21a{bottom:1132.423500px;}
.yd8{bottom:1132.428450px;}
.ye3{bottom:1132.437150px;}
.y120{bottom:1132.442700px;}
.y2f{bottom:1136.092500px;}
.y2e{bottom:1150.492500px;}
.h6{height:19.125417px;}
.h8{height:28.393066px;}
.h2{height:30.577148px;}
.hc{height:32.761230px;}
.h7{height:32.805176px;}
.h15{height:33.351562px;}
.he{height:34.945312px;}
.hd{height:34.992188px;}
.h10{height:41.689453px;}
.h13{height:42.117188px;}
.h9{height:43.681641px;}
.hb{height:43.718034px;}
.ha{height:43.740234px;}
.h12{height:47.381836px;}
.hf{height:52.646484px;}
.h14{height:54.266484px;}
.h3{height:56.786133px;}
.h5{height:57.121316px;}
.h11{height:58.929500px;}
.h4{height:92.168262px;}
.h1{height:1190.250000px;}
.h0{height:1190.551500px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1f{left:70.582650px;}
.x7{left:76.535400px;}
.x1e{left:78.663900px;}
.x2c{left:92.585400px;}
.x5{left:96.094500px;}
.x1{left:97.795200px;}
.x29{left:99.923700px;}
.x33{left:102.047400px;}
.x2b{left:104.660400px;}
.x4{left:106.299300px;}
.x2e{left:108.620400px;}
.x9{left:110.558550px;}
.x25{left:115.641300px;}
.x2d{left:117.785400px;}
.x3{left:125.427900px;}
.xe{left:131.830350px;}
.x21{left:133.024500px;}
.x20{left:139.684500px;}
.x22{left:145.114500px;}
.xf{left:166.000350px;}
.x23{left:176.524500px;}
.x8{left:190.553550px;}
.x30{left:198.920400px;}
.x2f{left:205.415400px;}
.x26{left:223.681800px;}
.x24{left:230.149500px;}
.x1d{left:246.543900px;}
.x28{left:267.803700px;}
.x6{left:455.041500px;}
.xa{left:457.088550px;}
.x10{left:478.340700px;}
.x34{left:482.579400px;}
.x13{left:489.005700px;}
.xb{left:491.108550px;}
.x15{left:494.420700px;}
.x19{left:497.319750px;}
.x16{left:504.845700px;}
.x14{left:506.495700px;}
.x1b{left:512.362200px;}
.x17{left:545.840700px;}
.x31{left:570.695400px;}
.x32{left:596.065350px;}
.x1a{left:603.362250px;}
.x12{left:604.730700px;}
.x11{left:612.920700px;}
.x18{left:614.480700px;}
.xd{left:663.492300px;}
.x2{left:693.365400px;}
.x27{left:721.717650px;}
.xc{left:728.391600px;}
.x2a{left:743.807700px;}
.x1c{left:749.651400px;}
@media print{
.v2{vertical-align:-19.290133pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:1.440000pt;}
.v3{vertical-align:25.099200pt;}
.v1{vertical-align:27.005867pt;}
.ls8c{letter-spacing:-2.346667pt;}
.ls62{letter-spacing:-1.013333pt;}
.ls8f{letter-spacing:-0.896000pt;}
.ls8e{letter-spacing:-0.853333pt;}
.ls3{letter-spacing:-0.693333pt;}
.ls56{letter-spacing:-0.426667pt;}
.ls5d{letter-spacing:-0.373333pt;}
.ls63{letter-spacing:-0.213333pt;}
.ls38{letter-spacing:-0.160000pt;}
.ls8d{letter-spacing:-0.128000pt;}
.ls39{letter-spacing:-0.106667pt;}
.ls4{letter-spacing:-0.053333pt;}
.ls78{letter-spacing:-0.042667pt;}
.ls2{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.003147pt;}
.ls1f{letter-spacing:0.053333pt;}
.ls54{letter-spacing:0.085333pt;}
.lse{letter-spacing:0.106667pt;}
.ls75{letter-spacing:0.128000pt;}
.ls27{letter-spacing:0.160000pt;}
.ls6e{letter-spacing:0.170667pt;}
.ls17{letter-spacing:0.213333pt;}
.ls7d{letter-spacing:0.256000pt;}
.ls21{letter-spacing:0.266667pt;}
.ls76{letter-spacing:0.298667pt;}
.ls1c{letter-spacing:0.320000pt;}
.ls71{letter-spacing:0.341333pt;}
.lsf{letter-spacing:0.373333pt;}
.ls55{letter-spacing:0.384000pt;}
.ls23{letter-spacing:0.426667pt;}
.lsb{letter-spacing:0.480000pt;}
.ls65{letter-spacing:0.512000pt;}
.ls44{letter-spacing:0.522667pt;}
.ls16{letter-spacing:0.533333pt;}
.ls7e{letter-spacing:0.554667pt;}
.ls12{letter-spacing:0.586667pt;}
.ls72{letter-spacing:0.597333pt;}
.ls8{letter-spacing:0.640000pt;}
.ls53{letter-spacing:0.682667pt;}
.ls2b{letter-spacing:0.693333pt;}
.ls5e{letter-spacing:0.725333pt;}
.ls29{letter-spacing:0.746667pt;}
.ls1e{letter-spacing:0.800000pt;}
.ls7b{letter-spacing:0.810667pt;}
.ls22{letter-spacing:0.853333pt;}
.ls73{letter-spacing:0.896000pt;}
.ls7{letter-spacing:0.906667pt;}
.ls7f{letter-spacing:0.938667pt;}
.lsa{letter-spacing:0.960000pt;}
.ls77{letter-spacing:0.981333pt;}
.ls2f{letter-spacing:1.013333pt;}
.ls24{letter-spacing:1.066667pt;}
.ls25{letter-spacing:1.120000pt;}
.ls2a{letter-spacing:1.173333pt;}
.ls80{letter-spacing:1.194667pt;}
.ls18{letter-spacing:1.226667pt;}
.ls79{letter-spacing:1.237333pt;}
.ls9{letter-spacing:1.280000pt;}
.ls85{letter-spacing:1.322667pt;}
.ls13{letter-spacing:1.333333pt;}
.ls81{letter-spacing:1.365333pt;}
.ls26{letter-spacing:1.386667pt;}
.ls88{letter-spacing:1.408000pt;}
.ls1d{letter-spacing:1.440000pt;}
.ls4e{letter-spacing:1.493333pt;}
.ls14{letter-spacing:1.546667pt;}
.ls82{letter-spacing:1.578667pt;}
.lsd{letter-spacing:1.600000pt;}
.ls74{letter-spacing:1.621333pt;}
.ls59{letter-spacing:1.653333pt;}
.lsc{letter-spacing:1.706667pt;}
.ls8b{letter-spacing:1.749333pt;}
.ls10{letter-spacing:1.760000pt;}
.ls6c{letter-spacing:1.792000pt;}
.ls47{letter-spacing:1.813333pt;}
.ls83{letter-spacing:1.834667pt;}
.ls1b{letter-spacing:1.866667pt;}
.ls7a{letter-spacing:1.877333pt;}
.ls28{letter-spacing:1.920000pt;}
.ls84{letter-spacing:1.962667pt;}
.ls4f{letter-spacing:1.973333pt;}
.ls8a{letter-spacing:2.005333pt;}
.ls1a{letter-spacing:2.026667pt;}
.ls5a{letter-spacing:2.080000pt;}
.ls41{letter-spacing:2.133333pt;}
.ls89{letter-spacing:2.176000pt;}
.ls61{letter-spacing:2.186667pt;}
.ls87{letter-spacing:2.218667pt;}
.ls6{letter-spacing:2.240000pt;}
.ls2c{letter-spacing:2.293333pt;}
.ls70{letter-spacing:2.304000pt;}
.ls3f{letter-spacing:2.346667pt;}
.ls3a{letter-spacing:2.400000pt;}
.ls50{letter-spacing:2.453333pt;}
.ls6f{letter-spacing:2.474667pt;}
.ls5{letter-spacing:2.506667pt;}
.ls6d{letter-spacing:2.517333pt;}
.ls11{letter-spacing:2.560000pt;}
.ls86{letter-spacing:2.602667pt;}
.ls2d{letter-spacing:2.613333pt;}
.ls30{letter-spacing:2.666667pt;}
.ls68{letter-spacing:2.720000pt;}
.ls43{letter-spacing:2.773333pt;}
.ls58{letter-spacing:2.880000pt;}
.ls3b{letter-spacing:2.933333pt;}
.ls3c{letter-spacing:2.986667pt;}
.ls20{letter-spacing:3.040000pt;}
.ls67{letter-spacing:3.093333pt;}
.ls6b{letter-spacing:3.114667pt;}
.ls51{letter-spacing:3.146667pt;}
.ls40{letter-spacing:3.253333pt;}
.ls35{letter-spacing:3.360000pt;}
.ls15{letter-spacing:3.573333pt;}
.ls34{letter-spacing:3.893333pt;}
.ls45{letter-spacing:4.053333pt;}
.ls7c{letter-spacing:4.309333pt;}
.ls49{letter-spacing:4.586667pt;}
.ls5b{letter-spacing:4.746667pt;}
.ls33{letter-spacing:4.800000pt;}
.ls42{letter-spacing:4.853333pt;}
.ls52{letter-spacing:4.906667pt;}
.ls5f{letter-spacing:4.960000pt;}
.ls4a{letter-spacing:5.226667pt;}
.ls46{letter-spacing:5.280000pt;}
.ls32{letter-spacing:5.333333pt;}
.ls2e{letter-spacing:5.386667pt;}
.ls60{letter-spacing:5.760000pt;}
.ls3e{letter-spacing:5.813333pt;}
.ls64{letter-spacing:5.866667pt;}
.ls66{letter-spacing:6.026667pt;}
.ls37{letter-spacing:6.346667pt;}
.ls6a{letter-spacing:6.400000pt;}
.ls57{letter-spacing:6.453333pt;}
.ls19{letter-spacing:6.506667pt;}
.ls69{letter-spacing:6.826667pt;}
.ls4c{letter-spacing:6.880000pt;}
.ls31{letter-spacing:7.093333pt;}
.ls3d{letter-spacing:7.413333pt;}
.ls36{letter-spacing:7.733333pt;}
.ls5c{letter-spacing:9.173333pt;}
.ls48{letter-spacing:9.546667pt;}
.ls4d{letter-spacing:9.600000pt;}
.ls4b{letter-spacing:9.653333pt;}
.ls0{letter-spacing:52.918112pt;}
.wsa5{word-spacing:-44.629333pt;}
.wsa4{word-spacing:-44.501333pt;}
.ws8f{word-spacing:-42.965333pt;}
.wsa6{word-spacing:-42.880000pt;}
.ws5a{word-spacing:-19.786667pt;}
.ws2b{word-spacing:-18.560000pt;}
.ws27{word-spacing:-18.186667pt;}
.ws5e{word-spacing:-18.080000pt;}
.ws8d{word-spacing:-17.866667pt;}
.ws65{word-spacing:-17.386667pt;}
.ws9{word-spacing:-17.226667pt;}
.ws25{word-spacing:-16.320000pt;}
.ws5f{word-spacing:-16.106667pt;}
.ws8c{word-spacing:-16.053333pt;}
.ws8e{word-spacing:-15.840000pt;}
.ws7a{word-spacing:-15.520000pt;}
.ws88{word-spacing:-15.466667pt;}
.ws3e{word-spacing:-15.306667pt;}
.ws29{word-spacing:-15.146667pt;}
.ws7{word-spacing:-15.040000pt;}
.ws79{word-spacing:-14.880000pt;}
.ws1{word-spacing:-14.826667pt;}
.ws76{word-spacing:-14.773333pt;}
.ws26{word-spacing:-14.720000pt;}
.ws78{word-spacing:-14.666667pt;}
.ws5c{word-spacing:-14.400000pt;}
.ws6{word-spacing:-14.240000pt;}
.ws86{word-spacing:-14.026667pt;}
.wsa{word-spacing:-13.920000pt;}
.ws70{word-spacing:-13.866667pt;}
.ws75{word-spacing:-13.813333pt;}
.ws8{word-spacing:-13.760000pt;}
.ws5b{word-spacing:-13.706667pt;}
.ws7b{word-spacing:-13.546667pt;}
.ws5d{word-spacing:-13.493333pt;}
.ws2a{word-spacing:-13.333333pt;}
.ws87{word-spacing:-13.280000pt;}
.wsa7{word-spacing:-13.184000pt;}
.ws77{word-spacing:-12.320000pt;}
.wsa3{word-spacing:-12.245333pt;}
.ws28{word-spacing:-12.000000pt;}
.ws3{word-spacing:-11.861333pt;}
.wsa0{word-spacing:-11.477333pt;}
.wsa1{word-spacing:-11.221333pt;}
.ws2{word-spacing:-11.120000pt;}
.ws55{word-spacing:-10.666667pt;}
.ws0{word-spacing:-9.076144pt;}
.wsa2{word-spacing:-8.320000pt;}
.ws7e{word-spacing:-5.280000pt;}
.ws22{word-spacing:-3.360000pt;}
.ws7f{word-spacing:-2.933333pt;}
.ws62{word-spacing:-2.773333pt;}
.ws20{word-spacing:-2.666667pt;}
.ws5{word-spacing:-2.565333pt;}
.ws9e{word-spacing:-2.560000pt;}
.ws2c{word-spacing:-2.400000pt;}
.ws59{word-spacing:-2.346667pt;}
.ws97{word-spacing:-2.304000pt;}
.wsba{word-spacing:-2.218667pt;}
.ws74{word-spacing:-2.133333pt;}
.wsbd{word-spacing:-2.048000pt;}
.ws34{word-spacing:-1.973333pt;}
.wsa8{word-spacing:-1.877333pt;}
.ws3a{word-spacing:-1.813333pt;}
.wsb2{word-spacing:-1.792000pt;}
.ws1e{word-spacing:-1.760000pt;}
.ws18{word-spacing:-1.600000pt;}
.ws2d{word-spacing:-1.546667pt;}
.ws32{word-spacing:-1.386667pt;}
.ws33{word-spacing:-1.333333pt;}
.wsb9{word-spacing:-1.322667pt;}
.ws61{word-spacing:-1.173333pt;}
.ws9b{word-spacing:-0.981333pt;}
.ws1a{word-spacing:-0.960000pt;}
.wsae{word-spacing:-0.938667pt;}
.ws23{word-spacing:-0.906667pt;}
.ws73{word-spacing:-0.853333pt;}
.wsa9{word-spacing:-0.810667pt;}
.ws6f{word-spacing:-0.746667pt;}
.ws89{word-spacing:-0.693333pt;}
.wsab{word-spacing:-0.682667pt;}
.wsbb{word-spacing:-0.640000pt;}
.ws24{word-spacing:-0.586667pt;}
.wsb4{word-spacing:-0.554667pt;}
.ws21{word-spacing:-0.533333pt;}
.wsb3{word-spacing:-0.512000pt;}
.ws37{word-spacing:-0.426667pt;}
.ws63{word-spacing:-0.373333pt;}
.ws99{word-spacing:-0.341333pt;}
.ws17{word-spacing:-0.320000pt;}
.ws9a{word-spacing:-0.298667pt;}
.ws42{word-spacing:-0.266667pt;}
.wsb7{word-spacing:-0.256000pt;}
.wsb6{word-spacing:-0.213333pt;}
.wsad{word-spacing:-0.170667pt;}
.ws52{word-spacing:-0.160000pt;}
.ws3f{word-spacing:-0.106667pt;}
.ws38{word-spacing:-0.053333pt;}
.ws4{word-spacing:0.000000pt;}
.ws16{word-spacing:0.053333pt;}
.ws30{word-spacing:0.106667pt;}
.wsbf{word-spacing:0.128000pt;}
.ws3b{word-spacing:0.160000pt;}
.wsac{word-spacing:0.213333pt;}
.ws95{word-spacing:0.256000pt;}
.ws49{word-spacing:0.320000pt;}
.wsb0{word-spacing:0.341333pt;}
.ws58{word-spacing:0.426667pt;}
.ws1b{word-spacing:0.480000pt;}
.ws35{word-spacing:0.533333pt;}
.ws98{word-spacing:0.597333pt;}
.ws51{word-spacing:0.640000pt;}
.ws84{word-spacing:0.800000pt;}
.ws3c{word-spacing:0.853333pt;}
.wsb5{word-spacing:0.896000pt;}
.ws13{word-spacing:0.906667pt;}
.ws72{word-spacing:1.013333pt;}
.ws6e{word-spacing:1.066667pt;}
.ws68{word-spacing:1.109333pt;}
.ws94{word-spacing:1.120000pt;}
.ws9c{word-spacing:1.152000pt;}
.ws57{word-spacing:1.173333pt;}
.ws64{word-spacing:1.194667pt;}
.ws9d{word-spacing:1.237333pt;}
.ws93{word-spacing:1.280000pt;}
.wsb1{word-spacing:1.322667pt;}
.ws83{word-spacing:1.333333pt;}
.ws14{word-spacing:1.386667pt;}
.ws11{word-spacing:1.440000pt;}
.ws44{word-spacing:1.493333pt;}
.ws6c{word-spacing:1.546667pt;}
.ws1c{word-spacing:1.600000pt;}
.wsaa{word-spacing:1.749333pt;}
.ws50{word-spacing:1.760000pt;}
.ws48{word-spacing:1.866667pt;}
.ws90{word-spacing:1.920000pt;}
.ws60{word-spacing:2.026667pt;}
.ws7d{word-spacing:2.080000pt;}
.wsaf{word-spacing:2.090667pt;}
.ws36{word-spacing:2.133333pt;}
.ws67{word-spacing:2.186667pt;}
.ws45{word-spacing:2.240000pt;}
.ws82{word-spacing:2.293333pt;}
.ws39{word-spacing:2.346667pt;}
.ws12{word-spacing:2.400000pt;}
.ws1f{word-spacing:2.453333pt;}
.ws96{word-spacing:2.474667pt;}
.ws1d{word-spacing:2.506667pt;}
.ws6a{word-spacing:2.560000pt;}
.ws2e{word-spacing:2.613333pt;}
.ws43{word-spacing:2.666667pt;}
.ws9f{word-spacing:2.730667pt;}
.wsbc{word-spacing:2.773333pt;}
.ws3d{word-spacing:2.933333pt;}
.wsbe{word-spacing:2.986667pt;}
.wsb8{word-spacing:3.029333pt;}
.wsc{word-spacing:3.040000pt;}
.ws8a{word-spacing:3.093333pt;}
.ws6b{word-spacing:3.146667pt;}
.ws6d{word-spacing:3.200000pt;}
.ws47{word-spacing:3.253333pt;}
.ws41{word-spacing:3.306667pt;}
.ws46{word-spacing:3.370667pt;}
.ws31{word-spacing:3.413333pt;}
.ws8b{word-spacing:3.466667pt;}
.ws4a{word-spacing:3.498667pt;}
.ws40{word-spacing:3.520000pt;}
.ws4e{word-spacing:3.541333pt;}
.ws56{word-spacing:3.573333pt;}
.ws4f{word-spacing:3.626667pt;}
.ws2f{word-spacing:3.680000pt;}
.wsd{word-spacing:3.733333pt;}
.ws80{word-spacing:3.786667pt;}
.ws19{word-spacing:3.893333pt;}
.ws53{word-spacing:3.925333pt;}
.wsf{word-spacing:4.000000pt;}
.ws85{word-spacing:4.010667pt;}
.ws15{word-spacing:4.053333pt;}
.ws66{word-spacing:4.106667pt;}
.ws7c{word-spacing:4.160000pt;}
.ws91{word-spacing:4.213333pt;}
.ws4b{word-spacing:4.224000pt;}
.ws10{word-spacing:4.320000pt;}
.wsb{word-spacing:4.373333pt;}
.wse{word-spacing:4.426667pt;}
.ws92{word-spacing:4.906667pt;}
.ws81{word-spacing:6.506667pt;}
.ws69{word-spacing:317.440000pt;}
.ws71{word-spacing:327.296000pt;}
.ws54{word-spacing:328.106667pt;}
.ws4c{word-spacing:337.962667pt;}
.ws4d{word-spacing:348.629333pt;}
._d{margin-left:-2576.085333pt;}
._f{margin-left:-2554.922667pt;}
._e{margin-left:-9.546667pt;}
._2{margin-left:-8.327467pt;}
._10{margin-left:-6.880000pt;}
._7{margin-left:-5.966400pt;}
._1{margin-left:-4.778667pt;}
._4{margin-left:-3.520000pt;}
._0{margin-left:-2.053333pt;}
._5{margin-left:-0.906667pt;}
._6{width:0.938667pt;}
._b{width:1.941333pt;}
._8{width:2.933333pt;}
._9{width:4.693333pt;}
._a{width:6.080000pt;}
._c{width:7.413333pt;}
._3{width:52.936368pt;}
._13{width:302.848000pt;}
._12{width:310.784000pt;}
._14{width:323.968000pt;}
._11{width:324.992000pt;}
._22{width:337.626667pt;}
._1a{width:348.629333pt;}
._17{width:359.296000pt;}
._19{width:369.962667pt;}
._1f{width:375.296000pt;}
._1c{width:378.880000pt;}
._23{width:389.546667pt;}
._1b{width:417.962667pt;}
._16{width:489.045333pt;}
._15{width:493.781333pt;}
._1d{width:494.954667pt;}
._18{width:498.224000pt;}
._24{width:505.621333pt;}
._21{width:507.968000pt;}
._1e{width:518.634667pt;}
._20{width:529.301333pt;}
.fs5{font-size:23.320000pt;}
.fsa{font-size:31.093333pt;}
.fs4{font-size:32.648000pt;}
.fs7{font-size:34.666667pt;}
.fs0{font-size:37.333333pt;}
.fs6{font-size:40.000000pt;}
.fs9{font-size:42.666667pt;}
.fsb{font-size:48.000000pt;}
.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;}
.y30{bottom:42.468667pt;}
.y11d{bottom:73.714533pt;}
.y18a{bottom:74.102800pt;}
.y1ac{bottom:74.235867pt;}
.y11b{bottom:74.286000pt;}
.ya2{bottom:74.336533pt;}
.y6e{bottom:74.462533pt;}
.y65{bottom:74.464533pt;}
.yd7{bottom:74.475067pt;}
.y122{bottom:75.226267pt;}
.ye5{bottom:76.175733pt;}
.y14f{bottom:76.742533pt;}
.y2d{bottom:78.140933pt;}
.yd2{bottom:81.114533pt;}
.y1e3{bottom:81.886133pt;}
.yee{bottom:83.031733pt;}
.y11c{bottom:87.709200pt;}
.y11a{bottom:88.280667pt;}
.yd6{bottom:88.469733pt;}
.y121{bottom:89.220933pt;}
.ye4{bottom:90.170400pt;}
.ya1{bottom:90.336533pt;}
.y6d{bottom:90.462533pt;}
.y64{bottom:90.464533pt;}
.y2c{bottom:91.470933pt;}
.ye2{bottom:92.008133pt;}
.y14e{bottom:92.742533pt;}
.y1e2{bottom:95.219467pt;}
.yd1{bottom:97.114533pt;}
.yed{bottom:97.474400pt;}
.y12b{bottom:100.512000pt;}
.y2b{bottom:104.804267pt;}
.ya0{bottom:106.336533pt;}
.ye1{bottom:106.450800pt;}
.y6c{bottom:106.462533pt;}
.y63{bottom:106.464533pt;}
.y1ab{bottom:106.595867pt;}
.y1e1{bottom:108.552800pt;}
.y14d{bottom:108.742533pt;}
.yec{bottom:111.917067pt;}
.yd0{bottom:113.114533pt;}
.y12a{bottom:114.954667pt;}
.ye0{bottom:120.893467pt;}
.y1e0{bottom:121.886133pt;}
.y9f{bottom:122.336533pt;}
.y6b{bottom:122.462533pt;}
.y62{bottom:122.464533pt;}
.y1aa{bottom:122.595867pt;}
.y14c{bottom:124.742533pt;}
.yeb{bottom:126.359733pt;}
.ycf{bottom:129.114533pt;}
.y129{bottom:129.397333pt;}
.y1df{bottom:135.219467pt;}
.ydf{bottom:135.336133pt;}
.y9e{bottom:138.336533pt;}
.y6a{bottom:138.462533pt;}
.y61{bottom:138.464533pt;}
.y1a9{bottom:138.595867pt;}
.yea{bottom:140.802400pt;}
.y128{bottom:143.840000pt;}
.yce{bottom:145.114533pt;}
.y1de{bottom:148.552800pt;}
.yde{bottom:149.778800pt;}
.y9d{bottom:154.336533pt;}
.y69{bottom:154.462533pt;}
.y60{bottom:154.464533pt;}
.y1a8{bottom:154.595867pt;}
.ye9{bottom:155.245067pt;}
.y14b{bottom:156.382533pt;}
.y127{bottom:158.282667pt;}
.ycd{bottom:161.114533pt;}
.y1dd{bottom:161.886133pt;}
.y2a{bottom:162.990400pt;}
.ydd{bottom:164.221467pt;}
.y9c{bottom:170.336533pt;}
.y68{bottom:170.462533pt;}
.y5f{bottom:170.464533pt;}
.y1a7{bottom:170.595867pt;}
.y126{bottom:172.725333pt;}
.y1dc{bottom:175.219467pt;}
.ycc{bottom:177.114533pt;}
.ye8{bottom:183.255733pt;}
.y1a6{bottom:186.235867pt;}
.y9b{bottom:186.336533pt;}
.y17e{bottom:186.462533pt;}
.y5e{bottom:186.464533pt;}
.y29{bottom:186.630400pt;}
.y1db{bottom:188.552800pt;}
.ydc{bottom:192.232133pt;}
.ycb{bottom:193.114533pt;}
.y125{bottom:200.736000pt;}
.y1da{bottom:201.886133pt;}
.y28{bottom:201.963733pt;}
.y9a{bottom:202.336533pt;}
.y17d{bottom:202.462533pt;}
.y5d{bottom:202.464533pt;}
.y14a{bottom:204.862533pt;}
.yca{bottom:209.114533pt;}
.y11f{bottom:214.273600pt;}
.ye7{bottom:214.275867pt;}
.y1d9{bottom:215.219467pt;}
.y27{bottom:217.297067pt;}
.y99{bottom:218.336533pt;}
.y17c{bottom:218.462533pt;}
.y5c{bottom:218.464533pt;}
.y1a5{bottom:218.595867pt;}
.y149{bottom:220.862533pt;}
.ydb{bottom:223.250000pt;}
.yc9{bottom:225.114533pt;}
.y1d8{bottom:228.552800pt;}
.y219{bottom:231.345333pt;}
.y124{bottom:231.753867pt;}
.y26{bottom:232.630400pt;}
.y98{bottom:234.336533pt;}
.y17b{bottom:234.462533pt;}
.y5b{bottom:234.464533pt;}
.y1a4{bottom:234.595867pt;}
.y148{bottom:236.862533pt;}
.yc8{bottom:241.114533pt;}
.y1d7{bottom:241.886133pt;}
.y218{bottom:244.678667pt;}
.y25{bottom:247.963733pt;}
.y97{bottom:250.336533pt;}
.y5a{bottom:250.464533pt;}
.y17a{bottom:250.489200pt;}
.y1a3{bottom:250.595867pt;}
.y11e{bottom:250.606800pt;}
.yef{bottom:251.287733pt;}
.y147{bottom:252.862533pt;}
.y1d6{bottom:255.219467pt;}
.yc7{bottom:257.114533pt;}
.y217{bottom:258.012000pt;}
.y24{bottom:263.297067pt;}
.yda{bottom:266.286000pt;}
.y96{bottom:266.336533pt;}
.y59{bottom:266.464533pt;}
.y179{bottom:266.489200pt;}
.y1a2{bottom:266.595867pt;}
.y1d5{bottom:268.552800pt;}
.y123{bottom:268.654000pt;}
.y146{bottom:268.862533pt;}
.y216{bottom:271.345333pt;}
.yc6{bottom:273.114533pt;}
.y23{bottom:278.630400pt;}
.yd9{bottom:280.280667pt;}
.y1d4{bottom:281.886133pt;}
.y95{bottom:282.336533pt;}
.y58{bottom:282.464533pt;}
.y178{bottom:282.489200pt;}
.y1a1{bottom:282.595867pt;}
.y215{bottom:284.678667pt;}
.y145{bottom:284.862533pt;}
.yc5{bottom:289.114533pt;}
.y22{bottom:293.963733pt;}
.y1d3{bottom:295.219467pt;}
.y214{bottom:298.012000pt;}
.y94{bottom:298.336533pt;}
.y57{bottom:298.464533pt;}
.y177{bottom:298.489200pt;}
.y1a0{bottom:298.595867pt;}
.y144{bottom:300.862533pt;}
.yc4{bottom:305.114533pt;}
.y1d2{bottom:308.552800pt;}
.y21{bottom:309.297067pt;}
.y213{bottom:311.345333pt;}
.y93{bottom:314.336533pt;}
.y56{bottom:314.464533pt;}
.y176{bottom:314.489200pt;}
.y19f{bottom:314.595867pt;}
.y143{bottom:316.862533pt;}
.yc3{bottom:321.114533pt;}
.y1d1{bottom:321.886133pt;}
.y20{bottom:324.630400pt;}
.y212{bottom:324.678667pt;}
.y92{bottom:330.336533pt;}
.y55{bottom:330.464533pt;}
.y175{bottom:330.489200pt;}
.y19e{bottom:330.595867pt;}
.y142{bottom:332.862533pt;}
.y1d0{bottom:335.219467pt;}
.yc2{bottom:337.114533pt;}
.y211{bottom:338.012000pt;}
.y1f{bottom:339.963733pt;}
.y91{bottom:346.336533pt;}
.y54{bottom:346.464533pt;}
.y174{bottom:346.489200pt;}
.y19d{bottom:346.595867pt;}
.y1cf{bottom:348.552800pt;}
.y141{bottom:348.862533pt;}
.y210{bottom:351.345333pt;}
.yc1{bottom:353.114533pt;}
.y1e{bottom:355.297067pt;}
.y1ce{bottom:361.886133pt;}
.y90{bottom:362.342533pt;}
.y53{bottom:362.464533pt;}
.y173{bottom:362.489200pt;}
.y19c{bottom:362.595867pt;}
.y20f{bottom:364.678667pt;}
.y140{bottom:364.862533pt;}
.yc0{bottom:369.114533pt;}
.y1d{bottom:370.630400pt;}
.y1cd{bottom:375.219467pt;}
.y20e{bottom:378.012000pt;}
.y8f{bottom:378.342533pt;}
.y52{bottom:378.464533pt;}
.y172{bottom:378.489200pt;}
.y19b{bottom:378.595867pt;}
.y13f{bottom:380.862533pt;}
.ybf{bottom:385.114533pt;}
.y1c{bottom:385.963733pt;}
.y1cc{bottom:388.552800pt;}
.y20d{bottom:391.345333pt;}
.y8e{bottom:394.342533pt;}
.y51{bottom:394.464533pt;}
.y171{bottom:394.489200pt;}
.y19a{bottom:394.595867pt;}
.y13e{bottom:396.862533pt;}
.ybe{bottom:401.114533pt;}
.y1b{bottom:401.297067pt;}
.y1cb{bottom:401.886133pt;}
.y20c{bottom:404.678667pt;}
.y8d{bottom:410.342533pt;}
.y50{bottom:410.464533pt;}
.y170{bottom:410.489200pt;}
.y199{bottom:410.595867pt;}
.y13d{bottom:412.862533pt;}
.y1ca{bottom:415.219467pt;}
.y1a{bottom:416.630400pt;}
.ybd{bottom:417.114533pt;}
.y20b{bottom:418.012000pt;}
.y8c{bottom:426.342533pt;}
.y4f{bottom:426.464533pt;}
.y16f{bottom:426.489200pt;}
.y198{bottom:426.595867pt;}
.y1c9{bottom:428.552800pt;}
.y13c{bottom:428.862533pt;}
.y20a{bottom:431.345333pt;}
.y19{bottom:431.963733pt;}
.ybc{bottom:433.114533pt;}
.y1c8{bottom:441.886133pt;}
.y8b{bottom:442.342533pt;}
.y4e{bottom:442.464533pt;}
.y16e{bottom:442.489200pt;}
.y197{bottom:442.595867pt;}
.y209{bottom:444.678667pt;}
.y13b{bottom:444.862533pt;}
.y18{bottom:447.297067pt;}
.ybb{bottom:449.114533pt;}
.y1c7{bottom:455.219467pt;}
.y208{bottom:458.012000pt;}
.y8a{bottom:458.342533pt;}
.y4d{bottom:458.464533pt;}
.y16d{bottom:458.489200pt;}
.y196{bottom:458.595867pt;}
.y13a{bottom:460.862533pt;}
.y17{bottom:462.630400pt;}
.yba{bottom:465.114533pt;}
.y1c6{bottom:468.552800pt;}
.y207{bottom:471.345333pt;}
.y89{bottom:474.342533pt;}
.y4c{bottom:474.464533pt;}
.y16c{bottom:474.489200pt;}
.y195{bottom:474.595867pt;}
.y139{bottom:476.862533pt;}
.y16{bottom:477.963733pt;}
.yb9{bottom:481.114533pt;}
.y1c5{bottom:481.886133pt;}
.y206{bottom:484.678667pt;}
.y88{bottom:490.342533pt;}
.y182{bottom:490.462533pt;}
.y4b{bottom:490.464533pt;}
.y16b{bottom:490.489200pt;}
.y194{bottom:490.595867pt;}
.y138{bottom:492.862533pt;}
.y15{bottom:493.297067pt;}
.y1c4{bottom:495.219467pt;}
.yb8{bottom:497.114533pt;}
.y205{bottom:498.012000pt;}
.y87{bottom:506.342533pt;}
.y181{bottom:506.462533pt;}
.y4a{bottom:506.464533pt;}
.y16a{bottom:506.489200pt;}
.y193{bottom:506.595867pt;}
.y1c3{bottom:508.552800pt;}
.y14{bottom:508.630400pt;}
.y137{bottom:508.862533pt;}
.y204{bottom:511.345333pt;}
.yb7{bottom:513.114533pt;}
.y1c2{bottom:521.886133pt;}
.y86{bottom:522.342533pt;}
.y180{bottom:522.462533pt;}
.y49{bottom:522.464533pt;}
.y169{bottom:522.489200pt;}
.y192{bottom:522.595867pt;}
.y13{bottom:523.963733pt;}
.y203{bottom:524.678667pt;}
.y136{bottom:524.862533pt;}
.yb6{bottom:529.114533pt;}
.y1c1{bottom:535.219467pt;}
.y202{bottom:538.012000pt;}
.y189{bottom:538.342533pt;}
.y17f{bottom:538.462533pt;}
.y48{bottom:538.464533pt;}
.y168{bottom:538.489200pt;}
.y191{bottom:538.595867pt;}
.y12{bottom:539.297067pt;}
.y135{bottom:540.862533pt;}
.y1c0{bottom:548.552800pt;}
.y201{bottom:551.345333pt;}
.y85{bottom:553.982533pt;}
.y188{bottom:554.342533pt;}
.yd5{bottom:554.462533pt;}
.y47{bottom:554.464533pt;}
.y167{bottom:554.489200pt;}
.y190{bottom:554.595867pt;}
.y11{bottom:554.630400pt;}
.y134{bottom:556.862533pt;}
.yb5{bottom:560.083867pt;}
.y1bf{bottom:561.886133pt;}
.y200{bottom:564.678667pt;}
.y187{bottom:570.342533pt;}
.yd4{bottom:570.462533pt;}
.y46{bottom:570.464533pt;}
.y166{bottom:570.489200pt;}
.y18f{bottom:570.595867pt;}
.y133{bottom:572.862533pt;}
.yb4{bottom:573.955867pt;}
.y1be{bottom:575.219467pt;}
.y103{bottom:576.988533pt;}
.y1ff{bottom:578.012000pt;}
.y186{bottom:586.342533pt;}
.yd3{bottom:586.462533pt;}
.y45{bottom:586.464533pt;}
.y119{bottom:586.468533pt;}
.y165{bottom:586.489200pt;}
.y18e{bottom:586.595867pt;}
.yb3{bottom:586.709867pt;}
.y1bd{bottom:588.552800pt;}
.y132{bottom:588.862533pt;}
.y1fe{bottom:591.345333pt;}
.y102{bottom:592.988533pt;}
.y10{bottom:594.770933pt;}
.y1bc{bottom:601.886133pt;}
.y185{bottom:602.342533pt;}
.yb2{bottom:602.349867pt;}
.y84{bottom:602.462533pt;}
.y44{bottom:602.464533pt;}
.y118{bottom:602.468533pt;}
.y164{bottom:602.489200pt;}
.y18d{bottom:602.595867pt;}
.y1fd{bottom:604.678667pt;}
.y131{bottom:604.862533pt;}
.yf{bottom:605.838267pt;}
.y101{bottom:608.988533pt;}
.y1bb{bottom:615.219467pt;}
.y1fc{bottom:618.012000pt;}
.y184{bottom:618.342533pt;}
.y83{bottom:618.462533pt;}
.y43{bottom:618.464533pt;}
.y117{bottom:618.468533pt;}
.y163{bottom:618.489200pt;}
.y100{bottom:624.988533pt;}
.y1ba{bottom:628.552800pt;}
.y1fb{bottom:631.345333pt;}
.ye{bottom:634.029867pt;}
.yb1{bottom:634.216533pt;}
.y18c{bottom:634.235867pt;}
.y82{bottom:634.462533pt;}
.y42{bottom:634.464533pt;}
.y116{bottom:634.468533pt;}
.y162{bottom:634.489200pt;}
.y130{bottom:634.729200pt;}
.yff{bottom:640.988533pt;}
.y1b9{bottom:641.886133pt;}
.y1fa{bottom:644.678667pt;}
.y183{bottom:649.982533pt;}
.yb0{bottom:650.216533pt;}
.y12f{bottom:650.369200pt;}
.y81{bottom:650.462533pt;}
.y41{bottom:650.464533pt;}
.y115{bottom:650.468533pt;}
.y161{bottom:650.489200pt;}
.yd{bottom:650.852400pt;}
.y1b8{bottom:655.219467pt;}
.yfe{bottom:656.988533pt;}
.y1f9{bottom:658.012000pt;}
.yc{bottom:662.852400pt;}
.yaf{bottom:666.216533pt;}
.y80{bottom:666.462533pt;}
.y40{bottom:666.464533pt;}
.y114{bottom:666.468533pt;}
.y160{bottom:666.489200pt;}
.y1b7{bottom:668.552800pt;}
.yb{bottom:670.029867pt;}
.y1f8{bottom:671.345333pt;}
.yfd{bottom:672.988533pt;}
.ya{bottom:682.029867pt;}
.yae{bottom:682.216533pt;}
.y12e{bottom:682.235867pt;}
.y7f{bottom:682.462533pt;}
.y3f{bottom:682.464533pt;}
.y113{bottom:682.468533pt;}
.y15f{bottom:682.489200pt;}
.y1f7{bottom:684.678667pt;}
.yfc{bottom:688.988533pt;}
.y1b6{bottom:697.995867pt;}
.y1f6{bottom:698.012000pt;}
.y12d{bottom:698.235867pt;}
.y7e{bottom:698.462533pt;}
.y3e{bottom:698.464533pt;}
.y112{bottom:698.468533pt;}
.y15e{bottom:698.489200pt;}
.y9{bottom:698.852400pt;}
.yfb{bottom:704.988533pt;}
.y1f5{bottom:711.345333pt;}
.yad{bottom:714.096533pt;}
.y12c{bottom:714.235867pt;}
.y7d{bottom:714.462533pt;}
.y3d{bottom:714.464533pt;}
.y111{bottom:714.468533pt;}
.y15d{bottom:714.489200pt;}
.yfa{bottom:720.988533pt;}
.y8{bottom:724.382933pt;}
.y1f4{bottom:724.678667pt;}
.y7c{bottom:730.462533pt;}
.y3c{bottom:730.464533pt;}
.y110{bottom:730.468533pt;}
.y15c{bottom:730.489200pt;}
.yf9{bottom:736.988533pt;}
.y1f3{bottom:738.012000pt;}
.yac{bottom:745.976533pt;}
.y7b{bottom:746.462533pt;}
.y3b{bottom:746.464533pt;}
.y10f{bottom:746.468533pt;}
.y1b5{bottom:746.475867pt;}
.y15b{bottom:746.489200pt;}
.y1f2{bottom:751.345333pt;}
.yf8{bottom:752.988533pt;}
.y1b4{bottom:762.115867pt;}
.y7a{bottom:762.462533pt;}
.y3a{bottom:762.464533pt;}
.y10e{bottom:762.468533pt;}
.y15a{bottom:762.489200pt;}
.y1f1{bottom:764.678667pt;}
.y7{bottom:765.406933pt;}
.yf7{bottom:768.988533pt;}
.y1f0{bottom:778.012000pt;}
.y79{bottom:778.462533pt;}
.y39{bottom:778.464533pt;}
.y10d{bottom:778.468533pt;}
.y159{bottom:778.489200pt;}
.yf6{bottom:784.988533pt;}
.y1ef{bottom:791.345333pt;}
.yab{bottom:794.456533pt;}
.y78{bottom:794.462533pt;}
.y38{bottom:794.464533pt;}
.y10c{bottom:794.468533pt;}
.y1b3{bottom:794.475867pt;}
.y158{bottom:794.489200pt;}
.y6{bottom:797.816533pt;}
.y1ee{bottom:804.678667pt;}
.y1b2{bottom:810.115867pt;}
.yaa{bottom:810.456533pt;}
.y77{bottom:810.462533pt;}
.y37{bottom:810.464533pt;}
.y10b{bottom:810.468533pt;}
.y157{bottom:810.489200pt;}
.yf5{bottom:815.957867pt;}
.y1ed{bottom:818.012000pt;}
.y18b{bottom:826.102533pt;}
.ya9{bottom:826.456533pt;}
.y76{bottom:826.462533pt;}
.y36{bottom:826.464533pt;}
.y10a{bottom:826.468533pt;}
.y156{bottom:826.489200pt;}
.yf4{bottom:829.829867pt;}
.y5{bottom:830.226133pt;}
.y1ec{bottom:831.345333pt;}
.ya8{bottom:842.456533pt;}
.y75{bottom:842.462533pt;}
.y35{bottom:842.464533pt;}
.y109{bottom:842.468533pt;}
.y1b1{bottom:842.475867pt;}
.y155{bottom:842.489200pt;}
.yf3{bottom:842.597867pt;}
.y1eb{bottom:844.678667pt;}
.y1ea{bottom:858.012000pt;}
.yf2{bottom:858.237867pt;}
.ya7{bottom:858.456533pt;}
.y74{bottom:858.462533pt;}
.y34{bottom:858.464533pt;}
.y108{bottom:858.468533pt;}
.y1b0{bottom:858.475867pt;}
.y154{bottom:858.489200pt;}
.y4{bottom:862.635733pt;}
.y1e9{bottom:871.345333pt;}
.ya6{bottom:874.456533pt;}
.y73{bottom:874.462533pt;}
.y33{bottom:874.464533pt;}
.y107{bottom:874.468533pt;}
.y1af{bottom:874.475867pt;}
.y153{bottom:874.489200pt;}
.y1e8{bottom:884.678667pt;}
.yf1{bottom:890.104533pt;}
.y1ae{bottom:890.115867pt;}
.ya5{bottom:890.456533pt;}
.y72{bottom:890.462533pt;}
.y32{bottom:890.464533pt;}
.y106{bottom:890.468533pt;}
.y152{bottom:890.489200pt;}
.y3{bottom:895.045333pt;}
.y1e7{bottom:898.012000pt;}
.yf0{bottom:906.104533pt;}
.ya4{bottom:906.456533pt;}
.y71{bottom:906.462533pt;}
.y67{bottom:906.464533pt;}
.y105{bottom:906.468533pt;}
.y151{bottom:906.489200pt;}
.y1e6{bottom:911.345333pt;}
.y31{bottom:922.104533pt;}
.ya3{bottom:922.456533pt;}
.y70{bottom:922.462533pt;}
.y66{bottom:922.464533pt;}
.y104{bottom:922.468533pt;}
.y1ad{bottom:922.475867pt;}
.y150{bottom:922.489200pt;}
.y1e5{bottom:924.678667pt;}
.y2{bottom:950.489200pt;}
.y1e4{bottom:1006.590133pt;}
.y6f{bottom:1006.594400pt;}
.ye6{bottom:1006.597067pt;}
.y21a{bottom:1006.598667pt;}
.yd8{bottom:1006.603067pt;}
.ye3{bottom:1006.610800pt;}
.y120{bottom:1006.615733pt;}
.y2f{bottom:1009.860000pt;}
.y2e{bottom:1022.660000pt;}
.h6{height:17.000371pt;}
.h8{height:25.238281pt;}
.h2{height:27.179688pt;}
.hc{height:29.121094pt;}
.h7{height:29.160156pt;}
.h15{height:29.645833pt;}
.he{height:31.062500pt;}
.hd{height:31.104167pt;}
.h10{height:37.057292pt;}
.h13{height:37.437500pt;}
.h9{height:38.828125pt;}
.hb{height:38.860475pt;}
.ha{height:38.880208pt;}
.h12{height:42.117188pt;}
.hf{height:46.796875pt;}
.h14{height:48.236875pt;}
.h3{height:50.476562pt;}
.h5{height:50.774503pt;}
.h11{height:52.381778pt;}
.h4{height:81.927344pt;}
.h1{height:1058.000000pt;}
.h0{height:1058.268000pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1f{left:62.740133pt;}
.x7{left:68.031467pt;}
.x1e{left:69.923467pt;}
.x2c{left:82.298133pt;}
.x5{left:85.417333pt;}
.x1{left:86.929067pt;}
.x29{left:88.821067pt;}
.x33{left:90.708800pt;}
.x2b{left:93.031467pt;}
.x4{left:94.488267pt;}
.x2e{left:96.551467pt;}
.x9{left:98.274267pt;}
.x25{left:102.792267pt;}
.x2d{left:104.698133pt;}
.x3{left:111.491467pt;}
.xe{left:117.182533pt;}
.x21{left:118.244000pt;}
.x20{left:124.164000pt;}
.x22{left:128.990667pt;}
.xf{left:147.555867pt;}
.x23{left:156.910667pt;}
.x8{left:169.380933pt;}
.x30{left:176.818133pt;}
.x2f{left:182.591467pt;}
.x26{left:198.828267pt;}
.x24{left:204.577333pt;}
.x1d{left:219.150133pt;}
.x28{left:238.047733pt;}
.x6{left:404.481333pt;}
.xa{left:406.300933pt;}
.x10{left:425.191733pt;}
.x34{left:428.959467pt;}
.x13{left:434.671733pt;}
.xb{left:436.540933pt;}
.x15{left:439.485067pt;}
.x19{left:442.062000pt;}
.x16{left:448.751733pt;}
.x14{left:450.218400pt;}
.x1b{left:455.433067pt;}
.x17{left:485.191733pt;}
.x31{left:507.284800pt;}
.x32{left:529.835867pt;}
.x1a{left:536.322000pt;}
.x12{left:537.538400pt;}
.x11{left:544.818400pt;}
.x18{left:546.205067pt;}
.xd{left:589.770933pt;}
.x2{left:616.324800pt;}
.x27{left:641.526800pt;}
.xc{left:647.459200pt;}
.x2a{left:661.162400pt;}
.x1c{left:666.356800pt;}
}




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