
    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_a309a827f148f22e6437e784.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.070312;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_866445816cafa8d4bc3a1e6b.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.106000;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_ee8d270a6cdde18fe61c2092.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.992000;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_90198082264629924b40a10f.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_3af8fcd2a7ccac1fea9d9d9e.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.935547;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_4cd9070ee4ec1cd2a5a82020.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_c37cc9e600ea6990a1dab639.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_b2d731e16c690ea82bdf8ab3.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.992000;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:-18.000000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:20.753280px;}
.lsd{letter-spacing:-0.396360px;}
.ls58{letter-spacing:-0.395280px;}
.ls35{letter-spacing:-0.329400px;}
.ls5{letter-spacing:-0.264240px;}
.ls36{letter-spacing:-0.263520px;}
.ls39{letter-spacing:-0.216000px;}
.ls38{letter-spacing:-0.162000px;}
.ls11{letter-spacing:-0.144000px;}
.ls3{letter-spacing:-0.132120px;}
.lsb{letter-spacing:-0.131760px;}
.ls2{letter-spacing:-0.108000px;}
.lse{letter-spacing:-0.083880px;}
.lsf{letter-spacing:-0.072000px;}
.lsa{letter-spacing:-0.065880px;}
.ls6b{letter-spacing:-0.054000px;}
.ls57{letter-spacing:-0.042120px;}
.ls1{letter-spacing:0.000000px;}
.ls69{letter-spacing:0.037800px;}
.ls67{letter-spacing:0.054000px;}
.ls7{letter-spacing:0.065880px;}
.ls68{letter-spacing:0.070200px;}
.ls10{letter-spacing:0.072000px;}
.ls29{letter-spacing:0.079056px;}
.ls34{letter-spacing:0.083880px;}
.ls6a{letter-spacing:0.086400px;}
.ls8{letter-spacing:0.108000px;}
.ls17{letter-spacing:0.131760px;}
.ls4{letter-spacing:0.132120px;}
.ls9{letter-spacing:0.144000px;}
.ls59{letter-spacing:0.162000px;}
.ls37{letter-spacing:0.167760px;}
.lsc{letter-spacing:0.197640px;}
.ls5d{letter-spacing:0.223992px;}
.ls6{letter-spacing:0.329400px;}
.ls32{letter-spacing:0.378000px;}
.ls3c{letter-spacing:0.395280px;}
.ls33{letter-spacing:0.432000px;}
.ls47{letter-spacing:0.534600px;}
.ls55{letter-spacing:0.540000px;}
.ls30{letter-spacing:0.592920px;}
.ls46{letter-spacing:0.637200px;}
.ls15{letter-spacing:0.658800px;}
.ls56{letter-spacing:0.675000px;}
.ls12{letter-spacing:0.790560px;}
.ls2f{letter-spacing:1.515240px;}
.ls66{letter-spacing:2.898720px;}
.ls65{letter-spacing:3.004128px;}
.ls2e{letter-spacing:3.623400px;}
.ls2d{letter-spacing:3.689280px;}
.ls2c{letter-spacing:3.761748px;}
.ls3d{letter-spacing:4.018680px;}
.ls45{letter-spacing:5.079348px;}
.ls4e{letter-spacing:5.204520px;}
.ls19{letter-spacing:6.192720px;}
.ls1a{letter-spacing:6.686820px;}
.ls1b{letter-spacing:6.838344px;}
.ls2a{letter-spacing:6.917400px;}
.ls62{letter-spacing:7.009632px;}
.ls2b{letter-spacing:7.108452px;}
.ls48{letter-spacing:7.187508px;}
.ls22{letter-spacing:7.918776px;}
.ls18{letter-spacing:8.388000px;}
.ls5c{letter-spacing:8.696160px;}
.ls31{letter-spacing:9.750240px;}
.ls3b{letter-spacing:9.882000px;}
.ls23{letter-spacing:13.703040px;}
.ls51{letter-spacing:15.303924px;}
.ls1c{letter-spacing:15.982488px;}
.ls43{letter-spacing:17.207856px;}
.ls50{letter-spacing:17.655840px;}
.ls4f{letter-spacing:18.070884px;}
.ls3f{letter-spacing:18.775800px;}
.ls5f{letter-spacing:20.409624px;}
.ls5e{letter-spacing:20.501856px;}
.ls53{letter-spacing:20.673144px;}
.ls5a{letter-spacing:21.424176px;}
.ls52{letter-spacing:21.555936px;}
.ls25{letter-spacing:21.918276px;}
.ls26{letter-spacing:22.320144px;}
.ls28{letter-spacing:22.860360px;}
.ls1e{letter-spacing:23.058000px;}
.ls27{letter-spacing:23.150232px;}
.ls1d{letter-spacing:23.156820px;}
.ls20{letter-spacing:23.453280px;}
.ls1f{letter-spacing:23.776092px;}
.ls41{letter-spacing:24.507360px;}
.ls40{letter-spacing:24.520536px;}
.ls21{letter-spacing:24.711588px;}
.ls60{letter-spacing:27.735480px;}
.ls49{letter-spacing:28.130760px;}
.ls61{letter-spacing:30.377268px;}
.ls3e{letter-spacing:34.007256px;}
.ls5b{letter-spacing:35.311680px;}
.ls64{letter-spacing:36.036360px;}
.ls63{letter-spacing:36.102240px;}
.ls44{letter-spacing:36.905976px;}
.ls24{letter-spacing:37.321020px;}
.ls3a{letter-spacing:39.659760px;}
.ls4d{letter-spacing:45.200268px;}
.ls54{letter-spacing:53.804196px;}
.ls4b{letter-spacing:58.040280px;}
.ls4c{letter-spacing:58.053456px;}
.ls14{letter-spacing:58.962600px;}
.ls42{letter-spacing:59.423760px;}
.ls13{letter-spacing:62.322480px;}
.ls4a{letter-spacing:81.864000px;}
.ls16{letter-spacing:161.603640px;}
.ls0{letter-spacing:845.685360px;}
.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;}
}
.ws50{word-spacing:-65.880000px;}
.ws3{word-spacing:-31.312440px;}
.ws2{word-spacing:-31.180320px;}
.wsc{word-spacing:-30.783960px;}
.ws0{word-spacing:-25.488000px;}
.ws1{word-spacing:-25.380000px;}
.wsf{word-spacing:-20.160000px;}
.wse{word-spacing:-20.016000px;}
.ws28{word-spacing:-19.963440px;}
.wsd{word-spacing:-19.944000px;}
.ws26{word-spacing:-19.879560px;}
.ws10{word-spacing:-19.872000px;}
.ws7a{word-spacing:-19.711800px;}
.ws7b{word-spacing:-18.512280px;}
.ws1c{word-spacing:-18.380520px;}
.ws1b{word-spacing:-18.314640px;}
.ws27{word-spacing:-18.248760px;}
.ws6a{word-spacing:-18.182880px;}
.ws7c{word-spacing:-18.051120px;}
.ws6c{word-spacing:-17.919360px;}
.ws69{word-spacing:-17.064000px;}
.ws6b{word-spacing:-16.848000px;}
.ws24{word-spacing:-15.745320px;}
.ws23{word-spacing:-15.679440px;}
.ws25{word-spacing:-15.613560px;}
.wsb{word-spacing:-15.547680px;}
.ws9{word-spacing:-15.481800px;}
.wsa{word-spacing:-15.415920px;}
.ws6d{word-spacing:-15.174000px;}
.ws2c{word-spacing:-15.120000px;}
.ws51{word-spacing:-15.012000px;}
.ws2b{word-spacing:-14.904000px;}
.ws2a{word-spacing:-14.850000px;}
.ws2d{word-spacing:-14.796000px;}
.ws91{word-spacing:-12.906000px;}
.ws90{word-spacing:-12.798000px;}
.ws8c{word-spacing:-12.744000px;}
.ws8d{word-spacing:-12.690000px;}
.ws8f{word-spacing:-12.636000px;}
.ws8e{word-spacing:-12.582000px;}
.ws29{word-spacing:-11.709360px;}
.ws68{word-spacing:-11.667240px;}
.ws41{word-spacing:-4.348080px;}
.ws2f{word-spacing:-3.623400px;}
.ws4a{word-spacing:-3.228120px;}
.ws73{word-spacing:-2.898720px;}
.ws3e{word-spacing:-2.503440px;}
.ws98{word-spacing:-2.322000px;}
.ws99{word-spacing:-2.268000px;}
.ws80{word-spacing:-2.174040px;}
.ws95{word-spacing:-1.944000px;}
.ws96{word-spacing:-1.890000px;}
.ws39{word-spacing:-1.778760px;}
.ws66{word-spacing:-1.449360px;}
.ws45{word-spacing:-1.054080px;}
.ws75{word-spacing:-0.724680px;}
.ws7{word-spacing:-0.396360px;}
.ws82{word-spacing:-0.395280px;}
.ws11{word-spacing:-0.197640px;}
.ws5{word-spacing:-0.168480px;}
.ws83{word-spacing:-0.167760px;}
.wsa0{word-spacing:-0.162000px;}
.ws1a{word-spacing:-0.144000px;}
.ws53{word-spacing:-0.131760px;}
.ws16{word-spacing:-0.108000px;}
.ws17{word-spacing:-0.072000px;}
.ws1e{word-spacing:-0.065880px;}
.ws4{word-spacing:0.000000px;}
.ws9a{word-spacing:0.054000px;}
.ws35{word-spacing:0.065880px;}
.ws18{word-spacing:0.072000px;}
.ws12{word-spacing:0.083880px;}
.ws14{word-spacing:0.108000px;}
.ws7f{word-spacing:0.131760px;}
.ws8{word-spacing:0.132120px;}
.ws4f{word-spacing:0.162000px;}
.ws15{word-spacing:0.216000px;}
.ws33{word-spacing:0.263520px;}
.ws6{word-spacing:0.264240px;}
.ws4e{word-spacing:0.270000px;}
.ws19{word-spacing:0.288000px;}
.ws1f{word-spacing:0.329400px;}
.ws13{word-spacing:0.419400px;}
.ws79{word-spacing:0.648000px;}
.ws1d{word-spacing:0.724680px;}
.ws54{word-spacing:1.054080px;}
.ws4b{word-spacing:1.449360px;}
.ws43{word-spacing:2.898720px;}
.ws42{word-spacing:3.623400px;}
.ws55{word-spacing:3.952800px;}
.ws59{word-spacing:4.677480px;}
.ws67{word-spacing:5.006880px;}
.ws49{word-spacing:5.731560px;}
.ws89{word-spacing:6.126840px;}
.ws32{word-spacing:6.456240px;}
.ws3f{word-spacing:6.851520px;}
.ws63{word-spacing:6.917400px;}
.ws48{word-spacing:7.180920px;}
.ws30{word-spacing:7.576200px;}
.ws37{word-spacing:8.235000px;}
.ws81{word-spacing:8.630280px;}
.wsa2{word-spacing:8.748000px;}
.wsa3{word-spacing:8.856000px;}
.ws4d{word-spacing:9.684360px;}
.ws64{word-spacing:10.079640px;}
.ws9f{word-spacing:10.314000px;}
.ws2e{word-spacing:10.409040px;}
.ws87{word-spacing:10.804320px;}
.ws5e{word-spacing:13.307760px;}
.ws3b{word-spacing:13.703040px;}
.ws5f{word-spacing:14.032440px;}
.ws65{word-spacing:14.361840px;}
.ws3a{word-spacing:15.481800px;}
.ws34{word-spacing:15.811200px;}
.ws5c{word-spacing:16.206480px;}
.ws5b{word-spacing:16.535880px;}
.ws9e{word-spacing:16.848000px;}
.ws72{word-spacing:17.655840px;}
.ws58{word-spacing:18.644040px;}
.ws57{word-spacing:18.709920px;}
.ws9b{word-spacing:19.008000px;}
.ws84{word-spacing:20.159280px;}
.ws76{word-spacing:20.488680px;}
.ws21{word-spacing:21.213360px;}
.ws3d{word-spacing:21.938040px;}
.ws40{word-spacing:22.662720px;}
.ws36{word-spacing:23.387400px;}
.ws93{word-spacing:24.354000px;}
.wsa1{word-spacing:24.408000px;}
.ws38{word-spacing:24.441480px;}
.ws94{word-spacing:24.462000px;}
.ws44{word-spacing:24.836760px;}
.ws86{word-spacing:27.735480px;}
.ws4c{word-spacing:28.064880px;}
.ws92{word-spacing:29.376000px;}
.ws6e{word-spacing:29.843640px;}
.ws88{word-spacing:30.238920px;}
.wsa5{word-spacing:30.294000px;}
.wsa4{word-spacing:30.348000px;}
.wsa6{word-spacing:30.456000px;}
.ws22{word-spacing:31.688280px;}
.ws60{word-spacing:33.137640px;}
.ws56{word-spacing:33.467040px;}
.ws7d{word-spacing:34.191720px;}
.wsa7{word-spacing:35.154000px;}
.ws7e{word-spacing:35.245800px;}
.ws8b{word-spacing:35.641080px;}
.ws8a{word-spacing:35.970480px;}
.ws3c{word-spacing:36.695160px;}
.ws5d{word-spacing:37.090440px;}
.ws47{word-spacing:37.815120px;}
.ws46{word-spacing:38.144520px;}
.ws74{word-spacing:38.539800px;}
.ws52{word-spacing:39.593880px;}
.ws9c{word-spacing:41.094000px;}
.ws9d{word-spacing:41.256000px;}
.ws62{word-spacing:41.767920px;}
.wsa8{word-spacing:42.714000px;}
.ws61{word-spacing:43.546680px;}
.ws71{word-spacing:44.666640px;}
.ws6f{word-spacing:46.445400px;}
.ws31{word-spacing:48.224160px;}
.ws5a{word-spacing:51.452280px;}
.ws78{word-spacing:53.296920px;}
.ws70{word-spacing:57.974400px;}
.ws20{word-spacing:62.256600px;}
.ws77{word-spacing:64.101240px;}
.ws85{word-spacing:92.890800px;}
.ws97{word-spacing:381.078000px;}
._b{margin-left:-14.083056px;}
._9{margin-left:-11.558124px;}
._c{margin-left:-8.904132px;}
._a{margin-left:-6.696864px;}
._e{margin-left:-5.573376px;}
._8{margin-left:-4.479840px;}
._d{margin-left:-2.891088px;}
._2{margin-left:-1.043748px;}
._1{width:1.017324px;}
._13{width:3.245148px;}
._10{width:5.764500px;}
._f{width:7.905600px;}
._20{width:9.180000px;}
._14{width:10.664892px;}
._12{width:13.824468px;}
._19{width:15.679440px;}
._11{width:16.997040px;}
._1a{width:20.422800px;}
._1b{width:21.476880px;}
._16{width:27.669600px;}
._1d{width:30.370680px;}
._18{width:38.605680px;}
._1f{width:41.526000px;}
._15{width:51.057000px;}
._17{width:57.766428px;}
._7{width:58.962600px;}
._5{width:62.322480px;}
._1c{width:92.627280px;}
._0{width:189.075600px;}
._1e{width:845.701560px;}
._6{width:847.271160px;}
._3{width:999.004320px;}
._4{width:1240.849800px;}
.fc3{color:rgb(197,8,89);}
.fc2{color:rgb(5,99,193);}
.fc1{color:rgb(191,191,191);}
.fc0{color:rgb(0,0,0);}
.fs8{font-size:36.000000px;}
.fs1{font-size:42.120000px;}
.fs9{font-size:54.000000px;}
.fs6{font-size:60.120000px;}
.fs0{font-size:65.880000px;}
.fs5{font-size:72.000000px;}
.fs2{font-size:83.880000px;}
.fs7{font-size:96.120000px;}
.fs3{font-size:108.000000px;}
.fs4{font-size:132.120000px;}
.y39{bottom:-9.000000px;}
.y0{bottom:0.000000px;}
.y5{bottom:4.500000px;}
.ya{bottom:22.140000px;}
.y3{bottom:56.605590px;}
.y15{bottom:56.611890px;}
.y14{bottom:76.590000px;}
.y31{bottom:83.340000px;}
.yd8{bottom:114.480000px;}
.y6c{bottom:117.360000px;}
.ya8{bottom:118.980000px;}
.y3a{bottom:125.010000px;}
.ya7{bottom:129.960000px;}
.yd7{bottom:129.964500px;}
.y2f{bottom:136.161990px;}
.y35{bottom:142.290000px;}
.y4{bottom:143.460000px;}
.y6b{bottom:148.415580px;}
.ya6{bottom:150.030000px;}
.ya5{bottom:161.010000px;}
.y2e{bottom:168.657300px;}
.y6a{bottom:168.937200px;}
.y2{bottom:170.726220px;}
.yd6{bottom:176.575500px;}
.yfe{bottom:176.580000px;}
.ya4{bottom:181.080000px;}
.y69{bottom:189.360000px;}
.y4e{bottom:191.430000px;}
.yfd{bottom:192.060000px;}
.ya3{bottom:192.064500px;}
.yd5{bottom:196.560000px;}
.y2d{bottom:201.152610px;}
.yd4{bottom:207.630000px;}
.ya2{bottom:212.130000px;}
.y11{bottom:221.310000px;}
.yd3{bottom:223.114500px;}
.ya1{bottom:223.740000px;}
.y68{bottom:226.252890px;}
.y4d{bottom:228.510000px;}
.y2c{bottom:233.647920px;}
.yd2{bottom:243.180000px;}
.y67{bottom:245.242800px;}
.yd1{bottom:254.164500px;}
.yfc{bottom:254.790000px;}
.y4c{bottom:262.890000px;}
.y66{bottom:264.232710px;}
.ya0{bottom:264.598380px;}
.y2b{bottom:266.044410px;}
.yf{bottom:267.569850px;}
.yd0{bottom:274.230000px;}
.y9f{bottom:285.132780px;}
.ycf{bottom:285.214500px;}
.y65{bottom:296.629200px;}
.y4b{bottom:297.180000px;}
.y2a{bottom:298.539720px;}
.yce{bottom:305.280000px;}
.y9e{bottom:305.555580px;}
.ycd{bottom:316.890000px;}
.yfb{bottom:323.197200px;}
.y9d{bottom:326.077200px;}
.y64{bottom:329.124510px;}
.y29{bottom:331.035030px;}
.y4a{bottom:331.560000px;}
.ycc{bottom:340.648380px;}
.yfa{bottom:343.620000px;}
.y9c{bottom:346.509540px;}
.ycb{bottom:361.182780px;}
.y63{bottom:361.619820px;}
.y49{bottom:362.880000px;}
.y28{bottom:363.530340px;}
.y9b{bottom:367.031160px;}
.yc{bottom:369.900000px;}
.yf9{bottom:374.940000px;}
.yca{bottom:381.605580px;}
.y9a{bottom:387.453960px;}
.y62{bottom:394.115130px;}
.y48{bottom:394.200000px;}
.y27{bottom:396.025650px;}
.yc9{bottom:402.127200px;}
.y99{bottom:407.975580px;}
.yf8{bottom:410.451840px;}
.yc8{bottom:422.588970px;}
.y47{bottom:425.520000px;}
.y61{bottom:426.610440px;}
.y98{bottom:428.398380px;}
.y26{bottom:428.520960px;}
.yf7{bottom:430.874640px;}
.yc7{bottom:443.110590px;}
.y97{bottom:448.951680px;}
.yf6{bottom:451.396260px;}
.y9{bottom:456.030000px;}
.y46{bottom:456.840000px;}
.y60{bottom:459.105750px;}
.y132{bottom:459.180000px;}
.y25{bottom:460.917450px;}
.yc6{bottom:463.533390px;}
.y96{bottom:469.374480px;}
.yf5{bottom:471.819060px;}
.yc5{bottom:484.055010px;}
.y131{bottom:487.296000px;}
.y45{bottom:488.250000px;}
.y95{bottom:489.896100px;}
.y5f{bottom:491.502240px;}
.yf4{bottom:492.340680px;}
.y24{bottom:493.412760px;}
.yc4{bottom:504.477810px;}
.y130{bottom:504.846000px;}
.y94{bottom:510.318900px;}
.yf3{bottom:512.763480px;}
.y44{bottom:519.570000px;}
.y5e{bottom:523.997550px;}
.yc3{bottom:524.999430px;}
.y23{bottom:525.908070px;}
.y93{bottom:530.840520px;}
.y12f{bottom:531.400500px;}
.yf2{bottom:533.285100px;}
.yc2{bottom:545.422230px;}
.y12e{bottom:548.950500px;}
.y43{bottom:550.890000px;}
.yf1{bottom:553.707900px;}
.y5d{bottom:556.492860px;}
.y22{bottom:558.403380px;}
.y92{bottom:563.237010px;}
.yb{bottom:564.660000px;}
.yc1{bottom:565.943850px;}
.yf0{bottom:574.229520px;}
.y12d{bottom:575.505000px;}
.y42{bottom:582.210000px;}
.y91{bottom:583.758630px;}
.y5c{bottom:588.988170px;}
.y21{bottom:590.898690px;}
.y12c{bottom:593.055000px;}
.yef{bottom:594.652320px;}
.yc0{bottom:598.439160px;}
.y90{bottom:604.181430px;}
.y113{bottom:606.712590px;}
.y41{bottom:613.530000px;}
.yee{bottom:615.173940px;}
.ybf{bottom:618.861960px;}
.y12b{bottom:619.609500px;}
.y5b{bottom:621.483480px;}
.y20{bottom:623.394000px;}
.y8f{bottom:624.703050px;}
.yed{bottom:635.596740px;}
.y12a{bottom:637.159500px;}
.y112{bottom:639.207900px;}
.y40{bottom:644.940000px;}
.y8e{bottom:645.224670px;}
.ybe{bottom:651.357270px;}
.y5a{bottom:653.978790px;}
.y129{bottom:654.709500px;}
.y1f{bottom:655.790490px;}
.yec{bottom:656.118360px;}
.y111{bottom:659.630700px;}
.y8d{bottom:665.647470px;}
.ybd{bottom:671.878890px;}
.y3f{bottom:676.260000px;}
.y3b{bottom:676.530000px;}
.yeb{bottom:676.541160px;}
.y110{bottom:680.152320px;}
.y128{bottom:681.264000px;}
.y8c{bottom:686.169090px;}
.y59{bottom:686.375280px;}
.y1e{bottom:688.285800px;}
.y13{bottom:693.368910px;}
.ybc{bottom:693.388710px;}
.yea{bottom:697.062780px;}
.y127{bottom:698.814000px;}
.y10f{bottom:700.575120px;}
.y8b{bottom:706.591890px;}
.y3e{bottom:707.580000px;}
.ybb{bottom:713.910330px;}
.ye9{bottom:717.485580px;}
.y58{bottom:718.870590px;}
.y1d{bottom:720.781110px;}
.y10e{bottom:721.096740px;}
.y78{bottom:724.050000px;}
.y126{bottom:725.368500px;}
.yba{bottom:735.502500px;}
.ye8{bottom:738.007200px;}
.y3d{bottom:738.900000px;}
.y8a{bottom:739.087200px;}
.y12{bottom:739.710000px;}
.y10d{bottom:741.519540px;}
.y125{bottom:742.918500px;}
.y57{bottom:751.365900px;}
.y1c{bottom:753.276420px;}
.y77{bottom:755.118360px;}
.ye7{bottom:758.430000px;}
.y89{bottom:759.510000px;}
.y10c{bottom:762.041160px;}
.yb9{bottom:769.068360px;}
.y124{bottom:769.473000px;}
.y3c{bottom:770.220000px;}
.y10b{bottom:782.463960px;}
.y56{bottom:783.861210px;}
.y1b{bottom:785.771730px;}
.y76{bottom:785.801970px;}
.y10{bottom:785.970000px;}
.yb8{bottom:789.491160px;}
.ye6{bottom:789.750000px;}
.y88{bottom:791.910000px;}
.y123{bottom:796.027500px;}
.y10a{bottom:802.985580px;}
.yb7{bottom:810.012780px;}
.y122{bottom:813.577500px;}
.y55{bottom:816.356520px;}
.y1a{bottom:818.267040px;}
.y109{bottom:823.408380px;}
.ye5{bottom:825.233940px;}
.y75{bottom:827.026380px;}
.yb6{bottom:830.435580px;}
.y121{bottom:831.127500px;}
.ye{bottom:832.238910px;}
.y87{bottom:836.491860px;}
.y108{bottom:843.930000px;}
.y34{bottom:845.460000px;}
.ye4{bottom:845.656740px;}
.y54{bottom:848.851830px;}
.yb5{bottom:850.957200px;}
.y86{bottom:857.013480px;}
.y120{bottom:857.682000px;}
.ye3{bottom:866.178360px;}
.y74{bottom:868.151970px;}
.yb4{bottom:871.378650px;}
.y38{bottom:874.098000px;}
.y11f{bottom:875.232000px;}
.y107{bottom:876.330000px;}
.y85{bottom:877.436280px;}
.yd{bottom:878.580000px;}
.y53{bottom:881.248320px;}
.ye2{bottom:886.601160px;}
.yb3{bottom:891.900270px;}
.y84{bottom:897.957900px;}
.y11e{bottom:901.786500px;}
.ye1{bottom:907.122780px;}
.y73{bottom:909.277560px;}
.y37{bottom:911.979000px;}
.y52{bottom:913.743630px;}
.y83{bottom:918.380700px;}
.y11d{bottom:919.336500px;}
.y106{bottom:920.896740px;}
.yb2{bottom:924.395580px;}
.ye0{bottom:927.545580px;}
.y11c{bottom:936.886500px;}
.y82{bottom:938.902320px;}
.y105{bottom:941.319540px;}
.y72{bottom:941.410530px;}
.yb1{bottom:944.818380px;}
.y51{bottom:946.238940px;}
.ydf{bottom:948.067200px;}
.y36{bottom:949.860000px;}
.y81{bottom:959.325120px;}
.y104{bottom:961.841160px;}
.y11b{bottom:963.441000px;}
.yb0{bottom:965.358630px;}
.yde{bottom:968.490000px;}
.y71{bottom:973.543500px;}
.y50{bottom:978.734250px;}
.y80{bottom:979.846740px;}
.y11a{bottom:980.991000px;}
.y103{bottom:982.263960px;}
.yaf{bottom:985.781430px;}
.y119{bottom:998.541000px;}
.y8{bottom:999.449010px;}
.ydd{bottom:999.810000px;}
.y7f{bottom:1000.269540px;}
.y102{bottom:1002.785580px;}
.y70{bottom:1005.758820px;}
.yae{bottom:1006.303050px;}
.y4f{bottom:1011.229560px;}
.y7e{bottom:1020.791160px;}
.y101{bottom:1023.208380px;}
.y118{bottom:1025.095500px;}
.yad{bottom:1026.725850px;}
.y30{bottom:1033.470000px;}
.ydc{bottom:1035.180000px;}
.y7{bottom:1038.054690px;}
.y7d{bottom:1041.213960px;}
.y117{bottom:1042.645500px;}
.y19{bottom:1043.724870px;}
.y100{bottom:1043.730000px;}
.y6f{bottom:1046.884410px;}
.y33{bottom:1053.354240px;}
.yac{bottom:1059.221160px;}
.y7c{bottom:1061.735580px;}
.y116{bottom:1069.200000px;}
.y6{bottom:1070.550000px;}
.y18{bottom:1076.121360px;}
.yff{bottom:1076.130000px;}
.ydb{bottom:1079.737200px;}
.yab{bottom:1079.742780px;}
.y7b{bottom:1082.158380px;}
.y32{bottom:1082.880000px;}
.y1{bottom:1086.030000px;}
.y115{bottom:1086.750000px;}
.y6e{bottom:1088.010000px;}
.yaa{bottom:1100.165580px;}
.yda{bottom:1100.167560px;}
.y7a{bottom:1102.680000px;}
.y114{bottom:1104.300000px;}
.y17{bottom:1108.616670px;}
.ya9{bottom:1120.687200px;}
.yd9{bottom:1120.689180px;}
.y6d{bottom:1131.930000px;}
.y79{bottom:1135.080000px;}
.y16{bottom:1141.111980px;}
.h3{height:14.310000px;}
.h1a{height:30.955078px;}
.h1c{height:33.694980px;}
.h4{height:36.217441px;}
.h13{height:43.769004px;}
.h1b{height:46.432617px;}
.h25{height:48.276000px;}
.h6{height:49.860000px;}
.h21{height:51.694980px;}
.h10{height:52.417969px;}
.h24{height:56.160000px;}
.h2{height:56.647793px;}
.h20{height:56.941561px;}
.h16{height:56.970721px;}
.h1e{height:57.022921px;}
.h18{height:57.046321px;}
.h17{height:57.059281px;}
.h22{height:57.067201px;}
.h23{height:57.068641px;}
.h1d{height:57.089521px;}
.h1f{height:57.102841px;}
.h19{height:57.103921px;}
.ha{height:58.896720px;}
.h11{height:61.910156px;}
.h15{height:65.426400px;}
.h12{height:72.125332px;}
.h14{height:74.973600px;}
.hc{height:74.988720px;}
.h5{height:74.992680px;}
.h7{height:96.552000px;}
.hb{height:117.180000px;}
.he{height:118.043280px;}
.h9{height:118.115280px;}
.hd{height:170.010000px;}
.h8{height:397.620000px;}
.hf{height:693.450000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w2{width:91.620000px;}
.w7{width:249.840000px;}
.w8{width:390.420000px;}
.w3{width:474.030000px;}
.w5{width:499.500000px;}
.w4{width:592.830000px;}
.w6{width:661.770000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x4{left:10.800000px;}
.x17{left:51.030000px;}
.x12{left:74.520000px;}
.x5{left:106.290000px;}
.x11{left:117.630000px;}
.x20{left:122.694120px;}
.x21{left:133.110000px;}
.x13{left:134.730000px;}
.x3{left:141.930000px;}
.x23{left:160.273620px;}
.x16{left:181.170000px;}
.x1d{left:191.970000px;}
.x8{left:193.320000px;}
.xa{left:213.120000px;}
.x14{left:223.371000px;}
.x9{left:229.140000px;}
.xe{left:251.730000px;}
.x1c{left:263.250000px;}
.xb{left:267.322230px;}
.x1a{left:293.220000px;}
.x15{left:309.420000px;}
.x6{left:312.120000px;}
.x19{left:313.200000px;}
.x7{left:318.960000px;}
.x22{left:322.290000px;}
.x1b{left:359.190000px;}
.x1{left:361.350000px;}
.x18{left:420.210000px;}
.x1e{left:432.990000px;}
.x1f{left:443.790000px;}
.xf{left:461.965950px;}
.x2{left:479.242260px;}
.xd{left:486.270000px;}
.xc{left:589.770000px;}
.x10{left:621.553950px;}
@media print{
.v2{vertical-align:-16.000000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:18.447360pt;}
.lsd{letter-spacing:-0.352320pt;}
.ls58{letter-spacing:-0.351360pt;}
.ls35{letter-spacing:-0.292800pt;}
.ls5{letter-spacing:-0.234880pt;}
.ls36{letter-spacing:-0.234240pt;}
.ls39{letter-spacing:-0.192000pt;}
.ls38{letter-spacing:-0.144000pt;}
.ls11{letter-spacing:-0.128000pt;}
.ls3{letter-spacing:-0.117440pt;}
.lsb{letter-spacing:-0.117120pt;}
.ls2{letter-spacing:-0.096000pt;}
.lse{letter-spacing:-0.074560pt;}
.lsf{letter-spacing:-0.064000pt;}
.lsa{letter-spacing:-0.058560pt;}
.ls6b{letter-spacing:-0.048000pt;}
.ls57{letter-spacing:-0.037440pt;}
.ls1{letter-spacing:0.000000pt;}
.ls69{letter-spacing:0.033600pt;}
.ls67{letter-spacing:0.048000pt;}
.ls7{letter-spacing:0.058560pt;}
.ls68{letter-spacing:0.062400pt;}
.ls10{letter-spacing:0.064000pt;}
.ls29{letter-spacing:0.070272pt;}
.ls34{letter-spacing:0.074560pt;}
.ls6a{letter-spacing:0.076800pt;}
.ls8{letter-spacing:0.096000pt;}
.ls17{letter-spacing:0.117120pt;}
.ls4{letter-spacing:0.117440pt;}
.ls9{letter-spacing:0.128000pt;}
.ls59{letter-spacing:0.144000pt;}
.ls37{letter-spacing:0.149120pt;}
.lsc{letter-spacing:0.175680pt;}
.ls5d{letter-spacing:0.199104pt;}
.ls6{letter-spacing:0.292800pt;}
.ls32{letter-spacing:0.336000pt;}
.ls3c{letter-spacing:0.351360pt;}
.ls33{letter-spacing:0.384000pt;}
.ls47{letter-spacing:0.475200pt;}
.ls55{letter-spacing:0.480000pt;}
.ls30{letter-spacing:0.527040pt;}
.ls46{letter-spacing:0.566400pt;}
.ls15{letter-spacing:0.585600pt;}
.ls56{letter-spacing:0.600000pt;}
.ls12{letter-spacing:0.702720pt;}
.ls2f{letter-spacing:1.346880pt;}
.ls66{letter-spacing:2.576640pt;}
.ls65{letter-spacing:2.670336pt;}
.ls2e{letter-spacing:3.220800pt;}
.ls2d{letter-spacing:3.279360pt;}
.ls2c{letter-spacing:3.343776pt;}
.ls3d{letter-spacing:3.572160pt;}
.ls45{letter-spacing:4.514976pt;}
.ls4e{letter-spacing:4.626240pt;}
.ls19{letter-spacing:5.504640pt;}
.ls1a{letter-spacing:5.943840pt;}
.ls1b{letter-spacing:6.078528pt;}
.ls2a{letter-spacing:6.148800pt;}
.ls62{letter-spacing:6.230784pt;}
.ls2b{letter-spacing:6.318624pt;}
.ls48{letter-spacing:6.388896pt;}
.ls22{letter-spacing:7.038912pt;}
.ls18{letter-spacing:7.456000pt;}
.ls5c{letter-spacing:7.729920pt;}
.ls31{letter-spacing:8.666880pt;}
.ls3b{letter-spacing:8.784000pt;}
.ls23{letter-spacing:12.180480pt;}
.ls51{letter-spacing:13.603488pt;}
.ls1c{letter-spacing:14.206656pt;}
.ls43{letter-spacing:15.295872pt;}
.ls50{letter-spacing:15.694080pt;}
.ls4f{letter-spacing:16.063008pt;}
.ls3f{letter-spacing:16.689600pt;}
.ls5f{letter-spacing:18.141888pt;}
.ls5e{letter-spacing:18.223872pt;}
.ls53{letter-spacing:18.376128pt;}
.ls5a{letter-spacing:19.043712pt;}
.ls52{letter-spacing:19.160832pt;}
.ls25{letter-spacing:19.482912pt;}
.ls26{letter-spacing:19.840128pt;}
.ls28{letter-spacing:20.320320pt;}
.ls1e{letter-spacing:20.496000pt;}
.ls27{letter-spacing:20.577984pt;}
.ls1d{letter-spacing:20.583840pt;}
.ls20{letter-spacing:20.847360pt;}
.ls1f{letter-spacing:21.134304pt;}
.ls41{letter-spacing:21.784320pt;}
.ls40{letter-spacing:21.796032pt;}
.ls21{letter-spacing:21.965856pt;}
.ls60{letter-spacing:24.653760pt;}
.ls49{letter-spacing:25.005120pt;}
.ls61{letter-spacing:27.002016pt;}
.ls3e{letter-spacing:30.228672pt;}
.ls5b{letter-spacing:31.388160pt;}
.ls64{letter-spacing:32.032320pt;}
.ls63{letter-spacing:32.090880pt;}
.ls44{letter-spacing:32.805312pt;}
.ls24{letter-spacing:33.174240pt;}
.ls3a{letter-spacing:35.253120pt;}
.ls4d{letter-spacing:40.178016pt;}
.ls54{letter-spacing:47.825952pt;}
.ls4b{letter-spacing:51.591360pt;}
.ls4c{letter-spacing:51.603072pt;}
.ls14{letter-spacing:52.411200pt;}
.ls42{letter-spacing:52.821120pt;}
.ls13{letter-spacing:55.397760pt;}
.ls4a{letter-spacing:72.768000pt;}
.ls16{letter-spacing:143.647680pt;}
.ls0{letter-spacing:751.720320pt;}
.ws50{word-spacing:-58.560000pt;}
.ws3{word-spacing:-27.833280pt;}
.ws2{word-spacing:-27.715840pt;}
.wsc{word-spacing:-27.363520pt;}
.ws0{word-spacing:-22.656000pt;}
.ws1{word-spacing:-22.560000pt;}
.wsf{word-spacing:-17.920000pt;}
.wse{word-spacing:-17.792000pt;}
.ws28{word-spacing:-17.745280pt;}
.wsd{word-spacing:-17.728000pt;}
.ws26{word-spacing:-17.670720pt;}
.ws10{word-spacing:-17.664000pt;}
.ws7a{word-spacing:-17.521600pt;}
.ws7b{word-spacing:-16.455360pt;}
.ws1c{word-spacing:-16.338240pt;}
.ws1b{word-spacing:-16.279680pt;}
.ws27{word-spacing:-16.221120pt;}
.ws6a{word-spacing:-16.162560pt;}
.ws7c{word-spacing:-16.045440pt;}
.ws6c{word-spacing:-15.928320pt;}
.ws69{word-spacing:-15.168000pt;}
.ws6b{word-spacing:-14.976000pt;}
.ws24{word-spacing:-13.995840pt;}
.ws23{word-spacing:-13.937280pt;}
.ws25{word-spacing:-13.878720pt;}
.wsb{word-spacing:-13.820160pt;}
.ws9{word-spacing:-13.761600pt;}
.wsa{word-spacing:-13.703040pt;}
.ws6d{word-spacing:-13.488000pt;}
.ws2c{word-spacing:-13.440000pt;}
.ws51{word-spacing:-13.344000pt;}
.ws2b{word-spacing:-13.248000pt;}
.ws2a{word-spacing:-13.200000pt;}
.ws2d{word-spacing:-13.152000pt;}
.ws91{word-spacing:-11.472000pt;}
.ws90{word-spacing:-11.376000pt;}
.ws8c{word-spacing:-11.328000pt;}
.ws8d{word-spacing:-11.280000pt;}
.ws8f{word-spacing:-11.232000pt;}
.ws8e{word-spacing:-11.184000pt;}
.ws29{word-spacing:-10.408320pt;}
.ws68{word-spacing:-10.370880pt;}
.ws41{word-spacing:-3.864960pt;}
.ws2f{word-spacing:-3.220800pt;}
.ws4a{word-spacing:-2.869440pt;}
.ws73{word-spacing:-2.576640pt;}
.ws3e{word-spacing:-2.225280pt;}
.ws98{word-spacing:-2.064000pt;}
.ws99{word-spacing:-2.016000pt;}
.ws80{word-spacing:-1.932480pt;}
.ws95{word-spacing:-1.728000pt;}
.ws96{word-spacing:-1.680000pt;}
.ws39{word-spacing:-1.581120pt;}
.ws66{word-spacing:-1.288320pt;}
.ws45{word-spacing:-0.936960pt;}
.ws75{word-spacing:-0.644160pt;}
.ws7{word-spacing:-0.352320pt;}
.ws82{word-spacing:-0.351360pt;}
.ws11{word-spacing:-0.175680pt;}
.ws5{word-spacing:-0.149760pt;}
.ws83{word-spacing:-0.149120pt;}
.wsa0{word-spacing:-0.144000pt;}
.ws1a{word-spacing:-0.128000pt;}
.ws53{word-spacing:-0.117120pt;}
.ws16{word-spacing:-0.096000pt;}
.ws17{word-spacing:-0.064000pt;}
.ws1e{word-spacing:-0.058560pt;}
.ws4{word-spacing:0.000000pt;}
.ws9a{word-spacing:0.048000pt;}
.ws35{word-spacing:0.058560pt;}
.ws18{word-spacing:0.064000pt;}
.ws12{word-spacing:0.074560pt;}
.ws14{word-spacing:0.096000pt;}
.ws7f{word-spacing:0.117120pt;}
.ws8{word-spacing:0.117440pt;}
.ws4f{word-spacing:0.144000pt;}
.ws15{word-spacing:0.192000pt;}
.ws33{word-spacing:0.234240pt;}
.ws6{word-spacing:0.234880pt;}
.ws4e{word-spacing:0.240000pt;}
.ws19{word-spacing:0.256000pt;}
.ws1f{word-spacing:0.292800pt;}
.ws13{word-spacing:0.372800pt;}
.ws79{word-spacing:0.576000pt;}
.ws1d{word-spacing:0.644160pt;}
.ws54{word-spacing:0.936960pt;}
.ws4b{word-spacing:1.288320pt;}
.ws43{word-spacing:2.576640pt;}
.ws42{word-spacing:3.220800pt;}
.ws55{word-spacing:3.513600pt;}
.ws59{word-spacing:4.157760pt;}
.ws67{word-spacing:4.450560pt;}
.ws49{word-spacing:5.094720pt;}
.ws89{word-spacing:5.446080pt;}
.ws32{word-spacing:5.738880pt;}
.ws3f{word-spacing:6.090240pt;}
.ws63{word-spacing:6.148800pt;}
.ws48{word-spacing:6.383040pt;}
.ws30{word-spacing:6.734400pt;}
.ws37{word-spacing:7.320000pt;}
.ws81{word-spacing:7.671360pt;}
.wsa2{word-spacing:7.776000pt;}
.wsa3{word-spacing:7.872000pt;}
.ws4d{word-spacing:8.608320pt;}
.ws64{word-spacing:8.959680pt;}
.ws9f{word-spacing:9.168000pt;}
.ws2e{word-spacing:9.252480pt;}
.ws87{word-spacing:9.603840pt;}
.ws5e{word-spacing:11.829120pt;}
.ws3b{word-spacing:12.180480pt;}
.ws5f{word-spacing:12.473280pt;}
.ws65{word-spacing:12.766080pt;}
.ws3a{word-spacing:13.761600pt;}
.ws34{word-spacing:14.054400pt;}
.ws5c{word-spacing:14.405760pt;}
.ws5b{word-spacing:14.698560pt;}
.ws9e{word-spacing:14.976000pt;}
.ws72{word-spacing:15.694080pt;}
.ws58{word-spacing:16.572480pt;}
.ws57{word-spacing:16.631040pt;}
.ws9b{word-spacing:16.896000pt;}
.ws84{word-spacing:17.919360pt;}
.ws76{word-spacing:18.212160pt;}
.ws21{word-spacing:18.856320pt;}
.ws3d{word-spacing:19.500480pt;}
.ws40{word-spacing:20.144640pt;}
.ws36{word-spacing:20.788800pt;}
.ws93{word-spacing:21.648000pt;}
.wsa1{word-spacing:21.696000pt;}
.ws38{word-spacing:21.725760pt;}
.ws94{word-spacing:21.744000pt;}
.ws44{word-spacing:22.077120pt;}
.ws86{word-spacing:24.653760pt;}
.ws4c{word-spacing:24.946560pt;}
.ws92{word-spacing:26.112000pt;}
.ws6e{word-spacing:26.527680pt;}
.ws88{word-spacing:26.879040pt;}
.wsa5{word-spacing:26.928000pt;}
.wsa4{word-spacing:26.976000pt;}
.wsa6{word-spacing:27.072000pt;}
.ws22{word-spacing:28.167360pt;}
.ws60{word-spacing:29.455680pt;}
.ws56{word-spacing:29.748480pt;}
.ws7d{word-spacing:30.392640pt;}
.wsa7{word-spacing:31.248000pt;}
.ws7e{word-spacing:31.329600pt;}
.ws8b{word-spacing:31.680960pt;}
.ws8a{word-spacing:31.973760pt;}
.ws3c{word-spacing:32.617920pt;}
.ws5d{word-spacing:32.969280pt;}
.ws47{word-spacing:33.613440pt;}
.ws46{word-spacing:33.906240pt;}
.ws74{word-spacing:34.257600pt;}
.ws52{word-spacing:35.194560pt;}
.ws9c{word-spacing:36.528000pt;}
.ws9d{word-spacing:36.672000pt;}
.ws62{word-spacing:37.127040pt;}
.wsa8{word-spacing:37.968000pt;}
.ws61{word-spacing:38.708160pt;}
.ws71{word-spacing:39.703680pt;}
.ws6f{word-spacing:41.284800pt;}
.ws31{word-spacing:42.865920pt;}
.ws5a{word-spacing:45.735360pt;}
.ws78{word-spacing:47.375040pt;}
.ws70{word-spacing:51.532800pt;}
.ws20{word-spacing:55.339200pt;}
.ws77{word-spacing:56.978880pt;}
.ws85{word-spacing:82.569600pt;}
.ws97{word-spacing:338.736000pt;}
._b{margin-left:-12.518272pt;}
._9{margin-left:-10.273888pt;}
._c{margin-left:-7.914784pt;}
._a{margin-left:-5.952768pt;}
._e{margin-left:-4.954112pt;}
._8{margin-left:-3.982080pt;}
._d{margin-left:-2.569856pt;}
._2{margin-left:-0.927776pt;}
._1{width:0.904288pt;}
._13{width:2.884576pt;}
._10{width:5.124000pt;}
._f{width:7.027200pt;}
._20{width:8.160000pt;}
._14{width:9.479904pt;}
._12{width:12.288416pt;}
._19{width:13.937280pt;}
._11{width:15.108480pt;}
._1a{width:18.153600pt;}
._1b{width:19.090560pt;}
._16{width:24.595200pt;}
._1d{width:26.996160pt;}
._18{width:34.316160pt;}
._1f{width:36.912000pt;}
._15{width:45.384000pt;}
._17{width:51.347936pt;}
._7{width:52.411200pt;}
._5{width:55.397760pt;}
._1c{width:82.335360pt;}
._0{width:168.067200pt;}
._1e{width:751.734720pt;}
._6{width:753.129920pt;}
._3{width:888.003840pt;}
._4{width:1102.977600pt;}
.fs8{font-size:32.000000pt;}
.fs1{font-size:37.440000pt;}
.fs9{font-size:48.000000pt;}
.fs6{font-size:53.440000pt;}
.fs0{font-size:58.560000pt;}
.fs5{font-size:64.000000pt;}
.fs2{font-size:74.560000pt;}
.fs7{font-size:85.440000pt;}
.fs3{font-size:96.000000pt;}
.fs4{font-size:117.440000pt;}
.y39{bottom:-8.000000pt;}
.y0{bottom:0.000000pt;}
.y5{bottom:4.000000pt;}
.ya{bottom:19.680000pt;}
.y3{bottom:50.316080pt;}
.y15{bottom:50.321680pt;}
.y14{bottom:68.080000pt;}
.y31{bottom:74.080000pt;}
.yd8{bottom:101.760000pt;}
.y6c{bottom:104.320000pt;}
.ya8{bottom:105.760000pt;}
.y3a{bottom:111.120000pt;}
.ya7{bottom:115.520000pt;}
.yd7{bottom:115.524000pt;}
.y2f{bottom:121.032880pt;}
.y35{bottom:126.480000pt;}
.y4{bottom:127.520000pt;}
.y6b{bottom:131.924960pt;}
.ya6{bottom:133.360000pt;}
.ya5{bottom:143.120000pt;}
.y2e{bottom:149.917600pt;}
.y6a{bottom:150.166400pt;}
.y2{bottom:151.756640pt;}
.yd6{bottom:156.956000pt;}
.yfe{bottom:156.960000pt;}
.ya4{bottom:160.960000pt;}
.y69{bottom:168.320000pt;}
.y4e{bottom:170.160000pt;}
.yfd{bottom:170.720000pt;}
.ya3{bottom:170.724000pt;}
.yd5{bottom:174.720000pt;}
.y2d{bottom:178.802320pt;}
.yd4{bottom:184.560000pt;}
.ya2{bottom:188.560000pt;}
.y11{bottom:196.720000pt;}
.yd3{bottom:198.324000pt;}
.ya1{bottom:198.880000pt;}
.y68{bottom:201.113680pt;}
.y4d{bottom:203.120000pt;}
.y2c{bottom:207.687040pt;}
.yd2{bottom:216.160000pt;}
.y67{bottom:217.993600pt;}
.yd1{bottom:225.924000pt;}
.yfc{bottom:226.480000pt;}
.y4c{bottom:233.680000pt;}
.y66{bottom:234.873520pt;}
.ya0{bottom:235.198560pt;}
.y2b{bottom:236.483920pt;}
.yf{bottom:237.839867pt;}
.yd0{bottom:243.760000pt;}
.y9f{bottom:253.451360pt;}
.ycf{bottom:253.524000pt;}
.y65{bottom:263.670400pt;}
.y4b{bottom:264.160000pt;}
.y2a{bottom:265.368640pt;}
.yce{bottom:271.360000pt;}
.y9e{bottom:271.604960pt;}
.ycd{bottom:281.680000pt;}
.yfb{bottom:287.286400pt;}
.y9d{bottom:289.846400pt;}
.y64{bottom:292.555120pt;}
.y29{bottom:294.253360pt;}
.y4a{bottom:294.720000pt;}
.ycc{bottom:302.798560pt;}
.yfa{bottom:305.440000pt;}
.y9c{bottom:308.008480pt;}
.ycb{bottom:321.051360pt;}
.y63{bottom:321.439840pt;}
.y49{bottom:322.560000pt;}
.y28{bottom:323.138080pt;}
.y9b{bottom:326.249920pt;}
.yc{bottom:328.800000pt;}
.yf9{bottom:333.280000pt;}
.yca{bottom:339.204960pt;}
.y9a{bottom:344.403520pt;}
.y62{bottom:350.324560pt;}
.y48{bottom:350.400000pt;}
.y27{bottom:352.022800pt;}
.yc9{bottom:357.446400pt;}
.y99{bottom:362.644960pt;}
.yf8{bottom:364.846080pt;}
.yc8{bottom:375.634640pt;}
.y47{bottom:378.240000pt;}
.y61{bottom:379.209280pt;}
.y98{bottom:380.798560pt;}
.y26{bottom:380.907520pt;}
.yf7{bottom:382.999680pt;}
.yc7{bottom:393.876080pt;}
.y97{bottom:399.068160pt;}
.yf6{bottom:401.241120pt;}
.y9{bottom:405.360000pt;}
.y46{bottom:406.080000pt;}
.y60{bottom:408.094000pt;}
.y132{bottom:408.160000pt;}
.y25{bottom:409.704400pt;}
.yc6{bottom:412.029680pt;}
.y96{bottom:417.221760pt;}
.yf5{bottom:419.394720pt;}
.yc5{bottom:430.271120pt;}
.y131{bottom:433.152000pt;}
.y45{bottom:434.000000pt;}
.y95{bottom:435.463200pt;}
.y5f{bottom:436.890880pt;}
.yf4{bottom:437.636160pt;}
.y24{bottom:438.589120pt;}
.yc4{bottom:448.424720pt;}
.y130{bottom:448.752000pt;}
.y94{bottom:453.616800pt;}
.yf3{bottom:455.789760pt;}
.y44{bottom:461.840000pt;}
.y5e{bottom:465.775600pt;}
.yc3{bottom:466.666160pt;}
.y23{bottom:467.473840pt;}
.y93{bottom:471.858240pt;}
.y12f{bottom:472.356000pt;}
.yf2{bottom:474.031200pt;}
.yc2{bottom:484.819760pt;}
.y12e{bottom:487.956000pt;}
.y43{bottom:489.680000pt;}
.yf1{bottom:492.184800pt;}
.y5d{bottom:494.660320pt;}
.y22{bottom:496.358560pt;}
.y92{bottom:500.655120pt;}
.yb{bottom:501.920000pt;}
.yc1{bottom:503.061200pt;}
.yf0{bottom:510.426240pt;}
.y12d{bottom:511.560000pt;}
.y42{bottom:517.520000pt;}
.y91{bottom:518.896560pt;}
.y5c{bottom:523.545040pt;}
.y21{bottom:525.243280pt;}
.y12c{bottom:527.160000pt;}
.yef{bottom:528.579840pt;}
.yc0{bottom:531.945920pt;}
.y90{bottom:537.050160pt;}
.y113{bottom:539.300080pt;}
.y41{bottom:545.360000pt;}
.yee{bottom:546.821280pt;}
.ybf{bottom:550.099520pt;}
.y12b{bottom:550.764000pt;}
.y5b{bottom:552.429760pt;}
.y20{bottom:554.128000pt;}
.y8f{bottom:555.291600pt;}
.yed{bottom:564.974880pt;}
.y12a{bottom:566.364000pt;}
.y112{bottom:568.184800pt;}
.y40{bottom:573.280000pt;}
.y8e{bottom:573.533040pt;}
.ybe{bottom:578.984240pt;}
.y5a{bottom:581.314480pt;}
.y129{bottom:581.964000pt;}
.y1f{bottom:582.924880pt;}
.yec{bottom:583.216320pt;}
.y111{bottom:586.338400pt;}
.y8d{bottom:591.686640pt;}
.ybd{bottom:597.225680pt;}
.y3f{bottom:601.120000pt;}
.y3b{bottom:601.360000pt;}
.yeb{bottom:601.369920pt;}
.y110{bottom:604.579840pt;}
.y128{bottom:605.568000pt;}
.y8c{bottom:609.928080pt;}
.y59{bottom:610.111360pt;}
.y1e{bottom:611.809600pt;}
.y13{bottom:616.327920pt;}
.ybc{bottom:616.345520pt;}
.yea{bottom:619.611360pt;}
.y127{bottom:621.168000pt;}
.y10f{bottom:622.733440pt;}
.y8b{bottom:628.081680pt;}
.y3e{bottom:628.960000pt;}
.ybb{bottom:634.586960pt;}
.ye9{bottom:637.764960pt;}
.y58{bottom:638.996080pt;}
.y1d{bottom:640.694320pt;}
.y10e{bottom:640.974880pt;}
.y78{bottom:643.600000pt;}
.y126{bottom:644.772000pt;}
.yba{bottom:653.780000pt;}
.ye8{bottom:656.006400pt;}
.y3d{bottom:656.800000pt;}
.y8a{bottom:656.966400pt;}
.y12{bottom:657.520000pt;}
.y10d{bottom:659.128480pt;}
.y125{bottom:660.372000pt;}
.y57{bottom:667.880800pt;}
.y1c{bottom:669.579040pt;}
.y77{bottom:671.216320pt;}
.ye7{bottom:674.160000pt;}
.y89{bottom:675.120000pt;}
.y10c{bottom:677.369920pt;}
.yb9{bottom:683.616320pt;}
.y124{bottom:683.976000pt;}
.y3c{bottom:684.640000pt;}
.y10b{bottom:695.523520pt;}
.y56{bottom:696.765520pt;}
.y1b{bottom:698.463760pt;}
.y76{bottom:698.490640pt;}
.y10{bottom:698.640000pt;}
.yb8{bottom:701.769920pt;}
.ye6{bottom:702.000000pt;}
.y88{bottom:703.920000pt;}
.y123{bottom:707.580000pt;}
.y10a{bottom:713.764960pt;}
.yb7{bottom:720.011360pt;}
.y122{bottom:723.180000pt;}
.y55{bottom:725.650240pt;}
.y1a{bottom:727.348480pt;}
.y109{bottom:731.918560pt;}
.ye5{bottom:733.541280pt;}
.y75{bottom:735.134560pt;}
.yb6{bottom:738.164960pt;}
.y121{bottom:738.780000pt;}
.ye{bottom:739.767920pt;}
.y87{bottom:743.548320pt;}
.y108{bottom:750.160000pt;}
.y34{bottom:751.520000pt;}
.ye4{bottom:751.694880pt;}
.y54{bottom:754.534960pt;}
.yb5{bottom:756.406400pt;}
.y86{bottom:761.789760pt;}
.y120{bottom:762.384000pt;}
.ye3{bottom:769.936320pt;}
.y74{bottom:771.690640pt;}
.yb4{bottom:774.558800pt;}
.y38{bottom:776.976000pt;}
.y11f{bottom:777.984000pt;}
.y107{bottom:778.960000pt;}
.y85{bottom:779.943360pt;}
.yd{bottom:780.960000pt;}
.y53{bottom:783.331840pt;}
.ye2{bottom:788.089920pt;}
.yb3{bottom:792.800240pt;}
.y84{bottom:798.184800pt;}
.y11e{bottom:801.588000pt;}
.ye1{bottom:806.331360pt;}
.y73{bottom:808.246720pt;}
.y37{bottom:810.648000pt;}
.y52{bottom:812.216560pt;}
.y83{bottom:816.338400pt;}
.y11d{bottom:817.188000pt;}
.y106{bottom:818.574880pt;}
.yb2{bottom:821.684960pt;}
.ye0{bottom:824.484960pt;}
.y11c{bottom:832.788000pt;}
.y82{bottom:834.579840pt;}
.y105{bottom:836.728480pt;}
.y72{bottom:836.809360pt;}
.yb1{bottom:839.838560pt;}
.y51{bottom:841.101280pt;}
.ydf{bottom:842.726400pt;}
.y36{bottom:844.320000pt;}
.y81{bottom:852.733440pt;}
.y104{bottom:854.969920pt;}
.y11b{bottom:856.392000pt;}
.yb0{bottom:858.096560pt;}
.yde{bottom:860.880000pt;}
.y71{bottom:865.372000pt;}
.y50{bottom:869.986000pt;}
.y80{bottom:870.974880pt;}
.y11a{bottom:871.992000pt;}
.y103{bottom:873.123520pt;}
.yaf{bottom:876.250160pt;}
.y119{bottom:887.592000pt;}
.y8{bottom:888.399120pt;}
.ydd{bottom:888.720000pt;}
.y7f{bottom:889.128480pt;}
.y102{bottom:891.364960pt;}
.y70{bottom:894.007840pt;}
.yae{bottom:894.491600pt;}
.y4f{bottom:898.870720pt;}
.y7e{bottom:907.369920pt;}
.y101{bottom:909.518560pt;}
.y118{bottom:911.196000pt;}
.yad{bottom:912.645200pt;}
.y30{bottom:918.640000pt;}
.ydc{bottom:920.160000pt;}
.y7{bottom:922.715280pt;}
.y7d{bottom:925.523520pt;}
.y117{bottom:926.796000pt;}
.y19{bottom:927.755440pt;}
.y100{bottom:927.760000pt;}
.y6f{bottom:930.563920pt;}
.y33{bottom:936.314880pt;}
.yac{bottom:941.529920pt;}
.y7c{bottom:943.764960pt;}
.y116{bottom:950.400000pt;}
.y6{bottom:951.600000pt;}
.y18{bottom:956.552320pt;}
.yff{bottom:956.560000pt;}
.ydb{bottom:959.766400pt;}
.yab{bottom:959.771360pt;}
.y7b{bottom:961.918560pt;}
.y32{bottom:962.560000pt;}
.y1{bottom:965.360000pt;}
.y115{bottom:966.000000pt;}
.y6e{bottom:967.120000pt;}
.yaa{bottom:977.924960pt;}
.yda{bottom:977.926720pt;}
.y7a{bottom:980.160000pt;}
.y114{bottom:981.600000pt;}
.y17{bottom:985.437040pt;}
.ya9{bottom:996.166400pt;}
.yd9{bottom:996.168160pt;}
.y6d{bottom:1006.160000pt;}
.y79{bottom:1008.960000pt;}
.y16{bottom:1014.321760pt;}
.h3{height:12.720000pt;}
.h1a{height:27.515625pt;}
.h1c{height:29.951094pt;}
.h4{height:32.193281pt;}
.h13{height:38.905781pt;}
.h1b{height:41.273438pt;}
.h25{height:42.912000pt;}
.h6{height:44.320000pt;}
.h21{height:45.951094pt;}
.h10{height:46.593750pt;}
.h24{height:49.920000pt;}
.h2{height:50.353594pt;}
.h20{height:50.614721pt;}
.h16{height:50.640641pt;}
.h1e{height:50.687041pt;}
.h18{height:50.707841pt;}
.h17{height:50.719361pt;}
.h22{height:50.726401pt;}
.h23{height:50.727681pt;}
.h1d{height:50.746241pt;}
.h1f{height:50.758081pt;}
.h19{height:50.759041pt;}
.ha{height:52.352640pt;}
.h11{height:55.031250pt;}
.h15{height:58.156800pt;}
.h12{height:64.111406pt;}
.h14{height:66.643200pt;}
.hc{height:66.656640pt;}
.h5{height:66.660160pt;}
.h7{height:85.824000pt;}
.hb{height:104.160000pt;}
.he{height:104.927360pt;}
.h9{height:104.991360pt;}
.hd{height:151.120000pt;}
.h8{height:353.440000pt;}
.hf{height:616.400000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w2{width:81.440000pt;}
.w7{width:222.080000pt;}
.w8{width:347.040000pt;}
.w3{width:421.360000pt;}
.w5{width:444.000000pt;}
.w4{width:526.960000pt;}
.w6{width:588.240000pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x4{left:9.600000pt;}
.x17{left:45.360000pt;}
.x12{left:66.240000pt;}
.x5{left:94.480000pt;}
.x11{left:104.560000pt;}
.x20{left:109.061440pt;}
.x21{left:118.320000pt;}
.x13{left:119.760000pt;}
.x3{left:126.160000pt;}
.x23{left:142.465440pt;}
.x16{left:161.040000pt;}
.x1d{left:170.640000pt;}
.x8{left:171.840000pt;}
.xa{left:189.440000pt;}
.x14{left:198.552000pt;}
.x9{left:203.680000pt;}
.xe{left:223.760000pt;}
.x1c{left:234.000000pt;}
.xb{left:237.619760pt;}
.x1a{left:260.640000pt;}
.x15{left:275.040000pt;}
.x6{left:277.440000pt;}
.x19{left:278.400000pt;}
.x7{left:283.520000pt;}
.x22{left:286.480000pt;}
.x1b{left:319.280000pt;}
.x1{left:321.200000pt;}
.x18{left:373.520000pt;}
.x1e{left:384.880000pt;}
.x1f{left:394.480000pt;}
.xf{left:410.636400pt;}
.x2{left:425.993120pt;}
.xd{left:432.240000pt;}
.xc{left:524.240000pt;}
.x10{left:552.492400pt;}
}




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