
    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_ded9acabc522eac9139b1ba9.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.919922;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_2477db8fc2d3363399723da0.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.900391;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_d337b974b295436de66c316f.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.933594;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_df41168ca85c59afb998f66a.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.916016;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_f776a6242c1a083bf9cd36b0.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.871582;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_b04082b90f34b35a1fa061a3.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.689453;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_b70555337942335a37a052b1.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.871582;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_fbae581d3bd0c663366f4d51.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.871582;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:-30.000000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:36.000000px;}
.ls1a{letter-spacing:-0.489456px;}
.lsb{letter-spacing:0.000000px;}
.ls5{letter-spacing:0.012000px;}
.ls47{letter-spacing:0.018000px;}
.ls16{letter-spacing:0.024000px;}
.ls40{letter-spacing:0.042000px;}
.ls3d{letter-spacing:0.048000px;}
.ls45{letter-spacing:0.066000px;}
.ls2{letter-spacing:0.072000px;}
.ls17{letter-spacing:0.078000px;}
.ls1f{letter-spacing:0.084000px;}
.ls19{letter-spacing:0.090000px;}
.ls41{letter-spacing:0.096000px;}
.lsc{letter-spacing:0.102000px;}
.ls8{letter-spacing:0.108000px;}
.ls31{letter-spacing:0.114000px;}
.ls1d{letter-spacing:0.120000px;}
.ls33{letter-spacing:0.126000px;}
.ls18{letter-spacing:0.132000px;}
.ls3b{letter-spacing:0.144000px;}
.ls44{letter-spacing:0.150000px;}
.ls27{letter-spacing:0.156000px;}
.lsd{letter-spacing:0.162000px;}
.ls2f{letter-spacing:0.168000px;}
.ls28{letter-spacing:0.180000px;}
.ls20{letter-spacing:0.192000px;}
.ls2e{letter-spacing:0.198000px;}
.lse{letter-spacing:0.204000px;}
.ls12{letter-spacing:0.210000px;}
.ls3a{letter-spacing:0.216000px;}
.ls10{letter-spacing:0.222000px;}
.ls6{letter-spacing:0.228000px;}
.ls34{letter-spacing:0.240000px;}
.ls9{letter-spacing:0.246000px;}
.ls1b{letter-spacing:0.258000px;}
.ls3c{letter-spacing:0.270000px;}
.ls35{letter-spacing:0.276000px;}
.ls2a{letter-spacing:0.288000px;}
.ls38{letter-spacing:0.300000px;}
.ls46{letter-spacing:0.306000px;}
.ls2c{letter-spacing:0.312000px;}
.ls39{letter-spacing:0.318000px;}
.ls4{letter-spacing:0.324000px;}
.ls1{letter-spacing:0.330000px;}
.ls23{letter-spacing:0.342000px;}
.ls26{letter-spacing:0.354000px;}
.ls32{letter-spacing:0.372000px;}
.lsf{letter-spacing:0.390000px;}
.ls36{letter-spacing:0.396000px;}
.ls13{letter-spacing:0.402000px;}
.ls43{letter-spacing:0.408000px;}
.ls48{letter-spacing:0.420000px;}
.ls22{letter-spacing:0.426000px;}
.ls49{letter-spacing:0.432000px;}
.ls29{letter-spacing:0.438000px;}
.ls15{letter-spacing:0.444000px;}
.ls37{letter-spacing:0.450000px;}
.ls3e{letter-spacing:0.462000px;}
.ls21{letter-spacing:0.474000px;}
.ls2b{letter-spacing:0.480000px;}
.ls30{letter-spacing:0.492000px;}
.ls25{letter-spacing:0.498000px;}
.ls2d{letter-spacing:0.504000px;}
.ls11{letter-spacing:0.510000px;}
.ls14{letter-spacing:0.522000px;}
.lsa{letter-spacing:0.528000px;}
.ls1c{letter-spacing:0.534000px;}
.ls42{letter-spacing:0.540000px;}
.ls3f{letter-spacing:0.546000px;}
.ls1e{letter-spacing:0.552000px;}
.ls24{letter-spacing:0.582000px;}
.ls7{letter-spacing:0.588000px;}
.ls0{letter-spacing:0.594000px;}
.ls3{letter-spacing:0.600000px;}
.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;}
}
.ws17{word-spacing:-15.600000px;}
.ws3e{word-spacing:-15.552000px;}
.ws53{word-spacing:-15.480000px;}
.wsa0{word-spacing:-15.474000px;}
.wsa1{word-spacing:-15.438000px;}
.ws3f{word-spacing:-15.426000px;}
.ws54{word-spacing:-15.324000px;}
.ws55{word-spacing:-15.312000px;}
.ws52{word-spacing:-15.228000px;}
.ws18{word-spacing:-15.222000px;}
.ws16{word-spacing:-15.102000px;}
.ws0{word-spacing:-9.900000px;}
.ws3a{word-spacing:-8.515584px;}
.ws1{word-spacing:-8.250000px;}
.ws2{word-spacing:0.000000px;}
.ws9{word-spacing:0.042000px;}
.ws32{word-spacing:0.054000px;}
.ws19{word-spacing:0.138000px;}
.wsb2{word-spacing:0.144000px;}
.wsbf{word-spacing:0.150000px;}
.ws3c{word-spacing:0.156816px;}
.ws2c{word-spacing:0.162000px;}
.wsae{word-spacing:0.174000px;}
.ws5{word-spacing:0.198000px;}
.ws9e{word-spacing:0.210000px;}
.ws7c{word-spacing:0.216000px;}
.wsb3{word-spacing:0.258000px;}
.ws34{word-spacing:0.264000px;}
.ws93{word-spacing:0.270000px;}
.wsb6{word-spacing:0.282000px;}
.ws36{word-spacing:0.288000px;}
.ws46{word-spacing:0.294000px;}
.ws5e{word-spacing:0.306000px;}
.wsc5{word-spacing:0.312000px;}
.ws81{word-spacing:0.324000px;}
.ws44{word-spacing:0.330000px;}
.wse{word-spacing:0.336000px;}
.ws71{word-spacing:0.354000px;}
.wscd{word-spacing:0.366000px;}
.ws35{word-spacing:0.378000px;}
.wsa8{word-spacing:0.390000px;}
.ws2d{word-spacing:0.396000px;}
.ws28{word-spacing:0.408000px;}
.wsa3{word-spacing:0.426000px;}
.wsab{word-spacing:0.444000px;}
.wsbe{word-spacing:0.450000px;}
.ws4a{word-spacing:0.456000px;}
.ws7e{word-spacing:0.462000px;}
.ws79{word-spacing:0.540000px;}
.ws42{word-spacing:0.558000px;}
.wsb{word-spacing:0.588000px;}
.ws33{word-spacing:0.594000px;}
.ws1a{word-spacing:0.600000px;}
.ws20{word-spacing:0.624000px;}
.wsd0{word-spacing:0.630000px;}
.ws11{word-spacing:0.654000px;}
.ws2a{word-spacing:0.684000px;}
.wsd4{word-spacing:0.696000px;}
.ws7{word-spacing:0.702000px;}
.ws48{word-spacing:0.768000px;}
.ws8f{word-spacing:0.786000px;}
.ws70{word-spacing:0.792000px;}
.ws6b{word-spacing:0.804000px;}
.ws51{word-spacing:0.816000px;}
.ws89{word-spacing:0.828000px;}
.ws9f{word-spacing:0.846000px;}
.ws80{word-spacing:0.858000px;}
.ws7a{word-spacing:0.864000px;}
.ws5d{word-spacing:0.882000px;}
.wsac{word-spacing:0.894000px;}
.ws8c{word-spacing:0.906000px;}
.wsc2{word-spacing:0.936000px;}
.wsa5{word-spacing:0.942000px;}
.wsbc{word-spacing:0.948000px;}
.ws76{word-spacing:0.954000px;}
.wsc0{word-spacing:0.960000px;}
.ws21{word-spacing:0.984000px;}
.wsc6{word-spacing:0.996000px;}
.ws74{word-spacing:1.014000px;}
.ws5c{word-spacing:1.062000px;}
.ws72{word-spacing:1.092000px;}
.wsd2{word-spacing:1.110000px;}
.wsaa{word-spacing:1.140000px;}
.ws12{word-spacing:1.146000px;}
.wsc1{word-spacing:1.152000px;}
.ws4f{word-spacing:1.170000px;}
.ws7f{word-spacing:1.188000px;}
.ws77{word-spacing:1.224000px;}
.wsce{word-spacing:1.230000px;}
.ws31{word-spacing:1.284000px;}
.wsd1{word-spacing:1.314000px;}
.wsc8{word-spacing:1.326000px;}
.ws4{word-spacing:1.344000px;}
.wsa7{word-spacing:1.404000px;}
.ws2e{word-spacing:1.422000px;}
.ws5a{word-spacing:1.434000px;}
.wsb4{word-spacing:1.446000px;}
.wsa6{word-spacing:1.494000px;}
.ws7d{word-spacing:1.524000px;}
.ws83{word-spacing:1.530000px;}
.wsbd{word-spacing:1.536000px;}
.wsbb{word-spacing:1.548000px;}
.ws1d{word-spacing:1.560000px;}
.ws69{word-spacing:1.572000px;}
.ws78{word-spacing:1.578000px;}
.ws99{word-spacing:1.704000px;}
.ws49{word-spacing:1.710000px;}
.wsd{word-spacing:1.716000px;}
.wsc{word-spacing:1.722000px;}
.ws57{word-spacing:1.728000px;}
.wsb1{word-spacing:1.812000px;}
.ws63{word-spacing:1.824000px;}
.wsaf{word-spacing:1.830000px;}
.ws95{word-spacing:1.836000px;}
.ws3{word-spacing:1.842000px;}
.ws86{word-spacing:1.866000px;}
.ws43{word-spacing:1.914000px;}
.ws73{word-spacing:1.932000px;}
.ws2f{word-spacing:1.956000px;}
.ws9d{word-spacing:1.986000px;}
.wsc7{word-spacing:2.124000px;}
.wscf{word-spacing:2.130000px;}
.wsba{word-spacing:2.160000px;}
.wsb8{word-spacing:2.178000px;}
.ws45{word-spacing:2.214000px;}
.ws13{word-spacing:2.220000px;}
.ws62{word-spacing:2.232000px;}
.ws1e{word-spacing:2.238000px;}
.ws4e{word-spacing:2.256000px;}
.ws84{word-spacing:2.334000px;}
.ws1f{word-spacing:2.442000px;}
.ws2b{word-spacing:2.544000px;}
.wsb0{word-spacing:2.580000px;}
.ws6c{word-spacing:2.676000px;}
.wsd5{word-spacing:3.036000px;}
.ws25{word-spacing:3.054000px;}
.ws94{word-spacing:3.138000px;}
.ws29{word-spacing:3.342000px;}
.ws56{word-spacing:3.384000px;}
.ws6a{word-spacing:3.558000px;}
.ws85{word-spacing:3.564000px;}
.ws6d{word-spacing:3.678000px;}
.ws64{word-spacing:3.696000px;}
.ws6e{word-spacing:3.714000px;}
.wsc4{word-spacing:3.978000px;}
.ws9c{word-spacing:4.146000px;}
.ws7b{word-spacing:4.224000px;}
.ws59{word-spacing:4.290000px;}
.ws40{word-spacing:4.314000px;}
.ws27{word-spacing:4.344000px;}
.ws41{word-spacing:4.506000px;}
.ws50{word-spacing:4.632000px;}
.ws24{word-spacing:4.782000px;}
.wsb7{word-spacing:4.806000px;}
.ws15{word-spacing:4.812000px;}
.ws82{word-spacing:5.094000px;}
.ws5b{word-spacing:5.142000px;}
.ws96{word-spacing:5.304000px;}
.ws6f{word-spacing:5.310000px;}
.ws4b{word-spacing:5.358000px;}
.ws26{word-spacing:5.718000px;}
.ws23{word-spacing:5.760000px;}
.wscb{word-spacing:5.874000px;}
.wsc3{word-spacing:5.928000px;}
.wsf{word-spacing:5.940000px;}
.ws1c{word-spacing:6.126000px;}
.ws8b{word-spacing:6.234000px;}
.ws10{word-spacing:6.294000px;}
.ws91{word-spacing:6.408000px;}
.ws9b{word-spacing:6.516000px;}
.ws4c{word-spacing:6.552000px;}
.ws67{word-spacing:6.564000px;}
.ws58{word-spacing:6.606000px;}
.ws8{word-spacing:6.804000px;}
.wscc{word-spacing:7.110000px;}
.ws6{word-spacing:7.170000px;}
.ws47{word-spacing:7.374000px;}
.ws30{word-spacing:7.440000px;}
.ws66{word-spacing:7.680000px;}
.ws37{word-spacing:7.812000px;}
.ws1b{word-spacing:8.010000px;}
.wsa4{word-spacing:8.172000px;}
.wsc9{word-spacing:8.238000px;}
.ws14{word-spacing:8.412000px;}
.ws8d{word-spacing:8.490000px;}
.ws97{word-spacing:8.658000px;}
.ws4d{word-spacing:9.048000px;}
.ws87{word-spacing:9.060000px;}
.ws75{word-spacing:10.116000px;}
.wsca{word-spacing:10.158000px;}
.ws68{word-spacing:10.392000px;}
.wsa{word-spacing:10.530000px;}
.wsad{word-spacing:11.058000px;}
.ws88{word-spacing:11.154000px;}
.ws5f{word-spacing:11.454000px;}
.ws3b{word-spacing:11.520000px;}
.ws9a{word-spacing:11.574000px;}
.ws22{word-spacing:11.940000px;}
.ws61{word-spacing:12.000000px;}
.ws90{word-spacing:12.336000px;}
.ws8a{word-spacing:12.516000px;}
.ws92{word-spacing:14.268000px;}
.ws8e{word-spacing:14.496000px;}
.ws98{word-spacing:14.586000px;}
.wsd3{word-spacing:14.802000px;}
.ws60{word-spacing:16.434000px;}
.ws65{word-spacing:16.992000px;}
.wsb5{word-spacing:22.728000px;}
.wsa9{word-spacing:27.630000px;}
.wsb9{word-spacing:58.032000px;}
.wsa2{word-spacing:82.032000px;}
.ws38{word-spacing:506.550000px;}
.ws3d{word-spacing:623.910000px;}
.ws39{word-spacing:644.166000px;}
._46{margin-left:-27.630000px;}
._48{margin-left:-22.728000px;}
._41{margin-left:-16.434000px;}
._44{margin-left:-14.496000px;}
._12{margin-left:-11.940000px;}
._9{margin-left:-10.530000px;}
._d{margin-left:-8.412000px;}
._7{margin-left:-7.170000px;}
._b{margin-left:-5.940000px;}
._f{margin-left:-4.812000px;}
._14{margin-left:-3.054000px;}
._5{margin-left:-1.842000px;}
._4{width:1.836000px;}
._13{width:3.000000px;}
._e{width:4.800000px;}
._a{width:5.880000px;}
._6{width:7.140000px;}
._c{width:8.400000px;}
._8{width:10.500000px;}
._11{width:11.940000px;}
._43{width:14.460000px;}
._40{width:16.380000px;}
._42{width:17.478000px;}
._47{width:22.680000px;}
._45{width:27.600000px;}
._39{width:30.870000px;}
._15{width:58.596000px;}
._4a{width:70.032000px;}
._1c{width:88.062000px;}
._49{width:94.032000px;}
._1{width:108.000000px;}
._1b{width:110.670000px;}
._1a{width:178.686000px;}
._33{width:258.534000px;}
._16{width:302.670000px;}
._1d{width:315.966000px;}
._1e{width:326.670000px;}
._18{width:334.590000px;}
._22{width:339.918000px;}
._23{width:347.982000px;}
._1f{width:358.638000px;}
._17{width:365.316000px;}
._25{width:366.654000px;}
._24{width:377.310000px;}
._3{width:621.834000px;}
._2c{width:633.270000px;}
._3e{width:636.006000px;}
._27{width:656.166000px;}
._3d{width:660.006000px;}
._32{width:670.662000px;}
._35{width:675.942000px;}
._2a{width:689.334000px;}
._2{width:691.098000px;}
._2d{width:693.270000px;}
._31{width:694.614000px;}
._3f{width:710.598000px;}
._2e{width:713.286000px;}
._36{width:715.926000px;}
._37{width:721.302000px;}
._30{width:723.942000px;}
._2b{width:731.958000px;}
._28{width:742.614000px;}
._20{width:750.660000px;}
._38{width:753.318000px;}
._3a{width:756.006000px;}
._3c{width:761.382000px;}
._26{width:763.974000px;}
._2f{width:774.630000px;}
._3b{width:777.318000px;}
._29{width:785.286000px;}
._34{width:795.942000px;}
._19{width:813.924000px;}
._0{width:843.642000px;}
._21{width:929.154000px;}
._10{width:1247.124000px;}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:33.000000px;}
.fs8{font-size:36.020160px;}
.fs6{font-size:39.600000px;}
.fs1{font-size:48.000000px;}
.fs0{font-size:54.000000px;}
.fs3{font-size:60.000000px;}
.fs5{font-size:72.000000px;}
.fs4{font-size:96.000000px;}
.fs2{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y3{bottom:66.930000px;}
.y1a3{bottom:114.024000px;}
.ye4{bottom:117.511500px;}
.y96{bottom:119.620500px;}
.ycb{bottom:120.547500px;}
.y2b{bottom:122.475000px;}
.y16f{bottom:129.033000px;}
.y1a2{bottom:129.168000px;}
.y137{bottom:129.214500px;}
.y113{bottom:129.300000px;}
.ye3{bottom:136.441500px;}
.y2a{bottom:137.619000px;}
.y95{bottom:138.145500px;}
.yca{bottom:139.477500px;}
.y5e{bottom:142.287000px;}
.y16e{bottom:144.177000px;}
.y1a1{bottom:144.312000px;}
.y136{bottom:144.358500px;}
.ye2{bottom:155.371500px;}
.y112{bottom:155.730000px;}
.y94{bottom:156.670500px;}
.yc9{bottom:158.407500px;}
.y16d{bottom:159.321000px;}
.y5d{bottom:160.812000px;}
.y29{bottom:166.767000px;}
.y1a0{bottom:166.953000px;}
.y135{bottom:166.999500px;}
.ye1{bottom:174.300000px;}
.y93{bottom:175.195500px;}
.y5c{bottom:175.212000px;}
.yc8{bottom:177.337500px;}
.y16c{bottom:181.962000px;}
.y19f{bottom:182.095500px;}
.y134{bottom:182.143500px;}
.y28{bottom:185.697000px;}
.y5b{bottom:189.612000px;}
.y111{bottom:189.660000px;}
.ye0{bottom:193.230000px;}
.y92{bottom:193.720500px;}
.y16b{bottom:197.106000px;}
.y19e{bottom:197.239500px;}
.y133{bottom:197.286000px;}
.yc7{bottom:203.766000px;}
.y5a{bottom:208.137000px;}
.y110{bottom:208.590000px;}
.y27{bottom:212.127000px;}
.ydf{bottom:212.160000px;}
.y91{bottom:212.245500px;}
.y16a{bottom:212.250000px;}
.y19d{bottom:219.880500px;}
.y132{bottom:219.930000px;}
.y59{bottom:222.537000px;}
.yc6{bottom:222.696000px;}
.y10f{bottom:227.520000px;}
.y90{bottom:230.770500px;}
.yde{bottom:231.090000px;}
.y169{bottom:234.891000px;}
.y19c{bottom:235.024500px;}
.y131{bottom:235.074000px;}
.y58{bottom:236.937000px;}
.yc5{bottom:241.626000px;}
.y26{bottom:246.057000px;}
.y10e{bottom:246.448500px;}
.y8f{bottom:249.295500px;}
.ydd{bottom:250.020000px;}
.y168{bottom:250.033500px;}
.y19b{bottom:250.168500px;}
.y57{bottom:255.462000px;}
.yc4{bottom:260.556000px;}
.y25{bottom:264.987000px;}
.y167{bottom:265.177500px;}
.y10d{bottom:265.378500px;}
.y130{bottom:266.097000px;}
.y8e{bottom:267.820500px;}
.ydc{bottom:268.948500px;}
.y19a{bottom:272.809500px;}
.y56{bottom:273.987000px;}
.yc3{bottom:279.486000px;}
.y24{bottom:283.915500px;}
.y10c{bottom:284.308500px;}
.y8d{bottom:286.345500px;}
.y166{bottom:287.818500px;}
.y199{bottom:287.953500px;}
.y55{bottom:288.387000px;}
.y12f{bottom:292.527000px;}
.ydb{bottom:295.378500px;}
.yc2{bottom:298.414500px;}
.y23{bottom:302.845500px;}
.y165{bottom:302.962500px;}
.y198{bottom:303.097500px;}
.y10b{bottom:303.238500px;}
.y8c{bottom:304.870500px;}
.yda{bottom:314.308500px;}
.yc1{bottom:317.344500px;}
.y164{bottom:318.106500px;}
.y12e{bottom:318.957000px;}
.y22{bottom:321.775500px;}
.y10a{bottom:322.168500px;}
.y54{bottom:323.262000px;}
.y8b{bottom:323.395500px;}
.y197{bottom:325.738500px;}
.yd9{bottom:333.238500px;}
.yc0{bottom:336.274500px;}
.y53{bottom:340.297500px;}
.y21{bottom:340.705500px;}
.y163{bottom:340.747500px;}
.y196{bottom:340.881000px;}
.y8a{bottom:341.920500px;}
.y109{bottom:348.597000px;}
.yd8{bottom:352.168500px;}
.y12d{bottom:352.887000px;}
.ybf{bottom:355.204500px;}
.y162{bottom:355.891500px;}
.y195{bottom:356.025000px;}
.y20{bottom:359.635500px;}
.y89{bottom:360.445500px;}
.y108{bottom:367.527000px;}
.y161{bottom:371.035500px;}
.yd7{bottom:371.097000px;}
.ybe{bottom:374.134500px;}
.y1f{bottom:378.564000px;}
.y194{bottom:378.666000px;}
.y88{bottom:378.970500px;}
.y12c{bottom:379.317000px;}
.y52{bottom:386.097000px;}
.y107{bottom:386.457000px;}
.yd6{bottom:390.027000px;}
.ybd{bottom:393.063000px;}
.y160{bottom:393.676500px;}
.y193{bottom:393.810000px;}
.y1e{bottom:397.494000px;}
.y87{bottom:397.495500px;}
.y51{bottom:405.027000px;}
.y106{bottom:405.387000px;}
.y15f{bottom:408.819000px;}
.y192{bottom:408.954000px;}
.y86{bottom:411.895500px;}
.ybc{bottom:411.993000px;}
.y12b{bottom:413.245500px;}
.y1d{bottom:416.424000px;}
.yd5{bottom:416.457000px;}
.y50{bottom:423.957000px;}
.y15e{bottom:423.963000px;}
.y105{bottom:424.317000px;}
.ybb{bottom:430.923000px;}
.y191{bottom:431.598000px;}
.y1c{bottom:435.354000px;}
.yd4{bottom:435.387000px;}
.y12a{bottom:439.675500px;}
.y104{bottom:443.245500px;}
.y15d{bottom:446.604000px;}
.y190{bottom:446.740500px;}
.y85{bottom:446.769000px;}
.y1c3{bottom:447.502500px;}
.yba{bottom:449.853000px;}
.y4f{bottom:450.387000px;}
.y1b{bottom:454.284000px;}
.yd3{bottom:454.317000px;}
.y15c{bottom:461.748000px;}
.y103{bottom:462.175500px;}
.y1c2{bottom:462.646500px;}
.y84{bottom:463.806000px;}
.yb9{bottom:468.783000px;}
.y4e{bottom:469.317000px;}
.y18f{bottom:469.381500px;}
.y1a{bottom:473.212500px;}
.yd2{bottom:473.245500px;}
.y129{bottom:473.605500px;}
.y15b{bottom:476.892000px;}
.y1c1{bottom:477.790500px;}
.y102{bottom:481.105500px;}
.y18e{bottom:484.525500px;}
.y4d{bottom:488.245500px;}
.y19{bottom:492.142500px;}
.yd1{bottom:492.175500px;}
.y15a{bottom:499.533000px;}
.y18d{bottom:499.669500px;}
.y101{bottom:500.035500px;}
.y1c0{bottom:500.434500px;}
.yb8{bottom:502.711500px;}
.y4c{bottom:507.175500px;}
.y18{bottom:511.072500px;}
.yd0{bottom:511.105500px;}
.y159{bottom:514.677000px;}
.y100{bottom:518.965500px;}
.y18c{bottom:522.313500px;}
.y4b{bottom:526.105500px;}
.y128{bottom:526.465500px;}
.y158{bottom:529.821000px;}
.ycf{bottom:530.035500px;}
.y18b{bottom:537.457500px;}
.y17{bottom:537.502500px;}
.yff{bottom:537.894000px;}
.yb7{bottom:538.141500px;}
.y1bf{bottom:544.825500px;}
.y4a{bottom:545.035500px;}
.y83{bottom:545.124000px;}
.y157{bottom:552.463500px;}
.yce{bottom:556.465500px;}
.yfe{bottom:556.824000px;}
.yb6{bottom:557.071500px;}
.y82{bottom:559.524000px;}
.y1be{bottom:559.968000px;}
.y18a{bottom:560.100000px;}
.y127{bottom:560.394000px;}
.y156{bottom:567.607500px;}
.y49{bottom:571.465500px;}
.y81{bottom:573.924000px;}
.y1bd{bottom:575.112000px;}
.y189{bottom:575.244000px;}
.yfd{bottom:575.754000px;}
.y16{bottom:576.616500px;}
.y126{bottom:579.324000px;}
.y80{bottom:588.324000px;}
.y155{bottom:590.251500px;}
.y48{bottom:590.394000px;}
.y1bc{bottom:597.753000px;}
.y188{bottom:597.888000px;}
.y125{bottom:598.254000px;}
.yfc{bottom:602.184000px;}
.y154{bottom:605.395500px;}
.yb5{bottom:605.874000px;}
.y7f{bottom:606.849000px;}
.y15{bottom:608.653500px;}
.y47{bottom:609.324000px;}
.y1bb{bottom:612.897000px;}
.y187{bottom:613.032000px;}
.y124{bottom:617.184000px;}
.yb4{bottom:620.274000px;}
.y7e{bottom:621.249000px;}
.y14{bottom:625.690500px;}
.y153{bottom:628.036500px;}
.y1ba{bottom:628.041000px;}
.y46{bottom:628.254000px;}
.yb3{bottom:634.674000px;}
.y186{bottom:635.674500px;}
.yfb{bottom:636.114000px;}
.y7d{bottom:639.774000px;}
.y152{bottom:643.179000px;}
.y45{bottom:647.184000px;}
.y13{bottom:650.227500px;}
.y1b9{bottom:650.682000px;}
.y185{bottom:650.818500px;}
.yb2{bottom:653.199000px;}
.y7c{bottom:654.174000px;}
.yfa{bottom:655.042500px;}
.y151{bottom:658.323000px;}
.y1b8{bottom:665.826000px;}
.y44{bottom:666.114000px;}
.yb1{bottom:671.724000px;}
.y7b{bottom:672.699000px;}
.y184{bottom:673.462500px;}
.yf9{bottom:673.972500px;}
.y150{bottom:680.967000px;}
.y1b7{bottom:680.970000px;}
.y12{bottom:682.263000px;}
.y43{bottom:685.042500px;}
.y7a{bottom:687.099000px;}
.y183{bottom:688.606500px;}
.yb0{bottom:690.249000px;}
.yf8{bottom:692.902500px;}
.y14f{bottom:696.111000px;}
.y11{bottom:699.300000px;}
.y123{bottom:700.402500px;}
.y1b6{bottom:703.611000px;}
.ycd{bottom:703.972500px;}
.y79{bottom:705.624000px;}
.yaf{bottom:708.774000px;}
.y182{bottom:711.249000px;}
.y42{bottom:711.472500px;}
.yf7{bottom:711.832500px;}
.y10{bottom:716.337000px;}
.y14e{bottom:718.752000px;}
.y1b5{bottom:718.753500px;}
.ycc{bottom:722.902500px;}
.y78{bottom:724.149000px;}
.y181{bottom:726.393000px;}
.yae{bottom:727.299000px;}
.y41{bottom:730.402500px;}
.yf6{bottom:730.762500px;}
.y14d{bottom:733.896000px;}
.y1b4{bottom:733.897500px;}
.y122{bottom:734.332500px;}
.yf{bottom:740.874000px;}
.y77{bottom:742.674000px;}
.yad{bottom:745.824000px;}
.y180{bottom:749.037000px;}
.y14c{bottom:749.038500px;}
.y40{bottom:749.332500px;}
.y121{bottom:753.262500px;}
.y1b3{bottom:756.541500px;}
.yf5{bottom:757.191000px;}
.y76{bottom:761.199000px;}
.y17f{bottom:764.181000px;}
.yac{bottom:764.349000px;}
.ye{bottom:765.411000px;}
.y3f{bottom:768.262500px;}
.y14b{bottom:771.682500px;}
.y1b2{bottom:771.685500px;}
.y120{bottom:772.191000px;}
.y75{bottom:775.599000px;}
.yf4{bottom:776.121000px;}
.yab{bottom:782.874000px;}
.y17e{bottom:786.822000px;}
.y14a{bottom:786.826500px;}
.y3e{bottom:787.191000px;}
.yd{bottom:787.260000px;}
.y11f{bottom:791.121000px;}
.y74{bottom:794.124000px;}
.y1b1{bottom:794.328000px;}
.yf3{bottom:795.051000px;}
.yaa{bottom:801.399000px;}
.y17d{bottom:801.964500px;}
.y3d{bottom:806.121000px;}
.y73{bottom:808.524000px;}
.y149{bottom:809.467500px;}
.y1b0{bottom:809.472000px;}
.y11e{bottom:810.051000px;}
.yf2{bottom:813.981000px;}
.y17c{bottom:817.108500px;}
.ya9{bottom:819.924000px;}
.y72{bottom:822.924000px;}
.y148{bottom:824.611500px;}
.y3c{bottom:825.051000px;}
.y11d{bottom:828.981000px;}
.yc{bottom:831.235500px;}
.y1af{bottom:832.116000px;}
.y71{bottom:837.324000px;}
.ya8{bottom:838.449000px;}
.y17b{bottom:839.749500px;}
.y147{bottom:839.755500px;}
.yf1{bottom:840.411000px;}
.y3b{bottom:843.981000px;}
.y1ae{bottom:847.260000px;}
.y11c{bottom:847.911000px;}
.yb{bottom:851.127000px;}
.y70{bottom:851.724000px;}
.y17a{bottom:854.893500px;}
.ya7{bottom:856.974000px;}
.yf0{bottom:859.339500px;}
.y146{bottom:862.396500px;}
.y3a{bottom:862.911000px;}
.y11b{bottom:866.839500px;}
.y1ad{bottom:869.901000px;}
.y179{bottom:870.037500px;}
.y6f{bottom:870.249000px;}
.ya{bottom:871.020000px;}
.ya6{bottom:875.499000px;}
.y145{bottom:877.539000px;}
.y39{bottom:881.839500px;}
.y6e{bottom:884.649000px;}
.y1ac{bottom:885.045000px;}
.yef{bottom:885.769500px;}
.ya5{bottom:889.899000px;}
.y178{bottom:892.681500px;}
.y144{bottom:892.683000px;}
.y6d{bottom:899.049000px;}
.y9{bottom:899.293500px;}
.y1ab{bottom:900.187500px;}
.yee{bottom:904.699500px;}
.y177{bottom:907.824000px;}
.y38{bottom:908.269500px;}
.ya4{bottom:908.424000px;}
.y6c{bottom:913.449000px;}
.y143{bottom:915.324000px;}
.ya3{bottom:922.824000px;}
.y1aa{bottom:922.828500px;}
.y11a{bottom:923.629500px;}
.y37{bottom:927.199500px;}
.y142{bottom:930.468000px;}
.yed{bottom:931.129500px;}
.y6b{bottom:931.974000px;}
.y1a9{bottom:937.972500px;}
.y8{bottom:939.924000px;}
.ya2{bottom:941.349000px;}
.y119{bottom:942.559500px;}
.y141{bottom:945.612000px;}
.y36{bottom:946.129500px;}
.y6a{bottom:946.374000px;}
.yec{bottom:950.059500px;}
.y1a8{bottom:953.116500px;}
.ya1{bottom:955.749000px;}
.y69{bottom:960.774000px;}
.y118{bottom:961.488000px;}
.y35{bottom:965.059500px;}
.y176{bottom:968.253000px;}
.y140{bottom:968.256000px;}
.y7{bottom:968.695500px;}
.yeb{bottom:968.988000px;}
.ya0{bottom:974.274000px;}
.y1a7{bottom:975.757500px;}
.y68{bottom:979.299000px;}
.y117{bottom:980.418000px;}
.y175{bottom:983.397000px;}
.y13f{bottom:983.398500px;}
.y34{bottom:983.988000px;}
.y9f{bottom:988.674000px;}
.y1a6{bottom:990.901500px;}
.y67{bottom:993.699000px;}
.yea{bottom:995.418000px;}
.y174{bottom:998.541000px;}
.y116{bottom:999.348000px;}
.y6{bottom:1002.673500px;}
.y33{bottom:1002.918000px;}
.y13e{bottom:1006.042500px;}
.y1a5{bottom:1006.045500px;}
.y9e{bottom:1007.199000px;}
.y66{bottom:1008.099000px;}
.ye9{bottom:1014.348000px;}
.y115{bottom:1018.278000px;}
.y173{bottom:1021.183500px;}
.y13d{bottom:1021.186500px;}
.y32{bottom:1021.848000px;}
.y65{bottom:1022.499000px;}
.y9d{bottom:1025.724000px;}
.y1a4{bottom:1028.686500px;}
.y5{bottom:1031.473500px;}
.ye8{bottom:1033.278000px;}
.y172{bottom:1036.327500px;}
.y64{bottom:1036.899000px;}
.y9c{bottom:1040.124000px;}
.y31{bottom:1040.778000px;}
.y13c{bottom:1043.830500px;}
.y114{bottom:1044.708000px;}
.ye7{bottom:1052.208000px;}
.y63{bottom:1055.424000px;}
.y9b{bottom:1058.649000px;}
.y171{bottom:1058.971500px;}
.y13b{bottom:1058.973000px;}
.y30{bottom:1059.708000px;}
.y62{bottom:1069.824000px;}
.ye6{bottom:1071.136500px;}
.y170{bottom:1074.115500px;}
.y9a{bottom:1077.174000px;}
.y2f{bottom:1078.636500px;}
.y13a{bottom:1081.614000px;}
.y61{bottom:1084.224000px;}
.ye5{bottom:1090.066500px;}
.y99{bottom:1095.699000px;}
.y4{bottom:1096.161000px;}
.y139{bottom:1096.758000px;}
.y2e{bottom:1097.566500px;}
.y60{bottom:1102.749000px;}
.y138{bottom:1111.902000px;}
.y98{bottom:1114.224000px;}
.y2d{bottom:1116.496500px;}
.y5f{bottom:1117.149000px;}
.y97{bottom:1133.904900px;}
.y2{bottom:1139.095500px;}
.y1{bottom:1165.140000px;}
.y2c{bottom:1166.545500px;}
.ha{height:23.106445px;}
.he{height:24.535216px;}
.h4{height:32.859375px;}
.h3{height:33.796875px;}
.h6{height:34.453125px;}
.hb{height:36.966797px;}
.h2{height:38.021484px;}
.hc{height:38.759766px;}
.h7{height:41.074219px;}
.hd{height:43.066406px;}
.h9{height:64.423828px;}
.h8{height:65.718750px;}
.h5{height:73.933594px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.920000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x8{left:85.039500px;}
.xa{left:87.664500px;}
.x10{left:96.289500px;}
.x9{left:107.539500px;}
.x7{left:118.992000px;}
.xf{left:122.539500px;}
.xb{left:231.984000px;}
.x4{left:260.232000px;}
.x5{left:311.407500px;}
.x2{left:313.950000px;}
.xd{left:329.310000px;}
.x3{left:365.628000px;}
.x6{left:367.399500px;}
.xc{left:445.641000px;}
.x1{left:490.630500px;}
.xe{left:519.343500px;}
@media print{
.v2{vertical-align:-26.666667pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:32.000000pt;}
.ls1a{letter-spacing:-0.435072pt;}
.lsb{letter-spacing:0.000000pt;}
.ls5{letter-spacing:0.010667pt;}
.ls47{letter-spacing:0.016000pt;}
.ls16{letter-spacing:0.021333pt;}
.ls40{letter-spacing:0.037333pt;}
.ls3d{letter-spacing:0.042667pt;}
.ls45{letter-spacing:0.058667pt;}
.ls2{letter-spacing:0.064000pt;}
.ls17{letter-spacing:0.069333pt;}
.ls1f{letter-spacing:0.074667pt;}
.ls19{letter-spacing:0.080000pt;}
.ls41{letter-spacing:0.085333pt;}
.lsc{letter-spacing:0.090667pt;}
.ls8{letter-spacing:0.096000pt;}
.ls31{letter-spacing:0.101333pt;}
.ls1d{letter-spacing:0.106667pt;}
.ls33{letter-spacing:0.112000pt;}
.ls18{letter-spacing:0.117333pt;}
.ls3b{letter-spacing:0.128000pt;}
.ls44{letter-spacing:0.133333pt;}
.ls27{letter-spacing:0.138667pt;}
.lsd{letter-spacing:0.144000pt;}
.ls2f{letter-spacing:0.149333pt;}
.ls28{letter-spacing:0.160000pt;}
.ls20{letter-spacing:0.170667pt;}
.ls2e{letter-spacing:0.176000pt;}
.lse{letter-spacing:0.181333pt;}
.ls12{letter-spacing:0.186667pt;}
.ls3a{letter-spacing:0.192000pt;}
.ls10{letter-spacing:0.197333pt;}
.ls6{letter-spacing:0.202667pt;}
.ls34{letter-spacing:0.213333pt;}
.ls9{letter-spacing:0.218667pt;}
.ls1b{letter-spacing:0.229333pt;}
.ls3c{letter-spacing:0.240000pt;}
.ls35{letter-spacing:0.245333pt;}
.ls2a{letter-spacing:0.256000pt;}
.ls38{letter-spacing:0.266667pt;}
.ls46{letter-spacing:0.272000pt;}
.ls2c{letter-spacing:0.277333pt;}
.ls39{letter-spacing:0.282667pt;}
.ls4{letter-spacing:0.288000pt;}
.ls1{letter-spacing:0.293333pt;}
.ls23{letter-spacing:0.304000pt;}
.ls26{letter-spacing:0.314667pt;}
.ls32{letter-spacing:0.330667pt;}
.lsf{letter-spacing:0.346667pt;}
.ls36{letter-spacing:0.352000pt;}
.ls13{letter-spacing:0.357333pt;}
.ls43{letter-spacing:0.362667pt;}
.ls48{letter-spacing:0.373333pt;}
.ls22{letter-spacing:0.378667pt;}
.ls49{letter-spacing:0.384000pt;}
.ls29{letter-spacing:0.389333pt;}
.ls15{letter-spacing:0.394667pt;}
.ls37{letter-spacing:0.400000pt;}
.ls3e{letter-spacing:0.410667pt;}
.ls21{letter-spacing:0.421333pt;}
.ls2b{letter-spacing:0.426667pt;}
.ls30{letter-spacing:0.437333pt;}
.ls25{letter-spacing:0.442667pt;}
.ls2d{letter-spacing:0.448000pt;}
.ls11{letter-spacing:0.453333pt;}
.ls14{letter-spacing:0.464000pt;}
.lsa{letter-spacing:0.469333pt;}
.ls1c{letter-spacing:0.474667pt;}
.ls42{letter-spacing:0.480000pt;}
.ls3f{letter-spacing:0.485333pt;}
.ls1e{letter-spacing:0.490667pt;}
.ls24{letter-spacing:0.517333pt;}
.ls7{letter-spacing:0.522667pt;}
.ls0{letter-spacing:0.528000pt;}
.ls3{letter-spacing:0.533333pt;}
.ws17{word-spacing:-13.866667pt;}
.ws3e{word-spacing:-13.824000pt;}
.ws53{word-spacing:-13.760000pt;}
.wsa0{word-spacing:-13.754667pt;}
.wsa1{word-spacing:-13.722667pt;}
.ws3f{word-spacing:-13.712000pt;}
.ws54{word-spacing:-13.621333pt;}
.ws55{word-spacing:-13.610667pt;}
.ws52{word-spacing:-13.536000pt;}
.ws18{word-spacing:-13.530667pt;}
.ws16{word-spacing:-13.424000pt;}
.ws0{word-spacing:-8.800000pt;}
.ws3a{word-spacing:-7.569408pt;}
.ws1{word-spacing:-7.333333pt;}
.ws2{word-spacing:0.000000pt;}
.ws9{word-spacing:0.037333pt;}
.ws32{word-spacing:0.048000pt;}
.ws19{word-spacing:0.122667pt;}
.wsb2{word-spacing:0.128000pt;}
.wsbf{word-spacing:0.133333pt;}
.ws3c{word-spacing:0.139392pt;}
.ws2c{word-spacing:0.144000pt;}
.wsae{word-spacing:0.154667pt;}
.ws5{word-spacing:0.176000pt;}
.ws9e{word-spacing:0.186667pt;}
.ws7c{word-spacing:0.192000pt;}
.wsb3{word-spacing:0.229333pt;}
.ws34{word-spacing:0.234667pt;}
.ws93{word-spacing:0.240000pt;}
.wsb6{word-spacing:0.250667pt;}
.ws36{word-spacing:0.256000pt;}
.ws46{word-spacing:0.261333pt;}
.ws5e{word-spacing:0.272000pt;}
.wsc5{word-spacing:0.277333pt;}
.ws81{word-spacing:0.288000pt;}
.ws44{word-spacing:0.293333pt;}
.wse{word-spacing:0.298667pt;}
.ws71{word-spacing:0.314667pt;}
.wscd{word-spacing:0.325333pt;}
.ws35{word-spacing:0.336000pt;}
.wsa8{word-spacing:0.346667pt;}
.ws2d{word-spacing:0.352000pt;}
.ws28{word-spacing:0.362667pt;}
.wsa3{word-spacing:0.378667pt;}
.wsab{word-spacing:0.394667pt;}
.wsbe{word-spacing:0.400000pt;}
.ws4a{word-spacing:0.405333pt;}
.ws7e{word-spacing:0.410667pt;}
.ws79{word-spacing:0.480000pt;}
.ws42{word-spacing:0.496000pt;}
.wsb{word-spacing:0.522667pt;}
.ws33{word-spacing:0.528000pt;}
.ws1a{word-spacing:0.533333pt;}
.ws20{word-spacing:0.554667pt;}
.wsd0{word-spacing:0.560000pt;}
.ws11{word-spacing:0.581333pt;}
.ws2a{word-spacing:0.608000pt;}
.wsd4{word-spacing:0.618667pt;}
.ws7{word-spacing:0.624000pt;}
.ws48{word-spacing:0.682667pt;}
.ws8f{word-spacing:0.698667pt;}
.ws70{word-spacing:0.704000pt;}
.ws6b{word-spacing:0.714667pt;}
.ws51{word-spacing:0.725333pt;}
.ws89{word-spacing:0.736000pt;}
.ws9f{word-spacing:0.752000pt;}
.ws80{word-spacing:0.762667pt;}
.ws7a{word-spacing:0.768000pt;}
.ws5d{word-spacing:0.784000pt;}
.wsac{word-spacing:0.794667pt;}
.ws8c{word-spacing:0.805333pt;}
.wsc2{word-spacing:0.832000pt;}
.wsa5{word-spacing:0.837333pt;}
.wsbc{word-spacing:0.842667pt;}
.ws76{word-spacing:0.848000pt;}
.wsc0{word-spacing:0.853333pt;}
.ws21{word-spacing:0.874667pt;}
.wsc6{word-spacing:0.885333pt;}
.ws74{word-spacing:0.901333pt;}
.ws5c{word-spacing:0.944000pt;}
.ws72{word-spacing:0.970667pt;}
.wsd2{word-spacing:0.986667pt;}
.wsaa{word-spacing:1.013333pt;}
.ws12{word-spacing:1.018667pt;}
.wsc1{word-spacing:1.024000pt;}
.ws4f{word-spacing:1.040000pt;}
.ws7f{word-spacing:1.056000pt;}
.ws77{word-spacing:1.088000pt;}
.wsce{word-spacing:1.093333pt;}
.ws31{word-spacing:1.141333pt;}
.wsd1{word-spacing:1.168000pt;}
.wsc8{word-spacing:1.178667pt;}
.ws4{word-spacing:1.194667pt;}
.wsa7{word-spacing:1.248000pt;}
.ws2e{word-spacing:1.264000pt;}
.ws5a{word-spacing:1.274667pt;}
.wsb4{word-spacing:1.285333pt;}
.wsa6{word-spacing:1.328000pt;}
.ws7d{word-spacing:1.354667pt;}
.ws83{word-spacing:1.360000pt;}
.wsbd{word-spacing:1.365333pt;}
.wsbb{word-spacing:1.376000pt;}
.ws1d{word-spacing:1.386667pt;}
.ws69{word-spacing:1.397333pt;}
.ws78{word-spacing:1.402667pt;}
.ws99{word-spacing:1.514667pt;}
.ws49{word-spacing:1.520000pt;}
.wsd{word-spacing:1.525333pt;}
.wsc{word-spacing:1.530667pt;}
.ws57{word-spacing:1.536000pt;}
.wsb1{word-spacing:1.610667pt;}
.ws63{word-spacing:1.621333pt;}
.wsaf{word-spacing:1.626667pt;}
.ws95{word-spacing:1.632000pt;}
.ws3{word-spacing:1.637333pt;}
.ws86{word-spacing:1.658667pt;}
.ws43{word-spacing:1.701333pt;}
.ws73{word-spacing:1.717333pt;}
.ws2f{word-spacing:1.738667pt;}
.ws9d{word-spacing:1.765333pt;}
.wsc7{word-spacing:1.888000pt;}
.wscf{word-spacing:1.893333pt;}
.wsba{word-spacing:1.920000pt;}
.wsb8{word-spacing:1.936000pt;}
.ws45{word-spacing:1.968000pt;}
.ws13{word-spacing:1.973333pt;}
.ws62{word-spacing:1.984000pt;}
.ws1e{word-spacing:1.989333pt;}
.ws4e{word-spacing:2.005333pt;}
.ws84{word-spacing:2.074667pt;}
.ws1f{word-spacing:2.170667pt;}
.ws2b{word-spacing:2.261333pt;}
.wsb0{word-spacing:2.293333pt;}
.ws6c{word-spacing:2.378667pt;}
.wsd5{word-spacing:2.698667pt;}
.ws25{word-spacing:2.714667pt;}
.ws94{word-spacing:2.789333pt;}
.ws29{word-spacing:2.970667pt;}
.ws56{word-spacing:3.008000pt;}
.ws6a{word-spacing:3.162667pt;}
.ws85{word-spacing:3.168000pt;}
.ws6d{word-spacing:3.269333pt;}
.ws64{word-spacing:3.285333pt;}
.ws6e{word-spacing:3.301333pt;}
.wsc4{word-spacing:3.536000pt;}
.ws9c{word-spacing:3.685333pt;}
.ws7b{word-spacing:3.754667pt;}
.ws59{word-spacing:3.813333pt;}
.ws40{word-spacing:3.834667pt;}
.ws27{word-spacing:3.861333pt;}
.ws41{word-spacing:4.005333pt;}
.ws50{word-spacing:4.117333pt;}
.ws24{word-spacing:4.250667pt;}
.wsb7{word-spacing:4.272000pt;}
.ws15{word-spacing:4.277333pt;}
.ws82{word-spacing:4.528000pt;}
.ws5b{word-spacing:4.570667pt;}
.ws96{word-spacing:4.714667pt;}
.ws6f{word-spacing:4.720000pt;}
.ws4b{word-spacing:4.762667pt;}
.ws26{word-spacing:5.082667pt;}
.ws23{word-spacing:5.120000pt;}
.wscb{word-spacing:5.221333pt;}
.wsc3{word-spacing:5.269333pt;}
.wsf{word-spacing:5.280000pt;}
.ws1c{word-spacing:5.445333pt;}
.ws8b{word-spacing:5.541333pt;}
.ws10{word-spacing:5.594667pt;}
.ws91{word-spacing:5.696000pt;}
.ws9b{word-spacing:5.792000pt;}
.ws4c{word-spacing:5.824000pt;}
.ws67{word-spacing:5.834667pt;}
.ws58{word-spacing:5.872000pt;}
.ws8{word-spacing:6.048000pt;}
.wscc{word-spacing:6.320000pt;}
.ws6{word-spacing:6.373333pt;}
.ws47{word-spacing:6.554667pt;}
.ws30{word-spacing:6.613333pt;}
.ws66{word-spacing:6.826667pt;}
.ws37{word-spacing:6.944000pt;}
.ws1b{word-spacing:7.120000pt;}
.wsa4{word-spacing:7.264000pt;}
.wsc9{word-spacing:7.322667pt;}
.ws14{word-spacing:7.477333pt;}
.ws8d{word-spacing:7.546667pt;}
.ws97{word-spacing:7.696000pt;}
.ws4d{word-spacing:8.042667pt;}
.ws87{word-spacing:8.053333pt;}
.ws75{word-spacing:8.992000pt;}
.wsca{word-spacing:9.029333pt;}
.ws68{word-spacing:9.237333pt;}
.wsa{word-spacing:9.360000pt;}
.wsad{word-spacing:9.829333pt;}
.ws88{word-spacing:9.914667pt;}
.ws5f{word-spacing:10.181333pt;}
.ws3b{word-spacing:10.240000pt;}
.ws9a{word-spacing:10.288000pt;}
.ws22{word-spacing:10.613333pt;}
.ws61{word-spacing:10.666667pt;}
.ws90{word-spacing:10.965333pt;}
.ws8a{word-spacing:11.125333pt;}
.ws92{word-spacing:12.682667pt;}
.ws8e{word-spacing:12.885333pt;}
.ws98{word-spacing:12.965333pt;}
.wsd3{word-spacing:13.157333pt;}
.ws60{word-spacing:14.608000pt;}
.ws65{word-spacing:15.104000pt;}
.wsb5{word-spacing:20.202667pt;}
.wsa9{word-spacing:24.560000pt;}
.wsb9{word-spacing:51.584000pt;}
.wsa2{word-spacing:72.917333pt;}
.ws38{word-spacing:450.266667pt;}
.ws3d{word-spacing:554.586667pt;}
.ws39{word-spacing:572.592000pt;}
._46{margin-left:-24.560000pt;}
._48{margin-left:-20.202667pt;}
._41{margin-left:-14.608000pt;}
._44{margin-left:-12.885333pt;}
._12{margin-left:-10.613333pt;}
._9{margin-left:-9.360000pt;}
._d{margin-left:-7.477333pt;}
._7{margin-left:-6.373333pt;}
._b{margin-left:-5.280000pt;}
._f{margin-left:-4.277333pt;}
._14{margin-left:-2.714667pt;}
._5{margin-left:-1.637333pt;}
._4{width:1.632000pt;}
._13{width:2.666667pt;}
._e{width:4.266667pt;}
._a{width:5.226667pt;}
._6{width:6.346667pt;}
._c{width:7.466667pt;}
._8{width:9.333333pt;}
._11{width:10.613333pt;}
._43{width:12.853333pt;}
._40{width:14.560000pt;}
._42{width:15.536000pt;}
._47{width:20.160000pt;}
._45{width:24.533333pt;}
._39{width:27.440000pt;}
._15{width:52.085333pt;}
._4a{width:62.250667pt;}
._1c{width:78.277333pt;}
._49{width:83.584000pt;}
._1{width:96.000000pt;}
._1b{width:98.373333pt;}
._1a{width:158.832000pt;}
._33{width:229.808000pt;}
._16{width:269.040000pt;}
._1d{width:280.858667pt;}
._1e{width:290.373333pt;}
._18{width:297.413333pt;}
._22{width:302.149333pt;}
._23{width:309.317333pt;}
._1f{width:318.789333pt;}
._17{width:324.725333pt;}
._25{width:325.914667pt;}
._24{width:335.386667pt;}
._3{width:552.741333pt;}
._2c{width:562.906667pt;}
._3e{width:565.338667pt;}
._27{width:583.258667pt;}
._3d{width:586.672000pt;}
._32{width:596.144000pt;}
._35{width:600.837333pt;}
._2a{width:612.741333pt;}
._2{width:614.309333pt;}
._2d{width:616.240000pt;}
._31{width:617.434667pt;}
._3f{width:631.642667pt;}
._2e{width:634.032000pt;}
._36{width:636.378667pt;}
._37{width:641.157333pt;}
._30{width:643.504000pt;}
._2b{width:650.629333pt;}
._28{width:660.101333pt;}
._20{width:667.253333pt;}
._38{width:669.616000pt;}
._3a{width:672.005333pt;}
._3c{width:676.784000pt;}
._26{width:679.088000pt;}
._2f{width:688.560000pt;}
._3b{width:690.949333pt;}
._29{width:698.032000pt;}
._34{width:707.504000pt;}
._19{width:723.488000pt;}
._0{width:749.904000pt;}
._21{width:825.914667pt;}
._10{width:1108.554667pt;}
.fs7{font-size:29.333333pt;}
.fs8{font-size:32.017920pt;}
.fs6{font-size:35.200000pt;}
.fs1{font-size:42.666667pt;}
.fs0{font-size:48.000000pt;}
.fs3{font-size:53.333333pt;}
.fs5{font-size:64.000000pt;}
.fs4{font-size:85.333333pt;}
.fs2{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y3{bottom:59.493333pt;}
.y1a3{bottom:101.354667pt;}
.ye4{bottom:104.454667pt;}
.y96{bottom:106.329333pt;}
.ycb{bottom:107.153333pt;}
.y2b{bottom:108.866667pt;}
.y16f{bottom:114.696000pt;}
.y1a2{bottom:114.816000pt;}
.y137{bottom:114.857333pt;}
.y113{bottom:114.933333pt;}
.ye3{bottom:121.281333pt;}
.y2a{bottom:122.328000pt;}
.y95{bottom:122.796000pt;}
.yca{bottom:123.980000pt;}
.y5e{bottom:126.477333pt;}
.y16e{bottom:128.157333pt;}
.y1a1{bottom:128.277333pt;}
.y136{bottom:128.318667pt;}
.ye2{bottom:138.108000pt;}
.y112{bottom:138.426667pt;}
.y94{bottom:139.262667pt;}
.yc9{bottom:140.806667pt;}
.y16d{bottom:141.618667pt;}
.y5d{bottom:142.944000pt;}
.y29{bottom:148.237333pt;}
.y1a0{bottom:148.402667pt;}
.y135{bottom:148.444000pt;}
.ye1{bottom:154.933333pt;}
.y93{bottom:155.729333pt;}
.y5c{bottom:155.744000pt;}
.yc8{bottom:157.633333pt;}
.y16c{bottom:161.744000pt;}
.y19f{bottom:161.862667pt;}
.y134{bottom:161.905333pt;}
.y28{bottom:165.064000pt;}
.y5b{bottom:168.544000pt;}
.y111{bottom:168.586667pt;}
.ye0{bottom:171.760000pt;}
.y92{bottom:172.196000pt;}
.y16b{bottom:175.205333pt;}
.y19e{bottom:175.324000pt;}
.y133{bottom:175.365333pt;}
.yc7{bottom:181.125333pt;}
.y5a{bottom:185.010667pt;}
.y110{bottom:185.413333pt;}
.y27{bottom:188.557333pt;}
.ydf{bottom:188.586667pt;}
.y91{bottom:188.662667pt;}
.y16a{bottom:188.666667pt;}
.y19d{bottom:195.449333pt;}
.y132{bottom:195.493333pt;}
.y59{bottom:197.810667pt;}
.yc6{bottom:197.952000pt;}
.y10f{bottom:202.240000pt;}
.y90{bottom:205.129333pt;}
.yde{bottom:205.413333pt;}
.y169{bottom:208.792000pt;}
.y19c{bottom:208.910667pt;}
.y131{bottom:208.954667pt;}
.y58{bottom:210.610667pt;}
.yc5{bottom:214.778667pt;}
.y26{bottom:218.717333pt;}
.y10e{bottom:219.065333pt;}
.y8f{bottom:221.596000pt;}
.ydd{bottom:222.240000pt;}
.y168{bottom:222.252000pt;}
.y19b{bottom:222.372000pt;}
.y57{bottom:227.077333pt;}
.yc4{bottom:231.605333pt;}
.y25{bottom:235.544000pt;}
.y167{bottom:235.713333pt;}
.y10d{bottom:235.892000pt;}
.y130{bottom:236.530667pt;}
.y8e{bottom:238.062667pt;}
.ydc{bottom:239.065333pt;}
.y19a{bottom:242.497333pt;}
.y56{bottom:243.544000pt;}
.yc3{bottom:248.432000pt;}
.y24{bottom:252.369333pt;}
.y10c{bottom:252.718667pt;}
.y8d{bottom:254.529333pt;}
.y166{bottom:255.838667pt;}
.y199{bottom:255.958667pt;}
.y55{bottom:256.344000pt;}
.y12f{bottom:260.024000pt;}
.ydb{bottom:262.558667pt;}
.yc2{bottom:265.257333pt;}
.y23{bottom:269.196000pt;}
.y165{bottom:269.300000pt;}
.y198{bottom:269.420000pt;}
.y10b{bottom:269.545333pt;}
.y8c{bottom:270.996000pt;}
.yda{bottom:279.385333pt;}
.yc1{bottom:282.084000pt;}
.y164{bottom:282.761333pt;}
.y12e{bottom:283.517333pt;}
.y22{bottom:286.022667pt;}
.y10a{bottom:286.372000pt;}
.y54{bottom:287.344000pt;}
.y8b{bottom:287.462667pt;}
.y197{bottom:289.545333pt;}
.yd9{bottom:296.212000pt;}
.yc0{bottom:298.910667pt;}
.y53{bottom:302.486667pt;}
.y21{bottom:302.849333pt;}
.y163{bottom:302.886667pt;}
.y196{bottom:303.005333pt;}
.y8a{bottom:303.929333pt;}
.y109{bottom:309.864000pt;}
.yd8{bottom:313.038667pt;}
.y12d{bottom:313.677333pt;}
.ybf{bottom:315.737333pt;}
.y162{bottom:316.348000pt;}
.y195{bottom:316.466667pt;}
.y20{bottom:319.676000pt;}
.y89{bottom:320.396000pt;}
.y108{bottom:326.690667pt;}
.y161{bottom:329.809333pt;}
.yd7{bottom:329.864000pt;}
.ybe{bottom:332.564000pt;}
.y1f{bottom:336.501333pt;}
.y194{bottom:336.592000pt;}
.y88{bottom:336.862667pt;}
.y12c{bottom:337.170667pt;}
.y52{bottom:343.197333pt;}
.y107{bottom:343.517333pt;}
.yd6{bottom:346.690667pt;}
.ybd{bottom:349.389333pt;}
.y160{bottom:349.934667pt;}
.y193{bottom:350.053333pt;}
.y1e{bottom:353.328000pt;}
.y87{bottom:353.329333pt;}
.y51{bottom:360.024000pt;}
.y106{bottom:360.344000pt;}
.y15f{bottom:363.394667pt;}
.y192{bottom:363.514667pt;}
.y86{bottom:366.129333pt;}
.ybc{bottom:366.216000pt;}
.y12b{bottom:367.329333pt;}
.y1d{bottom:370.154667pt;}
.yd5{bottom:370.184000pt;}
.y50{bottom:376.850667pt;}
.y15e{bottom:376.856000pt;}
.y105{bottom:377.170667pt;}
.ybb{bottom:383.042667pt;}
.y191{bottom:383.642667pt;}
.y1c{bottom:386.981333pt;}
.yd4{bottom:387.010667pt;}
.y12a{bottom:390.822667pt;}
.y104{bottom:393.996000pt;}
.y15d{bottom:396.981333pt;}
.y190{bottom:397.102667pt;}
.y85{bottom:397.128000pt;}
.y1c3{bottom:397.780000pt;}
.yba{bottom:399.869333pt;}
.y4f{bottom:400.344000pt;}
.y1b{bottom:403.808000pt;}
.yd3{bottom:403.837333pt;}
.y15c{bottom:410.442667pt;}
.y103{bottom:410.822667pt;}
.y1c2{bottom:411.241333pt;}
.y84{bottom:412.272000pt;}
.yb9{bottom:416.696000pt;}
.y4e{bottom:417.170667pt;}
.y18f{bottom:417.228000pt;}
.y1a{bottom:420.633333pt;}
.yd2{bottom:420.662667pt;}
.y129{bottom:420.982667pt;}
.y15b{bottom:423.904000pt;}
.y1c1{bottom:424.702667pt;}
.y102{bottom:427.649333pt;}
.y18e{bottom:430.689333pt;}
.y4d{bottom:433.996000pt;}
.y19{bottom:437.460000pt;}
.yd1{bottom:437.489333pt;}
.y15a{bottom:444.029333pt;}
.y18d{bottom:444.150667pt;}
.y101{bottom:444.476000pt;}
.y1c0{bottom:444.830667pt;}
.yb8{bottom:446.854667pt;}
.y4c{bottom:450.822667pt;}
.y18{bottom:454.286667pt;}
.yd0{bottom:454.316000pt;}
.y159{bottom:457.490667pt;}
.y100{bottom:461.302667pt;}
.y18c{bottom:464.278667pt;}
.y4b{bottom:467.649333pt;}
.y128{bottom:467.969333pt;}
.y158{bottom:470.952000pt;}
.ycf{bottom:471.142667pt;}
.y18b{bottom:477.740000pt;}
.y17{bottom:477.780000pt;}
.yff{bottom:478.128000pt;}
.yb7{bottom:478.348000pt;}
.y1bf{bottom:484.289333pt;}
.y4a{bottom:484.476000pt;}
.y83{bottom:484.554667pt;}
.y157{bottom:491.078667pt;}
.yce{bottom:494.636000pt;}
.yfe{bottom:494.954667pt;}
.yb6{bottom:495.174667pt;}
.y82{bottom:497.354667pt;}
.y1be{bottom:497.749333pt;}
.y18a{bottom:497.866667pt;}
.y127{bottom:498.128000pt;}
.y156{bottom:504.540000pt;}
.y49{bottom:507.969333pt;}
.y81{bottom:510.154667pt;}
.y1bd{bottom:511.210667pt;}
.y189{bottom:511.328000pt;}
.yfd{bottom:511.781333pt;}
.y16{bottom:512.548000pt;}
.y126{bottom:514.954667pt;}
.y80{bottom:522.954667pt;}
.y155{bottom:524.668000pt;}
.y48{bottom:524.794667pt;}
.y1bc{bottom:531.336000pt;}
.y188{bottom:531.456000pt;}
.y125{bottom:531.781333pt;}
.yfc{bottom:535.274667pt;}
.y154{bottom:538.129333pt;}
.yb5{bottom:538.554667pt;}
.y7f{bottom:539.421333pt;}
.y15{bottom:541.025333pt;}
.y47{bottom:541.621333pt;}
.y1bb{bottom:544.797333pt;}
.y187{bottom:544.917333pt;}
.y124{bottom:548.608000pt;}
.yb4{bottom:551.354667pt;}
.y7e{bottom:552.221333pt;}
.y14{bottom:556.169333pt;}
.y153{bottom:558.254667pt;}
.y1ba{bottom:558.258667pt;}
.y46{bottom:558.448000pt;}
.yb3{bottom:564.154667pt;}
.y186{bottom:565.044000pt;}
.yfb{bottom:565.434667pt;}
.y7d{bottom:568.688000pt;}
.y152{bottom:571.714667pt;}
.y45{bottom:575.274667pt;}
.y13{bottom:577.980000pt;}
.y1b9{bottom:578.384000pt;}
.y185{bottom:578.505333pt;}
.yb2{bottom:580.621333pt;}
.y7c{bottom:581.488000pt;}
.yfa{bottom:582.260000pt;}
.y151{bottom:585.176000pt;}
.y1b8{bottom:591.845333pt;}
.y44{bottom:592.101333pt;}
.yb1{bottom:597.088000pt;}
.y7b{bottom:597.954667pt;}
.y184{bottom:598.633333pt;}
.yf9{bottom:599.086667pt;}
.y150{bottom:605.304000pt;}
.y1b7{bottom:605.306667pt;}
.y12{bottom:606.456000pt;}
.y43{bottom:608.926667pt;}
.y7a{bottom:610.754667pt;}
.y183{bottom:612.094667pt;}
.yb0{bottom:613.554667pt;}
.yf8{bottom:615.913333pt;}
.y14f{bottom:618.765333pt;}
.y11{bottom:621.600000pt;}
.y123{bottom:622.580000pt;}
.y1b6{bottom:625.432000pt;}
.ycd{bottom:625.753333pt;}
.y79{bottom:627.221333pt;}
.yaf{bottom:630.021333pt;}
.y182{bottom:632.221333pt;}
.y42{bottom:632.420000pt;}
.yf7{bottom:632.740000pt;}
.y10{bottom:636.744000pt;}
.y14e{bottom:638.890667pt;}
.y1b5{bottom:638.892000pt;}
.ycc{bottom:642.580000pt;}
.y78{bottom:643.688000pt;}
.y181{bottom:645.682667pt;}
.yae{bottom:646.488000pt;}
.y41{bottom:649.246667pt;}
.yf6{bottom:649.566667pt;}
.y14d{bottom:652.352000pt;}
.y1b4{bottom:652.353333pt;}
.y122{bottom:652.740000pt;}
.yf{bottom:658.554667pt;}
.y77{bottom:660.154667pt;}
.yad{bottom:662.954667pt;}
.y180{bottom:665.810667pt;}
.y14c{bottom:665.812000pt;}
.y40{bottom:666.073333pt;}
.y121{bottom:669.566667pt;}
.y1b3{bottom:672.481333pt;}
.yf5{bottom:673.058667pt;}
.y76{bottom:676.621333pt;}
.y17f{bottom:679.272000pt;}
.yac{bottom:679.421333pt;}
.ye{bottom:680.365333pt;}
.y3f{bottom:682.900000pt;}
.y14b{bottom:685.940000pt;}
.y1b2{bottom:685.942667pt;}
.y120{bottom:686.392000pt;}
.y75{bottom:689.421333pt;}
.yf4{bottom:689.885333pt;}
.yab{bottom:695.888000pt;}
.y17e{bottom:699.397333pt;}
.y14a{bottom:699.401333pt;}
.y3e{bottom:699.725333pt;}
.yd{bottom:699.786667pt;}
.y11f{bottom:703.218667pt;}
.y74{bottom:705.888000pt;}
.y1b1{bottom:706.069333pt;}
.yf3{bottom:706.712000pt;}
.yaa{bottom:712.354667pt;}
.y17d{bottom:712.857333pt;}
.y3d{bottom:716.552000pt;}
.y73{bottom:718.688000pt;}
.y149{bottom:719.526667pt;}
.y1b0{bottom:719.530667pt;}
.y11e{bottom:720.045333pt;}
.yf2{bottom:723.538667pt;}
.y17c{bottom:726.318667pt;}
.ya9{bottom:728.821333pt;}
.y72{bottom:731.488000pt;}
.y148{bottom:732.988000pt;}
.y3c{bottom:733.378667pt;}
.y11d{bottom:736.872000pt;}
.yc{bottom:738.876000pt;}
.y1af{bottom:739.658667pt;}
.y71{bottom:744.288000pt;}
.ya8{bottom:745.288000pt;}
.y17b{bottom:746.444000pt;}
.y147{bottom:746.449333pt;}
.yf1{bottom:747.032000pt;}
.y3b{bottom:750.205333pt;}
.y1ae{bottom:753.120000pt;}
.y11c{bottom:753.698667pt;}
.yb{bottom:756.557333pt;}
.y70{bottom:757.088000pt;}
.y17a{bottom:759.905333pt;}
.ya7{bottom:761.754667pt;}
.yf0{bottom:763.857333pt;}
.y146{bottom:766.574667pt;}
.y3a{bottom:767.032000pt;}
.y11b{bottom:770.524000pt;}
.y1ad{bottom:773.245333pt;}
.y179{bottom:773.366667pt;}
.y6f{bottom:773.554667pt;}
.ya{bottom:774.240000pt;}
.ya6{bottom:778.221333pt;}
.y145{bottom:780.034667pt;}
.y39{bottom:783.857333pt;}
.y6e{bottom:786.354667pt;}
.y1ac{bottom:786.706667pt;}
.yef{bottom:787.350667pt;}
.ya5{bottom:791.021333pt;}
.y178{bottom:793.494667pt;}
.y144{bottom:793.496000pt;}
.y6d{bottom:799.154667pt;}
.y9{bottom:799.372000pt;}
.y1ab{bottom:800.166667pt;}
.yee{bottom:804.177333pt;}
.y177{bottom:806.954667pt;}
.y38{bottom:807.350667pt;}
.ya4{bottom:807.488000pt;}
.y6c{bottom:811.954667pt;}
.y143{bottom:813.621333pt;}
.ya3{bottom:820.288000pt;}
.y1aa{bottom:820.292000pt;}
.y11a{bottom:821.004000pt;}
.y37{bottom:824.177333pt;}
.y142{bottom:827.082667pt;}
.yed{bottom:827.670667pt;}
.y6b{bottom:828.421333pt;}
.y1a9{bottom:833.753333pt;}
.y8{bottom:835.488000pt;}
.ya2{bottom:836.754667pt;}
.y119{bottom:837.830667pt;}
.y141{bottom:840.544000pt;}
.y36{bottom:841.004000pt;}
.y6a{bottom:841.221333pt;}
.yec{bottom:844.497333pt;}
.y1a8{bottom:847.214667pt;}
.ya1{bottom:849.554667pt;}
.y69{bottom:854.021333pt;}
.y118{bottom:854.656000pt;}
.y35{bottom:857.830667pt;}
.y176{bottom:860.669333pt;}
.y140{bottom:860.672000pt;}
.y7{bottom:861.062667pt;}
.yeb{bottom:861.322667pt;}
.ya0{bottom:866.021333pt;}
.y1a7{bottom:867.340000pt;}
.y68{bottom:870.488000pt;}
.y117{bottom:871.482667pt;}
.y175{bottom:874.130667pt;}
.y13f{bottom:874.132000pt;}
.y34{bottom:874.656000pt;}
.y9f{bottom:878.821333pt;}
.y1a6{bottom:880.801333pt;}
.y67{bottom:883.288000pt;}
.yea{bottom:884.816000pt;}
.y174{bottom:887.592000pt;}
.y116{bottom:888.309333pt;}
.y6{bottom:891.265333pt;}
.y33{bottom:891.482667pt;}
.y13e{bottom:894.260000pt;}
.y1a5{bottom:894.262667pt;}
.y9e{bottom:895.288000pt;}
.y66{bottom:896.088000pt;}
.ye9{bottom:901.642667pt;}
.y115{bottom:905.136000pt;}
.y173{bottom:907.718667pt;}
.y13d{bottom:907.721333pt;}
.y32{bottom:908.309333pt;}
.y65{bottom:908.888000pt;}
.y9d{bottom:911.754667pt;}
.y1a4{bottom:914.388000pt;}
.y5{bottom:916.865333pt;}
.ye8{bottom:918.469333pt;}
.y172{bottom:921.180000pt;}
.y64{bottom:921.688000pt;}
.y9c{bottom:924.554667pt;}
.y31{bottom:925.136000pt;}
.y13c{bottom:927.849333pt;}
.y114{bottom:928.629333pt;}
.ye7{bottom:935.296000pt;}
.y63{bottom:938.154667pt;}
.y9b{bottom:941.021333pt;}
.y171{bottom:941.308000pt;}
.y13b{bottom:941.309333pt;}
.y30{bottom:941.962667pt;}
.y62{bottom:950.954667pt;}
.ye6{bottom:952.121333pt;}
.y170{bottom:954.769333pt;}
.y9a{bottom:957.488000pt;}
.y2f{bottom:958.788000pt;}
.y13a{bottom:961.434667pt;}
.y61{bottom:963.754667pt;}
.ye5{bottom:968.948000pt;}
.y99{bottom:973.954667pt;}
.y4{bottom:974.365333pt;}
.y139{bottom:974.896000pt;}
.y2e{bottom:975.614667pt;}
.y60{bottom:980.221333pt;}
.y138{bottom:988.357333pt;}
.y98{bottom:990.421333pt;}
.y2d{bottom:992.441333pt;}
.y5f{bottom:993.021333pt;}
.y97{bottom:1007.915467pt;}
.y2{bottom:1012.529333pt;}
.y1{bottom:1035.680000pt;}
.y2c{bottom:1036.929333pt;}
.ha{height:20.539062pt;}
.he{height:21.809081pt;}
.h4{height:29.208333pt;}
.h3{height:30.041667pt;}
.h6{height:30.625000pt;}
.hb{height:32.859375pt;}
.h2{height:33.796875pt;}
.hc{height:34.453125pt;}
.h7{height:36.510417pt;}
.hd{height:38.281250pt;}
.h9{height:57.265625pt;}
.h8{height:58.416667pt;}
.h5{height:65.718750pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.706667pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x8{left:75.590667pt;}
.xa{left:77.924000pt;}
.x10{left:85.590667pt;}
.x9{left:95.590667pt;}
.x7{left:105.770667pt;}
.xf{left:108.924000pt;}
.xb{left:206.208000pt;}
.x4{left:231.317333pt;}
.x5{left:276.806667pt;}
.x2{left:279.066667pt;}
.xd{left:292.720000pt;}
.x3{left:325.002667pt;}
.x6{left:326.577333pt;}
.xc{left:396.125333pt;}
.x1{left:436.116000pt;}
.xe{left:461.638667pt;}
}




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