
    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_a849f2c87326557d1db10a6b.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.929000;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_b92d73f2a366ed9a7b1b3d32.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.935000;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_4b162baed1ee4304e419a787.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_0e01c82c564e185f828e2ded.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.084961;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_a83c362c5a8f85b2291f7cc1.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_4028545e0b9461ef23be51ee.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_9b6a813757de77182beffe4a.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_afdcd9be094d96dd6e7c5642.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.687500;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_8b5084866a5d672014a797c8.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.084961;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_be937964384117c0c5392808.woff2')format("woff");}.ffa{font-family:ffa;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;}
.m2{transform:matrix(0.247882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247882,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.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:-29.880600px;}
.v3{vertical-align:-20.743920px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:29.936160px;}
.v5{vertical-align:51.102000px;}
.v4{vertical-align:60.120000px;}
.ls3a{letter-spacing:-0.901800px;}
.ls39{letter-spacing:-0.841680px;}
.ls36{letter-spacing:-0.781560px;}
.ls1f{letter-spacing:-0.661320px;}
.ls3c{letter-spacing:-0.480960px;}
.lsa{letter-spacing:-0.378000px;}
.ls35{letter-spacing:-0.360720px;}
.ls7{letter-spacing:-0.300600px;}
.ls38{letter-spacing:-0.287280px;}
.ls2c{letter-spacing:-0.240480px;}
.ls1b{letter-spacing:-0.180360px;}
.ls9{letter-spacing:-0.162000px;}
.ls37{letter-spacing:-0.143640px;}
.ls6{letter-spacing:-0.120240px;}
.ls3f{letter-spacing:-0.119520px;}
.ls3d{letter-spacing:-0.108000px;}
.ls8{letter-spacing:-0.060120px;}
.ls2b{letter-spacing:-0.038880px;}
.ls0{letter-spacing:0.000000px;}
.ls20{letter-spacing:0.030060px;}
.ls26{letter-spacing:0.036072px;}
.ls22{letter-spacing:0.042084px;}
.ls34{letter-spacing:0.053280px;}
.ls3{letter-spacing:0.060120px;}
.lse{letter-spacing:0.065880px;}
.ls2e{letter-spacing:0.072144px;}
.ls1{letter-spacing:0.078156px;}
.ls2d{letter-spacing:0.102204px;}
.ls5{letter-spacing:0.108000px;}
.ls4{letter-spacing:0.120240px;}
.ls30{letter-spacing:0.140040px;}
.ls2f{letter-spacing:0.143640px;}
.ls33{letter-spacing:0.180000px;}
.lsb{letter-spacing:0.180360px;}
.ls29{letter-spacing:0.191880px;}
.ls27{letter-spacing:0.204480px;}
.ls32{letter-spacing:0.206640px;}
.ls3e{letter-spacing:0.259920px;}
.ls1c{letter-spacing:4.088160px;}
.ls1e{letter-spacing:4.509000px;}
.ls24{letter-spacing:9.805572px;}
.ls2a{letter-spacing:13.527000px;}
.ls2{letter-spacing:15.330600px;}
.ls28{letter-spacing:28.617120px;}
.ls10{letter-spacing:29.391120px;}
.ls23{letter-spacing:36.102240px;}
.ls25{letter-spacing:36.913680px;}
.ls11{letter-spacing:39.528000px;}
.ls21{letter-spacing:58.556880px;}
.ls1d{letter-spacing:70.039800px;}
.lsf{letter-spacing:76.223160px;}
.ls1a{letter-spacing:78.336360px;}
.ls13{letter-spacing:93.408444px;}
.ls14{letter-spacing:106.773120px;}
.ls15{letter-spacing:130.159800px;}
.ls31{letter-spacing:167.975280px;}
.ls16{letter-spacing:230.259600px;}
.ls19{letter-spacing:243.546120px;}
.ls17{letter-spacing:250.399800px;}
.ls18{letter-spacing:310.159080px;}
.ls3b{letter-spacing:358.796160px;}
.ls12{letter-spacing:847.271160px;}
.lsc{letter-spacing:1610.494560px;}
.lsd{letter-spacing:2383.758000px;}
.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;}
}
.ws21{word-spacing:-60.120000px;}
.ws0{word-spacing:-30.024000px;}
.ws1c{word-spacing:-18.380520px;}
.wsa{word-spacing:-16.893720px;}
.ws81{word-spacing:-16.853400px;}
.ws20{word-spacing:-16.833600px;}
.ws4{word-spacing:-16.773480px;}
.ws5{word-spacing:-16.713360px;}
.ws8{word-spacing:-16.653240px;}
.ws2{word-spacing:-16.593120px;}
.ws1f{word-spacing:-16.533000px;}
.ws8d{word-spacing:-16.493760px;}
.ws6c{word-spacing:-16.472880px;}
.ws9{word-spacing:-16.412760px;}
.ws7d{word-spacing:-16.352640px;}
.ws8a{word-spacing:-16.232400px;}
.ws3f{word-spacing:-16.052040px;}
.ws80{word-spacing:-15.871680px;}
.ws6{word-spacing:-14.850000px;}
.ws7{word-spacing:-14.634000px;}
.ws7f{word-spacing:-13.310640px;}
.ws7e{word-spacing:-13.167000px;}
.ws3{word-spacing:-10.808640px;}
.ws6b{word-spacing:-10.769760px;}
.ws8c{word-spacing:-0.601200px;}
.ws1a{word-spacing:-0.541080px;}
.ws6d{word-spacing:-0.480960px;}
.ws1d{word-spacing:-0.395280px;}
.ws88{word-spacing:-0.240480px;}
.ws10{word-spacing:-0.180360px;}
.ws19{word-spacing:-0.120240px;}
.ws5f{word-spacing:-0.072000px;}
.ws1e{word-spacing:-0.065880px;}
.wsf{word-spacing:-0.060120px;}
.ws1{word-spacing:0.000000px;}
.ws8f{word-spacing:0.059760px;}
.ws87{word-spacing:0.060120px;}
.ws17{word-spacing:0.108000px;}
.ws1b{word-spacing:0.120240px;}
.ws84{word-spacing:0.143640px;}
.ws16{word-spacing:0.180360px;}
.ws8b{word-spacing:0.216000px;}
.ws18{word-spacing:0.270000px;}
.ws83{word-spacing:0.287280px;}
.ws30{word-spacing:0.300600px;}
.ws85{word-spacing:0.430920px;}
.ws62{word-spacing:0.541080px;}
.ws86{word-spacing:0.661320px;}
.ws8e{word-spacing:0.776880px;}
.ws82{word-spacing:0.781560px;}
.ws89{word-spacing:0.841680px;}
.ws2a{word-spacing:0.901800px;}
.ws3e{word-spacing:1.262520px;}
.ws7b{word-spacing:1.623240px;}
.ws6a{word-spacing:1.983960px;}
.ws69{word-spacing:2.344680px;}
.ws3a{word-spacing:2.705400px;}
.ws5e{word-spacing:3.066120px;}
.ws2e{word-spacing:3.366720px;}
.ws2f{word-spacing:3.426840px;}
.ws48{word-spacing:3.787560px;}
.ws47{word-spacing:4.148280px;}
.ws4e{word-spacing:4.509000px;}
.ws4f{word-spacing:4.809600px;}
.ws32{word-spacing:5.170320px;}
.ws31{word-spacing:5.531040px;}
.ws38{word-spacing:6.252480px;}
.ws70{word-spacing:6.613200px;}
.ws66{word-spacing:6.973920px;}
.ws78{word-spacing:7.094160px;}
.ws65{word-spacing:7.334640px;}
.ws53{word-spacing:7.695360px;}
.ws64{word-spacing:8.056080px;}
.ws52{word-spacing:8.176320px;}
.ws4c{word-spacing:8.416800px;}
.ws54{word-spacing:8.777520px;}
.ws35{word-spacing:9.498960px;}
.ws4b{word-spacing:9.859680px;}
.ws50{word-spacing:10.220400px;}
.ws4a{word-spacing:10.581120px;}
.ws15{word-spacing:10.941840px;}
.ws42{word-spacing:11.302560px;}
.ws60{word-spacing:11.663280px;}
.ws22{word-spacing:12.024000px;}
.ws46{word-spacing:12.384720px;}
.ws29{word-spacing:12.745440px;}
.ws25{word-spacing:13.466880px;}
.ws2c{word-spacing:13.827600px;}
.ws59{word-spacing:14.188320px;}
.ws3d{word-spacing:14.549040px;}
.ws39{word-spacing:14.909760px;}
.wsd{word-spacing:15.270480px;}
.ws13{word-spacing:15.390720px;}
.wse{word-spacing:15.450840px;}
.ws14{word-spacing:15.631200px;}
.ws43{word-spacing:15.991920px;}
.ws75{word-spacing:16.352640px;}
.ws73{word-spacing:16.713360px;}
.ws74{word-spacing:16.773480px;}
.ws5a{word-spacing:17.074080px;}
.ws37{word-spacing:17.434800px;}
.ws7c{word-spacing:17.795520px;}
.ws45{word-spacing:18.156240px;}
.ws5d{word-spacing:18.516960px;}
.ws63{word-spacing:19.959840px;}
.ws28{word-spacing:20.320560px;}
.ws6f{word-spacing:20.681280px;}
.ws56{word-spacing:21.402720px;}
.ws51{word-spacing:21.763440px;}
.ws57{word-spacing:22.124160px;}
.ws12{word-spacing:22.484880px;}
.ws11{word-spacing:22.845600px;}
.ws36{word-spacing:23.206320px;}
.ws3b{word-spacing:23.927760px;}
.ws49{word-spacing:24.288480px;}
.ws44{word-spacing:24.649200px;}
.ws27{word-spacing:25.370640px;}
.ws76{word-spacing:25.731360px;}
.ws4d{word-spacing:26.813520px;}
.ws3c{word-spacing:27.174240px;}
.ws67{word-spacing:27.534960px;}
.ws72{word-spacing:28.256400px;}
.ws26{word-spacing:28.617120px;}
.ws33{word-spacing:29.699280px;}
.ws68{word-spacing:30.060000px;}
.wsc{word-spacing:30.420720px;}
.wsb{word-spacing:30.781440px;}
.ws2d{word-spacing:31.863600px;}
.ws71{word-spacing:33.667200px;}
.ws34{word-spacing:36.492840px;}
.ws61{word-spacing:37.214280px;}
.ws6e{word-spacing:39.017880px;}
.ws24{word-spacing:40.821480px;}
.ws79{word-spacing:44.789400px;}
.ws7a{word-spacing:45.150120px;}
.ws55{word-spacing:46.232280px;}
.ws5c{word-spacing:46.593000px;}
.ws5b{word-spacing:46.953720px;}
.ws23{word-spacing:52.725240px;}
.ws58{word-spacing:53.085960px;}
.ws2b{word-spacing:59.218200px;}
.ws41{word-spacing:77.915520px;}
.ws40{word-spacing:78.396480px;}
.ws77{word-spacing:80.801280px;}
._6{margin-left:-14.400000px;}
._19{margin-left:-12.937320px;}
._7{margin-left:-10.800000px;}
._2{margin-left:-8.280000px;}
._5{margin-left:-7.214400px;}
._4{margin-left:-5.400000px;}
._1{margin-left:-3.600000px;}
._0{margin-left:-1.440000px;}
._3{width:1.440000px;}
._8{width:2.880000px;}
._f{width:4.566240px;}
._17{width:6.487200px;}
._15{width:7.818480px;}
._b{width:10.758600px;}
._1b{width:11.774880px;}
._9{width:15.382080px;}
._12{width:20.727000px;}
._a{width:22.118400px;}
._16{width:25.473600px;}
._14{width:28.676520px;}
._13{width:30.228840px;}
._11{width:36.102240px;}
._18{width:45.213120px;}
._10{width:46.770480px;}
._d{width:58.974840px;}
._e{width:70.340400px;}
._c{width:72.863280px;}
._1a{width:847.271160px;}
.fc1{color:rgb(255,0,0);}
.fc0{color:rgb(0,0,0);}
.fsa{font-size:24.120000px;}
.fs6{font-size:38.880000px;}
.fs7{font-size:47.880000px;}
.fs8{font-size:54.000000px;}
.fsb{font-size:59.760000px;}
.fs5{font-size:60.120000px;}
.fs9{font-size:65.880000px;}
.fs0{font-size:72.000000px;}
.fs4{font-size:108.000000px;}
.fs3{font-size:144.000000px;}
.fs2{font-size:180.000000px;}
.fs1{font-size:216.000000px;}
.y0{bottom:0.000000px;}
.y17e{bottom:2.700000px;}
.y1c2{bottom:2.970000px;}
.y1a5{bottom:3.060000px;}
.yd7{bottom:3.329850px;}
.y33{bottom:3.330000px;}
.y181{bottom:3.420000px;}
.y1c4{bottom:5.130000px;}
.y167{bottom:20.520000px;}
.y183{bottom:20.610000px;}
.y180{bottom:20.700000px;}
.y1c3{bottom:22.410000px;}
.y5f{bottom:42.390000px;}
.y9{bottom:45.893520px;}
.y35{bottom:45.900000px;}
.y1b0{bottom:55.890000px;}
.y1ed{bottom:66.780000px;}
.y1d8{bottom:72.360000px;}
.y32{bottom:85.140000px;}
.y1d2{bottom:89.550000px;}
.y1b9{bottom:91.080000px;}
.y93{bottom:93.099060px;}
.y1ec{bottom:94.320000px;}
.y1c8{bottom:94.687740px;}
.y1f0{bottom:99.365580px;}
.y31{bottom:105.703920px;}
.y1dd{bottom:106.919850px;}
.y1c7{bottom:108.549000px;}
.y128{bottom:110.319840px;}
.y92{bottom:110.383560px;}
.y1c6{bottom:122.314500px;}
.y1ef{bottom:122.940900px;}
.y30{bottom:122.988420px;}
.y127{bottom:127.604340px;}
.y91{bottom:127.668060px;}
.yc5{bottom:129.110850px;}
.y1c5{bottom:136.080000px;}
.y2f{bottom:140.182740px;}
.y1ee{bottom:141.840000px;}
.y90{bottom:144.862380px;}
.y126{bottom:144.888840px;}
.yc4{bottom:146.305170px;}
.y1c1{bottom:147.960000px;}
.y185{bottom:150.120000px;}
.y2e{bottom:157.377060px;}
.yf5{bottom:159.565680px;}
.y8f{bottom:162.146880px;}
.y1c0{bottom:165.960000px;}
.y125{bottom:166.486950px;}
.yc3{bottom:167.993460px;}
.y2d{bottom:174.661560px;}
.yf4{bottom:176.760000px;}
.y8e{bottom:179.341200px;}
.y1bf{bottom:184.950000px;}
.y2c{bottom:191.946060px;}
.y8d{bottom:196.625700px;}
.y124{bottom:197.358570px;}
.yf3{bottom:198.720000px;}
.yc2{bottom:198.865080px;}
.y1be{bottom:201.240000px;}
.y2b{bottom:209.230560px;}
.y8c{bottom:213.910200px;}
.y123{bottom:214.643070px;}
.yc1{bottom:216.059400px;}
.y1b8{bottom:220.230000px;}
.y2a{bottom:226.424880px;}
.yf2{bottom:231.007860px;}
.y8b{bottom:231.104520px;}
.y122{bottom:236.241180px;}
.yc0{bottom:237.747690px;}
.y29{bottom:243.709380px;}
.yf1{bottom:248.202180px;}
.y8a{bottom:248.389020px;}
.y1bd{bottom:255.510000px;}
.y28{bottom:260.993880px;}
.yf0{bottom:265.486680px;}
.y121{bottom:267.112800px;}
.ybf{bottom:268.619310px;}
.y89{bottom:270.167490px;}
.y1b7{bottom:270.632880px;}
.y1bb{bottom:276.835500px;}
.y27{bottom:278.188200px;}
.yef{bottom:282.771180px;}
.y120{bottom:284.397300px;}
.ybe{bottom:285.813630px;}
.y88{bottom:287.361810px;}
.y1bc{bottom:290.700000px;}
.y1b6{bottom:291.960450px;}
.y1ba{bottom:294.120000px;}
.y26{bottom:295.472700px;}
.y18e{bottom:298.890000px;}
.yee{bottom:299.965500px;}
.y87{bottom:304.646310px;}
.y11f{bottom:306.085590px;}
.y1b5{bottom:306.900270px;}
.ybd{bottom:307.501920px;}
.y25{bottom:312.667020px;}
.yed{bottom:317.250000px;}
.y11e{bottom:327.864060px;}
.y1b4{bottom:329.310000px;}
.y24{bottom:329.861340px;}
.y86{bottom:335.067030px;}
.ybc{bottom:338.283360px;}
.yec{bottom:339.210000px;}
.y23{bottom:343.899360px;}
.y1b3{bottom:343.980000px;}
.y11d{bottom:345.829860px;}
.ybb{bottom:355.567860px;}
.y58{bottom:357.300000px;}
.y85{bottom:361.880550px;}
.y11c{bottom:365.804730px;}
.yeb{bottom:371.492730px;}
.yba{bottom:372.852360px;}
.y57{bottom:374.948550px;}
.y1af{bottom:379.170000px;}
.y11b{bottom:382.999050px;}
.y84{bottom:384.651000px;}
.yea{bottom:388.687050px;}
.yb9{bottom:390.046680px;}
.y56{bottom:398.434770px;}
.y11a{bottom:400.283550px;}
.y83{bottom:406.429470px;}
.yb8{bottom:407.331180px;}
.ye9{bottom:410.465520px;}
.y1b2{bottom:414.450000px;}
.y119{bottom:417.568050px;}
.y1b1{bottom:417.870000px;}
.y55{bottom:421.920990px;}
.y82{bottom:423.623790px;}
.yb7{bottom:424.615680px;}
.ye8{bottom:433.235970px;}
.y118{bottom:434.762370px;}
.y1ab{bottom:435.960180px;}
.y81{bottom:440.908290px;}
.yb6{bottom:441.810000px;}
.y1ad{bottom:444.963150px;}
.y54{bottom:445.324860px;}
.y1ae{bottom:449.730000px;}
.y1aa{bottom:450.900000px;}
.ye7{bottom:456.006420px;}
.y117{bottom:456.540840px;}
.y80{bottom:458.192790px;}
.yb5{bottom:463.770000px;}
.y1a9{bottom:465.930000px;}
.y1ac{bottom:466.200540px;}
.y53{bottom:468.811080px;}
.y116{bottom:473.735160px;}
.y14b{bottom:474.739740px;}
.y7f{bottom:475.387110px;}
.ye6{bottom:478.776870px;}
.y1a4{bottom:484.920000px;}
.y115{bottom:491.019660px;}
.y1a7{bottom:491.214600px;}
.y52{bottom:492.297300px;}
.y1a3{bottom:494.280000px;}
.yb4{bottom:496.029330px;}
.y14a{bottom:496.608390px;}
.ye5{bottom:501.547320px;}
.y7e{bottom:505.807830px;}
.y1a6{bottom:508.950000px;}
.y1a2{bottom:509.310000px;}
.y1a8{bottom:509.310720px;}
.y114{bottom:512.798130px;}
.yb3{bottom:513.313830px;}
.y149{bottom:513.802710px;}
.y51{bottom:515.520000px;}
.ye4{bottom:524.227590px;}
.y18d{bottom:528.300000px;}
.y113{bottom:529.992450px;}
.y22{bottom:530.737290px;}
.y7d{bottom:532.711530px;}
.yb2{bottom:534.911940px;}
.y148{bottom:535.581180px;}
.y1a0{bottom:535.853520px;}
.y1a1{bottom:535.860000px;}
.y50{bottom:537.210000px;}
.ye3{bottom:546.998040px;}
.y21{bottom:547.931610px;}
.y19f{bottom:550.792080px;}
.y112{bottom:551.680740px;}
.y147{bottom:552.865680px;}
.y4f{bottom:558.990000px;}
.y7c{bottom:559.525050px;}
.y20{bottom:565.216110px;}
.yb1{bottom:565.783560px;}
.y19e{bottom:565.826400px;}
.ye2{bottom:569.768490px;}
.y146{bottom:570.060000px;}
.y4e{bottom:580.770000px;}
.y19d{bottom:580.860720px;}
.y7b{bottom:582.295500px;}
.y1f{bottom:582.500610px;}
.y111{bottom:582.552360px;}
.yb0{bottom:582.977880px;}
.ye1{bottom:587.052990px;}
.y145{bottom:592.020000px;}
.y7a{bottom:599.580000px;}
.y110{bottom:599.746680px;}
.y19b{bottom:600.256530px;}
.y19c{bottom:600.300000px;}
.y4d{bottom:602.460000px;}
.yaf{bottom:604.756350px;}
.y1e{bottom:608.697900px;}
.ye0{bottom:609.823440px;}
.y10f{bottom:617.031180px;}
.y19a{bottom:620.141220px;}
.y79{bottom:621.540000px;}
.yae{bottom:622.040850px;}
.y144{bottom:624.321180px;}
.y4c{bottom:624.518550px;}
.ydf{bottom:632.503710px;}
.y10e{bottom:634.315680px;}
.y199{bottom:637.425720px;}
.y143{bottom:641.515500px;}
.yad{bottom:643.729140px;}
.y1d{bottom:643.973310px;}
.y4b{bottom:648.004770px;}
.yde{bottom:649.788210px;}
.y10d{bottom:651.510000px;}
.y198{bottom:654.620040px;}
.y78{bottom:658.201590px;}
.y142{bottom:658.800000px;}
.yac{bottom:661.013640px;}
.y164{bottom:671.335560px;}
.y4a{bottom:671.490990px;}
.ydd{bottom:671.566680px;}
.y197{bottom:671.904540px;}
.y10c{bottom:673.470000px;}
.y77{bottom:675.486090px;}
.yab{bottom:678.298140px;}
.y1c{bottom:679.248720px;}
.y141{bottom:680.760000px;}
.ydc{bottom:688.761000px;}
.y196{bottom:689.189040px;}
.y76{bottom:692.680410px;}
.y163{bottom:693.114030px;}
.y49{bottom:694.977210px;}
.yaa{bottom:695.492460px;}
.y10b{bottom:705.734370px;}
.ydb{bottom:706.045500px;}
.y195{bottom:706.383360px;}
.y162{bottom:710.398530px;}
.y140{bottom:713.061180px;}
.y1b{bottom:714.433950px;}
.ya9{bottom:717.270930px;}
.y1eb{bottom:718.201530px;}
.y48{bottom:718.381080px;}
.y73{bottom:718.877700px;}
.y75{bottom:718.967880px;}
.y10a{bottom:723.018870px;}
.yda{bottom:723.330000px;}
.y194{bottom:723.667860px;}
.y7{bottom:724.970100px;}
.y161{bottom:727.592850px;}
.y13f{bottom:730.255500px;}
.y72{bottom:736.162200px;}
.y74{bottom:736.252380px;}
.ya8{bottom:738.959220px;}
.y1ea{bottom:739.980000px;}
.y193{bottom:740.952360px;}
.y47{bottom:741.867300px;}
.y160{bottom:744.877350px;}
.yd9{bottom:745.200000px;}
.y109{bottom:745.699140px;}
.y13e{bottom:747.540000px;}
.y1a{bottom:749.709360px;}
.y192{bottom:758.146680px;}
.y1dc{bottom:759.060000px;}
.y71{bottom:762.359490px;}
.y108{bottom:762.983640px;}
.y46{bottom:765.090000px;}
.y1e8{bottom:765.886680px;}
.y15f{bottom:767.647800px;}
.y13d{bottom:769.500000px;}
.ya7{bottom:769.740660px;}
.y6{bottom:772.370100px;}
.yd8{bottom:774.900000px;}
.y191{bottom:775.431180px;}
.y18a{bottom:775.886400px;}
.y1e2{bottom:779.652180px;}
.y1e7{bottom:783.171180px;}
.y15e{bottom:784.932300px;}
.y19{bottom:784.984770px;}
.y107{bottom:785.754090px;}
.y45{bottom:786.780000px;}
.ya6{bottom:787.025160px;}
.y70{bottom:788.722110px;}
.y18c{bottom:790.465500px;}
.y190{bottom:792.625500px;}
.y189{bottom:792.720000px;}
.yd6{bottom:792.900000px;}
.y1e1{bottom:796.936680px;}
.y1e6{bottom:800.365500px;}
.y13c{bottom:801.702540px;}
.ya5{bottom:804.309660px;}
.y18b{bottom:805.495500px;}
.y6f{bottom:806.006610px;}
.y15d{bottom:807.612570px;}
.y188{bottom:807.750000px;}
.y106{bottom:808.524540px;}
.y44{bottom:808.560000px;}
.y18f{bottom:809.910000px;}
.yd5{bottom:814.196880px;}
.y1e0{bottom:814.221180px;}
.y1e5{bottom:817.650000px;}
.y13b{bottom:818.987040px;}
.y18{bottom:820.170000px;}
.y187{bottom:822.780000px;}
.y6e{bottom:823.110750px;}
.y15c{bottom:824.897070px;}
.y105{bottom:825.718860px;}
.ya4{bottom:825.997950px;}
.y43{bottom:830.340000px;}
.y1df{bottom:831.415500px;}
.y1e9{bottom:831.420000px;}
.yd4{bottom:831.481380px;}
.y1e4{bottom:834.484500px;}
.y13a{bottom:836.271540px;}
.y17d{bottom:841.770000px;}
.y104{bottom:843.003360px;}
.ya3{bottom:843.282450px;}
.y15b{bottom:847.667520px;}
.y1de{bottom:848.700000px;}
.yd3{bottom:848.765880px;}
.y6b{bottom:849.383190px;}
.y6d{bottom:849.473370px;}
.y1e3{bottom:850.050000px;}
.y42{bottom:852.396120px;}
.y139{bottom:857.869650px;}
.y17c{bottom:858.339000px;}
.ya2{bottom:860.566950px;}
.y17{bottom:862.920000px;}
.y15a{bottom:864.952020px;}
.y103{bottom:865.773810px;}
.y6a{bottom:866.667690px;}
.y6c{bottom:866.757870px;}
.yd2{bottom:870.363990px;}
.y17b{bottom:872.104500px;}
.y41{bottom:875.520000px;}
.y4{bottom:875.905500px;}
.ya1{bottom:877.761270px;}
.y16{bottom:880.200000px;}
.y1d7{bottom:880.560000px;}
.y102{bottom:883.058310px;}
.y17a{bottom:885.870000px;}
.y159{bottom:887.632290px;}
.y138{bottom:888.741270px;}
.y69{bottom:892.955160px;}
.y15{bottom:895.950000px;}
.y40{bottom:897.300000px;}
.ya0{bottom:899.449560px;}
.y101{bottom:900.252630px;}
.y1db{bottom:901.161000px;}
.yd1{bottom:901.235610px;}
.y179{bottom:904.230000px;}
.y178{bottom:904.237740px;}
.y158{bottom:904.916790px;}
.y137{bottom:906.025770px;}
.y68{bottom:910.149480px;}
.y177{bottom:918.003240px;}
.y1da{bottom:918.445500px;}
.yd0{bottom:918.520110px;}
.y3f{bottom:919.080000px;}
.y14{bottom:919.440630px;}
.y100{bottom:922.031100px;}
.y157{bottom:922.201290px;}
.y136{bottom:923.220090px;}
.y9f{bottom:930.321180px;}
.y176{bottom:931.768740px;}
.ycf{bottom:935.714430px;}
.y1d9{bottom:935.730000px;}
.y67{bottom:936.421920px;}
.yff{bottom:939.315600px;}
.y135{bottom:940.504590px;}
.y3e{bottom:941.037300px;}
.y156{bottom:944.971740px;}
.y175{bottom:945.630000px;}
.y9e{bottom:947.515500px;}
.yce{bottom:952.998930px;}
.y13{bottom:954.716040px;}
.y134{bottom:960.715980px;}
.yfe{bottom:961.003890px;}
.y155{bottom:962.166060px;}
.y66{bottom:962.709390px;}
.y174{bottom:963.900000px;}
.y173{bottom:963.903240px;}
.y3d{bottom:964.260000px;}
.y9d{bottom:964.800000px;}
.y1d1{bottom:967.590000px;}
.y186{bottom:974.610000px;}
.ycd{bottom:974.687220px;}
.y172{bottom:977.668740px;}
.y133{bottom:977.910300px;}
.yfd{bottom:978.288390px;}
.y65{bottom:979.993890px;}
.y154{bottom:984.936510px;}
.y3c{bottom:986.040000px;}
.y9c{bottom:986.760000px;}
.y1d6{bottom:988.186680px;}
.y12{bottom:989.991450px;}
.y171{bottom:991.530000px;}
.y64{bottom:997.188210px;}
.y132{bottom:999.688770px;}
.yfc{bottom:999.976680px;}
.y153{bottom:1002.221010px;}
.y1d5{bottom:1005.381000px;}
.ycc{bottom:1005.468660px;}
.y184{bottom:1006.470000px;}
.y11{bottom:1007.185770px;}
.y3b{bottom:1007.730000px;}
.y170{bottom:1009.800000px;}
.y16f{bottom:1009.803240px;}
.y131{bottom:1016.973270px;}
.yfb{bottom:1017.261180px;}
.y9b{bottom:1018.968210px;}
.y1d4{bottom:1022.665500px;}
.ycb{bottom:1022.753160px;}
.y63{bottom:1023.475680px;}
.y16e{bottom:1023.568740px;}
.y10{bottom:1024.470270px;}
.y152{bottom:1024.991460px;}
.y3a{bottom:1029.794040px;}
.y130{bottom:1034.167590px;}
.yfa{bottom:1034.545680px;}
.y16d{bottom:1037.430000px;}
.y1d3{bottom:1039.950000px;}
.y62{bottom:1040.670000px;}
.y9a{bottom:1040.746680px;}
.y182{bottom:1041.750000px;}
.yf{bottom:1041.754770px;}
.y151{bottom:1042.185780px;}
.yca{bottom:1044.441450px;}
.yf9{bottom:1051.740000px;}
.y39{bottom:1053.280260px;}
.y12f{bottom:1055.946060px;}
.y16c{bottom:1056.321720px;}
.y99{bottom:1058.031180px;}
.y5e{bottom:1059.120000px;}
.y16a{bottom:1060.470000px;}
.y150{bottom:1064.956230px;}
.y61{bottom:1067.035680px;}
.y1cd{bottom:1071.810000px;}
.y12e{bottom:1073.230560px;}
.y16b{bottom:1073.245500px;}
.yf8{bottom:1073.700000px;}
.yc9{bottom:1075.222890px;}
.y98{bottom:1075.225500px;}
.y169{bottom:1075.500000px;}
.y38{bottom:1076.766480px;}
.ye{bottom:1076.935500px;}
.y17f{bottom:1076.940000px;}
.y14f{bottom:1082.240730px;}
.y2{bottom:1083.911850px;}
.y60{bottom:1084.230000px;}
.y12d{bottom:1090.424880px;}
.y168{bottom:1090.530000px;}
.y1cf{bottom:1092.411000px;}
.y1cc{bottom:1092.415500px;}
.yc8{bottom:1092.507390px;}
.y97{bottom:1092.510000px;}
.yd{bottom:1094.205960px;}
.y1ce{bottom:1096.920000px;}
.y14e{bottom:1099.435050px;}
.y37{bottom:1100.252700px;}
.y5c{bottom:1101.417030px;}
.y1{bottom:1105.511850px;}
.yf7{bottom:1106.001180px;}
.y3{bottom:1107.401850px;}
.y12c{bottom:1107.709380px;}
.y1d0{bottom:1109.695500px;}
.y1cb{bottom:1109.700000px;}
.yc7{bottom:1109.791890px;}
.yc{bottom:1111.490460px;}
.y166{bottom:1112.220000px;}
.y96{bottom:1114.470000px;}
.y14d{bottom:1116.719550px;}
.y5b{bottom:1118.701530px;}
.y5d{bottom:1118.790000px;}
.yf6{bottom:1123.285680px;}
.y12b{bottom:1124.993880px;}
.y36{bottom:1126.440000px;}
.y1ca{bottom:1128.780000px;}
.y1f2{bottom:1128.970620px;}
.y5{bottom:1131.023550px;}
.yc6{bottom:1131.390000px;}
.y14c{bottom:1139.490000px;}
.y5a{bottom:1140.480000px;}
.y12a{bottom:1142.188200px;}
.yb{bottom:1146.675690px;}
.y95{bottom:1146.682170px;}
.y165{bottom:1148.850000px;}
.y59{bottom:1162.440000px;}
.y129{bottom:1163.876490px;}
.y1f1{bottom:1163.885400px;}
.ya{bottom:1163.960190px;}
.y94{bottom:1163.966670px;}
.y1c9{bottom:1166.760000px;}
.y34{bottom:1189.170000px;}
.y8{bottom:1206.450000px;}
.h15{height:17.190000px;}
.h14{height:17.191500px;}
.h18{height:20.739902px;}
.hc{height:33.431484px;}
.h19{height:34.470000px;}
.h1c{height:34.471500px;}
.h1b{height:34.560000px;}
.h24{height:36.270000px;}
.hb{height:41.170254px;}
.h21{height:42.660000px;}
.he{height:43.769004px;}
.h1f{height:46.432617px;}
.h2c{height:51.385430px;}
.h8{height:51.694980px;}
.h17{height:51.831060px;}
.h16{height:51.855540px;}
.h13{height:52.055700px;}
.h2b{height:52.260820px;}
.hd{height:52.575645px;}
.h2{height:53.064000px;}
.h25{height:56.250000px;}
.h11{height:56.647793px;}
.h10{height:57.612832px;}
.ha{height:63.329484px;}
.h9{height:63.367644px;}
.h22{height:69.748500px;}
.h12{height:78.030000px;}
.h6{height:79.596000px;}
.h2a{height:80.460000px;}
.h28{height:86.218500px;}
.h26{height:102.796980px;}
.h27{height:103.410000px;}
.h23{height:104.941500px;}
.h5{height:105.696000px;}
.h20{height:111.814980px;}
.h29{height:120.778500px;}
.h4{height:132.660000px;}
.h3{height:158.544000px;}
.h1d{height:163.980000px;}
.h1a{height:269.730000px;}
.hf{height:286.470000px;}
.h1e{height:312.750000px;}
.h0{height:1262.835000px;}
.h7{height:1262.880000px;}
.h1{height:1263.000000px;}
.w10{width:84.330000px;}
.we{width:125.010000px;}
.wb{width:145.530000px;}
.w8{width:146.251500px;}
.wc{width:148.048500px;}
.w7{width:157.228500px;}
.wf{width:158.671500px;}
.wa{width:188.190000px;}
.w9{width:255.690000px;}
.wd{width:328.771500px;}
.w5{width:347.130000px;}
.w6{width:355.320000px;}
.w11{width:412.200000px;}
.w4{width:552.871500px;}
.w3{width:711.990000px;}
.w0{width:892.914000px;}
.w2{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xd{left:5.310000px;}
.x8{left:8.100000px;}
.x31{left:10.800000px;}
.x25{left:28.620000px;}
.x2f{left:40.770000px;}
.x2d{left:49.050000px;}
.x2a{left:54.090000px;}
.x1{left:74.873700px;}
.x3{left:76.535400px;}
.x7{left:98.280000px;}
.x5{left:106.380000px;}
.x1b{left:115.200000px;}
.xf{left:133.403940px;}
.xa{left:138.240000px;}
.x18{left:157.500000px;}
.x6{left:187.376670px;}
.x30{left:241.380000px;}
.xc{left:244.530000px;}
.xb{left:249.840000px;}
.x1e{left:252.630000px;}
.x10{left:256.680000px;}
.x13{left:264.330270px;}
.x1c{left:393.840000px;}
.x1f{left:401.592330px;}
.x11{left:403.740000px;}
.x14{left:411.473970px;}
.x9{left:413.370000px;}
.xe{left:454.680000px;}
.x15{left:460.260000px;}
.x1a{left:466.560000px;}
.x17{left:499.230000px;}
.x21{left:553.230000px;}
.x4{left:580.293900px;}
.x23{left:581.842440px;}
.x22{left:585.630000px;}
.x24{left:590.214150px;}
.x2b{left:594.000000px;}
.x16{left:597.420000px;}
.x2c{left:598.584150px;}
.x26{left:638.280000px;}
.x12{left:660.240000px;}
.x28{left:666.892440px;}
.x19{left:667.980000px;}
.x27{left:670.680000px;}
.x29{left:675.264150px;}
.x2e{left:679.050000px;}
.x2{left:717.077700px;}
.x1d{left:723.420000px;}
.x20{left:731.079990px;}
@media print{
.v2{vertical-align:-26.560533pt;}
.v3{vertical-align:-18.439040pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:26.609920pt;}
.v5{vertical-align:45.424000pt;}
.v4{vertical-align:53.440000pt;}
.ls3a{letter-spacing:-0.801600pt;}
.ls39{letter-spacing:-0.748160pt;}
.ls36{letter-spacing:-0.694720pt;}
.ls1f{letter-spacing:-0.587840pt;}
.ls3c{letter-spacing:-0.427520pt;}
.lsa{letter-spacing:-0.336000pt;}
.ls35{letter-spacing:-0.320640pt;}
.ls7{letter-spacing:-0.267200pt;}
.ls38{letter-spacing:-0.255360pt;}
.ls2c{letter-spacing:-0.213760pt;}
.ls1b{letter-spacing:-0.160320pt;}
.ls9{letter-spacing:-0.144000pt;}
.ls37{letter-spacing:-0.127680pt;}
.ls6{letter-spacing:-0.106880pt;}
.ls3f{letter-spacing:-0.106240pt;}
.ls3d{letter-spacing:-0.096000pt;}
.ls8{letter-spacing:-0.053440pt;}
.ls2b{letter-spacing:-0.034560pt;}
.ls0{letter-spacing:0.000000pt;}
.ls20{letter-spacing:0.026720pt;}
.ls26{letter-spacing:0.032064pt;}
.ls22{letter-spacing:0.037408pt;}
.ls34{letter-spacing:0.047360pt;}
.ls3{letter-spacing:0.053440pt;}
.lse{letter-spacing:0.058560pt;}
.ls2e{letter-spacing:0.064128pt;}
.ls1{letter-spacing:0.069472pt;}
.ls2d{letter-spacing:0.090848pt;}
.ls5{letter-spacing:0.096000pt;}
.ls4{letter-spacing:0.106880pt;}
.ls30{letter-spacing:0.124480pt;}
.ls2f{letter-spacing:0.127680pt;}
.ls33{letter-spacing:0.160000pt;}
.lsb{letter-spacing:0.160320pt;}
.ls29{letter-spacing:0.170560pt;}
.ls27{letter-spacing:0.181760pt;}
.ls32{letter-spacing:0.183680pt;}
.ls3e{letter-spacing:0.231040pt;}
.ls1c{letter-spacing:3.633920pt;}
.ls1e{letter-spacing:4.008000pt;}
.ls24{letter-spacing:8.716064pt;}
.ls2a{letter-spacing:12.024000pt;}
.ls2{letter-spacing:13.627200pt;}
.ls28{letter-spacing:25.437440pt;}
.ls10{letter-spacing:26.125440pt;}
.ls23{letter-spacing:32.090880pt;}
.ls25{letter-spacing:32.812160pt;}
.ls11{letter-spacing:35.136000pt;}
.ls21{letter-spacing:52.050560pt;}
.ls1d{letter-spacing:62.257600pt;}
.lsf{letter-spacing:67.753920pt;}
.ls1a{letter-spacing:69.632320pt;}
.ls13{letter-spacing:83.029728pt;}
.ls14{letter-spacing:94.909440pt;}
.ls15{letter-spacing:115.697600pt;}
.ls31{letter-spacing:149.311360pt;}
.ls16{letter-spacing:204.675200pt;}
.ls19{letter-spacing:216.485440pt;}
.ls17{letter-spacing:222.577600pt;}
.ls18{letter-spacing:275.696960pt;}
.ls3b{letter-spacing:318.929920pt;}
.ls12{letter-spacing:753.129920pt;}
.lsc{letter-spacing:1431.550720pt;}
.lsd{letter-spacing:2118.896000pt;}
.ws21{word-spacing:-53.440000pt;}
.ws0{word-spacing:-26.688000pt;}
.ws1c{word-spacing:-16.338240pt;}
.wsa{word-spacing:-15.016640pt;}
.ws81{word-spacing:-14.980800pt;}
.ws20{word-spacing:-14.963200pt;}
.ws4{word-spacing:-14.909760pt;}
.ws5{word-spacing:-14.856320pt;}
.ws8{word-spacing:-14.802880pt;}
.ws2{word-spacing:-14.749440pt;}
.ws1f{word-spacing:-14.696000pt;}
.ws8d{word-spacing:-14.661120pt;}
.ws6c{word-spacing:-14.642560pt;}
.ws9{word-spacing:-14.589120pt;}
.ws7d{word-spacing:-14.535680pt;}
.ws8a{word-spacing:-14.428800pt;}
.ws3f{word-spacing:-14.268480pt;}
.ws80{word-spacing:-14.108160pt;}
.ws6{word-spacing:-13.200000pt;}
.ws7{word-spacing:-13.008000pt;}
.ws7f{word-spacing:-11.831680pt;}
.ws7e{word-spacing:-11.704000pt;}
.ws3{word-spacing:-9.607680pt;}
.ws6b{word-spacing:-9.573120pt;}
.ws8c{word-spacing:-0.534400pt;}
.ws1a{word-spacing:-0.480960pt;}
.ws6d{word-spacing:-0.427520pt;}
.ws1d{word-spacing:-0.351360pt;}
.ws88{word-spacing:-0.213760pt;}
.ws10{word-spacing:-0.160320pt;}
.ws19{word-spacing:-0.106880pt;}
.ws5f{word-spacing:-0.064000pt;}
.ws1e{word-spacing:-0.058560pt;}
.wsf{word-spacing:-0.053440pt;}
.ws1{word-spacing:0.000000pt;}
.ws8f{word-spacing:0.053120pt;}
.ws87{word-spacing:0.053440pt;}
.ws17{word-spacing:0.096000pt;}
.ws1b{word-spacing:0.106880pt;}
.ws84{word-spacing:0.127680pt;}
.ws16{word-spacing:0.160320pt;}
.ws8b{word-spacing:0.192000pt;}
.ws18{word-spacing:0.240000pt;}
.ws83{word-spacing:0.255360pt;}
.ws30{word-spacing:0.267200pt;}
.ws85{word-spacing:0.383040pt;}
.ws62{word-spacing:0.480960pt;}
.ws86{word-spacing:0.587840pt;}
.ws8e{word-spacing:0.690560pt;}
.ws82{word-spacing:0.694720pt;}
.ws89{word-spacing:0.748160pt;}
.ws2a{word-spacing:0.801600pt;}
.ws3e{word-spacing:1.122240pt;}
.ws7b{word-spacing:1.442880pt;}
.ws6a{word-spacing:1.763520pt;}
.ws69{word-spacing:2.084160pt;}
.ws3a{word-spacing:2.404800pt;}
.ws5e{word-spacing:2.725440pt;}
.ws2e{word-spacing:2.992640pt;}
.ws2f{word-spacing:3.046080pt;}
.ws48{word-spacing:3.366720pt;}
.ws47{word-spacing:3.687360pt;}
.ws4e{word-spacing:4.008000pt;}
.ws4f{word-spacing:4.275200pt;}
.ws32{word-spacing:4.595840pt;}
.ws31{word-spacing:4.916480pt;}
.ws38{word-spacing:5.557760pt;}
.ws70{word-spacing:5.878400pt;}
.ws66{word-spacing:6.199040pt;}
.ws78{word-spacing:6.305920pt;}
.ws65{word-spacing:6.519680pt;}
.ws53{word-spacing:6.840320pt;}
.ws64{word-spacing:7.160960pt;}
.ws52{word-spacing:7.267840pt;}
.ws4c{word-spacing:7.481600pt;}
.ws54{word-spacing:7.802240pt;}
.ws35{word-spacing:8.443520pt;}
.ws4b{word-spacing:8.764160pt;}
.ws50{word-spacing:9.084800pt;}
.ws4a{word-spacing:9.405440pt;}
.ws15{word-spacing:9.726080pt;}
.ws42{word-spacing:10.046720pt;}
.ws60{word-spacing:10.367360pt;}
.ws22{word-spacing:10.688000pt;}
.ws46{word-spacing:11.008640pt;}
.ws29{word-spacing:11.329280pt;}
.ws25{word-spacing:11.970560pt;}
.ws2c{word-spacing:12.291200pt;}
.ws59{word-spacing:12.611840pt;}
.ws3d{word-spacing:12.932480pt;}
.ws39{word-spacing:13.253120pt;}
.wsd{word-spacing:13.573760pt;}
.ws13{word-spacing:13.680640pt;}
.wse{word-spacing:13.734080pt;}
.ws14{word-spacing:13.894400pt;}
.ws43{word-spacing:14.215040pt;}
.ws75{word-spacing:14.535680pt;}
.ws73{word-spacing:14.856320pt;}
.ws74{word-spacing:14.909760pt;}
.ws5a{word-spacing:15.176960pt;}
.ws37{word-spacing:15.497600pt;}
.ws7c{word-spacing:15.818240pt;}
.ws45{word-spacing:16.138880pt;}
.ws5d{word-spacing:16.459520pt;}
.ws63{word-spacing:17.742080pt;}
.ws28{word-spacing:18.062720pt;}
.ws6f{word-spacing:18.383360pt;}
.ws56{word-spacing:19.024640pt;}
.ws51{word-spacing:19.345280pt;}
.ws57{word-spacing:19.665920pt;}
.ws12{word-spacing:19.986560pt;}
.ws11{word-spacing:20.307200pt;}
.ws36{word-spacing:20.627840pt;}
.ws3b{word-spacing:21.269120pt;}
.ws49{word-spacing:21.589760pt;}
.ws44{word-spacing:21.910400pt;}
.ws27{word-spacing:22.551680pt;}
.ws76{word-spacing:22.872320pt;}
.ws4d{word-spacing:23.834240pt;}
.ws3c{word-spacing:24.154880pt;}
.ws67{word-spacing:24.475520pt;}
.ws72{word-spacing:25.116800pt;}
.ws26{word-spacing:25.437440pt;}
.ws33{word-spacing:26.399360pt;}
.ws68{word-spacing:26.720000pt;}
.wsc{word-spacing:27.040640pt;}
.wsb{word-spacing:27.361280pt;}
.ws2d{word-spacing:28.323200pt;}
.ws71{word-spacing:29.926400pt;}
.ws34{word-spacing:32.438080pt;}
.ws61{word-spacing:33.079360pt;}
.ws6e{word-spacing:34.682560pt;}
.ws24{word-spacing:36.285760pt;}
.ws79{word-spacing:39.812800pt;}
.ws7a{word-spacing:40.133440pt;}
.ws55{word-spacing:41.095360pt;}
.ws5c{word-spacing:41.416000pt;}
.ws5b{word-spacing:41.736640pt;}
.ws23{word-spacing:46.866880pt;}
.ws58{word-spacing:47.187520pt;}
.ws2b{word-spacing:52.638400pt;}
.ws41{word-spacing:69.258240pt;}
.ws40{word-spacing:69.685760pt;}
.ws77{word-spacing:71.823360pt;}
._6{margin-left:-12.800000pt;}
._19{margin-left:-11.499840pt;}
._7{margin-left:-9.600000pt;}
._2{margin-left:-7.360000pt;}
._5{margin-left:-6.412800pt;}
._4{margin-left:-4.800000pt;}
._1{margin-left:-3.200000pt;}
._0{margin-left:-1.280000pt;}
._3{width:1.280000pt;}
._8{width:2.560000pt;}
._f{width:4.058880pt;}
._17{width:5.766400pt;}
._15{width:6.949760pt;}
._b{width:9.563200pt;}
._1b{width:10.466560pt;}
._9{width:13.672960pt;}
._12{width:18.424000pt;}
._a{width:19.660800pt;}
._16{width:22.643200pt;}
._14{width:25.490240pt;}
._13{width:26.870080pt;}
._11{width:32.090880pt;}
._18{width:40.189440pt;}
._10{width:41.573760pt;}
._d{width:52.422080pt;}
._e{width:62.524800pt;}
._c{width:64.767360pt;}
._1a{width:753.129920pt;}
.fsa{font-size:21.440000pt;}
.fs6{font-size:34.560000pt;}
.fs7{font-size:42.560000pt;}
.fs8{font-size:48.000000pt;}
.fsb{font-size:53.120000pt;}
.fs5{font-size:53.440000pt;}
.fs9{font-size:58.560000pt;}
.fs0{font-size:64.000000pt;}
.fs4{font-size:96.000000pt;}
.fs3{font-size:128.000000pt;}
.fs2{font-size:160.000000pt;}
.fs1{font-size:192.000000pt;}
.y0{bottom:0.000000pt;}
.y17e{bottom:2.400000pt;}
.y1c2{bottom:2.640000pt;}
.y1a5{bottom:2.720000pt;}
.yd7{bottom:2.959867pt;}
.y33{bottom:2.960000pt;}
.y181{bottom:3.040000pt;}
.y1c4{bottom:4.560000pt;}
.y167{bottom:18.240000pt;}
.y183{bottom:18.320000pt;}
.y180{bottom:18.400000pt;}
.y1c3{bottom:19.920000pt;}
.y5f{bottom:37.680000pt;}
.y9{bottom:40.794240pt;}
.y35{bottom:40.800000pt;}
.y1b0{bottom:49.680000pt;}
.y1ed{bottom:59.360000pt;}
.y1d8{bottom:64.320000pt;}
.y32{bottom:75.680000pt;}
.y1d2{bottom:79.600000pt;}
.y1b9{bottom:80.960000pt;}
.y93{bottom:82.754720pt;}
.y1ec{bottom:83.840000pt;}
.y1c8{bottom:84.166880pt;}
.y1f0{bottom:88.324960pt;}
.y31{bottom:93.959040pt;}
.y1dd{bottom:95.039867pt;}
.y1c7{bottom:96.488000pt;}
.y128{bottom:98.062080pt;}
.y92{bottom:98.118720pt;}
.y1c6{bottom:108.724000pt;}
.y1ef{bottom:109.280800pt;}
.y30{bottom:109.323040pt;}
.y127{bottom:113.426080pt;}
.y91{bottom:113.482720pt;}
.yc5{bottom:114.765200pt;}
.y1c5{bottom:120.960000pt;}
.y2f{bottom:124.606880pt;}
.y1ee{bottom:126.080000pt;}
.y90{bottom:128.766560pt;}
.y126{bottom:128.790080pt;}
.yc4{bottom:130.049040pt;}
.y1c1{bottom:131.520000pt;}
.y185{bottom:133.440000pt;}
.y2e{bottom:139.890720pt;}
.yf5{bottom:141.836160pt;}
.y8f{bottom:144.130560pt;}
.y1c0{bottom:147.520000pt;}
.y125{bottom:147.988400pt;}
.yc3{bottom:149.327520pt;}
.y2d{bottom:155.254720pt;}
.yf4{bottom:157.120000pt;}
.y8e{bottom:159.414400pt;}
.y1bf{bottom:164.400000pt;}
.y2c{bottom:170.618720pt;}
.y8d{bottom:174.778400pt;}
.y124{bottom:175.429840pt;}
.yf3{bottom:176.640000pt;}
.yc2{bottom:176.768960pt;}
.y1be{bottom:178.880000pt;}
.y2b{bottom:185.982720pt;}
.y8c{bottom:190.142400pt;}
.y123{bottom:190.793840pt;}
.yc1{bottom:192.052800pt;}
.y1b8{bottom:195.760000pt;}
.y2a{bottom:201.266560pt;}
.yf2{bottom:205.340320pt;}
.y8b{bottom:205.426240pt;}
.y122{bottom:209.992160pt;}
.yc0{bottom:211.331280pt;}
.y29{bottom:216.630560pt;}
.yf1{bottom:220.624160pt;}
.y8a{bottom:220.790240pt;}
.y1bd{bottom:227.120000pt;}
.y28{bottom:231.994560pt;}
.yf0{bottom:235.988160pt;}
.y121{bottom:237.433600pt;}
.ybf{bottom:238.772720pt;}
.y89{bottom:240.148880pt;}
.y1b7{bottom:240.562560pt;}
.y1bb{bottom:246.076000pt;}
.y27{bottom:247.278400pt;}
.yef{bottom:251.352160pt;}
.y120{bottom:252.797600pt;}
.ybe{bottom:254.056560pt;}
.y88{bottom:255.432720pt;}
.y1bc{bottom:258.400000pt;}
.y1b6{bottom:259.520400pt;}
.y1ba{bottom:261.440000pt;}
.y26{bottom:262.642400pt;}
.y18e{bottom:265.680000pt;}
.yee{bottom:266.636000pt;}
.y87{bottom:270.796720pt;}
.y11f{bottom:272.076080pt;}
.y1b5{bottom:272.800240pt;}
.ybd{bottom:273.335040pt;}
.y25{bottom:277.926240pt;}
.yed{bottom:282.000000pt;}
.y11e{bottom:291.434720pt;}
.y1b4{bottom:292.720000pt;}
.y24{bottom:293.210080pt;}
.y86{bottom:297.837360pt;}
.ybc{bottom:300.696320pt;}
.yec{bottom:301.520000pt;}
.y23{bottom:305.688320pt;}
.y1b3{bottom:305.760000pt;}
.y11d{bottom:307.404320pt;}
.ybb{bottom:316.060320pt;}
.y58{bottom:317.600000pt;}
.y85{bottom:321.671600pt;}
.y11c{bottom:325.159760pt;}
.yeb{bottom:330.215760pt;}
.yba{bottom:331.424320pt;}
.y57{bottom:333.287600pt;}
.y1af{bottom:337.040000pt;}
.y11b{bottom:340.443600pt;}
.y84{bottom:341.912000pt;}
.yea{bottom:345.499600pt;}
.yb9{bottom:346.708160pt;}
.y56{bottom:354.164240pt;}
.y11a{bottom:355.807600pt;}
.y83{bottom:361.270640pt;}
.yb8{bottom:362.072160pt;}
.ye9{bottom:364.858240pt;}
.y1b2{bottom:368.400000pt;}
.y119{bottom:371.171600pt;}
.y1b1{bottom:371.440000pt;}
.y55{bottom:375.040880pt;}
.y82{bottom:376.554480pt;}
.yb7{bottom:377.436160pt;}
.ye8{bottom:385.098640pt;}
.y118{bottom:386.455440pt;}
.y1ab{bottom:387.520160pt;}
.y81{bottom:391.918480pt;}
.yb6{bottom:392.720000pt;}
.y1ad{bottom:395.522800pt;}
.y54{bottom:395.844320pt;}
.y1ae{bottom:399.760000pt;}
.y1aa{bottom:400.800000pt;}
.ye7{bottom:405.339040pt;}
.y117{bottom:405.814080pt;}
.y80{bottom:407.282480pt;}
.yb5{bottom:412.240000pt;}
.y1a9{bottom:414.160000pt;}
.y1ac{bottom:414.400480pt;}
.y53{bottom:416.720960pt;}
.y116{bottom:421.097920pt;}
.y14b{bottom:421.990880pt;}
.y7f{bottom:422.566320pt;}
.ye6{bottom:425.579440pt;}
.y1a4{bottom:431.040000pt;}
.y115{bottom:436.461920pt;}
.y1a7{bottom:436.635200pt;}
.y52{bottom:437.597600pt;}
.y1a3{bottom:439.360000pt;}
.yb4{bottom:440.914960pt;}
.y14a{bottom:441.429680pt;}
.ye5{bottom:445.819840pt;}
.y7e{bottom:449.606960pt;}
.y1a6{bottom:452.400000pt;}
.y1a2{bottom:452.720000pt;}
.y1a8{bottom:452.720640pt;}
.y114{bottom:455.820560pt;}
.yb3{bottom:456.278960pt;}
.y149{bottom:456.713520pt;}
.y51{bottom:458.240000pt;}
.ye4{bottom:465.980080pt;}
.y18d{bottom:469.600000pt;}
.y113{bottom:471.104400pt;}
.y22{bottom:471.766480pt;}
.y7d{bottom:473.521360pt;}
.yb2{bottom:475.477280pt;}
.y148{bottom:476.072160pt;}
.y1a0{bottom:476.314240pt;}
.y1a1{bottom:476.320000pt;}
.y50{bottom:477.520000pt;}
.ye3{bottom:486.220480pt;}
.y21{bottom:487.050320pt;}
.y19f{bottom:489.592960pt;}
.y112{bottom:490.382880pt;}
.y147{bottom:491.436160pt;}
.y4f{bottom:496.880000pt;}
.y7c{bottom:497.355600pt;}
.y20{bottom:502.414320pt;}
.yb1{bottom:502.918720pt;}
.y19e{bottom:502.956800pt;}
.ye2{bottom:506.460880pt;}
.y146{bottom:506.720000pt;}
.y4e{bottom:516.240000pt;}
.y19d{bottom:516.320640pt;}
.y7b{bottom:517.596000pt;}
.y1f{bottom:517.778320pt;}
.y111{bottom:517.824320pt;}
.yb0{bottom:518.202560pt;}
.ye1{bottom:521.824880pt;}
.y145{bottom:526.240000pt;}
.y7a{bottom:532.960000pt;}
.y110{bottom:533.108160pt;}
.y19b{bottom:533.561360pt;}
.y19c{bottom:533.600000pt;}
.y4d{bottom:535.520000pt;}
.yaf{bottom:537.561200pt;}
.y1e{bottom:541.064800pt;}
.ye0{bottom:542.065280pt;}
.y10f{bottom:548.472160pt;}
.y19a{bottom:551.236640pt;}
.y79{bottom:552.480000pt;}
.yae{bottom:552.925200pt;}
.y144{bottom:554.952160pt;}
.y4c{bottom:555.127600pt;}
.ydf{bottom:562.225520pt;}
.y10e{bottom:563.836160pt;}
.y199{bottom:566.600640pt;}
.y143{bottom:570.236000pt;}
.yad{bottom:572.203680pt;}
.y1d{bottom:572.420720pt;}
.y4b{bottom:576.004240pt;}
.yde{bottom:577.589520pt;}
.y10d{bottom:579.120000pt;}
.y198{bottom:581.884480pt;}
.y78{bottom:585.068080pt;}
.y142{bottom:585.600000pt;}
.yac{bottom:587.567680pt;}
.y164{bottom:596.742720pt;}
.y4a{bottom:596.880880pt;}
.ydd{bottom:596.948160pt;}
.y197{bottom:597.248480pt;}
.y10c{bottom:598.640000pt;}
.y77{bottom:600.432080pt;}
.yab{bottom:602.931680pt;}
.y1c{bottom:603.776640pt;}
.y141{bottom:605.120000pt;}
.ydc{bottom:612.232000pt;}
.y196{bottom:612.612480pt;}
.y76{bottom:615.715920pt;}
.y163{bottom:616.101360pt;}
.y49{bottom:617.757520pt;}
.yaa{bottom:618.215520pt;}
.y10b{bottom:627.319440pt;}
.ydb{bottom:627.596000pt;}
.y195{bottom:627.896320pt;}
.y162{bottom:631.465360pt;}
.y140{bottom:633.832160pt;}
.y1b{bottom:635.052400pt;}
.ya9{bottom:637.574160pt;}
.y1eb{bottom:638.401360pt;}
.y48{bottom:638.560960pt;}
.y73{bottom:639.002400pt;}
.y75{bottom:639.082560pt;}
.y10a{bottom:642.683440pt;}
.yda{bottom:642.960000pt;}
.y194{bottom:643.260320pt;}
.y7{bottom:644.417867pt;}
.y161{bottom:646.749200pt;}
.y13f{bottom:649.116000pt;}
.y72{bottom:654.366400pt;}
.y74{bottom:654.446560pt;}
.ya8{bottom:656.852640pt;}
.y1ea{bottom:657.760000pt;}
.y193{bottom:658.624320pt;}
.y47{bottom:659.437600pt;}
.y160{bottom:662.113200pt;}
.yd9{bottom:662.400000pt;}
.y109{bottom:662.843680pt;}
.y13e{bottom:664.480000pt;}
.y1a{bottom:666.408320pt;}
.y192{bottom:673.908160pt;}
.y1dc{bottom:674.720000pt;}
.y71{bottom:677.652880pt;}
.y108{bottom:678.207680pt;}
.y46{bottom:680.080000pt;}
.y1e8{bottom:680.788160pt;}
.y15f{bottom:682.353600pt;}
.y13d{bottom:684.000000pt;}
.ya7{bottom:684.213920pt;}
.y6{bottom:686.551200pt;}
.yd8{bottom:688.800000pt;}
.y191{bottom:689.272160pt;}
.y18a{bottom:689.676800pt;}
.y1e2{bottom:693.024160pt;}
.y1e7{bottom:696.152160pt;}
.y15e{bottom:697.717600pt;}
.y19{bottom:697.764240pt;}
.y107{bottom:698.448080pt;}
.y45{bottom:699.360000pt;}
.ya6{bottom:699.577920pt;}
.y70{bottom:701.086320pt;}
.y18c{bottom:702.636000pt;}
.y190{bottom:704.556000pt;}
.y189{bottom:704.640000pt;}
.yd6{bottom:704.800000pt;}
.y1e1{bottom:708.388160pt;}
.y1e6{bottom:711.436000pt;}
.y13c{bottom:712.624480pt;}
.ya5{bottom:714.941920pt;}
.y18b{bottom:715.996000pt;}
.y6f{bottom:716.450320pt;}
.y15d{bottom:717.877840pt;}
.y188{bottom:718.000000pt;}
.y106{bottom:718.688480pt;}
.y44{bottom:718.720000pt;}
.y18f{bottom:719.920000pt;}
.yd5{bottom:723.730560pt;}
.y1e0{bottom:723.752160pt;}
.y1e5{bottom:726.800000pt;}
.y13b{bottom:727.988480pt;}
.y18{bottom:729.040000pt;}
.y187{bottom:731.360000pt;}
.y6e{bottom:731.654000pt;}
.y15c{bottom:733.241840pt;}
.y105{bottom:733.972320pt;}
.ya4{bottom:734.220400pt;}
.y43{bottom:738.080000pt;}
.y1df{bottom:739.036000pt;}
.y1e9{bottom:739.040000pt;}
.yd4{bottom:739.094560pt;}
.y1e4{bottom:741.764000pt;}
.y13a{bottom:743.352480pt;}
.y17d{bottom:748.240000pt;}
.y104{bottom:749.336320pt;}
.ya3{bottom:749.584400pt;}
.y15b{bottom:753.482240pt;}
.y1de{bottom:754.400000pt;}
.yd3{bottom:754.458560pt;}
.y6b{bottom:755.007280pt;}
.y6d{bottom:755.087440pt;}
.y1e3{bottom:755.600000pt;}
.y42{bottom:757.685440pt;}
.y139{bottom:762.550800pt;}
.y17c{bottom:762.968000pt;}
.ya2{bottom:764.948400pt;}
.y17{bottom:767.040000pt;}
.y15a{bottom:768.846240pt;}
.y103{bottom:769.576720pt;}
.y6a{bottom:770.371280pt;}
.y6c{bottom:770.451440pt;}
.yd2{bottom:773.656880pt;}
.y17b{bottom:775.204000pt;}
.y41{bottom:778.240000pt;}
.y4{bottom:778.582667pt;}
.ya1{bottom:780.232240pt;}
.y16{bottom:782.400000pt;}
.y1d7{bottom:782.720000pt;}
.y102{bottom:784.940720pt;}
.y17a{bottom:787.440000pt;}
.y159{bottom:789.006480pt;}
.y138{bottom:789.992240pt;}
.y69{bottom:793.737920pt;}
.y15{bottom:796.400000pt;}
.y40{bottom:797.600000pt;}
.ya0{bottom:799.510720pt;}
.y101{bottom:800.224560pt;}
.y1db{bottom:801.032000pt;}
.yd1{bottom:801.098320pt;}
.y179{bottom:803.760000pt;}
.y178{bottom:803.766880pt;}
.y158{bottom:804.370480pt;}
.y137{bottom:805.356240pt;}
.y68{bottom:809.021760pt;}
.y177{bottom:816.002880pt;}
.y1da{bottom:816.396000pt;}
.yd0{bottom:816.462320pt;}
.y3f{bottom:816.960000pt;}
.y14{bottom:817.280560pt;}
.y100{bottom:819.583200pt;}
.y157{bottom:819.734480pt;}
.y136{bottom:820.640080pt;}
.y9f{bottom:826.952160pt;}
.y176{bottom:828.238880pt;}
.ycf{bottom:831.746160pt;}
.y1d9{bottom:831.760000pt;}
.y67{bottom:832.375040pt;}
.yff{bottom:834.947200pt;}
.y135{bottom:836.004080pt;}
.y3e{bottom:836.477600pt;}
.y156{bottom:839.974880pt;}
.y175{bottom:840.560000pt;}
.y9e{bottom:842.236000pt;}
.yce{bottom:847.110160pt;}
.y13{bottom:848.636480pt;}
.y134{bottom:853.969760pt;}
.yfe{bottom:854.225680pt;}
.y155{bottom:855.258720pt;}
.y66{bottom:855.741680pt;}
.y174{bottom:856.800000pt;}
.y173{bottom:856.802880pt;}
.y3d{bottom:857.120000pt;}
.y9d{bottom:857.600000pt;}
.y1d1{bottom:860.080000pt;}
.y186{bottom:866.320000pt;}
.ycd{bottom:866.388640pt;}
.y172{bottom:869.038880pt;}
.y133{bottom:869.253600pt;}
.yfd{bottom:869.589680pt;}
.y65{bottom:871.105680pt;}
.y154{bottom:875.499120pt;}
.y3c{bottom:876.480000pt;}
.y9c{bottom:877.120000pt;}
.y1d6{bottom:878.388160pt;}
.y12{bottom:879.992400pt;}
.y171{bottom:881.360000pt;}
.y64{bottom:886.389520pt;}
.y132{bottom:888.612240pt;}
.yfc{bottom:888.868160pt;}
.y153{bottom:890.863120pt;}
.y1d5{bottom:893.672000pt;}
.ycc{bottom:893.749920pt;}
.y184{bottom:894.640000pt;}
.y11{bottom:895.276240pt;}
.y3b{bottom:895.760000pt;}
.y170{bottom:897.600000pt;}
.y16f{bottom:897.602880pt;}
.y131{bottom:903.976240pt;}
.yfb{bottom:904.232160pt;}
.y9b{bottom:905.749520pt;}
.y1d4{bottom:909.036000pt;}
.ycb{bottom:909.113920pt;}
.y63{bottom:909.756160pt;}
.y16e{bottom:909.838880pt;}
.y10{bottom:910.640240pt;}
.y152{bottom:911.103520pt;}
.y3a{bottom:915.372480pt;}
.y130{bottom:919.260080pt;}
.yfa{bottom:919.596160pt;}
.y16d{bottom:922.160000pt;}
.y1d3{bottom:924.400000pt;}
.y62{bottom:925.040000pt;}
.y9a{bottom:925.108160pt;}
.y182{bottom:926.000000pt;}
.yf{bottom:926.004240pt;}
.y151{bottom:926.387360pt;}
.yca{bottom:928.392400pt;}
.yf9{bottom:934.880000pt;}
.y39{bottom:936.249120pt;}
.y12f{bottom:938.618720pt;}
.y16c{bottom:938.952640pt;}
.y99{bottom:940.472160pt;}
.y5e{bottom:941.440000pt;}
.y16a{bottom:942.640000pt;}
.y150{bottom:946.627760pt;}
.y61{bottom:948.476160pt;}
.y1cd{bottom:952.720000pt;}
.y12e{bottom:953.982720pt;}
.y16b{bottom:953.996000pt;}
.yf8{bottom:954.400000pt;}
.yc9{bottom:955.753680pt;}
.y98{bottom:955.756000pt;}
.y169{bottom:956.000000pt;}
.y38{bottom:957.125760pt;}
.ye{bottom:957.276000pt;}
.y17f{bottom:957.280000pt;}
.y14f{bottom:961.991760pt;}
.y2{bottom:963.477200pt;}
.y60{bottom:963.760000pt;}
.y12d{bottom:969.266560pt;}
.y168{bottom:969.360000pt;}
.y1cf{bottom:971.032000pt;}
.y1cc{bottom:971.036000pt;}
.yc8{bottom:971.117680pt;}
.y97{bottom:971.120000pt;}
.yd{bottom:972.627520pt;}
.y1ce{bottom:975.040000pt;}
.y14e{bottom:977.275600pt;}
.y37{bottom:978.002400pt;}
.y5c{bottom:979.037360pt;}
.y1{bottom:982.677200pt;}
.yf7{bottom:983.112160pt;}
.y3{bottom:984.357200pt;}
.y12c{bottom:984.630560pt;}
.y1d0{bottom:986.396000pt;}
.y1cb{bottom:986.400000pt;}
.yc7{bottom:986.481680pt;}
.yc{bottom:987.991520pt;}
.y166{bottom:988.640000pt;}
.y96{bottom:990.640000pt;}
.y14d{bottom:992.639600pt;}
.y5b{bottom:994.401360pt;}
.y5d{bottom:994.480000pt;}
.yf6{bottom:998.476160pt;}
.y12b{bottom:999.994560pt;}
.y36{bottom:1001.280000pt;}
.y1ca{bottom:1003.360000pt;}
.y1f2{bottom:1003.529440pt;}
.y5{bottom:1005.354267pt;}
.yc6{bottom:1005.680000pt;}
.y14c{bottom:1012.880000pt;}
.y5a{bottom:1013.760000pt;}
.y12a{bottom:1015.278400pt;}
.yb{bottom:1019.267280pt;}
.y95{bottom:1019.273040pt;}
.y165{bottom:1021.200000pt;}
.y59{bottom:1033.280000pt;}
.y129{bottom:1034.556880pt;}
.y1f1{bottom:1034.564800pt;}
.ya{bottom:1034.631280pt;}
.y94{bottom:1034.637040pt;}
.y1c9{bottom:1037.120000pt;}
.y34{bottom:1057.040000pt;}
.y8{bottom:1072.400000pt;}
.h15{height:15.280000pt;}
.h14{height:15.281333pt;}
.h18{height:18.435469pt;}
.hc{height:29.716875pt;}
.h19{height:30.640000pt;}
.h1c{height:30.641333pt;}
.h1b{height:30.720000pt;}
.h24{height:32.240000pt;}
.hb{height:36.595781pt;}
.h21{height:37.920000pt;}
.he{height:38.905781pt;}
.h1f{height:41.273438pt;}
.h2c{height:45.675938pt;}
.h8{height:45.951094pt;}
.h17{height:46.072054pt;}
.h16{height:46.093814pt;}
.h13{height:46.271734pt;}
.h2b{height:46.454062pt;}
.hd{height:46.733906pt;}
.h2{height:47.168000pt;}
.h25{height:50.000000pt;}
.h11{height:50.353594pt;}
.h10{height:51.211406pt;}
.ha{height:56.292875pt;}
.h9{height:56.326795pt;}
.h22{height:61.998667pt;}
.h12{height:69.360000pt;}
.h6{height:70.752000pt;}
.h2a{height:71.520000pt;}
.h28{height:76.638667pt;}
.h26{height:91.375094pt;}
.h27{height:91.920000pt;}
.h23{height:93.281333pt;}
.h5{height:93.952000pt;}
.h20{height:99.391094pt;}
.h29{height:107.358667pt;}
.h4{height:117.920000pt;}
.h3{height:140.928000pt;}
.h1d{height:145.760000pt;}
.h1a{height:239.760000pt;}
.hf{height:254.640000pt;}
.h1e{height:278.000000pt;}
.h0{height:1122.520000pt;}
.h7{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w10{width:74.960000pt;}
.we{width:111.120000pt;}
.wb{width:129.360000pt;}
.w8{width:130.001333pt;}
.wc{width:131.598667pt;}
.w7{width:139.758667pt;}
.wf{width:141.041333pt;}
.wa{width:167.280000pt;}
.w9{width:227.280000pt;}
.wd{width:292.241333pt;}
.w5{width:308.560000pt;}
.w6{width:315.840000pt;}
.w11{width:366.400000pt;}
.w4{width:491.441333pt;}
.w3{width:632.880000pt;}
.w0{width:793.701333pt;}
.w2{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xd{left:4.720000pt;}
.x8{left:7.200000pt;}
.x31{left:9.600000pt;}
.x25{left:25.440000pt;}
.x2f{left:36.240000pt;}
.x2d{left:43.600000pt;}
.x2a{left:48.080000pt;}
.x1{left:66.554400pt;}
.x3{left:68.031467pt;}
.x7{left:87.360000pt;}
.x5{left:94.560000pt;}
.x1b{left:102.400000pt;}
.xf{left:118.581280pt;}
.xa{left:122.880000pt;}
.x18{left:140.000000pt;}
.x6{left:166.557040pt;}
.x30{left:214.560000pt;}
.xc{left:217.360000pt;}
.xb{left:222.080000pt;}
.x1e{left:224.560000pt;}
.x10{left:228.160000pt;}
.x13{left:234.960240pt;}
.x1c{left:350.080000pt;}
.x1f{left:356.970960pt;}
.x11{left:358.880000pt;}
.x14{left:365.754640pt;}
.x9{left:367.440000pt;}
.xe{left:404.160000pt;}
.x15{left:409.120000pt;}
.x1a{left:414.720000pt;}
.x17{left:443.760000pt;}
.x21{left:491.760000pt;}
.x4{left:515.816800pt;}
.x23{left:517.193280pt;}
.x22{left:520.560000pt;}
.x24{left:524.634800pt;}
.x2b{left:528.000000pt;}
.x16{left:531.040000pt;}
.x2c{left:532.074800pt;}
.x26{left:567.360000pt;}
.x12{left:586.880000pt;}
.x28{left:592.793280pt;}
.x19{left:593.760000pt;}
.x27{left:596.160000pt;}
.x29{left:600.234800pt;}
.x2e{left:603.600000pt;}
.x2{left:637.402400pt;}
.x1d{left:643.040000pt;}
.x20{left:649.848880pt;}
}




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