
    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_fe896d9c4f6eafa9170fc54d.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_706207da45fcfef4bf60e9fd.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_481f0bfed74f8e322317e1b0.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_c3f471088ba2786682e7a3ef.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_48c3fc3cceb69b95bbf8b9ee.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_53e98db3473e116adb1790e6.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.091309;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_9f3ecb406e133b0af4a27b90.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_e8d6d87db3bfeab3515f7e61.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_60d90505e5415392129cb0a2.woff2')format("woff");}.ff9{font-family:ff9;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;}
.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;}
.v1{vertical-align:30.381600px;}
.v3{vertical-align:51.216000px;}
.ls14{letter-spacing:-4.557600px;}
.ls82{letter-spacing:-2.640000px;}
.ls52{letter-spacing:-1.776000px;}
.ls13{letter-spacing:-0.780000px;}
.ls8d{letter-spacing:-0.576000px;}
.ls50{letter-spacing:-0.480000px;}
.ls15{letter-spacing:-0.450000px;}
.ls7e{letter-spacing:-0.432000px;}
.ls4a{letter-spacing:-0.360000px;}
.ls8c{letter-spacing:-0.336000px;}
.ls17{letter-spacing:-0.240000px;}
.ls51{letter-spacing:-0.180000px;}
.ls7f{letter-spacing:-0.144000px;}
.ls18{letter-spacing:-0.120000px;}
.ls83{letter-spacing:-0.096000px;}
.ls3f{letter-spacing:-0.060000px;}
.ls7d{letter-spacing:-0.048000px;}
.ls12{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.004140px;}
.ls78{letter-spacing:0.048000px;}
.ls4{letter-spacing:0.060000px;}
.ls33{letter-spacing:0.120000px;}
.ls5f{letter-spacing:0.144000px;}
.ls25{letter-spacing:0.180000px;}
.ls74{letter-spacing:0.192000px;}
.ls1f{letter-spacing:0.240000px;}
.ls75{letter-spacing:0.288000px;}
.ls1b{letter-spacing:0.300000px;}
.ls63{letter-spacing:0.336000px;}
.ls1c{letter-spacing:0.360000px;}
.ls59{letter-spacing:0.384000px;}
.ls24{letter-spacing:0.420000px;}
.ls76{letter-spacing:0.432000px;}
.ls2b{letter-spacing:0.480000px;}
.ls70{letter-spacing:0.528000px;}
.ls26{letter-spacing:0.540000px;}
.ls19{letter-spacing:0.600000px;}
.ls62{letter-spacing:0.624000px;}
.ls1a{letter-spacing:0.660000px;}
.ls71{letter-spacing:0.672000px;}
.lsf{letter-spacing:0.720000px;}
.ls5a{letter-spacing:0.768000px;}
.ls5{letter-spacing:0.780000px;}
.ls68{letter-spacing:0.816000px;}
.ls7{letter-spacing:0.840000px;}
.ls80{letter-spacing:0.864000px;}
.ls6{letter-spacing:0.900000px;}
.ls7c{letter-spacing:0.912000px;}
.ls39{letter-spacing:0.960000px;}
.ls89{letter-spacing:1.008000px;}
.ls10{letter-spacing:1.020000px;}
.ls72{letter-spacing:1.056000px;}
.ls16{letter-spacing:1.080000px;}
.ls6d{letter-spacing:1.104000px;}
.ls3{letter-spacing:1.140000px;}
.ls85{letter-spacing:1.152000px;}
.ls20{letter-spacing:1.200000px;}
.ls84{letter-spacing:1.248000px;}
.ls3a{letter-spacing:1.260000px;}
.ls58{letter-spacing:1.296000px;}
.lsd{letter-spacing:1.320000px;}
.ls22{letter-spacing:1.380000px;}
.ls6c{letter-spacing:1.392000px;}
.ls1d{letter-spacing:1.440000px;}
.ls73{letter-spacing:1.488000px;}
.ls11{letter-spacing:1.500000px;}
.ls6a{letter-spacing:1.536000px;}
.lse{letter-spacing:1.560000px;}
.ls67{letter-spacing:1.584000px;}
.ls3e{letter-spacing:1.620000px;}
.ls6e{letter-spacing:1.632000px;}
.ls2a{letter-spacing:1.680000px;}
.ls60{letter-spacing:1.728000px;}
.ls41{letter-spacing:1.740000px;}
.ls66{letter-spacing:1.776000px;}
.ls40{letter-spacing:1.800000px;}
.ls38{letter-spacing:1.860000px;}
.ls87{letter-spacing:1.920000px;}
.ls49{letter-spacing:1.980000px;}
.ls43{letter-spacing:2.040000px;}
.ls48{letter-spacing:2.064000px;}
.ls2f{letter-spacing:2.100000px;}
.ls5d{letter-spacing:2.112000px;}
.ls35{letter-spacing:2.160000px;}
.ls8a{letter-spacing:2.256000px;}
.ls31{letter-spacing:2.280000px;}
.ls6b{letter-spacing:2.352000px;}
.ls1e{letter-spacing:2.400000px;}
.ls21{letter-spacing:2.460000px;}
.ls34{letter-spacing:2.520000px;}
.ls8b{letter-spacing:2.544000px;}
.ls2d{letter-spacing:2.580000px;}
.ls79{letter-spacing:2.592000px;}
.ls8{letter-spacing:2.640000px;}
.ls69{letter-spacing:2.688000px;}
.ls9{letter-spacing:2.700000px;}
.ls81{letter-spacing:2.736000px;}
.ls32{letter-spacing:2.760000px;}
.ls46{letter-spacing:2.820000px;}
.ls4e{letter-spacing:2.880000px;}
.ls64{letter-spacing:2.928000px;}
.ls23{letter-spacing:2.940000px;}
.ls5c{letter-spacing:2.976000px;}
.lsc{letter-spacing:3.000000px;}
.ls77{letter-spacing:3.072000px;}
.ls88{letter-spacing:3.120000px;}
.ls44{letter-spacing:3.180000px;}
.lsa{letter-spacing:3.240000px;}
.ls42{letter-spacing:3.300000px;}
.ls3d{letter-spacing:3.360000px;}
.ls55{letter-spacing:3.540000px;}
.ls7a{letter-spacing:3.552000px;}
.ls4d{letter-spacing:3.600000px;}
.ls29{letter-spacing:3.720000px;}
.ls6f{letter-spacing:3.744000px;}
.lsb{letter-spacing:3.840000px;}
.ls65{letter-spacing:3.984000px;}
.ls28{letter-spacing:4.020000px;}
.ls57{letter-spacing:4.080000px;}
.ls4c{letter-spacing:4.140000px;}
.ls37{letter-spacing:4.260000px;}
.ls53{letter-spacing:4.380000px;}
.ls7b{letter-spacing:4.416000px;}
.ls45{letter-spacing:4.440000px;}
.ls3c{letter-spacing:4.560000px;}
.ls27{letter-spacing:4.620000px;}
.ls2c{letter-spacing:4.680000px;}
.ls2e{letter-spacing:4.740000px;}
.ls36{letter-spacing:4.920000px;}
.ls3b{letter-spacing:5.100000px;}
.ls54{letter-spacing:5.160000px;}
.ls86{letter-spacing:5.280000px;}
.ls47{letter-spacing:5.460000px;}
.ls61{letter-spacing:5.664000px;}
.ls4b{letter-spacing:5.820000px;}
.ls56{letter-spacing:5.880000px;}
.ls5e{letter-spacing:6.048000px;}
.ls4f{letter-spacing:6.420000px;}
.ls2{letter-spacing:6.780000px;}
.ls30{letter-spacing:7.020000px;}
.ls5b{letter-spacing:7.620000px;}
.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;}
}
.ws14{word-spacing:-19.680000px;}
.ws2{word-spacing:-18.240000px;}
.ws3{word-spacing:-18.000000px;}
.ws16{word-spacing:-17.100000px;}
.ws8f{word-spacing:-16.920000px;}
.ws39{word-spacing:-16.680000px;}
.ws9e{word-spacing:-15.984000px;}
.wsa2{word-spacing:-15.744000px;}
.wsa7{word-spacing:-15.552000px;}
.ws18{word-spacing:-15.480000px;}
.ws17{word-spacing:-15.240000px;}
.ws15{word-spacing:-15.000000px;}
.wsa9{word-spacing:-14.688000px;}
.ws9c{word-spacing:-14.112000px;}
.wsce{word-spacing:-13.632000px;}
.wsa0{word-spacing:-13.584000px;}
.ws4{word-spacing:-13.344000px;}
.wscf{word-spacing:-13.296000px;}
.wsa4{word-spacing:-13.200000px;}
.wsa3{word-spacing:-13.056000px;}
.ws1{word-spacing:-12.510000px;}
.wsa8{word-spacing:-12.480000px;}
.ws9d{word-spacing:-12.336000px;}
.wsaa{word-spacing:-12.288000px;}
.wsd0{word-spacing:-12.192000px;}
.ws9f{word-spacing:-12.000000px;}
.wsa6{word-spacing:-11.904000px;}
.wsa1{word-spacing:-11.760000px;}
.ws0{word-spacing:-10.210662px;}
.wsa5{word-spacing:-9.360000px;}
.ws67{word-spacing:-6.420000px;}
.ws35{word-spacing:-5.100000px;}
.ws26{word-spacing:-4.740000px;}
.ws21{word-spacing:-4.620000px;}
.ws25{word-spacing:-4.020000px;}
.wsb1{word-spacing:-3.984000px;}
.wsc0{word-spacing:-3.744000px;}
.ws66{word-spacing:-3.720000px;}
.ws94{word-spacing:-3.540000px;}
.ws36{word-spacing:-3.360000px;}
.ws42{word-spacing:-3.180000px;}
.ws2a{word-spacing:-3.000000px;}
.ws6{word-spacing:-2.886000px;}
.ws48{word-spacing:-2.820000px;}
.wsd2{word-spacing:-2.736000px;}
.wsab{word-spacing:-2.700000px;}
.wsb5{word-spacing:-2.640000px;}
.wsd9{word-spacing:-2.544000px;}
.ws3c{word-spacing:-2.520000px;}
.ws2f{word-spacing:-2.460000px;}
.wsbf{word-spacing:-2.400000px;}
.ws32{word-spacing:-2.280000px;}
.ws34{word-spacing:-2.220000px;}
.wsac{word-spacing:-2.112000px;}
.ws4e{word-spacing:-2.064000px;}
.ws92{word-spacing:-2.040000px;}
.ws3e{word-spacing:-1.980000px;}
.wsb2{word-spacing:-1.824000px;}
.ws64{word-spacing:-1.800000px;}
.ws3b{word-spacing:-1.740000px;}
.wsae{word-spacing:-1.728000px;}
.wsd1{word-spacing:-1.680000px;}
.wsc7{word-spacing:-1.632000px;}
.ws13{word-spacing:-1.620000px;}
.wsb7{word-spacing:-1.584000px;}
.wsbb{word-spacing:-1.536000px;}
.wscc{word-spacing:-1.440000px;}
.ws49{word-spacing:-1.380000px;}
.ws41{word-spacing:-1.320000px;}
.ws65{word-spacing:-1.260000px;}
.ws23{word-spacing:-1.200000px;}
.ws1e{word-spacing:-1.140000px;}
.wsd7{word-spacing:-1.104000px;}
.ws4c{word-spacing:-1.080000px;}
.wsc3{word-spacing:-1.056000px;}
.ws3f{word-spacing:-1.020000px;}
.ws33{word-spacing:-0.960000px;}
.wsda{word-spacing:-0.912000px;}
.ws2e{word-spacing:-0.900000px;}
.ws4a{word-spacing:-0.840000px;}
.wsd8{word-spacing:-0.816000px;}
.ws29{word-spacing:-0.780000px;}
.ws28{word-spacing:-0.720000px;}
.ws1b{word-spacing:-0.660000px;}
.ws3a{word-spacing:-0.540000px;}
.ws47{word-spacing:-0.480000px;}
.wsc6{word-spacing:-0.432000px;}
.ws2c{word-spacing:-0.420000px;}
.ws9b{word-spacing:-0.384000px;}
.ws43{word-spacing:-0.360000px;}
.wsaf{word-spacing:-0.336000px;}
.ws24{word-spacing:-0.300000px;}
.wsc5{word-spacing:-0.288000px;}
.ws2b{word-spacing:-0.240000px;}
.wsc8{word-spacing:-0.192000px;}
.ws69{word-spacing:-0.180000px;}
.ws11{word-spacing:-0.060000px;}
.wsc9{word-spacing:-0.048000px;}
.ws5{word-spacing:0.000000px;}
.wsad{word-spacing:0.048000px;}
.ws38{word-spacing:0.060000px;}
.ws12{word-spacing:0.120000px;}
.ws6a{word-spacing:0.180000px;}
.ws10{word-spacing:0.240000px;}
.wsb0{word-spacing:0.384000px;}
.ws27{word-spacing:0.420000px;}
.wsb4{word-spacing:0.432000px;}
.wsd6{word-spacing:0.576000px;}
.ws37{word-spacing:0.600000px;}
.ws22{word-spacing:0.720000px;}
.wsbe{word-spacing:0.768000px;}
.ws8e{word-spacing:0.912000px;}
.wsb6{word-spacing:0.960000px;}
.wse{word-spacing:1.020000px;}
.ws3d{word-spacing:1.080000px;}
.wsd5{word-spacing:1.104000px;}
.ws90{word-spacing:1.140000px;}
.wscb{word-spacing:1.296000px;}
.ws1d{word-spacing:1.440000px;}
.ws19{word-spacing:1.560000px;}
.ws44{word-spacing:1.620000px;}
.wsca{word-spacing:1.632000px;}
.wsbd{word-spacing:1.680000px;}
.ws1a{word-spacing:1.740000px;}
.ws8c{word-spacing:1.776000px;}
.wsb9{word-spacing:1.872000px;}
.ws9{word-spacing:1.980000px;}
.wsd{word-spacing:2.100000px;}
.wsc4{word-spacing:2.160000px;}
.wsa{word-spacing:2.220000px;}
.wsd3{word-spacing:2.256000px;}
.ws93{word-spacing:2.340000px;}
.ws68{word-spacing:2.400000px;}
.wsc1{word-spacing:2.448000px;}
.ws97{word-spacing:2.460000px;}
.ws30{word-spacing:2.520000px;}
.ws46{word-spacing:2.580000px;}
.wsd4{word-spacing:2.640000px;}
.ws45{word-spacing:2.760000px;}
.ws91{word-spacing:2.820000px;}
.wsdb{word-spacing:2.940000px;}
.ws4b{word-spacing:3.000000px;}
.ws8d{word-spacing:3.024000px;}
.wsc2{word-spacing:3.168000px;}
.ws40{word-spacing:3.180000px;}
.wsb3{word-spacing:3.264000px;}
.wscd{word-spacing:3.312000px;}
.ws1c{word-spacing:3.420000px;}
.wsba{word-spacing:3.552000px;}
.wsb8{word-spacing:3.648000px;}
.ws20{word-spacing:3.660000px;}
.wsbc{word-spacing:3.744000px;}
.ws9a{word-spacing:3.936000px;}
.ws4d{word-spacing:3.984000px;}
.ws96{word-spacing:4.020000px;}
.ws98{word-spacing:4.080000px;}
.ws2d{word-spacing:4.140000px;}
.wsc{word-spacing:4.260000px;}
.wsf{word-spacing:4.320000px;}
.ws1f{word-spacing:4.500000px;}
.ws31{word-spacing:4.560000px;}
.wsb{word-spacing:4.740000px;}
.ws8{word-spacing:4.920000px;}
.ws7{word-spacing:4.980000px;}
.ws99{word-spacing:5.460000px;}
.ws95{word-spacing:5.520000px;}
.ws88{word-spacing:202.944000px;}
.ws55{word-spacing:237.648000px;}
.ws83{word-spacing:248.304000px;}
.ws85{word-spacing:256.272000px;}
.ws82{word-spacing:257.088000px;}
.ws50{word-spacing:268.656000px;}
.ws89{word-spacing:271.344000px;}
.ws79{word-spacing:280.032000px;}
.ws62{word-spacing:297.984000px;}
.ws58{word-spacing:298.032000px;}
.ws84{word-spacing:301.584000px;}
.ws54{word-spacing:306.096000px;}
.ws5f{word-spacing:319.344000px;}
.ws5d{word-spacing:322.032000px;}
.ws56{word-spacing:327.312000px;}
.ws7a{word-spacing:330.048000px;}
.ws77{word-spacing:335.328000px;}
.ws76{word-spacing:340.608000px;}
.ws63{word-spacing:340.656000px;}
.ws4f{word-spacing:352.272000px;}
.ws5e{word-spacing:359.328000px;}
.ws60{word-spacing:361.968000px;}
.ws51{word-spacing:364.656000px;}
.ws87{word-spacing:365.376000px;}
.ws86{word-spacing:370.032000px;}
.ws8a{word-spacing:372.672000px;}
.ws5c{word-spacing:376.992000px;}
.ws81{word-spacing:378.000000px;}
.ws78{word-spacing:380.640000px;}
.ws5b{word-spacing:380.688000px;}
.ws61{word-spacing:386.016000px;}
.ws73{word-spacing:440.976000px;}
.ws75{word-spacing:510.864000px;}
.ws59{word-spacing:543.216000px;}
.ws52{word-spacing:545.904000px;}
.ws6e{word-spacing:556.608000px;}
.ws7e{word-spacing:559.248000px;}
.ws72{word-spacing:564.576000px;}
.ws57{word-spacing:567.792000px;}
.ws7f{word-spacing:577.872000px;}
.ws6f{word-spacing:583.248000px;}
.ws74{word-spacing:587.280000px;}
.ws70{word-spacing:588.576000px;}
.ws6b{word-spacing:593.952000px;}
.ws71{word-spacing:599.232000px;}
.ws7d{word-spacing:599.280000px;}
.ws53{word-spacing:601.872000px;}
.ws7c{word-spacing:608.592000px;}
.ws6d{word-spacing:620.592000px;}
.ws5a{word-spacing:631.248000px;}
.ws7b{word-spacing:647.280000px;}
.ws80{word-spacing:648.576000px;}
.ws6c{word-spacing:667.248000px;}
.ws8b{word-spacing:2371.200000px;}
._d{margin-left:-2898.096000px;}
._e{margin-left:-2874.288000px;}
._4{margin-left:-6.780000px;}
._1{margin-left:-5.376000px;}
._2f{margin-left:-4.350000px;}
._2{margin-left:-3.330000px;}
._0{margin-left:-2.310000px;}
._3{margin-left:-1.020000px;}
._6{width:1.200000px;}
._9{width:2.250000px;}
._5{width:4.140000px;}
._7{width:5.700000px;}
._8{width:7.500000px;}
._c{width:8.520000px;}
._a{width:9.540000px;}
._b{width:10.560000px;}
._f{width:11.820000px;}
._12{width:253.872000px;}
._28{width:328.656000px;}
._10{width:357.984000px;}
._13{width:527.232000px;}
._18{width:539.232000px;}
._2d{width:541.920000px;}
._24{width:550.548000px;}
._14{width:553.920000px;}
._20{width:556.560000px;}
._11{width:565.200000px;}
._17{width:568.608000px;}
._15{width:576.672000px;}
._2a{width:579.792000px;}
._29{width:587.232000px;}
._1d{width:589.920000px;}
._1b{width:592.608000px;}
._16{width:597.888000px;}
._25{width:600.624000px;}
._22{width:605.904000px;}
._21{width:611.232000px;}
._26{width:619.248000px;}
._19{width:623.232000px;}
._27{width:625.488000px;}
._1c{width:629.904000px;}
._2c{width:635.892000px;}
._2b{width:640.608000px;}
._2e{width:643.248000px;}
._1a{width:647.538000px;}
._23{width:651.216000px;}
._1f{width:656.592000px;}
._1e{width:677.904000px;}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:26.235000px;}
.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;}
.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;}
.y189{bottom:80.263500px;}
.y10c{bottom:82.928850px;}
.y70{bottom:83.635350px;}
.y65{bottom:83.770350px;}
.y97{bottom:83.885550px;}
.y148{bottom:86.121900px;}
.y17{bottom:88.023000px;}
.ybc{bottom:91.190400px;}
.y188{bottom:95.263500px;}
.y10b{bottom:98.672850px;}
.y96{bottom:99.629550px;}
.y147{bottom:101.121900px;}
.ye7{bottom:101.193300px;}
.y6f{bottom:101.635350px;}
.y64{bottom:101.770350px;}
.y16{bottom:103.023000px;}
.y187{bottom:110.263500px;}
.y146{bottom:116.121900px;}
.ybb{bottom:116.798400px;}
.y6e{bottom:119.635350px;}
.y63{bottom:119.770350px;}
.y186{bottom:125.263500px;}
.ye6{bottom:128.505300px;}
.y145{bottom:131.121900px;}
.yee{bottom:135.546900px;}
.y106{bottom:137.230350px;}
.y6d{bottom:137.635350px;}
.y62{bottom:137.770350px;}
.y185{bottom:140.263500px;}
.ye5{bottom:141.309300px;}
.yba{bottom:142.406400px;}
.y144{bottom:146.121900px;}
.yed{bottom:151.290900px;}
.y184{bottom:155.263500px;}
.y6c{bottom:155.635350px;}
.y61{bottom:155.770350px;}
.y143{bottom:161.121900px;}
.yb6{bottom:168.014400px;}
.y2a{bottom:168.315900px;}
.ye9{bottom:170.200500px;}
.y183{bottom:170.263500px;}
.y6b{bottom:173.635350px;}
.y60{bottom:173.770350px;}
.y142{bottom:176.121900px;}
.ye4{bottom:179.721300px;}
.y182{bottom:185.263500px;}
.ye8{bottom:185.944500px;}
.y29{bottom:186.315900px;}
.y141{bottom:191.121900px;}
.y6a{bottom:191.635350px;}
.y5f{bottom:191.770350px;}
.ye3{bottom:192.525300px;}
.yb9{bottom:193.622400px;}
.y181{bottom:200.263500px;}
.y28{bottom:204.315900px;}
.y140{bottom:206.121900px;}
.y69{bottom:209.635350px;}
.y5e{bottom:209.770350px;}
.y180{bottom:215.263500px;}
.yb8{bottom:219.230400px;}
.y13f{bottom:221.121900px;}
.y27{bottom:222.315900px;}
.y105{bottom:227.230350px;}
.y68{bottom:227.635350px;}
.y5d{bottom:227.770350px;}
.y17f{bottom:230.265900px;}
.ye2{bottom:230.937300px;}
.y13e{bottom:236.121900px;}
.y26{bottom:240.315900px;}
.ye1{bottom:243.741300px;}
.yb7{bottom:244.838400px;}
.y17e{bottom:245.265900px;}
.y67{bottom:245.635350px;}
.y5c{bottom:245.770350px;}
.y13d{bottom:251.121900px;}
.y25{bottom:258.315900px;}
.y17d{bottom:260.265900px;}
.y104{bottom:263.635350px;}
.y5b{bottom:263.770350px;}
.y13c{bottom:266.121900px;}
.yb5{bottom:270.434400px;}
.y17c{bottom:275.265900px;}
.y24{bottom:276.315900px;}
.y13b{bottom:281.121900px;}
.y66{bottom:281.230350px;}
.y103{bottom:281.635350px;}
.y5a{bottom:281.770350px;}
.ye0{bottom:282.153300px;}
.y17b{bottom:290.265900px;}
.y23{bottom:294.315900px;}
.yb4{bottom:296.042400px;}
.y13a{bottom:296.121900px;}
.y102{bottom:299.635350px;}
.y59{bottom:299.770350px;}
.y17a{bottom:305.265900px;}
.ydf{bottom:307.761300px;}
.y139{bottom:311.121900px;}
.y10a{bottom:311.501400px;}
.y22{bottom:312.315900px;}
.y101{bottom:317.635350px;}
.y58{bottom:317.770350px;}
.y179{bottom:320.265900px;}
.yb3{bottom:321.650400px;}
.y138{bottom:326.121900px;}
.y109{bottom:327.245400px;}
.y21{bottom:330.315900px;}
.yde{bottom:333.369300px;}
.yae{bottom:334.454400px;}
.y178{bottom:335.265900px;}
.y100{bottom:335.635350px;}
.y57{bottom:335.770350px;}
.y95{bottom:336.055350px;}
.y137{bottom:341.121900px;}
.yb2{bottom:347.258400px;}
.y20{bottom:348.315900px;}
.y177{bottom:350.265900px;}
.yff{bottom:353.230350px;}
.y56{bottom:353.770350px;}
.y94{bottom:354.055350px;}
.y136{bottom:356.121900px;}
.ydd{bottom:358.977300px;}
.yb0{bottom:360.062400px;}
.y176{bottom:365.265900px;}
.y1f{bottom:366.315900px;}
.y135{bottom:371.121900px;}
.y55{bottom:371.770350px;}
.y93{bottom:372.055350px;}
.yb1{bottom:372.866400px;}
.y175{bottom:380.265900px;}
.y1e{bottom:384.315900px;}
.ydc{bottom:384.585300px;}
.y134{bottom:386.121900px;}
.yfe{bottom:389.635350px;}
.y54{bottom:389.770350px;}
.y92{bottom:390.055350px;}
.y174{bottom:395.265900px;}
.yd9{bottom:397.389300px;}
.yaf{bottom:398.474400px;}
.y133{bottom:401.121900px;}
.y1d{bottom:402.315900px;}
.yfd{bottom:407.635350px;}
.y53{bottom:407.770350px;}
.y91{bottom:408.055350px;}
.ydb{bottom:410.193300px;}
.y1b5{bottom:410.263500px;}
.y173{bottom:410.265900px;}
.y132{bottom:416.121900px;}
.y1c{bottom:420.315900px;}
.yd3{bottom:422.997300px;}
.yad{bottom:424.082400px;}
.y1b4{bottom:425.263500px;}
.y172{bottom:425.265900px;}
.yfc{bottom:425.635350px;}
.y52{bottom:425.770350px;}
.y90{bottom:426.055350px;}
.y131{bottom:431.121900px;}
.y1bd{bottom:434.914350px;}
.yda{bottom:435.801300px;}
.y1b{bottom:438.315900px;}
.y1b3{bottom:440.263500px;}
.y171{bottom:440.265900px;}
.yfb{bottom:443.635350px;}
.y51{bottom:443.770350px;}
.y8f{bottom:444.055350px;}
.y130{bottom:446.121900px;}
.yac{bottom:449.690400px;}
.y1bc{bottom:452.914350px;}
.y1b2{bottom:455.263500px;}
.y170{bottom:455.265900px;}
.y1a{bottom:456.315900px;}
.y12f{bottom:461.121900px;}
.yd8{bottom:461.409300px;}
.yfa{bottom:461.635350px;}
.y50{bottom:461.770350px;}
.y8e{bottom:462.055350px;}
.y1b1{bottom:470.263500px;}
.y16f{bottom:470.265900px;}
.yd6{bottom:474.213300px;}
.y19{bottom:474.315900px;}
.yab{bottom:475.298400px;}
.y12e{bottom:476.121900px;}
.yf9{bottom:479.635350px;}
.y4f{bottom:479.770350px;}
.y8d{bottom:480.055350px;}
.y1b0{bottom:485.263500px;}
.y16e{bottom:485.265900px;}
.yd7{bottom:487.017300px;}
.yaa{bottom:488.102400px;}
.y1bb{bottom:488.914350px;}
.y12d{bottom:491.121900px;}
.y2c{bottom:492.315900px;}
.yf8{bottom:497.635350px;}
.y4e{bottom:497.770350px;}
.y8c{bottom:498.055350px;}
.y1af{bottom:500.263500px;}
.y16d{bottom:500.265900px;}
.ya7{bottom:500.906400px;}
.y12c{bottom:506.121900px;}
.y1ba{bottom:506.914350px;}
.y18{bottom:509.910900px;}
.y2b{bottom:510.315900px;}
.yd5{bottom:512.625300px;}
.y1ae{bottom:515.263500px;}
.y16c{bottom:515.265900px;}
.yf7{bottom:515.635350px;}
.y4d{bottom:515.770350px;}
.y8b{bottom:516.055350px;}
.y12b{bottom:521.121900px;}
.ya9{bottom:526.514400px;}
.y1ad{bottom:530.263500px;}
.y16b{bottom:530.265900px;}
.yf6{bottom:533.230350px;}
.y4c{bottom:533.770350px;}
.y8a{bottom:534.055350px;}
.y12a{bottom:536.121900px;}
.y108{bottom:537.889500px;}
.yd4{bottom:538.221300px;}
.y1b9{bottom:542.914350px;}
.y1ac{bottom:545.263500px;}
.y16a{bottom:545.265900px;}
.y129{bottom:551.121900px;}
.y4b{bottom:551.770350px;}
.y89{bottom:552.055350px;}
.ya8{bottom:552.122400px;}
.y107{bottom:553.633500px;}
.y1ab{bottom:560.263500px;}
.y169{bottom:560.265900px;}
.y1b8{bottom:560.914350px;}
.yd2{bottom:563.829300px;}
.y128{bottom:566.121900px;}
.yf5{bottom:569.635350px;}
.y4a{bottom:569.770350px;}
.y88{bottom:570.055350px;}
.y1aa{bottom:575.263500px;}
.y168{bottom:575.265900px;}
.y127{bottom:581.121900px;}
.ya6{bottom:581.930400px;}
.y15{bottom:584.464200px;}
.yf4{bottom:587.635350px;}
.y49{bottom:587.770350px;}
.y87{bottom:588.055350px;}
.yd1{bottom:589.437300px;}
.y1a9{bottom:590.263500px;}
.y167{bottom:590.265900px;}
.y126{bottom:596.121900px;}
.y1b7{bottom:596.509350px;}
.yeb{bottom:599.224500px;}
.y1a8{bottom:605.263500px;}
.y166{bottom:605.265900px;}
.yf3{bottom:605.635350px;}
.y48{bottom:605.770350px;}
.y86{bottom:606.055350px;}
.y125{bottom:611.121900px;}
.y14{bottom:611.809200px;}
.yea{bottom:614.968500px;}
.yd0{bottom:615.045300px;}
.ya5{bottom:616.825350px;}
.y1a7{bottom:620.263500px;}
.y165{bottom:620.265900px;}
.yf2{bottom:623.635350px;}
.y47{bottom:623.770350px;}
.y85{bottom:624.055350px;}
.y124{bottom:626.121900px;}
.y13{bottom:629.809200px;}
.y1b6{bottom:633.763500px;}
.y1a6{bottom:635.263500px;}
.y164{bottom:635.265900px;}
.ycf{bottom:640.653300px;}
.y123{bottom:641.121900px;}
.yf1{bottom:641.635350px;}
.y46{bottom:641.770350px;}
.y84{bottom:642.055350px;}
.y12{bottom:647.809200px;}
.y1a5{bottom:650.263500px;}
.y163{bottom:650.265900px;}
.y122{bottom:656.121900px;}
.ya4{bottom:659.635350px;}
.y45{bottom:659.770350px;}
.y83{bottom:660.055350px;}
.y1a4{bottom:665.263500px;}
.y162{bottom:665.265900px;}
.y11{bottom:665.809200px;}
.yce{bottom:666.261300px;}
.y121{bottom:671.121900px;}
.ya3{bottom:677.635350px;}
.y44{bottom:677.770350px;}
.y82{bottom:678.055350px;}
.y1a3{bottom:680.263500px;}
.y161{bottom:680.265900px;}
.y10{bottom:683.809200px;}
.y120{bottom:686.121900px;}
.ycd{bottom:691.869300px;}
.y1a2{bottom:695.263500px;}
.y160{bottom:695.265900px;}
.ya2{bottom:695.635350px;}
.y43{bottom:695.770350px;}
.y11f{bottom:701.121900px;}
.yf{bottom:701.809200px;}
.ycb{bottom:704.673300px;}
.y1a1{bottom:710.263500px;}
.y15f{bottom:710.265900px;}
.ya1{bottom:713.635350px;}
.y81{bottom:713.650350px;}
.y42{bottom:713.770350px;}
.y11e{bottom:716.121900px;}
.ycc{bottom:717.477300px;}
.ye{bottom:719.809200px;}
.y1a0{bottom:725.263500px;}
.y15e{bottom:725.265900px;}
.y11d{bottom:731.121900px;}
.ya0{bottom:731.635350px;}
.y80{bottom:731.650350px;}
.y41{bottom:731.770350px;}
.yd{bottom:737.809200px;}
.y19f{bottom:740.263500px;}
.y15d{bottom:740.265900px;}
.yca{bottom:743.085300px;}
.y11c{bottom:746.121900px;}
.y9f{bottom:749.635350px;}
.y40{bottom:749.770350px;}
.y19e{bottom:755.263500px;}
.y15c{bottom:755.265900px;}
.yc{bottom:755.809200px;}
.y11b{bottom:761.121900px;}
.y9e{bottom:767.635350px;}
.y3f{bottom:767.770350px;}
.y7f{bottom:767.905350px;}
.yc9{bottom:768.693300px;}
.ybf{bottom:768.705300px;}
.y19d{bottom:770.263500px;}
.y15b{bottom:770.265900px;}
.yb{bottom:773.809200px;}
.y11a{bottom:776.121900px;}
.y19c{bottom:785.263500px;}
.y15a{bottom:785.265900px;}
.y9d{bottom:785.635350px;}
.y3e{bottom:785.770350px;}
.y7e{bottom:785.905350px;}
.y119{bottom:791.121900px;}
.yc8{bottom:794.301300px;}
.y19b{bottom:800.263500px;}
.y159{bottom:800.265900px;}
.yf0{bottom:803.230350px;}
.y9c{bottom:803.635350px;}
.y3d{bottom:803.770350px;}
.y7d{bottom:803.905350px;}
.y118{bottom:806.121900px;}
.y19a{bottom:815.263500px;}
.y158{bottom:815.265900px;}
.ya{bottom:818.967300px;}
.yc5{bottom:819.909300px;}
.y117{bottom:821.121900px;}
.y9b{bottom:821.635350px;}
.y3c{bottom:821.770350px;}
.y7c{bottom:821.905350px;}
.y199{bottom:830.263500px;}
.y157{bottom:830.265900px;}
.y9{bottom:831.418050px;}
.y116{bottom:836.121900px;}
.y9a{bottom:839.635350px;}
.y3b{bottom:839.770350px;}
.y7b{bottom:839.905350px;}
.y198{bottom:845.263500px;}
.y156{bottom:845.265900px;}
.yc7{bottom:845.517300px;}
.y115{bottom:851.121900px;}
.y3a{bottom:857.770350px;}
.y7a{bottom:857.905350px;}
.y197{bottom:860.263500px;}
.y155{bottom:860.265900px;}
.y8{bottom:863.133600px;}
.y114{bottom:866.121900px;}
.yc6{bottom:871.125300px;}
.y99{bottom:875.230350px;}
.y196{bottom:875.263500px;}
.y154{bottom:875.265900px;}
.y39{bottom:875.770350px;}
.y79{bottom:875.905350px;}
.y7{bottom:876.633600px;}
.y113{bottom:881.121900px;}
.y195{bottom:890.263500px;}
.y153{bottom:890.265900px;}
.y38{bottom:893.770350px;}
.y78{bottom:893.905350px;}
.y6{bottom:895.558950px;}
.y112{bottom:896.121900px;}
.yc4{bottom:896.733300px;}
.y194{bottom:905.263500px;}
.y152{bottom:905.265900px;}
.y37{bottom:911.770350px;}
.y77{bottom:911.905350px;}
.y193{bottom:920.263500px;}
.y151{bottom:920.265900px;}
.yc3{bottom:922.341300px;}
.y5{bottom:924.280950px;}
.y111{bottom:929.232600px;}
.y36{bottom:929.770350px;}
.y76{bottom:929.905350px;}
.yc0{bottom:935.145300px;}
.y192{bottom:935.263500px;}
.y150{bottom:935.265900px;}
.y35{bottom:947.770350px;}
.y75{bottom:947.905350px;}
.yc2{bottom:947.949300px;}
.y191{bottom:950.263500px;}
.y14f{bottom:950.265900px;}
.y190{bottom:965.263500px;}
.y14e{bottom:965.265900px;}
.y34{bottom:965.770350px;}
.y4{bottom:970.465200px;}
.yc1{bottom:973.557300px;}
.y18f{bottom:980.263500px;}
.y14d{bottom:980.265900px;}
.y74{bottom:983.500350px;}
.y33{bottom:983.770350px;}
.y110{bottom:983.772600px;}
.y18e{bottom:995.263500px;}
.y14c{bottom:995.265900px;}
.y10f{bottom:1001.367600px;}
.y73{bottom:1001.500350px;}
.y32{bottom:1001.770350px;}
.ybe{bottom:1002.993300px;}
.y3{bottom:1006.926000px;}
.y18d{bottom:1010.263500px;}
.y14b{bottom:1010.265900px;}
.y31{bottom:1019.770350px;}
.y18c{bottom:1025.263500px;}
.y14a{bottom:1025.265900px;}
.y72{bottom:1037.365350px;}
.y10e{bottom:1037.367600px;}
.y30{bottom:1037.770350px;}
.y18b{bottom:1040.263500px;}
.y149{bottom:1040.265900px;}
.y2{bottom:1069.300350px;}
.ybd{bottom:1132.406400px;}
.y71{bottom:1132.418700px;}
.y98{bottom:1132.421550px;}
.yec{bottom:1132.421700px;}
.yef{bottom:1132.422900px;}
.y18a{bottom:1132.423500px;}
.y10d{bottom:1132.424850px;}
.y2e{bottom:1136.092500px;}
.y2d{bottom:1150.492500px;}
.h6{height:19.125417px;}
.h8{height:28.412109px;}
.h2{height:30.597656px;}
.hb{height:32.783203px;}
.h7{height:32.805176px;}
.h11{height:33.351562px;}
.hf{height:34.968750px;}
.he{height:34.992188px;}
.hc{height:41.689453px;}
.h10{height:42.023438px;}
.ha{height:43.681641px;}
.h9{height:43.710938px;}
.hd{height:52.529297px;}
.h13{height:54.149297px;}
.h3{height:56.786133px;}
.h5{height:57.121316px;}
.h12{height:84.567562px;}
.h4{height:92.168262px;}
.h1{height:1190.250000px;}
.h0{height:1190.551500px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x20{left:70.582650px;}
.xb{left:76.535400px;}
.x17{left:78.661350px;}
.x9{left:96.094500px;}
.x1{left:97.795200px;}
.x1b{left:99.921300px;}
.x25{left:102.047250px;}
.x4{left:106.299150px;}
.xc{left:110.555400px;}
.x23{left:123.307350px;}
.x3{left:125.439150px;}
.x6{left:131.816400px;}
.x18{left:197.713350px;}
.x16{left:198.875400px;}
.x5{left:212.876400px;}
.x22{left:215.530350px;}
.x1c{left:218.973300px;}
.x1a{left:346.537350px;}
.x1d{left:367.797300px;}
.xa{left:455.041500px;}
.xd{left:457.115400px;}
.x13{left:478.360350px;}
.x7{left:480.461400px;}
.x26{left:482.605650px;}
.xe{left:491.135400px;}
.x24{left:503.855400px;}
.x14{left:512.380350px;}
.x8{left:514.481400px;}
.xf{left:525.273000px;}
.x21{left:570.677400px;}
.x12{left:612.925350px;}
.x11{left:663.492300px;}
.x2{left:693.365400px;}
.x19{left:701.953350px;}
.x27{left:721.717650px;}
.x1e{left:723.213300px;}
.x1f{left:726.225300px;}
.x10{left:728.391600px;}
.x15{left:749.653500px;}
@media print{
.v2{vertical-align:-19.290133pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:1.440000pt;}
.v1{vertical-align:27.005867pt;}
.v3{vertical-align:45.525333pt;}
.ls14{letter-spacing:-4.051200pt;}
.ls82{letter-spacing:-2.346667pt;}
.ls52{letter-spacing:-1.578667pt;}
.ls13{letter-spacing:-0.693333pt;}
.ls8d{letter-spacing:-0.512000pt;}
.ls50{letter-spacing:-0.426667pt;}
.ls15{letter-spacing:-0.400000pt;}
.ls7e{letter-spacing:-0.384000pt;}
.ls4a{letter-spacing:-0.320000pt;}
.ls8c{letter-spacing:-0.298667pt;}
.ls17{letter-spacing:-0.213333pt;}
.ls51{letter-spacing:-0.160000pt;}
.ls7f{letter-spacing:-0.128000pt;}
.ls18{letter-spacing:-0.106667pt;}
.ls83{letter-spacing:-0.085333pt;}
.ls3f{letter-spacing:-0.053333pt;}
.ls7d{letter-spacing:-0.042667pt;}
.ls12{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.003680pt;}
.ls78{letter-spacing:0.042667pt;}
.ls4{letter-spacing:0.053333pt;}
.ls33{letter-spacing:0.106667pt;}
.ls5f{letter-spacing:0.128000pt;}
.ls25{letter-spacing:0.160000pt;}
.ls74{letter-spacing:0.170667pt;}
.ls1f{letter-spacing:0.213333pt;}
.ls75{letter-spacing:0.256000pt;}
.ls1b{letter-spacing:0.266667pt;}
.ls63{letter-spacing:0.298667pt;}
.ls1c{letter-spacing:0.320000pt;}
.ls59{letter-spacing:0.341333pt;}
.ls24{letter-spacing:0.373333pt;}
.ls76{letter-spacing:0.384000pt;}
.ls2b{letter-spacing:0.426667pt;}
.ls70{letter-spacing:0.469333pt;}
.ls26{letter-spacing:0.480000pt;}
.ls19{letter-spacing:0.533333pt;}
.ls62{letter-spacing:0.554667pt;}
.ls1a{letter-spacing:0.586667pt;}
.ls71{letter-spacing:0.597333pt;}
.lsf{letter-spacing:0.640000pt;}
.ls5a{letter-spacing:0.682667pt;}
.ls5{letter-spacing:0.693333pt;}
.ls68{letter-spacing:0.725333pt;}
.ls7{letter-spacing:0.746667pt;}
.ls80{letter-spacing:0.768000pt;}
.ls6{letter-spacing:0.800000pt;}
.ls7c{letter-spacing:0.810667pt;}
.ls39{letter-spacing:0.853333pt;}
.ls89{letter-spacing:0.896000pt;}
.ls10{letter-spacing:0.906667pt;}
.ls72{letter-spacing:0.938667pt;}
.ls16{letter-spacing:0.960000pt;}
.ls6d{letter-spacing:0.981333pt;}
.ls3{letter-spacing:1.013333pt;}
.ls85{letter-spacing:1.024000pt;}
.ls20{letter-spacing:1.066667pt;}
.ls84{letter-spacing:1.109333pt;}
.ls3a{letter-spacing:1.120000pt;}
.ls58{letter-spacing:1.152000pt;}
.lsd{letter-spacing:1.173333pt;}
.ls22{letter-spacing:1.226667pt;}
.ls6c{letter-spacing:1.237333pt;}
.ls1d{letter-spacing:1.280000pt;}
.ls73{letter-spacing:1.322667pt;}
.ls11{letter-spacing:1.333333pt;}
.ls6a{letter-spacing:1.365333pt;}
.lse{letter-spacing:1.386667pt;}
.ls67{letter-spacing:1.408000pt;}
.ls3e{letter-spacing:1.440000pt;}
.ls6e{letter-spacing:1.450667pt;}
.ls2a{letter-spacing:1.493333pt;}
.ls60{letter-spacing:1.536000pt;}
.ls41{letter-spacing:1.546667pt;}
.ls66{letter-spacing:1.578667pt;}
.ls40{letter-spacing:1.600000pt;}
.ls38{letter-spacing:1.653333pt;}
.ls87{letter-spacing:1.706667pt;}
.ls49{letter-spacing:1.760000pt;}
.ls43{letter-spacing:1.813333pt;}
.ls48{letter-spacing:1.834667pt;}
.ls2f{letter-spacing:1.866667pt;}
.ls5d{letter-spacing:1.877333pt;}
.ls35{letter-spacing:1.920000pt;}
.ls8a{letter-spacing:2.005333pt;}
.ls31{letter-spacing:2.026667pt;}
.ls6b{letter-spacing:2.090667pt;}
.ls1e{letter-spacing:2.133333pt;}
.ls21{letter-spacing:2.186667pt;}
.ls34{letter-spacing:2.240000pt;}
.ls8b{letter-spacing:2.261333pt;}
.ls2d{letter-spacing:2.293333pt;}
.ls79{letter-spacing:2.304000pt;}
.ls8{letter-spacing:2.346667pt;}
.ls69{letter-spacing:2.389333pt;}
.ls9{letter-spacing:2.400000pt;}
.ls81{letter-spacing:2.432000pt;}
.ls32{letter-spacing:2.453333pt;}
.ls46{letter-spacing:2.506667pt;}
.ls4e{letter-spacing:2.560000pt;}
.ls64{letter-spacing:2.602667pt;}
.ls23{letter-spacing:2.613333pt;}
.ls5c{letter-spacing:2.645333pt;}
.lsc{letter-spacing:2.666667pt;}
.ls77{letter-spacing:2.730667pt;}
.ls88{letter-spacing:2.773333pt;}
.ls44{letter-spacing:2.826667pt;}
.lsa{letter-spacing:2.880000pt;}
.ls42{letter-spacing:2.933333pt;}
.ls3d{letter-spacing:2.986667pt;}
.ls55{letter-spacing:3.146667pt;}
.ls7a{letter-spacing:3.157333pt;}
.ls4d{letter-spacing:3.200000pt;}
.ls29{letter-spacing:3.306667pt;}
.ls6f{letter-spacing:3.328000pt;}
.lsb{letter-spacing:3.413333pt;}
.ls65{letter-spacing:3.541333pt;}
.ls28{letter-spacing:3.573333pt;}
.ls57{letter-spacing:3.626667pt;}
.ls4c{letter-spacing:3.680000pt;}
.ls37{letter-spacing:3.786667pt;}
.ls53{letter-spacing:3.893333pt;}
.ls7b{letter-spacing:3.925333pt;}
.ls45{letter-spacing:3.946667pt;}
.ls3c{letter-spacing:4.053333pt;}
.ls27{letter-spacing:4.106667pt;}
.ls2c{letter-spacing:4.160000pt;}
.ls2e{letter-spacing:4.213333pt;}
.ls36{letter-spacing:4.373333pt;}
.ls3b{letter-spacing:4.533333pt;}
.ls54{letter-spacing:4.586667pt;}
.ls86{letter-spacing:4.693333pt;}
.ls47{letter-spacing:4.853333pt;}
.ls61{letter-spacing:5.034667pt;}
.ls4b{letter-spacing:5.173333pt;}
.ls56{letter-spacing:5.226667pt;}
.ls5e{letter-spacing:5.376000pt;}
.ls4f{letter-spacing:5.706667pt;}
.ls2{letter-spacing:6.026667pt;}
.ls30{letter-spacing:6.240000pt;}
.ls5b{letter-spacing:6.773333pt;}
.ls0{letter-spacing:52.918112pt;}
.ws14{word-spacing:-17.493333pt;}
.ws2{word-spacing:-16.213333pt;}
.ws3{word-spacing:-16.000000pt;}
.ws16{word-spacing:-15.200000pt;}
.ws8f{word-spacing:-15.040000pt;}
.ws39{word-spacing:-14.826667pt;}
.ws9e{word-spacing:-14.208000pt;}
.wsa2{word-spacing:-13.994667pt;}
.wsa7{word-spacing:-13.824000pt;}
.ws18{word-spacing:-13.760000pt;}
.ws17{word-spacing:-13.546667pt;}
.ws15{word-spacing:-13.333333pt;}
.wsa9{word-spacing:-13.056000pt;}
.ws9c{word-spacing:-12.544000pt;}
.wsce{word-spacing:-12.117333pt;}
.wsa0{word-spacing:-12.074667pt;}
.ws4{word-spacing:-11.861333pt;}
.wscf{word-spacing:-11.818667pt;}
.wsa4{word-spacing:-11.733333pt;}
.wsa3{word-spacing:-11.605333pt;}
.ws1{word-spacing:-11.120000pt;}
.wsa8{word-spacing:-11.093333pt;}
.ws9d{word-spacing:-10.965333pt;}
.wsaa{word-spacing:-10.922667pt;}
.wsd0{word-spacing:-10.837333pt;}
.ws9f{word-spacing:-10.666667pt;}
.wsa6{word-spacing:-10.581333pt;}
.wsa1{word-spacing:-10.453333pt;}
.ws0{word-spacing:-9.076144pt;}
.wsa5{word-spacing:-8.320000pt;}
.ws67{word-spacing:-5.706667pt;}
.ws35{word-spacing:-4.533333pt;}
.ws26{word-spacing:-4.213333pt;}
.ws21{word-spacing:-4.106667pt;}
.ws25{word-spacing:-3.573333pt;}
.wsb1{word-spacing:-3.541333pt;}
.wsc0{word-spacing:-3.328000pt;}
.ws66{word-spacing:-3.306667pt;}
.ws94{word-spacing:-3.146667pt;}
.ws36{word-spacing:-2.986667pt;}
.ws42{word-spacing:-2.826667pt;}
.ws2a{word-spacing:-2.666667pt;}
.ws6{word-spacing:-2.565333pt;}
.ws48{word-spacing:-2.506667pt;}
.wsd2{word-spacing:-2.432000pt;}
.wsab{word-spacing:-2.400000pt;}
.wsb5{word-spacing:-2.346667pt;}
.wsd9{word-spacing:-2.261333pt;}
.ws3c{word-spacing:-2.240000pt;}
.ws2f{word-spacing:-2.186667pt;}
.wsbf{word-spacing:-2.133333pt;}
.ws32{word-spacing:-2.026667pt;}
.ws34{word-spacing:-1.973333pt;}
.wsac{word-spacing:-1.877333pt;}
.ws4e{word-spacing:-1.834667pt;}
.ws92{word-spacing:-1.813333pt;}
.ws3e{word-spacing:-1.760000pt;}
.wsb2{word-spacing:-1.621333pt;}
.ws64{word-spacing:-1.600000pt;}
.ws3b{word-spacing:-1.546667pt;}
.wsae{word-spacing:-1.536000pt;}
.wsd1{word-spacing:-1.493333pt;}
.wsc7{word-spacing:-1.450667pt;}
.ws13{word-spacing:-1.440000pt;}
.wsb7{word-spacing:-1.408000pt;}
.wsbb{word-spacing:-1.365333pt;}
.wscc{word-spacing:-1.280000pt;}
.ws49{word-spacing:-1.226667pt;}
.ws41{word-spacing:-1.173333pt;}
.ws65{word-spacing:-1.120000pt;}
.ws23{word-spacing:-1.066667pt;}
.ws1e{word-spacing:-1.013333pt;}
.wsd7{word-spacing:-0.981333pt;}
.ws4c{word-spacing:-0.960000pt;}
.wsc3{word-spacing:-0.938667pt;}
.ws3f{word-spacing:-0.906667pt;}
.ws33{word-spacing:-0.853333pt;}
.wsda{word-spacing:-0.810667pt;}
.ws2e{word-spacing:-0.800000pt;}
.ws4a{word-spacing:-0.746667pt;}
.wsd8{word-spacing:-0.725333pt;}
.ws29{word-spacing:-0.693333pt;}
.ws28{word-spacing:-0.640000pt;}
.ws1b{word-spacing:-0.586667pt;}
.ws3a{word-spacing:-0.480000pt;}
.ws47{word-spacing:-0.426667pt;}
.wsc6{word-spacing:-0.384000pt;}
.ws2c{word-spacing:-0.373333pt;}
.ws9b{word-spacing:-0.341333pt;}
.ws43{word-spacing:-0.320000pt;}
.wsaf{word-spacing:-0.298667pt;}
.ws24{word-spacing:-0.266667pt;}
.wsc5{word-spacing:-0.256000pt;}
.ws2b{word-spacing:-0.213333pt;}
.wsc8{word-spacing:-0.170667pt;}
.ws69{word-spacing:-0.160000pt;}
.ws11{word-spacing:-0.053333pt;}
.wsc9{word-spacing:-0.042667pt;}
.ws5{word-spacing:0.000000pt;}
.wsad{word-spacing:0.042667pt;}
.ws38{word-spacing:0.053333pt;}
.ws12{word-spacing:0.106667pt;}
.ws6a{word-spacing:0.160000pt;}
.ws10{word-spacing:0.213333pt;}
.wsb0{word-spacing:0.341333pt;}
.ws27{word-spacing:0.373333pt;}
.wsb4{word-spacing:0.384000pt;}
.wsd6{word-spacing:0.512000pt;}
.ws37{word-spacing:0.533333pt;}
.ws22{word-spacing:0.640000pt;}
.wsbe{word-spacing:0.682667pt;}
.ws8e{word-spacing:0.810667pt;}
.wsb6{word-spacing:0.853333pt;}
.wse{word-spacing:0.906667pt;}
.ws3d{word-spacing:0.960000pt;}
.wsd5{word-spacing:0.981333pt;}
.ws90{word-spacing:1.013333pt;}
.wscb{word-spacing:1.152000pt;}
.ws1d{word-spacing:1.280000pt;}
.ws19{word-spacing:1.386667pt;}
.ws44{word-spacing:1.440000pt;}
.wsca{word-spacing:1.450667pt;}
.wsbd{word-spacing:1.493333pt;}
.ws1a{word-spacing:1.546667pt;}
.ws8c{word-spacing:1.578667pt;}
.wsb9{word-spacing:1.664000pt;}
.ws9{word-spacing:1.760000pt;}
.wsd{word-spacing:1.866667pt;}
.wsc4{word-spacing:1.920000pt;}
.wsa{word-spacing:1.973333pt;}
.wsd3{word-spacing:2.005333pt;}
.ws93{word-spacing:2.080000pt;}
.ws68{word-spacing:2.133333pt;}
.wsc1{word-spacing:2.176000pt;}
.ws97{word-spacing:2.186667pt;}
.ws30{word-spacing:2.240000pt;}
.ws46{word-spacing:2.293333pt;}
.wsd4{word-spacing:2.346667pt;}
.ws45{word-spacing:2.453333pt;}
.ws91{word-spacing:2.506667pt;}
.wsdb{word-spacing:2.613333pt;}
.ws4b{word-spacing:2.666667pt;}
.ws8d{word-spacing:2.688000pt;}
.wsc2{word-spacing:2.816000pt;}
.ws40{word-spacing:2.826667pt;}
.wsb3{word-spacing:2.901333pt;}
.wscd{word-spacing:2.944000pt;}
.ws1c{word-spacing:3.040000pt;}
.wsba{word-spacing:3.157333pt;}
.wsb8{word-spacing:3.242667pt;}
.ws20{word-spacing:3.253333pt;}
.wsbc{word-spacing:3.328000pt;}
.ws9a{word-spacing:3.498667pt;}
.ws4d{word-spacing:3.541333pt;}
.ws96{word-spacing:3.573333pt;}
.ws98{word-spacing:3.626667pt;}
.ws2d{word-spacing:3.680000pt;}
.wsc{word-spacing:3.786667pt;}
.wsf{word-spacing:3.840000pt;}
.ws1f{word-spacing:4.000000pt;}
.ws31{word-spacing:4.053333pt;}
.wsb{word-spacing:4.213333pt;}
.ws8{word-spacing:4.373333pt;}
.ws7{word-spacing:4.426667pt;}
.ws99{word-spacing:4.853333pt;}
.ws95{word-spacing:4.906667pt;}
.ws88{word-spacing:180.394667pt;}
.ws55{word-spacing:211.242667pt;}
.ws83{word-spacing:220.714667pt;}
.ws85{word-spacing:227.797333pt;}
.ws82{word-spacing:228.522667pt;}
.ws50{word-spacing:238.805333pt;}
.ws89{word-spacing:241.194667pt;}
.ws79{word-spacing:248.917333pt;}
.ws62{word-spacing:264.874667pt;}
.ws58{word-spacing:264.917333pt;}
.ws84{word-spacing:268.074667pt;}
.ws54{word-spacing:272.085333pt;}
.ws5f{word-spacing:283.861333pt;}
.ws5d{word-spacing:286.250667pt;}
.ws56{word-spacing:290.944000pt;}
.ws7a{word-spacing:293.376000pt;}
.ws77{word-spacing:298.069333pt;}
.ws76{word-spacing:302.762667pt;}
.ws63{word-spacing:302.805333pt;}
.ws4f{word-spacing:313.130667pt;}
.ws5e{word-spacing:319.402667pt;}
.ws60{word-spacing:321.749333pt;}
.ws51{word-spacing:324.138667pt;}
.ws87{word-spacing:324.778667pt;}
.ws86{word-spacing:328.917333pt;}
.ws8a{word-spacing:331.264000pt;}
.ws5c{word-spacing:335.104000pt;}
.ws81{word-spacing:336.000000pt;}
.ws78{word-spacing:338.346667pt;}
.ws5b{word-spacing:338.389333pt;}
.ws61{word-spacing:343.125333pt;}
.ws73{word-spacing:391.978667pt;}
.ws75{word-spacing:454.101333pt;}
.ws59{word-spacing:482.858667pt;}
.ws52{word-spacing:485.248000pt;}
.ws6e{word-spacing:494.762667pt;}
.ws7e{word-spacing:497.109333pt;}
.ws72{word-spacing:501.845333pt;}
.ws57{word-spacing:504.704000pt;}
.ws7f{word-spacing:513.664000pt;}
.ws6f{word-spacing:518.442667pt;}
.ws74{word-spacing:522.026667pt;}
.ws70{word-spacing:523.178667pt;}
.ws6b{word-spacing:527.957333pt;}
.ws71{word-spacing:532.650667pt;}
.ws7d{word-spacing:532.693333pt;}
.ws53{word-spacing:534.997333pt;}
.ws7c{word-spacing:540.970667pt;}
.ws6d{word-spacing:551.637333pt;}
.ws5a{word-spacing:561.109333pt;}
.ws7b{word-spacing:575.360000pt;}
.ws80{word-spacing:576.512000pt;}
.ws6c{word-spacing:593.109333pt;}
.ws8b{word-spacing:2107.733333pt;}
._d{margin-left:-2576.085333pt;}
._e{margin-left:-2554.922667pt;}
._4{margin-left:-6.026667pt;}
._1{margin-left:-4.778667pt;}
._2f{margin-left:-3.866667pt;}
._2{margin-left:-2.960000pt;}
._0{margin-left:-2.053333pt;}
._3{margin-left:-0.906667pt;}
._6{width:1.066667pt;}
._9{width:2.000000pt;}
._5{width:3.680000pt;}
._7{width:5.066667pt;}
._8{width:6.666667pt;}
._c{width:7.573333pt;}
._a{width:8.480000pt;}
._b{width:9.386667pt;}
._f{width:10.506667pt;}
._12{width:225.664000pt;}
._28{width:292.138667pt;}
._10{width:318.208000pt;}
._13{width:468.650667pt;}
._18{width:479.317333pt;}
._2d{width:481.706667pt;}
._24{width:489.376000pt;}
._14{width:492.373333pt;}
._20{width:494.720000pt;}
._11{width:502.400000pt;}
._17{width:505.429333pt;}
._15{width:512.597333pt;}
._2a{width:515.370667pt;}
._29{width:521.984000pt;}
._1d{width:524.373333pt;}
._1b{width:526.762667pt;}
._16{width:531.456000pt;}
._25{width:533.888000pt;}
._22{width:538.581333pt;}
._21{width:543.317333pt;}
._26{width:550.442667pt;}
._19{width:553.984000pt;}
._27{width:555.989333pt;}
._1c{width:559.914667pt;}
._2c{width:565.237333pt;}
._2b{width:569.429333pt;}
._2e{width:571.776000pt;}
._1a{width:575.589333pt;}
._23{width:578.858667pt;}
._1f{width:583.637333pt;}
._1e{width:602.581333pt;}
.fs5{font-size:23.320000pt;}
.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;}
.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;}
.y189{bottom:71.345333pt;}
.y10c{bottom:73.714533pt;}
.y70{bottom:74.342533pt;}
.y65{bottom:74.462533pt;}
.y97{bottom:74.564933pt;}
.y148{bottom:76.552800pt;}
.y17{bottom:78.242667pt;}
.ybc{bottom:81.058133pt;}
.y188{bottom:84.678667pt;}
.y10b{bottom:87.709200pt;}
.y96{bottom:88.559600pt;}
.y147{bottom:89.886133pt;}
.ye7{bottom:89.949600pt;}
.y6f{bottom:90.342533pt;}
.y64{bottom:90.462533pt;}
.y16{bottom:91.576000pt;}
.y187{bottom:98.012000pt;}
.y146{bottom:103.219467pt;}
.ybb{bottom:103.820800pt;}
.y6e{bottom:106.342533pt;}
.y63{bottom:106.462533pt;}
.y186{bottom:111.345333pt;}
.ye6{bottom:114.226933pt;}
.y145{bottom:116.552800pt;}
.yee{bottom:120.486133pt;}
.y106{bottom:121.982533pt;}
.y6d{bottom:122.342533pt;}
.y62{bottom:122.462533pt;}
.y185{bottom:124.678667pt;}
.ye5{bottom:125.608267pt;}
.yba{bottom:126.583467pt;}
.y144{bottom:129.886133pt;}
.yed{bottom:134.480800pt;}
.y184{bottom:138.012000pt;}
.y6c{bottom:138.342533pt;}
.y61{bottom:138.462533pt;}
.y143{bottom:143.219467pt;}
.yb6{bottom:149.346133pt;}
.y2a{bottom:149.614133pt;}
.ye9{bottom:151.289333pt;}
.y183{bottom:151.345333pt;}
.y6b{bottom:154.342533pt;}
.y60{bottom:154.462533pt;}
.y142{bottom:156.552800pt;}
.ye4{bottom:159.752267pt;}
.y182{bottom:164.678667pt;}
.ye8{bottom:165.284000pt;}
.y29{bottom:165.614133pt;}
.y141{bottom:169.886133pt;}
.y6a{bottom:170.342533pt;}
.y5f{bottom:170.462533pt;}
.ye3{bottom:171.133600pt;}
.yb9{bottom:172.108800pt;}
.y181{bottom:178.012000pt;}
.y28{bottom:181.614133pt;}
.y140{bottom:183.219467pt;}
.y69{bottom:186.342533pt;}
.y5e{bottom:186.462533pt;}
.y180{bottom:191.345333pt;}
.yb8{bottom:194.871467pt;}
.y13f{bottom:196.552800pt;}
.y27{bottom:197.614133pt;}
.y105{bottom:201.982533pt;}
.y68{bottom:202.342533pt;}
.y5d{bottom:202.462533pt;}
.y17f{bottom:204.680800pt;}
.ye2{bottom:205.277600pt;}
.y13e{bottom:209.886133pt;}
.y26{bottom:213.614133pt;}
.ye1{bottom:216.658933pt;}
.yb7{bottom:217.634133pt;}
.y17e{bottom:218.014133pt;}
.y67{bottom:218.342533pt;}
.y5c{bottom:218.462533pt;}
.y13d{bottom:223.219467pt;}
.y25{bottom:229.614133pt;}
.y17d{bottom:231.347467pt;}
.y104{bottom:234.342533pt;}
.y5b{bottom:234.462533pt;}
.y13c{bottom:236.552800pt;}
.yb5{bottom:240.386133pt;}
.y17c{bottom:244.680800pt;}
.y24{bottom:245.614133pt;}
.y13b{bottom:249.886133pt;}
.y66{bottom:249.982533pt;}
.y103{bottom:250.342533pt;}
.y5a{bottom:250.462533pt;}
.ye0{bottom:250.802933pt;}
.y17b{bottom:258.014133pt;}
.y23{bottom:261.614133pt;}
.yb4{bottom:263.148800pt;}
.y13a{bottom:263.219467pt;}
.y102{bottom:266.342533pt;}
.y59{bottom:266.462533pt;}
.y17a{bottom:271.347467pt;}
.ydf{bottom:273.565600pt;}
.y139{bottom:276.552800pt;}
.y10a{bottom:276.890133pt;}
.y22{bottom:277.614133pt;}
.y101{bottom:282.342533pt;}
.y58{bottom:282.462533pt;}
.y179{bottom:284.680800pt;}
.yb3{bottom:285.911467pt;}
.y138{bottom:289.886133pt;}
.y109{bottom:290.884800pt;}
.y21{bottom:293.614133pt;}
.yde{bottom:296.328267pt;}
.yae{bottom:297.292800pt;}
.y178{bottom:298.014133pt;}
.y100{bottom:298.342533pt;}
.y57{bottom:298.462533pt;}
.y95{bottom:298.715867pt;}
.y137{bottom:303.219467pt;}
.yb2{bottom:308.674133pt;}
.y20{bottom:309.614133pt;}
.y177{bottom:311.347467pt;}
.yff{bottom:313.982533pt;}
.y56{bottom:314.462533pt;}
.y94{bottom:314.715867pt;}
.y136{bottom:316.552800pt;}
.ydd{bottom:319.090933pt;}
.yb0{bottom:320.055467pt;}
.y176{bottom:324.680800pt;}
.y1f{bottom:325.614133pt;}
.y135{bottom:329.886133pt;}
.y55{bottom:330.462533pt;}
.y93{bottom:330.715867pt;}
.yb1{bottom:331.436800pt;}
.y175{bottom:338.014133pt;}
.y1e{bottom:341.614133pt;}
.ydc{bottom:341.853600pt;}
.y134{bottom:343.219467pt;}
.yfe{bottom:346.342533pt;}
.y54{bottom:346.462533pt;}
.y92{bottom:346.715867pt;}
.y174{bottom:351.347467pt;}
.yd9{bottom:353.234933pt;}
.yaf{bottom:354.199467pt;}
.y133{bottom:356.552800pt;}
.y1d{bottom:357.614133pt;}
.yfd{bottom:362.342533pt;}
.y53{bottom:362.462533pt;}
.y91{bottom:362.715867pt;}
.ydb{bottom:364.616267pt;}
.y1b5{bottom:364.678667pt;}
.y173{bottom:364.680800pt;}
.y132{bottom:369.886133pt;}
.y1c{bottom:373.614133pt;}
.yd3{bottom:375.997600pt;}
.yad{bottom:376.962133pt;}
.y1b4{bottom:378.012000pt;}
.y172{bottom:378.014133pt;}
.yfc{bottom:378.342533pt;}
.y52{bottom:378.462533pt;}
.y90{bottom:378.715867pt;}
.y131{bottom:383.219467pt;}
.y1bd{bottom:386.590533pt;}
.yda{bottom:387.378933pt;}
.y1b{bottom:389.614133pt;}
.y1b3{bottom:391.345333pt;}
.y171{bottom:391.347467pt;}
.yfb{bottom:394.342533pt;}
.y51{bottom:394.462533pt;}
.y8f{bottom:394.715867pt;}
.y130{bottom:396.552800pt;}
.yac{bottom:399.724800pt;}
.y1bc{bottom:402.590533pt;}
.y1b2{bottom:404.678667pt;}
.y170{bottom:404.680800pt;}
.y1a{bottom:405.614133pt;}
.y12f{bottom:409.886133pt;}
.yd8{bottom:410.141600pt;}
.yfa{bottom:410.342533pt;}
.y50{bottom:410.462533pt;}
.y8e{bottom:410.715867pt;}
.y1b1{bottom:418.012000pt;}
.y16f{bottom:418.014133pt;}
.yd6{bottom:421.522933pt;}
.y19{bottom:421.614133pt;}
.yab{bottom:422.487467pt;}
.y12e{bottom:423.219467pt;}
.yf9{bottom:426.342533pt;}
.y4f{bottom:426.462533pt;}
.y8d{bottom:426.715867pt;}
.y1b0{bottom:431.345333pt;}
.y16e{bottom:431.347467pt;}
.yd7{bottom:432.904267pt;}
.yaa{bottom:433.868800pt;}
.y1bb{bottom:434.590533pt;}
.y12d{bottom:436.552800pt;}
.y2c{bottom:437.614133pt;}
.yf8{bottom:442.342533pt;}
.y4e{bottom:442.462533pt;}
.y8c{bottom:442.715867pt;}
.y1af{bottom:444.678667pt;}
.y16d{bottom:444.680800pt;}
.ya7{bottom:445.250133pt;}
.y12c{bottom:449.886133pt;}
.y1ba{bottom:450.590533pt;}
.y18{bottom:453.254133pt;}
.y2b{bottom:453.614133pt;}
.yd5{bottom:455.666933pt;}
.y1ae{bottom:458.012000pt;}
.y16c{bottom:458.014133pt;}
.yf7{bottom:458.342533pt;}
.y4d{bottom:458.462533pt;}
.y8b{bottom:458.715867pt;}
.y12b{bottom:463.219467pt;}
.ya9{bottom:468.012800pt;}
.y1ad{bottom:471.345333pt;}
.y16b{bottom:471.347467pt;}
.yf6{bottom:473.982533pt;}
.y4c{bottom:474.462533pt;}
.y8a{bottom:474.715867pt;}
.y12a{bottom:476.552800pt;}
.y108{bottom:478.124000pt;}
.yd4{bottom:478.418933pt;}
.y1b9{bottom:482.590533pt;}
.y1ac{bottom:484.678667pt;}
.y16a{bottom:484.680800pt;}
.y129{bottom:489.886133pt;}
.y4b{bottom:490.462533pt;}
.y89{bottom:490.715867pt;}
.ya8{bottom:490.775467pt;}
.y107{bottom:492.118667pt;}
.y1ab{bottom:498.012000pt;}
.y169{bottom:498.014133pt;}
.y1b8{bottom:498.590533pt;}
.yd2{bottom:501.181600pt;}
.y128{bottom:503.219467pt;}
.yf5{bottom:506.342533pt;}
.y4a{bottom:506.462533pt;}
.y88{bottom:506.715867pt;}
.y1aa{bottom:511.345333pt;}
.y168{bottom:511.347467pt;}
.y127{bottom:516.552800pt;}
.ya6{bottom:517.271467pt;}
.y15{bottom:519.523733pt;}
.yf4{bottom:522.342533pt;}
.y49{bottom:522.462533pt;}
.y87{bottom:522.715867pt;}
.yd1{bottom:523.944267pt;}
.y1a9{bottom:524.678667pt;}
.y167{bottom:524.680800pt;}
.y126{bottom:529.886133pt;}
.y1b7{bottom:530.230533pt;}
.yeb{bottom:532.644000pt;}
.y1a8{bottom:538.012000pt;}
.y166{bottom:538.014133pt;}
.yf3{bottom:538.342533pt;}
.y48{bottom:538.462533pt;}
.y86{bottom:538.715867pt;}
.y125{bottom:543.219467pt;}
.y14{bottom:543.830400pt;}
.yea{bottom:546.638667pt;}
.yd0{bottom:546.706933pt;}
.ya5{bottom:548.289200pt;}
.y1a7{bottom:551.345333pt;}
.y165{bottom:551.347467pt;}
.yf2{bottom:554.342533pt;}
.y47{bottom:554.462533pt;}
.y85{bottom:554.715867pt;}
.y124{bottom:556.552800pt;}
.y13{bottom:559.830400pt;}
.y1b6{bottom:563.345333pt;}
.y1a6{bottom:564.678667pt;}
.y164{bottom:564.680800pt;}
.ycf{bottom:569.469600pt;}
.y123{bottom:569.886133pt;}
.yf1{bottom:570.342533pt;}
.y46{bottom:570.462533pt;}
.y84{bottom:570.715867pt;}
.y12{bottom:575.830400pt;}
.y1a5{bottom:578.012000pt;}
.y163{bottom:578.014133pt;}
.y122{bottom:583.219467pt;}
.ya4{bottom:586.342533pt;}
.y45{bottom:586.462533pt;}
.y83{bottom:586.715867pt;}
.y1a4{bottom:591.345333pt;}
.y162{bottom:591.347467pt;}
.y11{bottom:591.830400pt;}
.yce{bottom:592.232267pt;}
.y121{bottom:596.552800pt;}
.ya3{bottom:602.342533pt;}
.y44{bottom:602.462533pt;}
.y82{bottom:602.715867pt;}
.y1a3{bottom:604.678667pt;}
.y161{bottom:604.680800pt;}
.y10{bottom:607.830400pt;}
.y120{bottom:609.886133pt;}
.ycd{bottom:614.994933pt;}
.y1a2{bottom:618.012000pt;}
.y160{bottom:618.014133pt;}
.ya2{bottom:618.342533pt;}
.y43{bottom:618.462533pt;}
.y11f{bottom:623.219467pt;}
.yf{bottom:623.830400pt;}
.ycb{bottom:626.376267pt;}
.y1a1{bottom:631.345333pt;}
.y15f{bottom:631.347467pt;}
.ya1{bottom:634.342533pt;}
.y81{bottom:634.355867pt;}
.y42{bottom:634.462533pt;}
.y11e{bottom:636.552800pt;}
.ycc{bottom:637.757600pt;}
.ye{bottom:639.830400pt;}
.y1a0{bottom:644.678667pt;}
.y15e{bottom:644.680800pt;}
.y11d{bottom:649.886133pt;}
.ya0{bottom:650.342533pt;}
.y80{bottom:650.355867pt;}
.y41{bottom:650.462533pt;}
.yd{bottom:655.830400pt;}
.y19f{bottom:658.012000pt;}
.y15d{bottom:658.014133pt;}
.yca{bottom:660.520267pt;}
.y11c{bottom:663.219467pt;}
.y9f{bottom:666.342533pt;}
.y40{bottom:666.462533pt;}
.y19e{bottom:671.345333pt;}
.y15c{bottom:671.347467pt;}
.yc{bottom:671.830400pt;}
.y11b{bottom:676.552800pt;}
.y9e{bottom:682.342533pt;}
.y3f{bottom:682.462533pt;}
.y7f{bottom:682.582533pt;}
.yc9{bottom:683.282933pt;}
.ybf{bottom:683.293600pt;}
.y19d{bottom:684.678667pt;}
.y15b{bottom:684.680800pt;}
.yb{bottom:687.830400pt;}
.y11a{bottom:689.886133pt;}
.y19c{bottom:698.012000pt;}
.y15a{bottom:698.014133pt;}
.y9d{bottom:698.342533pt;}
.y3e{bottom:698.462533pt;}
.y7e{bottom:698.582533pt;}
.y119{bottom:703.219467pt;}
.yc8{bottom:706.045600pt;}
.y19b{bottom:711.345333pt;}
.y159{bottom:711.347467pt;}
.yf0{bottom:713.982533pt;}
.y9c{bottom:714.342533pt;}
.y3d{bottom:714.462533pt;}
.y7d{bottom:714.582533pt;}
.y118{bottom:716.552800pt;}
.y19a{bottom:724.678667pt;}
.y158{bottom:724.680800pt;}
.ya{bottom:727.970933pt;}
.yc5{bottom:728.808267pt;}
.y117{bottom:729.886133pt;}
.y9b{bottom:730.342533pt;}
.y3c{bottom:730.462533pt;}
.y7c{bottom:730.582533pt;}
.y199{bottom:738.012000pt;}
.y157{bottom:738.014133pt;}
.y9{bottom:739.038267pt;}
.y116{bottom:743.219467pt;}
.y9a{bottom:746.342533pt;}
.y3b{bottom:746.462533pt;}
.y7b{bottom:746.582533pt;}
.y198{bottom:751.345333pt;}
.y156{bottom:751.347467pt;}
.yc7{bottom:751.570933pt;}
.y115{bottom:756.552800pt;}
.y3a{bottom:762.462533pt;}
.y7a{bottom:762.582533pt;}
.y197{bottom:764.678667pt;}
.y155{bottom:764.680800pt;}
.y8{bottom:767.229867pt;}
.y114{bottom:769.886133pt;}
.yc6{bottom:774.333600pt;}
.y99{bottom:777.982533pt;}
.y196{bottom:778.012000pt;}
.y154{bottom:778.014133pt;}
.y39{bottom:778.462533pt;}
.y79{bottom:778.582533pt;}
.y7{bottom:779.229867pt;}
.y113{bottom:783.219467pt;}
.y195{bottom:791.345333pt;}
.y153{bottom:791.347467pt;}
.y38{bottom:794.462533pt;}
.y78{bottom:794.582533pt;}
.y6{bottom:796.052400pt;}
.y112{bottom:796.552800pt;}
.yc4{bottom:797.096267pt;}
.y194{bottom:804.678667pt;}
.y152{bottom:804.680800pt;}
.y37{bottom:810.462533pt;}
.y77{bottom:810.582533pt;}
.y193{bottom:818.012000pt;}
.y151{bottom:818.014133pt;}
.yc3{bottom:819.858933pt;}
.y5{bottom:821.583067pt;}
.y111{bottom:825.984533pt;}
.y36{bottom:826.462533pt;}
.y76{bottom:826.582533pt;}
.yc0{bottom:831.240267pt;}
.y192{bottom:831.345333pt;}
.y150{bottom:831.347467pt;}
.y35{bottom:842.462533pt;}
.y75{bottom:842.582533pt;}
.yc2{bottom:842.621600pt;}
.y191{bottom:844.678667pt;}
.y14f{bottom:844.680800pt;}
.y190{bottom:858.012000pt;}
.y14e{bottom:858.014133pt;}
.y34{bottom:858.462533pt;}
.y4{bottom:862.635733pt;}
.yc1{bottom:865.384267pt;}
.y18f{bottom:871.345333pt;}
.y14d{bottom:871.347467pt;}
.y74{bottom:874.222533pt;}
.y33{bottom:874.462533pt;}
.y110{bottom:874.464533pt;}
.y18e{bottom:884.678667pt;}
.y14c{bottom:884.680800pt;}
.y10f{bottom:890.104533pt;}
.y73{bottom:890.222533pt;}
.y32{bottom:890.462533pt;}
.ybe{bottom:891.549600pt;}
.y3{bottom:895.045333pt;}
.y18d{bottom:898.012000pt;}
.y14b{bottom:898.014133pt;}
.y31{bottom:906.462533pt;}
.y18c{bottom:911.345333pt;}
.y14a{bottom:911.347467pt;}
.y72{bottom:922.102533pt;}
.y10e{bottom:922.104533pt;}
.y30{bottom:922.462533pt;}
.y18b{bottom:924.678667pt;}
.y149{bottom:924.680800pt;}
.y2{bottom:950.489200pt;}
.ybd{bottom:1006.583467pt;}
.y71{bottom:1006.594400pt;}
.y98{bottom:1006.596933pt;}
.yec{bottom:1006.597067pt;}
.yef{bottom:1006.598133pt;}
.y18a{bottom:1006.598667pt;}
.y10d{bottom:1006.599867pt;}
.y2e{bottom:1009.860000pt;}
.y2d{bottom:1022.660000pt;}
.h6{height:17.000371pt;}
.h8{height:25.255208pt;}
.h2{height:27.197917pt;}
.hb{height:29.140625pt;}
.h7{height:29.160156pt;}
.h11{height:29.645833pt;}
.hf{height:31.083333pt;}
.he{height:31.104167pt;}
.hc{height:37.057292pt;}
.h10{height:37.354167pt;}
.ha{height:38.828125pt;}
.h9{height:38.854167pt;}
.hd{height:46.692708pt;}
.h13{height:48.132708pt;}
.h3{height:50.476562pt;}
.h5{height:50.774503pt;}
.h12{height:75.171167pt;}
.h4{height:81.927344pt;}
.h1{height:1058.000000pt;}
.h0{height:1058.268000pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x20{left:62.740133pt;}
.xb{left:68.031467pt;}
.x17{left:69.921200pt;}
.x9{left:85.417333pt;}
.x1{left:86.929067pt;}
.x1b{left:88.818933pt;}
.x25{left:90.708667pt;}
.x4{left:94.488133pt;}
.xc{left:98.271467pt;}
.x23{left:109.606533pt;}
.x3{left:111.501467pt;}
.x6{left:117.170133pt;}
.x18{left:175.745200pt;}
.x16{left:176.778133pt;}
.x5{left:189.223467pt;}
.x22{left:191.582533pt;}
.x1c{left:194.642933pt;}
.x1a{left:308.033200pt;}
.x1d{left:326.930933pt;}
.xa{left:404.481333pt;}
.xd{left:406.324800pt;}
.x13{left:425.209200pt;}
.x7{left:427.076800pt;}
.x26{left:428.982800pt;}
.xe{left:436.564800pt;}
.x24{left:447.871467pt;}
.x14{left:455.449200pt;}
.x8{left:457.316800pt;}
.xf{left:466.909333pt;}
.x21{left:507.268800pt;}
.x12{left:544.822533pt;}
.x11{left:589.770933pt;}
.x2{left:616.324800pt;}
.x19{left:623.958533pt;}
.x27{left:641.526800pt;}
.x1e{left:642.856267pt;}
.x1f{left:645.533600pt;}
.x10{left:647.459200pt;}
.x15{left:666.358667pt;}
}




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