
    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_8df71daeb210b54518422d29.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_c11ab7e25854f13092e3998c.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.939453;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_367173bf5b77a3abd39a4528.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.926758;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_a30668df5346888c20c84fe3.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.690918;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_72e3522ba651c96c703ddff8.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_7390dc4f1795b2c34d233648.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_318ed77d7b78fc3394ad6f60.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.981934;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_c2902f8e6163ead1bee778ec.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.982910;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_75cc296119e3cf691ea374c1.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.682617;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_080e91002152ba5d90516901.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.715820;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);}
.m3{transform:matrix(0.250780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250780,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.250812,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250812,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250812,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);}
.v1{vertical-align:-23.040000px;}
.v2{vertical-align:-17.280000px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:24.900000px;}
.v3{vertical-align:43.080000px;}
.ls5e{letter-spacing:-20.592000px;}
.ls61{letter-spacing:-7.260000px;}
.ls4d{letter-spacing:-6.480000px;}
.ls62{letter-spacing:-5.760000px;}
.ls66{letter-spacing:-5.484000px;}
.ls65{letter-spacing:-4.764000px;}
.ls5f{letter-spacing:-4.752000px;}
.ls64{letter-spacing:-4.608000px;}
.ls63{letter-spacing:-4.476000px;}
.ls2d{letter-spacing:-1.254000px;}
.ls46{letter-spacing:-0.828000px;}
.ls4a{letter-spacing:-0.774000px;}
.ls50{letter-spacing:-0.702000px;}
.ls28{letter-spacing:-0.576000px;}
.ls60{letter-spacing:-0.456000px;}
.ls2{letter-spacing:-0.432000px;}
.ls3b{letter-spacing:-0.367800px;}
.ls48{letter-spacing:-0.306600px;}
.ls32{letter-spacing:-0.288000px;}
.ls31{letter-spacing:-0.273000px;}
.lse{letter-spacing:-0.264000px;}
.ls4c{letter-spacing:-0.259800px;}
.ls2e{letter-spacing:-0.256200px;}
.lsc{letter-spacing:-0.247800px;}
.ls3c{letter-spacing:-0.216000px;}
.ls1b{letter-spacing:-0.208200px;}
.ls36{letter-spacing:-0.205800px;}
.ls2f{letter-spacing:-0.189600px;}
.lsb{letter-spacing:-0.160200px;}
.ls37{letter-spacing:-0.154800px;}
.ls25{letter-spacing:-0.144000px;}
.ls2c{letter-spacing:-0.122400px;}
.ls5{letter-spacing:-0.106800px;}
.ls49{letter-spacing:-0.053400px;}
.ls19{letter-spacing:-0.042600px;}
.ls3f{letter-spacing:-0.032676px;}
.ls17{letter-spacing:-0.021600px;}
.ls1e{letter-spacing:-0.018600px;}
.ls1{letter-spacing:0.000000px;}
.ls51{letter-spacing:0.012000px;}
.ls13{letter-spacing:0.018600px;}
.ls14{letter-spacing:0.037200px;}
.ls59{letter-spacing:0.102000px;}
.lsf{letter-spacing:0.103800px;}
.ls47{letter-spacing:0.105600px;}
.ls5c{letter-spacing:0.132000px;}
.ls9{letter-spacing:0.144000px;}
.ls56{letter-spacing:0.156000px;}
.ls42{letter-spacing:0.156508px;}
.ls30{letter-spacing:0.186000px;}
.ls3e{letter-spacing:0.189672px;}
.lsd{letter-spacing:0.208200px;}
.ls33{letter-spacing:0.211968px;}
.ls8{letter-spacing:0.216000px;}
.ls34{letter-spacing:0.223920px;}
.ls55{letter-spacing:0.228000px;}
.ls57{letter-spacing:0.234000px;}
.ls38{letter-spacing:0.236400px;}
.ls5a{letter-spacing:0.239976px;}
.ls58{letter-spacing:0.240000px;}
.ls5b{letter-spacing:0.246000px;}
.ls39{letter-spacing:0.252000px;}
.ls21{letter-spacing:0.264000px;}
.ls0{letter-spacing:0.288000px;}
.ls40{letter-spacing:0.302394px;}
.ls18{letter-spacing:0.309600px;}
.ls4e{letter-spacing:0.324000px;}
.ls3d{letter-spacing:0.324480px;}
.ls1a{letter-spacing:0.341400px;}
.ls1f{letter-spacing:0.360000px;}
.ls1c{letter-spacing:0.511800px;}
.ls4b{letter-spacing:0.612000px;}
.ls2a{letter-spacing:0.698688px;}
.ls1d{letter-spacing:0.756000px;}
.ls7{letter-spacing:0.823968px;}
.ls6{letter-spacing:0.824400px;}
.ls4{letter-spacing:1.458720px;}
.ls2b{letter-spacing:1.477680px;}
.ls5d{letter-spacing:1.596000px;}
.ls12{letter-spacing:2.178720px;}
.ls22{letter-spacing:3.024000px;}
.ls3a{letter-spacing:8.892000px;}
.ls20{letter-spacing:10.183968px;}
.ls43{letter-spacing:10.746720px;}
.ls44{letter-spacing:10.747440px;}
.ls23{letter-spacing:10.920000px;}
.ls24{letter-spacing:10.944000px;}
.ls29{letter-spacing:11.640000px;}
.ls45{letter-spacing:12.186720px;}
.ls10{letter-spacing:18.698688px;}
.ls11{letter-spacing:18.839952px;}
.ls26{letter-spacing:19.560000px;}
.ls54{letter-spacing:19.812000px;}
.ls53{letter-spacing:20.028000px;}
.ls52{letter-spacing:20.040000px;}
.ls27{letter-spacing:22.440000px;}
.ls35{letter-spacing:23.058240px;}
.ls15{letter-spacing:23.778720px;}
.ls16{letter-spacing:24.498720px;}
.ls41{letter-spacing:47.766616px;}
.lsa{letter-spacing:52.560000px;}
.ls4f{letter-spacing:78.048000px;}
.ls3{letter-spacing:127.764000px;}
.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;}
}
.ws29{word-spacing:-108.000000px;}
.ws27{word-spacing:-39.888000px;}
.ws2c{word-spacing:-30.276000px;}
.ws2d{word-spacing:-30.240000px;}
.ws28{word-spacing:-29.816232px;}
.ws2a{word-spacing:-29.808000px;}
.ws2b{word-spacing:-29.736000px;}
.ws14{word-spacing:-27.377280px;}
.ws13{word-spacing:-27.133080px;}
.wsd{word-spacing:-26.970912px;}
.ws20{word-spacing:-26.962680px;}
.ws26{word-spacing:-26.661312px;}
.ws10{word-spacing:-26.658480px;}
.ws11{word-spacing:-26.639880px;}
.wse{word-spacing:-26.639712px;}
.ws8{word-spacing:-26.621280px;}
.wsf{word-spacing:-26.618712px;}
.ws15{word-spacing:-26.602680px;}
.ws1c{word-spacing:-26.538912px;}
.ws12{word-spacing:-26.413080px;}
.ws1e{word-spacing:-26.405112px;}
.ws1d{word-spacing:-25.407312px;}
.ws1a{word-spacing:-20.304000px;}
.ws19{word-spacing:-20.264232px;}
.ws3c{word-spacing:-20.255976px;}
.ws3d{word-spacing:-20.250000px;}
.wsc{word-spacing:-20.232000px;}
.ws17{word-spacing:-20.160000px;}
.wsb{word-spacing:-20.159832px;}
.ws39{word-spacing:-20.056032px;}
.ws3f{word-spacing:-20.028000px;}
.ws0{word-spacing:-20.016000px;}
.ws16{word-spacing:-19.872000px;}
.ws41{word-spacing:-19.812000px;}
.ws9{word-spacing:-19.808232px;}
.wsa{word-spacing:-19.792032px;}
.ws18{word-spacing:-19.584000px;}
.ws1b{word-spacing:-19.440000px;}
.ws3e{word-spacing:-19.428000px;}
.ws2f{word-spacing:-19.284433px;}
.ws2e{word-spacing:-18.927277px;}
.ws22{word-spacing:-18.000240px;}
.ws30{word-spacing:-17.971827px;}
.ws23{word-spacing:-17.541240px;}
.ws37{word-spacing:-17.225280px;}
.ws33{word-spacing:-16.718880px;}
.ws24{word-spacing:-16.653312px;}
.ws35{word-spacing:-16.559880px;}
.ws32{word-spacing:-16.506480px;}
.ws38{word-spacing:-16.353480px;}
.ws34{word-spacing:-16.306680px;}
.ws36{word-spacing:-15.839280px;}
.ws31{word-spacing:-15.785280px;}
.ws3b{word-spacing:-15.264000px;}
.ws25{word-spacing:-13.410720px;}
.ws71{word-spacing:-6.480000px;}
.ws80{word-spacing:-6.216000px;}
.ws75{word-spacing:-5.760000px;}
.ws8f{word-spacing:-5.340000px;}
.ws55{word-spacing:-4.848000px;}
.ws6c{word-spacing:-4.680000px;}
.ws7c{word-spacing:-4.044000px;}
.ws4b{word-spacing:-4.020000px;}
.ws91{word-spacing:-3.984000px;}
.ws81{word-spacing:-3.396000px;}
.ws7b{word-spacing:-3.384000px;}
.ws6b{word-spacing:-3.168000px;}
.ws63{word-spacing:-2.880000px;}
.ws76{word-spacing:-2.748000px;}
.ws8b{word-spacing:-2.676000px;}
.ws8c{word-spacing:-2.664000px;}
.ws43{word-spacing:-2.616000px;}
.ws7d{word-spacing:-2.544000px;}
.ws97{word-spacing:-2.526000px;}
.ws56{word-spacing:-2.520000px;}
.ws93{word-spacing:-2.448000px;}
.ws65{word-spacing:-2.304000px;}
.ws60{word-spacing:-2.244000px;}
.ws86{word-spacing:-2.184000px;}
.ws85{word-spacing:-2.160000px;}
.ws83{word-spacing:-2.112000px;}
.ws4{word-spacing:-2.088000px;}
.ws54{word-spacing:-1.944000px;}
.ws68{word-spacing:-1.902000px;}
.ws49{word-spacing:-1.896000px;}
.ws73{word-spacing:-1.866000px;}
.ws96{word-spacing:-1.842000px;}
.ws5f{word-spacing:-1.806000px;}
.ws69{word-spacing:-1.800000px;}
.ws7f{word-spacing:-1.638000px;}
.ws42{word-spacing:-1.632000px;}
.ws48{word-spacing:-1.542000px;}
.ws66{word-spacing:-1.524000px;}
.ws44{word-spacing:-1.488000px;}
.ws4d{word-spacing:-1.476000px;}
.ws3{word-spacing:-1.368000px;}
.ws64{word-spacing:-1.236000px;}
.ws53{word-spacing:-1.224000px;}
.ws5a{word-spacing:-1.182000px;}
.ws52{word-spacing:-1.176000px;}
.ws79{word-spacing:-1.164000px;}
.ws6f{word-spacing:-1.146000px;}
.ws67{word-spacing:-1.140000px;}
.ws95{word-spacing:-1.134000px;}
.ws4f{word-spacing:-1.080000px;}
.ws57{word-spacing:-0.720000px;}
.ws6d{word-spacing:-0.600000px;}
.ws74{word-spacing:-0.588000px;}
.ws5b{word-spacing:-0.552000px;}
.ws70{word-spacing:-0.528000px;}
.ws51{word-spacing:-0.456000px;}
.ws59{word-spacing:-0.444000px;}
.ws62{word-spacing:-0.432000px;}
.ws72{word-spacing:-0.396000px;}
.ws4c{word-spacing:-0.360000px;}
.ws82{word-spacing:-0.354000px;}
.ws6e{word-spacing:-0.348000px;}
.ws8e{word-spacing:-0.300000px;}
.ws45{word-spacing:-0.288000px;}
.ws5d{word-spacing:-0.204000px;}
.ws84{word-spacing:-0.168000px;}
.ws7e{word-spacing:-0.156000px;}
.ws40{word-spacing:-0.144000px;}
.ws87{word-spacing:-0.012000px;}
.ws1{word-spacing:0.000000px;}
.ws4e{word-spacing:0.036000px;}
.ws98{word-spacing:0.042000px;}
.ws50{word-spacing:0.132000px;}
.ws94{word-spacing:0.144000px;}
.ws4a{word-spacing:0.180000px;}
.ws58{word-spacing:0.192000px;}
.ws90{word-spacing:0.204000px;}
.ws89{word-spacing:0.216000px;}
.ws5e{word-spacing:0.228000px;}
.ws6a{word-spacing:0.300000px;}
.ws46{word-spacing:0.330000px;}
.ws5c{word-spacing:0.432000px;}
.ws2{word-spacing:0.498000px;}
.ws3a{word-spacing:0.576000px;}
.ws8d{word-spacing:0.600000px;}
.ws47{word-spacing:0.612000px;}
.ws7{word-spacing:0.720000px;}
.ws61{word-spacing:0.732000px;}
.ws92{word-spacing:0.756000px;}
.ws6{word-spacing:0.792000px;}
.ws88{word-spacing:1.020000px;}
.ws77{word-spacing:1.080000px;}
.ws78{word-spacing:1.104000px;}
.ws8a{word-spacing:1.116000px;}
.ws7a{word-spacing:2.220000px;}
.ws5{word-spacing:2.448000px;}
.ws1f{word-spacing:55.403280px;}
.ws21{word-spacing:55.482552px;}
._8{margin-left:-10.932480px;}
._1b{margin-left:-8.528154px;}
._19{margin-left:-7.373424px;}
._6{margin-left:-5.904000px;}
._4{margin-left:-4.091976px;}
._0{margin-left:-2.304000px;}
._2{margin-left:-1.152000px;}
._5{width:1.230024px;}
._3{width:2.232000px;}
._1{width:3.960000px;}
._e{width:5.333976px;}
._1f{width:8.205840px;}
._c{width:9.235632px;}
._d{width:10.697303px;}
._14{width:12.390721px;}
._23{width:13.620021px;}
._1e{width:16.823916px;}
._9{width:18.698403px;}
._20{width:20.483964px;}
._13{width:21.600000px;}
._12{width:22.602744px;}
._b{width:23.765256px;}
._10{width:39.648024px;}
._11{width:41.075856px;}
._a{width:43.337925px;}
._15{width:53.394000px;}
._1c{width:69.696072px;}
._1d{width:71.075556px;}
._16{width:105.858562px;}
._22{width:132.748499px;}
._21{width:142.444034px;}
._18{width:184.892165px;}
._17{width:185.922541px;}
._f{width:192.384000px;}
._7{width:494.592000px;}
._1a{width:1226.783256px;}
.fc3{color:rgb(51,51,204);}
.fc2{color:rgb(255,0,0);}
.fc5{color:rgb(0,128,0);}
.fc1{color:rgb(0,0,255);}
.fc6{color:rgb(255,255,255);}
.fc4{color:rgb(0,176,80);}
.fc0{color:rgb(0,0,0);}
.fsc{font-size:36.000000px;}
.fsa{font-size:48.240000px;}
.fs4{font-size:59.760000px;}
.fsd{font-size:59.904000px;}
.fsb{font-size:64.080000px;}
.fs0{font-size:72.000000px;}
.fs7{font-size:72.144000px;}
.fsf{font-size:78.183332px;}
.fse{font-size:83.893598px;}
.fs3{font-size:84.240000px;}
.fs6{font-size:95.760000px;}
.fs8{font-size:95.904000px;}
.fs1{font-size:108.000000px;}
.fs2{font-size:108.144000px;}
.fs5{font-size:120.240000px;}
.fs9{font-size:144.000000px;}
.yfd{bottom:-13.140000px;}
.y0{bottom:0.000000px;}
.ybe{bottom:4.886441px;}
.ya8{bottom:5.243350px;}
.yfc{bottom:8.460000px;}
.ya{bottom:12.636000px;}
.yc{bottom:14.508000px;}
.y133{bottom:27.900000px;}
.yfb{bottom:30.060000px;}
.y9{bottom:30.636000px;}
.yb{bottom:32.508000px;}
.ya7{bottom:34.651703px;}
.ybd{bottom:34.672590px;}
.yfa{bottom:51.660000px;}
.y119{bottom:52.128000px;}
.y7{bottom:60.387000px;}
.ybc{bottom:62.291702px;}
.ya6{bottom:64.060057px;}
.y132{bottom:70.675500px;}
.yf9{bottom:73.296000px;}
.ya9{bottom:73.306352px;}
.y118{bottom:73.728000px;}
.y75{bottom:76.140000px;}
.y65{bottom:76.284000px;}
.y3a{bottom:76.860000px;}
.yc4{bottom:78.480000px;}
.y64{bottom:79.524000px;}
.y70{bottom:80.964000px;}
.yc7{bottom:82.728000px;}
.y95{bottom:88.581790px;}
.ybb{bottom:89.485904px;}
.y78{bottom:89.532000px;}
.y131{bottom:92.215500px;}
.ya5{bottom:93.240439px;}
.y6{bottom:94.032000px;}
.yf8{bottom:94.896000px;}
.y117{bottom:95.328000px;}
.yc3{bottom:96.480000px;}
.y1f{bottom:97.164000px;}
.y32{bottom:98.100000px;}
.y39{bottom:98.460000px;}
.y6f{bottom:102.564000px;}
.y77{bottom:104.400000px;}
.y54{bottom:109.080000px;}
.y89{bottom:109.512000px;}
.yd7{bottom:110.484000px;}
.y130{bottom:113.875500px;}
.yc2{bottom:114.480000px;}
.yf7{bottom:116.496000px;}
.yba{bottom:116.892562px;}
.y116{bottom:116.928000px;}
.y1e{bottom:118.764000px;}
.y38{bottom:120.060000px;}
.y69{bottom:120.168000px;}
.y53{bottom:121.788000px;}
.ya4{bottom:122.648792px;}
.y31{bottom:124.020000px;}
.y6e{bottom:124.164000px;}
.y5{bottom:127.693500px;}
.yc1{bottom:132.480000px;}
.y5b{bottom:134.496000px;}
.yf6{bottom:138.096000px;}
.y115{bottom:138.564000px;}
.y7c{bottom:139.536000px;}
.y1d{bottom:140.364000px;}
.y37{bottom:141.660000px;}
.yb9{bottom:144.341710px;}
.yd6{bottom:145.044000px;}
.y94{bottom:148.752000px;}
.y30{bottom:149.940000px;}
.ya3{bottom:154.610429px;}
.y5a{bottom:156.090000px;}
.y12f{bottom:157.978500px;}
.yf5{bottom:159.690000px;}
.y114{bottom:160.170000px;}
.y4{bottom:161.355000px;}
.y1c{bottom:161.970000px;}
.y36{bottom:163.290000px;}
.y6a{bottom:169.665000px;}
.yb8{bottom:171.743055px;}
.y2f{bottom:175.890000px;}
.y59{bottom:177.690000px;}
.y12e{bottom:179.553000px;}
.yd5{bottom:179.610000px;}
.y72{bottom:179.790000px;}
.yf4{bottom:181.290000px;}
.y113{bottom:181.770000px;}
.y1b{bottom:183.570000px;}
.ya2{bottom:184.244855px;}
.y35{bottom:184.890000px;}
.y93{bottom:187.635000px;}
.yb7{bottom:198.937258px;}
.y58{bottom:199.290000px;}
.y12d{bottom:201.075000px;}
.y2e{bottom:201.810000px;}
.yf3{bottom:202.935000px;}
.y112{bottom:203.370000px;}
.y1a{bottom:205.170000px;}
.y34{bottom:206.490000px;}
.y8a{bottom:210.240000px;}
.y79{bottom:210.930000px;}
.ya1{bottom:213.653208px;}
.yd4{bottom:214.200000px;}
.y88{bottom:214.230000px;}
.y19{bottom:216.255000px;}
.y12c{bottom:222.727500px;}
.yf2{bottom:224.535000px;}
.y111{bottom:224.970000px;}
.yb6{bottom:226.131460px;}
.y47{bottom:226.335000px;}
.y92{bottom:226.515000px;}
.y2d{bottom:227.730000px;}
.ya0{bottom:242.833590px;}
.yf1{bottom:246.135000px;}
.y110{bottom:246.570000px;}
.y46{bottom:247.935000px;}
.yd3{bottom:248.760000px;}
.y87{bottom:248.835000px;}
.y18{bottom:250.995000px;}
.ye0{bottom:251.460000px;}
.y2c{bottom:253.650000px;}
.y33{bottom:255.990000px;}
.yb5{bottom:256.353142px;}
.y91{bottom:265.425000px;}
.y12b{bottom:265.972500px;}
.yf0{bottom:267.735000px;}
.y10f{bottom:268.170000px;}
.y8b{bottom:268.560000px;}
.y45{bottom:269.535000px;}
.y7b{bottom:270.465000px;}
.y9f{bottom:274.977604px;}
.y7a{bottom:276.585000px;}
.y2b{bottom:279.570000px;}
.yd2{bottom:283.320000px;}
.y86{bottom:283.395000px;}
.yb4{bottom:283.759799px;}
.y17{bottom:285.915000px;}
.ydf{bottom:286.200000px;}
.y12a{bottom:287.547000px;}
.yef{bottom:289.335000px;}
.y10e{bottom:289.800000px;}
.y44{bottom:291.165000px;}
.y90{bottom:304.305000px;}
.y9e{bottom:304.385958px;}
.y2a{bottom:305.490000px;}
.y129{bottom:309.069000px;}
.yee{bottom:310.935000px;}
.yb3{bottom:310.954001px;}
.y10d{bottom:311.400000px;}
.y43{bottom:312.765000px;}
.y8{bottom:316.155000px;}
.yd1{bottom:317.880000px;}
.y85{bottom:317.955000px;}
.y16{bottom:320.655000px;}
.yde{bottom:321.120000px;}
.y128{bottom:330.721500px;}
.y29{bottom:331.455000px;}
.yed{bottom:332.535000px;}
.y10c{bottom:333.000000px;}
.y42{bottom:334.365000px;}
.y9d{bottom:336.339995px;}
.yb2{bottom:338.396067px;}
.y8f{bottom:343.185000px;}
.y74{bottom:346.215000px;}
.yd0{bottom:352.470000px;}
.y84{bottom:352.515000px;}
.yec{bottom:354.165000px;}
.y10b{bottom:354.600000px;}
.y15{bottom:355.425000px;}
.ydd{bottom:355.890000px;}
.y41{bottom:355.965000px;}
.y28{bottom:357.375000px;}
.yb1{bottom:365.802725px;}
.y9c{bottom:365.976321px;}
.y127{bottom:373.921500px;}
.yeb{bottom:375.765000px;}
.y10a{bottom:376.200000px;}
.y40{bottom:377.565000px;}
.y8e{bottom:382.065000px;}
.y27{bottom:385.455000px;}
.ycf{bottom:387.030000px;}
.y83{bottom:387.105000px;}
.y57{bottom:388.440000px;}
.y14{bottom:390.345000px;}
.ydc{bottom:390.630000px;}
.y52{bottom:392.835000px;}
.yb0{bottom:392.996927px;}
.y9b{bottom:395.384674px;}
.y126{bottom:395.517000px;}
.yea{bottom:397.365000px;}
.y109{bottom:397.800000px;}
.y3f{bottom:399.165000px;}
.y61{bottom:399.885000px;}
.y8c{bottom:412.590000px;}
.y125{bottom:417.060000px;}
.y56{bottom:417.240000px;}
.y51{bottom:418.755000px;}
.ye9{bottom:418.965000px;}
.y108{bottom:419.400000px;}
.y3{bottom:419.685000px;}
.y26{bottom:420.015000px;}
.y60{bottom:420.090000px;}
.y3e{bottom:420.765000px;}
.y8d{bottom:420.990000px;}
.yce{bottom:421.590000px;}
.y82{bottom:421.665000px;}
.yaf{bottom:422.953040px;}
.y9a{bottom:424.565056px;}
.y13{bottom:425.085000px;}
.ydb{bottom:425.550000px;}
.y124{bottom:438.712500px;}
.ye8{bottom:440.565000px;}
.y107{bottom:441.030000px;}
.y5f{bottom:441.690000px;}
.y3d{bottom:442.410000px;}
.y50{bottom:446.835000px;}
.yae{bottom:450.395107px;}
.y25{bottom:454.605000px;}
.ycd{bottom:456.150000px;}
.y81{bottom:456.225000px;}
.y99{bottom:456.937042px;}
.y12{bottom:459.825000px;}
.yda{bottom:460.290000px;}
.y5e{bottom:461.130000px;}
.y2{bottom:461.850000px;}
.ye7{bottom:462.165000px;}
.y106{bottom:462.630000px;}
.y3c{bottom:464.010000px;}
.y5d{bottom:474.090000px;}
.yad{bottom:477.801764px;}
.y71{bottom:480.240000px;}
.y4f{bottom:481.395000px;}
.y68{bottom:481.470000px;}
.y123{bottom:481.912500px;}
.ye6{bottom:483.765000px;}
.y105{bottom:484.230000px;}
.y98{bottom:488.910078px;}
.y24{bottom:489.165000px;}
.y6d{bottom:489.930000px;}
.ycc{bottom:490.755000px;}
.y80{bottom:490.785000px;}
.y11{bottom:494.745000px;}
.yd9{bottom:495.075000px;}
.y5c{bottom:495.690000px;}
.yac{bottom:505.208421px;}
.ye5{bottom:505.410000px;}
.y104{bottom:505.830000px;}
.y122{bottom:506.625000px;}
.y67{bottom:515.130000px;}
.y4e{bottom:515.985000px;}
.y97{bottom:518.318431px;}
.y23{bottom:523.725000px;}
.ycb{bottom:525.315000px;}
.y7f{bottom:525.345000px;}
.ye4{bottom:527.010000px;}
.y103{bottom:527.430000px;}
.y10{bottom:529.530000px;}
.yab{bottom:532.455737px;}
.y121{bottom:534.292500px;}
.y120{bottom:540.517500px;}
.y11d{bottom:544.125000px;}
.ye3{bottom:548.610000px;}
.y3b{bottom:548.745000px;}
.y102{bottom:549.030000px;}
.y11f{bottom:550.005000px;}
.y4d{bottom:550.545000px;}
.y96{bottom:550.690417px;}
.y22{bottom:558.285000px;}
.yca{bottom:559.875000px;}
.y7e{bottom:559.950000px;}
.y55{bottom:560.625000px;}
.y11e{bottom:562.170000px;}
.yaa{bottom:562.624305px;}
.yf{bottom:564.270000px;}
.ye2{bottom:570.210000px;}
.y101{bottom:570.675000px;}
.y1{bottom:571.755000px;}
.yd8{bottom:581.940000px;}
.y4c{bottom:585.105000px;}
.y11b{bottom:588.420000px;}
.y11c{bottom:591.915000px;}
.y100{bottom:592.275000px;}
.y21{bottom:592.845000px;}
.yc9{bottom:594.435000px;}
.y7d{bottom:594.510000px;}
.y73{bottom:599.400000px;}
.y49{bottom:600.300000px;}
.y63{bottom:600.630000px;}
.yc0{bottom:608.400000px;}
.yff{bottom:613.875000px;}
.yd{bottom:614.775000px;}
.y4b{bottom:615.345000px;}
.ye1{bottom:616.935000px;}
.yc6{bottom:617.655000px;}
.y66{bottom:625.890000px;}
.y20{bottom:627.450000px;}
.ybf{bottom:628.095000px;}
.yc8{bottom:629.025000px;}
.y48{bottom:629.100000px;}
.y6c{bottom:630.720000px;}
.y11a{bottom:632.850000px;}
.y62{bottom:635.190000px;}
.yfe{bottom:635.475000px;}
.y4a{bottom:636.945000px;}
.y6b{bottom:641.670000px;}
.y76{bottom:643.110000px;}
.yc5{bottom:646.455000px;}
.ye{bottom:685.050000px;}
.hf{height:26.208984px;}
.h10{height:35.120039px;}
.he{height:35.167148px;}
.h6{height:43.565273px;}
.h12{height:43.670250px;}
.h1{height:52.417969px;}
.h4{height:52.488281px;}
.ha{height:52.522805px;}
.hc{height:52.593258px;}
.h19{height:62.836799px;}
.h1a{height:62.913150px;}
.h16{height:67.426202px;}
.h17{height:67.508129px;}
.h9{height:69.715898px;}
.h8{height:69.809414px;}
.h11{height:69.820734px;}
.hb{height:69.914391px;}
.h1b{height:77.388281px;}
.h13{height:78.247148px;}
.h2{height:78.626953px;}
.h3{height:78.731789px;}
.h5{height:78.732422px;}
.h14{height:78.837398px;}
.h7{height:87.538008px;}
.hd{height:104.835938px;}
.h15{height:566.420467px;}
.h18{height:577.283680px;}
.h0{height:810.000000px;}
.w2{width:826.488308px;}
.w1{width:886.966492px;}
.w0{width:1080.000000px;}
.x0{left:0.000000px;}
.x2e{left:11.435630px;}
.x20{left:27.504000px;}
.x30{left:48.377724px;}
.x2f{left:51.917758px;}
.x5{left:62.172000px;}
.xc{left:70.452000px;}
.x1{left:72.504000px;}
.x9{left:73.800000px;}
.x2{left:75.528000px;}
.x32{left:77.760000px;}
.x8{left:83.196000px;}
.xf{left:86.184000px;}
.x34{left:92.880000px;}
.x13{left:105.660000px;}
.x2b{left:130.248000px;}
.x2d{left:153.150000px;}
.x25{left:188.280000px;}
.x35{left:193.470000px;}
.x16{left:230.010000px;}
.x12{left:256.830000px;}
.xd{left:273.525000px;}
.x10{left:304.770000px;}
.x17{left:312.150000px;}
.x2a{left:323.430000px;}
.x24{left:351.000000px;}
.x23{left:361.980000px;}
.x4{left:376.170000px;}
.x3{left:381.030000px;}
.x39{left:387.180000px;}
.x38{left:407.520000px;}
.x11{left:411.690000px;}
.x36{left:435.060000px;}
.x26{left:436.710000px;}
.xb{left:484.485000px;}
.x37{left:541.290000px;}
.x29{left:542.625000px;}
.x1b{left:561.960000px;}
.x18{left:568.695000px;}
.x22{left:575.790000px;}
.x1e{left:586.695000px;}
.x1d{left:604.695000px;}
.xa{left:642.525000px;}
.xe{left:651.030000px;}
.x7{left:698.040000px;}
.x2c{left:708.585000px;}
.x1c{left:753.630000px;}
.x14{left:783.000000px;}
.x27{left:786.240000px;}
.x21{left:787.470000px;}
.x28{left:826.740000px;}
.x1a{left:852.150000px;}
.x15{left:853.380000px;}
.x6{left:860.430000px;}
.x1f{left:890.490000px;}
.x31{left:893.055000px;}
.x19{left:915.270000px;}
.x33{left:923.325000px;}
@media print{
.v1{vertical-align:-20.480000pt;}
.v2{vertical-align:-15.360000pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:22.133333pt;}
.v3{vertical-align:38.293333pt;}
.ls5e{letter-spacing:-18.304000pt;}
.ls61{letter-spacing:-6.453333pt;}
.ls4d{letter-spacing:-5.760000pt;}
.ls62{letter-spacing:-5.120000pt;}
.ls66{letter-spacing:-4.874667pt;}
.ls65{letter-spacing:-4.234667pt;}
.ls5f{letter-spacing:-4.224000pt;}
.ls64{letter-spacing:-4.096000pt;}
.ls63{letter-spacing:-3.978667pt;}
.ls2d{letter-spacing:-1.114667pt;}
.ls46{letter-spacing:-0.736000pt;}
.ls4a{letter-spacing:-0.688000pt;}
.ls50{letter-spacing:-0.624000pt;}
.ls28{letter-spacing:-0.512000pt;}
.ls60{letter-spacing:-0.405333pt;}
.ls2{letter-spacing:-0.384000pt;}
.ls3b{letter-spacing:-0.326933pt;}
.ls48{letter-spacing:-0.272533pt;}
.ls32{letter-spacing:-0.256000pt;}
.ls31{letter-spacing:-0.242667pt;}
.lse{letter-spacing:-0.234667pt;}
.ls4c{letter-spacing:-0.230933pt;}
.ls2e{letter-spacing:-0.227733pt;}
.lsc{letter-spacing:-0.220267pt;}
.ls3c{letter-spacing:-0.192000pt;}
.ls1b{letter-spacing:-0.185067pt;}
.ls36{letter-spacing:-0.182933pt;}
.ls2f{letter-spacing:-0.168533pt;}
.lsb{letter-spacing:-0.142400pt;}
.ls37{letter-spacing:-0.137600pt;}
.ls25{letter-spacing:-0.128000pt;}
.ls2c{letter-spacing:-0.108800pt;}
.ls5{letter-spacing:-0.094933pt;}
.ls49{letter-spacing:-0.047467pt;}
.ls19{letter-spacing:-0.037867pt;}
.ls3f{letter-spacing:-0.029045pt;}
.ls17{letter-spacing:-0.019200pt;}
.ls1e{letter-spacing:-0.016533pt;}
.ls1{letter-spacing:0.000000pt;}
.ls51{letter-spacing:0.010667pt;}
.ls13{letter-spacing:0.016533pt;}
.ls14{letter-spacing:0.033067pt;}
.ls59{letter-spacing:0.090667pt;}
.lsf{letter-spacing:0.092267pt;}
.ls47{letter-spacing:0.093867pt;}
.ls5c{letter-spacing:0.117333pt;}
.ls9{letter-spacing:0.128000pt;}
.ls56{letter-spacing:0.138667pt;}
.ls42{letter-spacing:0.139118pt;}
.ls30{letter-spacing:0.165333pt;}
.ls3e{letter-spacing:0.168598pt;}
.lsd{letter-spacing:0.185067pt;}
.ls33{letter-spacing:0.188416pt;}
.ls8{letter-spacing:0.192000pt;}
.ls34{letter-spacing:0.199040pt;}
.ls55{letter-spacing:0.202667pt;}
.ls57{letter-spacing:0.208000pt;}
.ls38{letter-spacing:0.210133pt;}
.ls5a{letter-spacing:0.213312pt;}
.ls58{letter-spacing:0.213333pt;}
.ls5b{letter-spacing:0.218667pt;}
.ls39{letter-spacing:0.224000pt;}
.ls21{letter-spacing:0.234667pt;}
.ls0{letter-spacing:0.256000pt;}
.ls40{letter-spacing:0.268795pt;}
.ls18{letter-spacing:0.275200pt;}
.ls4e{letter-spacing:0.288000pt;}
.ls3d{letter-spacing:0.288426pt;}
.ls1a{letter-spacing:0.303467pt;}
.ls1f{letter-spacing:0.320000pt;}
.ls1c{letter-spacing:0.454933pt;}
.ls4b{letter-spacing:0.544000pt;}
.ls2a{letter-spacing:0.621056pt;}
.ls1d{letter-spacing:0.672000pt;}
.ls7{letter-spacing:0.732416pt;}
.ls6{letter-spacing:0.732800pt;}
.ls4{letter-spacing:1.296640pt;}
.ls2b{letter-spacing:1.313493pt;}
.ls5d{letter-spacing:1.418667pt;}
.ls12{letter-spacing:1.936640pt;}
.ls22{letter-spacing:2.688000pt;}
.ls3a{letter-spacing:7.904000pt;}
.ls20{letter-spacing:9.052416pt;}
.ls43{letter-spacing:9.552640pt;}
.ls44{letter-spacing:9.553280pt;}
.ls23{letter-spacing:9.706667pt;}
.ls24{letter-spacing:9.728000pt;}
.ls29{letter-spacing:10.346667pt;}
.ls45{letter-spacing:10.832640pt;}
.ls10{letter-spacing:16.621056pt;}
.ls11{letter-spacing:16.746624pt;}
.ls26{letter-spacing:17.386667pt;}
.ls54{letter-spacing:17.610667pt;}
.ls53{letter-spacing:17.802667pt;}
.ls52{letter-spacing:17.813333pt;}
.ls27{letter-spacing:19.946667pt;}
.ls35{letter-spacing:20.496213pt;}
.ls15{letter-spacing:21.136640pt;}
.ls16{letter-spacing:21.776640pt;}
.ls41{letter-spacing:42.459215pt;}
.lsa{letter-spacing:46.720000pt;}
.ls4f{letter-spacing:69.376000pt;}
.ls3{letter-spacing:113.568000pt;}
.ws29{word-spacing:-96.000000pt;}
.ws27{word-spacing:-35.456000pt;}
.ws2c{word-spacing:-26.912000pt;}
.ws2d{word-spacing:-26.880000pt;}
.ws28{word-spacing:-26.503317pt;}
.ws2a{word-spacing:-26.496000pt;}
.ws2b{word-spacing:-26.432000pt;}
.ws14{word-spacing:-24.335360pt;}
.ws13{word-spacing:-24.118293pt;}
.wsd{word-spacing:-23.974144pt;}
.ws20{word-spacing:-23.966827pt;}
.ws26{word-spacing:-23.698944pt;}
.ws10{word-spacing:-23.696427pt;}
.ws11{word-spacing:-23.679893pt;}
.wse{word-spacing:-23.679744pt;}
.ws8{word-spacing:-23.663360pt;}
.wsf{word-spacing:-23.661077pt;}
.ws15{word-spacing:-23.646827pt;}
.ws1c{word-spacing:-23.590144pt;}
.ws12{word-spacing:-23.478293pt;}
.ws1e{word-spacing:-23.471211pt;}
.ws1d{word-spacing:-22.584277pt;}
.ws1a{word-spacing:-18.048000pt;}
.ws19{word-spacing:-18.012651pt;}
.ws3c{word-spacing:-18.005312pt;}
.ws3d{word-spacing:-18.000000pt;}
.wsc{word-spacing:-17.984000pt;}
.ws17{word-spacing:-17.920000pt;}
.wsb{word-spacing:-17.919851pt;}
.ws39{word-spacing:-17.827584pt;}
.ws3f{word-spacing:-17.802667pt;}
.ws0{word-spacing:-17.792000pt;}
.ws16{word-spacing:-17.664000pt;}
.ws41{word-spacing:-17.610667pt;}
.ws9{word-spacing:-17.607317pt;}
.wsa{word-spacing:-17.592917pt;}
.ws18{word-spacing:-17.408000pt;}
.ws1b{word-spacing:-17.280000pt;}
.ws3e{word-spacing:-17.269333pt;}
.ws2f{word-spacing:-17.141718pt;}
.ws2e{word-spacing:-16.824246pt;}
.ws22{word-spacing:-16.000213pt;}
.ws30{word-spacing:-15.974957pt;}
.ws23{word-spacing:-15.592213pt;}
.ws37{word-spacing:-15.311360pt;}
.ws33{word-spacing:-14.861227pt;}
.ws24{word-spacing:-14.802944pt;}
.ws35{word-spacing:-14.719893pt;}
.ws32{word-spacing:-14.672427pt;}
.ws38{word-spacing:-14.536427pt;}
.ws34{word-spacing:-14.494827pt;}
.ws36{word-spacing:-14.079360pt;}
.ws31{word-spacing:-14.031360pt;}
.ws3b{word-spacing:-13.568000pt;}
.ws25{word-spacing:-11.920640pt;}
.ws71{word-spacing:-5.760000pt;}
.ws80{word-spacing:-5.525333pt;}
.ws75{word-spacing:-5.120000pt;}
.ws8f{word-spacing:-4.746667pt;}
.ws55{word-spacing:-4.309333pt;}
.ws6c{word-spacing:-4.160000pt;}
.ws7c{word-spacing:-3.594667pt;}
.ws4b{word-spacing:-3.573333pt;}
.ws91{word-spacing:-3.541333pt;}
.ws81{word-spacing:-3.018667pt;}
.ws7b{word-spacing:-3.008000pt;}
.ws6b{word-spacing:-2.816000pt;}
.ws63{word-spacing:-2.560000pt;}
.ws76{word-spacing:-2.442667pt;}
.ws8b{word-spacing:-2.378667pt;}
.ws8c{word-spacing:-2.368000pt;}
.ws43{word-spacing:-2.325333pt;}
.ws7d{word-spacing:-2.261333pt;}
.ws97{word-spacing:-2.245333pt;}
.ws56{word-spacing:-2.240000pt;}
.ws93{word-spacing:-2.176000pt;}
.ws65{word-spacing:-2.048000pt;}
.ws60{word-spacing:-1.994667pt;}
.ws86{word-spacing:-1.941333pt;}
.ws85{word-spacing:-1.920000pt;}
.ws83{word-spacing:-1.877333pt;}
.ws4{word-spacing:-1.856000pt;}
.ws54{word-spacing:-1.728000pt;}
.ws68{word-spacing:-1.690667pt;}
.ws49{word-spacing:-1.685333pt;}
.ws73{word-spacing:-1.658667pt;}
.ws96{word-spacing:-1.637333pt;}
.ws5f{word-spacing:-1.605333pt;}
.ws69{word-spacing:-1.600000pt;}
.ws7f{word-spacing:-1.456000pt;}
.ws42{word-spacing:-1.450667pt;}
.ws48{word-spacing:-1.370667pt;}
.ws66{word-spacing:-1.354667pt;}
.ws44{word-spacing:-1.322667pt;}
.ws4d{word-spacing:-1.312000pt;}
.ws3{word-spacing:-1.216000pt;}
.ws64{word-spacing:-1.098667pt;}
.ws53{word-spacing:-1.088000pt;}
.ws5a{word-spacing:-1.050667pt;}
.ws52{word-spacing:-1.045333pt;}
.ws79{word-spacing:-1.034667pt;}
.ws6f{word-spacing:-1.018667pt;}
.ws67{word-spacing:-1.013333pt;}
.ws95{word-spacing:-1.008000pt;}
.ws4f{word-spacing:-0.960000pt;}
.ws57{word-spacing:-0.640000pt;}
.ws6d{word-spacing:-0.533333pt;}
.ws74{word-spacing:-0.522667pt;}
.ws5b{word-spacing:-0.490667pt;}
.ws70{word-spacing:-0.469333pt;}
.ws51{word-spacing:-0.405333pt;}
.ws59{word-spacing:-0.394667pt;}
.ws62{word-spacing:-0.384000pt;}
.ws72{word-spacing:-0.352000pt;}
.ws4c{word-spacing:-0.320000pt;}
.ws82{word-spacing:-0.314667pt;}
.ws6e{word-spacing:-0.309333pt;}
.ws8e{word-spacing:-0.266667pt;}
.ws45{word-spacing:-0.256000pt;}
.ws5d{word-spacing:-0.181333pt;}
.ws84{word-spacing:-0.149333pt;}
.ws7e{word-spacing:-0.138667pt;}
.ws40{word-spacing:-0.128000pt;}
.ws87{word-spacing:-0.010667pt;}
.ws1{word-spacing:0.000000pt;}
.ws4e{word-spacing:0.032000pt;}
.ws98{word-spacing:0.037333pt;}
.ws50{word-spacing:0.117333pt;}
.ws94{word-spacing:0.128000pt;}
.ws4a{word-spacing:0.160000pt;}
.ws58{word-spacing:0.170667pt;}
.ws90{word-spacing:0.181333pt;}
.ws89{word-spacing:0.192000pt;}
.ws5e{word-spacing:0.202667pt;}
.ws6a{word-spacing:0.266667pt;}
.ws46{word-spacing:0.293333pt;}
.ws5c{word-spacing:0.384000pt;}
.ws2{word-spacing:0.442667pt;}
.ws3a{word-spacing:0.512000pt;}
.ws8d{word-spacing:0.533333pt;}
.ws47{word-spacing:0.544000pt;}
.ws7{word-spacing:0.640000pt;}
.ws61{word-spacing:0.650667pt;}
.ws92{word-spacing:0.672000pt;}
.ws6{word-spacing:0.704000pt;}
.ws88{word-spacing:0.906667pt;}
.ws77{word-spacing:0.960000pt;}
.ws78{word-spacing:0.981333pt;}
.ws8a{word-spacing:0.992000pt;}
.ws7a{word-spacing:1.973333pt;}
.ws5{word-spacing:2.176000pt;}
.ws1f{word-spacing:49.247360pt;}
.ws21{word-spacing:49.317824pt;}
._8{margin-left:-9.717760pt;}
._1b{margin-left:-7.580581pt;}
._19{margin-left:-6.554155pt;}
._6{margin-left:-5.248000pt;}
._4{margin-left:-3.637312pt;}
._0{margin-left:-2.048000pt;}
._2{margin-left:-1.024000pt;}
._5{width:1.093355pt;}
._3{width:1.984000pt;}
._1{width:3.520000pt;}
._e{width:4.741312pt;}
._1f{width:7.294080pt;}
._c{width:8.209451pt;}
._d{width:9.508714pt;}
._14{width:11.013974pt;}
._23{width:12.106685pt;}
._1e{width:14.954592pt;}
._9{width:16.620803pt;}
._20{width:18.207968pt;}
._13{width:19.200000pt;}
._12{width:20.091328pt;}
._b{width:21.124672pt;}
._10{width:35.242688pt;}
._11{width:36.511872pt;}
._a{width:38.522600pt;}
._15{width:47.461333pt;}
._1c{width:61.952064pt;}
._1d{width:63.178272pt;}
._16{width:94.096500pt;}
._22{width:117.998666pt;}
._21{width:126.616919pt;}
._18{width:164.348591pt;}
._17{width:165.264481pt;}
._f{width:171.008000pt;}
._7{width:439.637333pt;}
._1a{width:1090.474005pt;}
.fsc{font-size:32.000000pt;}
.fsa{font-size:42.880000pt;}
.fs4{font-size:53.120000pt;}
.fsd{font-size:53.248000pt;}
.fsb{font-size:56.960000pt;}
.fs0{font-size:64.000000pt;}
.fs7{font-size:64.128000pt;}
.fsf{font-size:69.496295pt;}
.fse{font-size:74.572087pt;}
.fs3{font-size:74.880000pt;}
.fs6{font-size:85.120000pt;}
.fs8{font-size:85.248000pt;}
.fs1{font-size:96.000000pt;}
.fs2{font-size:96.128000pt;}
.fs5{font-size:106.880000pt;}
.fs9{font-size:128.000000pt;}
.yfd{bottom:-11.680000pt;}
.y0{bottom:0.000000pt;}
.ybe{bottom:4.343503pt;}
.ya8{bottom:4.660755pt;}
.yfc{bottom:7.520000pt;}
.ya{bottom:11.232000pt;}
.yc{bottom:12.896000pt;}
.y133{bottom:24.800000pt;}
.yfb{bottom:26.720000pt;}
.y9{bottom:27.232000pt;}
.yb{bottom:28.896000pt;}
.ya7{bottom:30.801514pt;}
.ybd{bottom:30.820080pt;}
.yfa{bottom:45.920000pt;}
.y119{bottom:46.336000pt;}
.y7{bottom:53.677333pt;}
.ybc{bottom:55.370402pt;}
.ya6{bottom:56.942273pt;}
.y132{bottom:62.822667pt;}
.yf9{bottom:65.152000pt;}
.ya9{bottom:65.161202pt;}
.y118{bottom:65.536000pt;}
.y75{bottom:67.680000pt;}
.y65{bottom:67.808000pt;}
.y3a{bottom:68.320000pt;}
.yc4{bottom:69.760000pt;}
.y64{bottom:70.688000pt;}
.y70{bottom:71.968000pt;}
.yc7{bottom:73.536000pt;}
.y95{bottom:78.739369pt;}
.ybb{bottom:79.543026pt;}
.y78{bottom:79.584000pt;}
.y131{bottom:81.969333pt;}
.ya5{bottom:82.880390pt;}
.y6{bottom:83.584000pt;}
.yf8{bottom:84.352000pt;}
.y117{bottom:84.736000pt;}
.yc3{bottom:85.760000pt;}
.y1f{bottom:86.368000pt;}
.y32{bottom:87.200000pt;}
.y39{bottom:87.520000pt;}
.y6f{bottom:91.168000pt;}
.y77{bottom:92.800000pt;}
.y54{bottom:96.960000pt;}
.y89{bottom:97.344000pt;}
.yd7{bottom:98.208000pt;}
.y130{bottom:101.222667pt;}
.yc2{bottom:101.760000pt;}
.yf7{bottom:103.552000pt;}
.yba{bottom:103.904499pt;}
.y116{bottom:103.936000pt;}
.y1e{bottom:105.568000pt;}
.y38{bottom:106.720000pt;}
.y69{bottom:106.816000pt;}
.y53{bottom:108.256000pt;}
.ya4{bottom:109.021149pt;}
.y31{bottom:110.240000pt;}
.y6e{bottom:110.368000pt;}
.y5{bottom:113.505333pt;}
.yc1{bottom:117.760000pt;}
.y5b{bottom:119.552000pt;}
.yf6{bottom:122.752000pt;}
.y115{bottom:123.168000pt;}
.y7c{bottom:124.032000pt;}
.y1d{bottom:124.768000pt;}
.y37{bottom:125.920000pt;}
.yb9{bottom:128.303742pt;}
.yd6{bottom:128.928000pt;}
.y94{bottom:132.224000pt;}
.y30{bottom:133.280000pt;}
.ya3{bottom:137.431493pt;}
.y5a{bottom:138.746667pt;}
.y12f{bottom:140.425333pt;}
.yf5{bottom:141.946667pt;}
.y114{bottom:142.373333pt;}
.y4{bottom:143.426667pt;}
.y1c{bottom:143.973333pt;}
.y36{bottom:145.146667pt;}
.y6a{bottom:150.813333pt;}
.yb8{bottom:152.660494pt;}
.y2f{bottom:156.346667pt;}
.y59{bottom:157.946667pt;}
.y12e{bottom:159.602667pt;}
.yd5{bottom:159.653333pt;}
.y72{bottom:159.813333pt;}
.yf4{bottom:161.146667pt;}
.y113{bottom:161.573333pt;}
.y1b{bottom:163.173333pt;}
.ya2{bottom:163.773204pt;}
.y35{bottom:164.346667pt;}
.y93{bottom:166.786667pt;}
.yb7{bottom:176.833118pt;}
.y58{bottom:177.146667pt;}
.y12d{bottom:178.733333pt;}
.y2e{bottom:179.386667pt;}
.yf3{bottom:180.386667pt;}
.y112{bottom:180.773333pt;}
.y1a{bottom:182.373333pt;}
.y34{bottom:183.546667pt;}
.y8a{bottom:186.880000pt;}
.y79{bottom:187.493333pt;}
.ya1{bottom:189.913963pt;}
.yd4{bottom:190.400000pt;}
.y88{bottom:190.426667pt;}
.y19{bottom:192.226667pt;}
.y12c{bottom:197.980000pt;}
.yf2{bottom:199.586667pt;}
.y111{bottom:199.973333pt;}
.yb6{bottom:201.005742pt;}
.y47{bottom:201.186667pt;}
.y92{bottom:201.346667pt;}
.y2d{bottom:202.426667pt;}
.ya0{bottom:215.852080pt;}
.yf1{bottom:218.786667pt;}
.y110{bottom:219.173333pt;}
.y46{bottom:220.386667pt;}
.yd3{bottom:221.120000pt;}
.y87{bottom:221.186667pt;}
.y18{bottom:223.106667pt;}
.ye0{bottom:223.520000pt;}
.y2c{bottom:225.466667pt;}
.y33{bottom:227.546667pt;}
.yb5{bottom:227.869459pt;}
.y91{bottom:235.933333pt;}
.y12b{bottom:236.420000pt;}
.yf0{bottom:237.986667pt;}
.y10f{bottom:238.373333pt;}
.y8b{bottom:238.720000pt;}
.y45{bottom:239.586667pt;}
.y7b{bottom:240.413333pt;}
.y9f{bottom:244.424537pt;}
.y7a{bottom:245.853333pt;}
.y2b{bottom:248.506667pt;}
.yd2{bottom:251.840000pt;}
.y86{bottom:251.906667pt;}
.yb4{bottom:252.230932pt;}
.y17{bottom:254.146667pt;}
.ydf{bottom:254.400000pt;}
.y12a{bottom:255.597333pt;}
.yef{bottom:257.186667pt;}
.y10e{bottom:257.600000pt;}
.y44{bottom:258.813333pt;}
.y90{bottom:270.493333pt;}
.y9e{bottom:270.565296pt;}
.y2a{bottom:271.546667pt;}
.y129{bottom:274.728000pt;}
.yee{bottom:276.386667pt;}
.yb3{bottom:276.403557pt;}
.y10d{bottom:276.800000pt;}
.y43{bottom:278.013333pt;}
.y8{bottom:281.026667pt;}
.yd1{bottom:282.560000pt;}
.y85{bottom:282.626667pt;}
.y16{bottom:285.026667pt;}
.yde{bottom:285.440000pt;}
.y128{bottom:293.974667pt;}
.y29{bottom:294.626667pt;}
.yed{bottom:295.586667pt;}
.y10c{bottom:296.000000pt;}
.y42{bottom:297.213333pt;}
.y9d{bottom:298.968885pt;}
.yb2{bottom:300.796504pt;}
.y8f{bottom:305.053333pt;}
.y74{bottom:307.746667pt;}
.yd0{bottom:313.306667pt;}
.y84{bottom:313.346667pt;}
.yec{bottom:314.813333pt;}
.y10b{bottom:315.200000pt;}
.y15{bottom:315.933333pt;}
.ydd{bottom:316.346667pt;}
.y41{bottom:316.413333pt;}
.y28{bottom:317.666667pt;}
.yb1{bottom:325.157977pt;}
.y9c{bottom:325.312285pt;}
.y127{bottom:332.374667pt;}
.yeb{bottom:334.013333pt;}
.y10a{bottom:334.400000pt;}
.y40{bottom:335.613333pt;}
.y8e{bottom:339.613333pt;}
.y27{bottom:342.626667pt;}
.ycf{bottom:344.026667pt;}
.y83{bottom:344.093333pt;}
.y57{bottom:345.280000pt;}
.y14{bottom:346.973333pt;}
.ydc{bottom:347.226667pt;}
.y52{bottom:349.186667pt;}
.yb0{bottom:349.330602pt;}
.y9b{bottom:351.453044pt;}
.y126{bottom:351.570667pt;}
.yea{bottom:353.213333pt;}
.y109{bottom:353.600000pt;}
.y3f{bottom:354.813333pt;}
.y61{bottom:355.453333pt;}
.y8c{bottom:366.746667pt;}
.y125{bottom:370.720000pt;}
.y56{bottom:370.880000pt;}
.y51{bottom:372.226667pt;}
.ye9{bottom:372.413333pt;}
.y108{bottom:372.800000pt;}
.y3{bottom:373.053333pt;}
.y26{bottom:373.346667pt;}
.y60{bottom:373.413333pt;}
.y3e{bottom:374.013333pt;}
.y8d{bottom:374.213333pt;}
.yce{bottom:374.746667pt;}
.y82{bottom:374.813333pt;}
.yaf{bottom:375.958258pt;}
.y9a{bottom:377.391161pt;}
.y13{bottom:377.853333pt;}
.ydb{bottom:378.266667pt;}
.y124{bottom:389.966667pt;}
.ye8{bottom:391.613333pt;}
.y107{bottom:392.026667pt;}
.y5f{bottom:392.613333pt;}
.y3d{bottom:393.253333pt;}
.y50{bottom:397.186667pt;}
.yae{bottom:400.351206pt;}
.y25{bottom:404.093333pt;}
.ycd{bottom:405.466667pt;}
.y81{bottom:405.533333pt;}
.y99{bottom:406.166260pt;}
.y12{bottom:408.733333pt;}
.yda{bottom:409.146667pt;}
.y5e{bottom:409.893333pt;}
.y2{bottom:410.533333pt;}
.ye7{bottom:410.813333pt;}
.y106{bottom:411.226667pt;}
.y3c{bottom:412.453333pt;}
.y5d{bottom:421.413333pt;}
.yad{bottom:424.712679pt;}
.y71{bottom:426.880000pt;}
.y4f{bottom:427.906667pt;}
.y68{bottom:427.973333pt;}
.y123{bottom:428.366667pt;}
.ye6{bottom:430.013333pt;}
.y105{bottom:430.426667pt;}
.y98{bottom:434.586736pt;}
.y24{bottom:434.813333pt;}
.y6d{bottom:435.493333pt;}
.ycc{bottom:436.226667pt;}
.y80{bottom:436.253333pt;}
.y11{bottom:439.773333pt;}
.yd9{bottom:440.066667pt;}
.y5c{bottom:440.613333pt;}
.yac{bottom:449.074152pt;}
.ye5{bottom:449.253333pt;}
.y104{bottom:449.626667pt;}
.y122{bottom:450.333333pt;}
.y67{bottom:457.893333pt;}
.y4e{bottom:458.653333pt;}
.y97{bottom:460.727494pt;}
.y23{bottom:465.533333pt;}
.ycb{bottom:466.946667pt;}
.y7f{bottom:466.973333pt;}
.ye4{bottom:468.453333pt;}
.y103{bottom:468.826667pt;}
.y10{bottom:470.693333pt;}
.yab{bottom:473.293988pt;}
.y121{bottom:474.926667pt;}
.y120{bottom:480.460000pt;}
.y11d{bottom:483.666667pt;}
.ye3{bottom:487.653333pt;}
.y3b{bottom:487.773333pt;}
.y102{bottom:488.026667pt;}
.y11f{bottom:488.893333pt;}
.y4d{bottom:489.373333pt;}
.y96{bottom:489.502593pt;}
.y22{bottom:496.253333pt;}
.yca{bottom:497.666667pt;}
.y7e{bottom:497.733333pt;}
.y55{bottom:498.333333pt;}
.y11e{bottom:499.706667pt;}
.yaa{bottom:500.110493pt;}
.yf{bottom:501.573333pt;}
.ye2{bottom:506.853333pt;}
.y101{bottom:507.266667pt;}
.y1{bottom:508.226667pt;}
.yd8{bottom:517.280000pt;}
.y4c{bottom:520.093333pt;}
.y11b{bottom:523.040000pt;}
.y11c{bottom:526.146667pt;}
.y100{bottom:526.466667pt;}
.y21{bottom:526.973333pt;}
.yc9{bottom:528.386667pt;}
.y7d{bottom:528.453333pt;}
.y73{bottom:532.800000pt;}
.y49{bottom:533.600000pt;}
.y63{bottom:533.893333pt;}
.yc0{bottom:540.800000pt;}
.yff{bottom:545.666667pt;}
.yd{bottom:546.466667pt;}
.y4b{bottom:546.973333pt;}
.ye1{bottom:548.386667pt;}
.yc6{bottom:549.026667pt;}
.y66{bottom:556.346667pt;}
.y20{bottom:557.733333pt;}
.ybf{bottom:558.306667pt;}
.yc8{bottom:559.133333pt;}
.y48{bottom:559.200000pt;}
.y6c{bottom:560.640000pt;}
.y11a{bottom:562.533333pt;}
.y62{bottom:564.613333pt;}
.yfe{bottom:564.866667pt;}
.y4a{bottom:566.173333pt;}
.y6b{bottom:570.373333pt;}
.y76{bottom:571.653333pt;}
.yc5{bottom:574.626667pt;}
.ye{bottom:608.933333pt;}
.hf{height:23.296875pt;}
.h10{height:31.217812pt;}
.he{height:31.259687pt;}
.h6{height:38.724688pt;}
.h12{height:38.818000pt;}
.h1{height:46.593750pt;}
.h4{height:46.656250pt;}
.ha{height:46.686937pt;}
.hc{height:46.749562pt;}
.h19{height:55.854932pt;}
.h1a{height:55.922800pt;}
.h16{height:59.934402pt;}
.h17{height:60.007226pt;}
.h9{height:61.969687pt;}
.h8{height:62.052813pt;}
.h11{height:62.062875pt;}
.hb{height:62.146125pt;}
.h1b{height:68.789583pt;}
.h13{height:69.553021pt;}
.h2{height:69.890625pt;}
.h3{height:69.983812pt;}
.h5{height:69.984375pt;}
.h14{height:70.077687pt;}
.h7{height:77.811562pt;}
.hd{height:93.187500pt;}
.h15{height:503.484859pt;}
.h18{height:513.141049pt;}
.h0{height:720.000000pt;}
.w2{width:734.656274pt;}
.w1{width:788.414659pt;}
.w0{width:960.000000pt;}
.x0{left:0.000000pt;}
.x2e{left:10.165004pt;}
.x20{left:24.448000pt;}
.x30{left:43.002421pt;}
.x2f{left:46.149119pt;}
.x5{left:55.264000pt;}
.xc{left:62.624000pt;}
.x1{left:64.448000pt;}
.x9{left:65.600000pt;}
.x2{left:67.136000pt;}
.x32{left:69.120000pt;}
.x8{left:73.952000pt;}
.xf{left:76.608000pt;}
.x34{left:82.560000pt;}
.x13{left:93.920000pt;}
.x2b{left:115.776000pt;}
.x2d{left:136.133333pt;}
.x25{left:167.360000pt;}
.x35{left:171.973333pt;}
.x16{left:204.453333pt;}
.x12{left:228.293333pt;}
.xd{left:243.133333pt;}
.x10{left:270.906667pt;}
.x17{left:277.466667pt;}
.x2a{left:287.493333pt;}
.x24{left:312.000000pt;}
.x23{left:321.760000pt;}
.x4{left:334.373333pt;}
.x3{left:338.693333pt;}
.x39{left:344.160000pt;}
.x38{left:362.240000pt;}
.x11{left:365.946667pt;}
.x36{left:386.720000pt;}
.x26{left:388.186667pt;}
.xb{left:430.653333pt;}
.x37{left:481.146667pt;}
.x29{left:482.333333pt;}
.x1b{left:499.520000pt;}
.x18{left:505.506667pt;}
.x22{left:511.813333pt;}
.x1e{left:521.506667pt;}
.x1d{left:537.506667pt;}
.xa{left:571.133333pt;}
.xe{left:578.693333pt;}
.x7{left:620.480000pt;}
.x2c{left:629.853333pt;}
.x1c{left:669.893333pt;}
.x14{left:696.000000pt;}
.x27{left:698.880000pt;}
.x21{left:699.973333pt;}
.x28{left:734.880000pt;}
.x1a{left:757.466667pt;}
.x15{left:758.560000pt;}
.x6{left:764.826667pt;}
.x1f{left:791.546667pt;}
.x31{left:793.826667pt;}
.x19{left:813.573333pt;}
.x33{left:820.733333pt;}
}




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