
    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_2189239d8c19f41952e2e4a9.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_399f73083e2f08df68179e3b.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_675f22131bc5fb4f50826a5f.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_fbce96fe81c2ea754739bd04.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.728027;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_c90ca26e3a54d2fd93a0364f.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_6889150fe19d69c6e76328e8.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.730957;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_4610b12e20209ae49083c4c9.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.079590;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_2bdf7905139c21ae49145926.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.740234;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_547b614757afa5a2647dd51c.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.666504;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:-16.471800px;}
.v4{vertical-align:-3.404400px;}
.v7{vertical-align:-1.620000px;}
.v0{vertical-align:0.000000px;}
.v6{vertical-align:1.620000px;}
.v5{vertical-align:3.404400px;}
.v9{vertical-align:16.476600px;}
.v3{vertical-align:20.562600px;}
.v1{vertical-align:22.655400px;}
.v8{vertical-align:24.012000px;}
.ls55{letter-spacing:-2.220000px;}
.ls1b{letter-spacing:-0.720000px;}
.ls47{letter-spacing:-0.480000px;}
.ls82{letter-spacing:-0.144000px;}
.ls46{letter-spacing:-0.120000px;}
.ls84{letter-spacing:-0.096000px;}
.ls1d{letter-spacing:-0.060000px;}
.ls1c{letter-spacing:-0.048000px;}
.ls1a{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.002400px;}
.ls1{letter-spacing:0.004800px;}
.ls3c{letter-spacing:0.005400px;}
.ls0{letter-spacing:0.006000px;}
.ls44{letter-spacing:0.035400px;}
.ls68{letter-spacing:0.048000px;}
.lsc{letter-spacing:0.060000px;}
.ls65{letter-spacing:0.096000px;}
.ls36{letter-spacing:0.120000px;}
.ls6e{letter-spacing:0.144000px;}
.ls53{letter-spacing:0.180000px;}
.ls73{letter-spacing:0.192000px;}
.ls4{letter-spacing:0.240000px;}
.ls6{letter-spacing:0.288000px;}
.ls3b{letter-spacing:0.300000px;}
.ls79{letter-spacing:0.336000px;}
.ls14{letter-spacing:0.360000px;}
.ls72{letter-spacing:0.384000px;}
.ls50{letter-spacing:0.420000px;}
.ls76{letter-spacing:0.432000px;}
.ls2c{letter-spacing:0.480000px;}
.ls74{letter-spacing:0.528000px;}
.ls2e{letter-spacing:0.540000px;}
.ls5{letter-spacing:0.576000px;}
.ls17{letter-spacing:0.600000px;}
.ls6f{letter-spacing:0.624000px;}
.ls45{letter-spacing:0.660000px;}
.ls6b{letter-spacing:0.672000px;}
.ls3{letter-spacing:0.720000px;}
.ls42{letter-spacing:0.756000px;}
.ls85{letter-spacing:0.768000px;}
.ls40{letter-spacing:0.769200px;}
.ls41{letter-spacing:0.769800px;}
.ls28{letter-spacing:0.780000px;}
.ls43{letter-spacing:0.783000px;}
.ls64{letter-spacing:0.816000px;}
.ls3e{letter-spacing:0.840000px;}
.ls57{letter-spacing:0.850800px;}
.ls22{letter-spacing:0.900000px;}
.ls77{letter-spacing:0.912000px;}
.ls5d{letter-spacing:0.936000px;}
.ls26{letter-spacing:0.960000px;}
.ls39{letter-spacing:1.020000px;}
.ls70{letter-spacing:1.056000px;}
.ls15{letter-spacing:1.080000px;}
.ls25{letter-spacing:1.140000px;}
.ls6a{letter-spacing:1.152000px;}
.ls18{letter-spacing:1.200000px;}
.ls6d{letter-spacing:1.248000px;}
.ls3f{letter-spacing:1.260000px;}
.ls81{letter-spacing:1.296000px;}
.ls13{letter-spacing:1.320000px;}
.ls7b{letter-spacing:1.344000px;}
.ls9{letter-spacing:1.380000px;}
.ls19{letter-spacing:1.440000px;}
.ls7d{letter-spacing:1.488000px;}
.ls2f{letter-spacing:1.500000px;}
.ls7a{letter-spacing:1.536000px;}
.ls27{letter-spacing:1.560000px;}
.ls37{letter-spacing:1.620000px;}
.ls7f{letter-spacing:1.632000px;}
.ls38{letter-spacing:1.680000px;}
.ls78{letter-spacing:1.728000px;}
.ls1f{letter-spacing:1.740000px;}
.ls7e{letter-spacing:1.776000px;}
.ls2d{letter-spacing:1.800000px;}
.ls88{letter-spacing:1.824000px;}
.ls21{letter-spacing:1.860000px;}
.ls86{letter-spacing:1.872000px;}
.ls34{letter-spacing:1.920000px;}
.ls62{letter-spacing:1.968000px;}
.ls30{letter-spacing:1.980000px;}
.ls63{letter-spacing:2.016000px;}
.lsd{letter-spacing:2.040000px;}
.ls4b{letter-spacing:2.100000px;}
.ls67{letter-spacing:2.112000px;}
.ls58{letter-spacing:2.160000px;}
.ls11{letter-spacing:2.220000px;}
.ls87{letter-spacing:2.256000px;}
.ls4a{letter-spacing:2.280000px;}
.ls83{letter-spacing:2.304000px;}
.ls5e{letter-spacing:2.340000px;}
.ls24{letter-spacing:2.400000px;}
.ls8{letter-spacing:2.460000px;}
.ls16{letter-spacing:2.520000px;}
.ls7c{letter-spacing:2.544000px;}
.ls31{letter-spacing:2.580000px;}
.ls4e{letter-spacing:2.640000px;}
.ls2a{letter-spacing:2.700000px;}
.ls49{letter-spacing:2.760000px;}
.ls29{letter-spacing:2.820000px;}
.ls32{letter-spacing:2.880000px;}
.ls71{letter-spacing:2.928000px;}
.ls5a{letter-spacing:2.940000px;}
.ls69{letter-spacing:2.976000px;}
.lse{letter-spacing:3.000000px;}
.ls6c{letter-spacing:3.024000px;}
.ls3d{letter-spacing:3.060000px;}
.ls5f{letter-spacing:3.120000px;}
.ls7{letter-spacing:3.180000px;}
.ls51{letter-spacing:3.240000px;}
.ls20{letter-spacing:3.300000px;}
.lsa{letter-spacing:3.360000px;}
.ls5b{letter-spacing:3.420000px;}
.ls12{letter-spacing:3.480000px;}
.ls10{letter-spacing:3.540000px;}
.ls52{letter-spacing:3.600000px;}
.ls35{letter-spacing:3.660000px;}
.ls23{letter-spacing:3.720000px;}
.ls60{letter-spacing:3.840000px;}
.ls66{letter-spacing:3.984000px;}
.ls59{letter-spacing:4.140000px;}
.ls80{letter-spacing:4.176000px;}
.lsf{letter-spacing:4.200000px;}
.ls33{letter-spacing:4.260000px;}
.ls4f{letter-spacing:4.320000px;}
.ls75{letter-spacing:4.368000px;}
.ls61{letter-spacing:4.440000px;}
.lsb{letter-spacing:4.560000px;}
.ls3a{letter-spacing:4.860000px;}
.ls2b{letter-spacing:5.040000px;}
.ls1e{letter-spacing:5.220000px;}
.ls54{letter-spacing:5.280000px;}
.ls4c{letter-spacing:5.400000px;}
.ls4d{letter-spacing:5.880000px;}
.ls56{letter-spacing:6.660000px;}
.ls48{letter-spacing:6.780000px;}
.ls5c{letter-spacing:641.232000px;}
.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;}
}
.ws22{word-spacing:-60.000000px;}
.ws71{word-spacing:-19.260000px;}
.ws20{word-spacing:-16.680000px;}
.ws4c{word-spacing:-16.200000px;}
.ws8e{word-spacing:-15.072000px;}
.ws8d{word-spacing:-14.784000px;}
.ws23{word-spacing:-14.178000px;}
.ws2{word-spacing:-13.344000px;}
.ws8f{word-spacing:-13.248000px;}
.ws0{word-spacing:-11.008800px;}
.ws21{word-spacing:-10.008000px;}
.ws1{word-spacing:-8.006400px;}
.ws4a{word-spacing:-6.780000px;}
.ws6a{word-spacing:-6.660000px;}
.ws5c{word-spacing:-5.880000px;}
.ws5b{word-spacing:-5.400000px;}
.ws5f{word-spacing:-5.280000px;}
.ws24{word-spacing:-5.220000px;}
.ws30{word-spacing:-5.040000px;}
.ws42{word-spacing:-4.860000px;}
.ws10{word-spacing:-4.560000px;}
.ws7e{word-spacing:-4.440000px;}
.ws9b{word-spacing:-4.368000px;}
.ws60{word-spacing:-4.320000px;}
.ws3a{word-spacing:-4.260000px;}
.ws14{word-spacing:-4.200000px;}
.wsab{word-spacing:-4.176000px;}
.ws6d{word-spacing:-4.140000px;}
.ws83{word-spacing:-3.984000px;}
.ws7d{word-spacing:-3.840000px;}
.ws29{word-spacing:-3.720000px;}
.ws3d{word-spacing:-3.660000px;}
.ws57{word-spacing:-3.600000px;}
.ws15{word-spacing:-3.540000px;}
.ws17{word-spacing:-3.480000px;}
.ws6f{word-spacing:-3.420000px;}
.wsf{word-spacing:-3.360000px;}
.ws26{word-spacing:-3.300000px;}
.ws62{word-spacing:-3.240000px;}
.wsc{word-spacing:-3.180000px;}
.ws7c{word-spacing:-3.120000px;}
.ws44{word-spacing:-3.060000px;}
.ws8a{word-spacing:-3.024000px;}
.ws13{word-spacing:-3.000000px;}
.ws89{word-spacing:-2.976000px;}
.ws6e{word-spacing:-2.940000px;}
.ws96{word-spacing:-2.928000px;}
.ws39{word-spacing:-2.880000px;}
.ws2e{word-spacing:-2.820000px;}
.ws56{word-spacing:-2.760000px;}
.ws2f{word-spacing:-2.700000px;}
.ws4{word-spacing:-2.664000px;}
.ws5d{word-spacing:-2.640000px;}
.ws38{word-spacing:-2.580000px;}
.wsa7{word-spacing:-2.544000px;}
.ws1b{word-spacing:-2.520000px;}
.wsd{word-spacing:-2.460000px;}
.ws2a{word-spacing:-2.400000px;}
.ws70{word-spacing:-2.340000px;}
.ws9a{word-spacing:-2.304000px;}
.ws58{word-spacing:-2.280000px;}
.wsb0{word-spacing:-2.256000px;}
.ws16{word-spacing:-2.220000px;}
.ws6{word-spacing:-2.160000px;}
.ws85{word-spacing:-2.112000px;}
.ws5a{word-spacing:-2.100000px;}
.ws12{word-spacing:-2.040000px;}
.ws36{word-spacing:-1.980000px;}
.ws7f{word-spacing:-1.968000px;}
.ws3b{word-spacing:-1.920000px;}
.wsaf{word-spacing:-1.872000px;}
.ws27{word-spacing:-1.860000px;}
.wsb1{word-spacing:-1.824000px;}
.ws33{word-spacing:-1.800000px;}
.wsa9{word-spacing:-1.776000px;}
.ws25{word-spacing:-1.740000px;}
.ws9f{word-spacing:-1.728000px;}
.ws40{word-spacing:-1.680000px;}
.wsaa{word-spacing:-1.632000px;}
.ws3f{word-spacing:-1.620000px;}
.ws2d{word-spacing:-1.560000px;}
.wsa4{word-spacing:-1.536000px;}
.ws35{word-spacing:-1.500000px;}
.wsa8{word-spacing:-1.488000px;}
.ws1e{word-spacing:-1.440000px;}
.wse{word-spacing:-1.380000px;}
.wsa5{word-spacing:-1.344000px;}
.ws18{word-spacing:-1.320000px;}
.wsac{word-spacing:-1.296000px;}
.ws48{word-spacing:-1.260000px;}
.ws90{word-spacing:-1.248000px;}
.ws1d{word-spacing:-1.200000px;}
.ws8b{word-spacing:-1.152000px;}
.ws2b{word-spacing:-1.140000px;}
.ws1a{word-spacing:-1.080000px;}
.ws95{word-spacing:-1.056000px;}
.ws41{word-spacing:-1.020000px;}
.ws2c{word-spacing:-0.960000px;}
.ws6b{word-spacing:-0.936000px;}
.ws9e{word-spacing:-0.912000px;}
.ws28{word-spacing:-0.900000px;}
.ws45{word-spacing:-0.840000px;}
.ws80{word-spacing:-0.816000px;}
.ws3c{word-spacing:-0.780000px;}
.wsad{word-spacing:-0.768000px;}
.ws8{word-spacing:-0.720000px;}
.ws8c{word-spacing:-0.672000px;}
.ws4b{word-spacing:-0.660000px;}
.ws94{word-spacing:-0.624000px;}
.ws1c{word-spacing:-0.600000px;}
.wsa{word-spacing:-0.576000px;}
.ws34{word-spacing:-0.540000px;}
.ws99{word-spacing:-0.528000px;}
.ws32{word-spacing:-0.480000px;}
.ws9d{word-spacing:-0.432000px;}
.ws61{word-spacing:-0.420000px;}
.ws98{word-spacing:-0.384000px;}
.ws19{word-spacing:-0.360000px;}
.wsa3{word-spacing:-0.336000px;}
.ws43{word-spacing:-0.300000px;}
.wsb{word-spacing:-0.288000px;}
.ws9{word-spacing:-0.240000px;}
.ws91{word-spacing:-0.192000px;}
.ws5e{word-spacing:-0.180000px;}
.ws92{word-spacing:-0.144000px;}
.ws3e{word-spacing:-0.120000px;}
.ws81{word-spacing:-0.096000px;}
.ws11{word-spacing:-0.060000px;}
.ws88{word-spacing:-0.048000px;}
.ws3{word-spacing:0.000000px;}
.wsa2{word-spacing:0.048000px;}
.ws1f{word-spacing:0.060000px;}
.wsa0{word-spacing:0.096000px;}
.ws31{word-spacing:0.120000px;}
.ws97{word-spacing:0.144000px;}
.ws7{word-spacing:0.432000px;}
.ws5{word-spacing:0.480000px;}
.ws9c{word-spacing:0.816000px;}
.ws6c{word-spacing:0.900000px;}
.wsa1{word-spacing:1.200000px;}
.ws84{word-spacing:1.728000px;}
.ws63{word-spacing:2.220000px;}
.ws47{word-spacing:3.000000px;}
.wsb2{word-spacing:3.120000px;}
.ws7b{word-spacing:3.420000px;}
.ws46{word-spacing:4.020000px;}
.ws86{word-spacing:4.080000px;}
.ws93{word-spacing:4.272000px;}
.ws82{word-spacing:4.368000px;}
.ws87{word-spacing:4.416000px;}
.wsae{word-spacing:5.184000px;}
.ws59{word-spacing:5.460000px;}
.ws37{word-spacing:5.520000px;}
.wsa6{word-spacing:5.712000px;}
.ws49{word-spacing:6.780000px;}
.ws4e{word-spacing:196.080000px;}
.ws53{word-spacing:199.056000px;}
.ws52{word-spacing:212.064000px;}
.ws54{word-spacing:215.040000px;}
.ws50{word-spacing:217.440000px;}
.ws55{word-spacing:225.408000px;}
.ws51{word-spacing:233.424000px;}
.ws4f{word-spacing:233.472000px;}
.ws64{word-spacing:324.576000px;}
.ws7a{word-spacing:376.416000px;}
.ws74{word-spacing:390.144000px;}
.ws78{word-spacing:391.920000px;}
.ws75{word-spacing:395.376000px;}
.ws77{word-spacing:398.928000px;}
.ws73{word-spacing:403.488000px;}
.ws65{word-spacing:432.672000px;}
.ws68{word-spacing:557.136000px;}
.ws67{word-spacing:611.808000px;}
.ws4d{word-spacing:749.088000px;}
.ws72{word-spacing:781.248000px;}
.ws66{word-spacing:823.968000px;}
.ws69{word-spacing:849.216000px;}
.ws79{word-spacing:926.640000px;}
.ws76{word-spacing:934.704000px;}
._d{margin-left:-2898.126000px;}
._27{margin-left:-2874.309000px;}
._f{margin-left:-7.128000px;}
._1{margin-left:-5.376000px;}
._2{margin-left:-3.579000px;}
._0{margin-left:-2.310000px;}
._7{margin-left:-1.125000px;}
._5{width:1.536000px;}
._4{width:2.544000px;}
._6{width:4.128000px;}
._3{width:5.136000px;}
._9{width:6.180000px;}
._a{width:7.320000px;}
._8{width:8.640000px;}
._b{width:9.660000px;}
._c{width:10.920000px;}
._e{width:12.045000px;}
._2b{width:60.432000px;}
._2a{width:61.634400px;}
._29{width:84.960000px;}
._28{width:97.920000px;}
._2d{width:201.168000px;}
._2c{width:210.768000px;}
._18{width:212.400000px;}
._2e{width:214.512000px;}
._10{width:222.795000px;}
._12{width:225.408000px;}
._1c{width:228.384000px;}
._19{width:230.784000px;}
._15{width:241.728000px;}
._1f{width:246.768000px;}
._22{width:279.120000px;}
._25{width:288.480000px;}
._24{width:324.192000px;}
._34{width:325.728000px;}
._33{width:384.864000px;}
._2f{width:386.112000px;}
._3c{width:403.488000px;}
._3e{width:404.811000px;}
._36{width:408.720000px;}
._39{width:416.832000px;}
._26{width:445.392000px;}
._30{width:571.872000px;}
._35{width:590.544000px;}
._20{width:596.112000px;}
._1e{width:638.832000px;}
._17{width:644.160000px;}
._1a{width:660.144000px;}
._1b{width:686.880000px;}
._3b{width:692.016000px;}
._16{width:697.536000px;}
._13{width:702.912000px;}
._11{width:705.552000px;}
._1d{width:721.536000px;}
._14{width:724.224000px;}
._21{width:729.174000px;}
._37{width:734.640000px;}
._23{width:749.520000px;}
._32{width:854.544000px;}
._31{width:875.856000px;}
._38{width:932.064000px;}
._3a{width:945.408000px;}
._3d{width:948.048000px;}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:28.800000px;}
.fs9{font-size:36.000000px;}
.fs4{font-size:39.600000px;}
.fs0{font-size:42.000000px;}
.fs6{font-size:48.000000px;}
.fs8{font-size:51.000000px;}
.fs7{font-size:60.000000px;}
.fs3{font-size:66.000000px;}
.fs1{font-size:72.000000px;}
.fs2{font-size:84.000000px;}
.y0{bottom:0.000000px;}
.y2c{bottom:50.517000px;}
.y1{bottom:82.406700px;}
.y13a{bottom:83.228850px;}
.y5e{bottom:83.363850px;}
.y2b{bottom:83.493900px;}
.y8b{bottom:83.655600px;}
.y154{bottom:85.796700px;}
.y12f{bottom:92.246850px;}
.ydd{bottom:92.309400px;}
.y114{bottom:92.565750px;}
.y194{bottom:94.938300px;}
.y153{bottom:100.796700px;}
.y139{bottom:101.228850px;}
.y5d{bottom:101.363850px;}
.y12e{bottom:108.494850px;}
.ydc{bottom:108.557400px;}
.y113{bottom:108.813750px;}
.y193{bottom:109.938300px;}
.y152{bottom:115.796700px;}
.y138{bottom:119.228850px;}
.y5c{bottom:119.363850px;}
.y8a{bottom:119.655600px;}
.y1a{bottom:121.513200px;}
.y12d{bottom:124.742850px;}
.ydb{bottom:124.805400px;}
.y192{bottom:124.938300px;}
.y112{bottom:125.061750px;}
.y151{bottom:130.796700px;}
.y137{bottom:137.228850px;}
.y5b{bottom:137.363850px;}
.y191{bottom:139.938300px;}
.y12c{bottom:140.990850px;}
.yda{bottom:141.053400px;}
.y150{bottom:145.796700px;}
.y190{bottom:154.938300px;}
.y136{bottom:155.228850px;}
.y5a{bottom:155.363850px;}
.y89{bottom:155.505600px;}
.y111{bottom:156.573750px;}
.y12b{bottom:157.238850px;}
.yd9{bottom:157.313400px;}
.y14f{bottom:160.796700px;}
.y18f{bottom:169.938300px;}
.y135{bottom:173.228850px;}
.y59{bottom:173.363850px;}
.y12a{bottom:173.498850px;}
.y88{bottom:173.505600px;}
.yd8{bottom:173.573400px;}
.y14e{bottom:175.796700px;}
.y27{bottom:179.603850px;}
.y18e{bottom:184.938300px;}
.y129{bottom:189.746850px;}
.yd7{bottom:189.833400px;}
.y14d{bottom:190.796700px;}
.y134{bottom:191.228850px;}
.y58{bottom:191.363850px;}
.y110{bottom:191.391150px;}
.y87{bottom:191.505600px;}
.y26{bottom:197.603850px;}
.y18d{bottom:199.938300px;}
.y14c{bottom:205.796700px;}
.yd6{bottom:206.081400px;}
.y133{bottom:209.228850px;}
.y86{bottom:209.505600px;}
.y10f{bottom:210.891150px;}
.y18c{bottom:214.938300px;}
.y25{bottom:215.603850px;}
.y128{bottom:218.750850px;}
.y14b{bottom:220.796700px;}
.yd5{bottom:222.329400px;}
.y132{bottom:227.228850px;}
.y57{bottom:227.363850px;}
.y85{bottom:227.505600px;}
.y18b{bottom:229.938300px;}
.y24{bottom:233.603850px;}
.y14a{bottom:235.796700px;}
.yd4{bottom:238.577400px;}
.y18a{bottom:244.938300px;}
.y131{bottom:245.228850px;}
.y84{bottom:245.910600px;}
.y127{bottom:247.754850px;}
.y149{bottom:250.796700px;}
.y23{bottom:251.603850px;}
.yd3{bottom:254.837400px;}
.y189{bottom:259.938300px;}
.y10e{bottom:262.113000px;}
.y56{bottom:263.228850px;}
.y83{bottom:263.505600px;}
.y126{bottom:264.002850px;}
.y148{bottom:265.796700px;}
.y22{bottom:269.603850px;}
.yd2{bottom:271.085400px;}
.y188{bottom:274.938300px;}
.y10d{bottom:278.361000px;}
.y125{bottom:280.250850px;}
.y147{bottom:280.796700px;}
.y130{bottom:281.228850px;}
.y82{bottom:281.505600px;}
.yd1{bottom:287.333400px;}
.y21{bottom:287.603850px;}
.y187{bottom:289.938300px;}
.y10c{bottom:294.609000px;}
.y146{bottom:295.796700px;}
.y124{bottom:296.498850px;}
.y81{bottom:299.505600px;}
.y186{bottom:304.938300px;}
.y20{bottom:305.603850px;}
.y145{bottom:310.796700px;}
.y123{bottom:312.746850px;}
.y55{bottom:317.363850px;}
.y80{bottom:317.505600px;}
.yd0{bottom:318.845400px;}
.y185{bottom:319.938300px;}
.y1f{bottom:323.603850px;}
.y144{bottom:325.796700px;}
.y10b{bottom:326.121000px;}
.y122{bottom:328.994850px;}
.y184{bottom:334.938300px;}
.y54{bottom:335.363850px;}
.y7f{bottom:335.505600px;}
.y143{bottom:340.796700px;}
.y1e{bottom:341.603850px;}
.y121{bottom:345.242850px;}
.y183{bottom:349.938300px;}
.y53{bottom:353.363850px;}
.y7e{bottom:353.505600px;}
.ycf{bottom:353.679000px;}
.y142{bottom:355.796700px;}
.y1d{bottom:359.603850px;}
.y10a{bottom:360.932250px;}
.y182{bottom:364.938300px;}
.y141{bottom:370.796700px;}
.y52{bottom:371.363850px;}
.y7d{bottom:371.505600px;}
.yce{bottom:373.179000px;}
.y120{bottom:374.246850px;}
.y1c{bottom:377.603850px;}
.y181{bottom:379.938300px;}
.y109{bottom:380.432250px;}
.y140{bottom:385.796700px;}
.y51{bottom:389.363850px;}
.y7c{bottom:389.505600px;}
.ycd{bottom:392.679000px;}
.y180{bottom:394.938300px;}
.y28{bottom:395.603850px;}
.y13f{bottom:400.796700px;}
.y11f{bottom:403.250850px;}
.y50{bottom:407.363850px;}
.y7b{bottom:407.505600px;}
.y17f{bottom:409.938300px;}
.y1b{bottom:413.603850px;}
.y13e{bottom:415.796700px;}
.y11e{bottom:419.498850px;}
.y17e{bottom:424.938300px;}
.yfc{bottom:425.222250px;}
.y4f{bottom:425.363850px;}
.y7a{bottom:425.513850px;}
.y13d{bottom:430.796700px;}
.y11d{bottom:435.746850px;}
.y17d{bottom:439.938300px;}
.yfb{bottom:443.222250px;}
.y4e{bottom:443.363850px;}
.y79{bottom:443.513850px;}
.yac{bottom:443.514000px;}
.ycc{bottom:443.529000px;}
.y13c{bottom:445.796700px;}
.y11c{bottom:451.994850px;}
.y17c{bottom:454.938300px;}
.yfa{bottom:461.222250px;}
.y4d{bottom:461.363850px;}
.y78{bottom:461.513850px;}
.yab{bottom:461.514000px;}
.ycb{bottom:461.529000px;}
.y11b{bottom:468.242850px;}
.y17b{bottom:469.938300px;}
.yf9{bottom:479.222250px;}
.y13b{bottom:479.228850px;}
.y4c{bottom:479.363850px;}
.y77{bottom:479.513850px;}
.yaa{bottom:479.514000px;}
.yca{bottom:479.529000px;}
.y11a{bottom:484.490850px;}
.y17a{bottom:484.938300px;}
.y19{bottom:490.838550px;}
.yf8{bottom:497.222250px;}
.y4b{bottom:497.363850px;}
.y76{bottom:497.513850px;}
.ya9{bottom:497.514000px;}
.yc9{bottom:497.529000px;}
.y179{bottom:499.938300px;}
.y119{bottom:500.738850px;}
.y178{bottom:514.938300px;}
.yf7{bottom:515.222250px;}
.y4a{bottom:515.363850px;}
.y75{bottom:515.513850px;}
.ya8{bottom:515.514000px;}
.yc8{bottom:515.529000px;}
.y18{bottom:523.694550px;}
.y118{bottom:529.742850px;}
.y177{bottom:529.938300px;}
.yf6{bottom:533.222250px;}
.y49{bottom:533.363850px;}
.y74{bottom:533.513850px;}
.ya7{bottom:533.514000px;}
.yc7{bottom:533.529000px;}
.y17{bottom:538.694550px;}
.y176{bottom:544.938300px;}
.yf5{bottom:551.222250px;}
.y48{bottom:551.363850px;}
.y73{bottom:551.513850px;}
.ya6{bottom:551.514000px;}
.yc6{bottom:551.529000px;}
.y16{bottom:553.694550px;}
.y175{bottom:559.938300px;}
.y117{bottom:561.254850px;}
.y15{bottom:568.694550px;}
.yf4{bottom:569.222250px;}
.y47{bottom:569.363850px;}
.y72{bottom:569.513850px;}
.ya5{bottom:569.514000px;}
.yc5{bottom:569.529000px;}
.y174{bottom:574.938300px;}
.y14{bottom:583.694550px;}
.yf3{bottom:587.222250px;}
.y46{bottom:587.363850px;}
.y71{bottom:587.513850px;}
.ya4{bottom:587.514000px;}
.yc4{bottom:587.529000px;}
.y173{bottom:589.938300px;}
.y116{bottom:596.078850px;}
.y13{bottom:598.694550px;}
.y172{bottom:604.938300px;}
.yf2{bottom:605.222250px;}
.y45{bottom:605.363850px;}
.y70{bottom:605.513850px;}
.ya3{bottom:605.514000px;}
.yc3{bottom:605.529000px;}
.y12{bottom:613.694550px;}
.y115{bottom:615.578850px;}
.y171{bottom:619.938300px;}
.yf1{bottom:623.222250px;}
.y44{bottom:623.363850px;}
.y6f{bottom:623.513850px;}
.ya2{bottom:623.514000px;}
.yc2{bottom:623.529000px;}
.y11{bottom:628.694550px;}
.y170{bottom:634.938300px;}
.yf0{bottom:641.222250px;}
.y43{bottom:641.363850px;}
.y6e{bottom:641.513850px;}
.yc1{bottom:641.529000px;}
.y10{bottom:643.694550px;}
.y16f{bottom:649.938300px;}
.yf{bottom:658.694550px;}
.yef{bottom:659.222250px;}
.y42{bottom:659.363850px;}
.y6d{bottom:659.513850px;}
.ya1{bottom:659.514000px;}
.yc0{bottom:659.529000px;}
.y16e{bottom:664.938300px;}
.ye{bottom:673.694550px;}
.yee{bottom:677.222250px;}
.y41{bottom:677.363850px;}
.y6c{bottom:677.513850px;}
.ybf{bottom:677.529000px;}
.y16d{bottom:679.938300px;}
.yd{bottom:688.694550px;}
.y16c{bottom:694.938300px;}
.yed{bottom:695.222250px;}
.y40{bottom:695.363850px;}
.ya0{bottom:695.364000px;}
.y6b{bottom:695.513850px;}
.ybe{bottom:695.529000px;}
.yc{bottom:703.694550px;}
.y16b{bottom:709.938300px;}
.yec{bottom:713.222250px;}
.y3f{bottom:713.363850px;}
.y9f{bottom:713.364000px;}
.y6a{bottom:713.513850px;}
.ybd{bottom:713.529000px;}
.y16a{bottom:724.938300px;}
.yeb{bottom:731.222250px;}
.y3e{bottom:731.363850px;}
.y9e{bottom:731.364000px;}
.y69{bottom:731.513850px;}
.ybc{bottom:731.529000px;}
.y169{bottom:739.938300px;}
.yea{bottom:749.222250px;}
.y3d{bottom:749.363850px;}
.y9d{bottom:749.364000px;}
.y68{bottom:749.513850px;}
.ybb{bottom:749.529000px;}
.yb{bottom:752.402550px;}
.y168{bottom:754.938300px;}
.ya{bottom:766.839000px;}
.ye9{bottom:767.222250px;}
.y3c{bottom:767.363850px;}
.y9c{bottom:767.364000px;}
.y67{bottom:767.513850px;}
.yba{bottom:767.529000px;}
.y167{bottom:769.938300px;}
.y166{bottom:784.938300px;}
.ye8{bottom:785.222250px;}
.y3b{bottom:785.363850px;}
.y9b{bottom:785.364000px;}
.y66{bottom:785.513850px;}
.yb9{bottom:785.529000px;}
.y9{bottom:793.994550px;}
.y165{bottom:799.938300px;}
.ye7{bottom:803.222250px;}
.y3a{bottom:803.363850px;}
.y9a{bottom:803.364000px;}
.y65{bottom:803.513850px;}
.yb8{bottom:803.529000px;}
.y164{bottom:814.938300px;}
.ye6{bottom:821.222250px;}
.y39{bottom:821.363850px;}
.y99{bottom:821.364000px;}
.y64{bottom:821.513850px;}
.yb7{bottom:821.529000px;}
.y163{bottom:829.938300px;}
.y8{bottom:832.612500px;}
.ye5{bottom:839.222250px;}
.y108{bottom:839.357250px;}
.y38{bottom:839.363850px;}
.y98{bottom:839.364000px;}
.y63{bottom:839.513850px;}
.yb6{bottom:839.529000px;}
.y162{bottom:844.938300px;}
.y7{bottom:844.994550px;}
.ye4{bottom:857.229000px;}
.y107{bottom:857.357250px;}
.y37{bottom:857.363850px;}
.y97{bottom:857.364000px;}
.y62{bottom:857.513850px;}
.yb5{bottom:857.529000px;}
.y161{bottom:859.938300px;}
.y6{bottom:865.612500px;}
.y160{bottom:874.938300px;}
.ye3{bottom:875.229000px;}
.y106{bottom:875.357250px;}
.y36{bottom:875.363850px;}
.y96{bottom:875.364000px;}
.y61{bottom:875.513850px;}
.yb4{bottom:875.529000px;}
.y5{bottom:880.879800px;}
.y15f{bottom:889.938300px;}
.ye2{bottom:893.229000px;}
.y105{bottom:893.357250px;}
.y35{bottom:893.363850px;}
.y95{bottom:893.364000px;}
.y60{bottom:893.513850px;}
.yb3{bottom:893.529000px;}
.y15e{bottom:904.938300px;}
.y4{bottom:908.269200px;}
.ye1{bottom:911.229000px;}
.y104{bottom:911.357250px;}
.y34{bottom:911.363850px;}
.y94{bottom:911.364000px;}
.yb2{bottom:911.529000px;}
.y15d{bottom:919.938300px;}
.ye0{bottom:929.229000px;}
.y103{bottom:929.357250px;}
.y33{bottom:929.363850px;}
.y93{bottom:929.364000px;}
.y5f{bottom:929.513850px;}
.yb1{bottom:929.529000px;}
.y15c{bottom:934.938300px;}
.y3{bottom:935.275200px;}
.ydf{bottom:947.229000px;}
.y102{bottom:947.357250px;}
.y32{bottom:947.363850px;}
.y92{bottom:947.364000px;}
.yb0{bottom:947.529000px;}
.y15b{bottom:949.938300px;}
.y15a{bottom:964.938300px;}
.y101{bottom:965.357250px;}
.y31{bottom:965.363850px;}
.y91{bottom:965.364000px;}
.yaf{bottom:965.529000px;}
.y159{bottom:979.938300px;}
.y2{bottom:979.943400px;}
.yde{bottom:983.229000px;}
.y100{bottom:983.357250px;}
.y30{bottom:983.363850px;}
.y90{bottom:983.364000px;}
.y158{bottom:994.938300px;}
.yff{bottom:1001.357250px;}
.y2f{bottom:1001.363850px;}
.y8f{bottom:1001.364000px;}
.yae{bottom:1001.529000px;}
.y157{bottom:1009.938300px;}
.yfe{bottom:1019.357250px;}
.y2e{bottom:1019.363850px;}
.y8e{bottom:1019.364000px;}
.y156{bottom:1024.938300px;}
.yfd{bottom:1037.357250px;}
.y2d{bottom:1037.363850px;}
.y8d{bottom:1037.364000px;}
.yad{bottom:1037.379000px;}
.y155{bottom:1039.938300px;}
.y2a{bottom:1070.769450px;}
.y8c{bottom:1086.066450px;}
.y29{bottom:1086.069450px;}
.h6{height:20.995312px;}
.h2{height:30.618164px;}
.h10{height:34.945312px;}
.h7{height:34.992188px;}
.h9{height:41.674350px;}
.h8{height:41.718750px;}
.ha{height:43.681641px;}
.hd{height:43.740234px;}
.hc{height:44.326172px;}
.he{height:50.528437px;}
.h5{height:51.523955px;}
.hf{height:52.121437px;}
.hb{height:52.148438px;}
.h3{height:52.417969px;}
.h4{height:61.154297px;}
.h1{height:1190.250000px;}
.h0{height:1190.551500px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xa{left:76.535400px;}
.x17{left:78.661350px;}
.x8{left:96.094500px;}
.x1{left:97.795200px;}
.x13{left:99.921300px;}
.x20{left:106.295400px;}
.xb{left:110.555400px;}
.x3{left:125.431650px;}
.x1e{left:127.559100px;}
.x6{left:131.816400px;}
.xc{left:144.725400px;}
.x4{left:161.571600px;}
.x1b{left:190.130400px;}
.x15{left:211.100400px;}
.x5{left:212.876400px;}
.x19{left:424.401300px;}
.x1a{left:425.421300px;}
.x18{left:428.397300px;}
.x9{left:455.041500px;}
.xd{left:457.085400px;}
.x11{left:478.345350px;}
.x7{left:480.476400px;}
.x1d{left:486.846600px;}
.xe{left:491.105400px;}
.x1f{left:507.995100px;}
.x12{left:512.365350px;}
.x1c{left:574.836600px;}
.x16{left:579.422100px;}
.x10{left:663.492300px;}
.x2{left:704.338650px;}
.xf{left:731.312100px;}
.x14{left:752.571900px;}
@media print{
.v2{vertical-align:-14.641600pt;}
.v4{vertical-align:-3.026133pt;}
.v7{vertical-align:-1.440000pt;}
.v0{vertical-align:0.000000pt;}
.v6{vertical-align:1.440000pt;}
.v5{vertical-align:3.026133pt;}
.v9{vertical-align:14.645867pt;}
.v3{vertical-align:18.277867pt;}
.v1{vertical-align:20.138133pt;}
.v8{vertical-align:21.344000pt;}
.ls55{letter-spacing:-1.973333pt;}
.ls1b{letter-spacing:-0.640000pt;}
.ls47{letter-spacing:-0.426667pt;}
.ls82{letter-spacing:-0.128000pt;}
.ls46{letter-spacing:-0.106667pt;}
.ls84{letter-spacing:-0.085333pt;}
.ls1d{letter-spacing:-0.053333pt;}
.ls1c{letter-spacing:-0.042667pt;}
.ls1a{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.002133pt;}
.ls1{letter-spacing:0.004267pt;}
.ls3c{letter-spacing:0.004800pt;}
.ls0{letter-spacing:0.005333pt;}
.ls44{letter-spacing:0.031467pt;}
.ls68{letter-spacing:0.042667pt;}
.lsc{letter-spacing:0.053333pt;}
.ls65{letter-spacing:0.085333pt;}
.ls36{letter-spacing:0.106667pt;}
.ls6e{letter-spacing:0.128000pt;}
.ls53{letter-spacing:0.160000pt;}
.ls73{letter-spacing:0.170667pt;}
.ls4{letter-spacing:0.213333pt;}
.ls6{letter-spacing:0.256000pt;}
.ls3b{letter-spacing:0.266667pt;}
.ls79{letter-spacing:0.298667pt;}
.ls14{letter-spacing:0.320000pt;}
.ls72{letter-spacing:0.341333pt;}
.ls50{letter-spacing:0.373333pt;}
.ls76{letter-spacing:0.384000pt;}
.ls2c{letter-spacing:0.426667pt;}
.ls74{letter-spacing:0.469333pt;}
.ls2e{letter-spacing:0.480000pt;}
.ls5{letter-spacing:0.512000pt;}
.ls17{letter-spacing:0.533333pt;}
.ls6f{letter-spacing:0.554667pt;}
.ls45{letter-spacing:0.586667pt;}
.ls6b{letter-spacing:0.597333pt;}
.ls3{letter-spacing:0.640000pt;}
.ls42{letter-spacing:0.672000pt;}
.ls85{letter-spacing:0.682667pt;}
.ls40{letter-spacing:0.683733pt;}
.ls41{letter-spacing:0.684267pt;}
.ls28{letter-spacing:0.693333pt;}
.ls43{letter-spacing:0.696000pt;}
.ls64{letter-spacing:0.725333pt;}
.ls3e{letter-spacing:0.746667pt;}
.ls57{letter-spacing:0.756267pt;}
.ls22{letter-spacing:0.800000pt;}
.ls77{letter-spacing:0.810667pt;}
.ls5d{letter-spacing:0.832000pt;}
.ls26{letter-spacing:0.853333pt;}
.ls39{letter-spacing:0.906667pt;}
.ls70{letter-spacing:0.938667pt;}
.ls15{letter-spacing:0.960000pt;}
.ls25{letter-spacing:1.013333pt;}
.ls6a{letter-spacing:1.024000pt;}
.ls18{letter-spacing:1.066667pt;}
.ls6d{letter-spacing:1.109333pt;}
.ls3f{letter-spacing:1.120000pt;}
.ls81{letter-spacing:1.152000pt;}
.ls13{letter-spacing:1.173333pt;}
.ls7b{letter-spacing:1.194667pt;}
.ls9{letter-spacing:1.226667pt;}
.ls19{letter-spacing:1.280000pt;}
.ls7d{letter-spacing:1.322667pt;}
.ls2f{letter-spacing:1.333333pt;}
.ls7a{letter-spacing:1.365333pt;}
.ls27{letter-spacing:1.386667pt;}
.ls37{letter-spacing:1.440000pt;}
.ls7f{letter-spacing:1.450667pt;}
.ls38{letter-spacing:1.493333pt;}
.ls78{letter-spacing:1.536000pt;}
.ls1f{letter-spacing:1.546667pt;}
.ls7e{letter-spacing:1.578667pt;}
.ls2d{letter-spacing:1.600000pt;}
.ls88{letter-spacing:1.621333pt;}
.ls21{letter-spacing:1.653333pt;}
.ls86{letter-spacing:1.664000pt;}
.ls34{letter-spacing:1.706667pt;}
.ls62{letter-spacing:1.749333pt;}
.ls30{letter-spacing:1.760000pt;}
.ls63{letter-spacing:1.792000pt;}
.lsd{letter-spacing:1.813333pt;}
.ls4b{letter-spacing:1.866667pt;}
.ls67{letter-spacing:1.877333pt;}
.ls58{letter-spacing:1.920000pt;}
.ls11{letter-spacing:1.973333pt;}
.ls87{letter-spacing:2.005333pt;}
.ls4a{letter-spacing:2.026667pt;}
.ls83{letter-spacing:2.048000pt;}
.ls5e{letter-spacing:2.080000pt;}
.ls24{letter-spacing:2.133333pt;}
.ls8{letter-spacing:2.186667pt;}
.ls16{letter-spacing:2.240000pt;}
.ls7c{letter-spacing:2.261333pt;}
.ls31{letter-spacing:2.293333pt;}
.ls4e{letter-spacing:2.346667pt;}
.ls2a{letter-spacing:2.400000pt;}
.ls49{letter-spacing:2.453333pt;}
.ls29{letter-spacing:2.506667pt;}
.ls32{letter-spacing:2.560000pt;}
.ls71{letter-spacing:2.602667pt;}
.ls5a{letter-spacing:2.613333pt;}
.ls69{letter-spacing:2.645333pt;}
.lse{letter-spacing:2.666667pt;}
.ls6c{letter-spacing:2.688000pt;}
.ls3d{letter-spacing:2.720000pt;}
.ls5f{letter-spacing:2.773333pt;}
.ls7{letter-spacing:2.826667pt;}
.ls51{letter-spacing:2.880000pt;}
.ls20{letter-spacing:2.933333pt;}
.lsa{letter-spacing:2.986667pt;}
.ls5b{letter-spacing:3.040000pt;}
.ls12{letter-spacing:3.093333pt;}
.ls10{letter-spacing:3.146667pt;}
.ls52{letter-spacing:3.200000pt;}
.ls35{letter-spacing:3.253333pt;}
.ls23{letter-spacing:3.306667pt;}
.ls60{letter-spacing:3.413333pt;}
.ls66{letter-spacing:3.541333pt;}
.ls59{letter-spacing:3.680000pt;}
.ls80{letter-spacing:3.712000pt;}
.lsf{letter-spacing:3.733333pt;}
.ls33{letter-spacing:3.786667pt;}
.ls4f{letter-spacing:3.840000pt;}
.ls75{letter-spacing:3.882667pt;}
.ls61{letter-spacing:3.946667pt;}
.lsb{letter-spacing:4.053333pt;}
.ls3a{letter-spacing:4.320000pt;}
.ls2b{letter-spacing:4.480000pt;}
.ls1e{letter-spacing:4.640000pt;}
.ls54{letter-spacing:4.693333pt;}
.ls4c{letter-spacing:4.800000pt;}
.ls4d{letter-spacing:5.226667pt;}
.ls56{letter-spacing:5.920000pt;}
.ls48{letter-spacing:6.026667pt;}
.ls5c{letter-spacing:569.984000pt;}
.ws22{word-spacing:-53.333333pt;}
.ws71{word-spacing:-17.120000pt;}
.ws20{word-spacing:-14.826667pt;}
.ws4c{word-spacing:-14.400000pt;}
.ws8e{word-spacing:-13.397333pt;}
.ws8d{word-spacing:-13.141333pt;}
.ws23{word-spacing:-12.602667pt;}
.ws2{word-spacing:-11.861333pt;}
.ws8f{word-spacing:-11.776000pt;}
.ws0{word-spacing:-9.785600pt;}
.ws21{word-spacing:-8.896000pt;}
.ws1{word-spacing:-7.116800pt;}
.ws4a{word-spacing:-6.026667pt;}
.ws6a{word-spacing:-5.920000pt;}
.ws5c{word-spacing:-5.226667pt;}
.ws5b{word-spacing:-4.800000pt;}
.ws5f{word-spacing:-4.693333pt;}
.ws24{word-spacing:-4.640000pt;}
.ws30{word-spacing:-4.480000pt;}
.ws42{word-spacing:-4.320000pt;}
.ws10{word-spacing:-4.053333pt;}
.ws7e{word-spacing:-3.946667pt;}
.ws9b{word-spacing:-3.882667pt;}
.ws60{word-spacing:-3.840000pt;}
.ws3a{word-spacing:-3.786667pt;}
.ws14{word-spacing:-3.733333pt;}
.wsab{word-spacing:-3.712000pt;}
.ws6d{word-spacing:-3.680000pt;}
.ws83{word-spacing:-3.541333pt;}
.ws7d{word-spacing:-3.413333pt;}
.ws29{word-spacing:-3.306667pt;}
.ws3d{word-spacing:-3.253333pt;}
.ws57{word-spacing:-3.200000pt;}
.ws15{word-spacing:-3.146667pt;}
.ws17{word-spacing:-3.093333pt;}
.ws6f{word-spacing:-3.040000pt;}
.wsf{word-spacing:-2.986667pt;}
.ws26{word-spacing:-2.933333pt;}
.ws62{word-spacing:-2.880000pt;}
.wsc{word-spacing:-2.826667pt;}
.ws7c{word-spacing:-2.773333pt;}
.ws44{word-spacing:-2.720000pt;}
.ws8a{word-spacing:-2.688000pt;}
.ws13{word-spacing:-2.666667pt;}
.ws89{word-spacing:-2.645333pt;}
.ws6e{word-spacing:-2.613333pt;}
.ws96{word-spacing:-2.602667pt;}
.ws39{word-spacing:-2.560000pt;}
.ws2e{word-spacing:-2.506667pt;}
.ws56{word-spacing:-2.453333pt;}
.ws2f{word-spacing:-2.400000pt;}
.ws4{word-spacing:-2.368000pt;}
.ws5d{word-spacing:-2.346667pt;}
.ws38{word-spacing:-2.293333pt;}
.wsa7{word-spacing:-2.261333pt;}
.ws1b{word-spacing:-2.240000pt;}
.wsd{word-spacing:-2.186667pt;}
.ws2a{word-spacing:-2.133333pt;}
.ws70{word-spacing:-2.080000pt;}
.ws9a{word-spacing:-2.048000pt;}
.ws58{word-spacing:-2.026667pt;}
.wsb0{word-spacing:-2.005333pt;}
.ws16{word-spacing:-1.973333pt;}
.ws6{word-spacing:-1.920000pt;}
.ws85{word-spacing:-1.877333pt;}
.ws5a{word-spacing:-1.866667pt;}
.ws12{word-spacing:-1.813333pt;}
.ws36{word-spacing:-1.760000pt;}
.ws7f{word-spacing:-1.749333pt;}
.ws3b{word-spacing:-1.706667pt;}
.wsaf{word-spacing:-1.664000pt;}
.ws27{word-spacing:-1.653333pt;}
.wsb1{word-spacing:-1.621333pt;}
.ws33{word-spacing:-1.600000pt;}
.wsa9{word-spacing:-1.578667pt;}
.ws25{word-spacing:-1.546667pt;}
.ws9f{word-spacing:-1.536000pt;}
.ws40{word-spacing:-1.493333pt;}
.wsaa{word-spacing:-1.450667pt;}
.ws3f{word-spacing:-1.440000pt;}
.ws2d{word-spacing:-1.386667pt;}
.wsa4{word-spacing:-1.365333pt;}
.ws35{word-spacing:-1.333333pt;}
.wsa8{word-spacing:-1.322667pt;}
.ws1e{word-spacing:-1.280000pt;}
.wse{word-spacing:-1.226667pt;}
.wsa5{word-spacing:-1.194667pt;}
.ws18{word-spacing:-1.173333pt;}
.wsac{word-spacing:-1.152000pt;}
.ws48{word-spacing:-1.120000pt;}
.ws90{word-spacing:-1.109333pt;}
.ws1d{word-spacing:-1.066667pt;}
.ws8b{word-spacing:-1.024000pt;}
.ws2b{word-spacing:-1.013333pt;}
.ws1a{word-spacing:-0.960000pt;}
.ws95{word-spacing:-0.938667pt;}
.ws41{word-spacing:-0.906667pt;}
.ws2c{word-spacing:-0.853333pt;}
.ws6b{word-spacing:-0.832000pt;}
.ws9e{word-spacing:-0.810667pt;}
.ws28{word-spacing:-0.800000pt;}
.ws45{word-spacing:-0.746667pt;}
.ws80{word-spacing:-0.725333pt;}
.ws3c{word-spacing:-0.693333pt;}
.wsad{word-spacing:-0.682667pt;}
.ws8{word-spacing:-0.640000pt;}
.ws8c{word-spacing:-0.597333pt;}
.ws4b{word-spacing:-0.586667pt;}
.ws94{word-spacing:-0.554667pt;}
.ws1c{word-spacing:-0.533333pt;}
.wsa{word-spacing:-0.512000pt;}
.ws34{word-spacing:-0.480000pt;}
.ws99{word-spacing:-0.469333pt;}
.ws32{word-spacing:-0.426667pt;}
.ws9d{word-spacing:-0.384000pt;}
.ws61{word-spacing:-0.373333pt;}
.ws98{word-spacing:-0.341333pt;}
.ws19{word-spacing:-0.320000pt;}
.wsa3{word-spacing:-0.298667pt;}
.ws43{word-spacing:-0.266667pt;}
.wsb{word-spacing:-0.256000pt;}
.ws9{word-spacing:-0.213333pt;}
.ws91{word-spacing:-0.170667pt;}
.ws5e{word-spacing:-0.160000pt;}
.ws92{word-spacing:-0.128000pt;}
.ws3e{word-spacing:-0.106667pt;}
.ws81{word-spacing:-0.085333pt;}
.ws11{word-spacing:-0.053333pt;}
.ws88{word-spacing:-0.042667pt;}
.ws3{word-spacing:0.000000pt;}
.wsa2{word-spacing:0.042667pt;}
.ws1f{word-spacing:0.053333pt;}
.wsa0{word-spacing:0.085333pt;}
.ws31{word-spacing:0.106667pt;}
.ws97{word-spacing:0.128000pt;}
.ws7{word-spacing:0.384000pt;}
.ws5{word-spacing:0.426667pt;}
.ws9c{word-spacing:0.725333pt;}
.ws6c{word-spacing:0.800000pt;}
.wsa1{word-spacing:1.066667pt;}
.ws84{word-spacing:1.536000pt;}
.ws63{word-spacing:1.973333pt;}
.ws47{word-spacing:2.666667pt;}
.wsb2{word-spacing:2.773333pt;}
.ws7b{word-spacing:3.040000pt;}
.ws46{word-spacing:3.573333pt;}
.ws86{word-spacing:3.626667pt;}
.ws93{word-spacing:3.797333pt;}
.ws82{word-spacing:3.882667pt;}
.ws87{word-spacing:3.925333pt;}
.wsae{word-spacing:4.608000pt;}
.ws59{word-spacing:4.853333pt;}
.ws37{word-spacing:4.906667pt;}
.wsa6{word-spacing:5.077333pt;}
.ws49{word-spacing:6.026667pt;}
.ws4e{word-spacing:174.293333pt;}
.ws53{word-spacing:176.938667pt;}
.ws52{word-spacing:188.501333pt;}
.ws54{word-spacing:191.146667pt;}
.ws50{word-spacing:193.280000pt;}
.ws55{word-spacing:200.362667pt;}
.ws51{word-spacing:207.488000pt;}
.ws4f{word-spacing:207.530667pt;}
.ws64{word-spacing:288.512000pt;}
.ws7a{word-spacing:334.592000pt;}
.ws74{word-spacing:346.794667pt;}
.ws78{word-spacing:348.373333pt;}
.ws75{word-spacing:351.445333pt;}
.ws77{word-spacing:354.602667pt;}
.ws73{word-spacing:358.656000pt;}
.ws65{word-spacing:384.597333pt;}
.ws68{word-spacing:495.232000pt;}
.ws67{word-spacing:543.829333pt;}
.ws4d{word-spacing:665.856000pt;}
.ws72{word-spacing:694.442667pt;}
.ws66{word-spacing:732.416000pt;}
.ws69{word-spacing:754.858667pt;}
.ws79{word-spacing:823.680000pt;}
.ws76{word-spacing:830.848000pt;}
._d{margin-left:-2576.112000pt;}
._27{margin-left:-2554.941333pt;}
._f{margin-left:-6.336000pt;}
._1{margin-left:-4.778667pt;}
._2{margin-left:-3.181333pt;}
._0{margin-left:-2.053333pt;}
._7{margin-left:-1.000000pt;}
._5{width:1.365333pt;}
._4{width:2.261333pt;}
._6{width:3.669333pt;}
._3{width:4.565333pt;}
._9{width:5.493333pt;}
._a{width:6.506667pt;}
._8{width:7.680000pt;}
._b{width:8.586667pt;}
._c{width:9.706667pt;}
._e{width:10.706667pt;}
._2b{width:53.717333pt;}
._2a{width:54.786133pt;}
._29{width:75.520000pt;}
._28{width:87.040000pt;}
._2d{width:178.816000pt;}
._2c{width:187.349333pt;}
._18{width:188.800000pt;}
._2e{width:190.677333pt;}
._10{width:198.040000pt;}
._12{width:200.362667pt;}
._1c{width:203.008000pt;}
._19{width:205.141333pt;}
._15{width:214.869333pt;}
._1f{width:219.349333pt;}
._22{width:248.106667pt;}
._25{width:256.426667pt;}
._24{width:288.170667pt;}
._34{width:289.536000pt;}
._33{width:342.101333pt;}
._2f{width:343.210667pt;}
._3c{width:358.656000pt;}
._3e{width:359.832000pt;}
._36{width:363.306667pt;}
._39{width:370.517333pt;}
._26{width:395.904000pt;}
._30{width:508.330667pt;}
._35{width:524.928000pt;}
._20{width:529.877333pt;}
._1e{width:567.850667pt;}
._17{width:572.586667pt;}
._1a{width:586.794667pt;}
._1b{width:610.560000pt;}
._3b{width:615.125333pt;}
._16{width:620.032000pt;}
._13{width:624.810667pt;}
._11{width:627.157333pt;}
._1d{width:641.365333pt;}
._14{width:643.754667pt;}
._21{width:648.154667pt;}
._37{width:653.013333pt;}
._23{width:666.240000pt;}
._32{width:759.594667pt;}
._31{width:778.538667pt;}
._38{width:828.501333pt;}
._3a{width:840.362667pt;}
._3d{width:842.709333pt;}
.fs5{font-size:25.600000pt;}
.fs9{font-size:32.000000pt;}
.fs4{font-size:35.200000pt;}
.fs0{font-size:37.333333pt;}
.fs6{font-size:42.666667pt;}
.fs8{font-size:45.333333pt;}
.fs7{font-size:53.333333pt;}
.fs3{font-size:58.666667pt;}
.fs1{font-size:64.000000pt;}
.fs2{font-size:74.666667pt;}
.y0{bottom:0.000000pt;}
.y2c{bottom:44.904000pt;}
.y1{bottom:73.250400pt;}
.y13a{bottom:73.981200pt;}
.y5e{bottom:74.101200pt;}
.y2b{bottom:74.216800pt;}
.y8b{bottom:74.360533pt;}
.y154{bottom:76.263733pt;}
.y12f{bottom:81.997200pt;}
.ydd{bottom:82.052800pt;}
.y114{bottom:82.280667pt;}
.y194{bottom:84.389600pt;}
.y153{bottom:89.597067pt;}
.y139{bottom:89.981200pt;}
.y5d{bottom:90.101200pt;}
.y12e{bottom:96.439867pt;}
.ydc{bottom:96.495467pt;}
.y113{bottom:96.723333pt;}
.y193{bottom:97.722933pt;}
.y152{bottom:102.930400pt;}
.y138{bottom:105.981200pt;}
.y5c{bottom:106.101200pt;}
.y8a{bottom:106.360533pt;}
.y1a{bottom:108.011733pt;}
.y12d{bottom:110.882533pt;}
.ydb{bottom:110.938133pt;}
.y192{bottom:111.056267pt;}
.y112{bottom:111.166000pt;}
.y151{bottom:116.263733pt;}
.y137{bottom:121.981200pt;}
.y5b{bottom:122.101200pt;}
.y191{bottom:124.389600pt;}
.y12c{bottom:125.325200pt;}
.yda{bottom:125.380800pt;}
.y150{bottom:129.597067pt;}
.y190{bottom:137.722933pt;}
.y136{bottom:137.981200pt;}
.y5a{bottom:138.101200pt;}
.y89{bottom:138.227200pt;}
.y111{bottom:139.176667pt;}
.y12b{bottom:139.767867pt;}
.yd9{bottom:139.834133pt;}
.y14f{bottom:142.930400pt;}
.y18f{bottom:151.056267pt;}
.y135{bottom:153.981200pt;}
.y59{bottom:154.101200pt;}
.y12a{bottom:154.221200pt;}
.y88{bottom:154.227200pt;}
.yd8{bottom:154.287467pt;}
.y14e{bottom:156.263733pt;}
.y27{bottom:159.647867pt;}
.y18e{bottom:164.389600pt;}
.y129{bottom:168.663867pt;}
.yd7{bottom:168.740800pt;}
.y14d{bottom:169.597067pt;}
.y134{bottom:169.981200pt;}
.y58{bottom:170.101200pt;}
.y110{bottom:170.125467pt;}
.y87{bottom:170.227200pt;}
.y26{bottom:175.647867pt;}
.y18d{bottom:177.722933pt;}
.y14c{bottom:182.930400pt;}
.yd6{bottom:183.183467pt;}
.y133{bottom:185.981200pt;}
.y86{bottom:186.227200pt;}
.y10f{bottom:187.458800pt;}
.y18c{bottom:191.056267pt;}
.y25{bottom:191.647867pt;}
.y128{bottom:194.445200pt;}
.y14b{bottom:196.263733pt;}
.yd5{bottom:197.626133pt;}
.y132{bottom:201.981200pt;}
.y57{bottom:202.101200pt;}
.y85{bottom:202.227200pt;}
.y18b{bottom:204.389600pt;}
.y24{bottom:207.647867pt;}
.y14a{bottom:209.597067pt;}
.yd4{bottom:212.068800pt;}
.y18a{bottom:217.722933pt;}
.y131{bottom:217.981200pt;}
.y84{bottom:218.587200pt;}
.y127{bottom:220.226533pt;}
.y149{bottom:222.930400pt;}
.y23{bottom:223.647867pt;}
.yd3{bottom:226.522133pt;}
.y189{bottom:231.056267pt;}
.y10e{bottom:232.989333pt;}
.y56{bottom:233.981200pt;}
.y83{bottom:234.227200pt;}
.y126{bottom:234.669200pt;}
.y148{bottom:236.263733pt;}
.y22{bottom:239.647867pt;}
.yd2{bottom:240.964800pt;}
.y188{bottom:244.389600pt;}
.y10d{bottom:247.432000pt;}
.y125{bottom:249.111867pt;}
.y147{bottom:249.597067pt;}
.y130{bottom:249.981200pt;}
.y82{bottom:250.227200pt;}
.yd1{bottom:255.407467pt;}
.y21{bottom:255.647867pt;}
.y187{bottom:257.722933pt;}
.y10c{bottom:261.874667pt;}
.y146{bottom:262.930400pt;}
.y124{bottom:263.554533pt;}
.y81{bottom:266.227200pt;}
.y186{bottom:271.056267pt;}
.y20{bottom:271.647867pt;}
.y145{bottom:276.263733pt;}
.y123{bottom:277.997200pt;}
.y55{bottom:282.101200pt;}
.y80{bottom:282.227200pt;}
.yd0{bottom:283.418133pt;}
.y185{bottom:284.389600pt;}
.y1f{bottom:287.647867pt;}
.y144{bottom:289.597067pt;}
.y10b{bottom:289.885333pt;}
.y122{bottom:292.439867pt;}
.y184{bottom:297.722933pt;}
.y54{bottom:298.101200pt;}
.y7f{bottom:298.227200pt;}
.y143{bottom:302.930400pt;}
.y1e{bottom:303.647867pt;}
.y121{bottom:306.882533pt;}
.y183{bottom:311.056267pt;}
.y53{bottom:314.101200pt;}
.y7e{bottom:314.227200pt;}
.ycf{bottom:314.381333pt;}
.y142{bottom:316.263733pt;}
.y1d{bottom:319.647867pt;}
.y10a{bottom:320.828667pt;}
.y182{bottom:324.389600pt;}
.y141{bottom:329.597067pt;}
.y52{bottom:330.101200pt;}
.y7d{bottom:330.227200pt;}
.yce{bottom:331.714667pt;}
.y120{bottom:332.663867pt;}
.y1c{bottom:335.647867pt;}
.y181{bottom:337.722933pt;}
.y109{bottom:338.162000pt;}
.y140{bottom:342.930400pt;}
.y51{bottom:346.101200pt;}
.y7c{bottom:346.227200pt;}
.ycd{bottom:349.048000pt;}
.y180{bottom:351.056267pt;}
.y28{bottom:351.647867pt;}
.y13f{bottom:356.263733pt;}
.y11f{bottom:358.445200pt;}
.y50{bottom:362.101200pt;}
.y7b{bottom:362.227200pt;}
.y17f{bottom:364.389600pt;}
.y1b{bottom:367.647867pt;}
.y13e{bottom:369.597067pt;}
.y11e{bottom:372.887867pt;}
.y17e{bottom:377.722933pt;}
.yfc{bottom:377.975333pt;}
.y4f{bottom:378.101200pt;}
.y7a{bottom:378.234533pt;}
.y13d{bottom:382.930400pt;}
.y11d{bottom:387.330533pt;}
.y17d{bottom:391.056267pt;}
.yfb{bottom:393.975333pt;}
.y4e{bottom:394.101200pt;}
.y79{bottom:394.234533pt;}
.yac{bottom:394.234667pt;}
.ycc{bottom:394.248000pt;}
.y13c{bottom:396.263733pt;}
.y11c{bottom:401.773200pt;}
.y17c{bottom:404.389600pt;}
.yfa{bottom:409.975333pt;}
.y4d{bottom:410.101200pt;}
.y78{bottom:410.234533pt;}
.yab{bottom:410.234667pt;}
.ycb{bottom:410.248000pt;}
.y11b{bottom:416.215867pt;}
.y17b{bottom:417.722933pt;}
.yf9{bottom:425.975333pt;}
.y13b{bottom:425.981200pt;}
.y4c{bottom:426.101200pt;}
.y77{bottom:426.234533pt;}
.yaa{bottom:426.234667pt;}
.yca{bottom:426.248000pt;}
.y11a{bottom:430.658533pt;}
.y17a{bottom:431.056267pt;}
.y19{bottom:436.300933pt;}
.yf8{bottom:441.975333pt;}
.y4b{bottom:442.101200pt;}
.y76{bottom:442.234533pt;}
.ya9{bottom:442.234667pt;}
.yc9{bottom:442.248000pt;}
.y179{bottom:444.389600pt;}
.y119{bottom:445.101200pt;}
.y178{bottom:457.722933pt;}
.yf7{bottom:457.975333pt;}
.y4a{bottom:458.101200pt;}
.y75{bottom:458.234533pt;}
.ya8{bottom:458.234667pt;}
.yc8{bottom:458.248000pt;}
.y18{bottom:465.506267pt;}
.y118{bottom:470.882533pt;}
.y177{bottom:471.056267pt;}
.yf6{bottom:473.975333pt;}
.y49{bottom:474.101200pt;}
.y74{bottom:474.234533pt;}
.ya7{bottom:474.234667pt;}
.yc7{bottom:474.248000pt;}
.y17{bottom:478.839600pt;}
.y176{bottom:484.389600pt;}
.yf5{bottom:489.975333pt;}
.y48{bottom:490.101200pt;}
.y73{bottom:490.234533pt;}
.ya6{bottom:490.234667pt;}
.yc6{bottom:490.248000pt;}
.y16{bottom:492.172933pt;}
.y175{bottom:497.722933pt;}
.y117{bottom:498.893200pt;}
.y15{bottom:505.506267pt;}
.yf4{bottom:505.975333pt;}
.y47{bottom:506.101200pt;}
.y72{bottom:506.234533pt;}
.ya5{bottom:506.234667pt;}
.yc5{bottom:506.248000pt;}
.y174{bottom:511.056267pt;}
.y14{bottom:518.839600pt;}
.yf3{bottom:521.975333pt;}
.y46{bottom:522.101200pt;}
.y71{bottom:522.234533pt;}
.ya4{bottom:522.234667pt;}
.yc4{bottom:522.248000pt;}
.y173{bottom:524.389600pt;}
.y116{bottom:529.847867pt;}
.y13{bottom:532.172933pt;}
.y172{bottom:537.722933pt;}
.yf2{bottom:537.975333pt;}
.y45{bottom:538.101200pt;}
.y70{bottom:538.234533pt;}
.ya3{bottom:538.234667pt;}
.yc3{bottom:538.248000pt;}
.y12{bottom:545.506267pt;}
.y115{bottom:547.181200pt;}
.y171{bottom:551.056267pt;}
.yf1{bottom:553.975333pt;}
.y44{bottom:554.101200pt;}
.y6f{bottom:554.234533pt;}
.ya2{bottom:554.234667pt;}
.yc2{bottom:554.248000pt;}
.y11{bottom:558.839600pt;}
.y170{bottom:564.389600pt;}
.yf0{bottom:569.975333pt;}
.y43{bottom:570.101200pt;}
.y6e{bottom:570.234533pt;}
.yc1{bottom:570.248000pt;}
.y10{bottom:572.172933pt;}
.y16f{bottom:577.722933pt;}
.yf{bottom:585.506267pt;}
.yef{bottom:585.975333pt;}
.y42{bottom:586.101200pt;}
.y6d{bottom:586.234533pt;}
.ya1{bottom:586.234667pt;}
.yc0{bottom:586.248000pt;}
.y16e{bottom:591.056267pt;}
.ye{bottom:598.839600pt;}
.yee{bottom:601.975333pt;}
.y41{bottom:602.101200pt;}
.y6c{bottom:602.234533pt;}
.ybf{bottom:602.248000pt;}
.y16d{bottom:604.389600pt;}
.yd{bottom:612.172933pt;}
.y16c{bottom:617.722933pt;}
.yed{bottom:617.975333pt;}
.y40{bottom:618.101200pt;}
.ya0{bottom:618.101333pt;}
.y6b{bottom:618.234533pt;}
.ybe{bottom:618.248000pt;}
.yc{bottom:625.506267pt;}
.y16b{bottom:631.056267pt;}
.yec{bottom:633.975333pt;}
.y3f{bottom:634.101200pt;}
.y9f{bottom:634.101333pt;}
.y6a{bottom:634.234533pt;}
.ybd{bottom:634.248000pt;}
.y16a{bottom:644.389600pt;}
.yeb{bottom:649.975333pt;}
.y3e{bottom:650.101200pt;}
.y9e{bottom:650.101333pt;}
.y69{bottom:650.234533pt;}
.ybc{bottom:650.248000pt;}
.y169{bottom:657.722933pt;}
.yea{bottom:665.975333pt;}
.y3d{bottom:666.101200pt;}
.y9d{bottom:666.101333pt;}
.y68{bottom:666.234533pt;}
.ybb{bottom:666.248000pt;}
.yb{bottom:668.802267pt;}
.y168{bottom:671.056267pt;}
.ya{bottom:681.634667pt;}
.ye9{bottom:681.975333pt;}
.y3c{bottom:682.101200pt;}
.y9c{bottom:682.101333pt;}
.y67{bottom:682.234533pt;}
.yba{bottom:682.248000pt;}
.y167{bottom:684.389600pt;}
.y166{bottom:697.722933pt;}
.ye8{bottom:697.975333pt;}
.y3b{bottom:698.101200pt;}
.y9b{bottom:698.101333pt;}
.y66{bottom:698.234533pt;}
.yb9{bottom:698.248000pt;}
.y9{bottom:705.772933pt;}
.y165{bottom:711.056267pt;}
.ye7{bottom:713.975333pt;}
.y3a{bottom:714.101200pt;}
.y9a{bottom:714.101333pt;}
.y65{bottom:714.234533pt;}
.yb8{bottom:714.248000pt;}
.y164{bottom:724.389600pt;}
.ye6{bottom:729.975333pt;}
.y39{bottom:730.101200pt;}
.y99{bottom:730.101333pt;}
.y64{bottom:730.234533pt;}
.yb7{bottom:730.248000pt;}
.y163{bottom:737.722933pt;}
.y8{bottom:740.100000pt;}
.ye5{bottom:745.975333pt;}
.y108{bottom:746.095333pt;}
.y38{bottom:746.101200pt;}
.y98{bottom:746.101333pt;}
.y63{bottom:746.234533pt;}
.yb6{bottom:746.248000pt;}
.y162{bottom:751.056267pt;}
.y7{bottom:751.106267pt;}
.ye4{bottom:761.981333pt;}
.y107{bottom:762.095333pt;}
.y37{bottom:762.101200pt;}
.y97{bottom:762.101333pt;}
.y62{bottom:762.234533pt;}
.yb5{bottom:762.248000pt;}
.y161{bottom:764.389600pt;}
.y6{bottom:769.433333pt;}
.y160{bottom:777.722933pt;}
.ye3{bottom:777.981333pt;}
.y106{bottom:778.095333pt;}
.y36{bottom:778.101200pt;}
.y96{bottom:778.101333pt;}
.y61{bottom:778.234533pt;}
.yb4{bottom:778.248000pt;}
.y5{bottom:783.004267pt;}
.y15f{bottom:791.056267pt;}
.ye2{bottom:793.981333pt;}
.y105{bottom:794.095333pt;}
.y35{bottom:794.101200pt;}
.y95{bottom:794.101333pt;}
.y60{bottom:794.234533pt;}
.yb3{bottom:794.248000pt;}
.y15e{bottom:804.389600pt;}
.y4{bottom:807.350400pt;}
.ye1{bottom:809.981333pt;}
.y104{bottom:810.095333pt;}
.y34{bottom:810.101200pt;}
.y94{bottom:810.101333pt;}
.yb2{bottom:810.248000pt;}
.y15d{bottom:817.722933pt;}
.ye0{bottom:825.981333pt;}
.y103{bottom:826.095333pt;}
.y33{bottom:826.101200pt;}
.y93{bottom:826.101333pt;}
.y5f{bottom:826.234533pt;}
.yb1{bottom:826.248000pt;}
.y15c{bottom:831.056267pt;}
.y3{bottom:831.355733pt;}
.ydf{bottom:841.981333pt;}
.y102{bottom:842.095333pt;}
.y32{bottom:842.101200pt;}
.y92{bottom:842.101333pt;}
.yb0{bottom:842.248000pt;}
.y15b{bottom:844.389600pt;}
.y15a{bottom:857.722933pt;}
.y101{bottom:858.095333pt;}
.y31{bottom:858.101200pt;}
.y91{bottom:858.101333pt;}
.yaf{bottom:858.248000pt;}
.y159{bottom:871.056267pt;}
.y2{bottom:871.060800pt;}
.yde{bottom:873.981333pt;}
.y100{bottom:874.095333pt;}
.y30{bottom:874.101200pt;}
.y90{bottom:874.101333pt;}
.y158{bottom:884.389600pt;}
.yff{bottom:890.095333pt;}
.y2f{bottom:890.101200pt;}
.y8f{bottom:890.101333pt;}
.yae{bottom:890.248000pt;}
.y157{bottom:897.722933pt;}
.yfe{bottom:906.095333pt;}
.y2e{bottom:906.101200pt;}
.y8e{bottom:906.101333pt;}
.y156{bottom:911.056267pt;}
.yfd{bottom:922.095333pt;}
.y2d{bottom:922.101200pt;}
.y8d{bottom:922.101333pt;}
.yad{bottom:922.114667pt;}
.y155{bottom:924.389600pt;}
.y2a{bottom:951.795067pt;}
.y8c{bottom:965.392400pt;}
.y29{bottom:965.395067pt;}
.h6{height:18.662500pt;}
.h2{height:27.216146pt;}
.h10{height:31.062500pt;}
.h7{height:31.104167pt;}
.h9{height:37.043867pt;}
.h8{height:37.083333pt;}
.ha{height:38.828125pt;}
.hd{height:38.880208pt;}
.hc{height:39.401042pt;}
.he{height:44.914167pt;}
.h5{height:45.799071pt;}
.hf{height:46.330167pt;}
.hb{height:46.354167pt;}
.h3{height:46.593750pt;}
.h4{height:54.359375pt;}
.h1{height:1058.000000pt;}
.h0{height:1058.268000pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xa{left:68.031467pt;}
.x17{left:69.921200pt;}
.x8{left:85.417333pt;}
.x1{left:86.929067pt;}
.x13{left:88.818933pt;}
.x20{left:94.484800pt;}
.xb{left:98.271467pt;}
.x3{left:111.494800pt;}
.x1e{left:113.385867pt;}
.x6{left:117.170133pt;}
.xc{left:128.644800pt;}
.x4{left:143.619200pt;}
.x1b{left:169.004800pt;}
.x15{left:187.644800pt;}
.x5{left:189.223467pt;}
.x19{left:377.245600pt;}
.x1a{left:378.152267pt;}
.x18{left:380.797600pt;}
.x9{left:404.481333pt;}
.xd{left:406.298133pt;}
.x11{left:425.195867pt;}
.x7{left:427.090133pt;}
.x1d{left:432.752533pt;}
.xe{left:436.538133pt;}
.x1f{left:451.551200pt;}
.x12{left:455.435867pt;}
.x1c{left:510.965867pt;}
.x16{left:515.041867pt;}
.x10{left:589.770933pt;}
.x2{left:626.078800pt;}
.xf{left:650.055200pt;}
.x14{left:668.952800pt;}
}




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