
    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_187ccff2b6d301de301d519c.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.006348;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_048fd55025998e818b677062.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.011230;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_22f15e645913557392fa8604.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.000488;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_e017d447e68c0b4ac03a3784.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.004883;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);}
.v3{vertical-align:-15.120000px;}
.v2{vertical-align:-11.880000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:15.120000px;}
.ls30{letter-spacing:-0.541080px;}
.ls23{letter-spacing:-0.480960px;}
.ls1f{letter-spacing:-0.420840px;}
.ls3a{letter-spacing:-0.378000px;}
.lse{letter-spacing:-0.360720px;}
.ls19{letter-spacing:-0.336960px;}
.ls13{letter-spacing:-0.300600px;}
.ls14{letter-spacing:-0.240480px;}
.ls1e{letter-spacing:-0.180360px;}
.ls15{letter-spacing:-0.168480px;}
.ls39{letter-spacing:-0.162000px;}
.ls1d{letter-spacing:-0.120240px;}
.ls38{letter-spacing:-0.108000px;}
.lsb{letter-spacing:-0.095760px;}
.ls18{letter-spacing:-0.084240px;}
.ls12{letter-spacing:-0.072000px;}
.lsf{letter-spacing:-0.060120px;}
.ls17{letter-spacing:-0.042120px;}
.ls9{letter-spacing:0.000000px;}
.ls29{letter-spacing:0.054000px;}
.ls11{letter-spacing:0.060120px;}
.ls24{letter-spacing:0.072000px;}
.lsa{letter-spacing:0.095760px;}
.ls1{letter-spacing:0.101880px;}
.lsd{letter-spacing:0.108000px;}
.ls37{letter-spacing:0.118800px;}
.ls5{letter-spacing:0.120240px;}
.ls34{letter-spacing:0.124200px;}
.ls6{letter-spacing:0.126252px;}
.ls36{letter-spacing:0.129600px;}
.ls3b{letter-spacing:0.140400px;}
.lsc{letter-spacing:0.143640px;}
.ls22{letter-spacing:0.150300px;}
.ls25{letter-spacing:0.162000px;}
.ls16{letter-spacing:0.168480px;}
.ls2{letter-spacing:0.180000px;}
.ls10{letter-spacing:0.180360px;}
.ls0{letter-spacing:0.191520px;}
.ls28{letter-spacing:0.781560px;}
.ls33{letter-spacing:0.918000px;}
.ls4{letter-spacing:1.142280px;}
.ls35{letter-spacing:1.441800px;}
.ls1b{letter-spacing:1.503000px;}
.ls2b{letter-spacing:1.863720px;}
.ls3c{letter-spacing:2.322000px;}
.ls2a{letter-spacing:2.585160px;}
.ls8{letter-spacing:2.880000px;}
.ls3d{letter-spacing:3.402000px;}
.ls1c{letter-spacing:4.028040px;}
.ls20{letter-spacing:5.470920px;}
.ls2e{letter-spacing:6.553080px;}
.ls21{letter-spacing:7.274520px;}
.ls2d{letter-spacing:7.995960px;}
.ls2c{letter-spacing:8.356680px;}
.ls1a{letter-spacing:11.603160px;}
.ls7{letter-spacing:11.963880px;}
.ls2f{letter-spacing:12.324600px;}
.ls32{letter-spacing:13.500000px;}
.ls27{letter-spacing:14.849640px;}
.ls3{letter-spacing:32.319000px;}
.ls26{letter-spacing:50.140080px;}
.ls31{letter-spacing:849.226320px;}
.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;}
}
.ws4{word-spacing:-27.108000px;}
.wsa2{word-spacing:-18.072000px;}
.ws8c{word-spacing:-17.928000px;}
.ws41{word-spacing:-15.210360px;}
.ws43{word-spacing:-15.150240px;}
.ws8{word-spacing:-15.090120px;}
.ws7{word-spacing:-15.030000px;}
.ws6{word-spacing:-14.969880px;}
.ws42{word-spacing:-14.909760px;}
.ws44{word-spacing:-14.849640px;}
.wsa{word-spacing:-14.789520px;}
.ws9{word-spacing:-14.729400px;}
.wsa1{word-spacing:-14.549040px;}
.wsc1{word-spacing:-14.488920px;}
.ws108{word-spacing:-13.608000px;}
.wsd6{word-spacing:-13.554000px;}
.wsd7{word-spacing:-13.392000px;}
.wsd9{word-spacing:-13.338000px;}
.wsda{word-spacing:-13.122000px;}
.ws1{word-spacing:-12.161520px;}
.ws3{word-spacing:-12.113640px;}
.ws0{word-spacing:-12.065760px;}
.ws2{word-spacing:-11.970000px;}
.wsd{word-spacing:-10.698480px;}
.wsc{word-spacing:-10.530000px;}
.wse{word-spacing:-10.487880px;}
.wsf{word-spacing:-10.445760px;}
.wsb{word-spacing:-10.361520px;}
.ws5{word-spacing:-9.000000px;}
.wsd5{word-spacing:-8.280000px;}
.wsa4{word-spacing:-3.847680px;}
.wsa7{word-spacing:-3.787560px;}
.wsae{word-spacing:-3.486960px;}
.ws9e{word-spacing:-3.426840px;}
.wsa5{word-spacing:-3.306600px;}
.ws32{word-spacing:-3.246480px;}
.ws73{word-spacing:-3.240000px;}
.wsca{word-spacing:-3.186360px;}
.wse0{word-spacing:-3.132000px;}
.ws35{word-spacing:-3.126240px;}
.wse1{word-spacing:-3.078000px;}
.ws9a{word-spacing:-3.066120px;}
.wsf5{word-spacing:-2.970000px;}
.wsba{word-spacing:-2.945880px;}
.wsbd{word-spacing:-2.885760px;}
.wsea{word-spacing:-2.862000px;}
.ws99{word-spacing:-2.765520px;}
.wse3{word-spacing:-2.754000px;}
.wsbe{word-spacing:-2.705400px;}
.wseb{word-spacing:-2.700000px;}
.wsd0{word-spacing:-2.525040px;}
.wsd8{word-spacing:-2.520000px;}
.ws83{word-spacing:-2.464920px;}
.wsa9{word-spacing:-2.404800px;}
.wse2{word-spacing:-2.376000px;}
.ws89{word-spacing:-2.344680px;}
.wsb8{word-spacing:-2.284560px;}
.ws106{word-spacing:-2.214000px;}
.ws78{word-spacing:-2.164320px;}
.ws103{word-spacing:-2.106000px;}
.wscf{word-spacing:-2.104200px;}
.ws4a{word-spacing:-2.044080px;}
.ws105{word-spacing:-1.998000px;}
.ws37{word-spacing:-1.983960px;}
.ws104{word-spacing:-1.890000px;}
.ws98{word-spacing:-1.863720px;}
.ws77{word-spacing:-1.803600px;}
.wsaa{word-spacing:-1.743480px;}
.ws36{word-spacing:-1.683360px;}
.ws10c{word-spacing:-1.674000px;}
.ws93{word-spacing:-1.623240px;}
.ws11a{word-spacing:-1.620000px;}
.ws10d{word-spacing:-1.512000px;}
.ws119{word-spacing:-1.458000px;}
.ws6f{word-spacing:-1.442880px;}
.ws11b{word-spacing:-1.350000px;}
.ws4f{word-spacing:-1.322640px;}
.ws114{word-spacing:-1.296000px;}
.ws50{word-spacing:-1.262520px;}
.ws11c{word-spacing:-1.242000px;}
.ws7d{word-spacing:-1.142280px;}
.ws102{word-spacing:-1.134000px;}
.ws67{word-spacing:-1.082160px;}
.wse8{word-spacing:-1.080000px;}
.ws113{word-spacing:-1.026000px;}
.ws1a{word-spacing:-0.961920px;}
.ws7e{word-spacing:-0.901800px;}
.wse9{word-spacing:-0.810000px;}
.ws23{word-spacing:-0.721440px;}
.ws63{word-spacing:-0.601200px;}
.wsdf{word-spacing:-0.594000px;}
.ws22{word-spacing:-0.541080px;}
.wsbc{word-spacing:-0.480960px;}
.ws3c{word-spacing:-0.463320px;}
.wsee{word-spacing:-0.432000px;}
.wsa3{word-spacing:-0.420840px;}
.ws56{word-spacing:-0.360720px;}
.ws3e{word-spacing:-0.252720px;}
.ws1c{word-spacing:-0.240480px;}
.ws115{word-spacing:-0.216000px;}
.ws68{word-spacing:-0.180360px;}
.ws3a{word-spacing:-0.168480px;}
.wsde{word-spacing:-0.162000px;}
.ws8f{word-spacing:-0.120240px;}
.wsb9{word-spacing:-0.108000px;}
.ws45{word-spacing:-0.095760px;}
.ws3d{word-spacing:-0.084240px;}
.ws26{word-spacing:-0.060120px;}
.wse4{word-spacing:-0.054000px;}
.ws40{word-spacing:-0.042120px;}
.ws10{word-spacing:0.000000px;}
.ws39{word-spacing:0.042120px;}
.wse5{word-spacing:0.054000px;}
.ws27{word-spacing:0.060120px;}
.ws2a{word-spacing:0.072000px;}
.ws3b{word-spacing:0.084240px;}
.ws12{word-spacing:0.095760px;}
.wsb3{word-spacing:0.108000px;}
.ws1b{word-spacing:0.120240px;}
.wsb0{word-spacing:0.162000px;}
.ws38{word-spacing:0.168480px;}
.ws6c{word-spacing:0.180360px;}
.wsb4{word-spacing:0.240480px;}
.ws3f{word-spacing:0.252720px;}
.wse7{word-spacing:0.270000px;}
.ws11{word-spacing:0.287280px;}
.ws9d{word-spacing:0.300600px;}
.wsf3{word-spacing:0.324000px;}
.ws2d{word-spacing:0.360720px;}
.ws13{word-spacing:0.480960px;}
.ws112{word-spacing:0.540000px;}
.ws1e{word-spacing:0.541080px;}
.wsa0{word-spacing:0.661320px;}
.ws9f{word-spacing:0.721440px;}
.ws100{word-spacing:0.810000px;}
.ws1d{word-spacing:0.841680px;}
.wsdb{word-spacing:0.864000px;}
.ws14{word-spacing:0.901800px;}
.wsdc{word-spacing:0.918000px;}
.ws97{word-spacing:1.022040px;}
.wsdd{word-spacing:1.026000px;}
.wse6{word-spacing:1.080000px;}
.ws2c{word-spacing:1.082160px;}
.ws9c{word-spacing:1.142280px;}
.wsff{word-spacing:1.188000px;}
.ws2b{word-spacing:1.202400px;}
.ws101{word-spacing:1.242000px;}
.ws64{word-spacing:1.262520px;}
.ws53{word-spacing:1.322640px;}
.ws9b{word-spacing:1.382760px;}
.wsf8{word-spacing:1.404000px;}
.ws16{word-spacing:1.503000px;}
.ws17{word-spacing:1.563120px;}
.wsf4{word-spacing:1.566000px;}
.ws92{word-spacing:1.623240px;}
.ws2f{word-spacing:1.683360px;}
.wsf7{word-spacing:1.728000px;}
.ws7a{word-spacing:1.743480px;}
.wsf6{word-spacing:1.782000px;}
.ws7f{word-spacing:1.863720px;}
.ws30{word-spacing:1.923840px;}
.ws11e{word-spacing:1.944000px;}
.ws8e{word-spacing:1.983960px;}
.wsf2{word-spacing:1.998000px;}
.ws48{word-spacing:2.044080px;}
.ws5d{word-spacing:2.104200px;}
.wsf1{word-spacing:2.106000px;}
.ws49{word-spacing:2.224440px;}
.ws5c{word-spacing:2.284560px;}
.ws11d{word-spacing:2.322000px;}
.ws4d{word-spacing:2.404800px;}
.ws4e{word-spacing:2.464920px;}
.wsc8{word-spacing:2.525040px;}
.ws60{word-spacing:2.585160px;}
.ws5f{word-spacing:2.645280px;}
.wsf0{word-spacing:2.646000px;}
.ws8b{word-spacing:2.765520px;}
.ws8a{word-spacing:2.825640px;}
.wsa6{word-spacing:2.885760px;}
.ws46{word-spacing:2.945880px;}
.ws79{word-spacing:3.006000px;}
.wsef{word-spacing:3.024000px;}
.wsbf{word-spacing:3.126240px;}
.ws107{word-spacing:3.186000px;}
.ws7b{word-spacing:3.186360px;}
.ws57{word-spacing:3.306600px;}
.ws11f{word-spacing:3.348000px;}
.ws58{word-spacing:3.366720px;}
.wsb5{word-spacing:3.486960px;}
.ws59{word-spacing:3.547080px;}
.ws6d{word-spacing:3.667320px;}
.ws25{word-spacing:3.727440px;}
.ws5b{word-spacing:3.907800px;}
.ws21{word-spacing:4.028040px;}
.ws47{word-spacing:4.088160px;}
.ws10b{word-spacing:4.104000px;}
.wsab{word-spacing:4.208400px;}
.ws10e{word-spacing:4.266000px;}
.ws10a{word-spacing:4.320000px;}
.ws24{word-spacing:4.388760px;}
.ws10f{word-spacing:4.428000px;}
.ws54{word-spacing:4.448880px;}
.ws7c{word-spacing:4.569120px;}
.ws110{word-spacing:4.590000px;}
.wsad{word-spacing:4.629240px;}
.wsd3{word-spacing:4.749480px;}
.ws18{word-spacing:4.809600px;}
.ws76{word-spacing:4.869720px;}
.wsd1{word-spacing:4.989960px;}
.ws19{word-spacing:5.110200px;}
.ws69{word-spacing:5.170320px;}
.ws109{word-spacing:5.238000px;}
.ws91{word-spacing:5.290560px;}
.ws8d{word-spacing:5.350680px;}
.ws4c{word-spacing:5.470920px;}
.ws5e{word-spacing:5.531040px;}
.wsc3{word-spacing:5.591160px;}
.ws1f{word-spacing:5.651280px;}
.ws90{word-spacing:5.711400px;}
.wscb{word-spacing:5.831640px;}
.ws4b{word-spacing:5.891760px;}
.ws72{word-spacing:6.072120px;}
.wsf9{word-spacing:6.156000px;}
.ws86{word-spacing:6.192360px;}
.ws20{word-spacing:6.252480px;}
.ws116{word-spacing:6.318000px;}
.wsfa{word-spacing:6.426000px;}
.ws51{word-spacing:6.432840px;}
.ws96{word-spacing:6.553080px;}
.ws117{word-spacing:6.588000px;}
.ws52{word-spacing:6.613200px;}
.ws15{word-spacing:6.793560px;}
.ws55{word-spacing:6.913800px;}
.ws118{word-spacing:6.966000px;}
.ws5a{word-spacing:6.973920px;}
.ws94{word-spacing:7.094160px;}
.ws95{word-spacing:7.274520px;}
.ws31{word-spacing:7.334640px;}
.ws111{word-spacing:7.344000px;}
.wsd2{word-spacing:7.515000px;}
.ws6b{word-spacing:7.635240px;}
.ws2e{word-spacing:7.695360px;}
.ws74{word-spacing:7.995960px;}
.wsc5{word-spacing:8.056080px;}
.wsa8{word-spacing:8.176320px;}
.wsc2{word-spacing:8.296560px;}
.ws88{word-spacing:8.356680px;}
.wsb2{word-spacing:8.416800px;}
.wsac{word-spacing:8.717400px;}
.ws82{word-spacing:8.777520px;}
.wsd4{word-spacing:8.957880px;}
.wsce{word-spacing:9.078120px;}
.wsfe{word-spacing:9.126000px;}
.wsbb{word-spacing:9.138240px;}
.ws6a{word-spacing:9.438840px;}
.ws33{word-spacing:9.498960px;}
.ws34{word-spacing:9.799560px;}
.ws70{word-spacing:9.859680px;}
.ws71{word-spacing:10.160280px;}
.wsb1{word-spacing:10.521000px;}
.ws84{word-spacing:10.821600px;}
.ws85{word-spacing:10.881720px;}
.ws6e{word-spacing:10.941840px;}
.wsaf{word-spacing:11.242440px;}
.wscd{word-spacing:11.302560px;}
.ws75{word-spacing:11.663280px;}
.wsfb{word-spacing:11.718000px;}
.wsc9{word-spacing:11.843640px;}
.wsfd{word-spacing:11.934000px;}
.ws80{word-spacing:11.963880px;}
.ws81{word-spacing:12.024000px;}
.wsfc{word-spacing:12.150000px;}
.wsc6{word-spacing:12.204360px;}
.ws29{word-spacing:12.324600px;}
.ws87{word-spacing:12.384720px;}
.ws28{word-spacing:12.565080px;}
.wsc7{word-spacing:12.685320px;}
.wscc{word-spacing:13.406760px;}
.wsb7{word-spacing:14.488920px;}
.wsb6{word-spacing:14.849640px;}
.wsc4{word-spacing:17.374680px;}
.ws65{word-spacing:22.845600px;}
.wsc0{word-spacing:23.146200px;}
.ws66{word-spacing:23.206320px;}
.ws61{word-spacing:23.567040px;}
.ws62{word-spacing:23.687280px;}
.wsed{word-spacing:72.360000px;}
.wsec{word-spacing:72.522000px;}
._4{margin-left:-3.383640px;}
._c{margin-left:-2.089440px;}
._1{margin-left:-1.029420px;}
._2{width:1.515024px;}
._6{width:2.845008px;}
._8{width:3.965940px;}
._5{width:5.831280px;}
._9{width:6.912720px;}
._a{width:8.717400px;}
._d{width:10.960020px;}
._3{width:12.204360px;}
._b{width:103.111200px;}
._0{width:1620.067680px;}
._7{width:2400.002136px;}
.fc1{color:transparent;}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:29.880000px;}
.fs8{font-size:33.120000px;}
.fs3{font-size:36.000000px;}
.fs6{font-size:42.120000px;}
.fs1{font-size:47.880000px;}
.fs7{font-size:54.000000px;}
.fs0{font-size:60.120000px;}
.fs5{font-size:72.000000px;}
.fs2{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y49{bottom:3.150000px;}
.y101{bottom:4.500000px;}
.y11e{bottom:14.670000px;}
.y3{bottom:20.250000px;}
.y48{bottom:21.150000px;}
.y119{bottom:24.750000px;}
.y47{bottom:39.150000px;}
.y6{bottom:49.500000px;}
.y4c{bottom:50.400000px;}
.y46{bottom:57.150000px;}
.y5{bottom:63.630000px;}
.y45{bottom:75.150000px;}
.yad{bottom:75.693150px;}
.yfe{bottom:75.730230px;}
.y1ae{bottom:79.740000px;}
.y7f{bottom:80.478540px;}
.y15e{bottom:80.610300px;}
.y14e{bottom:87.715620px;}
.y12b{bottom:88.237080px;}
.y44{bottom:93.150000px;}
.yac{bottom:96.669270px;}
.yd8{bottom:96.684660px;}
.yfd{bottom:96.697080px;}
.y7e{bottom:101.445390px;}
.y15d{bottom:101.577150px;}
.y1ad{bottom:102.685500px;}
.y14d{bottom:108.772650px;}
.y12a{bottom:109.203930px;}
.y42{bottom:111.150000px;}
.y183{bottom:115.303230px;}
.yab{bottom:117.726300px;}
.yd7{bottom:117.741690px;}
.yfc{bottom:117.754110px;}
.y2f{bottom:120.690000px;}
.y7d{bottom:122.502420px;}
.y15c{bottom:122.634180px;}
.y2e{bottom:124.038540px;}
.y14c{bottom:129.739500px;}
.y129{bottom:130.170780px;}
.y1ac{bottom:130.860000px;}
.y40{bottom:138.150000px;}
.yaa{bottom:138.693150px;}
.yd6{bottom:138.708540px;}
.yfb{bottom:138.720960px;}
.y182{bottom:138.795120px;}
.y7c{bottom:143.469270px;}
.y15b{bottom:143.601030px;}
.y2d{bottom:145.005390px;}
.y14b{bottom:150.706350px;}
.y128{bottom:151.227810px;}
.y1ab{bottom:151.560000px;}
.ya9{bottom:159.669270px;}
.yd5{bottom:159.675390px;}
.yfa{bottom:159.687810px;}
.y181{bottom:159.761970px;}
.y7b{bottom:164.436120px;}
.y15a{bottom:164.567880px;}
.y3e{bottom:165.150000px;}
.y2c{bottom:165.972240px;}
.y14a{bottom:171.763380px;}
.y127{bottom:172.194660px;}
.y1aa{bottom:176.035500px;}
.y1d6{bottom:176.503500px;}
.ya8{bottom:180.726300px;}
.yd4{bottom:180.732420px;}
.yf9{bottom:180.744840px;}
.y180{bottom:180.819000px;}
.y3c{bottom:183.150000px;}
.y7a{bottom:185.493150px;}
.y159{bottom:185.624910px;}
.y2b{bottom:187.029270px;}
.y149{bottom:192.730230px;}
.y126{bottom:193.161510px;}
.y1d5{bottom:197.469000px;}
.y3a{bottom:201.150000px;}
.ya7{bottom:201.693150px;}
.yd3{bottom:201.699270px;}
.yf8{bottom:201.711690px;}
.y17f{bottom:201.785850px;}
.y1a9{bottom:204.210000px;}
.y79{bottom:206.515620px;}
.y158{bottom:206.591760px;}
.y2a{bottom:207.996120px;}
.y148{bottom:213.697080px;}
.y125{bottom:214.218540px;}
.y1d4{bottom:218.529000px;}
.y38{bottom:219.150000px;}
.yd2{bottom:222.666120px;}
.ya6{bottom:222.669270px;}
.yf7{bottom:222.678540px;}
.y17e{bottom:222.752700px;}
.y1a8{bottom:224.914500px;}
.y78{bottom:227.482470px;}
.y157{bottom:227.558610px;}
.y29{bottom:228.962970px;}
.y43{bottom:231.840000px;}
.y147{bottom:234.754110px;}
.y124{bottom:235.185390px;}
.y1d3{bottom:239.494500px;}
.yd1{bottom:243.723150px;}
.ya5{bottom:243.726300px;}
.yf6{bottom:243.735570px;}
.y17d{bottom:243.809730px;}
.y36{bottom:246.150000px;}
.y77{bottom:248.539500px;}
.y156{bottom:248.615640px;}
.y28{bottom:250.035570px;}
.y1a7{bottom:253.170000px;}
.y146{bottom:255.720960px;}
.y123{bottom:256.152240px;}
.y41{bottom:258.840000px;}
.y1d2{bottom:260.460000px;}
.y34{bottom:264.150000px;}
.yd0{bottom:264.690000px;}
.ya4{bottom:264.693150px;}
.yf5{bottom:264.702420px;}
.y17c{bottom:264.776580px;}
.y76{bottom:269.506350px;}
.y155{bottom:269.582490px;}
.y27{bottom:271.002420px;}
.y1a6{bottom:273.789000px;}
.y145{bottom:276.687810px;}
.y122{bottom:277.209270px;}
.y32{bottom:282.150000px;}
.yf4{bottom:285.669270px;}
.ya3{bottom:285.672240px;}
.y17b{bottom:285.743430px;}
.y3f{bottom:285.840000px;}
.y75{bottom:290.473200px;}
.y154{bottom:290.549340px;}
.ycf{bottom:291.060000px;}
.y26{bottom:291.969270px;}
.y144{bottom:297.744840px;}
.y121{bottom:298.176120px;}
.y1a5{bottom:298.264500px;}
.y30{bottom:300.150000px;}
.y1d1{bottom:302.580000px;}
.y3d{bottom:303.840000px;}
.yf3{bottom:306.726300px;}
.ya2{bottom:306.729270px;}
.y17a{bottom:306.800460px;}
.y74{bottom:311.530230px;}
.y153{bottom:311.606370px;}
.y25{bottom:313.026300px;}
.y143{bottom:318.711690px;}
.y120{bottom:319.142970px;}
.y3b{bottom:321.840000px;}
.y1a4{bottom:326.520000px;}
.y1d0{bottom:327.055500px;}
.yf2{bottom:327.693150px;}
.ya1{bottom:327.696120px;}
.y179{bottom:327.767310px;}
.yce{bottom:332.484660px;}
.y73{bottom:332.497080px;}
.y152{bottom:332.573220px;}
.y24{bottom:333.993150px;}
.y142{bottom:339.678540px;}
.y39{bottom:339.840000px;}
.y11f{bottom:340.200000px;}
.y1a3{bottom:347.134500px;}
.yf1{bottom:348.660000px;}
.ya0{bottom:348.662970px;}
.y178{bottom:348.734160px;}
.ycd{bottom:353.451510px;}
.y72{bottom:353.463930px;}
.y151{bottom:353.540070px;}
.y23{bottom:354.969270px;}
.y1cf{bottom:355.230000px;}
.y11d{bottom:360.720000px;}
.y141{bottom:360.735570px;}
.y37{bottom:366.840000px;}
.y9f{bottom:369.729270px;}
.y177{bottom:369.791190px;}
.ycc{bottom:374.508540px;}
.y71{bottom:374.520960px;}
.y150{bottom:374.597100px;}
.yf0{bottom:375.030000px;}
.y11c{bottom:375.390000px;}
.y1ce{bottom:375.934500px;}
.y22{bottom:376.026300px;}
.y140{bottom:381.702420px;}
.y35{bottom:384.840000px;}
.y9e{bottom:390.696120px;}
.y176{bottom:390.758040px;}
.ycb{bottom:395.475390px;}
.y70{bottom:395.487810px;}
.y14f{bottom:395.563950px;}
.y1a2{bottom:396.085500px;}
.y21{bottom:396.993150px;}
.y13f{bottom:402.669270px;}
.y33{bottom:402.840000px;}
.y1cd{bottom:404.190000px;}
.y11b{bottom:405.720000px;}
.y9d{bottom:411.662970px;}
.y175{bottom:411.724890px;}
.yca{bottom:416.442240px;}
.y6f{bottom:416.454660px;}
.yef{bottom:416.530800px;}
.y20{bottom:417.960000px;}
.y31{bottom:420.840000px;}
.y13e{bottom:423.726300px;}
.y1a1{bottom:424.260000px;}
.y1cc{bottom:424.809000px;}
.y9c{bottom:432.729270px;}
.y174{bottom:432.781920px;}
.yc9{bottom:437.499270px;}
.y6e{bottom:437.511690px;}
.yee{bottom:437.587830px;}
.y1f{bottom:444.330000px;}
.y13d{bottom:444.693150px;}
.y1a0{bottom:444.964500px;}
.y1cb{bottom:449.284500px;}
.y11a{bottom:450.720000px;}
.y9b{bottom:453.696120px;}
.y173{bottom:453.748770px;}
.yc8{bottom:458.466120px;}
.y6d{bottom:458.478540px;}
.yed{bottom:458.554680px;}
.y13c{bottom:465.660000px;}
.y19f{bottom:473.220000px;}
.y9a{bottom:474.662970px;}
.y172{bottom:474.715620px;}
.y1ca{bottom:477.540000px;}
.yc7{bottom:479.432970px;}
.y6c{bottom:479.445390px;}
.yec{bottom:479.521530px;}
.y13b{bottom:492.030000px;}
.y19e{bottom:493.839000px;}
.y118{bottom:495.630000px;}
.y99{bottom:495.732420px;}
.y171{bottom:495.772650px;}
.y6b{bottom:500.502420px;}
.yc6{bottom:500.505570px;}
.yeb{bottom:500.578560px;}
.y1c9{bottom:501.930000px;}
.y1e{bottom:506.340000px;}
.y117{bottom:510.300000px;}
.y98{bottom:516.699270px;}
.y170{bottom:516.739500px;}
.y19d{bottom:518.314500px;}
.y6a{bottom:521.469270px;}
.yc5{bottom:521.472420px;}
.yea{bottom:521.545410px;}
.y1c8{bottom:522.634500px;}
.y1d{bottom:527.443560px;}
.y13a{bottom:533.467080px;}
.y97{bottom:537.666120px;}
.y16f{bottom:537.706350px;}
.y116{bottom:541.350000px;}
.y69{bottom:542.436120px;}
.yc4{bottom:542.439270px;}
.ye9{bottom:542.512260px;}
.y19c{bottom:546.570000px;}
.y1c{bottom:548.410410px;}
.y1c7{bottom:550.890000px;}
.y139{bottom:554.524110px;}
.y96{bottom:558.723150px;}
.y16e{bottom:558.763380px;}
.y68{bottom:563.493150px;}
.yc3{bottom:563.496300px;}
.ye8{bottom:563.569290px;}
.y19b{bottom:567.184500px;}
.y1c6{bottom:571.504500px;}
.y138{bottom:575.490960px;}
.y115{bottom:578.880000px;}
.y95{bottom:579.699270px;}
.y16d{bottom:579.730230px;}
.yc2{bottom:584.463150px;}
.y67{bottom:584.469270px;}
.ye7{bottom:584.536140px;}
.y1b{bottom:587.473380px;}
.y19a{bottom:595.440000px;}
.y137{bottom:596.457810px;}
.y1c5{bottom:599.760000px;}
.y94{bottom:600.666120px;}
.y16c{bottom:600.697080px;}
.yc1{bottom:605.432970px;}
.y66{bottom:605.436120px;}
.ye6{bottom:605.502990px;}
.y1a{bottom:608.440230px;}
.y199{bottom:616.135500px;}
.y136{bottom:617.514840px;}
.y114{bottom:618.343200px;}
.y1c4{bottom:620.455500px;}
.y93{bottom:621.723150px;}
.y16b{bottom:621.754110px;}
.y65{bottom:626.493150px;}
.yc0{bottom:626.499270px;}
.ye5{bottom:626.560020px;}
.y19{bottom:629.407080px;}
.y135{bottom:638.481690px;}
.y113{bottom:639.310050px;}
.y92{bottom:642.696120px;}
.y16a{bottom:642.720960px;}
.y198{bottom:644.310000px;}
.y64{bottom:647.463150px;}
.ybf{bottom:647.466120px;}
.ye4{bottom:647.526870px;}
.y1c3{bottom:648.630000px;}
.y18{bottom:650.464110px;}
.y134{bottom:659.448540px;}
.y112{bottom:660.367080px;}
.y91{bottom:663.662970px;}
.y169{bottom:663.687810px;}
.y197{bottom:665.005500px;}
.y63{bottom:668.432970px;}
.ye3{bottom:668.493720px;}
.y1c2{bottom:669.334500px;}
.y17{bottom:671.430960px;}
.y133{bottom:680.505570px;}
.y111{bottom:681.333930px;}
.y90{bottom:684.732420px;}
.y168{bottom:684.744840px;}
.y62{bottom:689.493150px;}
.ybe{bottom:689.502420px;}
.ye2{bottom:689.550750px;}
.y16{bottom:692.397810px;}
.y196{bottom:693.180000px;}
.y1c1{bottom:697.590000px;}
.y132{bottom:701.472420px;}
.y110{bottom:702.300780px;}
.y8f{bottom:705.699270px;}
.y167{bottom:705.711690px;}
.y61{bottom:710.469270px;}
.ye1{bottom:710.517600px;}
.y15{bottom:713.454840px;}
.y195{bottom:713.884500px;}
.y1c0{bottom:718.209000px;}
.y131{bottom:722.439270px;}
.y10f{bottom:723.357810px;}
.y8e{bottom:726.666120px;}
.y166{bottom:726.678540px;}
.y60{bottom:731.436120px;}
.ye0{bottom:731.484450px;}
.y14{bottom:734.421690px;}
.y194{bottom:742.140000px;}
.y1bf{bottom:742.684500px;}
.y130{bottom:743.496300px;}
.y10e{bottom:744.324660px;}
.y8d{bottom:747.723150px;}
.y165{bottom:747.735570px;}
.y5f{bottom:752.493150px;}
.ydf{bottom:752.541480px;}
.y13{bottom:755.388540px;}
.y193{bottom:762.759000px;}
.y12f{bottom:764.463150px;}
.y10d{bottom:765.291510px;}
.y8c{bottom:768.699270px;}
.y164{bottom:768.702420px;}
.y1be{bottom:770.940000px;}
.ybd{bottom:773.466120px;}
.y5e{bottom:773.469270px;}
.yde{bottom:773.508330px;}
.y12{bottom:776.445570px;}
.y12e{bottom:785.430000px;}
.y10c{bottom:786.348540px;}
.y192{bottom:787.234500px;}
.y8b{bottom:789.666120px;}
.y163{bottom:789.669270px;}
.y1bd{bottom:791.559000px;}
.ybc{bottom:794.432970px;}
.y5d{bottom:794.436120px;}
.ydd{bottom:794.475180px;}
.y11{bottom:797.412420px;}
.y10b{bottom:807.315390px;}
.y8a{bottom:810.723150px;}
.y162{bottom:810.726300px;}
.y191{bottom:815.490000px;}
.y5c{bottom:815.493150px;}
.ybb{bottom:815.502420px;}
.ydc{bottom:815.532210px;}
.y1bc{bottom:816.034500px;}
.y10{bottom:818.379270px;}
.y12d{bottom:824.040000px;}
.y10a{bottom:828.282240px;}
.y89{bottom:831.690000px;}
.y161{bottom:831.693150px;}
.y190{bottom:836.104500px;}
.yba{bottom:836.469270px;}
.y5b{bottom:836.475390px;}
.ydb{bottom:836.499060px;}
.yf{bottom:839.436300px;}
.y1bb{bottom:844.290000px;}
.y109{bottom:849.339270px;}
.y12c{bottom:849.965940px;}
.y160{bottom:852.660000px;}
.yb9{bottom:857.436120px;}
.y5a{bottom:857.442240px;}
.yda{bottom:857.465910px;}
.y88{bottom:858.060000px;}
.ye{bottom:860.403150px;}
.y18f{bottom:864.360000px;}
.y1ba{bottom:864.904500px;}
.y108{bottom:870.306120px;}
.yb8{bottom:878.493150px;}
.y59{bottom:878.499270px;}
.yd9{bottom:878.522940px;}
.y15f{bottom:879.030000px;}
.yd{bottom:881.370000px;}
.y18e{bottom:885.055500px;}
.y107{bottom:891.272970px;}
.y1b9{bottom:893.160000px;}
.y58{bottom:899.466120px;}
.yb7{bottom:899.487810px;}
.y87{bottom:899.489790px;}
.yc{bottom:911.430000px;}
.y106{bottom:912.330000px;}
.y18d{bottom:913.230000px;}
.y1b8{bottom:913.855500px;}
.y57{bottom:920.432970px;}
.yb6{bottom:920.454660px;}
.y86{bottom:920.456640px;}
.y105{bottom:932.850000px;}
.y18c{bottom:933.934500px;}
.y56{bottom:941.508540px;}
.yb5{bottom:941.511690px;}
.y85{bottom:941.513670px;}
.y1b7{bottom:942.030000px;}
.yb{bottom:952.470000px;}
.y104{bottom:957.600000px;}
.y18b{bottom:962.190000px;}
.y55{bottom:962.475390px;}
.yb4{bottom:962.478540px;}
.y84{bottom:962.480520px;}
.y1b6{bottom:962.734500px;}
.y103{bottom:982.350000px;}
.y18a{bottom:982.809000px;}
.y54{bottom:983.442240px;}
.yb3{bottom:983.445390px;}
.y83{bottom:983.447370px;}
.y1b5{bottom:990.990000px;}
.ya{bottom:993.510000px;}
.y53{bottom:1004.499270px;}
.yb2{bottom:1004.502420px;}
.y82{bottom:1004.504400px;}
.y102{bottom:1007.100000px;}
.y189{bottom:1007.284500px;}
.y1b4{bottom:1011.604500px;}
.y52{bottom:1025.466120px;}
.yb1{bottom:1025.469270px;}
.y81{bottom:1025.471250px;}
.y100{bottom:1032.570000px;}
.y9{bottom:1035.360000px;}
.y188{bottom:1035.540000px;}
.y1b3{bottom:1039.860000px;}
.y51{bottom:1046.432970px;}
.yb0{bottom:1046.436120px;}
.y80{bottom:1046.438100px;}
.y187{bottom:1056.154500px;}
.y1b2{bottom:1060.560000px;}
.yaf{bottom:1067.493150px;}
.y50{bottom:1067.495130px;}
.yff{bottom:1070.010000px;}
.y8{bottom:1071.810000px;}
.y186{bottom:1084.410000px;}
.y1b1{bottom:1084.954500px;}
.y4f{bottom:1088.461980px;}
.yae{bottom:1088.463150px;}
.y185{bottom:1102.410000px;}
.y7{bottom:1104.660000px;}
.y4e{bottom:1109.428830px;}
.y1b0{bottom:1113.210000px;}
.y184{bottom:1128.060000px;}
.y4d{bottom:1130.485860px;}
.y1af{bottom:1131.207300px;}
.y4{bottom:1142.100000px;}
.y1{bottom:1157.130000px;}
.y2{bottom:1177.380000px;}
.y4b{bottom:1186.644150px;}
.y4a{bottom:1196.280000px;}
.h13{height:20.250000px;}
.h9{height:23.071465px;}
.h17{height:24.298945px;}
.he{height:30.314883px;}
.hc{height:30.746777px;}
.hd{height:31.014141px;}
.h5{height:34.460508px;}
.hf{height:34.951465px;}
.h6{height:35.255391px;}
.h18{height:39.418945px;}
.h12{height:39.761719px;}
.h15{height:40.410000px;}
.h14{height:40.500000px;}
.h7{height:43.269961px;}
.h4{height:43.886426px;}
.h11{height:43.891106px;}
.h3{height:44.268047px;}
.h2{height:51.751500px;}
.h16{height:52.602705px;}
.h10{height:52.896465px;}
.ha{height:53.015625px;}
.h8{height:79.523438px;}
.hb{height:324.000000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w9{width:104.670000px;}
.w6{width:105.750000px;}
.w8{width:121.050000px;}
.w7{width:129.600000px;}
.w3{width:170.460000px;}
.w4{width:180.720000px;}
.wa{width:186.750000px;}
.w5{width:221.670000px;}
.w2{width:275.940000px;}
.wb{width:289.440000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1d{left:1.080000px;}
.x2d{left:7.200000px;}
.x31{left:10.710000px;}
.x19{left:12.510000px;}
.x25{left:15.300000px;}
.x27{left:17.280000px;}
.x2b{left:19.170000px;}
.x1e{left:28.350000px;}
.x28{left:32.130000px;}
.x16{left:33.210000px;}
.x1b{left:43.470000px;}
.x1f{left:50.760000px;}
.x21{left:52.920000px;}
.x1{left:54.000000px;}
.x1c{left:55.350000px;}
.x1a{left:65.250000px;}
.x29{left:73.080000px;}
.x2c{left:76.680000px;}
.x11{left:79.200000px;}
.x14{left:80.460000px;}
.x26{left:86.940000px;}
.x23{left:91.980000px;}
.xa{left:96.210000px;}
.xd{left:98.370000px;}
.x9{left:101.430000px;}
.xb{left:102.960000px;}
.xc{left:105.840000px;}
.x2e{left:107.190000px;}
.x2a{left:121.410000px;}
.x32{left:123.390000px;}
.x10{left:128.700000px;}
.x5{left:170.460000px;}
.xe{left:176.940000px;}
.x30{left:185.400000px;}
.xf{left:187.740000px;}
.x6{left:249.570000px;}
.x7{left:250.740000px;}
.x13{left:251.910000px;}
.x24{left:260.010000px;}
.x2{left:272.880000px;}
.x2f{left:277.560000px;}
.x12{left:281.433960px;}
.x8{left:282.600000px;}
.x20{left:358.290000px;}
.x15{left:475.830000px;}
.x3{left:499.950000px;}
.x22{left:547.290000px;}
.x17{left:583.830000px;}
.x4{left:670.050000px;}
.x18{left:715.680000px;}
.x33{left:838.986840px;}
@media print{
.v3{vertical-align:-13.440000pt;}
.v2{vertical-align:-10.560000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:13.440000pt;}
.ls30{letter-spacing:-0.480960pt;}
.ls23{letter-spacing:-0.427520pt;}
.ls1f{letter-spacing:-0.374080pt;}
.ls3a{letter-spacing:-0.336000pt;}
.lse{letter-spacing:-0.320640pt;}
.ls19{letter-spacing:-0.299520pt;}
.ls13{letter-spacing:-0.267200pt;}
.ls14{letter-spacing:-0.213760pt;}
.ls1e{letter-spacing:-0.160320pt;}
.ls15{letter-spacing:-0.149760pt;}
.ls39{letter-spacing:-0.144000pt;}
.ls1d{letter-spacing:-0.106880pt;}
.ls38{letter-spacing:-0.096000pt;}
.lsb{letter-spacing:-0.085120pt;}
.ls18{letter-spacing:-0.074880pt;}
.ls12{letter-spacing:-0.064000pt;}
.lsf{letter-spacing:-0.053440pt;}
.ls17{letter-spacing:-0.037440pt;}
.ls9{letter-spacing:0.000000pt;}
.ls29{letter-spacing:0.048000pt;}
.ls11{letter-spacing:0.053440pt;}
.ls24{letter-spacing:0.064000pt;}
.lsa{letter-spacing:0.085120pt;}
.ls1{letter-spacing:0.090560pt;}
.lsd{letter-spacing:0.096000pt;}
.ls37{letter-spacing:0.105600pt;}
.ls5{letter-spacing:0.106880pt;}
.ls34{letter-spacing:0.110400pt;}
.ls6{letter-spacing:0.112224pt;}
.ls36{letter-spacing:0.115200pt;}
.ls3b{letter-spacing:0.124800pt;}
.lsc{letter-spacing:0.127680pt;}
.ls22{letter-spacing:0.133600pt;}
.ls25{letter-spacing:0.144000pt;}
.ls16{letter-spacing:0.149760pt;}
.ls2{letter-spacing:0.160000pt;}
.ls10{letter-spacing:0.160320pt;}
.ls0{letter-spacing:0.170240pt;}
.ls28{letter-spacing:0.694720pt;}
.ls33{letter-spacing:0.816000pt;}
.ls4{letter-spacing:1.015360pt;}
.ls35{letter-spacing:1.281600pt;}
.ls1b{letter-spacing:1.336000pt;}
.ls2b{letter-spacing:1.656640pt;}
.ls3c{letter-spacing:2.064000pt;}
.ls2a{letter-spacing:2.297920pt;}
.ls8{letter-spacing:2.560000pt;}
.ls3d{letter-spacing:3.024000pt;}
.ls1c{letter-spacing:3.580480pt;}
.ls20{letter-spacing:4.863040pt;}
.ls2e{letter-spacing:5.824960pt;}
.ls21{letter-spacing:6.466240pt;}
.ls2d{letter-spacing:7.107520pt;}
.ls2c{letter-spacing:7.428160pt;}
.ls1a{letter-spacing:10.313920pt;}
.ls7{letter-spacing:10.634560pt;}
.ls2f{letter-spacing:10.955200pt;}
.ls32{letter-spacing:12.000000pt;}
.ls27{letter-spacing:13.199680pt;}
.ls3{letter-spacing:28.728000pt;}
.ls26{letter-spacing:44.568960pt;}
.ls31{letter-spacing:754.867840pt;}
.ws4{word-spacing:-24.096000pt;}
.wsa2{word-spacing:-16.064000pt;}
.ws8c{word-spacing:-15.936000pt;}
.ws41{word-spacing:-13.520320pt;}
.ws43{word-spacing:-13.466880pt;}
.ws8{word-spacing:-13.413440pt;}
.ws7{word-spacing:-13.360000pt;}
.ws6{word-spacing:-13.306560pt;}
.ws42{word-spacing:-13.253120pt;}
.ws44{word-spacing:-13.199680pt;}
.wsa{word-spacing:-13.146240pt;}
.ws9{word-spacing:-13.092800pt;}
.wsa1{word-spacing:-12.932480pt;}
.wsc1{word-spacing:-12.879040pt;}
.ws108{word-spacing:-12.096000pt;}
.wsd6{word-spacing:-12.048000pt;}
.wsd7{word-spacing:-11.904000pt;}
.wsd9{word-spacing:-11.856000pt;}
.wsda{word-spacing:-11.664000pt;}
.ws1{word-spacing:-10.810240pt;}
.ws3{word-spacing:-10.767680pt;}
.ws0{word-spacing:-10.725120pt;}
.ws2{word-spacing:-10.640000pt;}
.wsd{word-spacing:-9.509760pt;}
.wsc{word-spacing:-9.360000pt;}
.wse{word-spacing:-9.322560pt;}
.wsf{word-spacing:-9.285120pt;}
.wsb{word-spacing:-9.210240pt;}
.ws5{word-spacing:-8.000000pt;}
.wsd5{word-spacing:-7.360000pt;}
.wsa4{word-spacing:-3.420160pt;}
.wsa7{word-spacing:-3.366720pt;}
.wsae{word-spacing:-3.099520pt;}
.ws9e{word-spacing:-3.046080pt;}
.wsa5{word-spacing:-2.939200pt;}
.ws32{word-spacing:-2.885760pt;}
.ws73{word-spacing:-2.880000pt;}
.wsca{word-spacing:-2.832320pt;}
.wse0{word-spacing:-2.784000pt;}
.ws35{word-spacing:-2.778880pt;}
.wse1{word-spacing:-2.736000pt;}
.ws9a{word-spacing:-2.725440pt;}
.wsf5{word-spacing:-2.640000pt;}
.wsba{word-spacing:-2.618560pt;}
.wsbd{word-spacing:-2.565120pt;}
.wsea{word-spacing:-2.544000pt;}
.ws99{word-spacing:-2.458240pt;}
.wse3{word-spacing:-2.448000pt;}
.wsbe{word-spacing:-2.404800pt;}
.wseb{word-spacing:-2.400000pt;}
.wsd0{word-spacing:-2.244480pt;}
.wsd8{word-spacing:-2.240000pt;}
.ws83{word-spacing:-2.191040pt;}
.wsa9{word-spacing:-2.137600pt;}
.wse2{word-spacing:-2.112000pt;}
.ws89{word-spacing:-2.084160pt;}
.wsb8{word-spacing:-2.030720pt;}
.ws106{word-spacing:-1.968000pt;}
.ws78{word-spacing:-1.923840pt;}
.ws103{word-spacing:-1.872000pt;}
.wscf{word-spacing:-1.870400pt;}
.ws4a{word-spacing:-1.816960pt;}
.ws105{word-spacing:-1.776000pt;}
.ws37{word-spacing:-1.763520pt;}
.ws104{word-spacing:-1.680000pt;}
.ws98{word-spacing:-1.656640pt;}
.ws77{word-spacing:-1.603200pt;}
.wsaa{word-spacing:-1.549760pt;}
.ws36{word-spacing:-1.496320pt;}
.ws10c{word-spacing:-1.488000pt;}
.ws93{word-spacing:-1.442880pt;}
.ws11a{word-spacing:-1.440000pt;}
.ws10d{word-spacing:-1.344000pt;}
.ws119{word-spacing:-1.296000pt;}
.ws6f{word-spacing:-1.282560pt;}
.ws11b{word-spacing:-1.200000pt;}
.ws4f{word-spacing:-1.175680pt;}
.ws114{word-spacing:-1.152000pt;}
.ws50{word-spacing:-1.122240pt;}
.ws11c{word-spacing:-1.104000pt;}
.ws7d{word-spacing:-1.015360pt;}
.ws102{word-spacing:-1.008000pt;}
.ws67{word-spacing:-0.961920pt;}
.wse8{word-spacing:-0.960000pt;}
.ws113{word-spacing:-0.912000pt;}
.ws1a{word-spacing:-0.855040pt;}
.ws7e{word-spacing:-0.801600pt;}
.wse9{word-spacing:-0.720000pt;}
.ws23{word-spacing:-0.641280pt;}
.ws63{word-spacing:-0.534400pt;}
.wsdf{word-spacing:-0.528000pt;}
.ws22{word-spacing:-0.480960pt;}
.wsbc{word-spacing:-0.427520pt;}
.ws3c{word-spacing:-0.411840pt;}
.wsee{word-spacing:-0.384000pt;}
.wsa3{word-spacing:-0.374080pt;}
.ws56{word-spacing:-0.320640pt;}
.ws3e{word-spacing:-0.224640pt;}
.ws1c{word-spacing:-0.213760pt;}
.ws115{word-spacing:-0.192000pt;}
.ws68{word-spacing:-0.160320pt;}
.ws3a{word-spacing:-0.149760pt;}
.wsde{word-spacing:-0.144000pt;}
.ws8f{word-spacing:-0.106880pt;}
.wsb9{word-spacing:-0.096000pt;}
.ws45{word-spacing:-0.085120pt;}
.ws3d{word-spacing:-0.074880pt;}
.ws26{word-spacing:-0.053440pt;}
.wse4{word-spacing:-0.048000pt;}
.ws40{word-spacing:-0.037440pt;}
.ws10{word-spacing:0.000000pt;}
.ws39{word-spacing:0.037440pt;}
.wse5{word-spacing:0.048000pt;}
.ws27{word-spacing:0.053440pt;}
.ws2a{word-spacing:0.064000pt;}
.ws3b{word-spacing:0.074880pt;}
.ws12{word-spacing:0.085120pt;}
.wsb3{word-spacing:0.096000pt;}
.ws1b{word-spacing:0.106880pt;}
.wsb0{word-spacing:0.144000pt;}
.ws38{word-spacing:0.149760pt;}
.ws6c{word-spacing:0.160320pt;}
.wsb4{word-spacing:0.213760pt;}
.ws3f{word-spacing:0.224640pt;}
.wse7{word-spacing:0.240000pt;}
.ws11{word-spacing:0.255360pt;}
.ws9d{word-spacing:0.267200pt;}
.wsf3{word-spacing:0.288000pt;}
.ws2d{word-spacing:0.320640pt;}
.ws13{word-spacing:0.427520pt;}
.ws112{word-spacing:0.480000pt;}
.ws1e{word-spacing:0.480960pt;}
.wsa0{word-spacing:0.587840pt;}
.ws9f{word-spacing:0.641280pt;}
.ws100{word-spacing:0.720000pt;}
.ws1d{word-spacing:0.748160pt;}
.wsdb{word-spacing:0.768000pt;}
.ws14{word-spacing:0.801600pt;}
.wsdc{word-spacing:0.816000pt;}
.ws97{word-spacing:0.908480pt;}
.wsdd{word-spacing:0.912000pt;}
.wse6{word-spacing:0.960000pt;}
.ws2c{word-spacing:0.961920pt;}
.ws9c{word-spacing:1.015360pt;}
.wsff{word-spacing:1.056000pt;}
.ws2b{word-spacing:1.068800pt;}
.ws101{word-spacing:1.104000pt;}
.ws64{word-spacing:1.122240pt;}
.ws53{word-spacing:1.175680pt;}
.ws9b{word-spacing:1.229120pt;}
.wsf8{word-spacing:1.248000pt;}
.ws16{word-spacing:1.336000pt;}
.ws17{word-spacing:1.389440pt;}
.wsf4{word-spacing:1.392000pt;}
.ws92{word-spacing:1.442880pt;}
.ws2f{word-spacing:1.496320pt;}
.wsf7{word-spacing:1.536000pt;}
.ws7a{word-spacing:1.549760pt;}
.wsf6{word-spacing:1.584000pt;}
.ws7f{word-spacing:1.656640pt;}
.ws30{word-spacing:1.710080pt;}
.ws11e{word-spacing:1.728000pt;}
.ws8e{word-spacing:1.763520pt;}
.wsf2{word-spacing:1.776000pt;}
.ws48{word-spacing:1.816960pt;}
.ws5d{word-spacing:1.870400pt;}
.wsf1{word-spacing:1.872000pt;}
.ws49{word-spacing:1.977280pt;}
.ws5c{word-spacing:2.030720pt;}
.ws11d{word-spacing:2.064000pt;}
.ws4d{word-spacing:2.137600pt;}
.ws4e{word-spacing:2.191040pt;}
.wsc8{word-spacing:2.244480pt;}
.ws60{word-spacing:2.297920pt;}
.ws5f{word-spacing:2.351360pt;}
.wsf0{word-spacing:2.352000pt;}
.ws8b{word-spacing:2.458240pt;}
.ws8a{word-spacing:2.511680pt;}
.wsa6{word-spacing:2.565120pt;}
.ws46{word-spacing:2.618560pt;}
.ws79{word-spacing:2.672000pt;}
.wsef{word-spacing:2.688000pt;}
.wsbf{word-spacing:2.778880pt;}
.ws107{word-spacing:2.832000pt;}
.ws7b{word-spacing:2.832320pt;}
.ws57{word-spacing:2.939200pt;}
.ws11f{word-spacing:2.976000pt;}
.ws58{word-spacing:2.992640pt;}
.wsb5{word-spacing:3.099520pt;}
.ws59{word-spacing:3.152960pt;}
.ws6d{word-spacing:3.259840pt;}
.ws25{word-spacing:3.313280pt;}
.ws5b{word-spacing:3.473600pt;}
.ws21{word-spacing:3.580480pt;}
.ws47{word-spacing:3.633920pt;}
.ws10b{word-spacing:3.648000pt;}
.wsab{word-spacing:3.740800pt;}
.ws10e{word-spacing:3.792000pt;}
.ws10a{word-spacing:3.840000pt;}
.ws24{word-spacing:3.901120pt;}
.ws10f{word-spacing:3.936000pt;}
.ws54{word-spacing:3.954560pt;}
.ws7c{word-spacing:4.061440pt;}
.ws110{word-spacing:4.080000pt;}
.wsad{word-spacing:4.114880pt;}
.wsd3{word-spacing:4.221760pt;}
.ws18{word-spacing:4.275200pt;}
.ws76{word-spacing:4.328640pt;}
.wsd1{word-spacing:4.435520pt;}
.ws19{word-spacing:4.542400pt;}
.ws69{word-spacing:4.595840pt;}
.ws109{word-spacing:4.656000pt;}
.ws91{word-spacing:4.702720pt;}
.ws8d{word-spacing:4.756160pt;}
.ws4c{word-spacing:4.863040pt;}
.ws5e{word-spacing:4.916480pt;}
.wsc3{word-spacing:4.969920pt;}
.ws1f{word-spacing:5.023360pt;}
.ws90{word-spacing:5.076800pt;}
.wscb{word-spacing:5.183680pt;}
.ws4b{word-spacing:5.237120pt;}
.ws72{word-spacing:5.397440pt;}
.wsf9{word-spacing:5.472000pt;}
.ws86{word-spacing:5.504320pt;}
.ws20{word-spacing:5.557760pt;}
.ws116{word-spacing:5.616000pt;}
.wsfa{word-spacing:5.712000pt;}
.ws51{word-spacing:5.718080pt;}
.ws96{word-spacing:5.824960pt;}
.ws117{word-spacing:5.856000pt;}
.ws52{word-spacing:5.878400pt;}
.ws15{word-spacing:6.038720pt;}
.ws55{word-spacing:6.145600pt;}
.ws118{word-spacing:6.192000pt;}
.ws5a{word-spacing:6.199040pt;}
.ws94{word-spacing:6.305920pt;}
.ws95{word-spacing:6.466240pt;}
.ws31{word-spacing:6.519680pt;}
.ws111{word-spacing:6.528000pt;}
.wsd2{word-spacing:6.680000pt;}
.ws6b{word-spacing:6.786880pt;}
.ws2e{word-spacing:6.840320pt;}
.ws74{word-spacing:7.107520pt;}
.wsc5{word-spacing:7.160960pt;}
.wsa8{word-spacing:7.267840pt;}
.wsc2{word-spacing:7.374720pt;}
.ws88{word-spacing:7.428160pt;}
.wsb2{word-spacing:7.481600pt;}
.wsac{word-spacing:7.748800pt;}
.ws82{word-spacing:7.802240pt;}
.wsd4{word-spacing:7.962560pt;}
.wsce{word-spacing:8.069440pt;}
.wsfe{word-spacing:8.112000pt;}
.wsbb{word-spacing:8.122880pt;}
.ws6a{word-spacing:8.390080pt;}
.ws33{word-spacing:8.443520pt;}
.ws34{word-spacing:8.710720pt;}
.ws70{word-spacing:8.764160pt;}
.ws71{word-spacing:9.031360pt;}
.wsb1{word-spacing:9.352000pt;}
.ws84{word-spacing:9.619200pt;}
.ws85{word-spacing:9.672640pt;}
.ws6e{word-spacing:9.726080pt;}
.wsaf{word-spacing:9.993280pt;}
.wscd{word-spacing:10.046720pt;}
.ws75{word-spacing:10.367360pt;}
.wsfb{word-spacing:10.416000pt;}
.wsc9{word-spacing:10.527680pt;}
.wsfd{word-spacing:10.608000pt;}
.ws80{word-spacing:10.634560pt;}
.ws81{word-spacing:10.688000pt;}
.wsfc{word-spacing:10.800000pt;}
.wsc6{word-spacing:10.848320pt;}
.ws29{word-spacing:10.955200pt;}
.ws87{word-spacing:11.008640pt;}
.ws28{word-spacing:11.168960pt;}
.wsc7{word-spacing:11.275840pt;}
.wscc{word-spacing:11.917120pt;}
.wsb7{word-spacing:12.879040pt;}
.wsb6{word-spacing:13.199680pt;}
.wsc4{word-spacing:15.444160pt;}
.ws65{word-spacing:20.307200pt;}
.wsc0{word-spacing:20.574400pt;}
.ws66{word-spacing:20.627840pt;}
.ws61{word-spacing:20.948480pt;}
.ws62{word-spacing:21.055360pt;}
.wsed{word-spacing:64.320000pt;}
.wsec{word-spacing:64.464000pt;}
._4{margin-left:-3.007680pt;}
._c{margin-left:-1.857280pt;}
._1{margin-left:-0.915040pt;}
._2{width:1.346688pt;}
._6{width:2.528896pt;}
._8{width:3.525280pt;}
._5{width:5.183360pt;}
._9{width:6.144640pt;}
._a{width:7.748800pt;}
._d{width:9.742240pt;}
._3{width:10.848320pt;}
._b{width:91.654400pt;}
._0{width:1440.060160pt;}
._7{width:2133.335232pt;}
.fs4{font-size:26.560000pt;}
.fs8{font-size:29.440000pt;}
.fs3{font-size:32.000000pt;}
.fs6{font-size:37.440000pt;}
.fs1{font-size:42.560000pt;}
.fs7{font-size:48.000000pt;}
.fs0{font-size:53.440000pt;}
.fs5{font-size:64.000000pt;}
.fs2{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y49{bottom:2.800000pt;}
.y101{bottom:4.000000pt;}
.y11e{bottom:13.040000pt;}
.y3{bottom:18.000000pt;}
.y48{bottom:18.800000pt;}
.y119{bottom:22.000000pt;}
.y47{bottom:34.800000pt;}
.y6{bottom:44.000000pt;}
.y4c{bottom:44.800000pt;}
.y46{bottom:50.800000pt;}
.y5{bottom:56.560000pt;}
.y45{bottom:66.800000pt;}
.yad{bottom:67.282800pt;}
.yfe{bottom:67.315760pt;}
.y1ae{bottom:70.880000pt;}
.y7f{bottom:71.536480pt;}
.y15e{bottom:71.653600pt;}
.y14e{bottom:77.969440pt;}
.y12b{bottom:78.432960pt;}
.y44{bottom:82.800000pt;}
.yac{bottom:85.928240pt;}
.yd8{bottom:85.941920pt;}
.yfd{bottom:85.952960pt;}
.y7e{bottom:90.173680pt;}
.y15d{bottom:90.290800pt;}
.y1ad{bottom:91.276000pt;}
.y14d{bottom:96.686800pt;}
.y12a{bottom:97.070160pt;}
.y42{bottom:98.800000pt;}
.y183{bottom:102.491760pt;}
.yab{bottom:104.645600pt;}
.yd7{bottom:104.659280pt;}
.yfc{bottom:104.670320pt;}
.y2f{bottom:107.280000pt;}
.y7d{bottom:108.891040pt;}
.y15c{bottom:109.008160pt;}
.y2e{bottom:110.256480pt;}
.y14c{bottom:115.324000pt;}
.y129{bottom:115.707360pt;}
.y1ac{bottom:116.320000pt;}
.y40{bottom:122.800000pt;}
.yaa{bottom:123.282800pt;}
.yd6{bottom:123.296480pt;}
.yfb{bottom:123.307520pt;}
.y182{bottom:123.373440pt;}
.y7c{bottom:127.528240pt;}
.y15b{bottom:127.645360pt;}
.y2d{bottom:128.893680pt;}
.y14b{bottom:133.961200pt;}
.y128{bottom:134.424720pt;}
.y1ab{bottom:134.720000pt;}
.ya9{bottom:141.928240pt;}
.yd5{bottom:141.933680pt;}
.yfa{bottom:141.944720pt;}
.y181{bottom:142.010640pt;}
.y7b{bottom:146.165440pt;}
.y15a{bottom:146.282560pt;}
.y3e{bottom:146.800000pt;}
.y2c{bottom:147.530880pt;}
.y14a{bottom:152.678560pt;}
.y127{bottom:153.061920pt;}
.y1aa{bottom:156.476000pt;}
.y1d6{bottom:156.892000pt;}
.ya8{bottom:160.645600pt;}
.yd4{bottom:160.651040pt;}
.yf9{bottom:160.662080pt;}
.y180{bottom:160.728000pt;}
.y3c{bottom:162.800000pt;}
.y7a{bottom:164.882800pt;}
.y159{bottom:164.999920pt;}
.y2b{bottom:166.248240pt;}
.y149{bottom:171.315760pt;}
.y126{bottom:171.699120pt;}
.y1d5{bottom:175.528000pt;}
.y3a{bottom:178.800000pt;}
.ya7{bottom:179.282800pt;}
.yd3{bottom:179.288240pt;}
.yf8{bottom:179.299280pt;}
.y17f{bottom:179.365200pt;}
.y1a9{bottom:181.520000pt;}
.y79{bottom:183.569440pt;}
.y158{bottom:183.637120pt;}
.y2a{bottom:184.885440pt;}
.y148{bottom:189.952960pt;}
.y125{bottom:190.416480pt;}
.y1d4{bottom:194.248000pt;}
.y38{bottom:194.800000pt;}
.yd2{bottom:197.925440pt;}
.ya6{bottom:197.928240pt;}
.yf7{bottom:197.936480pt;}
.y17e{bottom:198.002400pt;}
.y1a8{bottom:199.924000pt;}
.y78{bottom:202.206640pt;}
.y157{bottom:202.274320pt;}
.y29{bottom:203.522640pt;}
.y43{bottom:206.080000pt;}
.y147{bottom:208.670320pt;}
.y124{bottom:209.053680pt;}
.y1d3{bottom:212.884000pt;}
.yd1{bottom:216.642800pt;}
.ya5{bottom:216.645600pt;}
.yf6{bottom:216.653840pt;}
.y17d{bottom:216.719760pt;}
.y36{bottom:218.800000pt;}
.y77{bottom:220.924000pt;}
.y156{bottom:220.991680pt;}
.y28{bottom:222.253840pt;}
.y1a7{bottom:225.040000pt;}
.y146{bottom:227.307520pt;}
.y123{bottom:227.690880pt;}
.y41{bottom:230.080000pt;}
.y1d2{bottom:231.520000pt;}
.y34{bottom:234.800000pt;}
.yd0{bottom:235.280000pt;}
.ya4{bottom:235.282800pt;}
.yf5{bottom:235.291040pt;}
.y17c{bottom:235.356960pt;}
.y76{bottom:239.561200pt;}
.y155{bottom:239.628880pt;}
.y27{bottom:240.891040pt;}
.y1a6{bottom:243.368000pt;}
.y145{bottom:245.944720pt;}
.y122{bottom:246.408240pt;}
.y32{bottom:250.800000pt;}
.yf4{bottom:253.928240pt;}
.ya3{bottom:253.930880pt;}
.y17b{bottom:253.994160pt;}
.y3f{bottom:254.080000pt;}
.y75{bottom:258.198400pt;}
.y154{bottom:258.266080pt;}
.ycf{bottom:258.720000pt;}
.y26{bottom:259.528240pt;}
.y144{bottom:264.662080pt;}
.y121{bottom:265.045440pt;}
.y1a5{bottom:265.124000pt;}
.y30{bottom:266.800000pt;}
.y1d1{bottom:268.960000pt;}
.y3d{bottom:270.080000pt;}
.yf3{bottom:272.645600pt;}
.ya2{bottom:272.648240pt;}
.y17a{bottom:272.711520pt;}
.y74{bottom:276.915760pt;}
.y153{bottom:276.983440pt;}
.y25{bottom:278.245600pt;}
.y143{bottom:283.299280pt;}
.y120{bottom:283.682640pt;}
.y3b{bottom:286.080000pt;}
.y1a4{bottom:290.240000pt;}
.y1d0{bottom:290.716000pt;}
.yf2{bottom:291.282800pt;}
.ya1{bottom:291.285440pt;}
.y179{bottom:291.348720pt;}
.yce{bottom:295.541920pt;}
.y73{bottom:295.552960pt;}
.y152{bottom:295.620640pt;}
.y24{bottom:296.882800pt;}
.y142{bottom:301.936480pt;}
.y39{bottom:302.080000pt;}
.y11f{bottom:302.400000pt;}
.y1a3{bottom:308.564000pt;}
.yf1{bottom:309.920000pt;}
.ya0{bottom:309.922640pt;}
.y178{bottom:309.985920pt;}
.ycd{bottom:314.179120pt;}
.y72{bottom:314.190160pt;}
.y151{bottom:314.257840pt;}
.y23{bottom:315.528240pt;}
.y1cf{bottom:315.760000pt;}
.y11d{bottom:320.640000pt;}
.y141{bottom:320.653840pt;}
.y37{bottom:326.080000pt;}
.y9f{bottom:328.648240pt;}
.y177{bottom:328.703280pt;}
.ycc{bottom:332.896480pt;}
.y71{bottom:332.907520pt;}
.y150{bottom:332.975200pt;}
.yf0{bottom:333.360000pt;}
.y11c{bottom:333.680000pt;}
.y1ce{bottom:334.164000pt;}
.y22{bottom:334.245600pt;}
.y140{bottom:339.291040pt;}
.y35{bottom:342.080000pt;}
.y9e{bottom:347.285440pt;}
.y176{bottom:347.340480pt;}
.ycb{bottom:351.533680pt;}
.y70{bottom:351.544720pt;}
.y14f{bottom:351.612400pt;}
.y1a2{bottom:352.076000pt;}
.y21{bottom:352.882800pt;}
.y13f{bottom:357.928240pt;}
.y33{bottom:358.080000pt;}
.y1cd{bottom:359.280000pt;}
.y11b{bottom:360.640000pt;}
.y9d{bottom:365.922640pt;}
.y175{bottom:365.977680pt;}
.yca{bottom:370.170880pt;}
.y6f{bottom:370.181920pt;}
.yef{bottom:370.249600pt;}
.y20{bottom:371.520000pt;}
.y31{bottom:374.080000pt;}
.y13e{bottom:376.645600pt;}
.y1a1{bottom:377.120000pt;}
.y1cc{bottom:377.608000pt;}
.y9c{bottom:384.648240pt;}
.y174{bottom:384.695040pt;}
.yc9{bottom:388.888240pt;}
.y6e{bottom:388.899280pt;}
.yee{bottom:388.966960pt;}
.y1f{bottom:394.960000pt;}
.y13d{bottom:395.282800pt;}
.y1a0{bottom:395.524000pt;}
.y1cb{bottom:399.364000pt;}
.y11a{bottom:400.640000pt;}
.y9b{bottom:403.285440pt;}
.y173{bottom:403.332240pt;}
.yc8{bottom:407.525440pt;}
.y6d{bottom:407.536480pt;}
.yed{bottom:407.604160pt;}
.y13c{bottom:413.920000pt;}
.y19f{bottom:420.640000pt;}
.y9a{bottom:421.922640pt;}
.y172{bottom:421.969440pt;}
.y1ca{bottom:424.480000pt;}
.yc7{bottom:426.162640pt;}
.y6c{bottom:426.173680pt;}
.yec{bottom:426.241360pt;}
.y13b{bottom:437.360000pt;}
.y19e{bottom:438.968000pt;}
.y118{bottom:440.560000pt;}
.y99{bottom:440.651040pt;}
.y171{bottom:440.686800pt;}
.y6b{bottom:444.891040pt;}
.yc6{bottom:444.893840pt;}
.yeb{bottom:444.958720pt;}
.y1c9{bottom:446.160000pt;}
.y1e{bottom:450.080000pt;}
.y117{bottom:453.600000pt;}
.y98{bottom:459.288240pt;}
.y170{bottom:459.324000pt;}
.y19d{bottom:460.724000pt;}
.y6a{bottom:463.528240pt;}
.yc5{bottom:463.531040pt;}
.yea{bottom:463.595920pt;}
.y1c8{bottom:464.564000pt;}
.y1d{bottom:468.838720pt;}
.y13a{bottom:474.192960pt;}
.y97{bottom:477.925440pt;}
.y16f{bottom:477.961200pt;}
.y116{bottom:481.200000pt;}
.y69{bottom:482.165440pt;}
.yc4{bottom:482.168240pt;}
.ye9{bottom:482.233120pt;}
.y19c{bottom:485.840000pt;}
.y1c{bottom:487.475920pt;}
.y1c7{bottom:489.680000pt;}
.y139{bottom:492.910320pt;}
.y96{bottom:496.642800pt;}
.y16e{bottom:496.678560pt;}
.y68{bottom:500.882800pt;}
.yc3{bottom:500.885600pt;}
.ye8{bottom:500.950480pt;}
.y19b{bottom:504.164000pt;}
.y1c6{bottom:508.004000pt;}
.y138{bottom:511.547520pt;}
.y115{bottom:514.560000pt;}
.y95{bottom:515.288240pt;}
.y16d{bottom:515.315760pt;}
.yc2{bottom:519.522800pt;}
.y67{bottom:519.528240pt;}
.ye7{bottom:519.587680pt;}
.y1b{bottom:522.198560pt;}
.y19a{bottom:529.280000pt;}
.y137{bottom:530.184720pt;}
.y1c5{bottom:533.120000pt;}
.y94{bottom:533.925440pt;}
.y16c{bottom:533.952960pt;}
.yc1{bottom:538.162640pt;}
.y66{bottom:538.165440pt;}
.ye6{bottom:538.224880pt;}
.y1a{bottom:540.835760pt;}
.y199{bottom:547.676000pt;}
.y136{bottom:548.902080pt;}
.y114{bottom:549.638400pt;}
.y1c4{bottom:551.516000pt;}
.y93{bottom:552.642800pt;}
.y16b{bottom:552.670320pt;}
.y65{bottom:556.882800pt;}
.yc0{bottom:556.888240pt;}
.ye5{bottom:556.942240pt;}
.y19{bottom:559.472960pt;}
.y135{bottom:567.539280pt;}
.y113{bottom:568.275600pt;}
.y92{bottom:571.285440pt;}
.y16a{bottom:571.307520pt;}
.y198{bottom:572.720000pt;}
.y64{bottom:575.522800pt;}
.ybf{bottom:575.525440pt;}
.ye4{bottom:575.579440pt;}
.y1c3{bottom:576.560000pt;}
.y18{bottom:578.190320pt;}
.y134{bottom:586.176480pt;}
.y112{bottom:586.992960pt;}
.y91{bottom:589.922640pt;}
.y169{bottom:589.944720pt;}
.y197{bottom:591.116000pt;}
.y63{bottom:594.162640pt;}
.ye3{bottom:594.216640pt;}
.y1c2{bottom:594.964000pt;}
.y17{bottom:596.827520pt;}
.y133{bottom:604.893840pt;}
.y111{bottom:605.630160pt;}
.y90{bottom:608.651040pt;}
.y168{bottom:608.662080pt;}
.y62{bottom:612.882800pt;}
.ybe{bottom:612.891040pt;}
.ye2{bottom:612.934000pt;}
.y16{bottom:615.464720pt;}
.y196{bottom:616.160000pt;}
.y1c1{bottom:620.080000pt;}
.y132{bottom:623.531040pt;}
.y110{bottom:624.267360pt;}
.y8f{bottom:627.288240pt;}
.y167{bottom:627.299280pt;}
.y61{bottom:631.528240pt;}
.ye1{bottom:631.571200pt;}
.y15{bottom:634.182080pt;}
.y195{bottom:634.564000pt;}
.y1c0{bottom:638.408000pt;}
.y131{bottom:642.168240pt;}
.y10f{bottom:642.984720pt;}
.y8e{bottom:645.925440pt;}
.y166{bottom:645.936480pt;}
.y60{bottom:650.165440pt;}
.ye0{bottom:650.208400pt;}
.y14{bottom:652.819280pt;}
.y194{bottom:659.680000pt;}
.y1bf{bottom:660.164000pt;}
.y130{bottom:660.885600pt;}
.y10e{bottom:661.621920pt;}
.y8d{bottom:664.642800pt;}
.y165{bottom:664.653840pt;}
.y5f{bottom:668.882800pt;}
.ydf{bottom:668.925760pt;}
.y13{bottom:671.456480pt;}
.y193{bottom:678.008000pt;}
.y12f{bottom:679.522800pt;}
.y10d{bottom:680.259120pt;}
.y8c{bottom:683.288240pt;}
.y164{bottom:683.291040pt;}
.y1be{bottom:685.280000pt;}
.ybd{bottom:687.525440pt;}
.y5e{bottom:687.528240pt;}
.yde{bottom:687.562960pt;}
.y12{bottom:690.173840pt;}
.y12e{bottom:698.160000pt;}
.y10c{bottom:698.976480pt;}
.y192{bottom:699.764000pt;}
.y8b{bottom:701.925440pt;}
.y163{bottom:701.928240pt;}
.y1bd{bottom:703.608000pt;}
.ybc{bottom:706.162640pt;}
.y5d{bottom:706.165440pt;}
.ydd{bottom:706.200160pt;}
.y11{bottom:708.811040pt;}
.y10b{bottom:717.613680pt;}
.y8a{bottom:720.642800pt;}
.y162{bottom:720.645600pt;}
.y191{bottom:724.880000pt;}
.y5c{bottom:724.882800pt;}
.ybb{bottom:724.891040pt;}
.ydc{bottom:724.917520pt;}
.y1bc{bottom:725.364000pt;}
.y10{bottom:727.448240pt;}
.y12d{bottom:732.480000pt;}
.y10a{bottom:736.250880pt;}
.y89{bottom:739.280000pt;}
.y161{bottom:739.282800pt;}
.y190{bottom:743.204000pt;}
.yba{bottom:743.528240pt;}
.y5b{bottom:743.533680pt;}
.ydb{bottom:743.554720pt;}
.yf{bottom:746.165600pt;}
.y1bb{bottom:750.480000pt;}
.y109{bottom:754.968240pt;}
.y12c{bottom:755.525280pt;}
.y160{bottom:757.920000pt;}
.yb9{bottom:762.165440pt;}
.y5a{bottom:762.170880pt;}
.yda{bottom:762.191920pt;}
.y88{bottom:762.720000pt;}
.ye{bottom:764.802800pt;}
.y18f{bottom:768.320000pt;}
.y1ba{bottom:768.804000pt;}
.y108{bottom:773.605440pt;}
.yb8{bottom:780.882800pt;}
.y59{bottom:780.888240pt;}
.yd9{bottom:780.909280pt;}
.y15f{bottom:781.360000pt;}
.yd{bottom:783.440000pt;}
.y18e{bottom:786.716000pt;}
.y107{bottom:792.242640pt;}
.y1b9{bottom:793.920000pt;}
.y58{bottom:799.525440pt;}
.yb7{bottom:799.544720pt;}
.y87{bottom:799.546480pt;}
.yc{bottom:810.160000pt;}
.y106{bottom:810.960000pt;}
.y18d{bottom:811.760000pt;}
.y1b8{bottom:812.316000pt;}
.y57{bottom:818.162640pt;}
.yb6{bottom:818.181920pt;}
.y86{bottom:818.183680pt;}
.y105{bottom:829.200000pt;}
.y18c{bottom:830.164000pt;}
.y56{bottom:836.896480pt;}
.yb5{bottom:836.899280pt;}
.y85{bottom:836.901040pt;}
.y1b7{bottom:837.360000pt;}
.yb{bottom:846.640000pt;}
.y104{bottom:851.200000pt;}
.y18b{bottom:855.280000pt;}
.y55{bottom:855.533680pt;}
.yb4{bottom:855.536480pt;}
.y84{bottom:855.538240pt;}
.y1b6{bottom:855.764000pt;}
.y103{bottom:873.200000pt;}
.y18a{bottom:873.608000pt;}
.y54{bottom:874.170880pt;}
.yb3{bottom:874.173680pt;}
.y83{bottom:874.175440pt;}
.y1b5{bottom:880.880000pt;}
.ya{bottom:883.120000pt;}
.y53{bottom:892.888240pt;}
.yb2{bottom:892.891040pt;}
.y82{bottom:892.892800pt;}
.y102{bottom:895.200000pt;}
.y189{bottom:895.364000pt;}
.y1b4{bottom:899.204000pt;}
.y52{bottom:911.525440pt;}
.yb1{bottom:911.528240pt;}
.y81{bottom:911.530000pt;}
.y100{bottom:917.840000pt;}
.y9{bottom:920.320000pt;}
.y188{bottom:920.480000pt;}
.y1b3{bottom:924.320000pt;}
.y51{bottom:930.162640pt;}
.yb0{bottom:930.165440pt;}
.y80{bottom:930.167200pt;}
.y187{bottom:938.804000pt;}
.y1b2{bottom:942.720000pt;}
.yaf{bottom:948.882800pt;}
.y50{bottom:948.884560pt;}
.yff{bottom:951.120000pt;}
.y8{bottom:952.720000pt;}
.y186{bottom:963.920000pt;}
.y1b1{bottom:964.404000pt;}
.y4f{bottom:967.521760pt;}
.yae{bottom:967.522800pt;}
.y185{bottom:979.920000pt;}
.y7{bottom:981.920000pt;}
.y4e{bottom:986.158960pt;}
.y1b0{bottom:989.520000pt;}
.y184{bottom:1002.720000pt;}
.y4d{bottom:1004.876320pt;}
.y1af{bottom:1005.517600pt;}
.y4{bottom:1015.200000pt;}
.y1{bottom:1028.560000pt;}
.y2{bottom:1046.560000pt;}
.y4b{bottom:1054.794800pt;}
.y4a{bottom:1063.360000pt;}
.h13{height:18.000000pt;}
.h9{height:20.507969pt;}
.h17{height:21.599063pt;}
.he{height:26.946562pt;}
.hc{height:27.330469pt;}
.hd{height:27.568125pt;}
.h5{height:30.631563pt;}
.hf{height:31.067969pt;}
.h6{height:31.338125pt;}
.h18{height:35.039062pt;}
.h12{height:35.343750pt;}
.h15{height:35.920000pt;}
.h14{height:36.000000pt;}
.h7{height:38.462187pt;}
.h4{height:39.010156pt;}
.h11{height:39.014316pt;}
.h3{height:39.349375pt;}
.h2{height:46.001333pt;}
.h16{height:46.757960pt;}
.h10{height:47.019080pt;}
.ha{height:47.125000pt;}
.h8{height:70.687500pt;}
.hb{height:288.000000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w9{width:93.040000pt;}
.w6{width:94.000000pt;}
.w8{width:107.600000pt;}
.w7{width:115.200000pt;}
.w3{width:151.520000pt;}
.w4{width:160.640000pt;}
.wa{width:166.000000pt;}
.w5{width:197.040000pt;}
.w2{width:245.280000pt;}
.wb{width:257.280000pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1d{left:0.960000pt;}
.x2d{left:6.400000pt;}
.x31{left:9.520000pt;}
.x19{left:11.120000pt;}
.x25{left:13.600000pt;}
.x27{left:15.360000pt;}
.x2b{left:17.040000pt;}
.x1e{left:25.200000pt;}
.x28{left:28.560000pt;}
.x16{left:29.520000pt;}
.x1b{left:38.640000pt;}
.x1f{left:45.120000pt;}
.x21{left:47.040000pt;}
.x1{left:48.000000pt;}
.x1c{left:49.200000pt;}
.x1a{left:58.000000pt;}
.x29{left:64.960000pt;}
.x2c{left:68.160000pt;}
.x11{left:70.400000pt;}
.x14{left:71.520000pt;}
.x26{left:77.280000pt;}
.x23{left:81.760000pt;}
.xa{left:85.520000pt;}
.xd{left:87.440000pt;}
.x9{left:90.160000pt;}
.xb{left:91.520000pt;}
.xc{left:94.080000pt;}
.x2e{left:95.280000pt;}
.x2a{left:107.920000pt;}
.x32{left:109.680000pt;}
.x10{left:114.400000pt;}
.x5{left:151.520000pt;}
.xe{left:157.280000pt;}
.x30{left:164.800000pt;}
.xf{left:166.880000pt;}
.x6{left:221.840000pt;}
.x7{left:222.880000pt;}
.x13{left:223.920000pt;}
.x24{left:231.120000pt;}
.x2{left:242.560000pt;}
.x2f{left:246.720000pt;}
.x12{left:250.163520pt;}
.x8{left:251.200000pt;}
.x20{left:318.480000pt;}
.x15{left:422.960000pt;}
.x3{left:444.400000pt;}
.x22{left:486.480000pt;}
.x17{left:518.960000pt;}
.x4{left:595.600000pt;}
.x18{left:636.160000pt;}
.x33{left:745.766080pt;}
}




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