
    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_187b985b2f15011e8ef6dacc.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_d268fb2b4a83d1a3547b90f6.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_1ddfde4113a665823f712aad.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.926270;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_a95372aad788b93c2acb08d5.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_09cd906d81ba0cfc4b9bb39f.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_8171b1b8050ea54f0ec75eb1.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.910645;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_08b43e8ab18848f70fc04c59.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_161338e1e5e8df935f6fce6c.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_1dadbced1dedc3b8424768e2.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.925293;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_07e0b2c24faa557854a27715.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.893555;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_3b61e18607e65d2cfbb4517e.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.880371;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;}
.v4{vertical-align:-11.697000px;}
.v0{vertical-align:0.000000px;}
.v5{vertical-align:1.620000px;}
.v3{vertical-align:28.215000px;}
.v1{vertical-align:30.381600px;}
.ls6{letter-spacing:-3.465000px;}
.ls48{letter-spacing:-1.776000px;}
.ls5{letter-spacing:-0.780000px;}
.ls57{letter-spacing:-0.360000px;}
.ls56{letter-spacing:-0.300000px;}
.ls68{letter-spacing:-0.240000px;}
.ls2f{letter-spacing:-0.120000px;}
.ls85{letter-spacing:-0.096000px;}
.ls7{letter-spacing:-0.090000px;}
.ls4d{letter-spacing:-0.060000px;}
.ls8d{letter-spacing:-0.048000px;}
.ls4{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.004140px;}
.ls0{letter-spacing:0.005076px;}
.ls2{letter-spacing:0.005676px;}
.ls49{letter-spacing:0.048000px;}
.ls26{letter-spacing:0.060000px;}
.ls7d{letter-spacing:0.096000px;}
.ls12{letter-spacing:0.120000px;}
.ls62{letter-spacing:0.144000px;}
.ls16{letter-spacing:0.180000px;}
.ls76{letter-spacing:0.192000px;}
.ls29{letter-spacing:0.240000px;}
.ls77{letter-spacing:0.288000px;}
.ls46{letter-spacing:0.300000px;}
.ls5c{letter-spacing:0.336000px;}
.ls11{letter-spacing:0.360000px;}
.lsd{letter-spacing:0.420000px;}
.ls63{letter-spacing:0.432000px;}
.lsa{letter-spacing:0.480000px;}
.ls88{letter-spacing:0.528000px;}
.ls18{letter-spacing:0.540000px;}
.ls7f{letter-spacing:0.576000px;}
.ls32{letter-spacing:0.600000px;}
.ls73{letter-spacing:0.624000px;}
.ls15{letter-spacing:0.660000px;}
.ls9{letter-spacing:0.720000px;}
.ls37{letter-spacing:0.751800px;}
.ls55{letter-spacing:0.768000px;}
.ls34{letter-spacing:0.780000px;}
.ls70{letter-spacing:0.816000px;}
.ls14{letter-spacing:0.840000px;}
.ls25{letter-spacing:0.900000px;}
.ls74{letter-spacing:0.912000px;}
.ls3f{letter-spacing:0.933360px;}
.ls1e{letter-spacing:0.960000px;}
.ls72{letter-spacing:1.008000px;}
.ls13{letter-spacing:1.020000px;}
.ls6f{letter-spacing:1.056000px;}
.ls3d{letter-spacing:1.068960px;}
.ls3b{letter-spacing:1.069560px;}
.ls2e{letter-spacing:1.080000px;}
.ls71{letter-spacing:1.104000px;}
.ls28{letter-spacing:1.140000px;}
.lsb{letter-spacing:1.200000px;}
.ls7c{letter-spacing:1.248000px;}
.ls1b{letter-spacing:1.260000px;}
.ls79{letter-spacing:1.296000px;}
.ls1a{letter-spacing:1.320000px;}
.ls82{letter-spacing:1.344000px;}
.ls1d{letter-spacing:1.380000px;}
.ls81{letter-spacing:1.392000px;}
.ls2d{letter-spacing:1.440000px;}
.ls75{letter-spacing:1.488000px;}
.ls41{letter-spacing:1.500000px;}
.ls22{letter-spacing:1.560000px;}
.ls3e{letter-spacing:1.590000px;}
.ls20{letter-spacing:1.620000px;}
.lse{letter-spacing:1.680000px;}
.ls44{letter-spacing:1.740000px;}
.ls87{letter-spacing:1.776000px;}
.ls43{letter-spacing:1.800000px;}
.ls3c{letter-spacing:1.853400px;}
.ls27{letter-spacing:1.860000px;}
.ls3a{letter-spacing:1.862400px;}
.ls7a{letter-spacing:1.872000px;}
.ls60{letter-spacing:1.920000px;}
.ls7e{letter-spacing:1.968000px;}
.ls42{letter-spacing:1.980000px;}
.ls8{letter-spacing:2.040000px;}
.ls39{letter-spacing:2.042160px;}
.ls10{letter-spacing:2.100000px;}
.ls1c{letter-spacing:2.160000px;}
.ls2c{letter-spacing:2.220000px;}
.ls7b{letter-spacing:2.256000px;}
.ls2b{letter-spacing:2.280000px;}
.ls5a{letter-spacing:2.290800px;}
.ls5d{letter-spacing:2.340000px;}
.ls61{letter-spacing:2.400000px;}
.ls86{letter-spacing:2.448000px;}
.ls54{letter-spacing:2.460000px;}
.ls6e{letter-spacing:2.496000px;}
.ls4c{letter-spacing:2.520000px;}
.ls33{letter-spacing:2.580000px;}
.ls21{letter-spacing:2.640000px;}
.ls51{letter-spacing:2.700000px;}
.lsc{letter-spacing:2.760000px;}
.ls19{letter-spacing:2.820000px;}
.ls24{letter-spacing:2.880000px;}
.ls36{letter-spacing:2.940000px;}
.ls40{letter-spacing:3.000000px;}
.ls23{letter-spacing:3.060000px;}
.ls1f{letter-spacing:3.120000px;}
.ls84{letter-spacing:3.168000px;}
.ls17{letter-spacing:3.180000px;}
.lsf{letter-spacing:3.240000px;}
.ls4b{letter-spacing:3.300000px;}
.ls2a{letter-spacing:3.480000px;}
.ls38{letter-spacing:3.490800px;}
.ls52{letter-spacing:3.540000px;}
.ls31{letter-spacing:3.600000px;}
.ls80{letter-spacing:3.696000px;}
.ls35{letter-spacing:3.780000px;}
.ls66{letter-spacing:3.840000px;}
.ls5b{letter-spacing:3.900000px;}
.ls59{letter-spacing:3.919800px;}
.ls58{letter-spacing:3.960000px;}
.ls5f{letter-spacing:4.020000px;}
.ls4e{letter-spacing:4.080000px;}
.ls6b{letter-spacing:4.260000px;}
.ls45{letter-spacing:4.320000px;}
.ls47{letter-spacing:4.380000px;}
.ls30{letter-spacing:4.440000px;}
.ls64{letter-spacing:4.500000px;}
.ls53{letter-spacing:4.560000px;}
.ls78{letter-spacing:4.800000px;}
.ls8c{letter-spacing:4.920000px;}
.ls67{letter-spacing:4.980000px;}
.ls50{letter-spacing:5.100000px;}
.ls8a{letter-spacing:5.232000px;}
.ls5e{letter-spacing:5.460000px;}
.ls83{letter-spacing:5.472000px;}
.ls4a{letter-spacing:5.580000px;}
.ls4f{letter-spacing:6.060000px;}
.ls89{letter-spacing:6.096000px;}
.ls65{letter-spacing:6.120000px;}
.ls69{letter-spacing:6.240000px;}
.ls8b{letter-spacing:6.300000px;}
.ls6c{letter-spacing:6.660000px;}
.ls6d{letter-spacing:7.500000px;}
.ls6a{letter-spacing:9.240000px;}
.ls1{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;}
}
.ws0{word-spacing:-35.194800px;}
.ws6e{word-spacing:-18.480000px;}
.wsc{word-spacing:-18.180000px;}
.ws68{word-spacing:-18.060000px;}
.ws59{word-spacing:-17.700000px;}
.wsa{word-spacing:-17.040000px;}
.ws5{word-spacing:-16.680000px;}
.ws28{word-spacing:-16.500000px;}
.wsb{word-spacing:-16.140000px;}
.ws26{word-spacing:-15.120000px;}
.wsd{word-spacing:-15.000000px;}
.ws5a{word-spacing:-14.700000px;}
.ws77{word-spacing:-14.256000px;}
.ws79{word-spacing:-14.160000px;}
.ws3{word-spacing:-14.049000px;}
.ws7{word-spacing:-13.344000px;}
.ws8f{word-spacing:-13.248000px;}
.ws75{word-spacing:-13.056000px;}
.ws6{word-spacing:-12.510000px;}
.ws7a{word-spacing:-12.480000px;}
.ws90{word-spacing:-12.336000px;}
.ws78{word-spacing:-12.240000px;}
.ws76{word-spacing:-12.000000px;}
.ws4{word-spacing:-10.210662px;}
.ws27{word-spacing:-8.745000px;}
.ws63{word-spacing:-3.960000px;}
.ws9{word-spacing:-2.886000px;}
.ws7e{word-spacing:-2.580000px;}
.ws29{word-spacing:-2.220000px;}
.ws2d{word-spacing:-1.320000px;}
.ws1f{word-spacing:-1.140000px;}
.ws83{word-spacing:-0.864000px;}
.ws5b{word-spacing:-0.720000px;}
.ws10{word-spacing:-0.420000px;}
.ws11{word-spacing:-0.360000px;}
.ws66{word-spacing:-0.336000px;}
.ws50{word-spacing:-0.300000px;}
.ws87{word-spacing:-0.288000px;}
.ws24{word-spacing:-0.240000px;}
.ws96{word-spacing:-0.180000px;}
.ws13{word-spacing:-0.120000px;}
.ws6f{word-spacing:-0.060000px;}
.ws8{word-spacing:0.000000px;}
.ws8b{word-spacing:0.048000px;}
.ws52{word-spacing:0.060000px;}
.ws6d{word-spacing:0.096000px;}
.ws1d{word-spacing:0.120000px;}
.ws1c{word-spacing:0.180000px;}
.ws19{word-spacing:0.300000px;}
.ws84{word-spacing:0.336000px;}
.ws53{word-spacing:0.384000px;}
.ws38{word-spacing:0.540000px;}
.ws71{word-spacing:0.600000px;}
.ws67{word-spacing:0.624000px;}
.ws86{word-spacing:0.672000px;}
.ws30{word-spacing:0.720000px;}
.ws44{word-spacing:0.900000px;}
.ws97{word-spacing:0.960000px;}
.ws2b{word-spacing:1.020000px;}
.ws7f{word-spacing:1.056000px;}
.ws54{word-spacing:1.080000px;}
.ws5f{word-spacing:1.140000px;}
.ws70{word-spacing:1.260000px;}
.ws82{word-spacing:1.296000px;}
.ws31{word-spacing:1.320000px;}
.ws36{word-spacing:1.380000px;}
.ws51{word-spacing:1.440000px;}
.ws34{word-spacing:1.500000px;}
.ws57{word-spacing:1.536000px;}
.ws32{word-spacing:1.560000px;}
.ws94{word-spacing:1.728000px;}
.ws2f{word-spacing:1.800000px;}
.ws95{word-spacing:1.872000px;}
.ws5c{word-spacing:1.920000px;}
.ws8e{word-spacing:1.968000px;}
.ws33{word-spacing:1.980000px;}
.ws74{word-spacing:2.040000px;}
.ws8d{word-spacing:2.064000px;}
.ws15{word-spacing:2.160000px;}
.ws93{word-spacing:2.208000px;}
.ws23{word-spacing:2.220000px;}
.ws1b{word-spacing:2.280000px;}
.ws80{word-spacing:2.304000px;}
.ws55{word-spacing:2.340000px;}
.ws6c{word-spacing:2.352000px;}
.ws72{word-spacing:2.400000px;}
.ws85{word-spacing:2.448000px;}
.ws16{word-spacing:2.460000px;}
.ws2c{word-spacing:2.580000px;}
.ws81{word-spacing:2.688000px;}
.ws69{word-spacing:2.700000px;}
.ws91{word-spacing:2.832000px;}
.ws25{word-spacing:2.880000px;}
.ws65{word-spacing:3.060000px;}
.ws58{word-spacing:3.072000px;}
.ws61{word-spacing:3.120000px;}
.ws8c{word-spacing:3.168000px;}
.ws17{word-spacing:3.180000px;}
.ws6b{word-spacing:3.216000px;}
.ws89{word-spacing:3.264000px;}
.ws88{word-spacing:3.360000px;}
.ws21{word-spacing:3.420000px;}
.ws12{word-spacing:3.480000px;}
.ws92{word-spacing:3.504000px;}
.ws73{word-spacing:3.540000px;}
.ws8a{word-spacing:3.648000px;}
.ws5d{word-spacing:3.660000px;}
.ws6a{word-spacing:3.696000px;}
.ws20{word-spacing:3.720000px;}
.ws18{word-spacing:3.780000px;}
.ws2e{word-spacing:3.840000px;}
.ws1a{word-spacing:3.900000px;}
.ws46{word-spacing:3.936000px;}
.ws2a{word-spacing:3.960000px;}
.ws62{word-spacing:3.984000px;}
.ws45{word-spacing:4.020000px;}
.ws7c{word-spacing:4.080000px;}
.ws5e{word-spacing:4.140000px;}
.ws35{word-spacing:4.260000px;}
.ws1e{word-spacing:4.320000px;}
.ws60{word-spacing:4.380000px;}
.ws22{word-spacing:4.440000px;}
.ws37{word-spacing:4.500000px;}
.ws56{word-spacing:4.620000px;}
.ws64{word-spacing:4.680000px;}
.ws14{word-spacing:4.860000px;}
.wsf{word-spacing:4.920000px;}
.wse{word-spacing:4.980000px;}
.ws7b{word-spacing:5.460000px;}
.ws7d{word-spacing:5.520000px;}
.ws2{word-spacing:49.321428px;}
.ws1{word-spacing:49.322028px;}
.ws4c{word-spacing:105.120000px;}
.ws4b{word-spacing:123.792000px;}
.ws49{word-spacing:124.656000px;}
.ws4f{word-spacing:127.776000px;}
.ws4a{word-spacing:128.256000px;}
.ws4d{word-spacing:133.104000px;}
.ws4e{word-spacing:145.152000px;}
.ws48{word-spacing:194.448000px;}
.ws43{word-spacing:271.200000px;}
.ws39{word-spacing:283.200000px;}
.ws3b{word-spacing:295.200000px;}
.ws3a{word-spacing:300.528000px;}
.ws3c{word-spacing:307.200000px;}
.ws3e{word-spacing:312.528000px;}
.ws3f{word-spacing:319.200000px;}
.ws3d{word-spacing:320.064000px;}
.ws40{word-spacing:331.200000px;}
.ws41{word-spacing:343.200000px;}
.ws42{word-spacing:355.200000px;}
.ws47{word-spacing:471.168000px;}
._a{margin-left:-2898.096000px;}
._b{margin-left:-2874.288000px;}
._3{margin-left:-9.368400px;}
._2{margin-left:-6.931800px;}
._1{margin-left:-5.376000px;}
._4{margin-left:-4.190400px;}
._0{margin-left:-2.310000px;}
._6{margin-left:-1.035000px;}
._7{width:1.020000px;}
._9{width:2.040000px;}
._5{width:3.465000px;}
._8{width:5.460000px;}
._2d{width:8.970000px;}
._29{width:117.264000px;}
._2a{width:127.776000px;}
._2b{width:129.168000px;}
._2c{width:139.824000px;}
._28{width:145.104000px;}
._27{width:172.320000px;}
._26{width:201.168000px;}
._12{width:283.200000px;}
._14{width:284.976000px;}
._e{width:294.144000px;}
._d{width:295.200000px;}
._11{width:307.200000px;}
._1f{width:313.200000px;}
._16{width:319.200000px;}
._f{width:323.006400px;}
._22{width:325.200000px;}
._18{width:331.200000px;}
._1a{width:334.332000px;}
._24{width:337.200000px;}
._1b{width:343.200000px;}
._21{width:367.200000px;}
._15{width:393.072000px;}
._19{width:429.072000px;}
._c{width:438.432000px;}
._10{width:454.320000px;}
._1e{width:458.400000px;}
._13{width:463.728000px;}
._1c{width:467.712000px;}
._20{width:475.776000px;}
._1d{width:479.712000px;}
._25{width:480.726000px;}
._23{width:486.432000px;}
._17{width:534.384000px;}
.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;}
.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;}
.y1b8{bottom:80.121900px;}
.y1f9{bottom:80.263500px;}
.y195{bottom:83.635350px;}
.y14b{bottom:83.767500px;}
.y176{bottom:83.770350px;}
.y64{bottom:83.772600px;}
.yc8{bottom:83.775600px;}
.y10a{bottom:84.098100px;}
.y104{bottom:84.189750px;}
.y96{bottom:84.195600px;}
.y157{bottom:85.044000px;}
.y2c{bottom:88.023000px;}
.ye0{bottom:92.607750px;}
.y1b7{bottom:95.121900px;}
.y1f8{bottom:95.263500px;}
.y14a{bottom:99.511500px;}
.y109{bottom:99.842100px;}
.y156{bottom:100.788000px;}
.y194{bottom:101.635350px;}
.y175{bottom:101.770350px;}
.y63{bottom:101.772600px;}
.yc7{bottom:101.775600px;}
.y95{bottom:102.195600px;}
.y2b{bottom:103.023000px;}
.y103{bottom:109.701750px;}
.y1b6{bottom:110.121900px;}
.y1f7{bottom:110.263500px;}
.y149{bottom:115.255500px;}
.y155{bottom:116.532000px;}
.y193{bottom:119.635350px;}
.y174{bottom:119.770350px;}
.y62{bottom:119.772600px;}
.yc6{bottom:119.775600px;}
.y94{bottom:120.195600px;}
.ydf{bottom:121.611750px;}
.y1b5{bottom:125.121900px;}
.y1f6{bottom:125.263500px;}
.y101{bottom:125.949750px;}
.y154{bottom:132.276000px;}
.y192{bottom:137.635350px;}
.y173{bottom:137.770350px;}
.y61{bottom:137.772600px;}
.yc5{bottom:137.775600px;}
.yde{bottom:137.859750px;}
.y93{bottom:138.195600px;}
.y1b4{bottom:140.121900px;}
.y1f5{bottom:140.263500px;}
.y102{bottom:142.197750px;}
.y153{bottom:148.020000px;}
.ydd{bottom:154.107750px;}
.y1b3{bottom:155.121900px;}
.y1f4{bottom:155.263500px;}
.y191{bottom:155.635350px;}
.y172{bottom:155.770350px;}
.y60{bottom:155.772600px;}
.yc4{bottom:155.775600px;}
.y92{bottom:156.195600px;}
.y152{bottom:163.764000px;}
.y1b2{bottom:170.121900px;}
.y1f3{bottom:170.263500px;}
.ydc{bottom:170.355750px;}
.y100{bottom:171.213750px;}
.y190{bottom:173.635350px;}
.y171{bottom:173.770350px;}
.y5f{bottom:173.772600px;}
.yc3{bottom:173.775600px;}
.y91{bottom:174.195600px;}
.y151{bottom:179.508000px;}
.y2a{bottom:180.064200px;}
.y1b1{bottom:185.121900px;}
.y1f2{bottom:185.263500px;}
.ydb{bottom:186.603750px;}
.yfe{bottom:187.461750px;}
.y18f{bottom:191.230350px;}
.y170{bottom:191.770350px;}
.y5e{bottom:191.772600px;}
.yc2{bottom:191.775600px;}
.y90{bottom:192.195600px;}
.y150{bottom:195.252000px;}
.y1b0{bottom:200.121900px;}
.y1f1{bottom:200.263500px;}
.yda{bottom:202.851750px;}
.yff{bottom:203.709750px;}
.y29{bottom:207.409200px;}
.y16f{bottom:209.770350px;}
.y5d{bottom:209.772600px;}
.yc1{bottom:209.775600px;}
.y8f{bottom:210.195600px;}
.y14f{bottom:210.996000px;}
.y1af{bottom:215.121900px;}
.y1f0{bottom:215.263500px;}
.yd9{bottom:219.099750px;}
.y28{bottom:225.409200px;}
.y14e{bottom:226.740000px;}
.y18e{bottom:227.635350px;}
.y16e{bottom:227.770350px;}
.y5c{bottom:227.772600px;}
.yc0{bottom:227.775600px;}
.y8e{bottom:228.195600px;}
.y1ae{bottom:230.121900px;}
.y1ef{bottom:230.263500px;}
.yfd{bottom:232.725750px;}
.yd8{bottom:235.347750px;}
.y14d{bottom:242.484000px;}
.y27{bottom:243.409200px;}
.y1ad{bottom:245.121900px;}
.y1ee{bottom:245.263500px;}
.y18d{bottom:245.635350px;}
.y16d{bottom:245.770350px;}
.y5b{bottom:245.772600px;}
.ybf{bottom:245.775600px;}
.y8d{bottom:246.195600px;}
.yd7{bottom:251.595750px;}
.y14c{bottom:258.228000px;}
.y1ac{bottom:260.121900px;}
.y1ed{bottom:260.263500px;}
.y26{bottom:261.409200px;}
.yfc{bottom:261.729750px;}
.y18c{bottom:263.635350px;}
.y16c{bottom:263.770350px;}
.y5a{bottom:263.772600px;}
.ybe{bottom:263.775600px;}
.y8c{bottom:264.195600px;}
.yd6{bottom:267.843750px;}
.y1ab{bottom:275.121900px;}
.y1ec{bottom:275.263500px;}
.yfa{bottom:276.225750px;}
.y25{bottom:279.409200px;}
.y18b{bottom:281.635350px;}
.y16b{bottom:281.770350px;}
.y59{bottom:281.772600px;}
.ybd{bottom:281.775600px;}
.y8b{bottom:282.195600px;}
.yd5{bottom:284.091750px;}
.y1aa{bottom:290.121900px;}
.y1eb{bottom:290.263500px;}
.yfb{bottom:290.733750px;}
.y24{bottom:297.409200px;}
.y18a{bottom:299.635350px;}
.y16a{bottom:299.770350px;}
.y58{bottom:299.772600px;}
.ybc{bottom:299.775600px;}
.y8a{bottom:300.207600px;}
.y1a9{bottom:305.121900px;}
.y1ea{bottom:305.263500px;}
.y23{bottom:315.409200px;}
.yd4{bottom:315.603750px;}
.y189{bottom:317.635350px;}
.y169{bottom:317.770350px;}
.y57{bottom:317.772600px;}
.y89{bottom:318.207600px;}
.y1a8{bottom:320.121900px;}
.y1e9{bottom:320.263500px;}
.yf9{bottom:323.140350px;}
.y22{bottom:333.409200px;}
.y1a7{bottom:335.121900px;}
.y1e8{bottom:335.263500px;}
.ybb{bottom:335.370600px;}
.y188{bottom:335.635350px;}
.y168{bottom:335.770350px;}
.y56{bottom:335.772600px;}
.y88{bottom:336.207600px;}
.y1a6{bottom:350.121900px;}
.y1e7{bottom:350.263500px;}
.yd3{bottom:350.500350px;}
.y21{bottom:351.409200px;}
.y187{bottom:353.635350px;}
.y167{bottom:353.770350px;}
.y55{bottom:353.772600px;}
.y87{bottom:354.207600px;}
.y1a5{bottom:365.121900px;}
.y1e6{bottom:365.263500px;}
.y106{bottom:368.349750px;}
.y20{bottom:369.409200px;}
.yd2{bottom:370.000350px;}
.yba{bottom:371.235600px;}
.y186{bottom:371.635350px;}
.y166{bottom:371.770350px;}
.y54{bottom:371.772600px;}
.y86{bottom:372.207600px;}
.y1a4{bottom:380.121900px;}
.y1e5{bottom:380.263500px;}
.y105{bottom:384.093750px;}
.y1f{bottom:387.409200px;}
.y185{bottom:389.635350px;}
.y165{bottom:389.770350px;}
.y53{bottom:389.772600px;}
.y85{bottom:390.207600px;}
.y1a3{bottom:395.121900px;}
.y1e4{bottom:395.263500px;}
.y1e{bottom:405.409200px;}
.y184{bottom:407.635350px;}
.y164{bottom:407.770350px;}
.y52{bottom:407.772600px;}
.y1a2{bottom:410.121900px;}
.y1e3{bottom:410.263500px;}
.ye2{bottom:416.223750px;}
.y1d{bottom:423.409200px;}
.y1a1{bottom:425.121900px;}
.y1e2{bottom:425.263500px;}
.y183{bottom:425.635350px;}
.y163{bottom:425.770350px;}
.y51{bottom:425.772600px;}
.yb9{bottom:425.775600px;}
.y84{bottom:425.802600px;}
.ye1{bottom:431.967750px;}
.y1a0{bottom:440.121900px;}
.y1e1{bottom:440.263500px;}
.y1c{bottom:441.409200px;}
.y182{bottom:443.635350px;}
.y162{bottom:443.770350px;}
.y50{bottom:443.772600px;}
.yb8{bottom:443.775600px;}
.y19f{bottom:455.121900px;}
.y1e0{bottom:455.263500px;}
.y1b{bottom:459.409200px;}
.y181{bottom:461.635350px;}
.y161{bottom:461.770350px;}
.y4f{bottom:461.772600px;}
.yb7{bottom:461.775600px;}
.y83{bottom:462.057600px;}
.y10c{bottom:468.986100px;}
.y19e{bottom:470.121900px;}
.y1df{bottom:470.263500px;}
.y1a{bottom:477.409200px;}
.y180{bottom:479.635350px;}
.y160{bottom:479.770350px;}
.y4e{bottom:479.772600px;}
.yb6{bottom:479.775600px;}
.y132{bottom:479.787600px;}
.y112{bottom:479.922600px;}
.y82{bottom:480.057600px;}
.y10b{bottom:484.730100px;}
.y19d{bottom:485.121900px;}
.y1de{bottom:485.263500px;}
.y19{bottom:495.409200px;}
.y17f{bottom:497.635350px;}
.y15f{bottom:497.770350px;}
.y4d{bottom:497.772600px;}
.yb5{bottom:497.775600px;}
.y131{bottom:497.787600px;}
.y111{bottom:497.922600px;}
.y81{bottom:498.057600px;}
.y19c{bottom:500.121900px;}
.y1dd{bottom:500.263500px;}
.y18{bottom:513.409200px;}
.y1dc{bottom:515.263500px;}
.y17e{bottom:515.635350px;}
.y15e{bottom:515.770350px;}
.y4c{bottom:515.772600px;}
.yb4{bottom:515.775600px;}
.y130{bottom:515.787600px;}
.y110{bottom:515.922600px;}
.y80{bottom:516.057600px;}
.y1db{bottom:530.263500px;}
.y17{bottom:531.409200px;}
.y19b{bottom:533.230350px;}
.y17d{bottom:533.635350px;}
.y15d{bottom:533.770350px;}
.y4b{bottom:533.772600px;}
.yb3{bottom:533.775600px;}
.y12f{bottom:533.787600px;}
.y10f{bottom:533.922600px;}
.y7f{bottom:534.057600px;}
.y1da{bottom:545.263500px;}
.y16{bottom:549.409200px;}
.y17c{bottom:551.635350px;}
.y15c{bottom:551.770350px;}
.y4a{bottom:551.772600px;}
.yb2{bottom:551.775600px;}
.y12e{bottom:551.787600px;}
.y7e{bottom:552.057600px;}
.y1d9{bottom:560.265900px;}
.y15{bottom:567.409200px;}
.y10e{bottom:569.517600px;}
.y17b{bottom:569.635350px;}
.y15b{bottom:569.770350px;}
.y49{bottom:569.772600px;}
.yb1{bottom:569.775600px;}
.y12d{bottom:569.787600px;}
.y7d{bottom:570.057600px;}
.y1d8{bottom:575.265900px;}
.y14{bottom:585.409200px;}
.y17a{bottom:587.635350px;}
.y15a{bottom:587.770350px;}
.y48{bottom:587.772600px;}
.yb0{bottom:587.775600px;}
.y12c{bottom:587.787600px;}
.y7c{bottom:588.057600px;}
.y219{bottom:590.263500px;}
.y1d7{bottom:590.265900px;}
.y13{bottom:603.409200px;}
.y218{bottom:605.263500px;}
.y1d6{bottom:605.265900px;}
.y19a{bottom:605.365350px;}
.y179{bottom:605.635350px;}
.y159{bottom:605.770350px;}
.y47{bottom:605.772600px;}
.yaf{bottom:605.775600px;}
.y12b{bottom:605.787600px;}
.y7b{bottom:606.057600px;}
.y217{bottom:620.263500px;}
.y1d5{bottom:620.265900px;}
.y12{bottom:621.409200px;}
.y13e{bottom:623.635350px;}
.y148{bottom:623.770350px;}
.y46{bottom:623.772600px;}
.yae{bottom:623.775600px;}
.y12a{bottom:623.787600px;}
.y7a{bottom:624.057600px;}
.y216{bottom:635.263500px;}
.y1d4{bottom:635.265900px;}
.y11{bottom:639.409200px;}
.y13d{bottom:641.635350px;}
.y147{bottom:641.770350px;}
.y45{bottom:641.772600px;}
.yad{bottom:641.775600px;}
.y129{bottom:641.787600px;}
.y215{bottom:650.263500px;}
.y1d3{bottom:650.265900px;}
.y13c{bottom:659.635350px;}
.y79{bottom:659.652600px;}
.y146{bottom:659.770350px;}
.y44{bottom:659.772600px;}
.yac{bottom:659.775600px;}
.y128{bottom:659.787600px;}
.y214{bottom:665.263500px;}
.y1d2{bottom:665.265900px;}
.y199{bottom:677.365350px;}
.y13b{bottom:677.635350px;}
.y145{bottom:677.770350px;}
.y43{bottom:677.772600px;}
.yab{bottom:677.775600px;}
.y127{bottom:677.787600px;}
.y213{bottom:680.263500px;}
.y1d1{bottom:680.265900px;}
.y10{bottom:684.567300px;}
.y212{bottom:695.263500px;}
.y1d0{bottom:695.265900px;}
.y13a{bottom:695.635350px;}
.y144{bottom:695.770350px;}
.y42{bottom:695.772600px;}
.yaa{bottom:695.775600px;}
.y126{bottom:695.787600px;}
.y78{bottom:695.907600px;}
.yf{bottom:697.018050px;}
.y211{bottom:710.263500px;}
.y1cf{bottom:710.265900px;}
.y139{bottom:713.635350px;}
.y143{bottom:713.770350px;}
.y41{bottom:713.772600px;}
.ya9{bottom:713.775600px;}
.y125{bottom:713.787600px;}
.y77{bottom:713.907600px;}
.y210{bottom:725.263500px;}
.y1ce{bottom:725.265900px;}
.y178{bottom:731.635350px;}
.y142{bottom:731.770350px;}
.y40{bottom:731.772600px;}
.ya8{bottom:731.775600px;}
.y124{bottom:731.787600px;}
.y76{bottom:731.907600px;}
.ye{bottom:734.158800px;}
.y20f{bottom:740.263500px;}
.y1cd{bottom:740.265900px;}
.yd{bottom:747.658800px;}
.y138{bottom:749.230350px;}
.y141{bottom:749.770350px;}
.y3f{bottom:749.772600px;}
.ya7{bottom:749.775600px;}
.y123{bottom:749.787600px;}
.y75{bottom:749.907600px;}
.y20e{bottom:755.263500px;}
.y1cc{bottom:755.265900px;}
.yc{bottom:761.158800px;}
.y177{bottom:767.230350px;}
.y140{bottom:767.770350px;}
.y3e{bottom:767.772600px;}
.ya6{bottom:767.775600px;}
.yf8{bottom:767.785350px;}
.y122{bottom:767.787600px;}
.y74{bottom:767.907600px;}
.ye8{bottom:767.920350px;}
.y20d{bottom:770.263500px;}
.y1cb{bottom:770.265900px;}
.yb{bottom:774.658950px;}
.ya{bottom:782.733600px;}
.y20c{bottom:785.263500px;}
.y1ca{bottom:785.265900px;}
.y198{bottom:785.365350px;}
.y13f{bottom:785.770350px;}
.y3d{bottom:785.772600px;}
.ya5{bottom:785.775600px;}
.yf7{bottom:785.785350px;}
.y121{bottom:785.787600px;}
.y73{bottom:785.907600px;}
.ye7{bottom:785.920350px;}
.y20b{bottom:800.263500px;}
.y1c9{bottom:800.265900px;}
.y9{bottom:801.658950px;}
.y137{bottom:803.770350px;}
.y3c{bottom:803.772600px;}
.ya4{bottom:803.775600px;}
.yf6{bottom:803.785350px;}
.y120{bottom:803.787600px;}
.y72{bottom:803.907600px;}
.ye6{bottom:803.920350px;}
.y20a{bottom:815.263500px;}
.y1c8{bottom:815.265900px;}
.y136{bottom:821.770350px;}
.y3b{bottom:821.772600px;}
.ya3{bottom:821.775600px;}
.yf5{bottom:821.785350px;}
.y11f{bottom:821.787600px;}
.y71{bottom:821.907600px;}
.ye5{bottom:821.920350px;}
.y209{bottom:830.263500px;}
.y1c7{bottom:830.265900px;}
.y8{bottom:830.386200px;}
.y197{bottom:839.365350px;}
.y135{bottom:839.770350px;}
.y3a{bottom:839.772600px;}
.ya2{bottom:839.775600px;}
.yf4{bottom:839.785350px;}
.y11e{bottom:839.787600px;}
.y70{bottom:839.907600px;}
.y208{bottom:845.263500px;}
.y1c6{bottom:845.265900px;}
.y7{bottom:851.380950px;}
.ye4{bottom:857.515350px;}
.y134{bottom:857.770350px;}
.y39{bottom:857.772600px;}
.ya1{bottom:857.775600px;}
.yf3{bottom:857.785350px;}
.y11d{bottom:857.787600px;}
.y6f{bottom:857.907600px;}
.y207{bottom:860.263500px;}
.y1c5{bottom:860.265900px;}
.y206{bottom:875.263500px;}
.y1c4{bottom:875.265900px;}
.y108{bottom:875.770350px;}
.y38{bottom:875.772600px;}
.ya0{bottom:875.775600px;}
.yf2{bottom:875.785350px;}
.y11c{bottom:875.787600px;}
.y6e{bottom:875.907600px;}
.y205{bottom:890.263500px;}
.y1c3{bottom:890.265900px;}
.yd1{bottom:893.770350px;}
.y37{bottom:893.772600px;}
.y9f{bottom:893.775600px;}
.yf1{bottom:893.785350px;}
.y11b{bottom:893.787600px;}
.y6d{bottom:893.907600px;}
.y6{bottom:897.543600px;}
.y204{bottom:905.263500px;}
.y1c2{bottom:905.265900px;}
.yd0{bottom:911.770350px;}
.y36{bottom:911.772600px;}
.y9e{bottom:911.775600px;}
.yf0{bottom:911.785350px;}
.y11a{bottom:911.787600px;}
.y6c{bottom:911.907600px;}
.y203{bottom:920.263500px;}
.y1c1{bottom:920.265900px;}
.ycf{bottom:929.770350px;}
.y35{bottom:929.772600px;}
.y9d{bottom:929.775600px;}
.yef{bottom:929.785350px;}
.y119{bottom:929.787600px;}
.y6b{bottom:929.907600px;}
.y5{bottom:934.004400px;}
.y202{bottom:935.263500px;}
.y1c0{bottom:935.265900px;}
.yce{bottom:947.770350px;}
.y34{bottom:947.772600px;}
.y9c{bottom:947.775600px;}
.yee{bottom:947.785350px;}
.y118{bottom:947.787600px;}
.y6a{bottom:947.907600px;}
.y201{bottom:950.263500px;}
.y1bf{bottom:950.265900px;}
.y200{bottom:965.263500px;}
.y1be{bottom:965.265900px;}
.ycd{bottom:965.770350px;}
.y33{bottom:965.772600px;}
.y9b{bottom:965.775600px;}
.yed{bottom:965.785350px;}
.y117{bottom:965.787600px;}
.y69{bottom:965.907600px;}
.y4{bottom:970.465200px;}
.y1ff{bottom:980.263500px;}
.y1bd{bottom:980.265900px;}
.y196{bottom:983.365350px;}
.ycc{bottom:983.770350px;}
.y32{bottom:983.772600px;}
.y9a{bottom:983.775600px;}
.yec{bottom:983.785350px;}
.y116{bottom:983.787600px;}
.y1fe{bottom:995.263500px;}
.y1bc{bottom:995.265900px;}
.y68{bottom:1001.502600px;}
.ycb{bottom:1001.770350px;}
.y31{bottom:1001.772600px;}
.y99{bottom:1001.775600px;}
.yeb{bottom:1001.785350px;}
.y115{bottom:1001.787600px;}
.y3{bottom:1006.926000px;}
.y1fd{bottom:1010.263500px;}
.y1bb{bottom:1010.265900px;}
.yca{bottom:1019.770350px;}
.y66{bottom:1019.772600px;}
.y98{bottom:1019.775600px;}
.yea{bottom:1019.785350px;}
.y114{bottom:1019.787600px;}
.y1fc{bottom:1025.263500px;}
.y1ba{bottom:1025.265900px;}
.y30{bottom:1037.367600px;}
.yc9{bottom:1037.770350px;}
.y65{bottom:1037.772600px;}
.y97{bottom:1037.775600px;}
.ye9{bottom:1037.785350px;}
.y113{bottom:1037.787600px;}
.y1fb{bottom:1040.263500px;}
.y1b9{bottom:1040.265900px;}
.y2{bottom:1069.300350px;}
.y67{bottom:1132.418700px;}
.y133{bottom:1132.421700px;}
.y1fa{bottom:1132.423500px;}
.y10d{bottom:1132.430100px;}
.y107{bottom:1132.437750px;}
.ye3{bottom:1132.467750px;}
.y158{bottom:1132.488000px;}
.y2e{bottom:1136.092500px;}
.y2d{bottom:1150.492500px;}
.h7{height:19.125417px;}
.h9{height:28.412109px;}
.h2{height:30.597656px;}
.hd{height:32.783203px;}
.h8{height:32.805176px;}
.h12{height:33.351562px;}
.hf{height:34.968750px;}
.he{height:34.992188px;}
.h10{height:41.689453px;}
.hc{height:43.681641px;}
.ha{height:43.710938px;}
.hb{height:43.740234px;}
.h11{height:52.502871px;}
.h13{height:52.567951px;}
.h3{height:56.786133px;}
.h6{height:57.100316px;}
.h5{height:57.121316px;}
.h4{height:92.168262px;}
.h1{height:1190.250000px;}
.h0{height:1190.551500px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1f{left:70.582650px;}
.x7{left:76.535400px;}
.x14{left:78.661350px;}
.x5{left:96.094500px;}
.x1{left:97.795200px;}
.x16{left:99.921150px;}
.x26{left:102.047250px;}
.x4{left:106.299150px;}
.x9{left:110.558550px;}
.x23{left:123.307350px;}
.x3{left:125.427900px;}
.xf{left:131.812200px;}
.xe{left:165.982200px;}
.x8{left:190.553550px;}
.x1e{left:198.875550px;}
.x22{left:215.545350px;}
.x15{left:245.497350px;}
.x1c{left:252.105150px;}
.x1d{left:254.757150px;}
.x19{left:256.773150px;}
.x1b{left:259.125150px;}
.x18{left:273.465150px;}
.x17{left:298.389150px;}
.x1a{left:399.357150px;}
.x6{left:455.041500px;}
.xa{left:457.088550px;}
.x10{left:478.349550px;}
.xb{left:491.108550px;}
.x24{left:503.863350px;}
.x11{left:512.369550px;}
.x20{left:570.680400px;}
.x12{left:612.914550px;}
.xd{left:663.492300px;}
.x2{left:693.365400px;}
.x21{left:721.717650px;}
.xc{left:728.391600px;}
.x25{left:743.846250px;}
.x13{left:749.651400px;}
@media print{
.v2{vertical-align:-19.290133pt;}
.v4{vertical-align:-10.397333pt;}
.v0{vertical-align:0.000000pt;}
.v5{vertical-align:1.440000pt;}
.v3{vertical-align:25.080000pt;}
.v1{vertical-align:27.005867pt;}
.ls6{letter-spacing:-3.080000pt;}
.ls48{letter-spacing:-1.578667pt;}
.ls5{letter-spacing:-0.693333pt;}
.ls57{letter-spacing:-0.320000pt;}
.ls56{letter-spacing:-0.266667pt;}
.ls68{letter-spacing:-0.213333pt;}
.ls2f{letter-spacing:-0.106667pt;}
.ls85{letter-spacing:-0.085333pt;}
.ls7{letter-spacing:-0.080000pt;}
.ls4d{letter-spacing:-0.053333pt;}
.ls8d{letter-spacing:-0.042667pt;}
.ls4{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.003680pt;}
.ls0{letter-spacing:0.004512pt;}
.ls2{letter-spacing:0.005045pt;}
.ls49{letter-spacing:0.042667pt;}
.ls26{letter-spacing:0.053333pt;}
.ls7d{letter-spacing:0.085333pt;}
.ls12{letter-spacing:0.106667pt;}
.ls62{letter-spacing:0.128000pt;}
.ls16{letter-spacing:0.160000pt;}
.ls76{letter-spacing:0.170667pt;}
.ls29{letter-spacing:0.213333pt;}
.ls77{letter-spacing:0.256000pt;}
.ls46{letter-spacing:0.266667pt;}
.ls5c{letter-spacing:0.298667pt;}
.ls11{letter-spacing:0.320000pt;}
.lsd{letter-spacing:0.373333pt;}
.ls63{letter-spacing:0.384000pt;}
.lsa{letter-spacing:0.426667pt;}
.ls88{letter-spacing:0.469333pt;}
.ls18{letter-spacing:0.480000pt;}
.ls7f{letter-spacing:0.512000pt;}
.ls32{letter-spacing:0.533333pt;}
.ls73{letter-spacing:0.554667pt;}
.ls15{letter-spacing:0.586667pt;}
.ls9{letter-spacing:0.640000pt;}
.ls37{letter-spacing:0.668267pt;}
.ls55{letter-spacing:0.682667pt;}
.ls34{letter-spacing:0.693333pt;}
.ls70{letter-spacing:0.725333pt;}
.ls14{letter-spacing:0.746667pt;}
.ls25{letter-spacing:0.800000pt;}
.ls74{letter-spacing:0.810667pt;}
.ls3f{letter-spacing:0.829653pt;}
.ls1e{letter-spacing:0.853333pt;}
.ls72{letter-spacing:0.896000pt;}
.ls13{letter-spacing:0.906667pt;}
.ls6f{letter-spacing:0.938667pt;}
.ls3d{letter-spacing:0.950187pt;}
.ls3b{letter-spacing:0.950720pt;}
.ls2e{letter-spacing:0.960000pt;}
.ls71{letter-spacing:0.981333pt;}
.ls28{letter-spacing:1.013333pt;}
.lsb{letter-spacing:1.066667pt;}
.ls7c{letter-spacing:1.109333pt;}
.ls1b{letter-spacing:1.120000pt;}
.ls79{letter-spacing:1.152000pt;}
.ls1a{letter-spacing:1.173333pt;}
.ls82{letter-spacing:1.194667pt;}
.ls1d{letter-spacing:1.226667pt;}
.ls81{letter-spacing:1.237333pt;}
.ls2d{letter-spacing:1.280000pt;}
.ls75{letter-spacing:1.322667pt;}
.ls41{letter-spacing:1.333333pt;}
.ls22{letter-spacing:1.386667pt;}
.ls3e{letter-spacing:1.413333pt;}
.ls20{letter-spacing:1.440000pt;}
.lse{letter-spacing:1.493333pt;}
.ls44{letter-spacing:1.546667pt;}
.ls87{letter-spacing:1.578667pt;}
.ls43{letter-spacing:1.600000pt;}
.ls3c{letter-spacing:1.647467pt;}
.ls27{letter-spacing:1.653333pt;}
.ls3a{letter-spacing:1.655467pt;}
.ls7a{letter-spacing:1.664000pt;}
.ls60{letter-spacing:1.706667pt;}
.ls7e{letter-spacing:1.749333pt;}
.ls42{letter-spacing:1.760000pt;}
.ls8{letter-spacing:1.813333pt;}
.ls39{letter-spacing:1.815253pt;}
.ls10{letter-spacing:1.866667pt;}
.ls1c{letter-spacing:1.920000pt;}
.ls2c{letter-spacing:1.973333pt;}
.ls7b{letter-spacing:2.005333pt;}
.ls2b{letter-spacing:2.026667pt;}
.ls5a{letter-spacing:2.036267pt;}
.ls5d{letter-spacing:2.080000pt;}
.ls61{letter-spacing:2.133333pt;}
.ls86{letter-spacing:2.176000pt;}
.ls54{letter-spacing:2.186667pt;}
.ls6e{letter-spacing:2.218667pt;}
.ls4c{letter-spacing:2.240000pt;}
.ls33{letter-spacing:2.293333pt;}
.ls21{letter-spacing:2.346667pt;}
.ls51{letter-spacing:2.400000pt;}
.lsc{letter-spacing:2.453333pt;}
.ls19{letter-spacing:2.506667pt;}
.ls24{letter-spacing:2.560000pt;}
.ls36{letter-spacing:2.613333pt;}
.ls40{letter-spacing:2.666667pt;}
.ls23{letter-spacing:2.720000pt;}
.ls1f{letter-spacing:2.773333pt;}
.ls84{letter-spacing:2.816000pt;}
.ls17{letter-spacing:2.826667pt;}
.lsf{letter-spacing:2.880000pt;}
.ls4b{letter-spacing:2.933333pt;}
.ls2a{letter-spacing:3.093333pt;}
.ls38{letter-spacing:3.102933pt;}
.ls52{letter-spacing:3.146667pt;}
.ls31{letter-spacing:3.200000pt;}
.ls80{letter-spacing:3.285333pt;}
.ls35{letter-spacing:3.360000pt;}
.ls66{letter-spacing:3.413333pt;}
.ls5b{letter-spacing:3.466667pt;}
.ls59{letter-spacing:3.484267pt;}
.ls58{letter-spacing:3.520000pt;}
.ls5f{letter-spacing:3.573333pt;}
.ls4e{letter-spacing:3.626667pt;}
.ls6b{letter-spacing:3.786667pt;}
.ls45{letter-spacing:3.840000pt;}
.ls47{letter-spacing:3.893333pt;}
.ls30{letter-spacing:3.946667pt;}
.ls64{letter-spacing:4.000000pt;}
.ls53{letter-spacing:4.053333pt;}
.ls78{letter-spacing:4.266667pt;}
.ls8c{letter-spacing:4.373333pt;}
.ls67{letter-spacing:4.426667pt;}
.ls50{letter-spacing:4.533333pt;}
.ls8a{letter-spacing:4.650667pt;}
.ls5e{letter-spacing:4.853333pt;}
.ls83{letter-spacing:4.864000pt;}
.ls4a{letter-spacing:4.960000pt;}
.ls4f{letter-spacing:5.386667pt;}
.ls89{letter-spacing:5.418667pt;}
.ls65{letter-spacing:5.440000pt;}
.ls69{letter-spacing:5.546667pt;}
.ls8b{letter-spacing:5.600000pt;}
.ls6c{letter-spacing:5.920000pt;}
.ls6d{letter-spacing:6.666667pt;}
.ls6a{letter-spacing:8.213333pt;}
.ls1{letter-spacing:52.918112pt;}
.ws0{word-spacing:-31.284267pt;}
.ws6e{word-spacing:-16.426667pt;}
.wsc{word-spacing:-16.160000pt;}
.ws68{word-spacing:-16.053333pt;}
.ws59{word-spacing:-15.733333pt;}
.wsa{word-spacing:-15.146667pt;}
.ws5{word-spacing:-14.826667pt;}
.ws28{word-spacing:-14.666667pt;}
.wsb{word-spacing:-14.346667pt;}
.ws26{word-spacing:-13.440000pt;}
.wsd{word-spacing:-13.333333pt;}
.ws5a{word-spacing:-13.066667pt;}
.ws77{word-spacing:-12.672000pt;}
.ws79{word-spacing:-12.586667pt;}
.ws3{word-spacing:-12.488000pt;}
.ws7{word-spacing:-11.861333pt;}
.ws8f{word-spacing:-11.776000pt;}
.ws75{word-spacing:-11.605333pt;}
.ws6{word-spacing:-11.120000pt;}
.ws7a{word-spacing:-11.093333pt;}
.ws90{word-spacing:-10.965333pt;}
.ws78{word-spacing:-10.880000pt;}
.ws76{word-spacing:-10.666667pt;}
.ws4{word-spacing:-9.076144pt;}
.ws27{word-spacing:-7.773333pt;}
.ws63{word-spacing:-3.520000pt;}
.ws9{word-spacing:-2.565333pt;}
.ws7e{word-spacing:-2.293333pt;}
.ws29{word-spacing:-1.973333pt;}
.ws2d{word-spacing:-1.173333pt;}
.ws1f{word-spacing:-1.013333pt;}
.ws83{word-spacing:-0.768000pt;}
.ws5b{word-spacing:-0.640000pt;}
.ws10{word-spacing:-0.373333pt;}
.ws11{word-spacing:-0.320000pt;}
.ws66{word-spacing:-0.298667pt;}
.ws50{word-spacing:-0.266667pt;}
.ws87{word-spacing:-0.256000pt;}
.ws24{word-spacing:-0.213333pt;}
.ws96{word-spacing:-0.160000pt;}
.ws13{word-spacing:-0.106667pt;}
.ws6f{word-spacing:-0.053333pt;}
.ws8{word-spacing:0.000000pt;}
.ws8b{word-spacing:0.042667pt;}
.ws52{word-spacing:0.053333pt;}
.ws6d{word-spacing:0.085333pt;}
.ws1d{word-spacing:0.106667pt;}
.ws1c{word-spacing:0.160000pt;}
.ws19{word-spacing:0.266667pt;}
.ws84{word-spacing:0.298667pt;}
.ws53{word-spacing:0.341333pt;}
.ws38{word-spacing:0.480000pt;}
.ws71{word-spacing:0.533333pt;}
.ws67{word-spacing:0.554667pt;}
.ws86{word-spacing:0.597333pt;}
.ws30{word-spacing:0.640000pt;}
.ws44{word-spacing:0.800000pt;}
.ws97{word-spacing:0.853333pt;}
.ws2b{word-spacing:0.906667pt;}
.ws7f{word-spacing:0.938667pt;}
.ws54{word-spacing:0.960000pt;}
.ws5f{word-spacing:1.013333pt;}
.ws70{word-spacing:1.120000pt;}
.ws82{word-spacing:1.152000pt;}
.ws31{word-spacing:1.173333pt;}
.ws36{word-spacing:1.226667pt;}
.ws51{word-spacing:1.280000pt;}
.ws34{word-spacing:1.333333pt;}
.ws57{word-spacing:1.365333pt;}
.ws32{word-spacing:1.386667pt;}
.ws94{word-spacing:1.536000pt;}
.ws2f{word-spacing:1.600000pt;}
.ws95{word-spacing:1.664000pt;}
.ws5c{word-spacing:1.706667pt;}
.ws8e{word-spacing:1.749333pt;}
.ws33{word-spacing:1.760000pt;}
.ws74{word-spacing:1.813333pt;}
.ws8d{word-spacing:1.834667pt;}
.ws15{word-spacing:1.920000pt;}
.ws93{word-spacing:1.962667pt;}
.ws23{word-spacing:1.973333pt;}
.ws1b{word-spacing:2.026667pt;}
.ws80{word-spacing:2.048000pt;}
.ws55{word-spacing:2.080000pt;}
.ws6c{word-spacing:2.090667pt;}
.ws72{word-spacing:2.133333pt;}
.ws85{word-spacing:2.176000pt;}
.ws16{word-spacing:2.186667pt;}
.ws2c{word-spacing:2.293333pt;}
.ws81{word-spacing:2.389333pt;}
.ws69{word-spacing:2.400000pt;}
.ws91{word-spacing:2.517333pt;}
.ws25{word-spacing:2.560000pt;}
.ws65{word-spacing:2.720000pt;}
.ws58{word-spacing:2.730667pt;}
.ws61{word-spacing:2.773333pt;}
.ws8c{word-spacing:2.816000pt;}
.ws17{word-spacing:2.826667pt;}
.ws6b{word-spacing:2.858667pt;}
.ws89{word-spacing:2.901333pt;}
.ws88{word-spacing:2.986667pt;}
.ws21{word-spacing:3.040000pt;}
.ws12{word-spacing:3.093333pt;}
.ws92{word-spacing:3.114667pt;}
.ws73{word-spacing:3.146667pt;}
.ws8a{word-spacing:3.242667pt;}
.ws5d{word-spacing:3.253333pt;}
.ws6a{word-spacing:3.285333pt;}
.ws20{word-spacing:3.306667pt;}
.ws18{word-spacing:3.360000pt;}
.ws2e{word-spacing:3.413333pt;}
.ws1a{word-spacing:3.466667pt;}
.ws46{word-spacing:3.498667pt;}
.ws2a{word-spacing:3.520000pt;}
.ws62{word-spacing:3.541333pt;}
.ws45{word-spacing:3.573333pt;}
.ws7c{word-spacing:3.626667pt;}
.ws5e{word-spacing:3.680000pt;}
.ws35{word-spacing:3.786667pt;}
.ws1e{word-spacing:3.840000pt;}
.ws60{word-spacing:3.893333pt;}
.ws22{word-spacing:3.946667pt;}
.ws37{word-spacing:4.000000pt;}
.ws56{word-spacing:4.106667pt;}
.ws64{word-spacing:4.160000pt;}
.ws14{word-spacing:4.320000pt;}
.wsf{word-spacing:4.373333pt;}
.wse{word-spacing:4.426667pt;}
.ws7b{word-spacing:4.853333pt;}
.ws7d{word-spacing:4.906667pt;}
.ws2{word-spacing:43.841269pt;}
.ws1{word-spacing:43.841803pt;}
.ws4c{word-spacing:93.440000pt;}
.ws4b{word-spacing:110.037333pt;}
.ws49{word-spacing:110.805333pt;}
.ws4f{word-spacing:113.578667pt;}
.ws4a{word-spacing:114.005333pt;}
.ws4d{word-spacing:118.314667pt;}
.ws4e{word-spacing:129.024000pt;}
.ws48{word-spacing:172.842667pt;}
.ws43{word-spacing:241.066667pt;}
.ws39{word-spacing:251.733333pt;}
.ws3b{word-spacing:262.400000pt;}
.ws3a{word-spacing:267.136000pt;}
.ws3c{word-spacing:273.066667pt;}
.ws3e{word-spacing:277.802667pt;}
.ws3f{word-spacing:283.733333pt;}
.ws3d{word-spacing:284.501333pt;}
.ws40{word-spacing:294.400000pt;}
.ws41{word-spacing:305.066667pt;}
.ws42{word-spacing:315.733333pt;}
.ws47{word-spacing:418.816000pt;}
._a{margin-left:-2576.085333pt;}
._b{margin-left:-2554.922667pt;}
._3{margin-left:-8.327467pt;}
._2{margin-left:-6.161600pt;}
._1{margin-left:-4.778667pt;}
._4{margin-left:-3.724800pt;}
._0{margin-left:-2.053333pt;}
._6{margin-left:-0.920000pt;}
._7{width:0.906667pt;}
._9{width:1.813333pt;}
._5{width:3.080000pt;}
._8{width:4.853333pt;}
._2d{width:7.973333pt;}
._29{width:104.234667pt;}
._2a{width:113.578667pt;}
._2b{width:114.816000pt;}
._2c{width:124.288000pt;}
._28{width:128.981333pt;}
._27{width:153.173333pt;}
._26{width:178.816000pt;}
._12{width:251.733333pt;}
._14{width:253.312000pt;}
._e{width:261.461333pt;}
._d{width:262.400000pt;}
._11{width:273.066667pt;}
._1f{width:278.400000pt;}
._16{width:283.733333pt;}
._f{width:287.116800pt;}
._22{width:289.066667pt;}
._18{width:294.400000pt;}
._1a{width:297.184000pt;}
._24{width:299.733333pt;}
._1b{width:305.066667pt;}
._21{width:326.400000pt;}
._15{width:349.397333pt;}
._19{width:381.397333pt;}
._c{width:389.717333pt;}
._10{width:403.840000pt;}
._1e{width:407.466667pt;}
._13{width:412.202667pt;}
._1c{width:415.744000pt;}
._20{width:422.912000pt;}
._1d{width:426.410667pt;}
._25{width:427.312000pt;}
._23{width:432.384000pt;}
._17{width:475.008000pt;}
.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;}
.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;}
.y1b8{bottom:71.219467pt;}
.y1f9{bottom:71.345333pt;}
.y195{bottom:74.342533pt;}
.y14b{bottom:74.460000pt;}
.y176{bottom:74.462533pt;}
.y64{bottom:74.464533pt;}
.yc8{bottom:74.467200pt;}
.y10a{bottom:74.753867pt;}
.y104{bottom:74.835333pt;}
.y96{bottom:74.840533pt;}
.y157{bottom:75.594667pt;}
.y2c{bottom:78.242667pt;}
.ye0{bottom:82.318000pt;}
.y1b7{bottom:84.552800pt;}
.y1f8{bottom:84.678667pt;}
.y14a{bottom:88.454667pt;}
.y109{bottom:88.748533pt;}
.y156{bottom:89.589333pt;}
.y194{bottom:90.342533pt;}
.y175{bottom:90.462533pt;}
.y63{bottom:90.464533pt;}
.yc7{bottom:90.467200pt;}
.y95{bottom:90.840533pt;}
.y2b{bottom:91.576000pt;}
.y103{bottom:97.512667pt;}
.y1b6{bottom:97.886133pt;}
.y1f7{bottom:98.012000pt;}
.y149{bottom:102.449333pt;}
.y155{bottom:103.584000pt;}
.y193{bottom:106.342533pt;}
.y174{bottom:106.462533pt;}
.y62{bottom:106.464533pt;}
.yc6{bottom:106.467200pt;}
.y94{bottom:106.840533pt;}
.ydf{bottom:108.099333pt;}
.y1b5{bottom:111.219467pt;}
.y1f6{bottom:111.345333pt;}
.y101{bottom:111.955333pt;}
.y154{bottom:117.578667pt;}
.y192{bottom:122.342533pt;}
.y173{bottom:122.462533pt;}
.y61{bottom:122.464533pt;}
.yc5{bottom:122.467200pt;}
.yde{bottom:122.542000pt;}
.y93{bottom:122.840533pt;}
.y1b4{bottom:124.552800pt;}
.y1f5{bottom:124.678667pt;}
.y102{bottom:126.398000pt;}
.y153{bottom:131.573333pt;}
.ydd{bottom:136.984667pt;}
.y1b3{bottom:137.886133pt;}
.y1f4{bottom:138.012000pt;}
.y191{bottom:138.342533pt;}
.y172{bottom:138.462533pt;}
.y60{bottom:138.464533pt;}
.yc4{bottom:138.467200pt;}
.y92{bottom:138.840533pt;}
.y152{bottom:145.568000pt;}
.y1b2{bottom:151.219467pt;}
.y1f3{bottom:151.345333pt;}
.ydc{bottom:151.427333pt;}
.y100{bottom:152.190000pt;}
.y190{bottom:154.342533pt;}
.y171{bottom:154.462533pt;}
.y5f{bottom:154.464533pt;}
.yc3{bottom:154.467200pt;}
.y91{bottom:154.840533pt;}
.y151{bottom:159.562667pt;}
.y2a{bottom:160.057067pt;}
.y1b1{bottom:164.552800pt;}
.y1f2{bottom:164.678667pt;}
.ydb{bottom:165.870000pt;}
.yfe{bottom:166.632667pt;}
.y18f{bottom:169.982533pt;}
.y170{bottom:170.462533pt;}
.y5e{bottom:170.464533pt;}
.yc2{bottom:170.467200pt;}
.y90{bottom:170.840533pt;}
.y150{bottom:173.557333pt;}
.y1b0{bottom:177.886133pt;}
.y1f1{bottom:178.012000pt;}
.yda{bottom:180.312667pt;}
.yff{bottom:181.075333pt;}
.y29{bottom:184.363733pt;}
.y16f{bottom:186.462533pt;}
.y5d{bottom:186.464533pt;}
.yc1{bottom:186.467200pt;}
.y8f{bottom:186.840533pt;}
.y14f{bottom:187.552000pt;}
.y1af{bottom:191.219467pt;}
.y1f0{bottom:191.345333pt;}
.yd9{bottom:194.755333pt;}
.y28{bottom:200.363733pt;}
.y14e{bottom:201.546667pt;}
.y18e{bottom:202.342533pt;}
.y16e{bottom:202.462533pt;}
.y5c{bottom:202.464533pt;}
.yc0{bottom:202.467200pt;}
.y8e{bottom:202.840533pt;}
.y1ae{bottom:204.552800pt;}
.y1ef{bottom:204.678667pt;}
.yfd{bottom:206.867333pt;}
.yd8{bottom:209.198000pt;}
.y14d{bottom:215.541333pt;}
.y27{bottom:216.363733pt;}
.y1ad{bottom:217.886133pt;}
.y1ee{bottom:218.012000pt;}
.y18d{bottom:218.342533pt;}
.y16d{bottom:218.462533pt;}
.y5b{bottom:218.464533pt;}
.ybf{bottom:218.467200pt;}
.y8d{bottom:218.840533pt;}
.yd7{bottom:223.640667pt;}
.y14c{bottom:229.536000pt;}
.y1ac{bottom:231.219467pt;}
.y1ed{bottom:231.345333pt;}
.y26{bottom:232.363733pt;}
.yfc{bottom:232.648667pt;}
.y18c{bottom:234.342533pt;}
.y16c{bottom:234.462533pt;}
.y5a{bottom:234.464533pt;}
.ybe{bottom:234.467200pt;}
.y8c{bottom:234.840533pt;}
.yd6{bottom:238.083333pt;}
.y1ab{bottom:244.552800pt;}
.y1ec{bottom:244.678667pt;}
.yfa{bottom:245.534000pt;}
.y25{bottom:248.363733pt;}
.y18b{bottom:250.342533pt;}
.y16b{bottom:250.462533pt;}
.y59{bottom:250.464533pt;}
.ybd{bottom:250.467200pt;}
.y8b{bottom:250.840533pt;}
.yd5{bottom:252.526000pt;}
.y1aa{bottom:257.886133pt;}
.y1eb{bottom:258.012000pt;}
.yfb{bottom:258.430000pt;}
.y24{bottom:264.363733pt;}
.y18a{bottom:266.342533pt;}
.y16a{bottom:266.462533pt;}
.y58{bottom:266.464533pt;}
.ybc{bottom:266.467200pt;}
.y8a{bottom:266.851200pt;}
.y1a9{bottom:271.219467pt;}
.y1ea{bottom:271.345333pt;}
.y23{bottom:280.363733pt;}
.yd4{bottom:280.536667pt;}
.y189{bottom:282.342533pt;}
.y169{bottom:282.462533pt;}
.y57{bottom:282.464533pt;}
.y89{bottom:282.851200pt;}
.y1a8{bottom:284.552800pt;}
.y1e9{bottom:284.678667pt;}
.yf9{bottom:287.235867pt;}
.y22{bottom:296.363733pt;}
.y1a7{bottom:297.886133pt;}
.y1e8{bottom:298.012000pt;}
.ybb{bottom:298.107200pt;}
.y188{bottom:298.342533pt;}
.y168{bottom:298.462533pt;}
.y56{bottom:298.464533pt;}
.y88{bottom:298.851200pt;}
.y1a6{bottom:311.219467pt;}
.y1e7{bottom:311.345333pt;}
.yd3{bottom:311.555867pt;}
.y21{bottom:312.363733pt;}
.y187{bottom:314.342533pt;}
.y167{bottom:314.462533pt;}
.y55{bottom:314.464533pt;}
.y87{bottom:314.851200pt;}
.y1a5{bottom:324.552800pt;}
.y1e6{bottom:324.678667pt;}
.y106{bottom:327.422000pt;}
.y20{bottom:328.363733pt;}
.yd2{bottom:328.889200pt;}
.yba{bottom:329.987200pt;}
.y186{bottom:330.342533pt;}
.y166{bottom:330.462533pt;}
.y54{bottom:330.464533pt;}
.y86{bottom:330.851200pt;}
.y1a4{bottom:337.886133pt;}
.y1e5{bottom:338.012000pt;}
.y105{bottom:341.416667pt;}
.y1f{bottom:344.363733pt;}
.y185{bottom:346.342533pt;}
.y165{bottom:346.462533pt;}
.y53{bottom:346.464533pt;}
.y85{bottom:346.851200pt;}
.y1a3{bottom:351.219467pt;}
.y1e4{bottom:351.345333pt;}
.y1e{bottom:360.363733pt;}
.y184{bottom:362.342533pt;}
.y164{bottom:362.462533pt;}
.y52{bottom:362.464533pt;}
.y1a2{bottom:364.552800pt;}
.y1e3{bottom:364.678667pt;}
.ye2{bottom:369.976667pt;}
.y1d{bottom:376.363733pt;}
.y1a1{bottom:377.886133pt;}
.y1e2{bottom:378.012000pt;}
.y183{bottom:378.342533pt;}
.y163{bottom:378.462533pt;}
.y51{bottom:378.464533pt;}
.yb9{bottom:378.467200pt;}
.y84{bottom:378.491200pt;}
.ye1{bottom:383.971333pt;}
.y1a0{bottom:391.219467pt;}
.y1e1{bottom:391.345333pt;}
.y1c{bottom:392.363733pt;}
.y182{bottom:394.342533pt;}
.y162{bottom:394.462533pt;}
.y50{bottom:394.464533pt;}
.yb8{bottom:394.467200pt;}
.y19f{bottom:404.552800pt;}
.y1e0{bottom:404.678667pt;}
.y1b{bottom:408.363733pt;}
.y181{bottom:410.342533pt;}
.y161{bottom:410.462533pt;}
.y4f{bottom:410.464533pt;}
.yb7{bottom:410.467200pt;}
.y83{bottom:410.717867pt;}
.y10c{bottom:416.876533pt;}
.y19e{bottom:417.886133pt;}
.y1df{bottom:418.012000pt;}
.y1a{bottom:424.363733pt;}
.y180{bottom:426.342533pt;}
.y160{bottom:426.462533pt;}
.y4e{bottom:426.464533pt;}
.yb6{bottom:426.467200pt;}
.y132{bottom:426.477867pt;}
.y112{bottom:426.597867pt;}
.y82{bottom:426.717867pt;}
.y10b{bottom:430.871200pt;}
.y19d{bottom:431.219467pt;}
.y1de{bottom:431.345333pt;}
.y19{bottom:440.363733pt;}
.y17f{bottom:442.342533pt;}
.y15f{bottom:442.462533pt;}
.y4d{bottom:442.464533pt;}
.yb5{bottom:442.467200pt;}
.y131{bottom:442.477867pt;}
.y111{bottom:442.597867pt;}
.y81{bottom:442.717867pt;}
.y19c{bottom:444.552800pt;}
.y1dd{bottom:444.678667pt;}
.y18{bottom:456.363733pt;}
.y1dc{bottom:458.012000pt;}
.y17e{bottom:458.342533pt;}
.y15e{bottom:458.462533pt;}
.y4c{bottom:458.464533pt;}
.yb4{bottom:458.467200pt;}
.y130{bottom:458.477867pt;}
.y110{bottom:458.597867pt;}
.y80{bottom:458.717867pt;}
.y1db{bottom:471.345333pt;}
.y17{bottom:472.363733pt;}
.y19b{bottom:473.982533pt;}
.y17d{bottom:474.342533pt;}
.y15d{bottom:474.462533pt;}
.y4b{bottom:474.464533pt;}
.yb3{bottom:474.467200pt;}
.y12f{bottom:474.477867pt;}
.y10f{bottom:474.597867pt;}
.y7f{bottom:474.717867pt;}
.y1da{bottom:484.678667pt;}
.y16{bottom:488.363733pt;}
.y17c{bottom:490.342533pt;}
.y15c{bottom:490.462533pt;}
.y4a{bottom:490.464533pt;}
.yb2{bottom:490.467200pt;}
.y12e{bottom:490.477867pt;}
.y7e{bottom:490.717867pt;}
.y1d9{bottom:498.014133pt;}
.y15{bottom:504.363733pt;}
.y10e{bottom:506.237867pt;}
.y17b{bottom:506.342533pt;}
.y15b{bottom:506.462533pt;}
.y49{bottom:506.464533pt;}
.yb1{bottom:506.467200pt;}
.y12d{bottom:506.477867pt;}
.y7d{bottom:506.717867pt;}
.y1d8{bottom:511.347467pt;}
.y14{bottom:520.363733pt;}
.y17a{bottom:522.342533pt;}
.y15a{bottom:522.462533pt;}
.y48{bottom:522.464533pt;}
.yb0{bottom:522.467200pt;}
.y12c{bottom:522.477867pt;}
.y7c{bottom:522.717867pt;}
.y219{bottom:524.678667pt;}
.y1d7{bottom:524.680800pt;}
.y13{bottom:536.363733pt;}
.y218{bottom:538.012000pt;}
.y1d6{bottom:538.014133pt;}
.y19a{bottom:538.102533pt;}
.y179{bottom:538.342533pt;}
.y159{bottom:538.462533pt;}
.y47{bottom:538.464533pt;}
.yaf{bottom:538.467200pt;}
.y12b{bottom:538.477867pt;}
.y7b{bottom:538.717867pt;}
.y217{bottom:551.345333pt;}
.y1d5{bottom:551.347467pt;}
.y12{bottom:552.363733pt;}
.y13e{bottom:554.342533pt;}
.y148{bottom:554.462533pt;}
.y46{bottom:554.464533pt;}
.yae{bottom:554.467200pt;}
.y12a{bottom:554.477867pt;}
.y7a{bottom:554.717867pt;}
.y216{bottom:564.678667pt;}
.y1d4{bottom:564.680800pt;}
.y11{bottom:568.363733pt;}
.y13d{bottom:570.342533pt;}
.y147{bottom:570.462533pt;}
.y45{bottom:570.464533pt;}
.yad{bottom:570.467200pt;}
.y129{bottom:570.477867pt;}
.y215{bottom:578.012000pt;}
.y1d3{bottom:578.014133pt;}
.y13c{bottom:586.342533pt;}
.y79{bottom:586.357867pt;}
.y146{bottom:586.462533pt;}
.y44{bottom:586.464533pt;}
.yac{bottom:586.467200pt;}
.y128{bottom:586.477867pt;}
.y214{bottom:591.345333pt;}
.y1d2{bottom:591.347467pt;}
.y199{bottom:602.102533pt;}
.y13b{bottom:602.342533pt;}
.y145{bottom:602.462533pt;}
.y43{bottom:602.464533pt;}
.yab{bottom:602.467200pt;}
.y127{bottom:602.477867pt;}
.y213{bottom:604.678667pt;}
.y1d1{bottom:604.680800pt;}
.y10{bottom:608.504267pt;}
.y212{bottom:618.012000pt;}
.y1d0{bottom:618.014133pt;}
.y13a{bottom:618.342533pt;}
.y144{bottom:618.462533pt;}
.y42{bottom:618.464533pt;}
.yaa{bottom:618.467200pt;}
.y126{bottom:618.477867pt;}
.y78{bottom:618.584533pt;}
.yf{bottom:619.571600pt;}
.y211{bottom:631.345333pt;}
.y1cf{bottom:631.347467pt;}
.y139{bottom:634.342533pt;}
.y143{bottom:634.462533pt;}
.y41{bottom:634.464533pt;}
.ya9{bottom:634.467200pt;}
.y125{bottom:634.477867pt;}
.y77{bottom:634.584533pt;}
.y210{bottom:644.678667pt;}
.y1ce{bottom:644.680800pt;}
.y178{bottom:650.342533pt;}
.y142{bottom:650.462533pt;}
.y40{bottom:650.464533pt;}
.ya8{bottom:650.467200pt;}
.y124{bottom:650.477867pt;}
.y76{bottom:650.584533pt;}
.ye{bottom:652.585600pt;}
.y20f{bottom:658.012000pt;}
.y1cd{bottom:658.014133pt;}
.yd{bottom:664.585600pt;}
.y138{bottom:665.982533pt;}
.y141{bottom:666.462533pt;}
.y3f{bottom:666.464533pt;}
.ya7{bottom:666.467200pt;}
.y123{bottom:666.477867pt;}
.y75{bottom:666.584533pt;}
.y20e{bottom:671.345333pt;}
.y1cc{bottom:671.347467pt;}
.yc{bottom:676.585600pt;}
.y177{bottom:681.982533pt;}
.y140{bottom:682.462533pt;}
.y3e{bottom:682.464533pt;}
.ya6{bottom:682.467200pt;}
.yf8{bottom:682.475867pt;}
.y122{bottom:682.477867pt;}
.y74{bottom:682.584533pt;}
.ye8{bottom:682.595867pt;}
.y20d{bottom:684.678667pt;}
.y1cb{bottom:684.680800pt;}
.yb{bottom:688.585733pt;}
.ya{bottom:695.763200pt;}
.y20c{bottom:698.012000pt;}
.y1ca{bottom:698.014133pt;}
.y198{bottom:698.102533pt;}
.y13f{bottom:698.462533pt;}
.y3d{bottom:698.464533pt;}
.ya5{bottom:698.467200pt;}
.yf7{bottom:698.475867pt;}
.y121{bottom:698.477867pt;}
.y73{bottom:698.584533pt;}
.ye7{bottom:698.595867pt;}
.y20b{bottom:711.345333pt;}
.y1c9{bottom:711.347467pt;}
.y9{bottom:712.585733pt;}
.y137{bottom:714.462533pt;}
.y3c{bottom:714.464533pt;}
.ya4{bottom:714.467200pt;}
.yf6{bottom:714.475867pt;}
.y120{bottom:714.477867pt;}
.y72{bottom:714.584533pt;}
.ye6{bottom:714.595867pt;}
.y20a{bottom:724.678667pt;}
.y1c8{bottom:724.680800pt;}
.y136{bottom:730.462533pt;}
.y3b{bottom:730.464533pt;}
.ya3{bottom:730.467200pt;}
.yf5{bottom:730.475867pt;}
.y11f{bottom:730.477867pt;}
.y71{bottom:730.584533pt;}
.ye5{bottom:730.595867pt;}
.y209{bottom:738.012000pt;}
.y1c7{bottom:738.014133pt;}
.y8{bottom:738.121067pt;}
.y197{bottom:746.102533pt;}
.y135{bottom:746.462533pt;}
.y3a{bottom:746.464533pt;}
.ya2{bottom:746.467200pt;}
.yf4{bottom:746.475867pt;}
.y11e{bottom:746.477867pt;}
.y70{bottom:746.584533pt;}
.y208{bottom:751.345333pt;}
.y1c6{bottom:751.347467pt;}
.y7{bottom:756.783067pt;}
.ye4{bottom:762.235867pt;}
.y134{bottom:762.462533pt;}
.y39{bottom:762.464533pt;}
.ya1{bottom:762.467200pt;}
.yf3{bottom:762.475867pt;}
.y11d{bottom:762.477867pt;}
.y6f{bottom:762.584533pt;}
.y207{bottom:764.678667pt;}
.y1c5{bottom:764.680800pt;}
.y206{bottom:778.012000pt;}
.y1c4{bottom:778.014133pt;}
.y108{bottom:778.462533pt;}
.y38{bottom:778.464533pt;}
.ya0{bottom:778.467200pt;}
.yf2{bottom:778.475867pt;}
.y11c{bottom:778.477867pt;}
.y6e{bottom:778.584533pt;}
.y205{bottom:791.345333pt;}
.y1c3{bottom:791.347467pt;}
.yd1{bottom:794.462533pt;}
.y37{bottom:794.464533pt;}
.y9f{bottom:794.467200pt;}
.yf1{bottom:794.475867pt;}
.y11b{bottom:794.477867pt;}
.y6d{bottom:794.584533pt;}
.y6{bottom:797.816533pt;}
.y204{bottom:804.678667pt;}
.y1c2{bottom:804.680800pt;}
.yd0{bottom:810.462533pt;}
.y36{bottom:810.464533pt;}
.y9e{bottom:810.467200pt;}
.yf0{bottom:810.475867pt;}
.y11a{bottom:810.477867pt;}
.y6c{bottom:810.584533pt;}
.y203{bottom:818.012000pt;}
.y1c1{bottom:818.014133pt;}
.ycf{bottom:826.462533pt;}
.y35{bottom:826.464533pt;}
.y9d{bottom:826.467200pt;}
.yef{bottom:826.475867pt;}
.y119{bottom:826.477867pt;}
.y6b{bottom:826.584533pt;}
.y5{bottom:830.226133pt;}
.y202{bottom:831.345333pt;}
.y1c0{bottom:831.347467pt;}
.yce{bottom:842.462533pt;}
.y34{bottom:842.464533pt;}
.y9c{bottom:842.467200pt;}
.yee{bottom:842.475867pt;}
.y118{bottom:842.477867pt;}
.y6a{bottom:842.584533pt;}
.y201{bottom:844.678667pt;}
.y1bf{bottom:844.680800pt;}
.y200{bottom:858.012000pt;}
.y1be{bottom:858.014133pt;}
.ycd{bottom:858.462533pt;}
.y33{bottom:858.464533pt;}
.y9b{bottom:858.467200pt;}
.yed{bottom:858.475867pt;}
.y117{bottom:858.477867pt;}
.y69{bottom:858.584533pt;}
.y4{bottom:862.635733pt;}
.y1ff{bottom:871.345333pt;}
.y1bd{bottom:871.347467pt;}
.y196{bottom:874.102533pt;}
.ycc{bottom:874.462533pt;}
.y32{bottom:874.464533pt;}
.y9a{bottom:874.467200pt;}
.yec{bottom:874.475867pt;}
.y116{bottom:874.477867pt;}
.y1fe{bottom:884.678667pt;}
.y1bc{bottom:884.680800pt;}
.y68{bottom:890.224533pt;}
.ycb{bottom:890.462533pt;}
.y31{bottom:890.464533pt;}
.y99{bottom:890.467200pt;}
.yeb{bottom:890.475867pt;}
.y115{bottom:890.477867pt;}
.y3{bottom:895.045333pt;}
.y1fd{bottom:898.012000pt;}
.y1bb{bottom:898.014133pt;}
.yca{bottom:906.462533pt;}
.y66{bottom:906.464533pt;}
.y98{bottom:906.467200pt;}
.yea{bottom:906.475867pt;}
.y114{bottom:906.477867pt;}
.y1fc{bottom:911.345333pt;}
.y1ba{bottom:911.347467pt;}
.y30{bottom:922.104533pt;}
.yc9{bottom:922.462533pt;}
.y65{bottom:922.464533pt;}
.y97{bottom:922.467200pt;}
.ye9{bottom:922.475867pt;}
.y113{bottom:922.477867pt;}
.y1fb{bottom:924.678667pt;}
.y1b9{bottom:924.680800pt;}
.y2{bottom:950.489200pt;}
.y67{bottom:1006.594400pt;}
.y133{bottom:1006.597067pt;}
.y1fa{bottom:1006.598667pt;}
.y10d{bottom:1006.604533pt;}
.y107{bottom:1006.611333pt;}
.ye3{bottom:1006.638000pt;}
.y158{bottom:1006.656000pt;}
.y2e{bottom:1009.860000pt;}
.y2d{bottom:1022.660000pt;}
.h7{height:17.000371pt;}
.h9{height:25.255208pt;}
.h2{height:27.197917pt;}
.hd{height:29.140625pt;}
.h8{height:29.160156pt;}
.h12{height:29.645833pt;}
.hf{height:31.083333pt;}
.he{height:31.104167pt;}
.h10{height:37.057292pt;}
.hc{height:38.828125pt;}
.ha{height:38.854167pt;}
.hb{height:38.880208pt;}
.h11{height:46.669219pt;}
.h13{height:46.727068pt;}
.h3{height:50.476562pt;}
.h6{height:50.755837pt;}
.h5{height:50.774503pt;}
.h4{height:81.927344pt;}
.h1{height:1058.000000pt;}
.h0{height:1058.268000pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1f{left:62.740133pt;}
.x7{left:68.031467pt;}
.x14{left:69.921200pt;}
.x5{left:85.417333pt;}
.x1{left:86.929067pt;}
.x16{left:88.818800pt;}
.x26{left:90.708667pt;}
.x4{left:94.488133pt;}
.x9{left:98.274267pt;}
.x23{left:109.606533pt;}
.x3{left:111.491467pt;}
.xf{left:117.166400pt;}
.xe{left:147.539733pt;}
.x8{left:169.380933pt;}
.x1e{left:176.778267pt;}
.x22{left:191.595867pt;}
.x15{left:218.219867pt;}
.x1c{left:224.093467pt;}
.x1d{left:226.450800pt;}
.x19{left:228.242800pt;}
.x1b{left:230.333467pt;}
.x18{left:243.080133pt;}
.x17{left:265.234800pt;}
.x1a{left:354.984133pt;}
.x6{left:404.481333pt;}
.xa{left:406.300933pt;}
.x10{left:425.199600pt;}
.xb{left:436.540933pt;}
.x24{left:447.878533pt;}
.x11{left:455.439600pt;}
.x20{left:507.271467pt;}
.x12{left:544.812933pt;}
.xd{left:589.770933pt;}
.x2{left:616.324800pt;}
.x21{left:641.526800pt;}
.xc{left:647.459200pt;}
.x25{left:661.196667pt;}
.x13{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; }
  