
    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_8df99284e71033c55ec13ead.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.106934;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_f50b1d5a7fcc8cba38200b64.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_9712075d732e0e88a1006089.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.114258;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_1c07258836f7ce6f7ffa5752.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_176ab77395cef3536e90ae04.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.104492;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_8a79e13bd73888ceccb8ae05.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.104004;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_52b9eb4283e6d05d8c848121.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.091309;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_ece516c7b5fc2d798a879e00.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.091309;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_0776ba52dab08153c118fd96.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_1e80e4d04e9cdc55b299c2db.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_32e3db996db914de19240395.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.913574;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;}
.v3{vertical-align:-11.730000px;}
.v0{vertical-align:0.000000px;}
.v5{vertical-align:1.620000px;}
.v4{vertical-align:28.263000px;}
.v1{vertical-align:30.381600px;}
.ls50{letter-spacing:-7.740000px;}
.ls1b{letter-spacing:-0.780000px;}
.ls57{letter-spacing:-0.420000px;}
.ls1c{letter-spacing:-0.360000px;}
.ls76{letter-spacing:-0.288000px;}
.ls39{letter-spacing:-0.240000px;}
.ls2d{letter-spacing:-0.180000px;}
.ls5a{letter-spacing:-0.144000px;}
.ls43{letter-spacing:-0.120000px;}
.ls75{letter-spacing:-0.096000px;}
.ls1d{letter-spacing:-0.060000px;}
.ls78{letter-spacing:-0.048000px;}
.ls1a{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.004140px;}
.ls77{letter-spacing:0.048000px;}
.ls10{letter-spacing:0.060000px;}
.ls7f{letter-spacing:0.096000px;}
.ls5{letter-spacing:0.120000px;}
.ls6d{letter-spacing:0.144000px;}
.ls25{letter-spacing:0.180000px;}
.ls24{letter-spacing:0.240000px;}
.ls2b{letter-spacing:0.276000px;}
.lse{letter-spacing:0.300000px;}
.ls72{letter-spacing:0.336000px;}
.ls2a{letter-spacing:0.360000px;}
.ls73{letter-spacing:0.384000px;}
.ls32{letter-spacing:0.420000px;}
.ls28{letter-spacing:0.480000px;}
.ls3{letter-spacing:0.540000px;}
.lsf{letter-spacing:0.600000px;}
.ls35{letter-spacing:0.619200px;}
.ls71{letter-spacing:0.624000px;}
.ls1f{letter-spacing:0.660000px;}
.ls38{letter-spacing:0.672000px;}
.lsd{letter-spacing:0.720000px;}
.ls80{letter-spacing:0.768000px;}
.ls19{letter-spacing:0.780000px;}
.ls6a{letter-spacing:0.816000px;}
.ls33{letter-spacing:0.840000px;}
.ls6e{letter-spacing:0.864000px;}
.ls26{letter-spacing:0.900000px;}
.ls4{letter-spacing:0.960000px;}
.ls7a{letter-spacing:1.008000px;}
.ls36{letter-spacing:1.020000px;}
.ls69{letter-spacing:1.056000px;}
.lsc{letter-spacing:1.080000px;}
.ls6f{letter-spacing:1.104000px;}
.ls22{letter-spacing:1.140000px;}
.ls84{letter-spacing:1.152000px;}
.ls1e{letter-spacing:1.200000px;}
.ls13{letter-spacing:1.260000px;}
.ls7c{letter-spacing:1.296000px;}
.ls9{letter-spacing:1.320000px;}
.ls6c{letter-spacing:1.344000px;}
.ls3a{letter-spacing:1.380000px;}
.ls70{letter-spacing:1.392000px;}
.ls2c{letter-spacing:1.440000px;}
.ls15{letter-spacing:1.500000px;}
.ls34{letter-spacing:1.560000px;}
.ls83{letter-spacing:1.584000px;}
.ls12{letter-spacing:1.620000px;}
.ls7d{letter-spacing:1.632000px;}
.ls14{letter-spacing:1.680000px;}
.ls56{letter-spacing:1.740000px;}
.ls3c{letter-spacing:1.800000px;}
.ls20{letter-spacing:1.860000px;}
.lsb{letter-spacing:1.920000px;}
.lsa{letter-spacing:1.980000px;}
.ls7e{letter-spacing:2.016000px;}
.ls2e{letter-spacing:2.040000px;}
.ls29{letter-spacing:2.100000px;}
.ls3d{letter-spacing:2.160000px;}
.ls85{letter-spacing:2.208000px;}
.ls23{letter-spacing:2.220000px;}
.ls7{letter-spacing:2.280000px;}
.ls74{letter-spacing:2.304000px;}
.ls21{letter-spacing:2.340000px;}
.ls59{letter-spacing:2.400000px;}
.ls81{letter-spacing:2.448000px;}
.ls6{letter-spacing:2.460000px;}
.ls79{letter-spacing:2.496000px;}
.ls2f{letter-spacing:2.520000px;}
.ls82{letter-spacing:2.544000px;}
.ls27{letter-spacing:2.580000px;}
.ls7b{letter-spacing:2.592000px;}
.ls16{letter-spacing:2.640000px;}
.ls3b{letter-spacing:2.700000px;}
.ls44{letter-spacing:2.760000px;}
.ls6b{letter-spacing:2.784000px;}
.ls18{letter-spacing:2.820000px;}
.ls52{letter-spacing:2.880000px;}
.ls40{letter-spacing:2.940000px;}
.ls31{letter-spacing:3.000000px;}
.ls8{letter-spacing:3.060000px;}
.ls58{letter-spacing:3.180000px;}
.ls4c{letter-spacing:3.240000px;}
.ls5f{letter-spacing:3.300000px;}
.ls17{letter-spacing:3.360000px;}
.ls47{letter-spacing:3.420000px;}
.ls30{letter-spacing:3.480000px;}
.ls5e{letter-spacing:3.600000px;}
.ls11{letter-spacing:3.660000px;}
.ls42{letter-spacing:3.780000px;}
.ls3e{letter-spacing:3.840000px;}
.ls45{letter-spacing:3.900000px;}
.ls41{letter-spacing:4.080000px;}
.ls4d{letter-spacing:4.200000px;}
.ls62{letter-spacing:4.260000px;}
.ls5c{letter-spacing:4.380000px;}
.ls4e{letter-spacing:4.440000px;}
.ls46{letter-spacing:4.500000px;}
.ls55{letter-spacing:4.740000px;}
.ls64{letter-spacing:4.980000px;}
.ls5b{letter-spacing:5.040000px;}
.ls51{letter-spacing:5.100000px;}
.ls54{letter-spacing:5.160000px;}
.ls53{letter-spacing:5.220000px;}
.ls66{letter-spacing:5.280000px;}
.ls67{letter-spacing:5.340000px;}
.ls5d{letter-spacing:5.520000px;}
.ls4b{letter-spacing:5.760000px;}
.ls4f{letter-spacing:5.880000px;}
.ls4a{letter-spacing:5.940000px;}
.ls48{letter-spacing:6.060000px;}
.ls37{letter-spacing:6.300000px;}
.ls60{letter-spacing:6.600000px;}
.ls65{letter-spacing:7.020000px;}
.ls63{letter-spacing:7.380000px;}
.ls68{letter-spacing:7.620000px;}
.ls3f{letter-spacing:7.740000px;}
.ls49{letter-spacing:11.040000px;}
.ls61{letter-spacing:11.520000px;}
.ls1{letter-spacing:59.532876px;}
.ls0{letter-spacing:59.537400px;}
.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;}
}
.ws91{word-spacing:-23.280000px;}
.ws5a{word-spacing:-21.060000px;}
.ws87{word-spacing:-19.380000px;}
.ws47{word-spacing:-18.840000px;}
.ws8e{word-spacing:-18.660000px;}
.ws13{word-spacing:-18.360000px;}
.ws5c{word-spacing:-18.240000px;}
.ws8f{word-spacing:-17.940000px;}
.ws59{word-spacing:-17.760000px;}
.ws61{word-spacing:-17.280000px;}
.ws5e{word-spacing:-17.160000px;}
.ws88{word-spacing:-17.040000px;}
.ws5{word-spacing:-16.920000px;}
.ws90{word-spacing:-16.860000px;}
.ws77{word-spacing:-16.800000px;}
.ws1{word-spacing:-16.680000px;}
.ws2a{word-spacing:-16.620000px;}
.ws74{word-spacing:-16.560000px;}
.ws42{word-spacing:-16.500000px;}
.ws16{word-spacing:-16.440000px;}
.ws60{word-spacing:-16.380000px;}
.ws4{word-spacing:-16.320000px;}
.ws5f{word-spacing:-16.260000px;}
.ws11{word-spacing:-16.200000px;}
.ws41{word-spacing:-16.140000px;}
.ws46{word-spacing:-16.080000px;}
.ws3e{word-spacing:-15.960000px;}
.ws15{word-spacing:-15.900000px;}
.ws43{word-spacing:-15.840000px;}
.ws44{word-spacing:-15.780000px;}
.ws76{word-spacing:-15.720000px;}
.ws12{word-spacing:-15.660000px;}
.ws40{word-spacing:-15.600000px;}
.ws29{word-spacing:-15.540000px;}
.ws3c{word-spacing:-15.480000px;}
.ws3d{word-spacing:-15.420000px;}
.ws75{word-spacing:-15.360000px;}
.ws5d{word-spacing:-15.300000px;}
.ws28{word-spacing:-15.240000px;}
.ws3{word-spacing:-15.120000px;}
.ws3f{word-spacing:-15.060000px;}
.ws14{word-spacing:-15.000000px;}
.ws5b{word-spacing:-14.820000px;}
.wsac{word-spacing:-14.208000px;}
.wsab{word-spacing:-13.584000px;}
.ws45{word-spacing:-13.500000px;}
.ws6{word-spacing:-13.344000px;}
.wsa6{word-spacing:-13.296000px;}
.ws92{word-spacing:-13.104000px;}
.wsa9{word-spacing:-12.816000px;}
.ws2{word-spacing:-12.510000px;}
.ws93{word-spacing:-12.384000px;}
.wsaa{word-spacing:-12.240000px;}
.wsa7{word-spacing:-12.096000px;}
.ws18{word-spacing:-12.000000px;}
.ws94{word-spacing:-11.952000px;}
.wsa8{word-spacing:-11.904000px;}
.ws0{word-spacing:-10.210662px;}
.ws62{word-spacing:-7.260000px;}
.ws95{word-spacing:-3.660000px;}
.ws69{word-spacing:-3.420000px;}
.ws8{word-spacing:-2.886000px;}
.ws9b{word-spacing:-2.784000px;}
.ws99{word-spacing:-2.700000px;}
.wsa1{word-spacing:-2.640000px;}
.ws6e{word-spacing:-2.340000px;}
.ws96{word-spacing:-2.280000px;}
.ws1d{word-spacing:-2.220000px;}
.wsb6{word-spacing:-2.208000px;}
.wsaf{word-spacing:-2.160000px;}
.ws8c{word-spacing:-2.040000px;}
.wsb4{word-spacing:-1.920000px;}
.ws25{word-spacing:-1.860000px;}
.ws4f{word-spacing:-1.680000px;}
.ws36{word-spacing:-1.620000px;}
.wsb3{word-spacing:-1.584000px;}
.ws51{word-spacing:-1.500000px;}
.ws26{word-spacing:-1.440000px;}
.ws33{word-spacing:-1.380000px;}
.ws30{word-spacing:-1.320000px;}
.ws8a{word-spacing:-1.260000px;}
.ws1c{word-spacing:-1.200000px;}
.wsb5{word-spacing:-1.152000px;}
.wsa4{word-spacing:-1.104000px;}
.ws56{word-spacing:-1.080000px;}
.wsae{word-spacing:-1.008000px;}
.ws6a{word-spacing:-0.960000px;}
.ws9f{word-spacing:-0.912000px;}
.wsad{word-spacing:-0.864000px;}
.ws6b{word-spacing:-0.780000px;}
.ws4e{word-spacing:-0.600000px;}
.ws89{word-spacing:-0.540000px;}
.ws20{word-spacing:-0.480000px;}
.ws24{word-spacing:-0.420000px;}
.ws7d{word-spacing:-0.360000px;}
.wsb2{word-spacing:-0.336000px;}
.ws4a{word-spacing:-0.300000px;}
.ws34{word-spacing:-0.240000px;}
.ws9c{word-spacing:-0.144000px;}
.wsc{word-spacing:-0.120000px;}
.ws35{word-spacing:-0.060000px;}
.ws7{word-spacing:0.000000px;}
.wsa5{word-spacing:0.048000px;}
.ws9{word-spacing:0.060000px;}
.ws9d{word-spacing:0.096000px;}
.ws6f{word-spacing:0.120000px;}
.ws86{word-spacing:0.144000px;}
.ws57{word-spacing:0.180000px;}
.wsa2{word-spacing:0.240000px;}
.ws27{word-spacing:0.300000px;}
.ws32{word-spacing:0.360000px;}
.wsa3{word-spacing:0.384000px;}
.ws65{word-spacing:0.420000px;}
.ws23{word-spacing:0.540000px;}
.ws3b{word-spacing:0.576000px;}
.ws68{word-spacing:0.600000px;}
.ws73{word-spacing:0.720000px;}
.ws49{word-spacing:0.840000px;}
.ws7b{word-spacing:0.900000px;}
.ws2e{word-spacing:0.960000px;}
.ws71{word-spacing:1.020000px;}
.ws2d{word-spacing:1.080000px;}
.ws10{word-spacing:1.140000px;}
.ws39{word-spacing:1.200000px;}
.ws9e{word-spacing:1.296000px;}
.wsd{word-spacing:1.320000px;}
.ws8d{word-spacing:1.344000px;}
.ws72{word-spacing:1.680000px;}
.ws83{word-spacing:1.740000px;}
.ws7a{word-spacing:1.800000px;}
.ws70{word-spacing:1.920000px;}
.ws2c{word-spacing:1.980000px;}
.ws4c{word-spacing:2.040000px;}
.ws81{word-spacing:2.220000px;}
.ws6d{word-spacing:2.280000px;}
.ws7f{word-spacing:2.340000px;}
.ws84{word-spacing:2.400000px;}
.ws54{word-spacing:2.460000px;}
.ws85{word-spacing:2.520000px;}
.ws4d{word-spacing:2.580000px;}
.wsa0{word-spacing:2.592000px;}
.ws58{word-spacing:2.700000px;}
.wsb0{word-spacing:2.736000px;}
.ws1e{word-spacing:2.760000px;}
.ws22{word-spacing:2.820000px;}
.ws82{word-spacing:3.000000px;}
.wsb{word-spacing:3.060000px;}
.ws4b{word-spacing:3.180000px;}
.ws7e{word-spacing:3.240000px;}
.wsb1{word-spacing:3.264000px;}
.ws55{word-spacing:3.360000px;}
.ws50{word-spacing:3.420000px;}
.wsf{word-spacing:3.480000px;}
.ws6c{word-spacing:3.540000px;}
.ws2b{word-spacing:3.600000px;}
.ws63{word-spacing:3.720000px;}
.ws66{word-spacing:3.780000px;}
.ws38{word-spacing:3.792000px;}
.ws3a{word-spacing:3.840000px;}
.ws8b{word-spacing:3.900000px;}
.ws9a{word-spacing:3.936000px;}
.ws53{word-spacing:3.960000px;}
.ws37{word-spacing:3.984000px;}
.ws48{word-spacing:4.020000px;}
.ws79{word-spacing:4.200000px;}
.ws7c{word-spacing:4.320000px;}
.ws2f{word-spacing:4.380000px;}
.ws21{word-spacing:4.440000px;}
.ws31{word-spacing:4.500000px;}
.ws78{word-spacing:4.560000px;}
.ws80{word-spacing:4.620000px;}
.ws64{word-spacing:4.680000px;}
.ws52{word-spacing:4.740000px;}
.ws67{word-spacing:4.800000px;}
.ws1f{word-spacing:4.860000px;}
.wse{word-spacing:4.920000px;}
.wsa{word-spacing:4.980000px;}
.ws98{word-spacing:5.460000px;}
.ws97{word-spacing:5.520000px;}
.ws1b{word-spacing:21.840000px;}
.ws1a{word-spacing:112.032000px;}
.ws17{word-spacing:160.416000px;}
.ws19{word-spacing:267.840000px;}
._2c{margin-left:-2898.096000px;}
._2e{margin-left:-2874.288000px;}
._5{margin-left:-7.140000px;}
._1{margin-left:-5.376000px;}
._2{margin-left:-3.992400px;}
._0{margin-left:-2.310000px;}
._3{margin-left:-1.152600px;}
._6{width:1.020000px;}
._2d{width:2.052000px;}
._8{width:3.096000px;}
._4{width:5.040000px;}
._7{width:6.180000px;}
._9{width:7.380000px;}
._2f{width:9.096000px;}
._26{width:29.960400px;}
._24{width:39.360000px;}
._25{width:41.760000px;}
._12{width:44.448000px;}
._18{width:46.656000px;}
._1a{width:51.168000px;}
._2b{width:79.008000px;}
._13{width:89.136000px;}
._1c{width:102.342000px;}
._10{width:124.032000px;}
._19{width:139.104000px;}
._15{width:141.792000px;}
._27{width:144.672000px;}
._22{width:151.200000px;}
._21{width:166.230000px;}
._e{width:180.432000px;}
._16{width:186.480000px;}
._b{width:202.608000px;}
._1d{width:207.024000px;}
._14{width:208.608000px;}
._29{width:209.808000px;}
._20{width:239.136000px;}
._28{width:256.656000px;}
._1b{width:261.654000px;}
._17{width:267.312000px;}
._2a{width:272.358000px;}
._11{width:293.616000px;}
._23{width:318.000000px;}
._1e{width:341.670000px;}
._f{width:347.280000px;}
._1f{width:366.968400px;}
._d{width:372.384000px;}
._a{width:516.672000px;}
._c{width:598.752000px;}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:26.235000px;}
.fsa{font-size:34.980000px;}
.fs4{font-size:36.729000px;}
.fs7{font-size:39.000000px;}
.fs0{font-size:42.000000px;}
.fs6{font-size:45.000000px;}
.fs9{font-size:48.000000px;}
.fsb{font-size:54.000000px;}
.fs8{font-size:60.000000px;}
.fs3{font-size:63.000000px;}
.fs1{font-size:78.000000px;}
.fs2{font-size:126.600000px;}
.y0{bottom:0.000000px;}
.y1{bottom:46.264950px;}
.y2e{bottom:47.777250px;}
.y85{bottom:82.976550px;}
.y129{bottom:83.129700px;}
.y101{bottom:83.554950px;}
.y9e{bottom:83.770350px;}
.yfd{bottom:83.991750px;}
.y1a{bottom:88.023000px;}
.yc1{bottom:88.570350px;}
.yd9{bottom:91.112100px;}
.y75{bottom:92.190450px;}
.y107{bottom:92.365950px;}
.y177{bottom:95.121900px;}
.y84{bottom:98.720550px;}
.y128{bottom:98.873700px;}
.y100{bottom:99.298950px;}
.yfc{bottom:99.735750px;}
.y9d{bottom:101.770350px;}
.y142{bottom:101.920350px;}
.y19{bottom:103.023000px;}
.yc0{bottom:106.570350px;}
.y105{bottom:108.109950px;}
.y74{bottom:108.438450px;}
.yd8{bottom:109.112100px;}
.y176{bottom:110.121900px;}
.y83{bottom:114.464550px;}
.y127{bottom:114.617700px;}
.yff{bottom:115.042950px;}
.y9c{bottom:119.770350px;}
.y141{bottom:119.920350px;}
.y104{bottom:123.853950px;}
.ybf{bottom:124.570350px;}
.y73{bottom:124.686450px;}
.y175{bottom:125.121900px;}
.yd7{bottom:127.112100px;}
.y82{bottom:130.208550px;}
.y9b{bottom:137.770350px;}
.y140{bottom:137.920350px;}
.y103{bottom:139.597950px;}
.y174{bottom:140.121900px;}
.y72{bottom:140.934450px;}
.ybe{bottom:142.570350px;}
.yd6{bottom:145.112100px;}
.y81{bottom:145.952550px;}
.y173{bottom:155.121900px;}
.y9a{bottom:155.770350px;}
.y13f{bottom:155.920350px;}
.y71{bottom:157.182450px;}
.ybd{bottom:160.570350px;}
.y80{bottom:161.696550px;}
.yd5{bottom:163.112100px;}
.y29{bottom:168.032400px;}
.y172{bottom:170.121900px;}
.y70{bottom:173.682450px;}
.y99{bottom:173.770350px;}
.y13e{bottom:173.920350px;}
.y7f{bottom:177.440550px;}
.ybc{bottom:178.570350px;}
.yd4{bottom:181.112100px;}
.y171{bottom:185.121900px;}
.y28{bottom:186.032400px;}
.y6f{bottom:189.930450px;}
.y98{bottom:191.770350px;}
.y13d{bottom:191.920350px;}
.ybb{bottom:196.570350px;}
.yd3{bottom:199.112100px;}
.y170{bottom:200.121900px;}
.y27{bottom:204.032400px;}
.y6e{bottom:206.430450px;}
.y97{bottom:209.770350px;}
.y13c{bottom:209.920350px;}
.yba{bottom:214.570350px;}
.y16f{bottom:215.121900px;}
.yd2{bottom:217.112100px;}
.y26{bottom:222.032400px;}
.y6d{bottom:222.678450px;}
.y96{bottom:227.770350px;}
.y13b{bottom:227.920350px;}
.y16e{bottom:230.121900px;}
.yb9{bottom:232.570350px;}
.yd1{bottom:235.112100px;}
.y6c{bottom:238.926450px;}
.y25{bottom:240.032400px;}
.y16d{bottom:245.121900px;}
.y95{bottom:245.770350px;}
.y13a{bottom:245.920350px;}
.yb8{bottom:250.570350px;}
.yd0{bottom:253.112100px;}
.y6b{bottom:255.426450px;}
.y24{bottom:258.032400px;}
.y16c{bottom:260.121900px;}
.y94{bottom:263.770350px;}
.y139{bottom:263.920350px;}
.yb7{bottom:268.570350px;}
.ycf{bottom:271.112100px;}
.y6a{bottom:271.674450px;}
.y16b{bottom:275.121900px;}
.y23{bottom:276.032400px;}
.y93{bottom:281.770350px;}
.y138{bottom:281.920350px;}
.yb6{bottom:286.570350px;}
.y69{bottom:287.922450px;}
.yce{bottom:289.112100px;}
.y16a{bottom:290.121900px;}
.y22{bottom:294.032400px;}
.y92{bottom:299.770350px;}
.y137{bottom:299.920350px;}
.y68{bottom:304.422450px;}
.yb5{bottom:304.570350px;}
.y169{bottom:305.121900px;}
.ycd{bottom:307.112100px;}
.y21{bottom:312.032400px;}
.y91{bottom:317.770350px;}
.y136{bottom:317.920350px;}
.y168{bottom:320.121900px;}
.y67{bottom:320.670450px;}
.yb4{bottom:322.570350px;}
.ycc{bottom:325.112100px;}
.y20{bottom:330.032400px;}
.y167{bottom:335.121900px;}
.y90{bottom:335.770350px;}
.y135{bottom:335.920350px;}
.y66{bottom:336.918450px;}
.yb3{bottom:340.570350px;}
.ycb{bottom:343.112100px;}
.y1f{bottom:348.032400px;}
.y166{bottom:350.121900px;}
.y8f{bottom:353.770350px;}
.y134{bottom:353.920350px;}
.yb2{bottom:358.570350px;}
.yca{bottom:361.112100px;}
.y165{bottom:365.121900px;}
.y65{bottom:365.922450px;}
.y1e{bottom:366.032400px;}
.y8e{bottom:371.770350px;}
.y133{bottom:371.920350px;}
.yb1{bottom:376.570350px;}
.yc9{bottom:379.112100px;}
.y164{bottom:380.121900px;}
.y1d{bottom:384.032400px;}
.y8d{bottom:389.770350px;}
.y132{bottom:389.920350px;}
.yb0{bottom:394.570350px;}
.y64{bottom:394.926450px;}
.y163{bottom:395.121900px;}
.yc8{bottom:397.112100px;}
.y1c{bottom:402.032400px;}
.y8c{bottom:407.770350px;}
.y131{bottom:407.920350px;}
.y162{bottom:410.121900px;}
.yaf{bottom:412.570350px;}
.yc7{bottom:415.112100px;}
.y2b{bottom:420.032400px;}
.y161{bottom:425.121900px;}
.y130{bottom:425.515350px;}
.y8b{bottom:425.770350px;}
.y63{bottom:427.322100px;}
.yae{bottom:430.570350px;}
.y1b{bottom:437.627400px;}
.y2a{bottom:438.032400px;}
.y160{bottom:440.121900px;}
.y126{bottom:443.635350px;}
.y8a{bottom:443.770350px;}
.yfb{bottom:443.777100px;}
.y62{bottom:445.322100px;}
.yad{bottom:448.570350px;}
.yc6{bottom:449.952750px;}
.y15f{bottom:455.121900px;}
.y125{bottom:461.635350px;}
.y89{bottom:461.770350px;}
.yfa{bottom:461.777100px;}
.y12f{bottom:461.920350px;}
.y61{bottom:464.822100px;}
.yc5{bottom:465.558750px;}
.yac{bottom:466.570350px;}
.y15e{bottom:470.121900px;}
.y124{bottom:479.635350px;}
.y88{bottom:479.770350px;}
.yf9{bottom:479.777100px;}
.yc4{bottom:479.920350px;}
.yab{bottom:484.570350px;}
.y15d{bottom:485.121900px;}
.yc3{bottom:497.515350px;}
.y123{bottom:497.635350px;}
.y87{bottom:497.770350px;}
.yf8{bottom:497.777100px;}
.y12e{bottom:497.920350px;}
.y15c{bottom:500.121900px;}
.yaa{bottom:502.570350px;}
.y18{bottom:511.558500px;}
.y15b{bottom:515.121900px;}
.y122{bottom:515.635350px;}
.y48{bottom:515.770350px;}
.yf7{bottom:515.777100px;}
.y12d{bottom:515.920350px;}
.y60{bottom:516.062100px;}
.ya9{bottom:520.570350px;}
.y17{bottom:529.567950px;}
.y15a{bottom:530.121900px;}
.y121{bottom:533.635350px;}
.y47{bottom:533.770350px;}
.yf6{bottom:533.777100px;}
.y12c{bottom:533.920350px;}
.y5f{bottom:534.062100px;}
.ya8{bottom:538.570350px;}
.y159{bottom:545.121900px;}
.y120{bottom:551.635350px;}
.y46{bottom:551.770350px;}
.yf5{bottom:551.777100px;}
.y12b{bottom:551.920350px;}
.ya7{bottom:556.570350px;}
.y16{bottom:556.912950px;}
.y158{bottom:560.121900px;}
.y11f{bottom:569.635350px;}
.y5e{bottom:569.657100px;}
.y45{bottom:569.770350px;}
.yf4{bottom:569.777100px;}
.ya6{bottom:574.570350px;}
.y15{bottom:574.912950px;}
.y157{bottom:575.121900px;}
.y12a{bottom:587.515350px;}
.y11e{bottom:587.635350px;}
.y44{bottom:587.770350px;}
.yf3{bottom:587.777100px;}
.y156{bottom:590.121900px;}
.ya5{bottom:592.570350px;}
.y14{bottom:592.912950px;}
.y155{bottom:605.121900px;}
.y11d{bottom:605.635350px;}
.y43{bottom:605.770350px;}
.yf2{bottom:605.777100px;}
.y5d{bottom:605.912100px;}
.ya4{bottom:610.570350px;}
.y13{bottom:610.912950px;}
.y154{bottom:620.121900px;}
.y11c{bottom:623.635350px;}
.y42{bottom:623.770350px;}
.yf1{bottom:623.777100px;}
.y5c{bottom:623.912100px;}
.y12{bottom:628.912950px;}
.y153{bottom:635.121900px;}
.y11b{bottom:641.635350px;}
.y41{bottom:641.770350px;}
.yf0{bottom:641.777100px;}
.y5b{bottom:641.912100px;}
.ya3{bottom:645.411000px;}
.y11{bottom:646.912950px;}
.y152{bottom:650.121900px;}
.y11a{bottom:659.635350px;}
.y40{bottom:659.770350px;}
.yef{bottom:659.777100px;}
.y5a{bottom:659.912100px;}
.ya2{bottom:661.017000px;}
.y151{bottom:665.121900px;}
.ya1{bottom:677.365350px;}
.y119{bottom:677.635350px;}
.y3f{bottom:677.770350px;}
.yee{bottom:677.777100px;}
.y59{bottom:677.920350px;}
.y150{bottom:680.121900px;}
.y10{bottom:692.067300px;}
.ya0{bottom:695.365350px;}
.y118{bottom:695.635350px;}
.y3e{bottom:695.770350px;}
.yed{bottom:695.777100px;}
.y58{bottom:695.920350px;}
.yf{bottom:704.518050px;}
.y14f{bottom:713.245350px;}
.y117{bottom:713.635350px;}
.y3d{bottom:713.770350px;}
.yec{bottom:713.777100px;}
.y57{bottom:713.920350px;}
.y18e{bottom:725.263500px;}
.y9f{bottom:731.230350px;}
.y116{bottom:731.635350px;}
.y3c{bottom:731.770350px;}
.yeb{bottom:731.777100px;}
.y56{bottom:731.920350px;}
.ye{bottom:736.233600px;}
.y18d{bottom:740.263500px;}
.y115{bottom:749.635350px;}
.y7c{bottom:749.770350px;}
.yea{bottom:749.777100px;}
.y55{bottom:749.920350px;}
.yd{bottom:755.158800px;}
.y18c{bottom:755.263500px;}
.yc{bottom:763.233600px;}
.y3b{bottom:767.365350px;}
.y114{bottom:767.635350px;}
.y7b{bottom:767.770350px;}
.ye9{bottom:767.777100px;}
.y14e{bottom:767.785350px;}
.y54{bottom:767.920350px;}
.y18b{bottom:770.263500px;}
.yb{bottom:782.158950px;}
.y18a{bottom:785.263500px;}
.y14d{bottom:785.380350px;}
.y113{bottom:785.635350px;}
.y7a{bottom:785.770350px;}
.ye8{bottom:785.777100px;}
.y53{bottom:785.920350px;}
.ya{bottom:790.233600px;}
.y189{bottom:800.263500px;}
.y3a{bottom:803.230350px;}
.y112{bottom:803.635350px;}
.y9{bottom:803.733600px;}
.y79{bottom:803.770350px;}
.ye7{bottom:803.777100px;}
.y52{bottom:803.920350px;}
.y188{bottom:815.263500px;}
.y14c{bottom:821.380350px;}
.y111{bottom:821.635350px;}
.y78{bottom:821.770350px;}
.ye6{bottom:821.777100px;}
.y51{bottom:821.920350px;}
.y8{bottom:822.658950px;}
.y187{bottom:830.263500px;}
.y110{bottom:839.635350px;}
.y77{bottom:839.770350px;}
.ye5{bottom:839.777100px;}
.y50{bottom:839.920350px;}
.y186{bottom:845.263500px;}
.y7{bottom:851.380950px;}
.y7e{bottom:857.365350px;}
.y10f{bottom:857.635350px;}
.y39{bottom:857.770350px;}
.ye4{bottom:857.777100px;}
.y14b{bottom:857.785350px;}
.y4f{bottom:857.920350px;}
.y185{bottom:860.263500px;}
.y184{bottom:875.263500px;}
.y10e{bottom:875.635350px;}
.y38{bottom:875.770350px;}
.ye3{bottom:875.777100px;}
.y14a{bottom:875.785350px;}
.y4e{bottom:875.920350px;}
.y183{bottom:890.263500px;}
.y7d{bottom:893.230350px;}
.y149{bottom:893.380350px;}
.y10d{bottom:893.635350px;}
.y37{bottom:893.770350px;}
.ye2{bottom:893.777100px;}
.y4d{bottom:893.920350px;}
.y6{bottom:897.543600px;}
.y182{bottom:905.263500px;}
.y10c{bottom:911.635350px;}
.y36{bottom:911.770350px;}
.ye1{bottom:911.777100px;}
.y4c{bottom:911.920350px;}
.y181{bottom:920.263500px;}
.y10b{bottom:929.635350px;}
.y35{bottom:929.770350px;}
.ye0{bottom:929.777100px;}
.y148{bottom:929.785350px;}
.y4b{bottom:929.920350px;}
.y5{bottom:934.004400px;}
.y180{bottom:935.263500px;}
.y147{bottom:947.380350px;}
.y10a{bottom:947.635350px;}
.y34{bottom:947.770350px;}
.ydf{bottom:947.777100px;}
.y4a{bottom:947.920350px;}
.y17f{bottom:950.263500px;}
.y17e{bottom:965.263500px;}
.y33{bottom:965.770350px;}
.yde{bottom:965.777100px;}
.y4{bottom:970.465200px;}
.y17d{bottom:980.263500px;}
.y109{bottom:983.230350px;}
.y49{bottom:983.515350px;}
.y32{bottom:983.770350px;}
.ydd{bottom:983.777100px;}
.y146{bottom:983.785350px;}
.y17c{bottom:995.263500px;}
.y31{bottom:1001.770350px;}
.ydc{bottom:1001.777100px;}
.y145{bottom:1001.785350px;}
.y3{bottom:1006.926000px;}
.y17b{bottom:1010.263500px;}
.y30{bottom:1019.770350px;}
.ydb{bottom:1019.777100px;}
.y144{bottom:1019.785350px;}
.y17a{bottom:1025.263500px;}
.y143{bottom:1037.380350px;}
.y2f{bottom:1037.770350px;}
.yda{bottom:1037.777100px;}
.y179{bottom:1040.263500px;}
.y2{bottom:1069.300350px;}
.y178{bottom:1132.413900px;}
.yc2{bottom:1132.418700px;}
.yfe{bottom:1132.419750px;}
.y18f{bottom:1132.423500px;}
.y102{bottom:1132.426950px;}
.y106{bottom:1132.429950px;}
.y108{bottom:1132.441950px;}
.y86{bottom:1132.460550px;}
.y76{bottom:1132.470450px;}
.y2d{bottom:1136.092500px;}
.y2c{bottom:1150.492500px;}
.h7{height:19.099797px;}
.h9{height:32.761230px;}
.ha{height:34.962891px;}
.h2{height:37.652344px;}
.he{height:40.209961px;}
.h8{height:40.231934px;}
.h14{height:42.023438px;}
.h12{height:42.890625px;}
.h11{height:43.031250px;}
.hf{height:43.681641px;}
.h16{height:47.276367px;}
.h10{height:52.529297px;}
.hc{height:53.613281px;}
.hd{height:53.751263px;}
.hb{height:53.789062px;}
.h17{height:54.149297px;}
.h13{height:54.228516px;}
.h3{height:56.786133px;}
.h6{height:57.121316px;}
.h15{height:58.887580px;}
.h4{height:92.168262px;}
.h5{height:114.422168px;}
.h1{height:1190.250000px;}
.h0{height:1190.551500px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xc{left:76.535400px;}
.x11{left:78.661350px;}
.x23{left:90.996600px;}
.xa{left:96.094500px;}
.x1{left:97.795200px;}
.x29{left:102.047250px;}
.x4{left:106.299150px;}
.xe{left:110.555400px;}
.x3{left:125.427900px;}
.x7{left:131.816400px;}
.xd{left:144.725400px;}
.x22{left:154.040400px;}
.x5{left:191.352150px;}
.x24{left:202.047600px;}
.x6{left:212.876400px;}
.x15{left:252.937350px;}
.x16{left:384.745350px;}
.x13{left:393.277350px;}
.xb{left:455.041500px;}
.xf{left:457.085400px;}
.x1a{left:478.350000px;}
.x8{left:480.461400px;}
.x2a{left:482.603250px;}
.x10{left:491.105400px;}
.x1f{left:501.320400px;}
.x28{left:503.858400px;}
.x14{left:510.841350px;}
.x1c{left:512.370000px;}
.x9{left:514.481400px;}
.x12{left:528.541350px;}
.x20{left:551.630400px;}
.x21{left:579.961800px;}
.x1e{left:583.445400px;}
.x27{left:596.140350px;}
.x1b{left:612.915000px;}
.x19{left:663.492300px;}
.x2{left:693.365400px;}
.x17{left:713.977350px;}
.x25{left:721.711050px;}
.x18{left:728.257350px;}
.x26{left:743.863350px;}
.x1d{left:749.647350px;}
@media print{
.v2{vertical-align:-19.290133pt;}
.v3{vertical-align:-10.426667pt;}
.v0{vertical-align:0.000000pt;}
.v5{vertical-align:1.440000pt;}
.v4{vertical-align:25.122667pt;}
.v1{vertical-align:27.005867pt;}
.ls50{letter-spacing:-6.880000pt;}
.ls1b{letter-spacing:-0.693333pt;}
.ls57{letter-spacing:-0.373333pt;}
.ls1c{letter-spacing:-0.320000pt;}
.ls76{letter-spacing:-0.256000pt;}
.ls39{letter-spacing:-0.213333pt;}
.ls2d{letter-spacing:-0.160000pt;}
.ls5a{letter-spacing:-0.128000pt;}
.ls43{letter-spacing:-0.106667pt;}
.ls75{letter-spacing:-0.085333pt;}
.ls1d{letter-spacing:-0.053333pt;}
.ls78{letter-spacing:-0.042667pt;}
.ls1a{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.003680pt;}
.ls77{letter-spacing:0.042667pt;}
.ls10{letter-spacing:0.053333pt;}
.ls7f{letter-spacing:0.085333pt;}
.ls5{letter-spacing:0.106667pt;}
.ls6d{letter-spacing:0.128000pt;}
.ls25{letter-spacing:0.160000pt;}
.ls24{letter-spacing:0.213333pt;}
.ls2b{letter-spacing:0.245333pt;}
.lse{letter-spacing:0.266667pt;}
.ls72{letter-spacing:0.298667pt;}
.ls2a{letter-spacing:0.320000pt;}
.ls73{letter-spacing:0.341333pt;}
.ls32{letter-spacing:0.373333pt;}
.ls28{letter-spacing:0.426667pt;}
.ls3{letter-spacing:0.480000pt;}
.lsf{letter-spacing:0.533333pt;}
.ls35{letter-spacing:0.550400pt;}
.ls71{letter-spacing:0.554667pt;}
.ls1f{letter-spacing:0.586667pt;}
.ls38{letter-spacing:0.597333pt;}
.lsd{letter-spacing:0.640000pt;}
.ls80{letter-spacing:0.682667pt;}
.ls19{letter-spacing:0.693333pt;}
.ls6a{letter-spacing:0.725333pt;}
.ls33{letter-spacing:0.746667pt;}
.ls6e{letter-spacing:0.768000pt;}
.ls26{letter-spacing:0.800000pt;}
.ls4{letter-spacing:0.853333pt;}
.ls7a{letter-spacing:0.896000pt;}
.ls36{letter-spacing:0.906667pt;}
.ls69{letter-spacing:0.938667pt;}
.lsc{letter-spacing:0.960000pt;}
.ls6f{letter-spacing:0.981333pt;}
.ls22{letter-spacing:1.013333pt;}
.ls84{letter-spacing:1.024000pt;}
.ls1e{letter-spacing:1.066667pt;}
.ls13{letter-spacing:1.120000pt;}
.ls7c{letter-spacing:1.152000pt;}
.ls9{letter-spacing:1.173333pt;}
.ls6c{letter-spacing:1.194667pt;}
.ls3a{letter-spacing:1.226667pt;}
.ls70{letter-spacing:1.237333pt;}
.ls2c{letter-spacing:1.280000pt;}
.ls15{letter-spacing:1.333333pt;}
.ls34{letter-spacing:1.386667pt;}
.ls83{letter-spacing:1.408000pt;}
.ls12{letter-spacing:1.440000pt;}
.ls7d{letter-spacing:1.450667pt;}
.ls14{letter-spacing:1.493333pt;}
.ls56{letter-spacing:1.546667pt;}
.ls3c{letter-spacing:1.600000pt;}
.ls20{letter-spacing:1.653333pt;}
.lsb{letter-spacing:1.706667pt;}
.lsa{letter-spacing:1.760000pt;}
.ls7e{letter-spacing:1.792000pt;}
.ls2e{letter-spacing:1.813333pt;}
.ls29{letter-spacing:1.866667pt;}
.ls3d{letter-spacing:1.920000pt;}
.ls85{letter-spacing:1.962667pt;}
.ls23{letter-spacing:1.973333pt;}
.ls7{letter-spacing:2.026667pt;}
.ls74{letter-spacing:2.048000pt;}
.ls21{letter-spacing:2.080000pt;}
.ls59{letter-spacing:2.133333pt;}
.ls81{letter-spacing:2.176000pt;}
.ls6{letter-spacing:2.186667pt;}
.ls79{letter-spacing:2.218667pt;}
.ls2f{letter-spacing:2.240000pt;}
.ls82{letter-spacing:2.261333pt;}
.ls27{letter-spacing:2.293333pt;}
.ls7b{letter-spacing:2.304000pt;}
.ls16{letter-spacing:2.346667pt;}
.ls3b{letter-spacing:2.400000pt;}
.ls44{letter-spacing:2.453333pt;}
.ls6b{letter-spacing:2.474667pt;}
.ls18{letter-spacing:2.506667pt;}
.ls52{letter-spacing:2.560000pt;}
.ls40{letter-spacing:2.613333pt;}
.ls31{letter-spacing:2.666667pt;}
.ls8{letter-spacing:2.720000pt;}
.ls58{letter-spacing:2.826667pt;}
.ls4c{letter-spacing:2.880000pt;}
.ls5f{letter-spacing:2.933333pt;}
.ls17{letter-spacing:2.986667pt;}
.ls47{letter-spacing:3.040000pt;}
.ls30{letter-spacing:3.093333pt;}
.ls5e{letter-spacing:3.200000pt;}
.ls11{letter-spacing:3.253333pt;}
.ls42{letter-spacing:3.360000pt;}
.ls3e{letter-spacing:3.413333pt;}
.ls45{letter-spacing:3.466667pt;}
.ls41{letter-spacing:3.626667pt;}
.ls4d{letter-spacing:3.733333pt;}
.ls62{letter-spacing:3.786667pt;}
.ls5c{letter-spacing:3.893333pt;}
.ls4e{letter-spacing:3.946667pt;}
.ls46{letter-spacing:4.000000pt;}
.ls55{letter-spacing:4.213333pt;}
.ls64{letter-spacing:4.426667pt;}
.ls5b{letter-spacing:4.480000pt;}
.ls51{letter-spacing:4.533333pt;}
.ls54{letter-spacing:4.586667pt;}
.ls53{letter-spacing:4.640000pt;}
.ls66{letter-spacing:4.693333pt;}
.ls67{letter-spacing:4.746667pt;}
.ls5d{letter-spacing:4.906667pt;}
.ls4b{letter-spacing:5.120000pt;}
.ls4f{letter-spacing:5.226667pt;}
.ls4a{letter-spacing:5.280000pt;}
.ls48{letter-spacing:5.386667pt;}
.ls37{letter-spacing:5.600000pt;}
.ls60{letter-spacing:5.866667pt;}
.ls65{letter-spacing:6.240000pt;}
.ls63{letter-spacing:6.560000pt;}
.ls68{letter-spacing:6.773333pt;}
.ls3f{letter-spacing:6.880000pt;}
.ls49{letter-spacing:9.813333pt;}
.ls61{letter-spacing:10.240000pt;}
.ls1{letter-spacing:52.918112pt;}
.ls0{letter-spacing:52.922133pt;}
.ws91{word-spacing:-20.693333pt;}
.ws5a{word-spacing:-18.720000pt;}
.ws87{word-spacing:-17.226667pt;}
.ws47{word-spacing:-16.746667pt;}
.ws8e{word-spacing:-16.586667pt;}
.ws13{word-spacing:-16.320000pt;}
.ws5c{word-spacing:-16.213333pt;}
.ws8f{word-spacing:-15.946667pt;}
.ws59{word-spacing:-15.786667pt;}
.ws61{word-spacing:-15.360000pt;}
.ws5e{word-spacing:-15.253333pt;}
.ws88{word-spacing:-15.146667pt;}
.ws5{word-spacing:-15.040000pt;}
.ws90{word-spacing:-14.986667pt;}
.ws77{word-spacing:-14.933333pt;}
.ws1{word-spacing:-14.826667pt;}
.ws2a{word-spacing:-14.773333pt;}
.ws74{word-spacing:-14.720000pt;}
.ws42{word-spacing:-14.666667pt;}
.ws16{word-spacing:-14.613333pt;}
.ws60{word-spacing:-14.560000pt;}
.ws4{word-spacing:-14.506667pt;}
.ws5f{word-spacing:-14.453333pt;}
.ws11{word-spacing:-14.400000pt;}
.ws41{word-spacing:-14.346667pt;}
.ws46{word-spacing:-14.293333pt;}
.ws3e{word-spacing:-14.186667pt;}
.ws15{word-spacing:-14.133333pt;}
.ws43{word-spacing:-14.080000pt;}
.ws44{word-spacing:-14.026667pt;}
.ws76{word-spacing:-13.973333pt;}
.ws12{word-spacing:-13.920000pt;}
.ws40{word-spacing:-13.866667pt;}
.ws29{word-spacing:-13.813333pt;}
.ws3c{word-spacing:-13.760000pt;}
.ws3d{word-spacing:-13.706667pt;}
.ws75{word-spacing:-13.653333pt;}
.ws5d{word-spacing:-13.600000pt;}
.ws28{word-spacing:-13.546667pt;}
.ws3{word-spacing:-13.440000pt;}
.ws3f{word-spacing:-13.386667pt;}
.ws14{word-spacing:-13.333333pt;}
.ws5b{word-spacing:-13.173333pt;}
.wsac{word-spacing:-12.629333pt;}
.wsab{word-spacing:-12.074667pt;}
.ws45{word-spacing:-12.000000pt;}
.ws6{word-spacing:-11.861333pt;}
.wsa6{word-spacing:-11.818667pt;}
.ws92{word-spacing:-11.648000pt;}
.wsa9{word-spacing:-11.392000pt;}
.ws2{word-spacing:-11.120000pt;}
.ws93{word-spacing:-11.008000pt;}
.wsaa{word-spacing:-10.880000pt;}
.wsa7{word-spacing:-10.752000pt;}
.ws18{word-spacing:-10.666667pt;}
.ws94{word-spacing:-10.624000pt;}
.wsa8{word-spacing:-10.581333pt;}
.ws0{word-spacing:-9.076144pt;}
.ws62{word-spacing:-6.453333pt;}
.ws95{word-spacing:-3.253333pt;}
.ws69{word-spacing:-3.040000pt;}
.ws8{word-spacing:-2.565333pt;}
.ws9b{word-spacing:-2.474667pt;}
.ws99{word-spacing:-2.400000pt;}
.wsa1{word-spacing:-2.346667pt;}
.ws6e{word-spacing:-2.080000pt;}
.ws96{word-spacing:-2.026667pt;}
.ws1d{word-spacing:-1.973333pt;}
.wsb6{word-spacing:-1.962667pt;}
.wsaf{word-spacing:-1.920000pt;}
.ws8c{word-spacing:-1.813333pt;}
.wsb4{word-spacing:-1.706667pt;}
.ws25{word-spacing:-1.653333pt;}
.ws4f{word-spacing:-1.493333pt;}
.ws36{word-spacing:-1.440000pt;}
.wsb3{word-spacing:-1.408000pt;}
.ws51{word-spacing:-1.333333pt;}
.ws26{word-spacing:-1.280000pt;}
.ws33{word-spacing:-1.226667pt;}
.ws30{word-spacing:-1.173333pt;}
.ws8a{word-spacing:-1.120000pt;}
.ws1c{word-spacing:-1.066667pt;}
.wsb5{word-spacing:-1.024000pt;}
.wsa4{word-spacing:-0.981333pt;}
.ws56{word-spacing:-0.960000pt;}
.wsae{word-spacing:-0.896000pt;}
.ws6a{word-spacing:-0.853333pt;}
.ws9f{word-spacing:-0.810667pt;}
.wsad{word-spacing:-0.768000pt;}
.ws6b{word-spacing:-0.693333pt;}
.ws4e{word-spacing:-0.533333pt;}
.ws89{word-spacing:-0.480000pt;}
.ws20{word-spacing:-0.426667pt;}
.ws24{word-spacing:-0.373333pt;}
.ws7d{word-spacing:-0.320000pt;}
.wsb2{word-spacing:-0.298667pt;}
.ws4a{word-spacing:-0.266667pt;}
.ws34{word-spacing:-0.213333pt;}
.ws9c{word-spacing:-0.128000pt;}
.wsc{word-spacing:-0.106667pt;}
.ws35{word-spacing:-0.053333pt;}
.ws7{word-spacing:0.000000pt;}
.wsa5{word-spacing:0.042667pt;}
.ws9{word-spacing:0.053333pt;}
.ws9d{word-spacing:0.085333pt;}
.ws6f{word-spacing:0.106667pt;}
.ws86{word-spacing:0.128000pt;}
.ws57{word-spacing:0.160000pt;}
.wsa2{word-spacing:0.213333pt;}
.ws27{word-spacing:0.266667pt;}
.ws32{word-spacing:0.320000pt;}
.wsa3{word-spacing:0.341333pt;}
.ws65{word-spacing:0.373333pt;}
.ws23{word-spacing:0.480000pt;}
.ws3b{word-spacing:0.512000pt;}
.ws68{word-spacing:0.533333pt;}
.ws73{word-spacing:0.640000pt;}
.ws49{word-spacing:0.746667pt;}
.ws7b{word-spacing:0.800000pt;}
.ws2e{word-spacing:0.853333pt;}
.ws71{word-spacing:0.906667pt;}
.ws2d{word-spacing:0.960000pt;}
.ws10{word-spacing:1.013333pt;}
.ws39{word-spacing:1.066667pt;}
.ws9e{word-spacing:1.152000pt;}
.wsd{word-spacing:1.173333pt;}
.ws8d{word-spacing:1.194667pt;}
.ws72{word-spacing:1.493333pt;}
.ws83{word-spacing:1.546667pt;}
.ws7a{word-spacing:1.600000pt;}
.ws70{word-spacing:1.706667pt;}
.ws2c{word-spacing:1.760000pt;}
.ws4c{word-spacing:1.813333pt;}
.ws81{word-spacing:1.973333pt;}
.ws6d{word-spacing:2.026667pt;}
.ws7f{word-spacing:2.080000pt;}
.ws84{word-spacing:2.133333pt;}
.ws54{word-spacing:2.186667pt;}
.ws85{word-spacing:2.240000pt;}
.ws4d{word-spacing:2.293333pt;}
.wsa0{word-spacing:2.304000pt;}
.ws58{word-spacing:2.400000pt;}
.wsb0{word-spacing:2.432000pt;}
.ws1e{word-spacing:2.453333pt;}
.ws22{word-spacing:2.506667pt;}
.ws82{word-spacing:2.666667pt;}
.wsb{word-spacing:2.720000pt;}
.ws4b{word-spacing:2.826667pt;}
.ws7e{word-spacing:2.880000pt;}
.wsb1{word-spacing:2.901333pt;}
.ws55{word-spacing:2.986667pt;}
.ws50{word-spacing:3.040000pt;}
.wsf{word-spacing:3.093333pt;}
.ws6c{word-spacing:3.146667pt;}
.ws2b{word-spacing:3.200000pt;}
.ws63{word-spacing:3.306667pt;}
.ws66{word-spacing:3.360000pt;}
.ws38{word-spacing:3.370667pt;}
.ws3a{word-spacing:3.413333pt;}
.ws8b{word-spacing:3.466667pt;}
.ws9a{word-spacing:3.498667pt;}
.ws53{word-spacing:3.520000pt;}
.ws37{word-spacing:3.541333pt;}
.ws48{word-spacing:3.573333pt;}
.ws79{word-spacing:3.733333pt;}
.ws7c{word-spacing:3.840000pt;}
.ws2f{word-spacing:3.893333pt;}
.ws21{word-spacing:3.946667pt;}
.ws31{word-spacing:4.000000pt;}
.ws78{word-spacing:4.053333pt;}
.ws80{word-spacing:4.106667pt;}
.ws64{word-spacing:4.160000pt;}
.ws52{word-spacing:4.213333pt;}
.ws67{word-spacing:4.266667pt;}
.ws1f{word-spacing:4.320000pt;}
.wse{word-spacing:4.373333pt;}
.wsa{word-spacing:4.426667pt;}
.ws98{word-spacing:4.853333pt;}
.ws97{word-spacing:4.906667pt;}
.ws1b{word-spacing:19.413333pt;}
.ws1a{word-spacing:99.584000pt;}
.ws17{word-spacing:142.592000pt;}
.ws19{word-spacing:238.080000pt;}
._2c{margin-left:-2576.085333pt;}
._2e{margin-left:-2554.922667pt;}
._5{margin-left:-6.346667pt;}
._1{margin-left:-4.778667pt;}
._2{margin-left:-3.548800pt;}
._0{margin-left:-2.053333pt;}
._3{margin-left:-1.024533pt;}
._6{width:0.906667pt;}
._2d{width:1.824000pt;}
._8{width:2.752000pt;}
._4{width:4.480000pt;}
._7{width:5.493333pt;}
._9{width:6.560000pt;}
._2f{width:8.085333pt;}
._26{width:26.631467pt;}
._24{width:34.986667pt;}
._25{width:37.120000pt;}
._12{width:39.509333pt;}
._18{width:41.472000pt;}
._1a{width:45.482667pt;}
._2b{width:70.229333pt;}
._13{width:79.232000pt;}
._1c{width:90.970667pt;}
._10{width:110.250667pt;}
._19{width:123.648000pt;}
._15{width:126.037333pt;}
._27{width:128.597333pt;}
._22{width:134.400000pt;}
._21{width:147.760000pt;}
._e{width:160.384000pt;}
._16{width:165.760000pt;}
._b{width:180.096000pt;}
._1d{width:184.021333pt;}
._14{width:185.429333pt;}
._29{width:186.496000pt;}
._20{width:212.565333pt;}
._28{width:228.138667pt;}
._1b{width:232.581333pt;}
._17{width:237.610667pt;}
._2a{width:242.096000pt;}
._11{width:260.992000pt;}
._23{width:282.666667pt;}
._1e{width:303.706667pt;}
._f{width:308.693333pt;}
._1f{width:326.194133pt;}
._d{width:331.008000pt;}
._a{width:459.264000pt;}
._c{width:532.224000pt;}
.fs5{font-size:23.320000pt;}
.fsa{font-size:31.093333pt;}
.fs4{font-size:32.648000pt;}
.fs7{font-size:34.666667pt;}
.fs0{font-size:37.333333pt;}
.fs6{font-size:40.000000pt;}
.fs9{font-size:42.666667pt;}
.fsb{font-size:48.000000pt;}
.fs8{font-size:53.333333pt;}
.fs3{font-size:56.000000pt;}
.fs1{font-size:69.333333pt;}
.fs2{font-size:112.533333pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:41.124400pt;}
.y2e{bottom:42.468667pt;}
.y85{bottom:73.756933pt;}
.y129{bottom:73.893067pt;}
.y101{bottom:74.271067pt;}
.y9e{bottom:74.462533pt;}
.yfd{bottom:74.659333pt;}
.y1a{bottom:78.242667pt;}
.yc1{bottom:78.729200pt;}
.yd9{bottom:80.988533pt;}
.y75{bottom:81.947067pt;}
.y107{bottom:82.103067pt;}
.y177{bottom:84.552800pt;}
.y84{bottom:87.751600pt;}
.y128{bottom:87.887733pt;}
.y100{bottom:88.265733pt;}
.yfc{bottom:88.654000pt;}
.y9d{bottom:90.462533pt;}
.y142{bottom:90.595867pt;}
.y19{bottom:91.576000pt;}
.yc0{bottom:94.729200pt;}
.y105{bottom:96.097733pt;}
.y74{bottom:96.389733pt;}
.yd8{bottom:96.988533pt;}
.y176{bottom:97.886133pt;}
.y83{bottom:101.746267pt;}
.y127{bottom:101.882400pt;}
.yff{bottom:102.260400pt;}
.y9c{bottom:106.462533pt;}
.y141{bottom:106.595867pt;}
.y104{bottom:110.092400pt;}
.ybf{bottom:110.729200pt;}
.y73{bottom:110.832400pt;}
.y175{bottom:111.219467pt;}
.yd7{bottom:112.988533pt;}
.y82{bottom:115.740933pt;}
.y9b{bottom:122.462533pt;}
.y140{bottom:122.595867pt;}
.y103{bottom:124.087067pt;}
.y174{bottom:124.552800pt;}
.y72{bottom:125.275067pt;}
.ybe{bottom:126.729200pt;}
.yd6{bottom:128.988533pt;}
.y81{bottom:129.735600pt;}
.y173{bottom:137.886133pt;}
.y9a{bottom:138.462533pt;}
.y13f{bottom:138.595867pt;}
.y71{bottom:139.717733pt;}
.ybd{bottom:142.729200pt;}
.y80{bottom:143.730267pt;}
.yd5{bottom:144.988533pt;}
.y29{bottom:149.362133pt;}
.y172{bottom:151.219467pt;}
.y70{bottom:154.384400pt;}
.y99{bottom:154.462533pt;}
.y13e{bottom:154.595867pt;}
.y7f{bottom:157.724933pt;}
.ybc{bottom:158.729200pt;}
.yd4{bottom:160.988533pt;}
.y171{bottom:164.552800pt;}
.y28{bottom:165.362133pt;}
.y6f{bottom:168.827067pt;}
.y98{bottom:170.462533pt;}
.y13d{bottom:170.595867pt;}
.ybb{bottom:174.729200pt;}
.yd3{bottom:176.988533pt;}
.y170{bottom:177.886133pt;}
.y27{bottom:181.362133pt;}
.y6e{bottom:183.493733pt;}
.y97{bottom:186.462533pt;}
.y13c{bottom:186.595867pt;}
.yba{bottom:190.729200pt;}
.y16f{bottom:191.219467pt;}
.yd2{bottom:192.988533pt;}
.y26{bottom:197.362133pt;}
.y6d{bottom:197.936400pt;}
.y96{bottom:202.462533pt;}
.y13b{bottom:202.595867pt;}
.y16e{bottom:204.552800pt;}
.yb9{bottom:206.729200pt;}
.yd1{bottom:208.988533pt;}
.y6c{bottom:212.379067pt;}
.y25{bottom:213.362133pt;}
.y16d{bottom:217.886133pt;}
.y95{bottom:218.462533pt;}
.y13a{bottom:218.595867pt;}
.yb8{bottom:222.729200pt;}
.yd0{bottom:224.988533pt;}
.y6b{bottom:227.045733pt;}
.y24{bottom:229.362133pt;}
.y16c{bottom:231.219467pt;}
.y94{bottom:234.462533pt;}
.y139{bottom:234.595867pt;}
.yb7{bottom:238.729200pt;}
.ycf{bottom:240.988533pt;}
.y6a{bottom:241.488400pt;}
.y16b{bottom:244.552800pt;}
.y23{bottom:245.362133pt;}
.y93{bottom:250.462533pt;}
.y138{bottom:250.595867pt;}
.yb6{bottom:254.729200pt;}
.y69{bottom:255.931067pt;}
.yce{bottom:256.988533pt;}
.y16a{bottom:257.886133pt;}
.y22{bottom:261.362133pt;}
.y92{bottom:266.462533pt;}
.y137{bottom:266.595867pt;}
.y68{bottom:270.597733pt;}
.yb5{bottom:270.729200pt;}
.y169{bottom:271.219467pt;}
.ycd{bottom:272.988533pt;}
.y21{bottom:277.362133pt;}
.y91{bottom:282.462533pt;}
.y136{bottom:282.595867pt;}
.y168{bottom:284.552800pt;}
.y67{bottom:285.040400pt;}
.yb4{bottom:286.729200pt;}
.ycc{bottom:288.988533pt;}
.y20{bottom:293.362133pt;}
.y167{bottom:297.886133pt;}
.y90{bottom:298.462533pt;}
.y135{bottom:298.595867pt;}
.y66{bottom:299.483067pt;}
.yb3{bottom:302.729200pt;}
.ycb{bottom:304.988533pt;}
.y1f{bottom:309.362133pt;}
.y166{bottom:311.219467pt;}
.y8f{bottom:314.462533pt;}
.y134{bottom:314.595867pt;}
.yb2{bottom:318.729200pt;}
.yca{bottom:320.988533pt;}
.y165{bottom:324.552800pt;}
.y65{bottom:325.264400pt;}
.y1e{bottom:325.362133pt;}
.y8e{bottom:330.462533pt;}
.y133{bottom:330.595867pt;}
.yb1{bottom:334.729200pt;}
.yc9{bottom:336.988533pt;}
.y164{bottom:337.886133pt;}
.y1d{bottom:341.362133pt;}
.y8d{bottom:346.462533pt;}
.y132{bottom:346.595867pt;}
.yb0{bottom:350.729200pt;}
.y64{bottom:351.045733pt;}
.y163{bottom:351.219467pt;}
.yc8{bottom:352.988533pt;}
.y1c{bottom:357.362133pt;}
.y8c{bottom:362.462533pt;}
.y131{bottom:362.595867pt;}
.y162{bottom:364.552800pt;}
.yaf{bottom:366.729200pt;}
.yc7{bottom:368.988533pt;}
.y2b{bottom:373.362133pt;}
.y161{bottom:377.886133pt;}
.y130{bottom:378.235867pt;}
.y8b{bottom:378.462533pt;}
.y63{bottom:379.841867pt;}
.yae{bottom:382.729200pt;}
.y1b{bottom:389.002133pt;}
.y2a{bottom:389.362133pt;}
.y160{bottom:391.219467pt;}
.y126{bottom:394.342533pt;}
.y8a{bottom:394.462533pt;}
.yfb{bottom:394.468533pt;}
.y62{bottom:395.841867pt;}
.yad{bottom:398.729200pt;}
.yc6{bottom:399.958000pt;}
.y15f{bottom:404.552800pt;}
.y125{bottom:410.342533pt;}
.y89{bottom:410.462533pt;}
.yfa{bottom:410.468533pt;}
.y12f{bottom:410.595867pt;}
.y61{bottom:413.175200pt;}
.yc5{bottom:413.830000pt;}
.yac{bottom:414.729200pt;}
.y15e{bottom:417.886133pt;}
.y124{bottom:426.342533pt;}
.y88{bottom:426.462533pt;}
.yf9{bottom:426.468533pt;}
.yc4{bottom:426.595867pt;}
.yab{bottom:430.729200pt;}
.y15d{bottom:431.219467pt;}
.yc3{bottom:442.235867pt;}
.y123{bottom:442.342533pt;}
.y87{bottom:442.462533pt;}
.yf8{bottom:442.468533pt;}
.y12e{bottom:442.595867pt;}
.y15c{bottom:444.552800pt;}
.yaa{bottom:446.729200pt;}
.y18{bottom:454.718667pt;}
.y15b{bottom:457.886133pt;}
.y122{bottom:458.342533pt;}
.y48{bottom:458.462533pt;}
.yf7{bottom:458.468533pt;}
.y12d{bottom:458.595867pt;}
.y60{bottom:458.721867pt;}
.ya9{bottom:462.729200pt;}
.y17{bottom:470.727067pt;}
.y15a{bottom:471.219467pt;}
.y121{bottom:474.342533pt;}
.y47{bottom:474.462533pt;}
.yf6{bottom:474.468533pt;}
.y12c{bottom:474.595867pt;}
.y5f{bottom:474.721867pt;}
.ya8{bottom:478.729200pt;}
.y159{bottom:484.552800pt;}
.y120{bottom:490.342533pt;}
.y46{bottom:490.462533pt;}
.yf5{bottom:490.468533pt;}
.y12b{bottom:490.595867pt;}
.ya7{bottom:494.729200pt;}
.y16{bottom:495.033733pt;}
.y158{bottom:497.886133pt;}
.y11f{bottom:506.342533pt;}
.y5e{bottom:506.361867pt;}
.y45{bottom:506.462533pt;}
.yf4{bottom:506.468533pt;}
.ya6{bottom:510.729200pt;}
.y15{bottom:511.033733pt;}
.y157{bottom:511.219467pt;}
.y12a{bottom:522.235867pt;}
.y11e{bottom:522.342533pt;}
.y44{bottom:522.462533pt;}
.yf3{bottom:522.468533pt;}
.y156{bottom:524.552800pt;}
.ya5{bottom:526.729200pt;}
.y14{bottom:527.033733pt;}
.y155{bottom:537.886133pt;}
.y11d{bottom:538.342533pt;}
.y43{bottom:538.462533pt;}
.yf2{bottom:538.468533pt;}
.y5d{bottom:538.588533pt;}
.ya4{bottom:542.729200pt;}
.y13{bottom:543.033733pt;}
.y154{bottom:551.219467pt;}
.y11c{bottom:554.342533pt;}
.y42{bottom:554.462533pt;}
.yf1{bottom:554.468533pt;}
.y5c{bottom:554.588533pt;}
.y12{bottom:559.033733pt;}
.y153{bottom:564.552800pt;}
.y11b{bottom:570.342533pt;}
.y41{bottom:570.462533pt;}
.yf0{bottom:570.468533pt;}
.y5b{bottom:570.588533pt;}
.ya3{bottom:573.698667pt;}
.y11{bottom:575.033733pt;}
.y152{bottom:577.886133pt;}
.y11a{bottom:586.342533pt;}
.y40{bottom:586.462533pt;}
.yef{bottom:586.468533pt;}
.y5a{bottom:586.588533pt;}
.ya2{bottom:587.570667pt;}
.y151{bottom:591.219467pt;}
.ya1{bottom:602.102533pt;}
.y119{bottom:602.342533pt;}
.y3f{bottom:602.462533pt;}
.yee{bottom:602.468533pt;}
.y59{bottom:602.595867pt;}
.y150{bottom:604.552800pt;}
.y10{bottom:615.170933pt;}
.ya0{bottom:618.102533pt;}
.y118{bottom:618.342533pt;}
.y3e{bottom:618.462533pt;}
.yed{bottom:618.468533pt;}
.y58{bottom:618.595867pt;}
.yf{bottom:626.238267pt;}
.y14f{bottom:633.995867pt;}
.y117{bottom:634.342533pt;}
.y3d{bottom:634.462533pt;}
.yec{bottom:634.468533pt;}
.y57{bottom:634.595867pt;}
.y18e{bottom:644.678667pt;}
.y9f{bottom:649.982533pt;}
.y116{bottom:650.342533pt;}
.y3c{bottom:650.462533pt;}
.yeb{bottom:650.468533pt;}
.y56{bottom:650.595867pt;}
.ye{bottom:654.429867pt;}
.y18d{bottom:658.012000pt;}
.y115{bottom:666.342533pt;}
.y7c{bottom:666.462533pt;}
.yea{bottom:666.468533pt;}
.y55{bottom:666.595867pt;}
.yd{bottom:671.252267pt;}
.y18c{bottom:671.345333pt;}
.yc{bottom:678.429867pt;}
.y3b{bottom:682.102533pt;}
.y114{bottom:682.342533pt;}
.y7b{bottom:682.462533pt;}
.ye9{bottom:682.468533pt;}
.y14e{bottom:682.475867pt;}
.y54{bottom:682.595867pt;}
.y18b{bottom:684.678667pt;}
.yb{bottom:695.252400pt;}
.y18a{bottom:698.012000pt;}
.y14d{bottom:698.115867pt;}
.y113{bottom:698.342533pt;}
.y7a{bottom:698.462533pt;}
.ye8{bottom:698.468533pt;}
.y53{bottom:698.595867pt;}
.ya{bottom:702.429867pt;}
.y189{bottom:711.345333pt;}
.y3a{bottom:713.982533pt;}
.y112{bottom:714.342533pt;}
.y9{bottom:714.429867pt;}
.y79{bottom:714.462533pt;}
.ye7{bottom:714.468533pt;}
.y52{bottom:714.595867pt;}
.y188{bottom:724.678667pt;}
.y14c{bottom:730.115867pt;}
.y111{bottom:730.342533pt;}
.y78{bottom:730.462533pt;}
.ye6{bottom:730.468533pt;}
.y51{bottom:730.595867pt;}
.y8{bottom:731.252400pt;}
.y187{bottom:738.012000pt;}
.y110{bottom:746.342533pt;}
.y77{bottom:746.462533pt;}
.ye5{bottom:746.468533pt;}
.y50{bottom:746.595867pt;}
.y186{bottom:751.345333pt;}
.y7{bottom:756.783067pt;}
.y7e{bottom:762.102533pt;}
.y10f{bottom:762.342533pt;}
.y39{bottom:762.462533pt;}
.ye4{bottom:762.468533pt;}
.y14b{bottom:762.475867pt;}
.y4f{bottom:762.595867pt;}
.y185{bottom:764.678667pt;}
.y184{bottom:778.012000pt;}
.y10e{bottom:778.342533pt;}
.y38{bottom:778.462533pt;}
.ye3{bottom:778.468533pt;}
.y14a{bottom:778.475867pt;}
.y4e{bottom:778.595867pt;}
.y183{bottom:791.345333pt;}
.y7d{bottom:793.982533pt;}
.y149{bottom:794.115867pt;}
.y10d{bottom:794.342533pt;}
.y37{bottom:794.462533pt;}
.ye2{bottom:794.468533pt;}
.y4d{bottom:794.595867pt;}
.y6{bottom:797.816533pt;}
.y182{bottom:804.678667pt;}
.y10c{bottom:810.342533pt;}
.y36{bottom:810.462533pt;}
.ye1{bottom:810.468533pt;}
.y4c{bottom:810.595867pt;}
.y181{bottom:818.012000pt;}
.y10b{bottom:826.342533pt;}
.y35{bottom:826.462533pt;}
.ye0{bottom:826.468533pt;}
.y148{bottom:826.475867pt;}
.y4b{bottom:826.595867pt;}
.y5{bottom:830.226133pt;}
.y180{bottom:831.345333pt;}
.y147{bottom:842.115867pt;}
.y10a{bottom:842.342533pt;}
.y34{bottom:842.462533pt;}
.ydf{bottom:842.468533pt;}
.y4a{bottom:842.595867pt;}
.y17f{bottom:844.678667pt;}
.y17e{bottom:858.012000pt;}
.y33{bottom:858.462533pt;}
.yde{bottom:858.468533pt;}
.y4{bottom:862.635733pt;}
.y17d{bottom:871.345333pt;}
.y109{bottom:873.982533pt;}
.y49{bottom:874.235867pt;}
.y32{bottom:874.462533pt;}
.ydd{bottom:874.468533pt;}
.y146{bottom:874.475867pt;}
.y17c{bottom:884.678667pt;}
.y31{bottom:890.462533pt;}
.ydc{bottom:890.468533pt;}
.y145{bottom:890.475867pt;}
.y3{bottom:895.045333pt;}
.y17b{bottom:898.012000pt;}
.y30{bottom:906.462533pt;}
.ydb{bottom:906.468533pt;}
.y144{bottom:906.475867pt;}
.y17a{bottom:911.345333pt;}
.y143{bottom:922.115867pt;}
.y2f{bottom:922.462533pt;}
.yda{bottom:922.468533pt;}
.y179{bottom:924.678667pt;}
.y2{bottom:950.489200pt;}
.y178{bottom:1006.590133pt;}
.yc2{bottom:1006.594400pt;}
.yfe{bottom:1006.595333pt;}
.y18f{bottom:1006.598667pt;}
.y102{bottom:1006.601733pt;}
.y106{bottom:1006.604400pt;}
.y108{bottom:1006.615067pt;}
.y86{bottom:1006.631600pt;}
.y76{bottom:1006.640400pt;}
.y2d{bottom:1009.860000pt;}
.y2c{bottom:1022.660000pt;}
.h7{height:16.977598pt;}
.h9{height:29.121094pt;}
.ha{height:31.078125pt;}
.h2{height:33.468750pt;}
.he{height:35.742188pt;}
.h8{height:35.761719pt;}
.h14{height:37.354167pt;}
.h12{height:38.125000pt;}
.h11{height:38.250000pt;}
.hf{height:38.828125pt;}
.h16{height:42.023438pt;}
.h10{height:46.692708pt;}
.hc{height:47.656250pt;}
.hd{height:47.778900pt;}
.hb{height:47.812500pt;}
.h17{height:48.132708pt;}
.h13{height:48.203125pt;}
.h3{height:50.476562pt;}
.h6{height:50.774503pt;}
.h15{height:52.344516pt;}
.h4{height:81.927344pt;}
.h5{height:101.708594pt;}
.h1{height:1058.000000pt;}
.h0{height:1058.268000pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xc{left:68.031467pt;}
.x11{left:69.921200pt;}
.x23{left:80.885867pt;}
.xa{left:85.417333pt;}
.x1{left:86.929067pt;}
.x29{left:90.708667pt;}
.x4{left:94.488133pt;}
.xe{left:98.271467pt;}
.x3{left:111.491467pt;}
.x7{left:117.170133pt;}
.xd{left:128.644800pt;}
.x22{left:136.924800pt;}
.x5{left:170.090800pt;}
.x24{left:179.597867pt;}
.x6{left:189.223467pt;}
.x15{left:224.833200pt;}
.x16{left:341.995867pt;}
.x13{left:349.579867pt;}
.xb{left:404.481333pt;}
.xf{left:406.298133pt;}
.x1a{left:425.200000pt;}
.x8{left:427.076800pt;}
.x2a{left:428.980667pt;}
.x10{left:436.538133pt;}
.x1f{left:445.618133pt;}
.x28{left:447.874133pt;}
.x14{left:454.081200pt;}
.x1c{left:455.440000pt;}
.x9{left:457.316800pt;}
.x12{left:469.814533pt;}
.x20{left:490.338133pt;}
.x21{left:515.521600pt;}
.x1e{left:518.618133pt;}
.x27{left:529.902533pt;}
.x1b{left:544.813333pt;}
.x19{left:589.770933pt;}
.x2{left:616.324800pt;}
.x17{left:634.646533pt;}
.x25{left:641.520933pt;}
.x18{left:647.339867pt;}
.x26{left:661.211867pt;}
.x1d{left:666.353200pt;}
}




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