
    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_07cb040292091e83b9262af2.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.952000;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_29b909948fd4f63ce8655ae5.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.027000;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_216d4cd25dc12520f54b5e9d.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.100000;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_9e74c9ab5c37d21ca5e01220.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.284668;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_389b8dfdb37dd1df96a75312.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.023000;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_e93c0357acebcc1a96461fe6.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.115000;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_ab5738f08496b04e0e1916c2.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.432129;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_ab5738f08496b04e0e1916c2.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.432129;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_6923c6fa18a9726fa6650869.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.934000;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);}
.v4{vertical-align:-21.600000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:21.600000px;}
.v2{vertical-align:39.600000px;}
.v1{vertical-align:43.230000px;}
.ls3d{letter-spacing:-2.940000px;}
.ls42{letter-spacing:-2.880000px;}
.ls45{letter-spacing:-2.820000px;}
.ls3e{letter-spacing:-2.700000px;}
.ls43{letter-spacing:-2.460000px;}
.ls1b{letter-spacing:-2.448000px;}
.ls55{letter-spacing:-2.400000px;}
.ls54{letter-spacing:-2.340000px;}
.ls53{letter-spacing:-2.160000px;}
.ls44{letter-spacing:-1.920000px;}
.ls40{letter-spacing:-1.860000px;}
.ls3b{letter-spacing:-1.740000px;}
.ls56{letter-spacing:-1.680000px;}
.ls3c{letter-spacing:-1.620000px;}
.ls29{letter-spacing:-1.584000px;}
.ls3f{letter-spacing:-1.500000px;}
.ls57{letter-spacing:-1.200000px;}
.ls41{letter-spacing:-0.960000px;}
.ls5b{letter-spacing:-0.648000px;}
.ls32{letter-spacing:-0.594000px;}
.ls14{letter-spacing:-0.576000px;}
.ls60{letter-spacing:-0.540000px;}
.ls68{letter-spacing:-0.528000px;}
.ls16{letter-spacing:-0.504000px;}
.lsc{letter-spacing:-0.480000px;}
.ls18{letter-spacing:-0.432000px;}
.ls10{letter-spacing:-0.420000px;}
.ls13{letter-spacing:-0.360000px;}
.ls31{letter-spacing:-0.330000px;}
.ls12{letter-spacing:-0.300000px;}
.ls1a{letter-spacing:-0.288000px;}
.ls2c{letter-spacing:-0.264000px;}
.ls17{letter-spacing:-0.216000px;}
.ls2d{letter-spacing:-0.198000px;}
.lsd{letter-spacing:-0.180000px;}
.ls3a{letter-spacing:-0.144000px;}
.ls67{letter-spacing:-0.132000px;}
.ls61{letter-spacing:-0.120000px;}
.lsf{letter-spacing:-0.072000px;}
.ls69{letter-spacing:-0.066000px;}
.ls5f{letter-spacing:-0.060000px;}
.lsb{letter-spacing:0.000000px;}
.ls33{letter-spacing:0.060000px;}
.lse{letter-spacing:0.084000px;}
.lsa{letter-spacing:0.120000px;}
.ls15{letter-spacing:0.216000px;}
.ls11{letter-spacing:0.240000px;}
.ls19{letter-spacing:0.288000px;}
.ls64{letter-spacing:0.306000px;}
.ls30{letter-spacing:0.330000px;}
.ls5{letter-spacing:0.360000px;}
.ls6{letter-spacing:0.381600px;}
.ls2e{letter-spacing:0.396000px;}
.ls25{letter-spacing:0.432000px;}
.ls1e{letter-spacing:0.446400px;}
.ls2f{letter-spacing:0.462000px;}
.ls66{letter-spacing:0.480000px;}
.ls7{letter-spacing:0.482400px;}
.ls4{letter-spacing:0.504000px;}
.ls51{letter-spacing:0.511200px;}
.ls20{letter-spacing:0.540000px;}
.ls5d{letter-spacing:0.780000px;}
.ls65{letter-spacing:0.900000px;}
.ls5c{letter-spacing:0.936000px;}
.ls35{letter-spacing:1.108800px;}
.ls1d{letter-spacing:1.152000px;}
.ls62{letter-spacing:1.194000px;}
.ls5e{letter-spacing:1.200000px;}
.ls5a{letter-spacing:1.224000px;}
.ls23{letter-spacing:4.752000px;}
.ls63{letter-spacing:5.580000px;}
.ls1f{letter-spacing:5.976000px;}
.ls34{letter-spacing:8.431200px;}
.ls24{letter-spacing:9.576000px;}
.ls1c{letter-spacing:10.800000px;}
.ls2a{letter-spacing:11.952000px;}
.ls8{letter-spacing:12.081600px;}
.ls52{letter-spacing:13.176000px;}
.ls22{letter-spacing:13.212000px;}
.ls28{letter-spacing:16.776000px;}
.ls27{letter-spacing:19.152000px;}
.ls58{letter-spacing:21.600000px;}
.ls59{letter-spacing:26.352000px;}
.ls9{letter-spacing:29.808000px;}
.ls26{letter-spacing:41.184000px;}
.ls39{letter-spacing:105.180000px;}
.ls46{letter-spacing:106.380000px;}
.ls37{letter-spacing:120.780000px;}
.ls38{letter-spacing:121.980000px;}
.ls36{letter-spacing:136.380000px;}
.ls49{letter-spacing:151.980000px;}
.ls4a{letter-spacing:153.180000px;}
.ls50{letter-spacing:167.580000px;}
.ls47{letter-spacing:181.980000px;}
.ls48{letter-spacing:183.180000px;}
.ls4b{letter-spacing:197.580000px;}
.ls4c{letter-spacing:198.780000px;}
.ls4d{letter-spacing:213.180000px;}
.ls4e{letter-spacing:214.380000px;}
.ls4f{letter-spacing:265.980000px;}
.ls21{letter-spacing:291.180000px;}
.ls3{letter-spacing:642.780000px;}
.ls1{letter-spacing:846.780000px;}
.ls2{letter-spacing:905.580000px;}
.ls2b{letter-spacing:1029.996000px;}
.ls0{letter-spacing:1397.580000px;}
.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;}
}
.ws3{word-spacing:-19.584000px;}
.ws4{word-spacing:-19.224000px;}
.ws8{word-spacing:-19.152000px;}
.wsaf{word-spacing:-19.080000px;}
.ws7{word-spacing:-19.008000px;}
.ws64{word-spacing:-18.864000px;}
.ws65{word-spacing:-18.792000px;}
.wsa1{word-spacing:-18.648000px;}
.ws2{word-spacing:-18.216000px;}
.ws75{word-spacing:-18.084000px;}
.ws74{word-spacing:-17.952000px;}
.ws9{word-spacing:-17.928000px;}
.ws6{word-spacing:-17.856000px;}
.ws2f{word-spacing:-17.640000px;}
.ws73{word-spacing:-17.424000px;}
.wsea{word-spacing:-17.358000px;}
.wse9{word-spacing:-17.094000px;}
.ws72{word-spacing:-16.500000px;}
.ws76{word-spacing:-16.368000px;}
.wscf{word-spacing:-16.260000px;}
.wsce{word-spacing:-16.140000px;}
.wscd{word-spacing:-16.080000px;}
.wse6{word-spacing:-16.020000px;}
.ws1{word-spacing:-15.840000px;}
.ws5{word-spacing:-15.720000px;}
.wse7{word-spacing:-15.600000px;}
.ws0{word-spacing:-15.540000px;}
.wsd0{word-spacing:-15.480000px;}
.wscc{word-spacing:-14.700000px;}
.wse8{word-spacing:-14.640000px;}
.ws8f{word-spacing:-14.520000px;}
.ws9d{word-spacing:-13.860000px;}
.ws8c{word-spacing:-13.680000px;}
.ws9f{word-spacing:-13.620000px;}
.ws89{word-spacing:-13.560000px;}
.ws88{word-spacing:-13.440000px;}
.ws8e{word-spacing:-13.320000px;}
.ws8d{word-spacing:-13.200000px;}
.ws9e{word-spacing:-13.140000px;}
.ws8a{word-spacing:-12.480000px;}
.wsa0{word-spacing:-12.300000px;}
.ws8b{word-spacing:-12.240000px;}
.wsd1{word-spacing:-9.828000px;}
.wsc3{word-spacing:-4.752000px;}
.wsc4{word-spacing:-4.608000px;}
.ws3c{word-spacing:-4.248000px;}
.wse1{word-spacing:-4.140000px;}
.wse2{word-spacing:-3.900000px;}
.ws4e{word-spacing:-3.888000px;}
.ws6b{word-spacing:-3.816000px;}
.wse3{word-spacing:-3.720000px;}
.ws68{word-spacing:-3.528000px;}
.wsc7{word-spacing:-3.384000px;}
.ws69{word-spacing:-3.168000px;}
.ws1a{word-spacing:-3.024000px;}
.ws2e{word-spacing:-2.664000px;}
.wsb5{word-spacing:-2.376000px;}
.ws7b{word-spacing:-2.232000px;}
.ws5d{word-spacing:-2.016000px;}
.ws5e{word-spacing:-1.872000px;}
.ws98{word-spacing:-1.860000px;}
.wsa7{word-spacing:-1.620000px;}
.ws19{word-spacing:-1.440000px;}
.wsec{word-spacing:-1.320000px;}
.wsb4{word-spacing:-1.224000px;}
.ws9b{word-spacing:-1.200000px;}
.ws54{word-spacing:-1.152000px;}
.wse5{word-spacing:-1.140000px;}
.ws30{word-spacing:-0.960000px;}
.wsbf{word-spacing:-0.936000px;}
.wseb{word-spacing:-0.900000px;}
.ws7e{word-spacing:-0.792000px;}
.wsf6{word-spacing:-0.780000px;}
.ws14{word-spacing:-0.660000px;}
.ws43{word-spacing:-0.648000px;}
.ws94{word-spacing:-0.576000px;}
.wsa{word-spacing:-0.540000px;}
.ws53{word-spacing:-0.504000px;}
.wsc{word-spacing:-0.420000px;}
.ws12{word-spacing:-0.360000px;}
.ws101{word-spacing:-0.330000px;}
.ws2d{word-spacing:-0.288000px;}
.wsd{word-spacing:-0.240000px;}
.wse{word-spacing:-0.216000px;}
.ws97{word-spacing:-0.120000px;}
.ws81{word-spacing:-0.066000px;}
.ws86{word-spacing:-0.060000px;}
.wsb{word-spacing:0.000000px;}
.ws15{word-spacing:0.060000px;}
.ws82{word-spacing:0.066000px;}
.ws11{word-spacing:0.072000px;}
.ws5b{word-spacing:0.144000px;}
.ws20{word-spacing:0.216000px;}
.wsf{word-spacing:0.252000px;}
.ws3b{word-spacing:0.288000px;}
.ws16{word-spacing:0.300000px;}
.ws85{word-spacing:0.330000px;}
.ws10{word-spacing:0.336000px;}
.ws70{word-spacing:0.360000px;}
.ws80{word-spacing:0.396000px;}
.ws13{word-spacing:0.420000px;}
.ws32{word-spacing:0.432000px;}
.ws105{word-spacing:0.462000px;}
.wsd8{word-spacing:0.480000px;}
.ws79{word-spacing:0.504000px;}
.ws104{word-spacing:0.528000px;}
.wsa5{word-spacing:0.540000px;}
.ws1f{word-spacing:0.576000px;}
.wsbd{word-spacing:0.648000px;}
.ws83{word-spacing:0.726000px;}
.ws9a{word-spacing:0.840000px;}
.wsca{word-spacing:0.864000px;}
.ws71{word-spacing:0.936000px;}
.ws84{word-spacing:0.990000px;}
.wse4{word-spacing:1.080000px;}
.wsa2{word-spacing:1.200000px;}
.ws4d{word-spacing:1.224000px;}
.wsa4{word-spacing:1.260000px;}
.wsc9{word-spacing:1.368000px;}
.wscb{word-spacing:1.440000px;}
.wsf8{word-spacing:1.500000px;}
.ws23{word-spacing:1.584000px;}
.wsf1{word-spacing:1.620000px;}
.wsa6{word-spacing:1.680000px;}
.ws3e{word-spacing:1.728000px;}
.ws95{word-spacing:1.740000px;}
.wsfc{word-spacing:1.860000px;}
.ws9c{word-spacing:1.920000px;}
.wsfb{word-spacing:2.040000px;}
.ws55{word-spacing:2.160000px;}
.wsf9{word-spacing:2.280000px;}
.wsa3{word-spacing:2.340000px;}
.ws24{word-spacing:2.448000px;}
.wsfa{word-spacing:2.460000px;}
.ws6f{word-spacing:2.664000px;}
.ws3a{word-spacing:2.808000px;}
.wsf7{word-spacing:2.820000px;}
.ws99{word-spacing:2.880000px;}
.ws96{word-spacing:2.940000px;}
.ws35{word-spacing:2.952000px;}
.ws61{word-spacing:3.240000px;}
.ws91{word-spacing:3.312000px;}
.ws60{word-spacing:3.384000px;}
.ws103{word-spacing:3.564000px;}
.wsef{word-spacing:3.660000px;}
.ws21{word-spacing:3.672000px;}
.ws62{word-spacing:3.816000px;}
.ws102{word-spacing:3.960000px;}
.ws92{word-spacing:4.032000px;}
.ws46{word-spacing:4.104000px;}
.wse0{word-spacing:4.140000px;}
.ws1b{word-spacing:4.176000px;}
.ws7c{word-spacing:4.392000px;}
.ws25{word-spacing:4.536000px;}
.wsdf{word-spacing:4.680000px;}
.ws4b{word-spacing:4.824000px;}
.ws33{word-spacing:4.968000px;}
.wsfd{word-spacing:5.040000px;}
.ws5a{word-spacing:5.184000px;}
.ws26{word-spacing:5.328000px;}
.wsa8{word-spacing:5.688000px;}
.ws51{word-spacing:5.760000px;}
.wsac{word-spacing:6.048000px;}
.wsfe{word-spacing:6.060000px;}
.ws38{word-spacing:6.192000px;}
.ws52{word-spacing:6.264000px;}
.ws27{word-spacing:6.408000px;}
.ws37{word-spacing:6.480000px;}
.ws36{word-spacing:6.552000px;}
.ws7d{word-spacing:6.840000px;}
.wsee{word-spacing:6.960000px;}
.ws57{word-spacing:6.984000px;}
.wsed{word-spacing:7.260000px;}
.ws6a{word-spacing:7.272000px;}
.wsd3{word-spacing:7.416000px;}
.wsa9{word-spacing:7.488000px;}
.ws58{word-spacing:7.632000px;}
.ws56{word-spacing:7.704000px;}
.ws4c{word-spacing:7.776000px;}
.ws90{word-spacing:7.992000px;}
.ws77{word-spacing:8.064000px;}
.wsc8{word-spacing:8.136000px;}
.ws48{word-spacing:8.424000px;}
.ws4f{word-spacing:8.784000px;}
.ws4a{word-spacing:8.928000px;}
.ws1c{word-spacing:9.360000px;}
.ws31{word-spacing:9.648000px;}
.wsd5{word-spacing:9.864000px;}
.wsb6{word-spacing:10.008000px;}
.wsdc{word-spacing:10.020000px;}
.wsde{word-spacing:10.140000px;}
.ws28{word-spacing:10.152000px;}
.ws7f{word-spacing:10.440000px;}
.wsf0{word-spacing:10.560000px;}
.wsdd{word-spacing:10.680000px;}
.ws2b{word-spacing:10.872000px;}
.wsba{word-spacing:11.232000px;}
.wsd9{word-spacing:11.340000px;}
.ws47{word-spacing:11.376000px;}
.wsda{word-spacing:11.460000px;}
.ws93{word-spacing:11.592000px;}
.wsc6{word-spacing:11.736000px;}
.wsdb{word-spacing:11.880000px;}
.ws6c{word-spacing:12.024000px;}
.ws22{word-spacing:12.384000px;}
.ws6d{word-spacing:12.456000px;}
.ws17{word-spacing:12.528000px;}
.wsf5{word-spacing:13.080000px;}
.wsae{word-spacing:13.248000px;}
.wsc5{word-spacing:13.464000px;}
.ws59{word-spacing:13.608000px;}
.ws49{word-spacing:13.752000px;}
.wsf4{word-spacing:13.860000px;}
.wsd7{word-spacing:14.040000px;}
.ws29{word-spacing:14.112000px;}
.ws100{word-spacing:14.322000px;}
.wsf3{word-spacing:14.400000px;}
.wsf2{word-spacing:14.460000px;}
.ws1e{word-spacing:14.472000px;}
.ws34{word-spacing:14.832000px;}
.wsff{word-spacing:14.850000px;}
.ws1d{word-spacing:14.904000px;}
.ws2a{word-spacing:14.976000px;}
.ws7a{word-spacing:15.336000px;}
.ws3d{word-spacing:15.624000px;}
.ws78{word-spacing:15.768000px;}
.wsbb{word-spacing:15.840000px;}
.wsb1{word-spacing:16.128000px;}
.ws42{word-spacing:16.848000px;}
.ws6e{word-spacing:17.208000px;}
.ws63{word-spacing:17.352000px;}
.wsd4{word-spacing:17.784000px;}
.ws87{word-spacing:18.072000px;}
.ws44{word-spacing:18.288000px;}
.ws45{word-spacing:18.576000px;}
.ws67{word-spacing:18.936000px;}
.wsd6{word-spacing:19.224000px;}
.ws40{word-spacing:19.584000px;}
.ws41{word-spacing:19.728000px;}
.wsb3{word-spacing:22.176000px;}
.ws5f{word-spacing:22.392000px;}
.wsbe{word-spacing:22.824000px;}
.ws50{word-spacing:23.328000px;}
.wsb8{word-spacing:24.048000px;}
.wsc2{word-spacing:24.408000px;}
.wsb2{word-spacing:24.552000px;}
.wsb0{word-spacing:24.912000px;}
.ws5c{word-spacing:25.776000px;}
.wsc1{word-spacing:26.136000px;}
.wsbc{word-spacing:26.424000px;}
.ws66{word-spacing:26.928000px;}
.ws3f{word-spacing:27.360000px;}
.wsb7{word-spacing:27.648000px;}
.ws18{word-spacing:29.376000px;}
.ws39{word-spacing:30.024000px;}
.wsad{word-spacing:30.528000px;}
.ws2c{word-spacing:30.888000px;}
.wsaa{word-spacing:32.472000px;}
.wsab{word-spacing:32.616000px;}
.wsd2{word-spacing:33.624000px;}
.wsc0{word-spacing:35.352000px;}
.wsb9{word-spacing:37.728000px;}
._26{margin-left:-11.928000px;}
._24{margin-left:-4.260000px;}
._25{margin-left:-3.240000px;}
._6{margin-left:-2.136000px;}
._0{margin-left:-1.020000px;}
._1{width:1.260000px;}
._3{width:2.640000px;}
._9{width:4.166400px;}
._14{width:5.596800px;}
._23{width:6.697200px;}
._11{width:8.486400px;}
._17{width:9.602400px;}
._12{width:10.660800px;}
._15{width:12.621600px;}
._16{width:14.138400px;}
._e{width:15.196800px;}
._19{width:16.596000px;}
._d{width:17.791200px;}
._c{width:20.289600px;}
._b{width:22.089600px;}
._13{width:23.126400px;}
._a{width:24.926400px;}
._18{width:26.116800px;}
._7{width:32.868000px;}
._8{width:34.552800px;}
._1b{width:124.476000px;}
._1c{width:125.664000px;}
._1d{width:160.446000px;}
._1e{width:161.634000px;}
._1f{width:178.398000px;}
._22{width:196.416000px;}
._21{width:197.604000px;}
._20{width:214.878000px;}
._1a{width:229.908000px;}
._4{width:765.900000px;}
._10{width:809.316000px;}
._5{width:821.580000px;}
._2{width:1005.420000px;}
._f{width:1133.580000px;}
.fc4{color:rgb(0,0,255);}
.fc1{color:rgb(255,0,0);}
.fc3{color:rgb(34,34,34);}
.fc2{color:rgb(36,36,36);}
.fc0{color:rgb(0,0,0);}
.fs1{font-size:36.000000px;}
.fs4{font-size:48.000000px;}
.fs0{font-size:60.000000px;}
.fs5{font-size:66.000000px;}
.fs2{font-size:72.000000px;}
.fs3{font-size:84.000000px;}
.y0{bottom:0.000000px;}
.y9{bottom:3.300000px;}
.yb8{bottom:4.200000px;}
.ya1{bottom:4.500000px;}
.yaf{bottom:4.800000px;}
.y7{bottom:5.100000px;}
.ya{bottom:6.000000px;}
.ye3{bottom:23.700000px;}
.ycc{bottom:42.900000px;}
.ya3{bottom:47.100000px;}
.yc6{bottom:62.400000px;}
.yd0{bottom:62.700000px;}
.y4{bottom:67.800000px;}
.ybd{bottom:81.600000px;}
.yde{bottom:81.900000px;}
.y86{bottom:97.224000px;}
.y126{bottom:97.230000px;}
.y65{bottom:97.260000px;}
.yfc{bottom:99.042000px;}
.yc4{bottom:101.400000px;}
.y150{bottom:104.100000px;}
.y35{bottom:114.006000px;}
.yb4{bottom:114.606000px;}
.y85{bottom:120.624000px;}
.y125{bottom:120.630000px;}
.y64{bottom:120.660000px;}
.yfb{bottom:122.136000px;}
.y14f{bottom:123.600000px;}
.yc3{bottom:125.100000px;}
.y9f{bottom:128.190000px;}
.y34{bottom:137.406000px;}
.yb3{bottom:137.700000px;}
.yd5{bottom:140.100000px;}
.y14e{bottom:142.800000px;}
.y84{bottom:143.718000px;}
.y124{bottom:143.724000px;}
.y63{bottom:143.754000px;}
.yc2{bottom:144.600000px;}
.yfa{bottom:145.536000px;}
.y9e{bottom:151.590000px;}
.y33{bottom:160.806000px;}
.yb2{bottom:161.100000px;}
.y14d{bottom:162.300000px;}
.yc1{bottom:163.800000px;}
.y83{bottom:167.118000px;}
.y123{bottom:167.124000px;}
.y62{bottom:167.154000px;}
.yf9{bottom:168.936000px;}
.y9d{bottom:174.990000px;}
.y14c{bottom:181.800000px;}
.yb1{bottom:182.400000px;}
.yc0{bottom:183.300000px;}
.y32{bottom:183.900000px;}
.y82{bottom:190.212000px;}
.y122{bottom:190.218000px;}
.y61{bottom:190.248000px;}
.yf8{bottom:192.030000px;}
.y9c{bottom:198.084000px;}
.yb0{bottom:198.900000px;}
.y14b{bottom:201.000000px;}
.ybf{bottom:202.800000px;}
.y31{bottom:207.300000px;}
.y81{bottom:213.612000px;}
.y121{bottom:213.618000px;}
.y60{bottom:213.648000px;}
.yae{bottom:214.800000px;}
.yf7{bottom:215.430000px;}
.y14a{bottom:220.500000px;}
.y9b{bottom:221.484000px;}
.ybe{bottom:222.000000px;}
.y30{bottom:230.700000px;}
.yad{bottom:237.000000px;}
.y80{bottom:237.012000px;}
.y120{bottom:237.018000px;}
.y5f{bottom:237.048000px;}
.ybc{bottom:238.200000px;}
.yf6{bottom:238.830000px;}
.y149{bottom:240.000000px;}
.y9a{bottom:244.884000px;}
.y2f{bottom:252.000000px;}
.y148{bottom:259.200000px;}
.y7f{bottom:260.106000px;}
.y11f{bottom:260.112000px;}
.y5e{bottom:260.142000px;}
.ybb{bottom:261.600000px;}
.yf5{bottom:261.924000px;}
.yac{bottom:263.698500px;}
.y99{bottom:267.978000px;}
.y2e{bottom:269.400000px;}
.y147{bottom:278.700000px;}
.yba{bottom:281.100000px;}
.yb6{bottom:281.400000px;}
.y7e{bottom:283.506000px;}
.y11e{bottom:283.512000px;}
.y5d{bottom:283.542000px;}
.yab{bottom:285.000000px;}
.yf4{bottom:285.324000px;}
.y98{bottom:291.378000px;}
.y2d{bottom:292.800000px;}
.y146{bottom:298.200000px;}
.yb9{bottom:300.600000px;}
.yb5{bottom:300.900000px;}
.ya8{bottom:302.700000px;}
.y7d{bottom:306.906000px;}
.y11d{bottom:306.912000px;}
.y5c{bottom:306.942000px;}
.yaa{bottom:307.198500px;}
.yf3{bottom:308.724000px;}
.y2c{bottom:314.100000px;}
.y97{bottom:314.778000px;}
.y145{bottom:317.400000px;}
.ya9{bottom:328.500000px;}
.y7c{bottom:330.000000px;}
.y11c{bottom:330.006000px;}
.y5b{bottom:330.036000px;}
.y17a{bottom:330.600000px;}
.y2b{bottom:331.542000px;}
.yf2{bottom:331.818000px;}
.yb7{bottom:336.000000px;}
.y144{bottom:336.900000px;}
.y96{bottom:337.872000px;}
.y139{bottom:351.600000px;}
.y179{bottom:351.900000px;}
.y7b{bottom:353.400000px;}
.y11b{bottom:353.406000px;}
.y5a{bottom:353.436000px;}
.y2a{bottom:354.942000px;}
.yf1{bottom:355.218000px;}
.y143{bottom:356.400000px;}
.y95{bottom:361.272000px;}
.ya5{bottom:367.500000px;}
.y138{bottom:369.036000px;}
.ya7{bottom:371.998500px;}
.y178{bottom:372.000000px;}
.y7a{bottom:375.000000px;}
.y142{bottom:375.900000px;}
.y11a{bottom:376.806000px;}
.y59{bottom:376.836000px;}
.y29{bottom:378.036000px;}
.yf0{bottom:378.312000px;}
.y94{bottom:384.366000px;}
.y177{bottom:388.797000px;}
.y79{bottom:392.124000px;}
.y137{bottom:392.130000px;}
.ya6{bottom:393.300000px;}
.y141{bottom:395.100000px;}
.y119{bottom:399.900000px;}
.y58{bottom:399.930000px;}
.y28{bottom:401.436000px;}
.yef{bottom:401.712000px;}
.y93{bottom:407.766000px;}
.y176{bottom:410.098500px;}
.y140{bottom:413.700000px;}
.y78{bottom:415.524000px;}
.y136{bottom:415.530000px;}
.y118{bottom:423.300000px;}
.y57{bottom:423.330000px;}
.y27{bottom:424.836000px;}
.yee{bottom:425.112000px;}
.y13f{bottom:431.100000px;}
.y92{bottom:431.166000px;}
.y175{bottom:431.400000px;}
.ya2{bottom:432.300000px;}
.y77{bottom:438.924000px;}
.y135{bottom:438.930000px;}
.y117{bottom:444.900000px;}
.y56{bottom:446.730000px;}
.y26{bottom:447.930000px;}
.yed{bottom:448.206000px;}
.y13e{bottom:452.400000px;}
.y91{bottom:454.260000px;}
.y174{bottom:457.500000px;}
.ya4{bottom:458.100000px;}
.y76{bottom:462.018000px;}
.y134{bottom:462.024000px;}
.y116{bottom:462.048000px;}
.y13d{bottom:469.806000px;}
.y55{bottom:469.824000px;}
.y25{bottom:471.330000px;}
.yec{bottom:471.606000px;}
.y90{bottom:477.660000px;}
.y75{bottom:485.418000px;}
.y133{bottom:485.424000px;}
.y115{bottom:485.448000px;}
.y13c{bottom:493.206000px;}
.y54{bottom:493.224000px;}
.y24{bottom:494.424000px;}
.yeb{bottom:495.006000px;}
.ya0{bottom:497.100000px;}
.y173{bottom:500.398500px;}
.y8f{bottom:501.060000px;}
.y74{bottom:508.818000px;}
.y132{bottom:508.824000px;}
.y114{bottom:508.848000px;}
.y13b{bottom:516.300000px;}
.y53{bottom:516.318000px;}
.y23{bottom:517.824000px;}
.yea{bottom:518.100000px;}
.y172{bottom:521.700000px;}
.y8e{bottom:524.154000px;}
.y73{bottom:531.912000px;}
.y131{bottom:531.918000px;}
.y113{bottom:531.942000px;}
.y13a{bottom:537.900000px;}
.y52{bottom:539.718000px;}
.y22{bottom:541.224000px;}
.ye9{bottom:541.500000px;}
.y171{bottom:541.800000px;}
.y8d{bottom:547.554000px;}
.y72{bottom:555.312000px;}
.y130{bottom:555.318000px;}
.y112{bottom:555.342000px;}
.y170{bottom:558.300000px;}
.y51{bottom:563.118000px;}
.y21{bottom:564.318000px;}
.ye8{bottom:564.900000px;}
.y8c{bottom:570.954000px;}
.y16f{bottom:577.500000px;}
.y71{bottom:578.406000px;}
.y12f{bottom:578.412000px;}
.y111{bottom:578.436000px;}
.ye7{bottom:586.200000px;}
.y50{bottom:586.212000px;}
.y20{bottom:587.718000px;}
.y8b{bottom:594.048000px;}
.y16e{bottom:596.100000px;}
.y70{bottom:601.806000px;}
.y12e{bottom:601.812000px;}
.y110{bottom:601.836000px;}
.ye6{bottom:602.700000px;}
.y4f{bottom:609.612000px;}
.y1f{bottom:611.118000px;}
.y16d{bottom:612.600000px;}
.y8a{bottom:617.448000px;}
.ye5{bottom:618.600000px;}
.y6f{bottom:625.206000px;}
.y12d{bottom:625.212000px;}
.y10f{bottom:625.236000px;}
.y16c{bottom:632.100000px;}
.y4e{bottom:633.012000px;}
.y1e{bottom:634.212000px;}
.ye2{bottom:638.700000px;}
.y89{bottom:640.848000px;}
.ye4{bottom:642.900000px;}
.y6e{bottom:648.300000px;}
.y12c{bottom:648.306000px;}
.y10e{bottom:648.330000px;}
.y16b{bottom:651.300000px;}
.y4d{bottom:656.106000px;}
.y1d{bottom:657.612000px;}
.y88{bottom:663.942000px;}
.y16a{bottom:670.800000px;}
.y6d{bottom:671.700000px;}
.y12b{bottom:671.706000px;}
.y10d{bottom:671.730000px;}
.ydd{bottom:678.300000px;}
.y4c{bottom:679.506000px;}
.y1c{bottom:681.012000px;}
.y87{bottom:687.342000px;}
.y169{bottom:690.300000px;}
.y6c{bottom:693.300000px;}
.y12a{bottom:695.106000px;}
.y10c{bottom:695.130000px;}
.ye1{bottom:702.000000px;}
.y4b{bottom:702.906000px;}
.y1b{bottom:704.106000px;}
.y168{bottom:709.500000px;}
.y6b{bottom:710.436000px;}
.y129{bottom:718.200000px;}
.y10b{bottom:718.224000px;}
.ye0{bottom:721.500000px;}
.y4a{bottom:726.000000px;}
.y1a{bottom:727.506000px;}
.y167{bottom:729.000000px;}
.y6a{bottom:733.836000px;}
.ydf{bottom:740.700000px;}
.y128{bottom:741.600000px;}
.y10a{bottom:741.624000px;}
.y166{bottom:748.500000px;}
.y49{bottom:749.400000px;}
.y19{bottom:750.600000px;}
.y69{bottom:757.236000px;}
.y127{bottom:763.200000px;}
.y109{bottom:765.024000px;}
.y165{bottom:768.000000px;}
.y48{bottom:770.700000px;}
.y18{bottom:774.000000px;}
.yd4{bottom:776.100000px;}
.y68{bottom:780.330000px;}
.y164{bottom:787.200000px;}
.y47{bottom:788.100000px;}
.y108{bottom:788.118000px;}
.y17{bottom:795.600000px;}
.ydb{bottom:799.800000px;}
.y67{bottom:803.730000px;}
.y163{bottom:806.700000px;}
.y46{bottom:811.500000px;}
.y107{bottom:811.518000px;}
.y16{bottom:812.100000px;}
.yda{bottom:819.300000px;}
.y162{bottom:826.200000px;}
.y66{bottom:827.130000px;}
.y15{bottom:831.300000px;}
.y45{bottom:833.100000px;}
.y106{bottom:834.918000px;}
.yd9{bottom:838.500000px;}
.y161{bottom:845.400000px;}
.ydc{bottom:848.400000px;}
.y14{bottom:849.900000px;}
.y44{bottom:850.224000px;}
.yd8{bottom:858.000000px;}
.y105{bottom:858.012000px;}
.y160{bottom:864.900000px;}
.y13{bottom:866.400000px;}
.y43{bottom:873.624000px;}
.yd7{bottom:877.500000px;}
.y104{bottom:881.412000px;}
.y15f{bottom:884.400000px;}
.y12{bottom:885.600000px;}
.yd6{bottom:897.000000px;}
.y42{bottom:897.024000px;}
.y15e{bottom:903.600000px;}
.y103{bottom:904.506000px;}
.y11{bottom:906.000000px;}
.y41{bottom:920.118000px;}
.y15d{bottom:923.100000px;}
.y102{bottom:927.906000px;}
.y10{bottom:929.400000px;}
.ycf{bottom:932.100000px;}
.y15c{bottom:942.600000px;}
.y40{bottom:943.518000px;}
.y101{bottom:951.306000px;}
.yf{bottom:952.500000px;}
.yd2{bottom:955.800000px;}
.y15b{bottom:962.100000px;}
.yd3{bottom:965.400000px;}
.y3f{bottom:966.612000px;}
.y100{bottom:974.400000px;}
.yd1{bottom:975.300000px;}
.ye{bottom:976.494000px;}
.y15a{bottom:981.300000px;}
.y3e{bottom:990.012000px;}
.yff{bottom:997.800000px;}
.y159{bottom:1000.800000px;}
.yd{bottom:1003.794000px;}
.ycb{bottom:1010.700000px;}
.y3d{bottom:1013.412000px;}
.yce{bottom:1014.900000px;}
.y158{bottom:1020.300000px;}
.yfe{bottom:1021.200000px;}
.yc{bottom:1030.800000px;}
.ycd{bottom:1034.100000px;}
.y3c{bottom:1036.506000px;}
.y157{bottom:1039.500000px;}
.yfd{bottom:1042.500000px;}
.yb{bottom:1058.100000px;}
.y156{bottom:1059.000000px;}
.y3b{bottom:1059.906000px;}
.yc5{bottom:1069.500000px;}
.yc9{bottom:1073.700000px;}
.y155{bottom:1078.500000px;}
.y8{bottom:1079.400000px;}
.y3a{bottom:1083.306000px;}
.yc8{bottom:1093.200000px;}
.y154{bottom:1097.700000px;}
.yca{bottom:1102.800000px;}
.y6{bottom:1103.400000px;}
.y39{bottom:1106.400000px;}
.yc7{bottom:1112.700000px;}
.y153{bottom:1117.200000px;}
.y5{bottom:1129.200000px;}
.y38{bottom:1129.800000px;}
.y152{bottom:1136.700000px;}
.y3{bottom:1144.800000px;}
.y37{bottom:1153.200000px;}
.y151{bottom:1156.200000px;}
.y2{bottom:1164.300000px;}
.y36{bottom:1183.500000px;}
.y1{bottom:1183.800000px;}
.h1a{height:19.200000px;}
.h23{height:19.501500px;}
.h18{height:21.298500px;}
.h13{height:21.300000px;}
.h19{height:21.600000px;}
.h5{height:23.401500px;}
.h9{height:23.998500px;}
.h4{height:31.320000px;}
.h21{height:39.000000px;}
.h10{height:41.760000px;}
.h3{height:43.920000px;}
.he{height:46.680000px;}
.h7{height:47.400000px;}
.h25{height:48.312000px;}
.h2{height:48.420000px;}
.h24{height:51.408000px;}
.hf{height:52.200000px;}
.hd{height:52.704000px;}
.h14{height:53.262000px;}
.h11{height:56.016000px;}
.h16{height:57.420000px;}
.h8{height:58.104000px;}
.h1e{height:58.200000px;}
.hc{height:62.640000px;}
.h15{height:63.901500px;}
.hb{height:67.788000px;}
.h6{height:70.664062px;}
.ha{height:73.080000px;}
.h12{height:75.093750px;}
.h1d{height:77.700000px;}
.h22{height:91.800000px;}
.h1b{height:96.900000px;}
.h20{height:97.200000px;}
.h17{height:100.650000px;}
.h1c{height:135.900000px;}
.h1f{height:155.400000px;}
.h0{height:1262.700000px;}
.h1{height:1263.000000px;}
.w11{width:77.700000px;}
.w12{width:78.600000px;}
.w13{width:78.601500px;}
.we{width:80.400000px;}
.wf{width:80.698500px;}
.wd{width:80.700000px;}
.w10{width:92.400000px;}
.w8{width:101.998500px;}
.w7{width:102.000000px;}
.w6{width:102.300000px;}
.w4{width:127.500000px;}
.w3{width:127.800000px;}
.w9{width:158.401500px;}
.wa{width:158.998500px;}
.wc{width:159.000000px;}
.wb{width:159.300000px;}
.w5{width:307.800000px;}
.w2{width:478.200000px;}
.w0{width:893.100000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x32{left:5.400000px;}
.x4{left:8.100000px;}
.x49{left:10.500000px;}
.x30{left:13.800000px;}
.x4a{left:15.900000px;}
.x22{left:17.700000px;}
.x20{left:22.200000px;}
.x48{left:25.200000px;}
.x19{left:32.100000px;}
.x29{left:63.000000px;}
.x3{left:79.800000px;}
.x1{left:91.500000px;}
.x13{left:95.700000px;}
.x17{left:97.800000px;}
.x9{left:100.194000px;}
.x14{left:102.300000px;}
.x26{left:106.800000px;}
.x27{left:111.300000px;}
.x4c{left:112.800000px;}
.x8{left:123.000000px;}
.x6{left:125.100000px;}
.x21{left:135.600000px;}
.x12{left:144.600000px;}
.xd{left:172.500000px;}
.x28{left:183.900000px;}
.x10{left:187.206000px;}
.x24{left:189.906000px;}
.x16{left:192.336000px;}
.x46{left:194.400000px;}
.x2d{left:195.900000px;}
.x11{left:197.700000px;}
.x2c{left:200.400000px;}
.x44{left:201.900000px;}
.x47{left:205.800000px;}
.x2e{left:207.600000px;}
.xe{left:241.500000px;}
.x25{left:255.894000px;}
.x2f{left:261.600000px;}
.x23{left:271.200000px;}
.xb{left:273.000000px;}
.x31{left:276.900000px;}
.xc{left:280.200000px;}
.xa{left:311.097000px;}
.x2a{left:342.300000px;}
.x34{left:354.900000px;}
.x33{left:359.100000px;}
.x35{left:366.300000px;}
.xf{left:374.100000px;}
.x18{left:399.300000px;}
.x1d{left:417.000000px;}
.x1e{left:421.500000px;}
.x1f{left:426.000000px;}
.x37{left:429.900000px;}
.x36{left:436.200000px;}
.x2{left:446.400000px;}
.x4b{left:473.100000px;}
.x1a{left:501.600000px;}
.x39{left:513.900000px;}
.x38{left:518.100000px;}
.x3a{left:525.300000px;}
.x5{left:558.000000px;}
.x3b{left:579.900000px;}
.x3d{left:588.900000px;}
.x3c{left:595.200000px;}
.x1b{left:603.600000px;}
.x45{left:647.400000px;}
.x2b{left:660.600000px;}
.x3f{left:673.200000px;}
.x3e{left:677.400000px;}
.x40{left:684.600000px;}
.x7{left:685.800000px;}
.x1c{left:705.600000px;}
.x41{left:739.200000px;}
.x15{left:746.736000px;}
.x43{left:748.200000px;}
.x42{left:754.500000px;}
@media print{
.v4{vertical-align:-19.200000pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:19.200000pt;}
.v2{vertical-align:35.200000pt;}
.v1{vertical-align:38.426667pt;}
.ls3d{letter-spacing:-2.613333pt;}
.ls42{letter-spacing:-2.560000pt;}
.ls45{letter-spacing:-2.506667pt;}
.ls3e{letter-spacing:-2.400000pt;}
.ls43{letter-spacing:-2.186667pt;}
.ls1b{letter-spacing:-2.176000pt;}
.ls55{letter-spacing:-2.133333pt;}
.ls54{letter-spacing:-2.080000pt;}
.ls53{letter-spacing:-1.920000pt;}
.ls44{letter-spacing:-1.706667pt;}
.ls40{letter-spacing:-1.653333pt;}
.ls3b{letter-spacing:-1.546667pt;}
.ls56{letter-spacing:-1.493333pt;}
.ls3c{letter-spacing:-1.440000pt;}
.ls29{letter-spacing:-1.408000pt;}
.ls3f{letter-spacing:-1.333333pt;}
.ls57{letter-spacing:-1.066667pt;}
.ls41{letter-spacing:-0.853333pt;}
.ls5b{letter-spacing:-0.576000pt;}
.ls32{letter-spacing:-0.528000pt;}
.ls14{letter-spacing:-0.512000pt;}
.ls60{letter-spacing:-0.480000pt;}
.ls68{letter-spacing:-0.469333pt;}
.ls16{letter-spacing:-0.448000pt;}
.lsc{letter-spacing:-0.426667pt;}
.ls18{letter-spacing:-0.384000pt;}
.ls10{letter-spacing:-0.373333pt;}
.ls13{letter-spacing:-0.320000pt;}
.ls31{letter-spacing:-0.293333pt;}
.ls12{letter-spacing:-0.266667pt;}
.ls1a{letter-spacing:-0.256000pt;}
.ls2c{letter-spacing:-0.234667pt;}
.ls17{letter-spacing:-0.192000pt;}
.ls2d{letter-spacing:-0.176000pt;}
.lsd{letter-spacing:-0.160000pt;}
.ls3a{letter-spacing:-0.128000pt;}
.ls67{letter-spacing:-0.117333pt;}
.ls61{letter-spacing:-0.106667pt;}
.lsf{letter-spacing:-0.064000pt;}
.ls69{letter-spacing:-0.058667pt;}
.ls5f{letter-spacing:-0.053333pt;}
.lsb{letter-spacing:0.000000pt;}
.ls33{letter-spacing:0.053333pt;}
.lse{letter-spacing:0.074667pt;}
.lsa{letter-spacing:0.106667pt;}
.ls15{letter-spacing:0.192000pt;}
.ls11{letter-spacing:0.213333pt;}
.ls19{letter-spacing:0.256000pt;}
.ls64{letter-spacing:0.272000pt;}
.ls30{letter-spacing:0.293333pt;}
.ls5{letter-spacing:0.320000pt;}
.ls6{letter-spacing:0.339200pt;}
.ls2e{letter-spacing:0.352000pt;}
.ls25{letter-spacing:0.384000pt;}
.ls1e{letter-spacing:0.396800pt;}
.ls2f{letter-spacing:0.410667pt;}
.ls66{letter-spacing:0.426667pt;}
.ls7{letter-spacing:0.428800pt;}
.ls4{letter-spacing:0.448000pt;}
.ls51{letter-spacing:0.454400pt;}
.ls20{letter-spacing:0.480000pt;}
.ls5d{letter-spacing:0.693333pt;}
.ls65{letter-spacing:0.800000pt;}
.ls5c{letter-spacing:0.832000pt;}
.ls35{letter-spacing:0.985600pt;}
.ls1d{letter-spacing:1.024000pt;}
.ls62{letter-spacing:1.061333pt;}
.ls5e{letter-spacing:1.066667pt;}
.ls5a{letter-spacing:1.088000pt;}
.ls23{letter-spacing:4.224000pt;}
.ls63{letter-spacing:4.960000pt;}
.ls1f{letter-spacing:5.312000pt;}
.ls34{letter-spacing:7.494400pt;}
.ls24{letter-spacing:8.512000pt;}
.ls1c{letter-spacing:9.600000pt;}
.ls2a{letter-spacing:10.624000pt;}
.ls8{letter-spacing:10.739200pt;}
.ls52{letter-spacing:11.712000pt;}
.ls22{letter-spacing:11.744000pt;}
.ls28{letter-spacing:14.912000pt;}
.ls27{letter-spacing:17.024000pt;}
.ls58{letter-spacing:19.200000pt;}
.ls59{letter-spacing:23.424000pt;}
.ls9{letter-spacing:26.496000pt;}
.ls26{letter-spacing:36.608000pt;}
.ls39{letter-spacing:93.493333pt;}
.ls46{letter-spacing:94.560000pt;}
.ls37{letter-spacing:107.360000pt;}
.ls38{letter-spacing:108.426667pt;}
.ls36{letter-spacing:121.226667pt;}
.ls49{letter-spacing:135.093333pt;}
.ls4a{letter-spacing:136.160000pt;}
.ls50{letter-spacing:148.960000pt;}
.ls47{letter-spacing:161.760000pt;}
.ls48{letter-spacing:162.826667pt;}
.ls4b{letter-spacing:175.626667pt;}
.ls4c{letter-spacing:176.693333pt;}
.ls4d{letter-spacing:189.493333pt;}
.ls4e{letter-spacing:190.560000pt;}
.ls4f{letter-spacing:236.426667pt;}
.ls21{letter-spacing:258.826667pt;}
.ls3{letter-spacing:571.360000pt;}
.ls1{letter-spacing:752.693333pt;}
.ls2{letter-spacing:804.960000pt;}
.ls2b{letter-spacing:915.552000pt;}
.ls0{letter-spacing:1242.293333pt;}
.ws3{word-spacing:-17.408000pt;}
.ws4{word-spacing:-17.088000pt;}
.ws8{word-spacing:-17.024000pt;}
.wsaf{word-spacing:-16.960000pt;}
.ws7{word-spacing:-16.896000pt;}
.ws64{word-spacing:-16.768000pt;}
.ws65{word-spacing:-16.704000pt;}
.wsa1{word-spacing:-16.576000pt;}
.ws2{word-spacing:-16.192000pt;}
.ws75{word-spacing:-16.074667pt;}
.ws74{word-spacing:-15.957333pt;}
.ws9{word-spacing:-15.936000pt;}
.ws6{word-spacing:-15.872000pt;}
.ws2f{word-spacing:-15.680000pt;}
.ws73{word-spacing:-15.488000pt;}
.wsea{word-spacing:-15.429333pt;}
.wse9{word-spacing:-15.194667pt;}
.ws72{word-spacing:-14.666667pt;}
.ws76{word-spacing:-14.549333pt;}
.wscf{word-spacing:-14.453333pt;}
.wsce{word-spacing:-14.346667pt;}
.wscd{word-spacing:-14.293333pt;}
.wse6{word-spacing:-14.240000pt;}
.ws1{word-spacing:-14.080000pt;}
.ws5{word-spacing:-13.973333pt;}
.wse7{word-spacing:-13.866667pt;}
.ws0{word-spacing:-13.813333pt;}
.wsd0{word-spacing:-13.760000pt;}
.wscc{word-spacing:-13.066667pt;}
.wse8{word-spacing:-13.013333pt;}
.ws8f{word-spacing:-12.906667pt;}
.ws9d{word-spacing:-12.320000pt;}
.ws8c{word-spacing:-12.160000pt;}
.ws9f{word-spacing:-12.106667pt;}
.ws89{word-spacing:-12.053333pt;}
.ws88{word-spacing:-11.946667pt;}
.ws8e{word-spacing:-11.840000pt;}
.ws8d{word-spacing:-11.733333pt;}
.ws9e{word-spacing:-11.680000pt;}
.ws8a{word-spacing:-11.093333pt;}
.wsa0{word-spacing:-10.933333pt;}
.ws8b{word-spacing:-10.880000pt;}
.wsd1{word-spacing:-8.736000pt;}
.wsc3{word-spacing:-4.224000pt;}
.wsc4{word-spacing:-4.096000pt;}
.ws3c{word-spacing:-3.776000pt;}
.wse1{word-spacing:-3.680000pt;}
.wse2{word-spacing:-3.466667pt;}
.ws4e{word-spacing:-3.456000pt;}
.ws6b{word-spacing:-3.392000pt;}
.wse3{word-spacing:-3.306667pt;}
.ws68{word-spacing:-3.136000pt;}
.wsc7{word-spacing:-3.008000pt;}
.ws69{word-spacing:-2.816000pt;}
.ws1a{word-spacing:-2.688000pt;}
.ws2e{word-spacing:-2.368000pt;}
.wsb5{word-spacing:-2.112000pt;}
.ws7b{word-spacing:-1.984000pt;}
.ws5d{word-spacing:-1.792000pt;}
.ws5e{word-spacing:-1.664000pt;}
.ws98{word-spacing:-1.653333pt;}
.wsa7{word-spacing:-1.440000pt;}
.ws19{word-spacing:-1.280000pt;}
.wsec{word-spacing:-1.173333pt;}
.wsb4{word-spacing:-1.088000pt;}
.ws9b{word-spacing:-1.066667pt;}
.ws54{word-spacing:-1.024000pt;}
.wse5{word-spacing:-1.013333pt;}
.ws30{word-spacing:-0.853333pt;}
.wsbf{word-spacing:-0.832000pt;}
.wseb{word-spacing:-0.800000pt;}
.ws7e{word-spacing:-0.704000pt;}
.wsf6{word-spacing:-0.693333pt;}
.ws14{word-spacing:-0.586667pt;}
.ws43{word-spacing:-0.576000pt;}
.ws94{word-spacing:-0.512000pt;}
.wsa{word-spacing:-0.480000pt;}
.ws53{word-spacing:-0.448000pt;}
.wsc{word-spacing:-0.373333pt;}
.ws12{word-spacing:-0.320000pt;}
.ws101{word-spacing:-0.293333pt;}
.ws2d{word-spacing:-0.256000pt;}
.wsd{word-spacing:-0.213333pt;}
.wse{word-spacing:-0.192000pt;}
.ws97{word-spacing:-0.106667pt;}
.ws81{word-spacing:-0.058667pt;}
.ws86{word-spacing:-0.053333pt;}
.wsb{word-spacing:0.000000pt;}
.ws15{word-spacing:0.053333pt;}
.ws82{word-spacing:0.058667pt;}
.ws11{word-spacing:0.064000pt;}
.ws5b{word-spacing:0.128000pt;}
.ws20{word-spacing:0.192000pt;}
.wsf{word-spacing:0.224000pt;}
.ws3b{word-spacing:0.256000pt;}
.ws16{word-spacing:0.266667pt;}
.ws85{word-spacing:0.293333pt;}
.ws10{word-spacing:0.298667pt;}
.ws70{word-spacing:0.320000pt;}
.ws80{word-spacing:0.352000pt;}
.ws13{word-spacing:0.373333pt;}
.ws32{word-spacing:0.384000pt;}
.ws105{word-spacing:0.410667pt;}
.wsd8{word-spacing:0.426667pt;}
.ws79{word-spacing:0.448000pt;}
.ws104{word-spacing:0.469333pt;}
.wsa5{word-spacing:0.480000pt;}
.ws1f{word-spacing:0.512000pt;}
.wsbd{word-spacing:0.576000pt;}
.ws83{word-spacing:0.645333pt;}
.ws9a{word-spacing:0.746667pt;}
.wsca{word-spacing:0.768000pt;}
.ws71{word-spacing:0.832000pt;}
.ws84{word-spacing:0.880000pt;}
.wse4{word-spacing:0.960000pt;}
.wsa2{word-spacing:1.066667pt;}
.ws4d{word-spacing:1.088000pt;}
.wsa4{word-spacing:1.120000pt;}
.wsc9{word-spacing:1.216000pt;}
.wscb{word-spacing:1.280000pt;}
.wsf8{word-spacing:1.333333pt;}
.ws23{word-spacing:1.408000pt;}
.wsf1{word-spacing:1.440000pt;}
.wsa6{word-spacing:1.493333pt;}
.ws3e{word-spacing:1.536000pt;}
.ws95{word-spacing:1.546667pt;}
.wsfc{word-spacing:1.653333pt;}
.ws9c{word-spacing:1.706667pt;}
.wsfb{word-spacing:1.813333pt;}
.ws55{word-spacing:1.920000pt;}
.wsf9{word-spacing:2.026667pt;}
.wsa3{word-spacing:2.080000pt;}
.ws24{word-spacing:2.176000pt;}
.wsfa{word-spacing:2.186667pt;}
.ws6f{word-spacing:2.368000pt;}
.ws3a{word-spacing:2.496000pt;}
.wsf7{word-spacing:2.506667pt;}
.ws99{word-spacing:2.560000pt;}
.ws96{word-spacing:2.613333pt;}
.ws35{word-spacing:2.624000pt;}
.ws61{word-spacing:2.880000pt;}
.ws91{word-spacing:2.944000pt;}
.ws60{word-spacing:3.008000pt;}
.ws103{word-spacing:3.168000pt;}
.wsef{word-spacing:3.253333pt;}
.ws21{word-spacing:3.264000pt;}
.ws62{word-spacing:3.392000pt;}
.ws102{word-spacing:3.520000pt;}
.ws92{word-spacing:3.584000pt;}
.ws46{word-spacing:3.648000pt;}
.wse0{word-spacing:3.680000pt;}
.ws1b{word-spacing:3.712000pt;}
.ws7c{word-spacing:3.904000pt;}
.ws25{word-spacing:4.032000pt;}
.wsdf{word-spacing:4.160000pt;}
.ws4b{word-spacing:4.288000pt;}
.ws33{word-spacing:4.416000pt;}
.wsfd{word-spacing:4.480000pt;}
.ws5a{word-spacing:4.608000pt;}
.ws26{word-spacing:4.736000pt;}
.wsa8{word-spacing:5.056000pt;}
.ws51{word-spacing:5.120000pt;}
.wsac{word-spacing:5.376000pt;}
.wsfe{word-spacing:5.386667pt;}
.ws38{word-spacing:5.504000pt;}
.ws52{word-spacing:5.568000pt;}
.ws27{word-spacing:5.696000pt;}
.ws37{word-spacing:5.760000pt;}
.ws36{word-spacing:5.824000pt;}
.ws7d{word-spacing:6.080000pt;}
.wsee{word-spacing:6.186667pt;}
.ws57{word-spacing:6.208000pt;}
.wsed{word-spacing:6.453333pt;}
.ws6a{word-spacing:6.464000pt;}
.wsd3{word-spacing:6.592000pt;}
.wsa9{word-spacing:6.656000pt;}
.ws58{word-spacing:6.784000pt;}
.ws56{word-spacing:6.848000pt;}
.ws4c{word-spacing:6.912000pt;}
.ws90{word-spacing:7.104000pt;}
.ws77{word-spacing:7.168000pt;}
.wsc8{word-spacing:7.232000pt;}
.ws48{word-spacing:7.488000pt;}
.ws4f{word-spacing:7.808000pt;}
.ws4a{word-spacing:7.936000pt;}
.ws1c{word-spacing:8.320000pt;}
.ws31{word-spacing:8.576000pt;}
.wsd5{word-spacing:8.768000pt;}
.wsb6{word-spacing:8.896000pt;}
.wsdc{word-spacing:8.906667pt;}
.wsde{word-spacing:9.013333pt;}
.ws28{word-spacing:9.024000pt;}
.ws7f{word-spacing:9.280000pt;}
.wsf0{word-spacing:9.386667pt;}
.wsdd{word-spacing:9.493333pt;}
.ws2b{word-spacing:9.664000pt;}
.wsba{word-spacing:9.984000pt;}
.wsd9{word-spacing:10.080000pt;}
.ws47{word-spacing:10.112000pt;}
.wsda{word-spacing:10.186667pt;}
.ws93{word-spacing:10.304000pt;}
.wsc6{word-spacing:10.432000pt;}
.wsdb{word-spacing:10.560000pt;}
.ws6c{word-spacing:10.688000pt;}
.ws22{word-spacing:11.008000pt;}
.ws6d{word-spacing:11.072000pt;}
.ws17{word-spacing:11.136000pt;}
.wsf5{word-spacing:11.626667pt;}
.wsae{word-spacing:11.776000pt;}
.wsc5{word-spacing:11.968000pt;}
.ws59{word-spacing:12.096000pt;}
.ws49{word-spacing:12.224000pt;}
.wsf4{word-spacing:12.320000pt;}
.wsd7{word-spacing:12.480000pt;}
.ws29{word-spacing:12.544000pt;}
.ws100{word-spacing:12.730667pt;}
.wsf3{word-spacing:12.800000pt;}
.wsf2{word-spacing:12.853333pt;}
.ws1e{word-spacing:12.864000pt;}
.ws34{word-spacing:13.184000pt;}
.wsff{word-spacing:13.200000pt;}
.ws1d{word-spacing:13.248000pt;}
.ws2a{word-spacing:13.312000pt;}
.ws7a{word-spacing:13.632000pt;}
.ws3d{word-spacing:13.888000pt;}
.ws78{word-spacing:14.016000pt;}
.wsbb{word-spacing:14.080000pt;}
.wsb1{word-spacing:14.336000pt;}
.ws42{word-spacing:14.976000pt;}
.ws6e{word-spacing:15.296000pt;}
.ws63{word-spacing:15.424000pt;}
.wsd4{word-spacing:15.808000pt;}
.ws87{word-spacing:16.064000pt;}
.ws44{word-spacing:16.256000pt;}
.ws45{word-spacing:16.512000pt;}
.ws67{word-spacing:16.832000pt;}
.wsd6{word-spacing:17.088000pt;}
.ws40{word-spacing:17.408000pt;}
.ws41{word-spacing:17.536000pt;}
.wsb3{word-spacing:19.712000pt;}
.ws5f{word-spacing:19.904000pt;}
.wsbe{word-spacing:20.288000pt;}
.ws50{word-spacing:20.736000pt;}
.wsb8{word-spacing:21.376000pt;}
.wsc2{word-spacing:21.696000pt;}
.wsb2{word-spacing:21.824000pt;}
.wsb0{word-spacing:22.144000pt;}
.ws5c{word-spacing:22.912000pt;}
.wsc1{word-spacing:23.232000pt;}
.wsbc{word-spacing:23.488000pt;}
.ws66{word-spacing:23.936000pt;}
.ws3f{word-spacing:24.320000pt;}
.wsb7{word-spacing:24.576000pt;}
.ws18{word-spacing:26.112000pt;}
.ws39{word-spacing:26.688000pt;}
.wsad{word-spacing:27.136000pt;}
.ws2c{word-spacing:27.456000pt;}
.wsaa{word-spacing:28.864000pt;}
.wsab{word-spacing:28.992000pt;}
.wsd2{word-spacing:29.888000pt;}
.wsc0{word-spacing:31.424000pt;}
.wsb9{word-spacing:33.536000pt;}
._26{margin-left:-10.602667pt;}
._24{margin-left:-3.786667pt;}
._25{margin-left:-2.880000pt;}
._6{margin-left:-1.898667pt;}
._0{margin-left:-0.906667pt;}
._1{width:1.120000pt;}
._3{width:2.346667pt;}
._9{width:3.703467pt;}
._14{width:4.974933pt;}
._23{width:5.953067pt;}
._11{width:7.543467pt;}
._17{width:8.535467pt;}
._12{width:9.476267pt;}
._15{width:11.219200pt;}
._16{width:12.567467pt;}
._e{width:13.508267pt;}
._19{width:14.752000pt;}
._d{width:15.814400pt;}
._c{width:18.035200pt;}
._b{width:19.635200pt;}
._13{width:20.556800pt;}
._a{width:22.156800pt;}
._18{width:23.214933pt;}
._7{width:29.216000pt;}
._8{width:30.713600pt;}
._1b{width:110.645333pt;}
._1c{width:111.701333pt;}
._1d{width:142.618667pt;}
._1e{width:143.674667pt;}
._1f{width:158.576000pt;}
._22{width:174.592000pt;}
._21{width:175.648000pt;}
._20{width:191.002667pt;}
._1a{width:204.362667pt;}
._4{width:680.800000pt;}
._10{width:719.392000pt;}
._5{width:730.293333pt;}
._2{width:893.706667pt;}
._f{width:1007.626667pt;}
.fs1{font-size:32.000000pt;}
.fs4{font-size:42.666667pt;}
.fs0{font-size:53.333333pt;}
.fs5{font-size:58.666667pt;}
.fs2{font-size:64.000000pt;}
.fs3{font-size:74.666667pt;}
.y0{bottom:0.000000pt;}
.y9{bottom:2.933333pt;}
.yb8{bottom:3.733333pt;}
.ya1{bottom:4.000000pt;}
.yaf{bottom:4.266667pt;}
.y7{bottom:4.533333pt;}
.ya{bottom:5.333333pt;}
.ye3{bottom:21.066667pt;}
.ycc{bottom:38.133333pt;}
.ya3{bottom:41.866667pt;}
.yc6{bottom:55.466667pt;}
.yd0{bottom:55.733333pt;}
.y4{bottom:60.266667pt;}
.ybd{bottom:72.533333pt;}
.yde{bottom:72.800000pt;}
.y86{bottom:86.421333pt;}
.y126{bottom:86.426667pt;}
.y65{bottom:86.453333pt;}
.yfc{bottom:88.037333pt;}
.yc4{bottom:90.133333pt;}
.y150{bottom:92.533333pt;}
.y35{bottom:101.338667pt;}
.yb4{bottom:101.872000pt;}
.y85{bottom:107.221333pt;}
.y125{bottom:107.226667pt;}
.y64{bottom:107.253333pt;}
.yfb{bottom:108.565333pt;}
.y14f{bottom:109.866667pt;}
.yc3{bottom:111.200000pt;}
.y9f{bottom:113.946667pt;}
.y34{bottom:122.138667pt;}
.yb3{bottom:122.400000pt;}
.yd5{bottom:124.533333pt;}
.y14e{bottom:126.933333pt;}
.y84{bottom:127.749333pt;}
.y124{bottom:127.754667pt;}
.y63{bottom:127.781333pt;}
.yc2{bottom:128.533333pt;}
.yfa{bottom:129.365333pt;}
.y9e{bottom:134.746667pt;}
.y33{bottom:142.938667pt;}
.yb2{bottom:143.200000pt;}
.y14d{bottom:144.266667pt;}
.yc1{bottom:145.600000pt;}
.y83{bottom:148.549333pt;}
.y123{bottom:148.554667pt;}
.y62{bottom:148.581333pt;}
.yf9{bottom:150.165333pt;}
.y9d{bottom:155.546667pt;}
.y14c{bottom:161.600000pt;}
.yb1{bottom:162.133333pt;}
.yc0{bottom:162.933333pt;}
.y32{bottom:163.466667pt;}
.y82{bottom:169.077333pt;}
.y122{bottom:169.082667pt;}
.y61{bottom:169.109333pt;}
.yf8{bottom:170.693333pt;}
.y9c{bottom:176.074667pt;}
.yb0{bottom:176.800000pt;}
.y14b{bottom:178.666667pt;}
.ybf{bottom:180.266667pt;}
.y31{bottom:184.266667pt;}
.y81{bottom:189.877333pt;}
.y121{bottom:189.882667pt;}
.y60{bottom:189.909333pt;}
.yae{bottom:190.933333pt;}
.yf7{bottom:191.493333pt;}
.y14a{bottom:196.000000pt;}
.y9b{bottom:196.874667pt;}
.ybe{bottom:197.333333pt;}
.y30{bottom:205.066667pt;}
.yad{bottom:210.666667pt;}
.y80{bottom:210.677333pt;}
.y120{bottom:210.682667pt;}
.y5f{bottom:210.709333pt;}
.ybc{bottom:211.733333pt;}
.yf6{bottom:212.293333pt;}
.y149{bottom:213.333333pt;}
.y9a{bottom:217.674667pt;}
.y2f{bottom:224.000000pt;}
.y148{bottom:230.400000pt;}
.y7f{bottom:231.205333pt;}
.y11f{bottom:231.210667pt;}
.y5e{bottom:231.237333pt;}
.ybb{bottom:232.533333pt;}
.yf5{bottom:232.821333pt;}
.yac{bottom:234.398667pt;}
.y99{bottom:238.202667pt;}
.y2e{bottom:239.466667pt;}
.y147{bottom:247.733333pt;}
.yba{bottom:249.866667pt;}
.yb6{bottom:250.133333pt;}
.y7e{bottom:252.005333pt;}
.y11e{bottom:252.010667pt;}
.y5d{bottom:252.037333pt;}
.yab{bottom:253.333333pt;}
.yf4{bottom:253.621333pt;}
.y98{bottom:259.002667pt;}
.y2d{bottom:260.266667pt;}
.y146{bottom:265.066667pt;}
.yb9{bottom:267.200000pt;}
.yb5{bottom:267.466667pt;}
.ya8{bottom:269.066667pt;}
.y7d{bottom:272.805333pt;}
.y11d{bottom:272.810667pt;}
.y5c{bottom:272.837333pt;}
.yaa{bottom:273.065333pt;}
.yf3{bottom:274.421333pt;}
.y2c{bottom:279.200000pt;}
.y97{bottom:279.802667pt;}
.y145{bottom:282.133333pt;}
.ya9{bottom:292.000000pt;}
.y7c{bottom:293.333333pt;}
.y11c{bottom:293.338667pt;}
.y5b{bottom:293.365333pt;}
.y17a{bottom:293.866667pt;}
.y2b{bottom:294.704000pt;}
.yf2{bottom:294.949333pt;}
.yb7{bottom:298.666667pt;}
.y144{bottom:299.466667pt;}
.y96{bottom:300.330667pt;}
.y139{bottom:312.533333pt;}
.y179{bottom:312.800000pt;}
.y7b{bottom:314.133333pt;}
.y11b{bottom:314.138667pt;}
.y5a{bottom:314.165333pt;}
.y2a{bottom:315.504000pt;}
.yf1{bottom:315.749333pt;}
.y143{bottom:316.800000pt;}
.y95{bottom:321.130667pt;}
.ya5{bottom:326.666667pt;}
.y138{bottom:328.032000pt;}
.ya7{bottom:330.665333pt;}
.y178{bottom:330.666667pt;}
.y7a{bottom:333.333333pt;}
.y142{bottom:334.133333pt;}
.y11a{bottom:334.938667pt;}
.y59{bottom:334.965333pt;}
.y29{bottom:336.032000pt;}
.yf0{bottom:336.277333pt;}
.y94{bottom:341.658667pt;}
.y177{bottom:345.597333pt;}
.y79{bottom:348.554667pt;}
.y137{bottom:348.560000pt;}
.ya6{bottom:349.600000pt;}
.y141{bottom:351.200000pt;}
.y119{bottom:355.466667pt;}
.y58{bottom:355.493333pt;}
.y28{bottom:356.832000pt;}
.yef{bottom:357.077333pt;}
.y93{bottom:362.458667pt;}
.y176{bottom:364.532000pt;}
.y140{bottom:367.733333pt;}
.y78{bottom:369.354667pt;}
.y136{bottom:369.360000pt;}
.y118{bottom:376.266667pt;}
.y57{bottom:376.293333pt;}
.y27{bottom:377.632000pt;}
.yee{bottom:377.877333pt;}
.y13f{bottom:383.200000pt;}
.y92{bottom:383.258667pt;}
.y175{bottom:383.466667pt;}
.ya2{bottom:384.266667pt;}
.y77{bottom:390.154667pt;}
.y135{bottom:390.160000pt;}
.y117{bottom:395.466667pt;}
.y56{bottom:397.093333pt;}
.y26{bottom:398.160000pt;}
.yed{bottom:398.405333pt;}
.y13e{bottom:402.133333pt;}
.y91{bottom:403.786667pt;}
.y174{bottom:406.666667pt;}
.ya4{bottom:407.200000pt;}
.y76{bottom:410.682667pt;}
.y134{bottom:410.688000pt;}
.y116{bottom:410.709333pt;}
.y13d{bottom:417.605333pt;}
.y55{bottom:417.621333pt;}
.y25{bottom:418.960000pt;}
.yec{bottom:419.205333pt;}
.y90{bottom:424.586667pt;}
.y75{bottom:431.482667pt;}
.y133{bottom:431.488000pt;}
.y115{bottom:431.509333pt;}
.y13c{bottom:438.405333pt;}
.y54{bottom:438.421333pt;}
.y24{bottom:439.488000pt;}
.yeb{bottom:440.005333pt;}
.ya0{bottom:441.866667pt;}
.y173{bottom:444.798667pt;}
.y8f{bottom:445.386667pt;}
.y74{bottom:452.282667pt;}
.y132{bottom:452.288000pt;}
.y114{bottom:452.309333pt;}
.y13b{bottom:458.933333pt;}
.y53{bottom:458.949333pt;}
.y23{bottom:460.288000pt;}
.yea{bottom:460.533333pt;}
.y172{bottom:463.733333pt;}
.y8e{bottom:465.914667pt;}
.y73{bottom:472.810667pt;}
.y131{bottom:472.816000pt;}
.y113{bottom:472.837333pt;}
.y13a{bottom:478.133333pt;}
.y52{bottom:479.749333pt;}
.y22{bottom:481.088000pt;}
.ye9{bottom:481.333333pt;}
.y171{bottom:481.600000pt;}
.y8d{bottom:486.714667pt;}
.y72{bottom:493.610667pt;}
.y130{bottom:493.616000pt;}
.y112{bottom:493.637333pt;}
.y170{bottom:496.266667pt;}
.y51{bottom:500.549333pt;}
.y21{bottom:501.616000pt;}
.ye8{bottom:502.133333pt;}
.y8c{bottom:507.514667pt;}
.y16f{bottom:513.333333pt;}
.y71{bottom:514.138667pt;}
.y12f{bottom:514.144000pt;}
.y111{bottom:514.165333pt;}
.ye7{bottom:521.066667pt;}
.y50{bottom:521.077333pt;}
.y20{bottom:522.416000pt;}
.y8b{bottom:528.042667pt;}
.y16e{bottom:529.866667pt;}
.y70{bottom:534.938667pt;}
.y12e{bottom:534.944000pt;}
.y110{bottom:534.965333pt;}
.ye6{bottom:535.733333pt;}
.y4f{bottom:541.877333pt;}
.y1f{bottom:543.216000pt;}
.y16d{bottom:544.533333pt;}
.y8a{bottom:548.842667pt;}
.ye5{bottom:549.866667pt;}
.y6f{bottom:555.738667pt;}
.y12d{bottom:555.744000pt;}
.y10f{bottom:555.765333pt;}
.y16c{bottom:561.866667pt;}
.y4e{bottom:562.677333pt;}
.y1e{bottom:563.744000pt;}
.ye2{bottom:567.733333pt;}
.y89{bottom:569.642667pt;}
.ye4{bottom:571.466667pt;}
.y6e{bottom:576.266667pt;}
.y12c{bottom:576.272000pt;}
.y10e{bottom:576.293333pt;}
.y16b{bottom:578.933333pt;}
.y4d{bottom:583.205333pt;}
.y1d{bottom:584.544000pt;}
.y88{bottom:590.170667pt;}
.y16a{bottom:596.266667pt;}
.y6d{bottom:597.066667pt;}
.y12b{bottom:597.072000pt;}
.y10d{bottom:597.093333pt;}
.ydd{bottom:602.933333pt;}
.y4c{bottom:604.005333pt;}
.y1c{bottom:605.344000pt;}
.y87{bottom:610.970667pt;}
.y169{bottom:613.600000pt;}
.y6c{bottom:616.266667pt;}
.y12a{bottom:617.872000pt;}
.y10c{bottom:617.893333pt;}
.ye1{bottom:624.000000pt;}
.y4b{bottom:624.805333pt;}
.y1b{bottom:625.872000pt;}
.y168{bottom:630.666667pt;}
.y6b{bottom:631.498667pt;}
.y129{bottom:638.400000pt;}
.y10b{bottom:638.421333pt;}
.ye0{bottom:641.333333pt;}
.y4a{bottom:645.333333pt;}
.y1a{bottom:646.672000pt;}
.y167{bottom:648.000000pt;}
.y6a{bottom:652.298667pt;}
.ydf{bottom:658.400000pt;}
.y128{bottom:659.200000pt;}
.y10a{bottom:659.221333pt;}
.y166{bottom:665.333333pt;}
.y49{bottom:666.133333pt;}
.y19{bottom:667.200000pt;}
.y69{bottom:673.098667pt;}
.y127{bottom:678.400000pt;}
.y109{bottom:680.021333pt;}
.y165{bottom:682.666667pt;}
.y48{bottom:685.066667pt;}
.y18{bottom:688.000000pt;}
.yd4{bottom:689.866667pt;}
.y68{bottom:693.626667pt;}
.y164{bottom:699.733333pt;}
.y47{bottom:700.533333pt;}
.y108{bottom:700.549333pt;}
.y17{bottom:707.200000pt;}
.ydb{bottom:710.933333pt;}
.y67{bottom:714.426667pt;}
.y163{bottom:717.066667pt;}
.y46{bottom:721.333333pt;}
.y107{bottom:721.349333pt;}
.y16{bottom:721.866667pt;}
.yda{bottom:728.266667pt;}
.y162{bottom:734.400000pt;}
.y66{bottom:735.226667pt;}
.y15{bottom:738.933333pt;}
.y45{bottom:740.533333pt;}
.y106{bottom:742.149333pt;}
.yd9{bottom:745.333333pt;}
.y161{bottom:751.466667pt;}
.ydc{bottom:754.133333pt;}
.y14{bottom:755.466667pt;}
.y44{bottom:755.754667pt;}
.yd8{bottom:762.666667pt;}
.y105{bottom:762.677333pt;}
.y160{bottom:768.800000pt;}
.y13{bottom:770.133333pt;}
.y43{bottom:776.554667pt;}
.yd7{bottom:780.000000pt;}
.y104{bottom:783.477333pt;}
.y15f{bottom:786.133333pt;}
.y12{bottom:787.200000pt;}
.yd6{bottom:797.333333pt;}
.y42{bottom:797.354667pt;}
.y15e{bottom:803.200000pt;}
.y103{bottom:804.005333pt;}
.y11{bottom:805.333333pt;}
.y41{bottom:817.882667pt;}
.y15d{bottom:820.533333pt;}
.y102{bottom:824.805333pt;}
.y10{bottom:826.133333pt;}
.ycf{bottom:828.533333pt;}
.y15c{bottom:837.866667pt;}
.y40{bottom:838.682667pt;}
.y101{bottom:845.605333pt;}
.yf{bottom:846.666667pt;}
.yd2{bottom:849.600000pt;}
.y15b{bottom:855.200000pt;}
.yd3{bottom:858.133333pt;}
.y3f{bottom:859.210667pt;}
.y100{bottom:866.133333pt;}
.yd1{bottom:866.933333pt;}
.ye{bottom:867.994667pt;}
.y15a{bottom:872.266667pt;}
.y3e{bottom:880.010667pt;}
.yff{bottom:886.933333pt;}
.y159{bottom:889.600000pt;}
.yd{bottom:892.261333pt;}
.ycb{bottom:898.400000pt;}
.y3d{bottom:900.810667pt;}
.yce{bottom:902.133333pt;}
.y158{bottom:906.933333pt;}
.yfe{bottom:907.733333pt;}
.yc{bottom:916.266667pt;}
.ycd{bottom:919.200000pt;}
.y3c{bottom:921.338667pt;}
.y157{bottom:924.000000pt;}
.yfd{bottom:926.666667pt;}
.yb{bottom:940.533333pt;}
.y156{bottom:941.333333pt;}
.y3b{bottom:942.138667pt;}
.yc5{bottom:950.666667pt;}
.yc9{bottom:954.400000pt;}
.y155{bottom:958.666667pt;}
.y8{bottom:959.466667pt;}
.y3a{bottom:962.938667pt;}
.yc8{bottom:971.733333pt;}
.y154{bottom:975.733333pt;}
.yca{bottom:980.266667pt;}
.y6{bottom:980.800000pt;}
.y39{bottom:983.466667pt;}
.yc7{bottom:989.066667pt;}
.y153{bottom:993.066667pt;}
.y5{bottom:1003.733333pt;}
.y38{bottom:1004.266667pt;}
.y152{bottom:1010.400000pt;}
.y3{bottom:1017.600000pt;}
.y37{bottom:1025.066667pt;}
.y151{bottom:1027.733333pt;}
.y2{bottom:1034.933333pt;}
.y36{bottom:1052.000000pt;}
.y1{bottom:1052.266667pt;}
.h1a{height:17.066667pt;}
.h23{height:17.334667pt;}
.h18{height:18.932000pt;}
.h13{height:18.933333pt;}
.h19{height:19.200000pt;}
.h5{height:20.801333pt;}
.h9{height:21.332000pt;}
.h4{height:27.840000pt;}
.h21{height:34.666667pt;}
.h10{height:37.120000pt;}
.h3{height:39.040000pt;}
.he{height:41.493333pt;}
.h7{height:42.133333pt;}
.h25{height:42.944000pt;}
.h2{height:43.040000pt;}
.h24{height:45.696000pt;}
.hf{height:46.400000pt;}
.hd{height:46.848000pt;}
.h14{height:47.344000pt;}
.h11{height:49.792000pt;}
.h16{height:51.040000pt;}
.h8{height:51.648000pt;}
.h1e{height:51.733333pt;}
.hc{height:55.680000pt;}
.h15{height:56.801333pt;}
.hb{height:60.256000pt;}
.h6{height:62.812500pt;}
.ha{height:64.960000pt;}
.h12{height:66.750000pt;}
.h1d{height:69.066667pt;}
.h22{height:81.600000pt;}
.h1b{height:86.133333pt;}
.h20{height:86.400000pt;}
.h17{height:89.466667pt;}
.h1c{height:120.800000pt;}
.h1f{height:138.133333pt;}
.h0{height:1122.400000pt;}
.h1{height:1122.666667pt;}
.w11{width:69.066667pt;}
.w12{width:69.866667pt;}
.w13{width:69.868000pt;}
.we{width:71.466667pt;}
.wf{width:71.732000pt;}
.wd{width:71.733333pt;}
.w10{width:82.133333pt;}
.w8{width:90.665333pt;}
.w7{width:90.666667pt;}
.w6{width:90.933333pt;}
.w4{width:113.333333pt;}
.w3{width:113.600000pt;}
.w9{width:140.801333pt;}
.wa{width:141.332000pt;}
.wc{width:141.333333pt;}
.wb{width:141.600000pt;}
.w5{width:273.600000pt;}
.w2{width:425.066667pt;}
.w0{width:793.866667pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x32{left:4.800000pt;}
.x4{left:7.200000pt;}
.x49{left:9.333333pt;}
.x30{left:12.266667pt;}
.x4a{left:14.133333pt;}
.x22{left:15.733333pt;}
.x20{left:19.733333pt;}
.x48{left:22.400000pt;}
.x19{left:28.533333pt;}
.x29{left:56.000000pt;}
.x3{left:70.933333pt;}
.x1{left:81.333333pt;}
.x13{left:85.066667pt;}
.x17{left:86.933333pt;}
.x9{left:89.061333pt;}
.x14{left:90.933333pt;}
.x26{left:94.933333pt;}
.x27{left:98.933333pt;}
.x4c{left:100.266667pt;}
.x8{left:109.333333pt;}
.x6{left:111.200000pt;}
.x21{left:120.533333pt;}
.x12{left:128.533333pt;}
.xd{left:153.333333pt;}
.x28{left:163.466667pt;}
.x10{left:166.405333pt;}
.x24{left:168.805333pt;}
.x16{left:170.965333pt;}
.x46{left:172.800000pt;}
.x2d{left:174.133333pt;}
.x11{left:175.733333pt;}
.x2c{left:178.133333pt;}
.x44{left:179.466667pt;}
.x47{left:182.933333pt;}
.x2e{left:184.533333pt;}
.xe{left:214.666667pt;}
.x25{left:227.461333pt;}
.x2f{left:232.533333pt;}
.x23{left:241.066667pt;}
.xb{left:242.666667pt;}
.x31{left:246.133333pt;}
.xc{left:249.066667pt;}
.xa{left:276.530667pt;}
.x2a{left:304.266667pt;}
.x34{left:315.466667pt;}
.x33{left:319.200000pt;}
.x35{left:325.600000pt;}
.xf{left:332.533333pt;}
.x18{left:354.933333pt;}
.x1d{left:370.666667pt;}
.x1e{left:374.666667pt;}
.x1f{left:378.666667pt;}
.x37{left:382.133333pt;}
.x36{left:387.733333pt;}
.x2{left:396.800000pt;}
.x4b{left:420.533333pt;}
.x1a{left:445.866667pt;}
.x39{left:456.800000pt;}
.x38{left:460.533333pt;}
.x3a{left:466.933333pt;}
.x5{left:496.000000pt;}
.x3b{left:515.466667pt;}
.x3d{left:523.466667pt;}
.x3c{left:529.066667pt;}
.x1b{left:536.533333pt;}
.x45{left:575.466667pt;}
.x2b{left:587.200000pt;}
.x3f{left:598.400000pt;}
.x3e{left:602.133333pt;}
.x40{left:608.533333pt;}
.x7{left:609.600000pt;}
.x1c{left:627.200000pt;}
.x41{left:657.066667pt;}
.x15{left:663.765333pt;}
.x43{left:665.066667pt;}
.x42{left:670.666667pt;}
}




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