
    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_f49f714e0857a6eeccf34e4e.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.110000;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_1ac0852e61a6b5bef331e737.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.984333;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_91ac02f42f778db86bfd0e34.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.000048;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_1fd8219fab424bba149e196c.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.881836;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_0e12129ed4e93e20222cfa04.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.954000;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_f6b6102906a20815437159b6.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.957000;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_e157fa115e973d0761175c93.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.949000;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_3656e1f2140e042d2dc9fc62.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.945312;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_3d33626a0a64f22b3d52204b.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.958008;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_46e5b68a300c6c03b62271dc.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.042000;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:-22.050000px;}
.v1{vertical-align:-14.670000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:12.330000px;}
.v5{vertical-align:21.780000px;}
.v3{vertical-align:27.000000px;}
.ls46{letter-spacing:-25.410000px;}
.ls48{letter-spacing:-25.080000px;}
.ls47{letter-spacing:-24.948000px;}
.ls5a{letter-spacing:-3.780000px;}
.ls65{letter-spacing:-3.600000px;}
.ls40{letter-spacing:-1.800000px;}
.ls55{letter-spacing:-1.500000px;}
.ls31{letter-spacing:-1.188000px;}
.ls61{letter-spacing:-1.020000px;}
.ls3a{letter-spacing:-0.990000px;}
.ls19{letter-spacing:-0.792000px;}
.ls32{letter-spacing:-0.726000px;}
.ls26{letter-spacing:-0.660000px;}
.ls17{letter-spacing:-0.594000px;}
.ls14{letter-spacing:-0.570000px;}
.ls58{letter-spacing:-0.540000px;}
.ls30{letter-spacing:-0.528000px;}
.ls56{letter-spacing:-0.480000px;}
.ls28{letter-spacing:-0.462000px;}
.ls16{letter-spacing:-0.399000px;}
.ls2a{letter-spacing:-0.396000px;}
.ls60{letter-spacing:-0.360000px;}
.ls27{letter-spacing:-0.330000px;}
.ls62{letter-spacing:-0.300000px;}
.ls15{letter-spacing:-0.285000px;}
.ls18{letter-spacing:-0.264000px;}
.ls53{letter-spacing:-0.240000px;}
.ls45{letter-spacing:-0.231000px;}
.ls29{letter-spacing:-0.198000px;}
.ls59{letter-spacing:-0.180000px;}
.lsc{letter-spacing:-0.171000px;}
.lsd{letter-spacing:-0.162000px;}
.ls2b{letter-spacing:-0.132000px;}
.ls63{letter-spacing:-0.120000px;}
.lsa{letter-spacing:-0.114000px;}
.ls25{letter-spacing:-0.066000px;}
.ls54{letter-spacing:-0.060000px;}
.ls8{letter-spacing:0.000000px;}
.ls10{letter-spacing:0.057000px;}
.ls4a{letter-spacing:0.060000px;}
.ls2c{letter-spacing:0.066000px;}
.ls66{letter-spacing:0.072000px;}
.ls5b{letter-spacing:0.090000px;}
.ls41{letter-spacing:0.092400px;}
.ls1c{letter-spacing:0.099000px;}
.ls11{letter-spacing:0.114000px;}
.ls5c{letter-spacing:0.120000px;}
.ls24{letter-spacing:0.132000px;}
.ls3c{letter-spacing:0.165000px;}
.lsb{letter-spacing:0.171000px;}
.ls2d{letter-spacing:0.180000px;}
.ls1d{letter-spacing:0.198000px;}
.ls50{letter-spacing:0.240000px;}
.ls22{letter-spacing:0.264000px;}
.ls5{letter-spacing:0.285000px;}
.ls2e{letter-spacing:0.330000px;}
.ls4d{letter-spacing:0.360000px;}
.ls36{letter-spacing:0.363000px;}
.ls69{letter-spacing:0.372000px;}
.ls23{letter-spacing:0.396000px;}
.ls6{letter-spacing:0.399000px;}
.ls5e{letter-spacing:0.420000px;}
.ls9{letter-spacing:0.456000px;}
.ls33{letter-spacing:0.462000px;}
.ls51{letter-spacing:0.480000px;}
.ls43{letter-spacing:0.495000px;}
.ls3{letter-spacing:0.513000px;}
.ls20{letter-spacing:0.528000px;}
.ls52{letter-spacing:0.540000px;}
.ls1{letter-spacing:0.570000px;}
.ls2f{letter-spacing:0.594000px;}
.ls57{letter-spacing:0.600000px;}
.ls2{letter-spacing:0.627000px;}
.ls39{letter-spacing:0.660000px;}
.ls4e{letter-spacing:0.720000px;}
.ls21{letter-spacing:0.726000px;}
.ls5f{letter-spacing:0.738000px;}
.ls12{letter-spacing:0.741000px;}
.ls3f{letter-spacing:0.759000px;}
.ls0{letter-spacing:0.769500px;}
.ls68{letter-spacing:0.780000px;}
.ls34{letter-spacing:0.792000px;}
.ls4c{letter-spacing:0.840000px;}
.ls1f{letter-spacing:0.858000px;}
.ls3e{letter-spacing:0.891000px;}
.ls4f{letter-spacing:0.900000px;}
.ls1e{letter-spacing:0.924000px;}
.lsf{letter-spacing:0.969000px;}
.ls1b{letter-spacing:0.990000px;}
.ls37{letter-spacing:1.023000px;}
.ls4{letter-spacing:1.026000px;}
.ls1a{letter-spacing:1.056000px;}
.ls6a{letter-spacing:1.086000px;}
.ls13{letter-spacing:1.122000px;}
.ls35{letter-spacing:1.188000px;}
.ls64{letter-spacing:1.200000px;}
.lse{letter-spacing:1.311000px;}
.ls42{letter-spacing:1.320000px;}
.ls67{letter-spacing:1.380000px;}
.ls3d{letter-spacing:1.386000px;}
.ls44{letter-spacing:1.452000px;}
.ls7{letter-spacing:1.482000px;}
.ls5d{letter-spacing:1.560000px;}
.ls38{letter-spacing:1.584000px;}
.ls49{letter-spacing:1.650000px;}
.ls4b{letter-spacing:2.280000px;}
.ls3b{letter-spacing:2.310000px;}
.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;}
}
.ws3f{word-spacing:-16.500000px;}
.ws60{word-spacing:-15.720000px;}
.ws72{word-spacing:-15.420000px;}
.ws5f{word-spacing:-15.360000px;}
.ws61{word-spacing:-15.240000px;}
.ws71{word-spacing:-15.180000px;}
.ws5c{word-spacing:-15.000000px;}
.ws79{word-spacing:-14.880000px;}
.ws6e{word-spacing:-14.820000px;}
.ws5b{word-spacing:-14.760000px;}
.ws78{word-spacing:-14.700000px;}
.ws6f{word-spacing:-14.640000px;}
.ws5e{word-spacing:-14.520000px;}
.ws73{word-spacing:-14.460000px;}
.ws70{word-spacing:-13.980000px;}
.ws5d{word-spacing:-13.500000px;}
.ws40{word-spacing:-12.510000px;}
.ws51{word-spacing:-11.642400px;}
.ws53{word-spacing:-11.550000px;}
.ws74{word-spacing:-11.400000px;}
.ws50{word-spacing:-11.319000px;}
.ws62{word-spacing:-11.220000px;}
.ws6d{word-spacing:-1.380000px;}
.ws12{word-spacing:-0.858000px;}
.ws11{word-spacing:-0.792000px;}
.ws64{word-spacing:-0.780000px;}
.ws5{word-spacing:-0.741000px;}
.ws20{word-spacing:-0.726000px;}
.ws68{word-spacing:-0.720000px;}
.ws3{word-spacing:-0.684000px;}
.ws49{word-spacing:-0.660000px;}
.ws9{word-spacing:-0.648000px;}
.wsc{word-spacing:-0.627000px;}
.ws76{word-spacing:-0.600000px;}
.ws26{word-spacing:-0.594000px;}
.ws37{word-spacing:-0.528000px;}
.ws7c{word-spacing:-0.480000px;}
.ws2f{word-spacing:-0.462000px;}
.ws7f{word-spacing:-0.420000px;}
.ws13{word-spacing:-0.396000px;}
.ws3e{word-spacing:-0.330000px;}
.ws14{word-spacing:-0.264000px;}
.ws22{word-spacing:-0.198000px;}
.ws17{word-spacing:-0.132000px;}
.ws75{word-spacing:-0.120000px;}
.ws1f{word-spacing:-0.066000px;}
.ws65{word-spacing:-0.060000px;}
.ws0{word-spacing:0.000000px;}
.ws2a{word-spacing:0.060000px;}
.ws54{word-spacing:0.066000px;}
.ws24{word-spacing:0.132000px;}
.ws15{word-spacing:0.198000px;}
.ws56{word-spacing:0.231000px;}
.ws27{word-spacing:0.240000px;}
.ws63{word-spacing:0.264000px;}
.ws33{word-spacing:0.330000px;}
.ws7b{word-spacing:0.360000px;}
.ws2b{word-spacing:0.396000px;}
.ws6c{word-spacing:0.420000px;}
.ws4{word-spacing:0.456000px;}
.ws38{word-spacing:0.462000px;}
.ws67{word-spacing:0.480000px;}
.ws2e{word-spacing:0.528000px;}
.ws28{word-spacing:0.540000px;}
.ws21{word-spacing:0.594000px;}
.ws5a{word-spacing:0.660000px;}
.ws83{word-spacing:0.720000px;}
.ws1e{word-spacing:0.726000px;}
.ws2{word-spacing:0.741000px;}
.ws2c{word-spacing:0.792000px;}
.wsb{word-spacing:0.798000px;}
.ws7d{word-spacing:0.840000px;}
.wsf{word-spacing:0.855000px;}
.ws31{word-spacing:0.858000px;}
.ws2d{word-spacing:0.924000px;}
.ws77{word-spacing:1.020000px;}
.ws3a{word-spacing:1.056000px;}
.ws81{word-spacing:1.080000px;}
.ws3d{word-spacing:1.122000px;}
.wse{word-spacing:1.140000px;}
.ws6{word-spacing:1.197000px;}
.ws7a{word-spacing:1.200000px;}
.ws32{word-spacing:1.254000px;}
.ws34{word-spacing:1.320000px;}
.ws3b{word-spacing:1.386000px;}
.ws1{word-spacing:1.425000px;}
.ws69{word-spacing:1.440000px;}
.ws36{word-spacing:1.452000px;}
.ws10{word-spacing:1.482000px;}
.ws29{word-spacing:1.500000px;}
.ws23{word-spacing:1.518000px;}
.ws82{word-spacing:1.560000px;}
.ws30{word-spacing:1.584000px;}
.ws66{word-spacing:1.620000px;}
.ws1b{word-spacing:1.650000px;}
.ws1d{word-spacing:1.716000px;}
.ws1c{word-spacing:1.782000px;}
.ws80{word-spacing:1.800000px;}
.ws3c{word-spacing:1.848000px;}
.ws6a{word-spacing:1.860000px;}
.ws1a{word-spacing:1.914000px;}
.ws59{word-spacing:1.980000px;}
.ws25{word-spacing:2.046000px;}
.wsa{word-spacing:2.109000px;}
.ws19{word-spacing:2.112000px;}
.ws16{word-spacing:2.178000px;}
.ws18{word-spacing:2.244000px;}
.wsd{word-spacing:2.280000px;}
.ws8{word-spacing:2.337000px;}
.ws7e{word-spacing:2.700000px;}
.ws39{word-spacing:2.706000px;}
.ws35{word-spacing:3.300000px;}
.ws7{word-spacing:7.011000px;}
.ws55{word-spacing:24.288000px;}
.ws58{word-spacing:25.080000px;}
.ws57{word-spacing:26.730000px;}
.ws52{word-spacing:33.629400px;}
.ws44{word-spacing:43.200000px;}
.ws47{word-spacing:44.100000px;}
.ws46{word-spacing:46.665000px;}
.ws48{word-spacing:49.770000px;}
.ws4e{word-spacing:50.213040px;}
.ws4f{word-spacing:73.917360px;}
.ws6b{word-spacing:75.000000px;}
.ws45{word-spacing:75.015000px;}
.ws4d{word-spacing:88.830000px;}
.ws4c{word-spacing:89.730000px;}
.ws43{word-spacing:95.040000px;}
.ws42{word-spacing:111.240000px;}
.ws4a{word-spacing:181.800000px;}
.ws4b{word-spacing:192.285000px;}
.ws41{word-spacing:207.360000px;}
._2e{margin-left:-26.050200px;}
._11{margin-left:-20.839200px;}
._10{margin-left:-16.830000px;}
._7{margin-left:-12.690000px;}
._30{margin-left:-11.300400px;}
._12{margin-left:-9.391800px;}
._d{margin-left:-8.242200px;}
._e{margin-left:-7.134600px;}
._c{margin-left:-5.778000px;}
._8{margin-left:-4.708800px;}
._1{margin-left:-2.931600px;}
._2{margin-left:-1.152000px;}
._f{width:1.201200px;}
._a{width:2.280000px;}
._31{width:4.143600px;}
._3{width:7.125000px;}
._b{width:15.648000px;}
._2f{width:24.937200px;}
._6{width:41.472000px;}
._2c{width:61.220880px;}
._17{width:62.280000px;}
._18{width:64.980000px;}
._2b{width:72.669960px;}
._1b{width:74.236800px;}
._1c{width:77.490000px;}
._2d{width:85.821120px;}
._16{width:86.856600px;}
._15{width:89.190000px;}
._21{width:101.340000px;}
._22{width:104.130000px;}
._1d{width:115.047000px;}
._13{width:142.920000px;}
._20{width:146.295000px;}
._23{width:149.310000px;}
._25{width:150.493200px;}
._29{width:151.875000px;}
._1e{width:182.970000px;}
._1a{width:234.261000px;}
._2a{width:283.766400px;}
._26{width:295.146000px;}
._9{width:318.336000px;}
._14{width:356.967000px;}
._1f{width:417.852000px;}
._0{width:423.738000px;}
._19{width:543.375000px;}
._27{width:597.690000px;}
._28{width:604.260000px;}
._24{width:606.870000px;}
._5{width:1283.958000px;}
._4{width:1531.818000px;}
.fc3{color:transparent;}
.fc2{color:rgb(1,2,3);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs9{font-size:35.640000px;}
.fs1{font-size:42.000000px;}
.fs8{font-size:45.000000px;}
.fsa{font-size:46.200000px;}
.fs0{font-size:48.000000px;}
.fs4{font-size:54.000000px;}
.fs5{font-size:57.000000px;}
.fs7{font-size:60.000000px;}
.fs6{font-size:66.000000px;}
.fs3{font-size:72.000000px;}
.fs2{font-size:96.000000px;}
.y0{bottom:0.000000px;}
.yfc{bottom:6.779250px;}
.yff{bottom:24.046830px;}
.yfe{bottom:34.738830px;}
.y2{bottom:51.852750px;}
.yfd{bottom:53.307270px;}
.yf7{bottom:64.892850px;}
.y13e{bottom:91.763400px;}
.y2a{bottom:92.712750px;}
.y122{bottom:94.345800px;}
.yb7{bottom:94.443300px;}
.y80{bottom:94.476300px;}
.ya4{bottom:95.064150px;}
.y16e{bottom:97.146300px;}
.y4b{bottom:97.951650px;}
.yf8{bottom:102.662340px;}
.y29{bottom:106.968750px;}
.y13d{bottom:107.513400px;}
.y121{bottom:111.588300px;}
.yb6{bottom:111.685800px;}
.y7f{bottom:111.718800px;}
.ya3{bottom:112.306650px;}
.y16d{bottom:112.896300px;}
.y4a{bottom:115.194150px;}
.y13c{bottom:123.263400px;}
.y16c{bottom:128.646300px;}
.y120{bottom:128.830800px;}
.yb5{bottom:128.928300px;}
.y7e{bottom:128.961300px;}
.ya2{bottom:129.549150px;}
.y49{bottom:132.436650px;}
.yf5{bottom:138.496950px;}
.y13b{bottom:139.013400px;}
.yf9{bottom:141.403020px;}
.y25{bottom:143.802150px;}
.y16b{bottom:144.396300px;}
.y11f{bottom:146.073300px;}
.yb4{bottom:146.170800px;}
.y7d{bottom:146.203800px;}
.ya1{bottom:146.791650px;}
.y48{bottom:149.679150px;}
.y13a{bottom:154.763400px;}
.y24{bottom:158.807400px;}
.yf4{bottom:159.743250px;}
.y16a{bottom:160.146300px;}
.y11e{bottom:163.315800px;}
.yb3{bottom:163.413300px;}
.y7c{bottom:163.446300px;}
.ya0{bottom:164.034150px;}
.y47{bottom:166.921650px;}
.y139{bottom:170.513400px;}
.yf3{bottom:173.243250px;}
.y23{bottom:173.812650px;}
.y169{bottom:175.896300px;}
.yfa{bottom:179.172510px;}
.y11d{bottom:180.558300px;}
.yb2{bottom:180.655800px;}
.y7b{bottom:180.688800px;}
.y9f{bottom:181.276650px;}
.y46{bottom:184.164150px;}
.y138{bottom:186.263400px;}
.y22{bottom:188.817900px;}
.y168{bottom:191.646300px;}
.yf2{bottom:194.292000px;}
.y11c{bottom:197.800800px;}
.yb1{bottom:197.898300px;}
.y7a{bottom:197.931300px;}
.y9e{bottom:198.519150px;}
.yc5{bottom:199.959150px;}
.y45{bottom:201.406650px;}
.y137{bottom:202.013400px;}
.y21{bottom:203.823150px;}
.y167{bottom:207.396300px;}
.y11b{bottom:215.043300px;}
.yb0{bottom:215.140800px;}
.y79{bottom:215.173800px;}
.yf1{bottom:215.554500px;}
.y9d{bottom:215.761650px;}
.yfb{bottom:216.942000px;}
.yc4{bottom:217.201650px;}
.y136{bottom:217.763400px;}
.y44{bottom:218.649150px;}
.y20{bottom:218.828400px;}
.y166{bottom:223.146300px;}
.y11a{bottom:232.285800px;}
.yaf{bottom:232.383300px;}
.y78{bottom:232.416300px;}
.y9c{bottom:233.004150px;}
.y135{bottom:233.513400px;}
.yc3{bottom:234.444150px;}
.yf0{bottom:236.817000px;}
.y165{bottom:238.896300px;}
.y43{bottom:244.521150px;}
.y1f{bottom:248.824650px;}
.y134{bottom:249.263400px;}
.y119{bottom:249.528300px;}
.yae{bottom:249.625800px;}
.y77{bottom:249.658800px;}
.y9b{bottom:250.246650px;}
.yc2{bottom:251.686650px;}
.y164{bottom:254.646300px;}
.yef{bottom:257.865750px;}
.y1e{bottom:263.829900px;}
.y133{bottom:265.013400px;}
.y118{bottom:266.770800px;}
.yad{bottom:266.868300px;}
.y76{bottom:266.901300px;}
.y9a{bottom:267.489150px;}
.yee{bottom:268.283250px;}
.yc1{bottom:268.929150px;}
.y163{bottom:270.396300px;}
.yeb{bottom:275.033250px;}
.yed{bottom:278.700750px;}
.y132{bottom:280.763400px;}
.y117{bottom:284.013300px;}
.yac{bottom:284.110800px;}
.y75{bottom:284.143800px;}
.y99{bottom:284.731650px;}
.y162{bottom:286.146300px;}
.yc0{bottom:286.171650px;}
.yec{bottom:292.200750px;}
.yb8{bottom:292.740300px;}
.y131{bottom:296.513400px;}
.y1d{bottom:299.825400px;}
.y116{bottom:301.255800px;}
.yab{bottom:301.353300px;}
.y74{bottom:301.386300px;}
.y161{bottom:301.896300px;}
.y98{bottom:301.974150px;}
.ybf{bottom:303.414150px;}
.y51{bottom:304.989600px;}
.y130{bottom:312.263400px;}
.y1c{bottom:314.830650px;}
.yea{bottom:317.282250px;}
.y160{bottom:317.646300px;}
.y115{bottom:318.498300px;}
.yaa{bottom:318.595800px;}
.y73{bottom:318.628800px;}
.y97{bottom:319.216650px;}
.ybe{bottom:320.656650px;}
.y50{bottom:325.994100px;}
.y12f{bottom:328.013400px;}
.y15f{bottom:333.396300px;}
.y54{bottom:334.985850px;}
.y114{bottom:335.740800px;}
.y1b{bottom:335.835150px;}
.ya9{bottom:335.838300px;}
.y72{bottom:335.871300px;}
.y96{bottom:336.459150px;}
.ybd{bottom:337.899150px;}
.y4f{bottom:340.999350px;}
.y12e{bottom:343.763400px;}
.y15e{bottom:349.146300px;}
.y1a{bottom:350.840400px;}
.y113{bottom:352.983300px;}
.ya8{bottom:353.080800px;}
.y71{bottom:353.113800px;}
.y95{bottom:353.701650px;}
.ybc{bottom:355.141650px;}
.y53{bottom:355.990350px;}
.y4e{bottom:356.004600px;}
.y12d{bottom:359.513400px;}
.y15d{bottom:364.896300px;}
.y19{bottom:365.845650px;}
.y112{bottom:370.225800px;}
.ya7{bottom:370.323300px;}
.y70{bottom:370.356300px;}
.ye9{bottom:370.786200px;}
.y94{bottom:370.944150px;}
.ybb{bottom:372.384150px;}
.y12c{bottom:375.263400px;}
.y52{bottom:376.994850px;}
.y4d{bottom:377.009100px;}
.y15c{bottom:380.646300px;}
.y18{bottom:380.850900px;}
.y111{bottom:387.468300px;}
.ya6{bottom:387.565800px;}
.y6f{bottom:387.598800px;}
.y93{bottom:388.186650px;}
.yba{bottom:389.626650px;}
.y12b{bottom:391.013400px;}
.ye8{bottom:392.032500px;}
.y17{bottom:395.856150px;}
.y15b{bottom:396.396300px;}
.y4c{bottom:400.749600px;}
.y110{bottom:404.710800px;}
.y6e{bottom:404.841300px;}
.y92{bottom:405.429150px;}
.ye7{bottom:405.532500px;}
.y12a{bottom:406.763400px;}
.yb9{bottom:406.869150px;}
.y16{bottom:410.861400px;}
.y15a{bottom:412.146300px;}
.ya5{bottom:413.437800px;}
.y10f{bottom:421.953300px;}
.y6d{bottom:422.083800px;}
.y129{bottom:422.513400px;}
.y91{bottom:422.671650px;}
.y15{bottom:425.866650px;}
.ye6{bottom:426.581250px;}
.y159{bottom:427.896300px;}
.y128{bottom:438.263400px;}
.y10e{bottom:439.195800px;}
.y6c{bottom:439.326300px;}
.y90{bottom:439.914150px;}
.y14{bottom:440.871900px;}
.y158{bottom:443.646300px;}
.ydd{bottom:443.904000px;}
.ye5{bottom:447.843750px;}
.y127{bottom:454.013400px;}
.y13{bottom:455.877150px;}
.y10d{bottom:456.438300px;}
.y6b{bottom:456.568800px;}
.y8f{bottom:457.156650px;}
.y157{bottom:459.396300px;}
.y42{bottom:460.045800px;}
.ydc{bottom:465.148650px;}
.ye4{bottom:469.106250px;}
.y126{bottom:469.763400px;}
.y12{bottom:470.882400px;}
.y10c{bottom:473.680800px;}
.y6a{bottom:473.811300px;}
.y8e{bottom:474.399150px;}
.y41{bottom:475.051050px;}
.y156{bottom:475.146300px;}
.ydb{bottom:478.648650px;}
.y125{bottom:485.513400px;}
.y11{bottom:485.887650px;}
.ye3{bottom:490.155000px;}
.y155{bottom:490.896300px;}
.y10b{bottom:490.923300px;}
.y69{bottom:491.053800px;}
.y8d{bottom:491.641650px;}
.y40{bottom:496.055550px;}
.yda{bottom:499.911150px;}
.ye2{bottom:500.572500px;}
.y10{bottom:500.892900px;}
.y124{bottom:501.263400px;}
.y154{bottom:506.646300px;}
.ydf{bottom:507.322500px;}
.y10a{bottom:508.165800px;}
.y68{bottom:508.296300px;}
.y8c{bottom:508.884150px;}
.ye1{bottom:510.990000px;}
.y3f{bottom:511.060800px;}
.yf{bottom:515.898150px;}
.yd9{bottom:521.173650px;}
.y153{bottom:522.396300px;}
.ye0{bottom:524.490000px;}
.y109{bottom:525.408300px;}
.y67{bottom:525.538800px;}
.y123{bottom:525.769800px;}
.y3e{bottom:526.066050px;}
.y152{bottom:538.146300px;}
.y8b{bottom:538.890150px;}
.y3d{bottom:541.071300px;}
.yd8{bottom:542.436150px;}
.y108{bottom:542.650800px;}
.y66{bottom:542.781300px;}
.ye{bottom:545.894400px;}
.yde{bottom:549.571350px;}
.y151{bottom:553.896300px;}
.y8a{bottom:554.640150px;}
.y3c{bottom:556.076550px;}
.y107{bottom:559.893300px;}
.y65{bottom:560.023800px;}
.yd7{bottom:563.698650px;}
.y150{bottom:569.646300px;}
.y89{bottom:570.390150px;}
.y3b{bottom:571.081800px;}
.yd6{bottom:574.116150px;}
.y64{bottom:577.266300px;}
.y28{bottom:584.112750px;}
.yd3{bottom:584.533650px;}
.yd5{bottom:584.961150px;}
.y14f{bottom:585.396300px;}
.y106{bottom:585.765300px;}
.y3a{bottom:586.087050px;}
.y88{bottom:586.140150px;}
.y63{bottom:594.508800px;}
.y27{bottom:599.111250px;}
.y39{bottom:601.092300px;}
.y14e{bottom:601.146300px;}
.y87{bottom:601.890150px;}
.y100{bottom:605.591700px;}
.yd4{bottom:605.796150px;}
.y62{bottom:611.751300px;}
.y26{bottom:614.111250px;}
.y38{bottom:616.097550px;}
.y14d{bottom:616.896300px;}
.y86{bottom:617.640150px;}
.yf6{bottom:618.714000px;}
.y105{bottom:628.918800px;}
.y61{bottom:628.993800px;}
.yd2{bottom:630.875700px;}
.y37{bottom:631.102800px;}
.y14c{bottom:632.646300px;}
.yd{bottom:638.876400px;}
.y36{bottom:646.108050px;}
.y104{bottom:646.161300px;}
.y85{bottom:646.203300px;}
.y60{bottom:646.236300px;}
.y14b{bottom:648.396300px;}
.yc{bottom:653.132400px;}
.y103{bottom:663.403800px;}
.y84{bottom:663.445800px;}
.y5f{bottom:663.478800px;}
.y14a{bottom:664.146300px;}
.yb{bottom:667.388400px;}
.yd1{bottom:674.363400px;}
.y35{bottom:676.104300px;}
.y149{bottom:679.896300px;}
.y102{bottom:680.653800px;}
.y83{bottom:680.688300px;}
.y5e{bottom:680.721300px;}
.ya{bottom:681.644400px;}
.y34{bottom:691.109550px;}
.yd0{bottom:695.608050px;}
.y148{bottom:695.646300px;}
.y5d{bottom:697.963800px;}
.y9{bottom:700.146300px;}
.y82{bottom:706.560300px;}
.ycf{bottom:709.108050px;}
.y147{bottom:711.396300px;}
.y5c{bottom:715.206300px;}
.y8{bottom:718.146300px;}
.y81{bottom:723.802800px;}
.y33{bottom:727.105050px;}
.y146{bottom:727.146300px;}
.yce{bottom:730.370550px;}
.y5b{bottom:732.448800px;}
.y7{bottom:736.146300px;}
.y32{bottom:742.110300px;}
.y145{bottom:742.896300px;}
.y5a{bottom:749.691300px;}
.ycd{bottom:751.633050px;}
.y144{bottom:758.646300px;}
.y31{bottom:763.114800px;}
.y59{bottom:766.933800px;}
.ycc{bottom:772.895550px;}
.y143{bottom:774.396300px;}
.y30{bottom:778.120050px;}
.y6{bottom:781.146300px;}
.y58{bottom:784.176300px;}
.y142{bottom:790.146300px;}
.y2f{bottom:793.125300px;}
.ycb{bottom:794.158050px;}
.y57{bottom:801.418800px;}
.yca{bottom:804.575550px;}
.y5{bottom:805.146300px;}
.y141{bottom:805.896300px;}
.y2e{bottom:808.130550px;}
.yc7{bottom:814.993050px;}
.yc9{bottom:815.420550px;}
.y56{bottom:818.661300px;}
.y140{bottom:821.646300px;}
.y2d{bottom:823.135800px;}
.y4{bottom:829.146300px;}
.y55{bottom:835.903800px;}
.yc8{bottom:836.255550px;}
.y13f{bottom:837.396300px;}
.y2c{bottom:838.141050px;}
.y3{bottom:853.146300px;}
.y101{bottom:860.913150px;}
.yc6{bottom:861.335100px;}
.y2b{bottom:897.669750px;}
.y1{bottom:897.961050px;}
.h14{height:26.260137px;}
.h10{height:30.954000px;}
.hf{height:33.075000px;}
.he{height:33.165000px;}
.h3{height:35.322000px;}
.hd{height:35.376000px;}
.h2{height:40.368000px;}
.h9{height:40.757714px;}
.h7{height:40.774000px;}
.h15{height:42.902857px;}
.h6{height:45.414000px;}
.h11{height:45.495000px;}
.ha{height:47.212000px;}
.h8{height:47.937000px;}
.hc{height:50.460000px;}
.hb{height:55.506000px;}
.h12{height:60.165000px;}
.h5{height:60.552000px;}
.h4{height:80.736000px;}
.h13{height:225.349500px;}
.h0{height:977.953500px;}
.h1{height:978.000000px;}
.w2{width:484.080000px;}
.w1{width:680.250000px;}
.w0{width:680.314500px;}
.x0{left:0.000000px;}
.x1f{left:24.806970px;}
.x20{left:31.284540px;}
.x23{left:72.012150px;}
.x2{left:95.672100px;}
.x3{left:97.174200px;}
.x15{left:99.503850px;}
.x1d{left:101.418300px;}
.xa{left:113.002350px;}
.x6{left:114.495450px;}
.xe{left:119.676000px;}
.xb{left:127.323600px;}
.xf{left:142.170000px;}
.x4{left:148.420950px;}
.x9{left:153.657600px;}
.x10{left:165.721350px;}
.x18{left:173.407050px;}
.x1e{left:210.225000px;}
.x8{left:238.815600px;}
.xc{left:266.788350px;}
.x14{left:279.740100px;}
.x16{left:284.791350px;}
.x1a{left:290.035800px;}
.x19{left:292.420800px;}
.x12{left:298.268850px;}
.x1c{left:312.524550px;}
.x7{left:314.782350px;}
.xd{left:352.160100px;}
.x22{left:371.013930px;}
.x11{left:372.788850px;}
.x21{left:377.357850px;}
.x17{left:388.370100px;}
.x1{left:430.291050px;}
.x5{left:476.403450px;}
.x13{left:481.283850px;}
.x1b{left:525.577050px;}
@media print{
.v4{vertical-align:-19.600000pt;}
.v1{vertical-align:-13.040000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:10.960000pt;}
.v5{vertical-align:19.360000pt;}
.v3{vertical-align:24.000000pt;}
.ls46{letter-spacing:-22.586667pt;}
.ls48{letter-spacing:-22.293333pt;}
.ls47{letter-spacing:-22.176000pt;}
.ls5a{letter-spacing:-3.360000pt;}
.ls65{letter-spacing:-3.200000pt;}
.ls40{letter-spacing:-1.600000pt;}
.ls55{letter-spacing:-1.333333pt;}
.ls31{letter-spacing:-1.056000pt;}
.ls61{letter-spacing:-0.906667pt;}
.ls3a{letter-spacing:-0.880000pt;}
.ls19{letter-spacing:-0.704000pt;}
.ls32{letter-spacing:-0.645333pt;}
.ls26{letter-spacing:-0.586667pt;}
.ls17{letter-spacing:-0.528000pt;}
.ls14{letter-spacing:-0.506667pt;}
.ls58{letter-spacing:-0.480000pt;}
.ls30{letter-spacing:-0.469333pt;}
.ls56{letter-spacing:-0.426667pt;}
.ls28{letter-spacing:-0.410667pt;}
.ls16{letter-spacing:-0.354667pt;}
.ls2a{letter-spacing:-0.352000pt;}
.ls60{letter-spacing:-0.320000pt;}
.ls27{letter-spacing:-0.293333pt;}
.ls62{letter-spacing:-0.266667pt;}
.ls15{letter-spacing:-0.253333pt;}
.ls18{letter-spacing:-0.234667pt;}
.ls53{letter-spacing:-0.213333pt;}
.ls45{letter-spacing:-0.205333pt;}
.ls29{letter-spacing:-0.176000pt;}
.ls59{letter-spacing:-0.160000pt;}
.lsc{letter-spacing:-0.152000pt;}
.lsd{letter-spacing:-0.144000pt;}
.ls2b{letter-spacing:-0.117333pt;}
.ls63{letter-spacing:-0.106667pt;}
.lsa{letter-spacing:-0.101333pt;}
.ls25{letter-spacing:-0.058667pt;}
.ls54{letter-spacing:-0.053333pt;}
.ls8{letter-spacing:0.000000pt;}
.ls10{letter-spacing:0.050667pt;}
.ls4a{letter-spacing:0.053333pt;}
.ls2c{letter-spacing:0.058667pt;}
.ls66{letter-spacing:0.064000pt;}
.ls5b{letter-spacing:0.080000pt;}
.ls41{letter-spacing:0.082133pt;}
.ls1c{letter-spacing:0.088000pt;}
.ls11{letter-spacing:0.101333pt;}
.ls5c{letter-spacing:0.106667pt;}
.ls24{letter-spacing:0.117333pt;}
.ls3c{letter-spacing:0.146667pt;}
.lsb{letter-spacing:0.152000pt;}
.ls2d{letter-spacing:0.160000pt;}
.ls1d{letter-spacing:0.176000pt;}
.ls50{letter-spacing:0.213333pt;}
.ls22{letter-spacing:0.234667pt;}
.ls5{letter-spacing:0.253333pt;}
.ls2e{letter-spacing:0.293333pt;}
.ls4d{letter-spacing:0.320000pt;}
.ls36{letter-spacing:0.322667pt;}
.ls69{letter-spacing:0.330667pt;}
.ls23{letter-spacing:0.352000pt;}
.ls6{letter-spacing:0.354667pt;}
.ls5e{letter-spacing:0.373333pt;}
.ls9{letter-spacing:0.405333pt;}
.ls33{letter-spacing:0.410667pt;}
.ls51{letter-spacing:0.426667pt;}
.ls43{letter-spacing:0.440000pt;}
.ls3{letter-spacing:0.456000pt;}
.ls20{letter-spacing:0.469333pt;}
.ls52{letter-spacing:0.480000pt;}
.ls1{letter-spacing:0.506667pt;}
.ls2f{letter-spacing:0.528000pt;}
.ls57{letter-spacing:0.533333pt;}
.ls2{letter-spacing:0.557333pt;}
.ls39{letter-spacing:0.586667pt;}
.ls4e{letter-spacing:0.640000pt;}
.ls21{letter-spacing:0.645333pt;}
.ls5f{letter-spacing:0.656000pt;}
.ls12{letter-spacing:0.658667pt;}
.ls3f{letter-spacing:0.674667pt;}
.ls0{letter-spacing:0.684000pt;}
.ls68{letter-spacing:0.693333pt;}
.ls34{letter-spacing:0.704000pt;}
.ls4c{letter-spacing:0.746667pt;}
.ls1f{letter-spacing:0.762667pt;}
.ls3e{letter-spacing:0.792000pt;}
.ls4f{letter-spacing:0.800000pt;}
.ls1e{letter-spacing:0.821333pt;}
.lsf{letter-spacing:0.861333pt;}
.ls1b{letter-spacing:0.880000pt;}
.ls37{letter-spacing:0.909333pt;}
.ls4{letter-spacing:0.912000pt;}
.ls1a{letter-spacing:0.938667pt;}
.ls6a{letter-spacing:0.965333pt;}
.ls13{letter-spacing:0.997333pt;}
.ls35{letter-spacing:1.056000pt;}
.ls64{letter-spacing:1.066667pt;}
.lse{letter-spacing:1.165333pt;}
.ls42{letter-spacing:1.173333pt;}
.ls67{letter-spacing:1.226667pt;}
.ls3d{letter-spacing:1.232000pt;}
.ls44{letter-spacing:1.290667pt;}
.ls7{letter-spacing:1.317333pt;}
.ls5d{letter-spacing:1.386667pt;}
.ls38{letter-spacing:1.408000pt;}
.ls49{letter-spacing:1.466667pt;}
.ls4b{letter-spacing:2.026667pt;}
.ls3b{letter-spacing:2.053333pt;}
.ws3f{word-spacing:-14.666667pt;}
.ws60{word-spacing:-13.973333pt;}
.ws72{word-spacing:-13.706667pt;}
.ws5f{word-spacing:-13.653333pt;}
.ws61{word-spacing:-13.546667pt;}
.ws71{word-spacing:-13.493333pt;}
.ws5c{word-spacing:-13.333333pt;}
.ws79{word-spacing:-13.226667pt;}
.ws6e{word-spacing:-13.173333pt;}
.ws5b{word-spacing:-13.120000pt;}
.ws78{word-spacing:-13.066667pt;}
.ws6f{word-spacing:-13.013333pt;}
.ws5e{word-spacing:-12.906667pt;}
.ws73{word-spacing:-12.853333pt;}
.ws70{word-spacing:-12.426667pt;}
.ws5d{word-spacing:-12.000000pt;}
.ws40{word-spacing:-11.120000pt;}
.ws51{word-spacing:-10.348800pt;}
.ws53{word-spacing:-10.266667pt;}
.ws74{word-spacing:-10.133333pt;}
.ws50{word-spacing:-10.061333pt;}
.ws62{word-spacing:-9.973333pt;}
.ws6d{word-spacing:-1.226667pt;}
.ws12{word-spacing:-0.762667pt;}
.ws11{word-spacing:-0.704000pt;}
.ws64{word-spacing:-0.693333pt;}
.ws5{word-spacing:-0.658667pt;}
.ws20{word-spacing:-0.645333pt;}
.ws68{word-spacing:-0.640000pt;}
.ws3{word-spacing:-0.608000pt;}
.ws49{word-spacing:-0.586667pt;}
.ws9{word-spacing:-0.576000pt;}
.wsc{word-spacing:-0.557333pt;}
.ws76{word-spacing:-0.533333pt;}
.ws26{word-spacing:-0.528000pt;}
.ws37{word-spacing:-0.469333pt;}
.ws7c{word-spacing:-0.426667pt;}
.ws2f{word-spacing:-0.410667pt;}
.ws7f{word-spacing:-0.373333pt;}
.ws13{word-spacing:-0.352000pt;}
.ws3e{word-spacing:-0.293333pt;}
.ws14{word-spacing:-0.234667pt;}
.ws22{word-spacing:-0.176000pt;}
.ws17{word-spacing:-0.117333pt;}
.ws75{word-spacing:-0.106667pt;}
.ws1f{word-spacing:-0.058667pt;}
.ws65{word-spacing:-0.053333pt;}
.ws0{word-spacing:0.000000pt;}
.ws2a{word-spacing:0.053333pt;}
.ws54{word-spacing:0.058667pt;}
.ws24{word-spacing:0.117333pt;}
.ws15{word-spacing:0.176000pt;}
.ws56{word-spacing:0.205333pt;}
.ws27{word-spacing:0.213333pt;}
.ws63{word-spacing:0.234667pt;}
.ws33{word-spacing:0.293333pt;}
.ws7b{word-spacing:0.320000pt;}
.ws2b{word-spacing:0.352000pt;}
.ws6c{word-spacing:0.373333pt;}
.ws4{word-spacing:0.405333pt;}
.ws38{word-spacing:0.410667pt;}
.ws67{word-spacing:0.426667pt;}
.ws2e{word-spacing:0.469333pt;}
.ws28{word-spacing:0.480000pt;}
.ws21{word-spacing:0.528000pt;}
.ws5a{word-spacing:0.586667pt;}
.ws83{word-spacing:0.640000pt;}
.ws1e{word-spacing:0.645333pt;}
.ws2{word-spacing:0.658667pt;}
.ws2c{word-spacing:0.704000pt;}
.wsb{word-spacing:0.709333pt;}
.ws7d{word-spacing:0.746667pt;}
.wsf{word-spacing:0.760000pt;}
.ws31{word-spacing:0.762667pt;}
.ws2d{word-spacing:0.821333pt;}
.ws77{word-spacing:0.906667pt;}
.ws3a{word-spacing:0.938667pt;}
.ws81{word-spacing:0.960000pt;}
.ws3d{word-spacing:0.997333pt;}
.wse{word-spacing:1.013333pt;}
.ws6{word-spacing:1.064000pt;}
.ws7a{word-spacing:1.066667pt;}
.ws32{word-spacing:1.114667pt;}
.ws34{word-spacing:1.173333pt;}
.ws3b{word-spacing:1.232000pt;}
.ws1{word-spacing:1.266667pt;}
.ws69{word-spacing:1.280000pt;}
.ws36{word-spacing:1.290667pt;}
.ws10{word-spacing:1.317333pt;}
.ws29{word-spacing:1.333333pt;}
.ws23{word-spacing:1.349333pt;}
.ws82{word-spacing:1.386667pt;}
.ws30{word-spacing:1.408000pt;}
.ws66{word-spacing:1.440000pt;}
.ws1b{word-spacing:1.466667pt;}
.ws1d{word-spacing:1.525333pt;}
.ws1c{word-spacing:1.584000pt;}
.ws80{word-spacing:1.600000pt;}
.ws3c{word-spacing:1.642667pt;}
.ws6a{word-spacing:1.653333pt;}
.ws1a{word-spacing:1.701333pt;}
.ws59{word-spacing:1.760000pt;}
.ws25{word-spacing:1.818667pt;}
.wsa{word-spacing:1.874667pt;}
.ws19{word-spacing:1.877333pt;}
.ws16{word-spacing:1.936000pt;}
.ws18{word-spacing:1.994667pt;}
.wsd{word-spacing:2.026667pt;}
.ws8{word-spacing:2.077333pt;}
.ws7e{word-spacing:2.400000pt;}
.ws39{word-spacing:2.405333pt;}
.ws35{word-spacing:2.933333pt;}
.ws7{word-spacing:6.232000pt;}
.ws55{word-spacing:21.589333pt;}
.ws58{word-spacing:22.293333pt;}
.ws57{word-spacing:23.760000pt;}
.ws52{word-spacing:29.892800pt;}
.ws44{word-spacing:38.400000pt;}
.ws47{word-spacing:39.200000pt;}
.ws46{word-spacing:41.480000pt;}
.ws48{word-spacing:44.240000pt;}
.ws4e{word-spacing:44.633813pt;}
.ws4f{word-spacing:65.704320pt;}
.ws6b{word-spacing:66.666667pt;}
.ws45{word-spacing:66.680000pt;}
.ws4d{word-spacing:78.960000pt;}
.ws4c{word-spacing:79.760000pt;}
.ws43{word-spacing:84.480000pt;}
.ws42{word-spacing:98.880000pt;}
.ws4a{word-spacing:161.600000pt;}
.ws4b{word-spacing:170.920000pt;}
.ws41{word-spacing:184.320000pt;}
._2e{margin-left:-23.155733pt;}
._11{margin-left:-18.523733pt;}
._10{margin-left:-14.960000pt;}
._7{margin-left:-11.280000pt;}
._30{margin-left:-10.044800pt;}
._12{margin-left:-8.348267pt;}
._d{margin-left:-7.326400pt;}
._e{margin-left:-6.341867pt;}
._c{margin-left:-5.136000pt;}
._8{margin-left:-4.185600pt;}
._1{margin-left:-2.605867pt;}
._2{margin-left:-1.024000pt;}
._f{width:1.067733pt;}
._a{width:2.026667pt;}
._31{width:3.683200pt;}
._3{width:6.333333pt;}
._b{width:13.909333pt;}
._2f{width:22.166400pt;}
._6{width:36.864000pt;}
._2c{width:54.418560pt;}
._17{width:55.360000pt;}
._18{width:57.760000pt;}
._2b{width:64.595520pt;}
._1b{width:65.988267pt;}
._1c{width:68.880000pt;}
._2d{width:76.285440pt;}
._16{width:77.205867pt;}
._15{width:79.280000pt;}
._21{width:90.080000pt;}
._22{width:92.560000pt;}
._1d{width:102.264000pt;}
._13{width:127.040000pt;}
._20{width:130.040000pt;}
._23{width:132.720000pt;}
._25{width:133.771733pt;}
._29{width:135.000000pt;}
._1e{width:162.640000pt;}
._1a{width:208.232000pt;}
._2a{width:252.236800pt;}
._26{width:262.352000pt;}
._9{width:282.965333pt;}
._14{width:317.304000pt;}
._1f{width:371.424000pt;}
._0{width:376.656000pt;}
._19{width:483.000000pt;}
._27{width:531.280000pt;}
._28{width:537.120000pt;}
._24{width:539.440000pt;}
._5{width:1141.296000pt;}
._4{width:1361.616000pt;}
.fs9{font-size:31.680000pt;}
.fs1{font-size:37.333333pt;}
.fs8{font-size:40.000000pt;}
.fsa{font-size:41.066667pt;}
.fs0{font-size:42.666667pt;}
.fs4{font-size:48.000000pt;}
.fs5{font-size:50.666667pt;}
.fs7{font-size:53.333333pt;}
.fs6{font-size:58.666667pt;}
.fs3{font-size:64.000000pt;}
.fs2{font-size:85.333333pt;}
.y0{bottom:0.000000pt;}
.yfc{bottom:6.026000pt;}
.yff{bottom:21.374960pt;}
.yfe{bottom:30.878960pt;}
.y2{bottom:46.091333pt;}
.yfd{bottom:47.384240pt;}
.yf7{bottom:57.682533pt;}
.y13e{bottom:81.567467pt;}
.y2a{bottom:82.411333pt;}
.y122{bottom:83.862933pt;}
.yb7{bottom:83.949600pt;}
.y80{bottom:83.978933pt;}
.ya4{bottom:84.501467pt;}
.y16e{bottom:86.352267pt;}
.y4b{bottom:87.068133pt;}
.yf8{bottom:91.255413pt;}
.y29{bottom:95.083333pt;}
.y13d{bottom:95.567467pt;}
.y121{bottom:99.189600pt;}
.yb6{bottom:99.276267pt;}
.y7f{bottom:99.305600pt;}
.ya3{bottom:99.828133pt;}
.y16d{bottom:100.352267pt;}
.y4a{bottom:102.394800pt;}
.y13c{bottom:109.567467pt;}
.y16c{bottom:114.352267pt;}
.y120{bottom:114.516267pt;}
.yb5{bottom:114.602933pt;}
.y7e{bottom:114.632267pt;}
.ya2{bottom:115.154800pt;}
.y49{bottom:117.721467pt;}
.yf5{bottom:123.108400pt;}
.y13b{bottom:123.567467pt;}
.yf9{bottom:125.691573pt;}
.y25{bottom:127.824133pt;}
.y16b{bottom:128.352267pt;}
.y11f{bottom:129.842933pt;}
.yb4{bottom:129.929600pt;}
.y7d{bottom:129.958933pt;}
.ya1{bottom:130.481467pt;}
.y48{bottom:133.048133pt;}
.y13a{bottom:137.567467pt;}
.y24{bottom:141.162133pt;}
.yf4{bottom:141.994000pt;}
.y16a{bottom:142.352267pt;}
.y11e{bottom:145.169600pt;}
.yb3{bottom:145.256267pt;}
.y7c{bottom:145.285600pt;}
.ya0{bottom:145.808133pt;}
.y47{bottom:148.374800pt;}
.y139{bottom:151.567467pt;}
.yf3{bottom:153.994000pt;}
.y23{bottom:154.500133pt;}
.y169{bottom:156.352267pt;}
.yfa{bottom:159.264453pt;}
.y11d{bottom:160.496267pt;}
.yb2{bottom:160.582933pt;}
.y7b{bottom:160.612267pt;}
.y9f{bottom:161.134800pt;}
.y46{bottom:163.701467pt;}
.y138{bottom:165.567467pt;}
.y22{bottom:167.838133pt;}
.y168{bottom:170.352267pt;}
.yf2{bottom:172.704000pt;}
.y11c{bottom:175.822933pt;}
.yb1{bottom:175.909600pt;}
.y7a{bottom:175.938933pt;}
.y9e{bottom:176.461467pt;}
.yc5{bottom:177.741467pt;}
.y45{bottom:179.028133pt;}
.y137{bottom:179.567467pt;}
.y21{bottom:181.176133pt;}
.y167{bottom:184.352267pt;}
.y11b{bottom:191.149600pt;}
.yb0{bottom:191.236267pt;}
.y79{bottom:191.265600pt;}
.yf1{bottom:191.604000pt;}
.y9d{bottom:191.788133pt;}
.yfb{bottom:192.837333pt;}
.yc4{bottom:193.068133pt;}
.y136{bottom:193.567467pt;}
.y44{bottom:194.354800pt;}
.y20{bottom:194.514133pt;}
.y166{bottom:198.352267pt;}
.y11a{bottom:206.476267pt;}
.yaf{bottom:206.562933pt;}
.y78{bottom:206.592267pt;}
.y9c{bottom:207.114800pt;}
.y135{bottom:207.567467pt;}
.yc3{bottom:208.394800pt;}
.yf0{bottom:210.504000pt;}
.y165{bottom:212.352267pt;}
.y43{bottom:217.352133pt;}
.y1f{bottom:221.177467pt;}
.y134{bottom:221.567467pt;}
.y119{bottom:221.802933pt;}
.yae{bottom:221.889600pt;}
.y77{bottom:221.918933pt;}
.y9b{bottom:222.441467pt;}
.yc2{bottom:223.721467pt;}
.y164{bottom:226.352267pt;}
.yef{bottom:229.214000pt;}
.y1e{bottom:234.515467pt;}
.y133{bottom:235.567467pt;}
.y118{bottom:237.129600pt;}
.yad{bottom:237.216267pt;}
.y76{bottom:237.245600pt;}
.y9a{bottom:237.768133pt;}
.yee{bottom:238.474000pt;}
.yc1{bottom:239.048133pt;}
.y163{bottom:240.352267pt;}
.yeb{bottom:244.474000pt;}
.yed{bottom:247.734000pt;}
.y132{bottom:249.567467pt;}
.y117{bottom:252.456267pt;}
.yac{bottom:252.542933pt;}
.y75{bottom:252.572267pt;}
.y99{bottom:253.094800pt;}
.y162{bottom:254.352267pt;}
.yc0{bottom:254.374800pt;}
.yec{bottom:259.734000pt;}
.yb8{bottom:260.213600pt;}
.y131{bottom:263.567467pt;}
.y1d{bottom:266.511467pt;}
.y116{bottom:267.782933pt;}
.yab{bottom:267.869600pt;}
.y74{bottom:267.898933pt;}
.y161{bottom:268.352267pt;}
.y98{bottom:268.421467pt;}
.ybf{bottom:269.701467pt;}
.y51{bottom:271.101867pt;}
.y130{bottom:277.567467pt;}
.y1c{bottom:279.849467pt;}
.yea{bottom:282.028667pt;}
.y160{bottom:282.352267pt;}
.y115{bottom:283.109600pt;}
.yaa{bottom:283.196267pt;}
.y73{bottom:283.225600pt;}
.y97{bottom:283.748133pt;}
.ybe{bottom:285.028133pt;}
.y50{bottom:289.772533pt;}
.y12f{bottom:291.567467pt;}
.y15f{bottom:296.352267pt;}
.y54{bottom:297.765200pt;}
.y114{bottom:298.436267pt;}
.y1b{bottom:298.520133pt;}
.ya9{bottom:298.522933pt;}
.y72{bottom:298.552267pt;}
.y96{bottom:299.074800pt;}
.ybd{bottom:300.354800pt;}
.y4f{bottom:303.110533pt;}
.y12e{bottom:305.567467pt;}
.y15e{bottom:310.352267pt;}
.y1a{bottom:311.858133pt;}
.y113{bottom:313.762933pt;}
.ya8{bottom:313.849600pt;}
.y71{bottom:313.878933pt;}
.y95{bottom:314.401467pt;}
.ybc{bottom:315.681467pt;}
.y53{bottom:316.435867pt;}
.y4e{bottom:316.448533pt;}
.y12d{bottom:319.567467pt;}
.y15d{bottom:324.352267pt;}
.y19{bottom:325.196133pt;}
.y112{bottom:329.089600pt;}
.ya7{bottom:329.176267pt;}
.y70{bottom:329.205600pt;}
.ye9{bottom:329.587733pt;}
.y94{bottom:329.728133pt;}
.ybb{bottom:331.008133pt;}
.y12c{bottom:333.567467pt;}
.y52{bottom:335.106533pt;}
.y4d{bottom:335.119200pt;}
.y15c{bottom:338.352267pt;}
.y18{bottom:338.534133pt;}
.y111{bottom:344.416267pt;}
.ya6{bottom:344.502933pt;}
.y6f{bottom:344.532267pt;}
.y93{bottom:345.054800pt;}
.yba{bottom:346.334800pt;}
.y12b{bottom:347.567467pt;}
.ye8{bottom:348.473333pt;}
.y17{bottom:351.872133pt;}
.y15b{bottom:352.352267pt;}
.y4c{bottom:356.221867pt;}
.y110{bottom:359.742933pt;}
.y6e{bottom:359.858933pt;}
.y92{bottom:360.381467pt;}
.ye7{bottom:360.473333pt;}
.y12a{bottom:361.567467pt;}
.yb9{bottom:361.661467pt;}
.y16{bottom:365.210133pt;}
.y15a{bottom:366.352267pt;}
.ya5{bottom:367.500267pt;}
.y10f{bottom:375.069600pt;}
.y6d{bottom:375.185600pt;}
.y129{bottom:375.567467pt;}
.y91{bottom:375.708133pt;}
.y15{bottom:378.548133pt;}
.ye6{bottom:379.183333pt;}
.y159{bottom:380.352267pt;}
.y128{bottom:389.567467pt;}
.y10e{bottom:390.396267pt;}
.y6c{bottom:390.512267pt;}
.y90{bottom:391.034800pt;}
.y14{bottom:391.886133pt;}
.y158{bottom:394.352267pt;}
.ydd{bottom:394.581333pt;}
.ye5{bottom:398.083333pt;}
.y127{bottom:403.567467pt;}
.y13{bottom:405.224133pt;}
.y10d{bottom:405.722933pt;}
.y6b{bottom:405.838933pt;}
.y8f{bottom:406.361467pt;}
.y157{bottom:408.352267pt;}
.y42{bottom:408.929600pt;}
.ydc{bottom:413.465467pt;}
.ye4{bottom:416.983333pt;}
.y126{bottom:417.567467pt;}
.y12{bottom:418.562133pt;}
.y10c{bottom:421.049600pt;}
.y6a{bottom:421.165600pt;}
.y8e{bottom:421.688133pt;}
.y41{bottom:422.267600pt;}
.y156{bottom:422.352267pt;}
.ydb{bottom:425.465467pt;}
.y125{bottom:431.567467pt;}
.y11{bottom:431.900133pt;}
.ye3{bottom:435.693333pt;}
.y155{bottom:436.352267pt;}
.y10b{bottom:436.376267pt;}
.y69{bottom:436.492267pt;}
.y8d{bottom:437.014800pt;}
.y40{bottom:440.938267pt;}
.yda{bottom:444.365467pt;}
.ye2{bottom:444.953333pt;}
.y10{bottom:445.238133pt;}
.y124{bottom:445.567467pt;}
.y154{bottom:450.352267pt;}
.ydf{bottom:450.953333pt;}
.y10a{bottom:451.702933pt;}
.y68{bottom:451.818933pt;}
.y8c{bottom:452.341467pt;}
.ye1{bottom:454.213333pt;}
.y3f{bottom:454.276267pt;}
.yf{bottom:458.576133pt;}
.yd9{bottom:463.265467pt;}
.y153{bottom:464.352267pt;}
.ye0{bottom:466.213333pt;}
.y109{bottom:467.029600pt;}
.y67{bottom:467.145600pt;}
.y123{bottom:467.350933pt;}
.y3e{bottom:467.614267pt;}
.y152{bottom:478.352267pt;}
.y8b{bottom:479.013467pt;}
.y3d{bottom:480.952267pt;}
.yd8{bottom:482.165467pt;}
.y108{bottom:482.356267pt;}
.y66{bottom:482.472267pt;}
.ye{bottom:485.239467pt;}
.yde{bottom:488.507867pt;}
.y151{bottom:492.352267pt;}
.y8a{bottom:493.013467pt;}
.y3c{bottom:494.290267pt;}
.y107{bottom:497.682933pt;}
.y65{bottom:497.798933pt;}
.yd7{bottom:501.065467pt;}
.y150{bottom:506.352267pt;}
.y89{bottom:507.013467pt;}
.y3b{bottom:507.628267pt;}
.yd6{bottom:510.325467pt;}
.y64{bottom:513.125600pt;}
.y28{bottom:519.211333pt;}
.yd3{bottom:519.585467pt;}
.yd5{bottom:519.965467pt;}
.y14f{bottom:520.352267pt;}
.y106{bottom:520.680267pt;}
.y3a{bottom:520.966267pt;}
.y88{bottom:521.013467pt;}
.y63{bottom:528.452267pt;}
.y27{bottom:532.543333pt;}
.y39{bottom:534.304267pt;}
.y14e{bottom:534.352267pt;}
.y87{bottom:535.013467pt;}
.y100{bottom:538.303733pt;}
.yd4{bottom:538.485467pt;}
.y62{bottom:543.778933pt;}
.y26{bottom:545.876667pt;}
.y38{bottom:547.642267pt;}
.y14d{bottom:548.352267pt;}
.y86{bottom:549.013467pt;}
.yf6{bottom:549.968000pt;}
.y105{bottom:559.038933pt;}
.y61{bottom:559.105600pt;}
.yd2{bottom:560.778400pt;}
.y37{bottom:560.980267pt;}
.y14c{bottom:562.352267pt;}
.yd{bottom:567.890133pt;}
.y36{bottom:574.318267pt;}
.y104{bottom:574.365600pt;}
.y85{bottom:574.402933pt;}
.y60{bottom:574.432267pt;}
.y14b{bottom:576.352267pt;}
.yc{bottom:580.562133pt;}
.y103{bottom:589.692267pt;}
.y84{bottom:589.729600pt;}
.y5f{bottom:589.758933pt;}
.y14a{bottom:590.352267pt;}
.yb{bottom:593.234133pt;}
.yd1{bottom:599.434133pt;}
.y35{bottom:600.981600pt;}
.y149{bottom:604.352267pt;}
.y102{bottom:605.025600pt;}
.y83{bottom:605.056267pt;}
.y5e{bottom:605.085600pt;}
.ya{bottom:605.906133pt;}
.y34{bottom:614.319600pt;}
.yd0{bottom:618.318267pt;}
.y148{bottom:618.352267pt;}
.y5d{bottom:620.412267pt;}
.y9{bottom:622.352267pt;}
.y82{bottom:628.053600pt;}
.ycf{bottom:630.318267pt;}
.y147{bottom:632.352267pt;}
.y5c{bottom:635.738933pt;}
.y8{bottom:638.352267pt;}
.y81{bottom:643.380267pt;}
.y33{bottom:646.315600pt;}
.y146{bottom:646.352267pt;}
.yce{bottom:649.218267pt;}
.y5b{bottom:651.065600pt;}
.y7{bottom:654.352267pt;}
.y32{bottom:659.653600pt;}
.y145{bottom:660.352267pt;}
.y5a{bottom:666.392267pt;}
.ycd{bottom:668.118267pt;}
.y144{bottom:674.352267pt;}
.y31{bottom:678.324267pt;}
.y59{bottom:681.718933pt;}
.ycc{bottom:687.018267pt;}
.y143{bottom:688.352267pt;}
.y30{bottom:691.662267pt;}
.y6{bottom:694.352267pt;}
.y58{bottom:697.045600pt;}
.y142{bottom:702.352267pt;}
.y2f{bottom:705.000267pt;}
.ycb{bottom:705.918267pt;}
.y57{bottom:712.372267pt;}
.yca{bottom:715.178267pt;}
.y5{bottom:715.685600pt;}
.y141{bottom:716.352267pt;}
.y2e{bottom:718.338267pt;}
.yc7{bottom:724.438267pt;}
.yc9{bottom:724.818267pt;}
.y56{bottom:727.698933pt;}
.y140{bottom:730.352267pt;}
.y2d{bottom:731.676267pt;}
.y4{bottom:737.018933pt;}
.y55{bottom:743.025600pt;}
.yc8{bottom:743.338267pt;}
.y13f{bottom:744.352267pt;}
.y2c{bottom:745.014267pt;}
.y3{bottom:758.352267pt;}
.y101{bottom:765.256133pt;}
.yc6{bottom:765.631200pt;}
.y2b{bottom:797.928667pt;}
.y1{bottom:798.187600pt;}
.h14{height:23.342344pt;}
.h10{height:27.514667pt;}
.hf{height:29.400000pt;}
.he{height:29.480000pt;}
.h3{height:31.397333pt;}
.hd{height:31.445333pt;}
.h2{height:35.882667pt;}
.h9{height:36.229079pt;}
.h7{height:36.243556pt;}
.h15{height:38.135873pt;}
.h6{height:40.368000pt;}
.h11{height:40.440000pt;}
.ha{height:41.966222pt;}
.h8{height:42.610667pt;}
.hc{height:44.853333pt;}
.hb{height:49.338667pt;}
.h12{height:53.480000pt;}
.h5{height:53.824000pt;}
.h4{height:71.765333pt;}
.h13{height:200.310667pt;}
.h0{height:869.292000pt;}
.h1{height:869.333333pt;}
.w2{width:430.293333pt;}
.w1{width:604.666667pt;}
.w0{width:604.724000pt;}
.x0{left:0.000000pt;}
.x1f{left:22.050640pt;}
.x20{left:27.808480pt;}
.x23{left:64.010800pt;}
.x2{left:85.041867pt;}
.x3{left:86.377067pt;}
.x15{left:88.447867pt;}
.x1d{left:90.149600pt;}
.xa{left:100.446533pt;}
.x6{left:101.773733pt;}
.xe{left:106.378667pt;}
.xb{left:113.176533pt;}
.xf{left:126.373333pt;}
.x4{left:131.929733pt;}
.x9{left:136.584533pt;}
.x10{left:147.307867pt;}
.x18{left:154.139600pt;}
.x1e{left:186.866667pt;}
.x8{left:212.280533pt;}
.xc{left:237.145200pt;}
.x14{left:248.657867pt;}
.x16{left:253.147867pt;}
.x1a{left:257.809600pt;}
.x19{left:259.929600pt;}
.x12{left:265.127867pt;}
.x1c{left:277.799600pt;}
.x7{left:279.806533pt;}
.xd{left:313.031200pt;}
.x22{left:329.790160pt;}
.x11{left:331.367867pt;}
.x21{left:335.429200pt;}
.x17{left:345.217867pt;}
.x1{left:382.480933pt;}
.x5{left:423.469733pt;}
.x13{left:427.807867pt;}
.x1b{left:467.179600pt;}
}




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