
    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_9b9c9a80cebf498c93b6cbd6.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.031738;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_cac8c1e69814c01b9016bed4.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.973633;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_34ec554fa1a7285fd7731a86.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.041992;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_80e516eb381652f8384557c0.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.032715;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_cdeaed32a316a02824b6a012.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.026855;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_50034a0706429a698126d4ca.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.011230;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_4dcd0324d80552de2f638639.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.103027;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_a71df9e0dfbf33644e9e07b7.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.964860;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_631bd066a5a22888d9e25aa2.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.666504;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_f12d884244fecf5a295f485b.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.041992;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_ee198e0934cda9960a2c3477.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.041992;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:ffc;src:url('chunks/assets/font_889d642d4df89a0573cb4a62.woff2')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_ff00f8681df5d913163665ce.woff2')format("woff");}.ffd{font-family:ffd;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:ffe;src:url('chunks/assets/font_5c123865652637d027c1ed8a.woff2')format("woff");}.ffe{font-family:ffe;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:fff;src:url('chunks/assets/font_0380fafe2116ebd35535bc88.woff2')format("woff");}.fff{font-family:fff;line-height:0.703125;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:ff10;src:url('chunks/assets/font_1b0784587de10b5d27863997.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.770020;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;}
.m3{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m1{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,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);}
.m2{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);}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:18.018000px;}
.v1{vertical-align:21.978000px;}
.ls3{letter-spacing:-0.918000px;}
.ls2{letter-spacing:-0.691200px;}
.ls16{letter-spacing:-0.540000px;}
.ls13{letter-spacing:-0.324000px;}
.ls17{letter-spacing:-0.240000px;}
.ls14{letter-spacing:-0.188892px;}
.ls5{letter-spacing:-0.180000px;}
.ls11{letter-spacing:-0.168485px;}
.lsd{letter-spacing:-0.151099px;}
.lsc{letter-spacing:-0.125413px;}
.lsb{letter-spacing:-0.083609px;}
.ls10{letter-spacing:-0.056162px;}
.lse{letter-spacing:-0.042121px;}
.ls9{letter-spacing:-0.037775px;}
.ls1{letter-spacing:0.000000px;}
.lsa{letter-spacing:0.037775px;}
.lsf{letter-spacing:0.093229px;}
.ls7{letter-spacing:0.125413px;}
.ls12{letter-spacing:0.360000px;}
.ls4{letter-spacing:0.780000px;}
.ls8{letter-spacing:0.840000px;}
.ls0{letter-spacing:43.181964px;}
.ls6{letter-spacing:97.270110px;}
.ls15{letter-spacing:152.076808px;}
.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;}
}
.ws98{word-spacing:-164.094247px;}
.ws6{word-spacing:-17.928000px;}
.wsac{word-spacing:-16.434000px;}
.ws25{word-spacing:-15.660000px;}
.ws4{word-spacing:-14.940000px;}
.ws52{word-spacing:-14.880000px;}
.ws24{word-spacing:-14.700000px;}
.ws93{word-spacing:-13.392000px;}
.ws5{word-spacing:-13.230000px;}
.ws75{word-spacing:-12.963196px;}
.ws88{word-spacing:-12.911821px;}
.ws7{word-spacing:-12.366000px;}
.wsa{word-spacing:-12.150000px;}
.ws96{word-spacing:-12.017440px;}
.ws51{word-spacing:-11.560421px;}
.ws8{word-spacing:-11.448000px;}
.ws9{word-spacing:-11.232000px;}
.wsb{word-spacing:-10.992000px;}
.ws2{word-spacing:-10.896000px;}
.ws23{word-spacing:-10.800000px;}
.ws4f{word-spacing:-10.446058px;}
.ws50{word-spacing:-10.403936px;}
.ws3f{word-spacing:-10.367491px;}
.ws3{word-spacing:-9.892800px;}
.ws1{word-spacing:-9.618000px;}
.ws0{word-spacing:-9.542544px;}
.ws3b{word-spacing:-9.368150px;}
.ws3c{word-spacing:-9.330376px;}
.ws89{word-spacing:-7.618644px;}
.ws92{word-spacing:-4.080000px;}
.ws32{word-spacing:-3.480000px;}
.ws38{word-spacing:-3.420000px;}
.ws4e{word-spacing:-3.000000px;}
.ws57{word-spacing:-2.880000px;}
.ws1b{word-spacing:-2.808000px;}
.ws1e{word-spacing:-2.760000px;}
.ws1c{word-spacing:-2.754000px;}
.wsb0{word-spacing:-2.538000px;}
.ws9f{word-spacing:-2.460000px;}
.wsa8{word-spacing:-2.400000px;}
.ws9b{word-spacing:-2.220000px;}
.ws8b{word-spacing:-2.214000px;}
.ws37{word-spacing:-2.100000px;}
.ws8a{word-spacing:-1.782000px;}
.ws4c{word-spacing:-1.620000px;}
.ws29{word-spacing:-1.380000px;}
.ws10{word-spacing:-1.350000px;}
.wsd{word-spacing:-1.254000px;}
.ws1f{word-spacing:-1.200000px;}
.ws65{word-spacing:-0.900000px;}
.ws48{word-spacing:-0.840000px;}
.ws12{word-spacing:-0.810000px;}
.ws35{word-spacing:-0.780000px;}
.ws1d{word-spacing:-0.600000px;}
.ws8e{word-spacing:-0.594000px;}
.ws68{word-spacing:-0.540000px;}
.wsa3{word-spacing:-0.486000px;}
.ws66{word-spacing:-0.420000px;}
.ws67{word-spacing:-0.378000px;}
.ws80{word-spacing:-0.360000px;}
.ws70{word-spacing:-0.300000px;}
.wsaf{word-spacing:-0.270000px;}
.wse{word-spacing:-0.216000px;}
.ws15{word-spacing:-0.162000px;}
.ws5a{word-spacing:-0.120000px;}
.ws8c{word-spacing:-0.108000px;}
.ws53{word-spacing:-0.093229px;}
.ws43{word-spacing:-0.037775px;}
.wsc{word-spacing:0.000000px;}
.ws54{word-spacing:0.056162px;}
.ws7d{word-spacing:0.060000px;}
.ws44{word-spacing:0.083609px;}
.ws45{word-spacing:0.125413px;}
.ws46{word-spacing:0.151099px;}
.ws55{word-spacing:0.168485px;}
.ws39{word-spacing:0.180000px;}
.ws14{word-spacing:0.216000px;}
.ws7f{word-spacing:0.240000px;}
.ws7b{word-spacing:0.270000px;}
.ws6f{word-spacing:0.300000px;}
.ws8d{word-spacing:0.324000px;}
.ws2c{word-spacing:0.420000px;}
.ws2f{word-spacing:0.480000px;}
.ws90{word-spacing:0.540000px;}
.ws72{word-spacing:0.600000px;}
.wsf{word-spacing:0.691200px;}
.wsb3{word-spacing:0.702000px;}
.ws2e{word-spacing:0.720000px;}
.ws4d{word-spacing:0.900000px;}
.ws22{word-spacing:0.918000px;}
.ws47{word-spacing:0.960000px;}
.ws27{word-spacing:1.020000px;}
.ws30{word-spacing:1.080000px;}
.ws21{word-spacing:1.140000px;}
.ws4b{word-spacing:1.200000px;}
.ws33{word-spacing:1.320000px;}
.ws2a{word-spacing:1.380000px;}
.ws7c{word-spacing:1.458000px;}
.ws17{word-spacing:1.512000px;}
.ws71{word-spacing:1.680000px;}
.ws5f{word-spacing:1.740000px;}
.ws9a{word-spacing:1.800000px;}
.ws1a{word-spacing:1.836000px;}
.ws36{word-spacing:1.920000px;}
.ws59{word-spacing:2.160000px;}
.ws99{word-spacing:2.340000px;}
.ws5e{word-spacing:2.400000px;}
.wsa0{word-spacing:2.520000px;}
.wsa6{word-spacing:2.640000px;}
.ws56{word-spacing:2.700000px;}
.ws6c{word-spacing:2.940000px;}
.ws91{word-spacing:3.360000px;}
.ws16{word-spacing:3.456000px;}
.ws61{word-spacing:3.480000px;}
.wsad{word-spacing:3.510000px;}
.ws13{word-spacing:3.564000px;}
.wsab{word-spacing:3.600000px;}
.ws63{word-spacing:3.660000px;}
.ws26{word-spacing:3.720000px;}
.ws7e{word-spacing:3.840000px;}
.ws4a{word-spacing:3.900000px;}
.ws11{word-spacing:4.050000px;}
.ws3a{word-spacing:4.140000px;}
.ws2b{word-spacing:4.200000px;}
.ws8f{word-spacing:4.740000px;}
.wsb2{word-spacing:4.806000px;}
.ws9c{word-spacing:5.160000px;}
.ws19{word-spacing:5.346000px;}
.ws2d{word-spacing:5.520000px;}
.ws28{word-spacing:5.580000px;}
.ws60{word-spacing:5.640000px;}
.ws6a{word-spacing:5.820000px;}
.wsae{word-spacing:5.886000px;}
.wsb4{word-spacing:5.994000px;}
.wsa2{word-spacing:6.588000px;}
.wsa1{word-spacing:6.642000px;}
.wsb1{word-spacing:6.696000px;}
.ws6b{word-spacing:7.080000px;}
.ws62{word-spacing:7.140000px;}
.ws5b{word-spacing:7.380000px;}
.wsb6{word-spacing:7.398000px;}
.ws5d{word-spacing:7.440000px;}
.ws9e{word-spacing:7.500000px;}
.wsb7{word-spacing:7.506000px;}
.ws58{word-spacing:7.860000px;}
.wsa4{word-spacing:7.920000px;}
.ws69{word-spacing:8.220000px;}
.ws6e{word-spacing:8.280000px;}
.wsb5{word-spacing:8.370000px;}
.ws6d{word-spacing:8.400000px;}
.ws20{word-spacing:8.700000px;}
.ws42{word-spacing:8.802000px;}
.ws41{word-spacing:8.910000px;}
.ws18{word-spacing:8.964000px;}
.ws64{word-spacing:9.360000px;}
.ws49{word-spacing:9.480000px;}
.wsa5{word-spacing:9.900000px;}
.wsa9{word-spacing:9.960000px;}
.wsa7{word-spacing:10.800000px;}
.ws9d{word-spacing:13.020000px;}
.wsaa{word-spacing:14.340000px;}
.ws31{word-spacing:15.120000px;}
.ws5c{word-spacing:19.320000px;}
.ws34{word-spacing:29.640000px;}
.ws3e{word-spacing:70.525552px;}
.ws3d{word-spacing:70.827750px;}
.ws97{word-spacing:83.603339px;}
.ws7a{word-spacing:100.320000px;}
.ws78{word-spacing:114.000000px;}
.ws40{word-spacing:123.214175px;}
.ws79{word-spacing:124.512000px;}
.ws84{word-spacing:128.304000px;}
.ws82{word-spacing:136.512000px;}
.ws95{word-spacing:139.238032px;}
.ws83{word-spacing:142.848000px;}
.ws87{word-spacing:149.600633px;}
.ws74{word-spacing:150.195874px;}
.ws85{word-spacing:150.240000px;}
.ws81{word-spacing:156.528000px;}
.ws77{word-spacing:165.216000px;}
.ws76{word-spacing:211.248000px;}
.ws94{word-spacing:296.329311px;}
.ws86{word-spacing:307.329212px;}
.ws73{word-spacing:309.204856px;}
._45{margin-left:-152.062634px;}
._b{margin-left:-11.604000px;}
._5{margin-left:-10.513236px;}
._3{margin-left:-8.445600px;}
._f{margin-left:-6.622200px;}
._a{margin-left:-4.982400px;}
._4{margin-left:-3.775200px;}
._1{margin-left:-2.356200px;}
._0{margin-left:-1.020000px;}
._2{width:1.672800px;}
._d{width:2.682000px;}
._7{width:4.287600px;}
._c{width:5.307000px;}
._8{width:6.307200px;}
._e{width:7.369200px;}
._9{width:8.394000px;}
._14{width:9.504000px;}
._1a{width:12.552000px;}
._19{width:18.576000px;}
._18{width:20.074200px;}
._17{width:31.560000px;}
._6{width:36.369600px;}
._46{width:42.918000px;}
._11{width:82.009091px;}
._13{width:85.295498px;}
._10{width:90.848394px;}
._12{width:93.530405px;}
._42{width:99.504000px;}
._2f{width:101.520000px;}
._21{width:112.224000px;}
._34{width:117.312000px;}
._1d{width:118.704000px;}
._30{width:122.880000px;}
._25{width:125.904000px;}
._2d{width:136.368000px;}
._29{width:139.440000px;}
._35{width:144.240000px;}
._24{width:150.096000px;}
._44{width:154.128000px;}
._2c{width:155.520000px;}
._1c{width:159.840000px;}
._36{width:163.056000px;}
._3d{width:168.624000px;}
._1e{width:170.112000px;}
._20{width:176.880000px;}
._39{width:180.432000px;}
._32{width:182.496000px;}
._28{width:190.608000px;}
._3c{width:194.112000px;}
._38{width:202.416000px;}
._37{width:207.408000px;}
._23{width:209.664000px;}
._3f{width:216.336000px;}
._40{width:221.184000px;}
._1f{width:222.912000px;}
._27{width:250.128000px;}
._43{width:257.568000px;}
._31{width:291.552000px;}
._16{width:296.662771px;}
._3e{width:325.200000px;}
._2a{width:345.744000px;}
._33{width:418.612200px;}
._1b{width:452.644200px;}
._2e{width:455.280000px;}
._3b{width:505.056000px;}
._26{width:552.528000px;}
._3a{width:660.491400px;}
._41{width:671.712000px;}
._2b{width:719.232000px;}
._22{width:734.939400px;}
._15{width:764.280286px;}
.fc7{color:rgb(17,15,13);}
.fc6{color:transparent;}
.fc4{color:rgb(38,64,138);}
.fc5{color:rgb(112,109,110);}
.fc2{color:rgb(75,119,196);}
.fc1{color:rgb(65,102,168);}
.fc3{color:rgb(255,255,255);}
.fc0{color:rgb(35,31,32);}
.fs10{font-size:31.482000px;}
.fs9{font-size:37.774800px;}
.fs3{font-size:38.478000px;}
.fsa{font-size:41.804400px;}
.fs4{font-size:42.000000px;}
.fsb{font-size:42.121200px;}
.fs5{font-size:43.200000px;}
.fs11{font-size:43.228200px;}
.fsf{font-size:46.445400px;}
.fsc{font-size:46.614600px;}
.fse{font-size:46.630200px;}
.fs0{font-size:48.000000px;}
.fs6{font-size:54.000000px;}
.fsd{font-size:56.161800px;}
.fs7{font-size:60.000000px;}
.fs2{font-size:66.000000px;}
.fs8{font-size:72.000000px;}
.fs1{font-size:102.000000px;}
.y0{bottom:0.000000px;}
.y114{bottom:2.593650px;}
.yff{bottom:2.785650px;}
.ydc{bottom:2.797800px;}
.y1{bottom:68.124750px;}
.y3f{bottom:71.212050px;}
.y40{bottom:75.040050px;}
.y148{bottom:112.904850px;}
.y123{bottom:113.066700px;}
.y72{bottom:113.078700px;}
.yb7{bottom:113.078850px;}
.yb{bottom:117.205050px;}
.y110{bottom:120.473850px;}
.ya{bottom:131.601450px;}
.y147{bottom:133.910850px;}
.y122{bottom:134.072700px;}
.y71{bottom:134.078700px;}
.yb6{bottom:134.078850px;}
.y10f{bottom:140.278350px;}
.y9{bottom:145.997850px;}
.y115{bottom:151.334850px;}
.y146{bottom:154.916850px;}
.y70{bottom:155.078700px;}
.yb5{bottom:155.078850px;}
.y29{bottom:159.212550px;}
.y10e{bottom:160.082850px;}
.y8{bottom:160.397850px;}
.y100{bottom:162.595800px;}
.ydd{bottom:163.243800px;}
.y145{bottom:175.922850px;}
.y6f{bottom:176.078700px;}
.yb4{bottom:176.078850px;}
.y10d{bottom:179.887350px;}
.y28{bottom:180.212550px;}
.y121{bottom:181.529250px;}
.y8b{bottom:190.440900px;}
.y144{bottom:196.928850px;}
.y6e{bottom:197.078700px;}
.yd8{bottom:197.078850px;}
.y10c{bottom:199.691850px;}
.y27{bottom:201.212550px;}
.y3c{bottom:203.476800px;}
.yb3{bottom:211.441050px;}
.y143{bottom:217.934850px;}
.y6d{bottom:218.078700px;}
.yd7{bottom:218.078850px;}
.y10b{bottom:219.496350px;}
.y3b{bottom:221.472300px;}
.y26{bottom:222.212550px;}
.y142{bottom:238.940850px;}
.y6c{bottom:239.078700px;}
.yd6{bottom:239.078850px;}
.y10a{bottom:239.300850px;}
.y3a{bottom:239.467800px;}
.y25{bottom:243.212550px;}
.y120{bottom:244.529250px;}
.y39{bottom:257.463300px;}
.y113{bottom:259.630500px;}
.y141{bottom:259.946850px;}
.y6b{bottom:260.078700px;}
.yb2{bottom:260.078850px;}
.y24{bottom:264.212550px;}
.y38{bottom:275.458800px;}
.y140{bottom:280.952850px;}
.y6a{bottom:281.078700px;}
.yb1{bottom:281.078850px;}
.y23{bottom:285.212550px;}
.y111{bottom:288.160950px;}
.y37{bottom:293.454300px;}
.y13f{bottom:301.958850px;}
.y69{bottom:302.078700px;}
.yb0{bottom:302.078850px;}
.y22{bottom:306.212550px;}
.y11f{bottom:307.936950px;}
.y36{bottom:311.449800px;}
.y112{bottom:314.557200px;}
.y13e{bottom:322.964850px;}
.y68{bottom:323.078700px;}
.yaf{bottom:323.078850px;}
.y21{bottom:327.212550px;}
.y35{bottom:329.445300px;}
.y11e{bottom:337.440900px;}
.y13d{bottom:343.970850px;}
.y67{bottom:344.078700px;}
.yae{bottom:344.078850px;}
.y34{bottom:347.440800px;}
.yf0{bottom:356.326800px;}
.y20{bottom:359.700300px;}
.y13c{bottom:364.976850px;}
.y66{bottom:365.078700px;}
.yad{bottom:365.078850px;}
.y33{bottom:365.436300px;}
.y116{bottom:368.746200px;}
.y32{bottom:383.431800px;}
.y13b{bottom:385.982850px;}
.y65{bottom:386.078700px;}
.yac{bottom:386.078850px;}
.yfb{bottom:393.156300px;}
.yd5{bottom:399.513600px;}
.y117{bottom:399.654363px;}
.y31{bottom:401.427300px;}
.y13a{bottom:406.988850px;}
.y64{bottom:407.078700px;}
.yab{bottom:407.078850px;}
.yef{bottom:408.370800px;}
.yfa{bottom:415.764300px;}
.y139{bottom:427.994850px;}
.y63{bottom:428.078700px;}
.yaa{bottom:428.078850px;}
.yee{bottom:428.422800px;}
.yd4{bottom:431.811150px;}
.y30{bottom:436.432800px;}
.yf9{bottom:438.372300px;}
.y1f{bottom:440.227950px;}
.yed{bottom:448.474800px;}
.y138{bottom:449.000850px;}
.y62{bottom:449.078700px;}
.ya9{bottom:449.078850px;}
.y2f{bottom:454.428300px;}
.yf8{bottom:460.980300px;}
.yec{bottom:468.526800px;}
.y137{bottom:470.006850px;}
.y61{bottom:470.078700px;}
.ya8{bottom:470.078850px;}
.y2e{bottom:472.423800px;}
.y1e{bottom:481.215750px;}
.yf7{bottom:483.588300px;}
.yeb{bottom:488.578800px;}
.y136{bottom:491.012850px;}
.y60{bottom:491.078700px;}
.ya7{bottom:491.078850px;}
.y1d{bottom:501.020250px;}
.yf6{bottom:506.196300px;}
.y2d{bottom:507.429300px;}
.yea{bottom:508.630800px;}
.y135{bottom:512.018850px;}
.y5f{bottom:512.078700px;}
.ya6{bottom:512.078850px;}
.y11a{bottom:514.625534px;}
.y1c{bottom:520.824750px;}
.y2c{bottom:525.429300px;}
.y8a{bottom:525.513600px;}
.ye9{bottom:528.682800px;}
.yf5{bottom:528.804300px;}
.y119{bottom:532.802992px;}
.y134{bottom:533.024850px;}
.y5e{bottom:533.078700px;}
.yd3{bottom:533.078850px;}
.y1b{bottom:540.629250px;}
.y2b{bottom:543.429300px;}
.ye8{bottom:549.034800px;}
.y118{bottom:550.980450px;}
.yf4{bottom:551.412300px;}
.y133{bottom:554.030850px;}
.y5d{bottom:554.078700px;}
.yd2{bottom:554.078850px;}
.y89{bottom:557.811000px;}
.y1a{bottom:560.433750px;}
.y2a{bottom:561.429300px;}
.yb8{bottom:567.874200px;}
.y11d{bottom:568.440900px;}
.y132{bottom:575.036850px;}
.y5c{bottom:575.078700px;}
.yd1{bottom:575.078850px;}
.ye7{bottom:579.503250px;}
.y19{bottom:580.238250px;}
.yf3{bottom:582.876300px;}
.y131{bottom:596.042850px;}
.y5b{bottom:596.078700px;}
.yd0{bottom:596.078850px;}
.ye6{bottom:599.307750px;}
.y18{bottom:600.042750px;}
.y130{bottom:617.048850px;}
.y5a{bottom:617.078700px;}
.ycf{bottom:617.078850px;}
.ye5{bottom:619.112250px;}
.y17{bottom:619.847250px;}
.yf2{bottom:621.916800px;}
.y12f{bottom:638.054850px;}
.y59{bottom:638.078700px;}
.yce{bottom:638.078850px;}
.ye4{bottom:638.916750px;}
.y16{bottom:639.651750px;}
.yf1{bottom:641.721300px;}
.y12e{bottom:659.060850px;}
.y58{bottom:659.078700px;}
.ycd{bottom:659.078850px;}
.y15{bottom:659.456250px;}
.ya5{bottom:668.230650px;}
.y14{bottom:679.260750px;}
.y12d{bottom:680.066850px;}
.y57{bottom:680.078700px;}
.ycc{bottom:680.078850px;}
.ya4{bottom:688.035150px;}
.ye3{bottom:692.831850px;}
.y106{bottom:695.046300px;}
.y13{bottom:699.065250px;}
.y12c{bottom:701.072850px;}
.y56{bottom:701.078700px;}
.ycb{bottom:701.078850px;}
.ya3{bottom:712.540050px;}
.ye2{bottom:712.636350px;}
.y105{bottom:714.841800px;}
.y12{bottom:718.869750px;}
.y55{bottom:722.078700px;}
.yca{bottom:722.078850px;}
.ya2{bottom:726.531450px;}
.ye1{bottom:732.440850px;}
.y104{bottom:734.646300px;}
.y11{bottom:738.674250px;}
.ya1{bottom:740.523900px;}
.y54{bottom:743.078700px;}
.yc9{bottom:743.078850px;}
.y75{bottom:747.327750px;}
.ye0{bottom:752.245350px;}
.y103{bottom:754.450800px;}
.y11c{bottom:757.440900px;}
.y12b{bottom:757.441050px;}
.y10{bottom:758.478750px;}
.y53{bottom:764.078700px;}
.yc8{bottom:764.078850px;}
.y74{bottom:767.132250px;}
.ydb{bottom:772.575000px;}
.yfe{bottom:774.781500px;}
.yf{bottom:778.283250px;}
.y8c{bottom:784.571700px;}
.y95{bottom:784.592761px;}
.y156{bottom:784.982850px;}
.y52{bottom:785.078700px;}
.yc7{bottom:785.078850px;}
.y73{bottom:786.936750px;}
.ye{bottom:798.087750px;}
.yd9{bottom:803.350650px;}
.yfc{bottom:805.434150px;}
.y155{bottom:805.988850px;}
.y12a{bottom:806.072850px;}
.y51{bottom:806.078700px;}
.yc6{bottom:806.078850px;}
.y88{bottom:811.705650px;}
.y8d{bottom:824.102446px;}
.y96{bottom:824.123507px;}
.y154{bottom:826.994850px;}
.y50{bottom:827.078700px;}
.yc5{bottom:827.078850px;}
.yd{bottom:829.185300px;}
.yda{bottom:831.824100px;}
.y85{bottom:832.625133px;}
.yfd{bottom:833.794800px;}
.y7c{bottom:844.798063px;}
.y76{bottom:844.816950px;}
.y153{bottom:848.000850px;}
.y4f{bottom:848.078700px;}
.yc4{bottom:848.078850px;}
.y129{bottom:853.529250px;}
.y8e{bottom:863.633192px;}
.y97{bottom:863.654253px;}
.y152{bottom:869.006850px;}
.y4e{bottom:869.078700px;}
.yc3{bottom:869.078850px;}
.y7d{bottom:880.476361px;}
.y151{bottom:890.012850px;}
.y4d{bottom:890.078700px;}
.yc2{bottom:890.078850px;}
.y77{bottom:901.894673px;}
.y8f{bottom:903.163939px;}
.y98{bottom:903.184999px;}
.y7{bottom:908.466750px;}
.y150{bottom:911.018850px;}
.y4c{bottom:911.078700px;}
.yc1{bottom:911.078850px;}
.y7e{bottom:916.154660px;}
.y128{bottom:916.529250px;}
.y9e{bottom:919.536600px;}
.y9f{bottom:924.431133px;}
.y6{bottom:926.466750px;}
.y14f{bottom:932.024850px;}
.y4b{bottom:932.078700px;}
.yc0{bottom:932.078850px;}
.y90{bottom:942.694685px;}
.y99{bottom:942.715745px;}
.y5{bottom:944.466750px;}
.y7f{bottom:951.832958px;}
.y14e{bottom:953.030850px;}
.y4a{bottom:953.078700px;}
.ybf{bottom:953.078850px;}
.y78{bottom:958.972396px;}
.y14d{bottom:974.036850px;}
.y49{bottom:974.078700px;}
.ybe{bottom:974.078850px;}
.y86{bottom:975.667950px;}
.y4{bottom:979.474800px;}
.y127{bottom:979.529250px;}
.y91{bottom:982.225431px;}
.y9a{bottom:982.246492px;}
.y80{bottom:987.511257px;}
.y11b{bottom:988.440900px;}
.y87{bottom:994.051435px;}
.y14c{bottom:995.042850px;}
.y48{bottom:995.078700px;}
.ybd{bottom:995.078850px;}
.y14b{bottom:1016.048850px;}
.y79{bottom:1016.050118px;}
.y47{bottom:1016.078700px;}
.y109{bottom:1016.078850px;}
.y3{bottom:1016.285550px;}
.y92{bottom:1021.756177px;}
.y9b{bottom:1021.777238px;}
.y81{bottom:1023.189556px;}
.ydf{bottom:1024.499551px;}
.y102{bottom:1025.706609px;}
.ybc{bottom:1030.441050px;}
.y14a{bottom:1037.054850px;}
.y46{bottom:1037.078700px;}
.y108{bottom:1037.078850px;}
.y126{bottom:1042.529250px;}
.yde{bottom:1044.107550px;}
.y101{bottom:1045.236900px;}
.y2{bottom:1049.282550px;}
.y149{bottom:1058.060850px;}
.y45{bottom:1058.078700px;}
.y107{bottom:1058.078850px;}
.y82{bottom:1058.867854px;}
.y93{bottom:1061.286923px;}
.y9c{bottom:1061.307984px;}
.y7a{bottom:1073.127841px;}
.y125{bottom:1079.066850px;}
.y44{bottom:1079.078700px;}
.ybb{bottom:1079.078850px;}
.y83{bottom:1094.546153px;}
.y124{bottom:1100.072850px;}
.y43{bottom:1100.078700px;}
.yba{bottom:1100.078850px;}
.y94{bottom:1100.817670px;}
.y9d{bottom:1100.838730px;}
.yc{bottom:1109.815500px;}
.y42{bottom:1121.078700px;}
.yb9{bottom:1121.078850px;}
.ya0{bottom:1124.454750px;}
.y7b{bottom:1130.205564px;}
.y84{bottom:1130.224451px;}
.y3e{bottom:1159.189500px;}
.y3d{bottom:1178.689500px;}
.y41{bottom:1178.692050px;}
.h12{height:30.692025px;}
.h1f{height:31.872354px;}
.h13{height:33.966075px;}
.h15{height:34.223475px;}
.h1c{height:34.244411px;}
.h18{height:34.380665px;}
.h7{height:34.446094px;}
.h6{height:34.657031px;}
.h16{height:37.874362px;}
.h1a{height:37.875000px;}
.h11{height:38.273438px;}
.h2{height:38.507812px;}
.h5{height:38.531250px;}
.h8{height:41.053711px;}
.h1b{height:41.929688px;}
.h10{height:43.057617px;}
.hf{height:43.321289px;}
.ha{height:43.875000px;}
.h17{height:45.631462px;}
.hb{height:47.170898px;}
.h1e{height:47.188898px;}
.h9{height:47.343750px;}
.hd{height:48.750000px;}
.h21{height:50.176758px;}
.h14{height:52.078125px;}
.he{height:52.412109px;}
.h4{height:53.625000px;}
.hc{height:56.812500px;}
.h3{height:77.545898px;}
.h20{height:340.263000px;}
.h1d{height:367.297500px;}
.h19{height:368.760000px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w2{width:518.740500px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x20{left:11.190750px;}
.x2{left:73.984200px;}
.xa{left:107.063850px;}
.xc{left:108.289650px;}
.x5{left:119.878950px;}
.x6{left:122.032500px;}
.x7{left:124.102950px;}
.x26{left:248.715900px;}
.x24{left:267.224550px;}
.x1f{left:268.287750px;}
.x4{left:300.189000px;}
.x23{left:311.947050px;}
.x13{left:313.304199px;}
.x17{left:314.814674px;}
.xb{left:317.196900px;}
.x10{left:322.218495px;}
.xf{left:327.261430px;}
.x1a{left:334.206900px;}
.xe{left:337.356746px;}
.x1e{left:339.357600px;}
.x16{left:344.176844px;}
.x1b{left:351.216900px;}
.x25{left:355.413000px;}
.x11{left:362.703637px;}
.x1d{left:364.519200px;}
.x1c{left:368.226900px;}
.x19{left:381.232050px;}
.x22{left:388.159050px;}
.x3{left:396.050700px;}
.x21{left:407.049600px;}
.x18{left:495.893100px;}
.x14{left:521.919000px;}
.x9{left:648.907800px;}
.x29{left:657.750750px;}
.x8{left:669.715800px;}
.x15{left:776.477250px;}
.xd{left:787.500150px;}
.x27{left:790.398300px;}
.x1{left:801.157500px;}
.x28{left:812.444682px;}
.x12{left:814.016400px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:16.016000pt;}
.v1{vertical-align:19.536000pt;}
.ls3{letter-spacing:-0.816000pt;}
.ls2{letter-spacing:-0.614400pt;}
.ls16{letter-spacing:-0.480000pt;}
.ls13{letter-spacing:-0.288000pt;}
.ls17{letter-spacing:-0.213333pt;}
.ls14{letter-spacing:-0.167904pt;}
.ls5{letter-spacing:-0.160000pt;}
.ls11{letter-spacing:-0.149764pt;}
.lsd{letter-spacing:-0.134310pt;}
.lsc{letter-spacing:-0.111478pt;}
.lsb{letter-spacing:-0.074319pt;}
.ls10{letter-spacing:-0.049922pt;}
.lse{letter-spacing:-0.037441pt;}
.ls9{letter-spacing:-0.033578pt;}
.ls1{letter-spacing:0.000000pt;}
.lsa{letter-spacing:0.033578pt;}
.lsf{letter-spacing:0.082870pt;}
.ls7{letter-spacing:0.111478pt;}
.ls12{letter-spacing:0.320000pt;}
.ls4{letter-spacing:0.693333pt;}
.ls8{letter-spacing:0.746667pt;}
.ls0{letter-spacing:38.383968pt;}
.ls6{letter-spacing:86.462320pt;}
.ls15{letter-spacing:135.179385pt;}
.ws98{word-spacing:-145.861553pt;}
.ws6{word-spacing:-15.936000pt;}
.wsac{word-spacing:-14.608000pt;}
.ws25{word-spacing:-13.920000pt;}
.ws4{word-spacing:-13.280000pt;}
.ws52{word-spacing:-13.226667pt;}
.ws24{word-spacing:-13.066667pt;}
.ws93{word-spacing:-11.904000pt;}
.ws5{word-spacing:-11.760000pt;}
.ws75{word-spacing:-11.522841pt;}
.ws88{word-spacing:-11.477174pt;}
.ws7{word-spacing:-10.992000pt;}
.wsa{word-spacing:-10.800000pt;}
.ws96{word-spacing:-10.682169pt;}
.ws51{word-spacing:-10.275930pt;}
.ws8{word-spacing:-10.176000pt;}
.ws9{word-spacing:-9.984000pt;}
.wsb{word-spacing:-9.770667pt;}
.ws2{word-spacing:-9.685333pt;}
.ws23{word-spacing:-9.600000pt;}
.ws4f{word-spacing:-9.285385pt;}
.ws50{word-spacing:-9.247943pt;}
.ws3f{word-spacing:-9.215548pt;}
.ws3{word-spacing:-8.793600pt;}
.ws1{word-spacing:-8.549333pt;}
.ws0{word-spacing:-8.482261pt;}
.ws3b{word-spacing:-8.327245pt;}
.ws3c{word-spacing:-8.293667pt;}
.ws89{word-spacing:-6.772128pt;}
.ws92{word-spacing:-3.626667pt;}
.ws32{word-spacing:-3.093333pt;}
.ws38{word-spacing:-3.040000pt;}
.ws4e{word-spacing:-2.666667pt;}
.ws57{word-spacing:-2.560000pt;}
.ws1b{word-spacing:-2.496000pt;}
.ws1e{word-spacing:-2.453333pt;}
.ws1c{word-spacing:-2.448000pt;}
.wsb0{word-spacing:-2.256000pt;}
.ws9f{word-spacing:-2.186667pt;}
.wsa8{word-spacing:-2.133333pt;}
.ws9b{word-spacing:-1.973333pt;}
.ws8b{word-spacing:-1.968000pt;}
.ws37{word-spacing:-1.866667pt;}
.ws8a{word-spacing:-1.584000pt;}
.ws4c{word-spacing:-1.440000pt;}
.ws29{word-spacing:-1.226667pt;}
.ws10{word-spacing:-1.200000pt;}
.wsd{word-spacing:-1.114667pt;}
.ws1f{word-spacing:-1.066667pt;}
.ws65{word-spacing:-0.800000pt;}
.ws48{word-spacing:-0.746667pt;}
.ws12{word-spacing:-0.720000pt;}
.ws35{word-spacing:-0.693333pt;}
.ws1d{word-spacing:-0.533333pt;}
.ws8e{word-spacing:-0.528000pt;}
.ws68{word-spacing:-0.480000pt;}
.wsa3{word-spacing:-0.432000pt;}
.ws66{word-spacing:-0.373333pt;}
.ws67{word-spacing:-0.336000pt;}
.ws80{word-spacing:-0.320000pt;}
.ws70{word-spacing:-0.266667pt;}
.wsaf{word-spacing:-0.240000pt;}
.wse{word-spacing:-0.192000pt;}
.ws15{word-spacing:-0.144000pt;}
.ws5a{word-spacing:-0.106667pt;}
.ws8c{word-spacing:-0.096000pt;}
.ws53{word-spacing:-0.082870pt;}
.ws43{word-spacing:-0.033578pt;}
.wsc{word-spacing:0.000000pt;}
.ws54{word-spacing:0.049922pt;}
.ws7d{word-spacing:0.053333pt;}
.ws44{word-spacing:0.074319pt;}
.ws45{word-spacing:0.111478pt;}
.ws46{word-spacing:0.134310pt;}
.ws55{word-spacing:0.149764pt;}
.ws39{word-spacing:0.160000pt;}
.ws14{word-spacing:0.192000pt;}
.ws7f{word-spacing:0.213333pt;}
.ws7b{word-spacing:0.240000pt;}
.ws6f{word-spacing:0.266667pt;}
.ws8d{word-spacing:0.288000pt;}
.ws2c{word-spacing:0.373333pt;}
.ws2f{word-spacing:0.426667pt;}
.ws90{word-spacing:0.480000pt;}
.ws72{word-spacing:0.533333pt;}
.wsf{word-spacing:0.614400pt;}
.wsb3{word-spacing:0.624000pt;}
.ws2e{word-spacing:0.640000pt;}
.ws4d{word-spacing:0.800000pt;}
.ws22{word-spacing:0.816000pt;}
.ws47{word-spacing:0.853333pt;}
.ws27{word-spacing:0.906667pt;}
.ws30{word-spacing:0.960000pt;}
.ws21{word-spacing:1.013333pt;}
.ws4b{word-spacing:1.066667pt;}
.ws33{word-spacing:1.173333pt;}
.ws2a{word-spacing:1.226667pt;}
.ws7c{word-spacing:1.296000pt;}
.ws17{word-spacing:1.344000pt;}
.ws71{word-spacing:1.493333pt;}
.ws5f{word-spacing:1.546667pt;}
.ws9a{word-spacing:1.600000pt;}
.ws1a{word-spacing:1.632000pt;}
.ws36{word-spacing:1.706667pt;}
.ws59{word-spacing:1.920000pt;}
.ws99{word-spacing:2.080000pt;}
.ws5e{word-spacing:2.133333pt;}
.wsa0{word-spacing:2.240000pt;}
.wsa6{word-spacing:2.346667pt;}
.ws56{word-spacing:2.400000pt;}
.ws6c{word-spacing:2.613333pt;}
.ws91{word-spacing:2.986667pt;}
.ws16{word-spacing:3.072000pt;}
.ws61{word-spacing:3.093333pt;}
.wsad{word-spacing:3.120000pt;}
.ws13{word-spacing:3.168000pt;}
.wsab{word-spacing:3.200000pt;}
.ws63{word-spacing:3.253333pt;}
.ws26{word-spacing:3.306667pt;}
.ws7e{word-spacing:3.413333pt;}
.ws4a{word-spacing:3.466667pt;}
.ws11{word-spacing:3.600000pt;}
.ws3a{word-spacing:3.680000pt;}
.ws2b{word-spacing:3.733333pt;}
.ws8f{word-spacing:4.213333pt;}
.wsb2{word-spacing:4.272000pt;}
.ws9c{word-spacing:4.586667pt;}
.ws19{word-spacing:4.752000pt;}
.ws2d{word-spacing:4.906667pt;}
.ws28{word-spacing:4.960000pt;}
.ws60{word-spacing:5.013333pt;}
.ws6a{word-spacing:5.173333pt;}
.wsae{word-spacing:5.232000pt;}
.wsb4{word-spacing:5.328000pt;}
.wsa2{word-spacing:5.856000pt;}
.wsa1{word-spacing:5.904000pt;}
.wsb1{word-spacing:5.952000pt;}
.ws6b{word-spacing:6.293333pt;}
.ws62{word-spacing:6.346667pt;}
.ws5b{word-spacing:6.560000pt;}
.wsb6{word-spacing:6.576000pt;}
.ws5d{word-spacing:6.613333pt;}
.ws9e{word-spacing:6.666667pt;}
.wsb7{word-spacing:6.672000pt;}
.ws58{word-spacing:6.986667pt;}
.wsa4{word-spacing:7.040000pt;}
.ws69{word-spacing:7.306667pt;}
.ws6e{word-spacing:7.360000pt;}
.wsb5{word-spacing:7.440000pt;}
.ws6d{word-spacing:7.466667pt;}
.ws20{word-spacing:7.733333pt;}
.ws42{word-spacing:7.824000pt;}
.ws41{word-spacing:7.920000pt;}
.ws18{word-spacing:7.968000pt;}
.ws64{word-spacing:8.320000pt;}
.ws49{word-spacing:8.426667pt;}
.wsa5{word-spacing:8.800000pt;}
.wsa9{word-spacing:8.853333pt;}
.wsa7{word-spacing:9.600000pt;}
.ws9d{word-spacing:11.573333pt;}
.wsaa{word-spacing:12.746667pt;}
.ws31{word-spacing:13.440000pt;}
.ws5c{word-spacing:17.173333pt;}
.ws34{word-spacing:26.346667pt;}
.ws3e{word-spacing:62.689379pt;}
.ws3d{word-spacing:62.958000pt;}
.ws97{word-spacing:74.314079pt;}
.ws7a{word-spacing:89.173333pt;}
.ws78{word-spacing:101.333333pt;}
.ws40{word-spacing:109.523711pt;}
.ws79{word-spacing:110.677333pt;}
.ws84{word-spacing:114.048000pt;}
.ws82{word-spacing:121.344000pt;}
.ws95{word-spacing:123.767140pt;}
.ws83{word-spacing:126.976000pt;}
.ws87{word-spacing:132.978341pt;}
.ws74{word-spacing:133.507444pt;}
.ws85{word-spacing:133.546667pt;}
.ws81{word-spacing:139.136000pt;}
.ws77{word-spacing:146.858667pt;}
.ws76{word-spacing:187.776000pt;}
.ws94{word-spacing:263.403832pt;}
.ws86{word-spacing:273.181522pt;}
.ws73{word-spacing:274.848761pt;}
._45{margin-left:-135.166786pt;}
._b{margin-left:-10.314667pt;}
._5{margin-left:-9.345099pt;}
._3{margin-left:-7.507200pt;}
._f{margin-left:-5.886400pt;}
._a{margin-left:-4.428800pt;}
._4{margin-left:-3.355733pt;}
._1{margin-left:-2.094400pt;}
._0{margin-left:-0.906667pt;}
._2{width:1.486933pt;}
._d{width:2.384000pt;}
._7{width:3.811200pt;}
._c{width:4.717333pt;}
._8{width:5.606400pt;}
._e{width:6.550400pt;}
._9{width:7.461333pt;}
._14{width:8.448000pt;}
._1a{width:11.157333pt;}
._19{width:16.512000pt;}
._18{width:17.843733pt;}
._17{width:28.053333pt;}
._6{width:32.328533pt;}
._46{width:38.149333pt;}
._11{width:72.896970pt;}
._13{width:75.818221pt;}
._10{width:80.754128pt;}
._12{width:83.138138pt;}
._42{width:88.448000pt;}
._2f{width:90.240000pt;}
._21{width:99.754667pt;}
._34{width:104.277333pt;}
._1d{width:105.514667pt;}
._30{width:109.226667pt;}
._25{width:111.914667pt;}
._2d{width:121.216000pt;}
._29{width:123.946667pt;}
._35{width:128.213333pt;}
._24{width:133.418667pt;}
._44{width:137.002667pt;}
._2c{width:138.240000pt;}
._1c{width:142.080000pt;}
._36{width:144.938667pt;}
._3d{width:149.888000pt;}
._1e{width:151.210667pt;}
._20{width:157.226667pt;}
._39{width:160.384000pt;}
._32{width:162.218667pt;}
._28{width:169.429333pt;}
._3c{width:172.544000pt;}
._38{width:179.925333pt;}
._37{width:184.362667pt;}
._23{width:186.368000pt;}
._3f{width:192.298667pt;}
._40{width:196.608000pt;}
._1f{width:198.144000pt;}
._27{width:222.336000pt;}
._43{width:228.949333pt;}
._31{width:259.157333pt;}
._16{width:263.700241pt;}
._3e{width:289.066667pt;}
._2a{width:307.328000pt;}
._33{width:372.099733pt;}
._1b{width:402.350400pt;}
._2e{width:404.693333pt;}
._3b{width:448.938667pt;}
._26{width:491.136000pt;}
._3a{width:587.103467pt;}
._41{width:597.077333pt;}
._2b{width:639.317333pt;}
._22{width:653.279467pt;}
._15{width:679.360254pt;}
.fs10{font-size:27.984000pt;}
.fs9{font-size:33.577600pt;}
.fs3{font-size:34.202667pt;}
.fsa{font-size:37.159467pt;}
.fs4{font-size:37.333333pt;}
.fsb{font-size:37.441067pt;}
.fs5{font-size:38.400000pt;}
.fs11{font-size:38.425067pt;}
.fsf{font-size:41.284800pt;}
.fsc{font-size:41.435200pt;}
.fse{font-size:41.449067pt;}
.fs0{font-size:42.666667pt;}
.fs6{font-size:48.000000pt;}
.fsd{font-size:49.921600pt;}
.fs7{font-size:53.333333pt;}
.fs2{font-size:58.666667pt;}
.fs8{font-size:64.000000pt;}
.fs1{font-size:90.666667pt;}
.y0{bottom:0.000000pt;}
.y114{bottom:2.305467pt;}
.yff{bottom:2.476133pt;}
.ydc{bottom:2.486933pt;}
.y1{bottom:60.555333pt;}
.y3f{bottom:63.299600pt;}
.y40{bottom:66.702267pt;}
.y148{bottom:100.359867pt;}
.y123{bottom:100.503733pt;}
.y72{bottom:100.514400pt;}
.yb7{bottom:100.514533pt;}
.yb{bottom:104.182267pt;}
.y110{bottom:107.087867pt;}
.ya{bottom:116.979067pt;}
.y147{bottom:119.031867pt;}
.y122{bottom:119.175733pt;}
.y71{bottom:119.181067pt;}
.yb6{bottom:119.181200pt;}
.y10f{bottom:124.691867pt;}
.y9{bottom:129.775867pt;}
.y115{bottom:134.519867pt;}
.y146{bottom:137.703867pt;}
.y70{bottom:137.847733pt;}
.yb5{bottom:137.847867pt;}
.y29{bottom:141.522267pt;}
.y10e{bottom:142.295867pt;}
.y8{bottom:142.575867pt;}
.y100{bottom:144.529600pt;}
.ydd{bottom:145.105600pt;}
.y145{bottom:156.375867pt;}
.y6f{bottom:156.514400pt;}
.yb4{bottom:156.514533pt;}
.y10d{bottom:159.899867pt;}
.y28{bottom:160.188933pt;}
.y121{bottom:161.359333pt;}
.y8b{bottom:169.280800pt;}
.y144{bottom:175.047867pt;}
.y6e{bottom:175.181067pt;}
.yd8{bottom:175.181200pt;}
.y10c{bottom:177.503867pt;}
.y27{bottom:178.855600pt;}
.y3c{bottom:180.868267pt;}
.yb3{bottom:187.947600pt;}
.y143{bottom:193.719867pt;}
.y6d{bottom:193.847733pt;}
.yd7{bottom:193.847867pt;}
.y10b{bottom:195.107867pt;}
.y3b{bottom:196.864267pt;}
.y26{bottom:197.522267pt;}
.y142{bottom:212.391867pt;}
.y6c{bottom:212.514400pt;}
.yd6{bottom:212.514533pt;}
.y10a{bottom:212.711867pt;}
.y3a{bottom:212.860267pt;}
.y25{bottom:216.188933pt;}
.y120{bottom:217.359333pt;}
.y39{bottom:228.856267pt;}
.y113{bottom:230.782667pt;}
.y141{bottom:231.063867pt;}
.y6b{bottom:231.181067pt;}
.yb2{bottom:231.181200pt;}
.y24{bottom:234.855600pt;}
.y38{bottom:244.852267pt;}
.y140{bottom:249.735867pt;}
.y6a{bottom:249.847733pt;}
.yb1{bottom:249.847867pt;}
.y23{bottom:253.522267pt;}
.y111{bottom:256.143067pt;}
.y37{bottom:260.848267pt;}
.y13f{bottom:268.407867pt;}
.y69{bottom:268.514400pt;}
.yb0{bottom:268.514533pt;}
.y22{bottom:272.188933pt;}
.y11f{bottom:273.721733pt;}
.y36{bottom:276.844267pt;}
.y112{bottom:279.606400pt;}
.y13e{bottom:287.079867pt;}
.y68{bottom:287.181067pt;}
.yaf{bottom:287.181200pt;}
.y21{bottom:290.855600pt;}
.y35{bottom:292.840267pt;}
.y11e{bottom:299.947467pt;}
.y13d{bottom:305.751867pt;}
.y67{bottom:305.847733pt;}
.yae{bottom:305.847867pt;}
.y34{bottom:308.836267pt;}
.yf0{bottom:316.734933pt;}
.y20{bottom:319.733600pt;}
.y13c{bottom:324.423867pt;}
.y66{bottom:324.514400pt;}
.yad{bottom:324.514533pt;}
.y33{bottom:324.832267pt;}
.y116{bottom:327.774400pt;}
.y32{bottom:340.828267pt;}
.y13b{bottom:343.095867pt;}
.y65{bottom:343.181067pt;}
.yac{bottom:343.181200pt;}
.yfb{bottom:349.472267pt;}
.yd5{bottom:355.123200pt;}
.y117{bottom:355.248323pt;}
.y31{bottom:356.824267pt;}
.y13a{bottom:361.767867pt;}
.y64{bottom:361.847733pt;}
.yab{bottom:361.847867pt;}
.yef{bottom:362.996267pt;}
.yfa{bottom:369.568267pt;}
.y139{bottom:380.439867pt;}
.y63{bottom:380.514400pt;}
.yaa{bottom:380.514533pt;}
.yee{bottom:380.820267pt;}
.yd4{bottom:383.832133pt;}
.y30{bottom:387.940267pt;}
.yf9{bottom:389.664267pt;}
.y1f{bottom:391.313733pt;}
.yed{bottom:398.644267pt;}
.y138{bottom:399.111867pt;}
.y62{bottom:399.181067pt;}
.ya9{bottom:399.181200pt;}
.y2f{bottom:403.936267pt;}
.yf8{bottom:409.760267pt;}
.yec{bottom:416.468267pt;}
.y137{bottom:417.783867pt;}
.y61{bottom:417.847733pt;}
.ya8{bottom:417.847867pt;}
.y2e{bottom:419.932267pt;}
.y1e{bottom:427.747333pt;}
.yf7{bottom:429.856267pt;}
.yeb{bottom:434.292267pt;}
.y136{bottom:436.455867pt;}
.y60{bottom:436.514400pt;}
.ya7{bottom:436.514533pt;}
.y1d{bottom:445.351333pt;}
.yf6{bottom:449.952267pt;}
.y2d{bottom:451.048267pt;}
.yea{bottom:452.116267pt;}
.y135{bottom:455.127867pt;}
.y5f{bottom:455.181067pt;}
.ya6{bottom:455.181200pt;}
.y11a{bottom:457.444919pt;}
.y1c{bottom:462.955333pt;}
.y2c{bottom:467.048267pt;}
.y8a{bottom:467.123200pt;}
.ye9{bottom:469.940267pt;}
.yf5{bottom:470.048267pt;}
.y119{bottom:473.602659pt;}
.y134{bottom:473.799867pt;}
.y5e{bottom:473.847733pt;}
.yd3{bottom:473.847867pt;}
.y1b{bottom:480.559333pt;}
.y2b{bottom:483.048267pt;}
.ye8{bottom:488.030933pt;}
.y118{bottom:489.760400pt;}
.yf4{bottom:490.144267pt;}
.y133{bottom:492.471867pt;}
.y5d{bottom:492.514400pt;}
.yd2{bottom:492.514533pt;}
.y89{bottom:495.832000pt;}
.y1a{bottom:498.163333pt;}
.y2a{bottom:499.048267pt;}
.yb8{bottom:504.777067pt;}
.y11d{bottom:505.280800pt;}
.y132{bottom:511.143867pt;}
.y5c{bottom:511.181067pt;}
.yd1{bottom:511.181200pt;}
.ye7{bottom:515.114000pt;}
.y19{bottom:515.767333pt;}
.yf3{bottom:518.112267pt;}
.y131{bottom:529.815867pt;}
.y5b{bottom:529.847733pt;}
.yd0{bottom:529.847867pt;}
.ye6{bottom:532.718000pt;}
.y18{bottom:533.371333pt;}
.y130{bottom:548.487867pt;}
.y5a{bottom:548.514400pt;}
.ycf{bottom:548.514533pt;}
.ye5{bottom:550.322000pt;}
.y17{bottom:550.975333pt;}
.yf2{bottom:552.814933pt;}
.y12f{bottom:567.159867pt;}
.y59{bottom:567.181067pt;}
.yce{bottom:567.181200pt;}
.ye4{bottom:567.926000pt;}
.y16{bottom:568.579333pt;}
.yf1{bottom:570.418933pt;}
.y12e{bottom:585.831867pt;}
.y58{bottom:585.847733pt;}
.ycd{bottom:585.847867pt;}
.y15{bottom:586.183333pt;}
.ya5{bottom:593.982800pt;}
.y14{bottom:603.787333pt;}
.y12d{bottom:604.503867pt;}
.y57{bottom:604.514400pt;}
.ycc{bottom:604.514533pt;}
.ya4{bottom:611.586800pt;}
.ye3{bottom:615.850533pt;}
.y106{bottom:617.818933pt;}
.y13{bottom:621.391333pt;}
.y12c{bottom:623.175867pt;}
.y56{bottom:623.181067pt;}
.ycb{bottom:623.181200pt;}
.ya3{bottom:633.368933pt;}
.ye2{bottom:633.454533pt;}
.y105{bottom:635.414933pt;}
.y12{bottom:638.995333pt;}
.y55{bottom:641.847733pt;}
.yca{bottom:641.847867pt;}
.ya2{bottom:645.805733pt;}
.ye1{bottom:651.058533pt;}
.y104{bottom:653.018933pt;}
.y11{bottom:656.599333pt;}
.ya1{bottom:658.243467pt;}
.y54{bottom:660.514400pt;}
.yc9{bottom:660.514533pt;}
.y75{bottom:664.291333pt;}
.ye0{bottom:668.662533pt;}
.y103{bottom:670.622933pt;}
.y11c{bottom:673.280800pt;}
.y12b{bottom:673.280933pt;}
.y10{bottom:674.203333pt;}
.y53{bottom:679.181067pt;}
.yc8{bottom:679.181200pt;}
.y74{bottom:681.895333pt;}
.ydb{bottom:686.733333pt;}
.yfe{bottom:688.694667pt;}
.yf{bottom:691.807333pt;}
.y8c{bottom:697.397067pt;}
.y95{bottom:697.415787pt;}
.y156{bottom:697.762533pt;}
.y52{bottom:697.847733pt;}
.yc7{bottom:697.847867pt;}
.y73{bottom:699.499333pt;}
.ye{bottom:709.411333pt;}
.yd9{bottom:714.089467pt;}
.yfc{bottom:715.941467pt;}
.y155{bottom:716.434533pt;}
.y12a{bottom:716.509200pt;}
.y51{bottom:716.514400pt;}
.yc6{bottom:716.514533pt;}
.y88{bottom:721.516133pt;}
.y8d{bottom:732.535508pt;}
.y96{bottom:732.554228pt;}
.y154{bottom:735.106533pt;}
.y50{bottom:735.181067pt;}
.yc5{bottom:735.181200pt;}
.yd{bottom:737.053600pt;}
.yda{bottom:739.399200pt;}
.y85{bottom:740.111230pt;}
.yfd{bottom:741.150933pt;}
.y7c{bottom:750.931611pt;}
.y76{bottom:750.948400pt;}
.y153{bottom:753.778533pt;}
.y4f{bottom:753.847733pt;}
.yc4{bottom:753.847867pt;}
.y129{bottom:758.692667pt;}
.y8e{bottom:767.673949pt;}
.y97{bottom:767.692669pt;}
.y152{bottom:772.450533pt;}
.y4e{bottom:772.514400pt;}
.yc3{bottom:772.514533pt;}
.y7d{bottom:782.645654pt;}
.y151{bottom:791.122533pt;}
.y4d{bottom:791.181067pt;}
.yc2{bottom:791.181200pt;}
.y77{bottom:801.684154pt;}
.y8f{bottom:802.812390pt;}
.y98{bottom:802.831110pt;}
.y7{bottom:807.526000pt;}
.y150{bottom:809.794533pt;}
.y4c{bottom:809.847733pt;}
.yc1{bottom:809.847867pt;}
.y7e{bottom:814.359698pt;}
.y128{bottom:814.692667pt;}
.y9e{bottom:817.365867pt;}
.y9f{bottom:821.716563pt;}
.y6{bottom:823.526000pt;}
.y14f{bottom:828.466533pt;}
.y4b{bottom:828.514400pt;}
.yc0{bottom:828.514533pt;}
.y90{bottom:837.950831pt;}
.y99{bottom:837.969551pt;}
.y5{bottom:839.526000pt;}
.y7f{bottom:846.073741pt;}
.y14e{bottom:847.138533pt;}
.y4a{bottom:847.181067pt;}
.ybf{bottom:847.181200pt;}
.y78{bottom:852.419907pt;}
.y14d{bottom:865.810533pt;}
.y49{bottom:865.847733pt;}
.ybe{bottom:865.847867pt;}
.y86{bottom:867.260400pt;}
.y4{bottom:870.644267pt;}
.y127{bottom:870.692667pt;}
.y91{bottom:873.089272pt;}
.y9a{bottom:873.107993pt;}
.y80{bottom:877.787784pt;}
.y11b{bottom:878.614133pt;}
.y87{bottom:883.601275pt;}
.y14c{bottom:884.482533pt;}
.y48{bottom:884.514400pt;}
.ybd{bottom:884.514533pt;}
.y14b{bottom:903.154533pt;}
.y79{bottom:903.155661pt;}
.y47{bottom:903.181067pt;}
.y109{bottom:903.181200pt;}
.y3{bottom:903.364933pt;}
.y92{bottom:908.227713pt;}
.y9b{bottom:908.246434pt;}
.y81{bottom:909.501827pt;}
.ydf{bottom:910.666267pt;}
.y102{bottom:911.739208pt;}
.ybc{bottom:915.947600pt;}
.y14a{bottom:921.826533pt;}
.y46{bottom:921.847733pt;}
.y108{bottom:921.847867pt;}
.y126{bottom:926.692667pt;}
.yde{bottom:928.095600pt;}
.y101{bottom:929.099467pt;}
.y2{bottom:932.695600pt;}
.y149{bottom:940.498533pt;}
.y45{bottom:940.514400pt;}
.y107{bottom:940.514533pt;}
.y82{bottom:941.215870pt;}
.y93{bottom:943.366154pt;}
.y9c{bottom:943.384875pt;}
.y7a{bottom:953.891414pt;}
.y125{bottom:959.170533pt;}
.y44{bottom:959.181067pt;}
.ybb{bottom:959.181200pt;}
.y83{bottom:972.929914pt;}
.y124{bottom:977.842533pt;}
.y43{bottom:977.847733pt;}
.yba{bottom:977.847867pt;}
.y94{bottom:978.504595pt;}
.y9d{bottom:978.523316pt;}
.yc{bottom:986.502667pt;}
.y42{bottom:996.514400pt;}
.yb9{bottom:996.514533pt;}
.ya0{bottom:999.515333pt;}
.y7b{bottom:1004.627168pt;}
.y84{bottom:1004.643957pt;}
.y3e{bottom:1030.390667pt;}
.y3d{bottom:1047.724000pt;}
.y41{bottom:1047.726267pt;}
.h12{height:27.281800pt;}
.h1f{height:28.330982pt;}
.h13{height:30.192067pt;}
.h15{height:30.420867pt;}
.h1c{height:30.439477pt;}
.h18{height:30.560591pt;}
.h7{height:30.618750pt;}
.h6{height:30.806250pt;}
.h16{height:33.666100pt;}
.h1a{height:33.666667pt;}
.h11{height:34.020833pt;}
.h2{height:34.229167pt;}
.h5{height:34.250000pt;}
.h8{height:36.492188pt;}
.h1b{height:37.270833pt;}
.h10{height:38.273438pt;}
.hf{height:38.507812pt;}
.ha{height:39.000000pt;}
.h17{height:40.561300pt;}
.hb{height:41.929688pt;}
.h1e{height:41.945687pt;}
.h9{height:42.083333pt;}
.hd{height:43.333333pt;}
.h21{height:44.601562pt;}
.h14{height:46.291667pt;}
.he{height:46.588542pt;}
.h4{height:47.666667pt;}
.hc{height:50.500000pt;}
.h3{height:68.929688pt;}
.h20{height:302.456000pt;}
.h1d{height:326.486667pt;}
.h19{height:327.786667pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w2{width:461.102667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x20{left:9.947333pt;}
.x2{left:65.763733pt;}
.xa{left:95.167867pt;}
.xc{left:96.257467pt;}
.x5{left:106.559067pt;}
.x6{left:108.473333pt;}
.x7{left:110.313733pt;}
.x26{left:221.080800pt;}
.x24{left:237.532933pt;}
.x1f{left:238.478000pt;}
.x4{left:266.834667pt;}
.x23{left:277.286267pt;}
.x13{left:278.492621pt;}
.x17{left:279.835266pt;}
.xb{left:281.952800pt;}
.x10{left:286.416440pt;}
.xf{left:290.899049pt;}
.x1a{left:297.072800pt;}
.xe{left:299.872663pt;}
.x1e{left:301.651200pt;}
.x16{left:305.934973pt;}
.x1b{left:312.192800pt;}
.x25{left:315.922667pt;}
.x11{left:322.403233pt;}
.x1d{left:324.017067pt;}
.x1c{left:327.312800pt;}
.x19{left:338.872933pt;}
.x22{left:345.030267pt;}
.x3{left:352.045067pt;}
.x21{left:361.821867pt;}
.x18{left:440.793867pt;}
.x14{left:463.928000pt;}
.x9{left:576.806933pt;}
.x29{left:584.667333pt;}
.x8{left:595.302933pt;}
.x15{left:690.202000pt;}
.xd{left:700.000133pt;}
.x27{left:702.576267pt;}
.x1{left:712.140000pt;}
.x28{left:722.173051pt;}
.x12{left:723.570133pt;}
}




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