
    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_a7d71af46145c36df668c4ae.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.126000;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_c60f55dfb7e6fcb7e4ba2882.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.065581;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_8d707cdf90be51f0db33032c.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.222000;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_63a9078651b30580230e17a6.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.213000;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_ef2d33ce342d015c7fe50342.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.239000;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_55239751b45b9b2cd933eca5.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.924000;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_a2f5c08a4823d155ee557f8f.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.722656;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_3166c3278702dcf4b1f0e485.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.607000;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_a9785fbf0253a6e3bb2acdf3.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.328000;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_5bf709ff1ff6b8f28b50061f.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.230000;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_6d3122adfd0234416970bfa6.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.911000;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_86513c047afb43dd6f221193.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.691000;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);}
.v2{vertical-align:-20.400000px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:20.324963px;}
.v3{vertical-align:21.636771px;}
.v1{vertical-align:24.000000px;}
.ls16{letter-spacing:-1.200000px;}
.ls15{letter-spacing:-1.140000px;}
.ls19{letter-spacing:-0.900000px;}
.ls27{letter-spacing:-0.780000px;}
.ls28{letter-spacing:-0.720000px;}
.ls26{letter-spacing:-0.660000px;}
.ls18{letter-spacing:-0.600000px;}
.ls17{letter-spacing:-0.480000px;}
.ls3c{letter-spacing:-0.420000px;}
.ls49{letter-spacing:-0.408000px;}
.ls25{letter-spacing:-0.360000px;}
.ls67{letter-spacing:-0.357000px;}
.ls48{letter-spacing:-0.306000px;}
.ls1b{letter-spacing:-0.300000px;}
.ls64{letter-spacing:-0.255000px;}
.ls14{letter-spacing:-0.240000px;}
.ls66{letter-spacing:-0.204000px;}
.ls13{letter-spacing:-0.180000px;}
.ls63{letter-spacing:-0.153000px;}
.ls1c{letter-spacing:-0.120000px;}
.ls1a{letter-spacing:-0.060000px;}
.ls62{letter-spacing:-0.051000px;}
.ls2b{letter-spacing:-0.047751px;}
.ls12{letter-spacing:0.000000px;}
.ls36{letter-spacing:0.000037px;}
.ls23{letter-spacing:0.047751px;}
.ls4f{letter-spacing:0.051000px;}
.ls4{letter-spacing:0.060000px;}
.ls2c{letter-spacing:0.095502px;}
.ls46{letter-spacing:0.102000px;}
.ls3a{letter-spacing:0.120000px;}
.ls2a{letter-spacing:0.143253px;}
.ls41{letter-spacing:0.150000px;}
.ls5d{letter-spacing:0.153000px;}
.ls10{letter-spacing:0.178800px;}
.ls3{letter-spacing:0.180000px;}
.ls43{letter-spacing:0.204000px;}
.ls3b{letter-spacing:0.210000px;}
.ls61{letter-spacing:0.229500px;}
.ls1{letter-spacing:0.240000px;}
.ls11{letter-spacing:0.255000px;}
.ls42{letter-spacing:0.264000px;}
.ls40{letter-spacing:0.270000px;}
.ls4a{letter-spacing:0.288000px;}
.ls2{letter-spacing:0.300000px;}
.lsb{letter-spacing:0.306000px;}
.ls4b{letter-spacing:0.357000px;}
.ls30{letter-spacing:0.360000px;}
.ls31{letter-spacing:0.390000px;}
.ls5f{letter-spacing:0.408000px;}
.ls21{letter-spacing:0.420000px;}
.ls5{letter-spacing:0.450000px;}
.ls44{letter-spacing:0.459000px;}
.ls22{letter-spacing:0.480000px;}
.ls33{letter-spacing:0.510000px;}
.ls1e{letter-spacing:0.540000px;}
.ls45{letter-spacing:0.561000px;}
.ls2e{letter-spacing:0.600000px;}
.ls5c{letter-spacing:0.612000px;}
.lsd{letter-spacing:0.660000px;}
.ls60{letter-spacing:0.663000px;}
.ls4c{letter-spacing:0.714000px;}
.ls20{letter-spacing:0.720000px;}
.ls47{letter-spacing:0.739500px;}
.ls1f{letter-spacing:0.780000px;}
.ls4d{letter-spacing:0.790500px;}
.ls5a{letter-spacing:0.816000px;}
.lsc{letter-spacing:0.840000px;}
.ls4e{letter-spacing:0.841500px;}
.ls50{letter-spacing:0.867000px;}
.ls3e{letter-spacing:0.870000px;}
.ls9{letter-spacing:0.900000px;}
.ls56{letter-spacing:0.918000px;}
.ls7{letter-spacing:0.960000px;}
.ls55{letter-spacing:0.969000px;}
.ls2f{letter-spacing:1.020000px;}
.ls59{letter-spacing:1.071000px;}
.ls1d{letter-spacing:1.080000px;}
.lse{letter-spacing:1.110000px;}
.ls54{letter-spacing:1.122000px;}
.ls6{letter-spacing:1.140000px;}
.ls5e{letter-spacing:1.173000px;}
.ls58{letter-spacing:1.198500px;}
.ls2d{letter-spacing:1.200000px;}
.ls52{letter-spacing:1.224000px;}
.ls39{letter-spacing:1.260000px;}
.ls65{letter-spacing:1.275000px;}
.ls8{letter-spacing:1.320000px;}
.ls51{letter-spacing:1.326000px;}
.ls32{letter-spacing:1.380000px;}
.ls57{letter-spacing:1.428000px;}
.ls37{letter-spacing:1.440000px;}
.lsa{letter-spacing:1.446000px;}
.ls53{letter-spacing:1.453500px;}
.ls3f{letter-spacing:1.470000px;}
.ls38{letter-spacing:1.500000px;}
.ls5b{letter-spacing:1.530000px;}
.ls3d{letter-spacing:1.560000px;}
.ls34{letter-spacing:1.860000px;}
.ls0{letter-spacing:3.990000px;}
.ls29{letter-spacing:12.081003px;}
.ls24{letter-spacing:12.119372px;}
.lsf{letter-spacing:31.110000px;}
.ls35{letter-spacing:140.097000px;}
.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;}
}
.ws25{word-spacing:-24.018753px;}
.wsb{word-spacing:-16.140000px;}
.wsa{word-spacing:-15.000000px;}
.ws72{word-spacing:-14.832000px;}
.ws9{word-spacing:-14.544000px;}
.ws6f{word-spacing:-13.005000px;}
.wsc{word-spacing:-12.750000px;}
.ws2{word-spacing:-12.420000px;}
.ws4{word-spacing:-12.360000px;}
.ws27{word-spacing:-12.081003px;}
.ws28{word-spacing:-12.033252px;}
.ws24{word-spacing:-11.985501px;}
.ws26{word-spacing:-11.937750px;}
.ws6{word-spacing:-11.760000px;}
.ws8{word-spacing:-11.520000px;}
.ws5{word-spacing:-11.340000px;}
.ws7{word-spacing:-10.380000px;}
.ws1{word-spacing:-9.996000px;}
.ws0{word-spacing:-9.408000px;}
.wsd{word-spacing:-8.925000px;}
.ws3{word-spacing:-8.694000px;}
.ws3a{word-spacing:-7.500000px;}
.ws4a{word-spacing:-6.375000px;}
.wse{word-spacing:-1.890000px;}
.ws37{word-spacing:-1.560000px;}
.ws11{word-spacing:-1.500000px;}
.ws33{word-spacing:-1.440000px;}
.ws6d{word-spacing:-1.326000px;}
.ws57{word-spacing:-1.320000px;}
.ws6e{word-spacing:-1.275000px;}
.ws9e{word-spacing:-1.224000px;}
.ws16{word-spacing:-1.200000px;}
.ws15{word-spacing:-1.140000px;}
.ws63{word-spacing:-1.080000px;}
.ws61{word-spacing:-1.020000px;}
.ws5a{word-spacing:-0.960000px;}
.ws3e{word-spacing:-0.900000px;}
.ws62{word-spacing:-0.840000px;}
.ws2b{word-spacing:-0.780000px;}
.ws14{word-spacing:-0.720000px;}
.ws80{word-spacing:-0.714000px;}
.ws9a{word-spacing:-0.663000px;}
.ws21{word-spacing:-0.660000px;}
.ws23{word-spacing:-0.612000px;}
.ws39{word-spacing:-0.600000px;}
.ws10{word-spacing:-0.570000px;}
.ws2d{word-spacing:-0.540000px;}
.ws94{word-spacing:-0.510000px;}
.ws64{word-spacing:-0.480000px;}
.ws9b{word-spacing:-0.459000px;}
.ws58{word-spacing:-0.420000px;}
.ws1d{word-spacing:-0.300000px;}
.ws77{word-spacing:-0.255000px;}
.ws5b{word-spacing:-0.180000px;}
.ws13{word-spacing:-0.120000px;}
.ws93{word-spacing:-0.102000px;}
.ws29{word-spacing:-0.095502px;}
.ws1f{word-spacing:-0.060000px;}
.ws3c{word-spacing:-0.047751px;}
.wsf{word-spacing:0.000000px;}
.ws40{word-spacing:0.060000px;}
.ws34{word-spacing:0.120000px;}
.ws75{word-spacing:0.153000px;}
.ws5c{word-spacing:0.180000px;}
.ws8f{word-spacing:0.204000px;}
.ws46{word-spacing:0.240000px;}
.ws89{word-spacing:0.255000px;}
.ws45{word-spacing:0.300000px;}
.ws42{word-spacing:0.360000px;}
.ws54{word-spacing:0.420000px;}
.ws70{word-spacing:0.459000px;}
.ws88{word-spacing:0.510000px;}
.ws1c{word-spacing:0.540000px;}
.ws76{word-spacing:0.561000px;}
.ws49{word-spacing:0.600000px;}
.ws53{word-spacing:0.660000px;}
.ws95{word-spacing:0.663000px;}
.ws52{word-spacing:0.720000px;}
.ws6c{word-spacing:0.816000px;}
.ws38{word-spacing:0.840000px;}
.ws3b{word-spacing:0.900000px;}
.ws6a{word-spacing:0.969000px;}
.ws79{word-spacing:1.071000px;}
.ws18{word-spacing:1.200000px;}
.ws6b{word-spacing:1.275000px;}
.ws96{word-spacing:1.377000px;}
.ws12{word-spacing:1.380000px;}
.ws44{word-spacing:1.440000px;}
.ws17{word-spacing:1.500000px;}
.ws8e{word-spacing:1.530000px;}
.ws2f{word-spacing:1.560000px;}
.ws8a{word-spacing:1.581000px;}
.ws35{word-spacing:1.620000px;}
.ws66{word-spacing:1.680000px;}
.ws9c{word-spacing:1.683000px;}
.ws71{word-spacing:1.734000px;}
.ws4e{word-spacing:1.740000px;}
.ws73{word-spacing:1.785000px;}
.ws2a{word-spacing:1.800000px;}
.ws20{word-spacing:1.860000px;}
.ws50{word-spacing:2.040000px;}
.ws90{word-spacing:2.091000px;}
.ws32{word-spacing:2.100000px;}
.ws9d{word-spacing:2.142000px;}
.ws1e{word-spacing:2.160000px;}
.ws8c{word-spacing:2.244000px;}
.ws30{word-spacing:2.280000px;}
.ws74{word-spacing:2.295000px;}
.ws1b{word-spacing:2.340000px;}
.ws87{word-spacing:2.397000px;}
.ws55{word-spacing:2.400000px;}
.ws2e{word-spacing:2.460000px;}
.ws85{word-spacing:2.499000px;}
.ws65{word-spacing:2.520000px;}
.ws78{word-spacing:2.550000px;}
.ws48{word-spacing:2.580000px;}
.ws84{word-spacing:2.601000px;}
.ws1a{word-spacing:2.640000px;}
.ws31{word-spacing:2.700000px;}
.ws92{word-spacing:2.703000px;}
.ws82{word-spacing:2.754000px;}
.ws60{word-spacing:2.880000px;}
.ws2c{word-spacing:3.000000px;}
.ws81{word-spacing:3.009000px;}
.ws4b{word-spacing:3.060000px;}
.ws99{word-spacing:3.213000px;}
.ws22{word-spacing:3.300000px;}
.ws97{word-spacing:3.315000px;}
.ws67{word-spacing:3.360000px;}
.ws19{word-spacing:3.420000px;}
.ws68{word-spacing:3.468000px;}
.ws8b{word-spacing:3.519000px;}
.ws7f{word-spacing:3.672000px;}
.ws3f{word-spacing:3.780000px;}
.ws91{word-spacing:3.825000px;}
.ws98{word-spacing:3.876000px;}
.ws4d{word-spacing:3.960000px;}
.ws86{word-spacing:4.080000px;}
.ws7d{word-spacing:4.182000px;}
.ws5f{word-spacing:4.200000px;}
.ws7c{word-spacing:4.284000px;}
.ws7b{word-spacing:4.335000px;}
.ws56{word-spacing:4.500000px;}
.ws69{word-spacing:4.539000px;}
.ws36{word-spacing:4.560000px;}
.ws43{word-spacing:4.620000px;}
.ws41{word-spacing:4.740000px;}
.ws7a{word-spacing:4.743000px;}
.ws51{word-spacing:4.800000px;}
.ws5e{word-spacing:5.100000px;}
.ws4c{word-spacing:5.160000px;}
.ws83{word-spacing:5.253000px;}
.ws4f{word-spacing:5.340000px;}
.ws7e{word-spacing:5.355000px;}
.ws5d{word-spacing:5.520000px;}
.ws8d{word-spacing:5.814000px;}
.ws47{word-spacing:7.080000px;}
.ws59{word-spacing:9.639000px;}
.ws3d{word-spacing:38.300991px;}
._10{margin-left:-2959.377061px;}
._8{margin-left:-72.675000px;}
._6{margin-left:-16.575000px;}
._3d{margin-left:-14.790000px;}
._3c{margin-left:-13.515000px;}
._e{margin-left:-12.128754px;}
._12{margin-left:-10.608618px;}
._b{margin-left:-8.340000px;}
._a{margin-left:-7.020034px;}
._d{margin-left:-5.754000px;}
._33{margin-left:-4.530000px;}
._1{margin-left:-3.468000px;}
._0{margin-left:-1.632000px;}
._2{width:1.122000px;}
._3{width:2.572800px;}
._32{width:3.780000px;}
._c{width:5.645954px;}
._34{width:7.242000px;}
._11{width:10.218000px;}
._5{width:12.600000px;}
._f{width:15.606000px;}
._4{width:16.872000px;}
._3a{width:19.686000px;}
._3b{width:20.910000px;}
._39{width:22.383000px;}
._38{width:24.087046px;}
._36{width:25.449000px;}
._35{width:26.673000px;}
._37{width:29.784000px;}
._19{width:50.744994px;}
._7{width:54.621000px;}
._31{width:167.127000px;}
._2b{width:186.762000px;}
._2a{width:194.157000px;}
._15{width:212.210977px;}
._14{width:219.657000px;}
._1f{width:246.738000px;}
._18{width:264.791977px;}
._17{width:272.238000px;}
._28{width:297.738000px;}
._1c{width:315.791977px;}
._20{width:322.269000px;}
._23{width:365.516991px;}
._22{width:430.287000px;}
._2d{width:446.199000px;}
._1e{width:504.084000px;}
._2e{width:520.812000px;}
._21{width:599.250000px;}
._2f{width:616.590000px;}
._29{width:638.724000px;}
._26{width:676.719000px;}
._1d{width:686.613000px;}
._27{width:722.007000px;}
._2c{width:780.759000px;}
._1a{width:789.232798px;}
._13{width:817.224000px;}
._25{width:821.304000px;}
._24{width:833.391000px;}
._1b{width:859.860000px;}
._16{width:872.865000px;}
._30{width:896.682000px;}
._9{width:1994.916000px;}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(255,255,255);}
.fsb{font-size:30.529200px;}
.fsc{font-size:35.699999px;}
.fs8{font-size:35.700000px;}
.fs6{font-size:42.000000px;}
.fsa{font-size:47.751000px;}
.fs0{font-size:48.000000px;}
.fs2{font-size:51.000000px;}
.fs3{font-size:57.000000px;}
.fs5{font-size:60.000000px;}
.fs9{font-size:66.000000px;}
.fs7{font-size:72.000000px;}
.fs1{font-size:90.000000px;}
.fs4{font-size:96.000000px;}
.y0{bottom:0.000000px;}
.y2{bottom:68.547300px;}
.y1{bottom:68.829000px;}
.y106{bottom:112.721558px;}
.y37{bottom:112.938300px;}
.ydd{bottom:113.575805px;}
.y6d{bottom:114.063297px;}
.ycd{bottom:114.132294px;}
.yf2{bottom:114.735260px;}
.y87{bottom:119.213253px;}
.y2e{bottom:122.461350px;}
.y146{bottom:124.155325px;}
.y105{bottom:127.715558px;}
.ydc{bottom:128.569805px;}
.ycc{bottom:132.882294px;}
.y36{bottom:133.032300px;}
.yf1{bottom:133.485260px;}
.y86{bottom:138.465145px;}
.y145{bottom:139.149325px;}
.y2d{bottom:141.211350px;}
.y104{bottom:142.709558px;}
.ycb{bottom:151.632294px;}
.yf0{bottom:152.235260px;}
.y85{bottom:152.615120px;}
.y144{bottom:154.143325px;}
.y35{bottom:155.579550px;}
.y103{bottom:157.703558px;}
.y66{bottom:159.892599px;}
.y2c{bottom:159.961350px;}
.y185{bottom:161.971804px;}
.y143{bottom:169.137325px;}
.yca{bottom:170.382294px;}
.yef{bottom:170.985260px;}
.y84{bottom:171.867620px;}
.y102{bottom:172.697558px;}
.y34{bottom:173.032800px;}
.y65{bottom:175.674305px;}
.y184{bottom:176.965804px;}
.y2b{bottom:178.711350px;}
.y142{bottom:184.131325px;}
.y101{bottom:187.691558px;}
.yc9{bottom:189.132294px;}
.yee{bottom:189.735260px;}
.y183{bottom:191.959804px;}
.y33{bottom:193.126800px;}
.y2a{bottom:197.461350px;}
.y141{bottom:199.125325px;}
.ya4{bottom:199.768054px;}
.y182{bottom:206.953804px;}
.yc8{bottom:207.882294px;}
.yed{bottom:208.485260px;}
.y32{bottom:210.580050px;}
.y140{bottom:214.119325px;}
.y29{bottom:216.211350px;}
.ya3{bottom:218.476045px;}
.y181{bottom:221.947804px;}
.y6c{bottom:226.359612px;}
.yc7{bottom:226.632294px;}
.yec{bottom:227.235260px;}
.y100{bottom:228.886808px;}
.y13f{bottom:229.113325px;}
.y31{bottom:230.674050px;}
.y28{bottom:234.961350px;}
.y180{bottom:236.941804px;}
.ya2{bottom:237.193045px;}
.y6b{bottom:242.210930px;}
.y13e{bottom:244.107325px;}
.yc6{bottom:245.382294px;}
.yeb{bottom:245.985260px;}
.y17f{bottom:251.935804px;}
.y27{bottom:253.711350px;}
.y30{bottom:255.674550px;}
.ya1{bottom:255.910045px;}
.yff{bottom:258.849308px;}
.y13d{bottom:259.101325px;}
.yc5{bottom:264.132294px;}
.yea{bottom:264.735260px;}
.y17e{bottom:266.929804px;}
.y6a{bottom:268.896098px;}
.y2f{bottom:270.668550px;}
.y26{bottom:272.461350px;}
.yfe{bottom:273.843308px;}
.y13c{bottom:274.095325px;}
.ya0{bottom:274.627045px;}
.y17d{bottom:281.923804px;}
.yc4{bottom:282.882294px;}
.ye9{bottom:283.485260px;}
.y69{bottom:284.677803px;}
.yfd{bottom:288.837308px;}
.y13b{bottom:289.089325px;}
.y25{bottom:291.211350px;}
.y9f{bottom:293.344045px;}
.y17c{bottom:296.917804px;}
.yc3{bottom:301.632294px;}
.ye8{bottom:302.235260px;}
.y13a{bottom:304.083325px;}
.y24{bottom:309.961350px;}
.y17b{bottom:311.911804px;}
.y9e{bottom:312.061045px;}
.yfc{bottom:318.799808px;}
.y139{bottom:319.077325px;}
.yc2{bottom:320.382294px;}
.ye7{bottom:320.985260px;}
.y17a{bottom:326.905804px;}
.y22{bottom:328.711350px;}
.y9d{bottom:330.778045px;}
.yfb{bottom:333.793808px;}
.y64{bottom:333.799049px;}
.y138{bottom:334.071325px;}
.y68{bottom:334.254593px;}
.ye6{bottom:339.735260px;}
.y179{bottom:341.899804px;}
.y21{bottom:347.461350px;}
.y137{bottom:349.065325px;}
.y9c{bottom:349.495045px;}
.y178{bottom:356.893804px;}
.yc1{bottom:357.882294px;}
.ye5{bottom:358.485260px;}
.y136{bottom:364.059325px;}
.y20{bottom:366.211350px;}
.yfa{bottom:367.543808px;}
.y9b{bottom:368.212045px;}
.y177{bottom:371.887804px;}
.ye4{bottom:377.235260px;}
.y135{bottom:379.053325px;}
.y67{bottom:380.441093px;}
.y63{bottom:380.767799px;}
.y23{bottom:384.961350px;}
.y176{bottom:386.881804px;}
.y9a{bottom:386.929045px;}
.y134{bottom:394.047325px;}
.ye3{bottom:395.985260px;}
.y175{bottom:401.875804px;}
.y1f{bottom:403.711350px;}
.yc0{bottom:405.058777px;}
.yf9{bottom:405.073792px;}
.y99{bottom:405.646045px;}
.y133{bottom:409.041325px;}
.ye2{bottom:414.735260px;}
.y174{bottom:416.869804px;}
.ybf{bottom:423.808777px;}
.yf8{bottom:423.823792px;}
.y132{bottom:424.035325px;}
.y98{bottom:424.363045px;}
.y62{bottom:430.540329px;}
.y173{bottom:431.863804px;}
.ye1{bottom:433.485260px;}
.y131{bottom:439.029325px;}
.ybe{bottom:442.558777px;}
.yf7{bottom:442.573792px;}
.y97{bottom:443.080045px;}
.y172{bottom:446.857804px;}
.ye0{bottom:452.235260px;}
.y130{bottom:454.023325px;}
.y1e{bottom:459.961350px;}
.ybd{bottom:461.308777px;}
.yf6{bottom:461.323792px;}
.y96{bottom:461.797045px;}
.y171{bottom:461.851804px;}
.y12f{bottom:469.017325px;}
.y61{bottom:469.665298px;}
.y57{bottom:469.665344px;}
.ydf{bottom:470.985260px;}
.y170{bottom:476.845804px;}
.ybc{bottom:480.058777px;}
.yf5{bottom:480.073792px;}
.y95{bottom:480.514045px;}
.y12e{bottom:484.011325px;}
.y60{bottom:488.415298px;}
.y56{bottom:488.415344px;}
.yde{bottom:489.735260px;}
.y16f{bottom:491.839804px;}
.y1d{bottom:497.461350px;}
.ybb{bottom:498.808777px;}
.yf4{bottom:498.823792px;}
.y12d{bottom:499.005325px;}
.y94{bottom:499.231045px;}
.y16e{bottom:506.833804px;}
.y5f{bottom:507.165298px;}
.y55{bottom:507.165344px;}
.ydb{bottom:508.485260px;}
.y12c{bottom:513.999325px;}
.y1c{bottom:516.211350px;}
.yba{bottom:517.558777px;}
.y93{bottom:517.948045px;}
.y16d{bottom:521.827804px;}
.y5e{bottom:525.915298px;}
.y54{bottom:525.915344px;}
.yda{bottom:527.235260px;}
.y12b{bottom:528.993325px;}
.y1b{bottom:534.961350px;}
.yb9{bottom:536.308777px;}
.yf3{bottom:536.323792px;}
.y92{bottom:536.665045px;}
.y16c{bottom:536.821804px;}
.y12a{bottom:543.987325px;}
.y5d{bottom:544.665298px;}
.y53{bottom:544.665344px;}
.yd9{bottom:545.985260px;}
.y16b{bottom:551.815804px;}
.y1a{bottom:553.711350px;}
.yb8{bottom:555.058777px;}
.y91{bottom:555.382045px;}
.y129{bottom:558.981325px;}
.y5c{bottom:563.415298px;}
.y52{bottom:563.415344px;}
.yd8{bottom:564.735260px;}
.y16a{bottom:566.809804px;}
.y19{bottom:572.461350px;}
.yb7{bottom:573.808777px;}
.y128{bottom:573.975325px;}
.y90{bottom:574.095322px;}
.y169{bottom:581.803804px;}
.y51{bottom:582.165344px;}
.yd7{bottom:583.485260px;}
.y127{bottom:588.969325px;}
.y18{bottom:591.211350px;}
.yb6{bottom:592.558777px;}
.y8f{bottom:592.812322px;}
.y168{bottom:596.797804px;}
.y5b{bottom:600.915298px;}
.y50{bottom:600.915344px;}
.yd6{bottom:602.235260px;}
.y126{bottom:603.963325px;}
.y17{bottom:609.961350px;}
.yb5{bottom:611.308777px;}
.y8e{bottom:611.529322px;}
.y167{bottom:611.791804px;}
.y125{bottom:618.957325px;}
.y4f{bottom:619.665344px;}
.yd5{bottom:620.985260px;}
.y166{bottom:626.785804px;}
.y16{bottom:628.711350px;}
.yb4{bottom:630.058777px;}
.y124{bottom:633.951325px;}
.y4e{bottom:638.415344px;}
.y8d{bottom:639.617572px;}
.y8a{bottom:639.623572px;}
.yd4{bottom:639.735260px;}
.y165{bottom:641.779804px;}
.y15{bottom:647.461350px;}
.yb3{bottom:648.808777px;}
.y123{bottom:648.945325px;}
.y89{bottom:654.617572px;}
.y8c{bottom:654.630322px;}
.y164{bottom:656.773804px;}
.y4d{bottom:657.165344px;}
.yd3{bottom:658.485260px;}
.y122{bottom:663.939325px;}
.y14{bottom:666.211350px;}
.yb2{bottom:667.558777px;}
.y88{bottom:669.611572px;}
.y8b{bottom:669.624322px;}
.y163{bottom:671.767804px;}
.y4c{bottom:675.915344px;}
.yd2{bottom:677.235260px;}
.y121{bottom:678.933325px;}
.y13{bottom:684.961350px;}
.yb1{bottom:686.308777px;}
.y162{bottom:686.761804px;}
.y120{bottom:693.927325px;}
.y4b{bottom:694.665344px;}
.y83{bottom:695.102097px;}
.yd1{bottom:695.985260px;}
.y161{bottom:701.755804px;}
.y12{bottom:703.711350px;}
.yb0{bottom:705.058777px;}
.y11f{bottom:708.921325px;}
.y4a{bottom:713.415344px;}
.yd0{bottom:714.735260px;}
.y160{bottom:716.749804px;}
.y11{bottom:722.461350px;}
.yaf{bottom:723.808777px;}
.y11e{bottom:723.915325px;}
.y15f{bottom:731.743804px;}
.y49{bottom:732.165344px;}
.y7f{bottom:733.485260px;}
.y11d{bottom:738.909325px;}
.y10{bottom:741.211350px;}
.yae{bottom:742.558777px;}
.y15e{bottom:746.737804px;}
.y48{bottom:750.915344px;}
.y7e{bottom:752.235260px;}
.y11c{bottom:753.903325px;}
.yf{bottom:759.961350px;}
.yad{bottom:761.308777px;}
.y15d{bottom:761.731804px;}
.y11b{bottom:768.897325px;}
.y47{bottom:769.665344px;}
.y7d{bottom:770.985260px;}
.y15c{bottom:776.725804px;}
.ye{bottom:778.711350px;}
.yac{bottom:780.058777px;}
.y11a{bottom:783.891325px;}
.y46{bottom:788.415344px;}
.y7c{bottom:789.735260px;}
.y15b{bottom:791.719804px;}
.yd{bottom:797.461350px;}
.yab{bottom:798.808777px;}
.y119{bottom:798.885325px;}
.y15a{bottom:806.713804px;}
.y45{bottom:807.165344px;}
.y82{bottom:808.485260px;}
.y118{bottom:813.879325px;}
.yc{bottom:816.211350px;}
.yaa{bottom:817.558777px;}
.y159{bottom:821.707804px;}
.y44{bottom:825.915344px;}
.y7b{bottom:827.235260px;}
.y117{bottom:828.873325px;}
.yb{bottom:834.961350px;}
.ya9{bottom:836.308777px;}
.y158{bottom:836.701804px;}
.y116{bottom:843.867325px;}
.y43{bottom:844.665344px;}
.y81{bottom:845.985260px;}
.y157{bottom:851.695804px;}
.ya8{bottom:855.058777px;}
.y115{bottom:858.861325px;}
.y5a{bottom:863.415344px;}
.y80{bottom:864.735260px;}
.y156{bottom:866.689804px;}
.ya7{bottom:873.808777px;}
.y114{bottom:873.855325px;}
.ya{bottom:879.144150px;}
.y155{bottom:881.683804px;}
.y42{bottom:882.165344px;}
.y7a{bottom:883.485260px;}
.y113{bottom:888.849325px;}
.ya6{bottom:892.558777px;}
.y9{bottom:894.138150px;}
.y154{bottom:896.677804px;}
.y59{bottom:900.915344px;}
.y79{bottom:902.235260px;}
.y112{bottom:903.843325px;}
.y153{bottom:911.671804px;}
.y111{bottom:918.837325px;}
.y58{bottom:919.665344px;}
.y78{bottom:920.985260px;}
.y152{bottom:926.665804px;}
.ya5{bottom:930.058777px;}
.y110{bottom:933.831325px;}
.y8{bottom:936.738150px;}
.y41{bottom:938.415344px;}
.y77{bottom:939.735260px;}
.y151{bottom:941.659804px;}
.y10f{bottom:948.825325px;}
.y150{bottom:956.653804px;}
.y40{bottom:957.165344px;}
.y76{bottom:958.485260px;}
.y10e{bottom:963.819325px;}
.y14f{bottom:971.647804px;}
.y3f{bottom:975.915344px;}
.y75{bottom:977.235260px;}
.y10d{bottom:978.813325px;}
.y7{bottom:981.424650px;}
.y14e{bottom:986.641804px;}
.y10c{bottom:993.807325px;}
.y3e{bottom:994.665344px;}
.y74{bottom:995.985260px;}
.y14d{bottom:1001.635804px;}
.y6{bottom:1008.424650px;}
.y10b{bottom:1008.801325px;}
.y3d{bottom:1013.415344px;}
.y73{bottom:1014.735260px;}
.y14c{bottom:1016.629804px;}
.y10a{bottom:1023.795325px;}
.y14b{bottom:1031.623804px;}
.y3c{bottom:1032.165344px;}
.y72{bottom:1033.485260px;}
.y109{bottom:1038.789325px;}
.y14a{bottom:1046.617804px;}
.y3b{bottom:1050.915344px;}
.y71{bottom:1052.235260px;}
.y108{bottom:1053.783325px;}
.y149{bottom:1061.611804px;}
.y3a{bottom:1069.665344px;}
.ycf{bottom:1070.982294px;}
.y70{bottom:1070.985260px;}
.y5{bottom:1076.132100px;}
.y148{bottom:1076.605804px;}
.y107{bottom:1087.533325px;}
.y39{bottom:1088.415344px;}
.yce{bottom:1089.732294px;}
.y6f{bottom:1089.735260px;}
.y147{bottom:1091.599804px;}
.y4{bottom:1109.586600px;}
.y3{bottom:1126.582350px;}
.y38{bottom:1127.482361px;}
.y6e{bottom:1127.482544px;}
.he{height:25.204200px;}
.h12{height:33.186945px;}
.hd{height:36.006000px;}
.hc{height:36.855469px;}
.h2{height:42.048000px;}
.ha{height:42.360000px;}
.h13{height:42.854565px;}
.h14{height:42.879262px;}
.h4{height:44.676000px;}
.h17{height:45.529163px;}
.h19{height:45.619053px;}
.h1a{height:45.946199px;}
.h15{height:49.113000px;}
.h16{height:52.173000px;}
.h18{height:53.805000px;}
.h3{height:54.862258px;}
.h5{height:55.404000px;}
.h9{height:57.780000px;}
.h8{height:59.340000px;}
.h10{height:61.380000px;}
.hf{height:63.300000px;}
.h11{height:64.680000px;}
.h7{height:64.824000px;}
.hb{height:71.208000px;}
.h6{height:92.448000px;}
.h0{height:1186.299000px;}
.h1{height:1186.500000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x3{left:76.535400px;}
.x8{left:78.746400px;}
.x15{left:81.035828px;}
.x4{left:85.181850px;}
.x9{left:93.545406px;}
.x7{left:97.789650px;}
.x16{left:102.048152px;}
.xc{left:180.456448px;}
.xa{left:274.783493px;}
.xb{left:275.892448px;}
.x10{left:340.262558px;}
.xd{left:383.265450px;}
.x5{left:459.200400px;}
.x11{left:464.587808px;}
.x6{left:476.210400px;}
.x17{left:484.739403px;}
.xe{left:515.230957px;}
.x12{left:586.987808px;}
.x13{left:628.438058px;}
.x14{left:726.192306px;}
.x1{left:728.220600px;}
.x2{left:755.489850px;}
.xf{left:798.209564px;}
@media print{
.v2{vertical-align:-18.133333pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:18.066634pt;}
.v3{vertical-align:19.232685pt;}
.v1{vertical-align:21.333333pt;}
.ls16{letter-spacing:-1.066667pt;}
.ls15{letter-spacing:-1.013333pt;}
.ls19{letter-spacing:-0.800000pt;}
.ls27{letter-spacing:-0.693333pt;}
.ls28{letter-spacing:-0.640000pt;}
.ls26{letter-spacing:-0.586667pt;}
.ls18{letter-spacing:-0.533333pt;}
.ls17{letter-spacing:-0.426667pt;}
.ls3c{letter-spacing:-0.373333pt;}
.ls49{letter-spacing:-0.362667pt;}
.ls25{letter-spacing:-0.320000pt;}
.ls67{letter-spacing:-0.317333pt;}
.ls48{letter-spacing:-0.272000pt;}
.ls1b{letter-spacing:-0.266667pt;}
.ls64{letter-spacing:-0.226667pt;}
.ls14{letter-spacing:-0.213333pt;}
.ls66{letter-spacing:-0.181333pt;}
.ls13{letter-spacing:-0.160000pt;}
.ls63{letter-spacing:-0.136000pt;}
.ls1c{letter-spacing:-0.106667pt;}
.ls1a{letter-spacing:-0.053333pt;}
.ls62{letter-spacing:-0.045333pt;}
.ls2b{letter-spacing:-0.042445pt;}
.ls12{letter-spacing:0.000000pt;}
.ls36{letter-spacing:0.000033pt;}
.ls23{letter-spacing:0.042445pt;}
.ls4f{letter-spacing:0.045333pt;}
.ls4{letter-spacing:0.053333pt;}
.ls2c{letter-spacing:0.084891pt;}
.ls46{letter-spacing:0.090667pt;}
.ls3a{letter-spacing:0.106667pt;}
.ls2a{letter-spacing:0.127336pt;}
.ls41{letter-spacing:0.133333pt;}
.ls5d{letter-spacing:0.136000pt;}
.ls10{letter-spacing:0.158933pt;}
.ls3{letter-spacing:0.160000pt;}
.ls43{letter-spacing:0.181333pt;}
.ls3b{letter-spacing:0.186667pt;}
.ls61{letter-spacing:0.204000pt;}
.ls1{letter-spacing:0.213333pt;}
.ls11{letter-spacing:0.226667pt;}
.ls42{letter-spacing:0.234667pt;}
.ls40{letter-spacing:0.240000pt;}
.ls4a{letter-spacing:0.256000pt;}
.ls2{letter-spacing:0.266667pt;}
.lsb{letter-spacing:0.272000pt;}
.ls4b{letter-spacing:0.317333pt;}
.ls30{letter-spacing:0.320000pt;}
.ls31{letter-spacing:0.346667pt;}
.ls5f{letter-spacing:0.362667pt;}
.ls21{letter-spacing:0.373333pt;}
.ls5{letter-spacing:0.400000pt;}
.ls44{letter-spacing:0.408000pt;}
.ls22{letter-spacing:0.426667pt;}
.ls33{letter-spacing:0.453333pt;}
.ls1e{letter-spacing:0.480000pt;}
.ls45{letter-spacing:0.498667pt;}
.ls2e{letter-spacing:0.533333pt;}
.ls5c{letter-spacing:0.544000pt;}
.lsd{letter-spacing:0.586667pt;}
.ls60{letter-spacing:0.589333pt;}
.ls4c{letter-spacing:0.634667pt;}
.ls20{letter-spacing:0.640000pt;}
.ls47{letter-spacing:0.657333pt;}
.ls1f{letter-spacing:0.693333pt;}
.ls4d{letter-spacing:0.702667pt;}
.ls5a{letter-spacing:0.725333pt;}
.lsc{letter-spacing:0.746667pt;}
.ls4e{letter-spacing:0.748000pt;}
.ls50{letter-spacing:0.770667pt;}
.ls3e{letter-spacing:0.773333pt;}
.ls9{letter-spacing:0.800000pt;}
.ls56{letter-spacing:0.816000pt;}
.ls7{letter-spacing:0.853333pt;}
.ls55{letter-spacing:0.861333pt;}
.ls2f{letter-spacing:0.906667pt;}
.ls59{letter-spacing:0.952000pt;}
.ls1d{letter-spacing:0.960000pt;}
.lse{letter-spacing:0.986667pt;}
.ls54{letter-spacing:0.997333pt;}
.ls6{letter-spacing:1.013333pt;}
.ls5e{letter-spacing:1.042667pt;}
.ls58{letter-spacing:1.065333pt;}
.ls2d{letter-spacing:1.066667pt;}
.ls52{letter-spacing:1.088000pt;}
.ls39{letter-spacing:1.120000pt;}
.ls65{letter-spacing:1.133333pt;}
.ls8{letter-spacing:1.173333pt;}
.ls51{letter-spacing:1.178667pt;}
.ls32{letter-spacing:1.226667pt;}
.ls57{letter-spacing:1.269333pt;}
.ls37{letter-spacing:1.280000pt;}
.lsa{letter-spacing:1.285333pt;}
.ls53{letter-spacing:1.292000pt;}
.ls3f{letter-spacing:1.306667pt;}
.ls38{letter-spacing:1.333333pt;}
.ls5b{letter-spacing:1.360000pt;}
.ls3d{letter-spacing:1.386667pt;}
.ls34{letter-spacing:1.653333pt;}
.ls0{letter-spacing:3.546667pt;}
.ls29{letter-spacing:10.738669pt;}
.ls24{letter-spacing:10.772775pt;}
.lsf{letter-spacing:27.653333pt;}
.ls35{letter-spacing:124.530667pt;}
.ws25{word-spacing:-21.350003pt;}
.wsb{word-spacing:-14.346667pt;}
.wsa{word-spacing:-13.333333pt;}
.ws72{word-spacing:-13.184000pt;}
.ws9{word-spacing:-12.928000pt;}
.ws6f{word-spacing:-11.560000pt;}
.wsc{word-spacing:-11.333333pt;}
.ws2{word-spacing:-11.040000pt;}
.ws4{word-spacing:-10.986667pt;}
.ws27{word-spacing:-10.738669pt;}
.ws28{word-spacing:-10.696224pt;}
.ws24{word-spacing:-10.653779pt;}
.ws26{word-spacing:-10.611333pt;}
.ws6{word-spacing:-10.453333pt;}
.ws8{word-spacing:-10.240000pt;}
.ws5{word-spacing:-10.080000pt;}
.ws7{word-spacing:-9.226667pt;}
.ws1{word-spacing:-8.885333pt;}
.ws0{word-spacing:-8.362667pt;}
.wsd{word-spacing:-7.933333pt;}
.ws3{word-spacing:-7.728000pt;}
.ws3a{word-spacing:-6.666667pt;}
.ws4a{word-spacing:-5.666667pt;}
.wse{word-spacing:-1.680000pt;}
.ws37{word-spacing:-1.386667pt;}
.ws11{word-spacing:-1.333333pt;}
.ws33{word-spacing:-1.280000pt;}
.ws6d{word-spacing:-1.178667pt;}
.ws57{word-spacing:-1.173333pt;}
.ws6e{word-spacing:-1.133333pt;}
.ws9e{word-spacing:-1.088000pt;}
.ws16{word-spacing:-1.066667pt;}
.ws15{word-spacing:-1.013333pt;}
.ws63{word-spacing:-0.960000pt;}
.ws61{word-spacing:-0.906667pt;}
.ws5a{word-spacing:-0.853333pt;}
.ws3e{word-spacing:-0.800000pt;}
.ws62{word-spacing:-0.746667pt;}
.ws2b{word-spacing:-0.693333pt;}
.ws14{word-spacing:-0.640000pt;}
.ws80{word-spacing:-0.634667pt;}
.ws9a{word-spacing:-0.589333pt;}
.ws21{word-spacing:-0.586667pt;}
.ws23{word-spacing:-0.544000pt;}
.ws39{word-spacing:-0.533333pt;}
.ws10{word-spacing:-0.506667pt;}
.ws2d{word-spacing:-0.480000pt;}
.ws94{word-spacing:-0.453333pt;}
.ws64{word-spacing:-0.426667pt;}
.ws9b{word-spacing:-0.408000pt;}
.ws58{word-spacing:-0.373333pt;}
.ws1d{word-spacing:-0.266667pt;}
.ws77{word-spacing:-0.226667pt;}
.ws5b{word-spacing:-0.160000pt;}
.ws13{word-spacing:-0.106667pt;}
.ws93{word-spacing:-0.090667pt;}
.ws29{word-spacing:-0.084891pt;}
.ws1f{word-spacing:-0.053333pt;}
.ws3c{word-spacing:-0.042445pt;}
.wsf{word-spacing:0.000000pt;}
.ws40{word-spacing:0.053333pt;}
.ws34{word-spacing:0.106667pt;}
.ws75{word-spacing:0.136000pt;}
.ws5c{word-spacing:0.160000pt;}
.ws8f{word-spacing:0.181333pt;}
.ws46{word-spacing:0.213333pt;}
.ws89{word-spacing:0.226667pt;}
.ws45{word-spacing:0.266667pt;}
.ws42{word-spacing:0.320000pt;}
.ws54{word-spacing:0.373333pt;}
.ws70{word-spacing:0.408000pt;}
.ws88{word-spacing:0.453333pt;}
.ws1c{word-spacing:0.480000pt;}
.ws76{word-spacing:0.498667pt;}
.ws49{word-spacing:0.533333pt;}
.ws53{word-spacing:0.586667pt;}
.ws95{word-spacing:0.589333pt;}
.ws52{word-spacing:0.640000pt;}
.ws6c{word-spacing:0.725333pt;}
.ws38{word-spacing:0.746667pt;}
.ws3b{word-spacing:0.800000pt;}
.ws6a{word-spacing:0.861333pt;}
.ws79{word-spacing:0.952000pt;}
.ws18{word-spacing:1.066667pt;}
.ws6b{word-spacing:1.133333pt;}
.ws96{word-spacing:1.224000pt;}
.ws12{word-spacing:1.226667pt;}
.ws44{word-spacing:1.280000pt;}
.ws17{word-spacing:1.333333pt;}
.ws8e{word-spacing:1.360000pt;}
.ws2f{word-spacing:1.386667pt;}
.ws8a{word-spacing:1.405333pt;}
.ws35{word-spacing:1.440000pt;}
.ws66{word-spacing:1.493333pt;}
.ws9c{word-spacing:1.496000pt;}
.ws71{word-spacing:1.541333pt;}
.ws4e{word-spacing:1.546667pt;}
.ws73{word-spacing:1.586667pt;}
.ws2a{word-spacing:1.600000pt;}
.ws20{word-spacing:1.653333pt;}
.ws50{word-spacing:1.813333pt;}
.ws90{word-spacing:1.858667pt;}
.ws32{word-spacing:1.866667pt;}
.ws9d{word-spacing:1.904000pt;}
.ws1e{word-spacing:1.920000pt;}
.ws8c{word-spacing:1.994667pt;}
.ws30{word-spacing:2.026667pt;}
.ws74{word-spacing:2.040000pt;}
.ws1b{word-spacing:2.080000pt;}
.ws87{word-spacing:2.130667pt;}
.ws55{word-spacing:2.133333pt;}
.ws2e{word-spacing:2.186667pt;}
.ws85{word-spacing:2.221333pt;}
.ws65{word-spacing:2.240000pt;}
.ws78{word-spacing:2.266667pt;}
.ws48{word-spacing:2.293333pt;}
.ws84{word-spacing:2.312000pt;}
.ws1a{word-spacing:2.346667pt;}
.ws31{word-spacing:2.400000pt;}
.ws92{word-spacing:2.402667pt;}
.ws82{word-spacing:2.448000pt;}
.ws60{word-spacing:2.560000pt;}
.ws2c{word-spacing:2.666667pt;}
.ws81{word-spacing:2.674667pt;}
.ws4b{word-spacing:2.720000pt;}
.ws99{word-spacing:2.856000pt;}
.ws22{word-spacing:2.933333pt;}
.ws97{word-spacing:2.946667pt;}
.ws67{word-spacing:2.986667pt;}
.ws19{word-spacing:3.040000pt;}
.ws68{word-spacing:3.082667pt;}
.ws8b{word-spacing:3.128000pt;}
.ws7f{word-spacing:3.264000pt;}
.ws3f{word-spacing:3.360000pt;}
.ws91{word-spacing:3.400000pt;}
.ws98{word-spacing:3.445333pt;}
.ws4d{word-spacing:3.520000pt;}
.ws86{word-spacing:3.626667pt;}
.ws7d{word-spacing:3.717333pt;}
.ws5f{word-spacing:3.733333pt;}
.ws7c{word-spacing:3.808000pt;}
.ws7b{word-spacing:3.853333pt;}
.ws56{word-spacing:4.000000pt;}
.ws69{word-spacing:4.034667pt;}
.ws36{word-spacing:4.053333pt;}
.ws43{word-spacing:4.106667pt;}
.ws41{word-spacing:4.213333pt;}
.ws7a{word-spacing:4.216000pt;}
.ws51{word-spacing:4.266667pt;}
.ws5e{word-spacing:4.533333pt;}
.ws4c{word-spacing:4.586667pt;}
.ws83{word-spacing:4.669333pt;}
.ws4f{word-spacing:4.746667pt;}
.ws7e{word-spacing:4.760000pt;}
.ws5d{word-spacing:4.906667pt;}
.ws8d{word-spacing:5.168000pt;}
.ws47{word-spacing:6.293333pt;}
.ws59{word-spacing:8.568000pt;}
.ws3d{word-spacing:34.045325pt;}
._10{margin-left:-2630.557387pt;}
._8{margin-left:-64.600000pt;}
._6{margin-left:-14.733333pt;}
._3d{margin-left:-13.146667pt;}
._3c{margin-left:-12.013333pt;}
._e{margin-left:-10.781115pt;}
._12{margin-left:-9.429883pt;}
._b{margin-left:-7.413333pt;}
._a{margin-left:-6.240030pt;}
._d{margin-left:-5.114666pt;}
._33{margin-left:-4.026667pt;}
._1{margin-left:-3.082667pt;}
._0{margin-left:-1.450667pt;}
._2{width:0.997333pt;}
._3{width:2.286933pt;}
._32{width:3.360000pt;}
._c{width:5.018626pt;}
._34{width:6.437333pt;}
._11{width:9.082667pt;}
._5{width:11.200000pt;}
._f{width:13.872000pt;}
._4{width:14.997333pt;}
._3a{width:17.498667pt;}
._3b{width:18.586667pt;}
._39{width:19.896000pt;}
._38{width:21.410708pt;}
._36{width:22.621333pt;}
._35{width:23.709333pt;}
._37{width:26.474667pt;}
._19{width:45.106661pt;}
._7{width:48.552000pt;}
._31{width:148.557333pt;}
._2b{width:166.010667pt;}
._2a{width:172.584000pt;}
._15{width:188.631979pt;}
._14{width:195.250667pt;}
._1f{width:219.322667pt;}
._18{width:235.370646pt;}
._17{width:241.989333pt;}
._28{width:264.656000pt;}
._1c{width:280.703979pt;}
._20{width:286.461333pt;}
._23{width:324.903992pt;}
._22{width:382.477333pt;}
._2d{width:396.621333pt;}
._1e{width:448.074667pt;}
._2e{width:462.944000pt;}
._21{width:532.666667pt;}
._2f{width:548.080000pt;}
._29{width:567.754667pt;}
._26{width:601.528000pt;}
._1d{width:610.322667pt;}
._27{width:641.784000pt;}
._2c{width:694.008000pt;}
._1a{width:701.540265pt;}
._13{width:726.421333pt;}
._25{width:730.048000pt;}
._24{width:740.792000pt;}
._1b{width:764.320000pt;}
._16{width:775.880000pt;}
._30{width:797.050667pt;}
._9{width:1773.258667pt;}
.fsb{font-size:27.137067pt;}
.fsc{font-size:31.733332pt;}
.fs8{font-size:31.733333pt;}
.fs6{font-size:37.333333pt;}
.fsa{font-size:42.445333pt;}
.fs0{font-size:42.666667pt;}
.fs2{font-size:45.333333pt;}
.fs3{font-size:50.666667pt;}
.fs5{font-size:53.333333pt;}
.fs9{font-size:58.666667pt;}
.fs7{font-size:64.000000pt;}
.fs1{font-size:80.000000pt;}
.fs4{font-size:85.333333pt;}
.y0{bottom:0.000000pt;}
.y2{bottom:60.930933pt;}
.y1{bottom:61.181333pt;}
.y106{bottom:100.196940pt;}
.y37{bottom:100.389600pt;}
.ydd{bottom:100.956271pt;}
.y6d{bottom:101.389598pt;}
.ycd{bottom:101.450928pt;}
.yf2{bottom:101.986898pt;}
.y87{bottom:105.967336pt;}
.y2e{bottom:108.854533pt;}
.y146{bottom:110.360289pt;}
.y105{bottom:113.524940pt;}
.ydc{bottom:114.284271pt;}
.ycc{bottom:118.117594pt;}
.y36{bottom:118.250933pt;}
.yf1{bottom:118.653564pt;}
.y86{bottom:123.080129pt;}
.y145{bottom:123.688289pt;}
.y2d{bottom:125.521200pt;}
.y104{bottom:126.852940pt;}
.ycb{bottom:134.784261pt;}
.yf0{bottom:135.320231pt;}
.y85{bottom:135.657884pt;}
.y144{bottom:137.016289pt;}
.y35{bottom:138.292933pt;}
.y103{bottom:140.180940pt;}
.y66{bottom:142.126755pt;}
.y2c{bottom:142.187867pt;}
.y185{bottom:143.974937pt;}
.y143{bottom:150.344289pt;}
.yca{bottom:151.450928pt;}
.yef{bottom:151.986898pt;}
.y84{bottom:152.771217pt;}
.y102{bottom:153.508940pt;}
.y34{bottom:153.806933pt;}
.y65{bottom:156.154938pt;}
.y184{bottom:157.302937pt;}
.y2b{bottom:158.854533pt;}
.y142{bottom:163.672289pt;}
.y101{bottom:166.836940pt;}
.yc9{bottom:168.117594pt;}
.yee{bottom:168.653564pt;}
.y183{bottom:170.630937pt;}
.y33{bottom:171.668267pt;}
.y2a{bottom:175.521200pt;}
.y141{bottom:177.000289pt;}
.ya4{bottom:177.571604pt;}
.y182{bottom:183.958937pt;}
.yc8{bottom:184.784261pt;}
.yed{bottom:185.320231pt;}
.y32{bottom:187.182267pt;}
.y140{bottom:190.328289pt;}
.y29{bottom:192.187867pt;}
.ya3{bottom:194.200929pt;}
.y181{bottom:197.286937pt;}
.y6c{bottom:201.208544pt;}
.yc7{bottom:201.450928pt;}
.yec{bottom:201.986898pt;}
.y100{bottom:203.454940pt;}
.y13f{bottom:203.656289pt;}
.y31{bottom:205.043600pt;}
.y28{bottom:208.854533pt;}
.y180{bottom:210.614937pt;}
.ya2{bottom:210.838262pt;}
.y6b{bottom:215.298604pt;}
.y13e{bottom:216.984289pt;}
.yc6{bottom:218.117594pt;}
.yeb{bottom:218.653564pt;}
.y17f{bottom:223.942937pt;}
.y27{bottom:225.521200pt;}
.y30{bottom:227.266267pt;}
.ya1{bottom:227.475595pt;}
.yff{bottom:230.088274pt;}
.y13d{bottom:230.312289pt;}
.yc5{bottom:234.784261pt;}
.yea{bottom:235.320231pt;}
.y17e{bottom:237.270937pt;}
.y6a{bottom:239.018753pt;}
.y2f{bottom:240.594267pt;}
.y26{bottom:242.187867pt;}
.yfe{bottom:243.416274pt;}
.y13c{bottom:243.640289pt;}
.ya0{bottom:244.112929pt;}
.y17d{bottom:250.598937pt;}
.yc4{bottom:251.450928pt;}
.ye9{bottom:251.986898pt;}
.y69{bottom:253.046936pt;}
.yfd{bottom:256.744274pt;}
.y13b{bottom:256.968289pt;}
.y25{bottom:258.854533pt;}
.y9f{bottom:260.750262pt;}
.y17c{bottom:263.926937pt;}
.yc3{bottom:268.117594pt;}
.ye8{bottom:268.653564pt;}
.y13a{bottom:270.296289pt;}
.y24{bottom:275.521200pt;}
.y17b{bottom:277.254937pt;}
.y9e{bottom:277.387595pt;}
.yfc{bottom:283.377607pt;}
.y139{bottom:283.624289pt;}
.yc2{bottom:284.784261pt;}
.ye7{bottom:285.320231pt;}
.y17a{bottom:290.582937pt;}
.y22{bottom:292.187867pt;}
.y9d{bottom:294.024929pt;}
.yfb{bottom:296.705607pt;}
.y64{bottom:296.710266pt;}
.y138{bottom:296.952289pt;}
.y68{bottom:297.115194pt;}
.ye6{bottom:301.986898pt;}
.y179{bottom:303.910937pt;}
.y21{bottom:308.854533pt;}
.y137{bottom:310.280289pt;}
.y9c{bottom:310.662262pt;}
.y178{bottom:317.238937pt;}
.yc1{bottom:318.117594pt;}
.ye5{bottom:318.653564pt;}
.y136{bottom:323.608289pt;}
.y20{bottom:325.521200pt;}
.yfa{bottom:326.705607pt;}
.y9b{bottom:327.299595pt;}
.y177{bottom:330.566937pt;}
.ye4{bottom:335.320231pt;}
.y135{bottom:336.936289pt;}
.y67{bottom:338.169861pt;}
.y63{bottom:338.460266pt;}
.y23{bottom:342.187867pt;}
.y176{bottom:343.894937pt;}
.y9a{bottom:343.936929pt;}
.y134{bottom:350.264289pt;}
.ye3{bottom:351.986898pt;}
.y175{bottom:357.222937pt;}
.y1f{bottom:358.854533pt;}
.yc0{bottom:360.052246pt;}
.yf9{bottom:360.065592pt;}
.y99{bottom:360.574262pt;}
.y133{bottom:363.592289pt;}
.ye2{bottom:368.653564pt;}
.y174{bottom:370.550937pt;}
.ybf{bottom:376.718913pt;}
.yf8{bottom:376.732259pt;}
.y132{bottom:376.920289pt;}
.y98{bottom:377.211595pt;}
.y62{bottom:382.702515pt;}
.y173{bottom:383.878937pt;}
.ye1{bottom:385.320231pt;}
.y131{bottom:390.248289pt;}
.ybe{bottom:393.385579pt;}
.yf7{bottom:393.398926pt;}
.y97{bottom:393.848929pt;}
.y172{bottom:397.206937pt;}
.ye0{bottom:401.986898pt;}
.y130{bottom:403.576289pt;}
.y1e{bottom:408.854533pt;}
.ybd{bottom:410.052246pt;}
.yf6{bottom:410.065592pt;}
.y96{bottom:410.486262pt;}
.y171{bottom:410.534937pt;}
.y12f{bottom:416.904289pt;}
.y61{bottom:417.480265pt;}
.y57{bottom:417.480306pt;}
.ydf{bottom:418.653564pt;}
.y170{bottom:423.862937pt;}
.ybc{bottom:426.718913pt;}
.yf5{bottom:426.732259pt;}
.y95{bottom:427.123595pt;}
.y12e{bottom:430.232289pt;}
.y60{bottom:434.146932pt;}
.y56{bottom:434.146973pt;}
.yde{bottom:435.320231pt;}
.y16f{bottom:437.190937pt;}
.y1d{bottom:442.187867pt;}
.ybb{bottom:443.385579pt;}
.yf4{bottom:443.398926pt;}
.y12d{bottom:443.560289pt;}
.y94{bottom:443.760929pt;}
.y16e{bottom:450.518937pt;}
.y5f{bottom:450.813599pt;}
.y55{bottom:450.813639pt;}
.ydb{bottom:451.986898pt;}
.y12c{bottom:456.888289pt;}
.y1c{bottom:458.854533pt;}
.yba{bottom:460.052246pt;}
.y93{bottom:460.398262pt;}
.y16d{bottom:463.846937pt;}
.y5e{bottom:467.480265pt;}
.y54{bottom:467.480306pt;}
.yda{bottom:468.653564pt;}
.y12b{bottom:470.216289pt;}
.y1b{bottom:475.521200pt;}
.yb9{bottom:476.718913pt;}
.yf3{bottom:476.732259pt;}
.y92{bottom:477.035595pt;}
.y16c{bottom:477.174937pt;}
.y12a{bottom:483.544289pt;}
.y5d{bottom:484.146932pt;}
.y53{bottom:484.146973pt;}
.yd9{bottom:485.320231pt;}
.y16b{bottom:490.502937pt;}
.y1a{bottom:492.187867pt;}
.yb8{bottom:493.385579pt;}
.y91{bottom:493.672929pt;}
.y129{bottom:496.872289pt;}
.y5c{bottom:500.813599pt;}
.y52{bottom:500.813639pt;}
.yd8{bottom:501.986898pt;}
.y16a{bottom:503.830937pt;}
.y19{bottom:508.854533pt;}
.yb7{bottom:510.052246pt;}
.y128{bottom:510.200289pt;}
.y90{bottom:510.306953pt;}
.y169{bottom:517.158937pt;}
.y51{bottom:517.480306pt;}
.yd7{bottom:518.653564pt;}
.y127{bottom:523.528289pt;}
.y18{bottom:525.521200pt;}
.yb6{bottom:526.718913pt;}
.y8f{bottom:526.944286pt;}
.y168{bottom:530.486937pt;}
.y5b{bottom:534.146932pt;}
.y50{bottom:534.146973pt;}
.yd6{bottom:535.320231pt;}
.y126{bottom:536.856289pt;}
.y17{bottom:542.187867pt;}
.yb5{bottom:543.385579pt;}
.y8e{bottom:543.581620pt;}
.y167{bottom:543.814937pt;}
.y125{bottom:550.184289pt;}
.y4f{bottom:550.813639pt;}
.yd5{bottom:551.986898pt;}
.y166{bottom:557.142937pt;}
.y16{bottom:558.854533pt;}
.yb4{bottom:560.052246pt;}
.y124{bottom:563.512289pt;}
.y4e{bottom:567.480306pt;}
.y8d{bottom:568.548953pt;}
.y8a{bottom:568.554286pt;}
.yd4{bottom:568.653564pt;}
.y165{bottom:570.470937pt;}
.y15{bottom:575.521200pt;}
.yb3{bottom:576.718913pt;}
.y123{bottom:576.840289pt;}
.y89{bottom:581.882286pt;}
.y8c{bottom:581.893620pt;}
.y164{bottom:583.798937pt;}
.y4d{bottom:584.146973pt;}
.yd3{bottom:585.320231pt;}
.y122{bottom:590.168289pt;}
.y14{bottom:592.187867pt;}
.yb2{bottom:593.385579pt;}
.y88{bottom:595.210286pt;}
.y8b{bottom:595.221620pt;}
.y163{bottom:597.126937pt;}
.y4c{bottom:600.813639pt;}
.yd2{bottom:601.986898pt;}
.y121{bottom:603.496289pt;}
.y13{bottom:608.854533pt;}
.yb1{bottom:610.052246pt;}
.y162{bottom:610.454937pt;}
.y120{bottom:616.824289pt;}
.y4b{bottom:617.480306pt;}
.y83{bottom:617.868530pt;}
.yd1{bottom:618.653564pt;}
.y161{bottom:623.782937pt;}
.y12{bottom:625.521200pt;}
.yb0{bottom:626.718913pt;}
.y11f{bottom:630.152289pt;}
.y4a{bottom:634.146973pt;}
.yd0{bottom:635.320231pt;}
.y160{bottom:637.110937pt;}
.y11{bottom:642.187867pt;}
.yaf{bottom:643.385579pt;}
.y11e{bottom:643.480289pt;}
.y15f{bottom:650.438937pt;}
.y49{bottom:650.813639pt;}
.y7f{bottom:651.986898pt;}
.y11d{bottom:656.808289pt;}
.y10{bottom:658.854533pt;}
.yae{bottom:660.052246pt;}
.y15e{bottom:663.766937pt;}
.y48{bottom:667.480306pt;}
.y7e{bottom:668.653564pt;}
.y11c{bottom:670.136289pt;}
.yf{bottom:675.521200pt;}
.yad{bottom:676.718913pt;}
.y15d{bottom:677.094937pt;}
.y11b{bottom:683.464289pt;}
.y47{bottom:684.146973pt;}
.y7d{bottom:685.320231pt;}
.y15c{bottom:690.422937pt;}
.ye{bottom:692.187867pt;}
.yac{bottom:693.385579pt;}
.y11a{bottom:696.792289pt;}
.y46{bottom:700.813639pt;}
.y7c{bottom:701.986898pt;}
.y15b{bottom:703.750937pt;}
.yd{bottom:708.854533pt;}
.yab{bottom:710.052246pt;}
.y119{bottom:710.120289pt;}
.y15a{bottom:717.078937pt;}
.y45{bottom:717.480306pt;}
.y82{bottom:718.653564pt;}
.y118{bottom:723.448289pt;}
.yc{bottom:725.521200pt;}
.yaa{bottom:726.718913pt;}
.y159{bottom:730.406937pt;}
.y44{bottom:734.146973pt;}
.y7b{bottom:735.320231pt;}
.y117{bottom:736.776289pt;}
.yb{bottom:742.187867pt;}
.ya9{bottom:743.385579pt;}
.y158{bottom:743.734937pt;}
.y116{bottom:750.104289pt;}
.y43{bottom:750.813639pt;}
.y81{bottom:751.986898pt;}
.y157{bottom:757.062937pt;}
.ya8{bottom:760.052246pt;}
.y115{bottom:763.432289pt;}
.y5a{bottom:767.480306pt;}
.y80{bottom:768.653564pt;}
.y156{bottom:770.390937pt;}
.ya7{bottom:776.718913pt;}
.y114{bottom:776.760289pt;}
.ya{bottom:781.461467pt;}
.y155{bottom:783.718937pt;}
.y42{bottom:784.146973pt;}
.y7a{bottom:785.320231pt;}
.y113{bottom:790.088289pt;}
.ya6{bottom:793.385579pt;}
.y9{bottom:794.789467pt;}
.y154{bottom:797.046937pt;}
.y59{bottom:800.813639pt;}
.y79{bottom:801.986898pt;}
.y112{bottom:803.416289pt;}
.y153{bottom:810.374937pt;}
.y111{bottom:816.744289pt;}
.y58{bottom:817.480306pt;}
.y78{bottom:818.653564pt;}
.y152{bottom:823.702937pt;}
.ya5{bottom:826.718913pt;}
.y110{bottom:830.072289pt;}
.y8{bottom:832.656133pt;}
.y41{bottom:834.146973pt;}
.y77{bottom:835.320231pt;}
.y151{bottom:837.030937pt;}
.y10f{bottom:843.400289pt;}
.y150{bottom:850.358937pt;}
.y40{bottom:850.813639pt;}
.y76{bottom:851.986898pt;}
.y10e{bottom:856.728289pt;}
.y14f{bottom:863.686937pt;}
.y3f{bottom:867.480306pt;}
.y75{bottom:868.653564pt;}
.y10d{bottom:870.056289pt;}
.y7{bottom:872.377467pt;}
.y14e{bottom:877.014937pt;}
.y10c{bottom:883.384289pt;}
.y3e{bottom:884.146973pt;}
.y74{bottom:885.320231pt;}
.y14d{bottom:890.342937pt;}
.y6{bottom:896.377467pt;}
.y10b{bottom:896.712289pt;}
.y3d{bottom:900.813639pt;}
.y73{bottom:901.986898pt;}
.y14c{bottom:903.670937pt;}
.y10a{bottom:910.040289pt;}
.y14b{bottom:916.998937pt;}
.y3c{bottom:917.480306pt;}
.y72{bottom:918.653564pt;}
.y109{bottom:923.368289pt;}
.y14a{bottom:930.326937pt;}
.y3b{bottom:934.146973pt;}
.y71{bottom:935.320231pt;}
.y108{bottom:936.696289pt;}
.y149{bottom:943.654937pt;}
.y3a{bottom:950.813639pt;}
.ycf{bottom:951.984261pt;}
.y70{bottom:951.986898pt;}
.y5{bottom:956.561867pt;}
.y148{bottom:956.982937pt;}
.y107{bottom:966.696289pt;}
.y39{bottom:967.480306pt;}
.yce{bottom:968.650928pt;}
.y6f{bottom:968.653564pt;}
.y147{bottom:970.310937pt;}
.y4{bottom:986.299200pt;}
.y3{bottom:1001.406533pt;}
.y38{bottom:1002.206543pt;}
.y6e{bottom:1002.206706pt;}
.he{height:22.403733pt;}
.h12{height:29.499507pt;}
.hd{height:32.005333pt;}
.hc{height:32.760417pt;}
.h2{height:37.376000pt;}
.ha{height:37.653333pt;}
.h13{height:38.092946pt;}
.h14{height:38.114900pt;}
.h4{height:39.712000pt;}
.h17{height:40.470367pt;}
.h19{height:40.550269pt;}
.h1a{height:40.841066pt;}
.h15{height:43.656000pt;}
.h16{height:46.376000pt;}
.h18{height:47.826667pt;}
.h3{height:48.766452pt;}
.h5{height:49.248000pt;}
.h9{height:51.360000pt;}
.h8{height:52.746667pt;}
.h10{height:54.560000pt;}
.hf{height:56.266667pt;}
.h11{height:57.493333pt;}
.h7{height:57.621333pt;}
.hb{height:63.296000pt;}
.h6{height:82.176000pt;}
.h0{height:1054.488000pt;}
.h1{height:1054.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x3{left:68.031467pt;}
.x8{left:69.996800pt;}
.x15{left:72.031847pt;}
.x4{left:75.717200pt;}
.x9{left:83.151472pt;}
.x7{left:86.924133pt;}
.x16{left:90.709469pt;}
.xc{left:160.405731pt;}
.xa{left:244.251994pt;}
.xb{left:245.237732pt;}
.x10{left:302.455607pt;}
.xd{left:340.680400pt;}
.x5{left:408.178133pt;}
.x11{left:412.966940pt;}
.x6{left:423.298133pt;}
.x17{left:430.879469pt;}
.xe{left:457.983073pt;}
.x12{left:521.766940pt;}
.x13{left:558.611607pt;}
.x14{left:645.504272pt;}
.x1{left:647.307200pt;}
.x2{left:671.546533pt;}
.xf{left:709.519613pt;}
}




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