
    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_3133171dd8785de701a32dc8.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.904785;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_73f83bbdc7cf05158b0cc787.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.734000;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_c6ce6c3c98c051bc2cb8966d.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.951000;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_4ffbba9fb0bc36d7fd7400e6.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.938000;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_a4c5a570126b52de7e80e8ef.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.931000;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_38de5f54802f40ba5777b220.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.700000;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_ff19f45962cb0423ba598fb7.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.075000;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_bb4c9e1803866a0f4762f6cc.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.744000;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_d7a4d46028642e1f8e03e832.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.984000;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_ce403f9c25e9e317a55806a1.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.158000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_1c930b9ce4b9839b2e95e33c.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.166000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_976e53347a1c9307e5cb3f49.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.744000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_5b252b112e6bb669d9e3b2c0.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.888672;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_08f82902c1cda9945b5cab45.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.719000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_ce403f9c25e9e317a55806a1.woff2')format("woff");}.fff{font-family:fff;line-height:1.158000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url('chunks/assets/font_0b468edcbc331b510c711a35.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.984000;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:-16.200000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:20.067600px;}
.ls27{letter-spacing:-0.330000px;}
.ls2{letter-spacing:0.000000px;}
.ls18{letter-spacing:0.033000px;}
.ls13{letter-spacing:0.054000px;}
.ls2a{letter-spacing:0.060000px;}
.ls1a{letter-spacing:0.066000px;}
.ls22{letter-spacing:0.090000px;}
.ls1c{letter-spacing:0.099000px;}
.ls23{letter-spacing:0.120000px;}
.lsa{letter-spacing:0.132000px;}
.ls10{letter-spacing:0.162000px;}
.ls14{letter-spacing:0.165000px;}
.ls12{letter-spacing:0.189000px;}
.ls1{letter-spacing:0.192000px;}
.ls8{letter-spacing:0.198000px;}
.ls3{letter-spacing:0.216000px;}
.ls21{letter-spacing:0.240000px;}
.ls7{letter-spacing:0.264000px;}
.lsf{letter-spacing:0.270000px;}
.ls5{letter-spacing:0.330000px;}
.ls29{letter-spacing:0.360000px;}
.ls1b{letter-spacing:0.363000px;}
.lse{letter-spacing:0.396000px;}
.ls26{letter-spacing:0.420000px;}
.ls19{letter-spacing:0.429000px;}
.ls1d{letter-spacing:0.432000px;}
.ls20{letter-spacing:0.462000px;}
.ls9{letter-spacing:0.495000px;}
.ls1e{letter-spacing:0.528000px;}
.ls2c{letter-spacing:0.561000px;}
.ls17{letter-spacing:0.594000px;}
.lsb{letter-spacing:0.660000px;}
.ls16{letter-spacing:0.726000px;}
.ls2b{letter-spacing:0.792000px;}
.ls6{letter-spacing:0.858000px;}
.ls2d{letter-spacing:0.990000px;}
.ls15{letter-spacing:1.056000px;}
.ls1f{letter-spacing:1.122000px;}
.ls31{letter-spacing:1.188000px;}
.ls2e{letter-spacing:1.287000px;}
.ls2f{letter-spacing:1.452000px;}
.ls30{letter-spacing:1.650000px;}
.lsd{letter-spacing:6.336000px;}
.ls25{letter-spacing:6.996000px;}
.ls11{letter-spacing:53.838000px;}
.ls28{letter-spacing:2038.568400px;}
.lsc{letter-spacing:2071.568400px;}
.ls24{letter-spacing:2134.018800px;}
.ls4{letter-spacing:2167.018800px;}
.ls0{letter-spacing:2844.088800px;}
.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;}
}
.ws0{word-spacing:-22.680000px;}
.ws1{word-spacing:-17.010000px;}
.ws18{word-spacing:-16.500000px;}
.wsa0{word-spacing:-14.850000px;}
.ws82{word-spacing:-13.860000px;}
.ws38{word-spacing:-12.750000px;}
.ws39{word-spacing:-11.529000px;}
.ws19{word-spacing:-9.009000px;}
.ws1b{word-spacing:-7.371000px;}
.wsa1{word-spacing:-0.990000px;}
.ws69{word-spacing:-0.858000px;}
.ws6a{word-spacing:-0.660000px;}
.ws84{word-spacing:-0.462000px;}
.ws46{word-spacing:-0.396000px;}
.ws20{word-spacing:-0.330000px;}
.ws54{word-spacing:-0.270000px;}
.wsc{word-spacing:-0.216000px;}
.wsa3{word-spacing:-0.198000px;}
.ws5{word-spacing:-0.192000px;}
.ws4a{word-spacing:-0.162000px;}
.ws62{word-spacing:-0.108000px;}
.ws1a{word-spacing:-0.049500px;}
.ws66{word-spacing:-0.040500px;}
.ws2{word-spacing:0.000000px;}
.ws6e{word-spacing:0.066000px;}
.ws95{word-spacing:0.132000px;}
.ws40{word-spacing:0.198000px;}
.ws3{word-spacing:0.240000px;}
.ws44{word-spacing:0.264000px;}
.ws56{word-spacing:0.330000px;}
.ws9c{word-spacing:0.396000px;}
.ws4c{word-spacing:0.432000px;}
.ws5a{word-spacing:0.462000px;}
.ws32{word-spacing:0.528000px;}
.ws75{word-spacing:0.594000px;}
.ws8a{word-spacing:0.660000px;}
.ws61{word-spacing:0.726000px;}
.ws41{word-spacing:0.792000px;}
.wsa2{word-spacing:0.858000px;}
.ws2b{word-spacing:0.924000px;}
.ws4d{word-spacing:0.972000px;}
.ws42{word-spacing:0.990000px;}
.ws45{word-spacing:1.056000px;}
.ws5f{word-spacing:1.122000px;}
.ws87{word-spacing:1.188000px;}
.ws7d{word-spacing:1.254000px;}
.ws6c{word-spacing:1.320000px;}
.ws7f{word-spacing:1.386000px;}
.ws7b{word-spacing:1.452000px;}
.ws99{word-spacing:1.518000px;}
.ws5c{word-spacing:1.584000px;}
.ws43{word-spacing:1.650000px;}
.ws8c{word-spacing:1.716000px;}
.ws24{word-spacing:1.782000px;}
.ws14{word-spacing:1.836000px;}
.ws28{word-spacing:1.914000px;}
.ws6f{word-spacing:1.980000px;}
.ws12{word-spacing:1.998000px;}
.ws8e{word-spacing:2.040000px;}
.ws3e{word-spacing:2.046000px;}
.ws27{word-spacing:2.112000px;}
.wsa{word-spacing:2.160000px;}
.ws31{word-spacing:2.178000px;}
.ws64{word-spacing:2.214000px;}
.ws21{word-spacing:2.244000px;}
.ws13{word-spacing:2.268000px;}
.ws5b{word-spacing:2.310000px;}
.ws4e{word-spacing:2.322000px;}
.ws10{word-spacing:2.376000px;}
.ws90{word-spacing:2.400000px;}
.ws23{word-spacing:2.442000px;}
.ws16{word-spacing:2.484000px;}
.ws1e{word-spacing:2.508000px;}
.ws47{word-spacing:2.574000px;}
.ws67{word-spacing:2.640000px;}
.ws11{word-spacing:2.700000px;}
.ws76{word-spacing:2.706000px;}
.ws7a{word-spacing:2.772000px;}
.ws70{word-spacing:2.838000px;}
.ws2e{word-spacing:2.904000px;}
.ws68{word-spacing:2.970000px;}
.ws2d{word-spacing:3.036000px;}
.ws71{word-spacing:3.102000px;}
.ws50{word-spacing:3.132000px;}
.ws86{word-spacing:3.168000px;}
.ws85{word-spacing:3.234000px;}
.ws36{word-spacing:3.300000px;}
.ws51{word-spacing:3.348000px;}
.ws93{word-spacing:3.360000px;}
.ws72{word-spacing:3.366000px;}
.ws22{word-spacing:3.432000px;}
.ws4f{word-spacing:3.456000px;}
.ws77{word-spacing:3.498000px;}
.ws4b{word-spacing:3.510000px;}
.ws65{word-spacing:3.564000px;}
.ws92{word-spacing:3.630000px;}
.ws25{word-spacing:3.696000px;}
.ws63{word-spacing:3.726000px;}
.ws88{word-spacing:3.762000px;}
.ws59{word-spacing:3.828000px;}
.ws2f{word-spacing:3.894000px;}
.ws81{word-spacing:3.942000px;}
.ws6b{word-spacing:3.960000px;}
.ws78{word-spacing:4.026000px;}
.ws7c{word-spacing:4.092000px;}
.ws30{word-spacing:4.158000px;}
.ws6d{word-spacing:4.224000px;}
.ws34{word-spacing:4.290000px;}
.ws15{word-spacing:4.320000px;}
.ws97{word-spacing:4.356000px;}
.ws26{word-spacing:4.422000px;}
.ws3a{word-spacing:4.488000px;}
.ws8f{word-spacing:4.500000px;}
.ws9{word-spacing:4.536000px;}
.wsa4{word-spacing:4.554000px;}
.ws80{word-spacing:4.620000px;}
.ws53{word-spacing:4.644000px;}
.ws33{word-spacing:4.686000px;}
.ws49{word-spacing:4.698000px;}
.ws58{word-spacing:4.752000px;}
.ws98{word-spacing:4.818000px;}
.ws83{word-spacing:4.884000px;}
.wsd{word-spacing:4.914000px;}
.ws9a{word-spacing:4.950000px;}
.ws94{word-spacing:4.980000px;}
.ws79{word-spacing:5.016000px;}
.ws2c{word-spacing:5.082000px;}
.ws8{word-spacing:5.130000px;}
.ws96{word-spacing:5.148000px;}
.ws52{word-spacing:5.184000px;}
.ws7e{word-spacing:5.214000px;}
.ws35{word-spacing:5.280000px;}
.ws4{word-spacing:5.328000px;}
.ws2a{word-spacing:5.346000px;}
.wse{word-spacing:5.400000px;}
.ws57{word-spacing:5.412000px;}
.wsf{word-spacing:5.454000px;}
.ws5e{word-spacing:5.478000px;}
.ws5d{word-spacing:5.610000px;}
.ws17{word-spacing:5.616000px;}
.wsb{word-spacing:5.670000px;}
.ws74{word-spacing:5.676000px;}
.ws9f{word-spacing:5.742000px;}
.ws89{word-spacing:5.874000px;}
.ws8d{word-spacing:5.880000px;}
.ws3b{word-spacing:5.940000px;}
.ws9b{word-spacing:6.006000px;}
.ws73{word-spacing:6.072000px;}
.ws37{word-spacing:6.138000px;}
.ws48{word-spacing:6.204000px;}
.ws3c{word-spacing:6.270000px;}
.ws91{word-spacing:6.300000px;}
.ws29{word-spacing:6.402000px;}
.ws55{word-spacing:6.468000px;}
.ws3f{word-spacing:6.534000px;}
.ws60{word-spacing:6.600000px;}
.ws8b{word-spacing:6.666000px;}
.ws9e{word-spacing:6.732000px;}
.ws3d{word-spacing:6.798000px;}
.ws9d{word-spacing:6.864000px;}
.ws1f{word-spacing:6.930000px;}
.ws6{word-spacing:10.656000px;}
.ws1c{word-spacing:12.750000px;}
.ws7{word-spacing:13.344000px;}
.ws1d{word-spacing:84.708000px;}
._3{margin-left:-24.000000px;}
._f{margin-left:-21.450000px;}
._d{margin-left:-18.348000px;}
._5{margin-left:-16.368000px;}
._8{margin-left:-14.472000px;}
._a{margin-left:-1.056000px;}
._9{width:1.023000px;}
._e{width:3.360000px;}
._2{width:5.088000px;}
._1{width:7.920000px;}
._4{width:10.530000px;}
._0{width:13.344000px;}
._7{width:47.898000px;}
._c{width:50.867400px;}
._6{width:53.784000px;}
._b{width:84.708000px;}
.fc2{color:rgb(96,138,150);}
.fc1{color:rgb(157,194,227);}
.fc0{color:rgb(0,0,0);}
.fsc{font-size:35.100000px;}
.fsd{font-size:40.500000px;}
.fsa{font-size:42.900000px;}
.fs2{font-size:48.000000px;}
.fsb{font-size:49.500000px;}
.fs8{font-size:51.000000px;}
.fs7{font-size:54.000000px;}
.fs0{font-size:57.000000px;}
.fs6{font-size:60.000000px;}
.fs1{font-size:66.000000px;}
.fs9{font-size:78.000000px;}
.fs4{font-size:81.000000px;}
.fs5{font-size:84.000000px;}
.fs3{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:85.039350px;}
.yd3{bottom:138.191700px;}
.y89{bottom:138.200700px;}
.y18d{bottom:138.231750px;}
.y1fa{bottom:138.343200px;}
.y1ba{bottom:138.468900px;}
.y1da{bottom:138.827850px;}
.y9{bottom:140.316450px;}
.y24e{bottom:141.863850px;}
.y11e{bottom:142.238700px;}
.y58{bottom:142.238850px;}
.y22a{bottom:152.825100px;}
.y8{bottom:153.108450px;}
.y88{bottom:154.184700px;}
.y18c{bottom:155.826750px;}
.yd2{bottom:158.225700px;}
.y1f9{bottom:159.133200px;}
.y1d9{bottom:159.617850px;}
.y1b9{bottom:159.654900px;}
.y24d{bottom:162.653850px;}
.y210{bottom:170.012850px;}
.yfc{bottom:170.165700px;}
.y87{bottom:170.168700px;}
.y7{bottom:172.269300px;}
.y166{bottom:172.402950px;}
.y13d{bottom:173.223000px;}
.y229{bottom:173.615100px;}
.y1f8{bottom:179.923200px;}
.y1d8{bottom:180.407850px;}
.y86{bottom:186.152700px;}
.yfb{bottom:190.199700px;}
.y20f{bottom:190.802850px;}
.y1b8{bottom:191.235900px;}
.y6{bottom:191.445300px;}
.y24c{bottom:192.584850px;}
.y165{bottom:193.192950px;}
.y13c{bottom:194.013000px;}
.y18b{bottom:194.103300px;}
.y57{bottom:194.494050px;}
.y11d{bottom:194.856450px;}
.y1f7{bottom:200.713200px;}
.y1d7{bottom:201.197850px;}
.y228{bottom:204.800100px;}
.yd1{bottom:205.249200px;}
.y85{bottom:206.186700px;}
.y5{bottom:210.621300px;}
.y20e{bottom:211.592850px;}
.y1b7{bottom:212.421900px;}
.y24b{bottom:213.374850px;}
.y164{bottom:213.982950px;}
.y13b{bottom:214.803000px;}
.y18a{bottom:214.893300px;}
.y56{bottom:215.284050px;}
.y11c{bottom:215.646450px;}
.yb2{bottom:218.129700px;}
.y84{bottom:218.159850px;}
.y1f6{bottom:221.503200px;}
.y1d6{bottom:221.987850px;}
.y4{bottom:223.413300px;}
.yd0{bottom:226.039200px;}
.y20d{bottom:232.382850px;}
.y1b6{bottom:233.607900px;}
.yb1{bottom:234.113700px;}
.y83{bottom:234.143850px;}
.y163{bottom:234.772950px;}
.y13a{bottom:235.593000px;}
.y189{bottom:235.683300px;}
.y227{bottom:235.985100px;}
.y11b{bottom:236.436450px;}
.y1f5{bottom:242.293200px;}
.y3{bottom:242.589300px;}
.y1d5{bottom:242.777850px;}
.yfa{bottom:242.804550px;}
.y24a{bottom:243.305850px;}
.y55{bottom:246.469050px;}
.yb0{bottom:250.097700px;}
.y82{bottom:250.127850px;}
.y20c{bottom:253.172850px;}
.y1b5{bottom:254.793900px;}
.y2{bottom:255.381300px;}
.y162{bottom:255.562950px;}
.y139{bottom:256.383000px;}
.y188{bottom:256.473300px;}
.y226{bottom:256.775100px;}
.ycf{bottom:257.224200px;}
.y11a{bottom:257.226450px;}
.y1d4{bottom:263.567850px;}
.yf9{bottom:263.594550px;}
.y81{bottom:266.111850px;}
.y54{bottom:267.259050px;}
.y249{bottom:273.236850px;}
.y1f4{bottom:273.478200px;}
.y20b{bottom:273.962850px;}
.y1b4{bottom:275.979900px;}
.y161{bottom:276.352950px;}
.y138{bottom:277.173000px;}
.y187{bottom:277.263300px;}
.yce{bottom:278.014200px;}
.y119{bottom:278.016450px;}
.y80{bottom:282.095850px;}
.y1d3{bottom:284.357850px;}
.yf8{bottom:284.384550px;}
.y225{bottom:287.960100px;}
.y53{bottom:288.049050px;}
.y248{bottom:294.026850px;}
.y1f3{bottom:294.268200px;}
.y20a{bottom:294.752850px;}
.y1b3{bottom:297.165900px;}
.y186{bottom:298.053300px;}
.y7f{bottom:298.079850px;}
.ycd{bottom:298.804200px;}
.y118{bottom:298.806450px;}
.y1d2{bottom:305.147850px;}
.yf7{bottom:305.174550px;}
.yaf{bottom:305.184750px;}
.y160{bottom:307.537950px;}
.y224{bottom:308.750100px;}
.y52{bottom:308.839050px;}
.y7e{bottom:314.063850px;}
.y1f2{bottom:315.058200px;}
.y209{bottom:315.542850px;}
.y1b2{bottom:318.351900px;}
.y137{bottom:318.753900px;}
.y185{bottom:318.843300px;}
.ycc{bottom:319.560150px;}
.y247{bottom:323.957850px;}
.y1d1{bottom:325.937850px;}
.yf6{bottom:325.964550px;}
.yae{bottom:325.974750px;}
.y15f{bottom:328.327950px;}
.y51{bottom:329.629050px;}
.y7d{bottom:330.047850px;}
.y1f1{bottom:335.848200px;}
.y208{bottom:336.332850px;}
.y136{bottom:336.348900px;}
.y1b1{bottom:339.537900px;}
.y184{bottom:339.633300px;}
.y223{bottom:339.935100px;}
.ycb{bottom:340.350150px;}
.y117{bottom:344.869350px;}
.y7c{bottom:346.031850px;}
.y1d0{bottom:346.727850px;}
.yf5{bottom:346.754550px;}
.y15e{bottom:349.117950px;}
.y50{bottom:350.419050px;}
.y246{bottom:353.888850px;}
.y135{bottom:353.943900px;}
.y1f0{bottom:356.638200px;}
.y207{bottom:357.122850px;}
.yad{bottom:357.159750px;}
.y183{bottom:360.423300px;}
.y1b0{bottom:360.723900px;}
.y222{bottom:360.725100px;}
.yca{bottom:361.140150px;}
.y7b{bottom:362.015850px;}
.y1cf{bottom:367.517850px;}
.yf4{bottom:367.544550px;}
.y15d{bottom:369.907950px;}
.y4f{bottom:371.209050px;}
.y134{bottom:371.538900px;}
.y245{bottom:374.678850px;}
.y1ef{bottom:377.428200px;}
.y206{bottom:377.912850px;}
.yac{bottom:377.949750px;}
.y7a{bottom:377.999850px;}
.y182{bottom:381.213300px;}
.y1af{bottom:381.909900px;}
.yc9{bottom:381.930150px;}
.y1ce{bottom:388.307850px;}
.yf3{bottom:388.334550px;}
.y133{bottom:389.133900px;}
.y15c{bottom:390.697950px;}
.y221{bottom:391.910100px;}
.y4e{bottom:391.999050px;}
.y79{bottom:393.983850px;}
.y1ee{bottom:398.218200px;}
.yab{bottom:398.739750px;}
.y181{bottom:402.003300px;}
.yc8{bottom:402.720150px;}
.y1ae{bottom:403.095900px;}
.y244{bottom:404.609850px;}
.y1cd{bottom:409.097850px;}
.yf2{bottom:409.124550px;}
.y15b{bottom:411.487950px;}
.y220{bottom:412.700100px;}
.y4d{bottom:412.789050px;}
.y78{bottom:414.017850px;}
.y1ed{bottom:419.008200px;}
.yaa{bottom:419.529750px;}
.y180{bottom:422.793300px;}
.yc7{bottom:423.510150px;}
.y1ad{bottom:424.281900px;}
.y243{bottom:425.399850px;}
.y132{bottom:427.511400px;}
.y1cc{bottom:429.887850px;}
.y116{bottom:429.955800px;}
.y15a{bottom:432.277950px;}
.y21f{bottom:433.490100px;}
.y4c{bottom:433.557000px;}
.y1ec{bottom:439.798200px;}
.yf1{bottom:440.309550px;}
.ya9{bottom:440.319750px;}
.yc6{bottom:444.300150px;}
.y1ac{bottom:445.467900px;}
.y131{bottom:448.301400px;}
.y1cb{bottom:450.677850px;}
.y115{bottom:450.745800px;}
.y159{bottom:453.067950px;}
.y17f{bottom:453.978300px;}
.y4b{bottom:454.347000px;}
.y242{bottom:455.330850px;}
.y1eb{bottom:460.588200px;}
.y77{bottom:461.097750px;}
.yf0{bottom:461.099550px;}
.ya8{bottom:461.109750px;}
.y21e{bottom:464.675100px;}
.y1ab{bottom:466.653900px;}
.y130{bottom:469.091400px;}
.y1ca{bottom:471.467850px;}
.y114{bottom:471.535800px;}
.y158{bottom:473.857950px;}
.y17e{bottom:474.768300px;}
.y4a{bottom:475.137000px;}
.yc5{bottom:475.485150px;}
.y241{bottom:476.120850px;}
.y1ea{bottom:481.378200px;}
.y76{bottom:481.887750px;}
.yef{bottom:481.889550px;}
.ya7{bottom:481.899750px;}
.y1aa{bottom:487.839900px;}
.y1c9{bottom:492.257850px;}
.y113{bottom:492.325800px;}
.y17d{bottom:495.558300px;}
.y21d{bottom:495.860100px;}
.yc4{bottom:496.275150px;}
.y1e9{bottom:502.168200px;}
.y75{bottom:502.677750px;}
.yee{bottom:502.679550px;}
.ya6{bottom:502.689750px;}
.y157{bottom:505.042950px;}
.y240{bottom:506.051850px;}
.y49{bottom:506.322000px;}
.y1a9{bottom:509.025900px;}
.y12f{bottom:510.678300px;}
.y1c8{bottom:513.047850px;}
.y112{bottom:513.115800px;}
.y17c{bottom:516.348300px;}
.y21c{bottom:516.650100px;}
.yc3{bottom:517.065150px;}
.y1e8{bottom:522.958200px;}
.yed{bottom:523.469550px;}
.ya5{bottom:523.479750px;}
.y156{bottom:525.832950px;}
.y23f{bottom:526.841850px;}
.y48{bottom:527.112000px;}
.y12e{bottom:528.273300px;}
.y1a8{bottom:530.211900px;}
.y1c7{bottom:533.837850px;}
.y74{bottom:533.862750px;}
.y111{bottom:533.905800px;}
.y17b{bottom:537.138300px;}
.y21b{bottom:537.440100px;}
.yc2{bottom:537.855150px;}
.y1e7{bottom:543.748200px;}
.yec{bottom:544.259550px;}
.ya4{bottom:544.269750px;}
.y12d{bottom:545.868300px;}
.y155{bottom:546.622950px;}
.y47{bottom:547.902000px;}
.y1a7{bottom:551.397900px;}
.y205{bottom:554.627850px;}
.y73{bottom:554.652750px;}
.y110{bottom:554.695800px;}
.y23e{bottom:556.772850px;}
.y17a{bottom:557.928300px;}
.yc1{bottom:558.624150px;}
.y12c{bottom:563.463300px;}
.y1e6{bottom:564.538200px;}
.y24{bottom:564.858150px;}
.y2c{bottom:564.885150px;}
.y1c6{bottom:565.022850px;}
.yeb{bottom:565.049550px;}
.ya3{bottom:565.059750px;}
.y154{bottom:567.412950px;}
.y21a{bottom:568.625100px;}
.y46{bottom:568.692000px;}
.y1a6{bottom:572.583900px;}
.y204{bottom:575.417850px;}
.y72{bottom:575.442750px;}
.y10f{bottom:575.485800px;}
.y23d{bottom:577.562850px;}
.y179{bottom:578.718300px;}
.yc0{bottom:579.414150px;}
.y23{bottom:580.842150px;}
.y2b{bottom:580.869150px;}
.y12b{bottom:581.058300px;}
.y1e5{bottom:585.328200px;}
.y1c5{bottom:585.812850px;}
.yea{bottom:585.839550px;}
.y153{bottom:588.202950px;}
.y45{bottom:589.415100px;}
.y1a5{bottom:593.769900px;}
.y203{bottom:596.207850px;}
.y71{bottom:596.232750px;}
.ya2{bottom:596.244750px;}
.y10e{bottom:596.275800px;}
.y22{bottom:596.826150px;}
.y2a{bottom:596.853150px;}
.y12a{bottom:598.653300px;}
.ybf{bottom:600.204150px;}
.y1e4{bottom:606.118200px;}
.y1c4{bottom:606.602850px;}
.ye9{bottom:606.629550px;}
.y23c{bottom:607.493850px;}
.y152{bottom:608.992950px;}
.y178{bottom:609.903300px;}
.y44{bottom:610.205100px;}
.y21{bottom:612.810150px;}
.y29{bottom:612.837150px;}
.y1a4{bottom:614.955900px;}
.y129{bottom:616.248300px;}
.y202{bottom:616.997850px;}
.y70{bottom:617.022750px;}
.ya1{bottom:617.034750px;}
.y219{bottom:620.600100px;}
.ybe{bottom:620.994150px;}
.y1e3{bottom:626.908200px;}
.y1c3{bottom:627.392850px;}
.y10d{bottom:627.394350px;}
.ye8{bottom:627.419550px;}
.y23b{bottom:628.283850px;}
.y28{bottom:628.821150px;}
.y151{bottom:629.782950px;}
.y177{bottom:630.693300px;}
.y43{bottom:630.995100px;}
.y128{bottom:633.843300px;}
.y1a3{bottom:636.141900px;}
.y20{bottom:636.786150px;}
.y201{bottom:637.787850px;}
.y6f{bottom:637.812750px;}
.ya0{bottom:637.824750px;}
.y218{bottom:641.390100px;}
.ybd{bottom:641.784150px;}
.y27{bottom:644.805150px;}
.y1e2{bottom:647.698200px;}
.y1c2{bottom:648.182850px;}
.y10c{bottom:648.184350px;}
.ye7{bottom:648.209550px;}
.y23a{bottom:649.073850px;}
.y150{bottom:650.572950px;}
.y127{bottom:651.438300px;}
.y176{bottom:651.483300px;}
.y42{bottom:651.785100px;}
.y200{bottom:658.577850px;}
.y6e{bottom:658.602750px;}
.y9f{bottom:658.614750px;}
.y26{bottom:660.789150px;}
.ybc{bottom:662.574150px;}
.y1a2{bottom:667.722900px;}
.y1c1{bottom:668.972850px;}
.y10b{bottom:668.974350px;}
.ye6{bottom:668.999550px;}
.y14f{bottom:671.362950px;}
.y175{bottom:672.273300px;}
.y41{bottom:672.575100px;}
.y25{bottom:676.773150px;}
.y239{bottom:679.004850px;}
.y1ff{bottom:679.367850px;}
.y6d{bottom:679.392750px;}
.y9e{bottom:679.404750px;}
.ybb{bottom:683.364150px;}
.y1a1{bottom:688.908900px;}
.y126{bottom:689.762850px;}
.y10a{bottom:689.764350px;}
.ye5{bottom:689.789550px;}
.y14e{bottom:692.152950px;}
.y174{bottom:693.063300px;}
.y40{bottom:693.365100px;}
.y1e1{bottom:695.887050px;}
.y238{bottom:699.794850px;}
.y1fe{bottom:700.157850px;}
.y6c{bottom:700.182750px;}
.y9d{bottom:700.194750px;}
.yba{bottom:704.139150px;}
.y1a0{bottom:710.094900px;}
.y125{bottom:710.552850px;}
.y109{bottom:710.554350px;}
.ye4{bottom:710.579550px;}
.y14d{bottom:712.942950px;}
.y173{bottom:713.853300px;}
.y3f{bottom:714.155100px;}
.y1fd{bottom:720.947850px;}
.y6b{bottom:720.972750px;}
.y9c{bottom:720.984750px;}
.y16{bottom:721.134150px;}
.y1f{bottom:721.161150px;}
.y217{bottom:724.550100px;}
.yb9{bottom:724.929150px;}
.y237{bottom:729.725850px;}
.y19f{bottom:731.280900px;}
.y124{bottom:731.342850px;}
.y108{bottom:731.344350px;}
.ye3{bottom:731.369550px;}
.y14c{bottom:733.732950px;}
.y172{bottom:734.643300px;}
.y3e{bottom:734.945100px;}
.y15{bottom:737.118150px;}
.y1e{bottom:737.145150px;}
.y1fc{bottom:741.737850px;}
.y6a{bottom:741.762750px;}
.y9b{bottom:741.774750px;}
.y216{bottom:745.340100px;}
.yb8{bottom:745.719150px;}
.y123{bottom:752.132850px;}
.y107{bottom:752.134350px;}
.ye2{bottom:752.159550px;}
.y19e{bottom:752.466900px;}
.y14{bottom:753.102150px;}
.y1d{bottom:753.129150px;}
.y14b{bottom:754.522950px;}
.y171{bottom:755.433300px;}
.y3d{bottom:755.735100px;}
.y236{bottom:759.656850px;}
.y1fb{bottom:762.527850px;}
.y69{bottom:762.552750px;}
.y9a{bottom:762.564750px;}
.yb7{bottom:766.509150px;}
.y13{bottom:769.086150px;}
.y1c{bottom:769.113150px;}
.y1c0{bottom:772.922850px;}
.y106{bottom:772.924350px;}
.y19d{bottom:773.652900px;}
.y14a{bottom:775.312950px;}
.y170{bottom:776.223300px;}
.y3c{bottom:776.525100px;}
.y235{bottom:780.446850px;}
.y122{bottom:783.317850px;}
.y68{bottom:783.342750px;}
.ye1{bottom:783.344550px;}
.y99{bottom:783.354750px;}
.y1b{bottom:785.097150px;}
.yb6{bottom:787.299150px;}
.y12{bottom:793.062150px;}
.y105{bottom:793.714350px;}
.y19c{bottom:794.838900px;}
.y149{bottom:796.102950px;}
.y16f{bottom:797.013300px;}
.y3b{bottom:797.315100px;}
.y1a{bottom:801.081150px;}
.y121{bottom:804.107850px;}
.y67{bottom:804.132750px;}
.ye0{bottom:804.134550px;}
.y98{bottom:804.144750px;}
.yb5{bottom:808.089150px;}
.y234{bottom:810.377850px;}
.y1e0{bottom:814.504350px;}
.y19b{bottom:816.024900px;}
.y19{bottom:817.065150px;}
.y16e{bottom:817.803300px;}
.y3a{bottom:818.105100px;}
.y120{bottom:824.897850px;}
.y104{bottom:824.899350px;}
.y66{bottom:824.922750px;}
.ydf{bottom:824.924550px;}
.y97{bottom:824.934750px;}
.y148{bottom:827.287950px;}
.y233{bottom:831.167850px;}
.y18{bottom:833.049150px;}
.y1df{bottom:835.294350px;}
.y19a{bottom:837.210900px;}
.y16d{bottom:838.593300px;}
.y39{bottom:838.895100px;}
.y96{bottom:845.687850px;}
.y103{bottom:845.689350px;}
.y65{bottom:845.712750px;}
.yde{bottom:845.714550px;}
.y147{bottom:848.077950px;}
.y17{bottom:849.033150px;}
.y215{bottom:849.290100px;}
.y232{bottom:851.957850px;}
.yb4{bottom:854.152050px;}
.y1de{bottom:856.084350px;}
.y199{bottom:858.396900px;}
.y16c{bottom:859.383300px;}
.y38{bottom:859.685100px;}
.y95{bottom:866.477850px;}
.y102{bottom:866.479350px;}
.y64{bottom:866.502750px;}
.ydd{bottom:866.504550px;}
.y146{bottom:868.867950px;}
.y214{bottom:870.080100px;}
.y1dd{bottom:876.874350px;}
.y198{bottom:879.582900px;}
.y16b{bottom:880.173300px;}
.y37{bottom:880.475100px;}
.y231{bottom:881.888850px;}
.y94{bottom:887.267850px;}
.y101{bottom:887.269350px;}
.y63{bottom:887.292750px;}
.ydc{bottom:887.294550px;}
.y145{bottom:889.657950px;}
.y1dc{bottom:897.664350px;}
.y16a{bottom:900.963300px;}
.y36{bottom:901.265100px;}
.y93{bottom:908.057850px;}
.y100{bottom:908.059350px;}
.y62{bottom:908.082750px;}
.y144{bottom:910.447950px;}
.y197{bottom:911.163900px;}
.y230{bottom:911.819850px;}
.y1db{bottom:918.454350px;}
.ydb{bottom:918.456000px;}
.y169{bottom:921.753300px;}
.y35{bottom:922.055100px;}
.y92{bottom:928.847850px;}
.y61{bottom:928.849350px;}
.y143{bottom:931.237950px;}
.y196{bottom:932.349900px;}
.y213{bottom:932.450100px;}
.y11f{bottom:939.242850px;}
.yb3{bottom:939.244350px;}
.yda{bottom:939.246000px;}
.y22f{bottom:941.750850px;}
.y168{bottom:942.543300px;}
.y1bf{bottom:949.637850px;}
.yff{bottom:949.639350px;}
.y142{bottom:952.027950px;}
.y34{bottom:953.240100px;}
.y195{bottom:953.535900px;}
.y11{bottom:955.521300px;}
.y91{bottom:960.032850px;}
.y60{bottom:960.034350px;}
.yd9{bottom:960.036000px;}
.y22e{bottom:962.540850px;}
.y1be{bottom:970.427850px;}
.yfe{bottom:970.429350px;}
.y33{bottom:974.030100px;}
.y194{bottom:974.721900px;}
.y10{bottom:976.299150px;}
.y90{bottom:980.822850px;}
.y5f{bottom:980.824350px;}
.yd8{bottom:980.826000px;}
.y22d{bottom:983.330850px;}
.y212{bottom:984.425100px;}
.y167{bottom:988.606200px;}
.y1bd{bottom:991.217850px;}
.yfd{bottom:991.219350px;}
.y141{bottom:993.607500px;}
.y32{bottom:994.820100px;}
.y8f{bottom:1001.612850px;}
.y5e{bottom:1001.614350px;}
.yd7{bottom:1001.616000px;}
.y211{bottom:1005.215100px;}
.y140{bottom:1011.202500px;}
.y1bc{bottom:1012.007850px;}
.y22c{bottom:1013.261850px;}
.y31{bottom:1015.610100px;}
.y193{bottom:1016.717850px;}
.yf{bottom:1020.693150px;}
.y8e{bottom:1022.402850px;}
.y5d{bottom:1022.404350px;}
.yd6{bottom:1022.406000px;}
.y13f{bottom:1028.797500px;}
.y1bb{bottom:1032.797850px;}
.y22b{bottom:1034.051850px;}
.y192{bottom:1034.717850px;}
.y30{bottom:1036.400100px;}
.y8d{bottom:1043.192850px;}
.y5c{bottom:1043.194350px;}
.yd5{bottom:1043.196000px;}
.y13e{bottom:1046.392500px;}
.y191{bottom:1052.717850px;}
.y2f{bottom:1057.190100px;}
.y8c{bottom:1063.982850px;}
.y5b{bottom:1063.984350px;}
.yd4{bottom:1063.986000px;}
.ye{bottom:1065.078000px;}
.y190{bottom:1070.717850px;}
.y8b{bottom:1084.772850px;}
.y5a{bottom:1084.774350px;}
.y18f{bottom:1088.717850px;}
.yd{bottom:1097.478000px;}
.y2e{bottom:1103.253000px;}
.y8a{bottom:1105.562850px;}
.y59{bottom:1105.564350px;}
.y18e{bottom:1106.717850px;}
.yc{bottom:1162.740450px;}
.y2d{bottom:1172.229900px;}
.yb{bottom:1193.880450px;}
.ya{bottom:1207.380450px;}
.h10{height:34.668000px;}
.h4{height:35.328000px;}
.h3{height:35.664000px;}
.h2{height:45.342773px;}
.hb{height:48.042000px;}
.ha{height:50.868000px;}
.h9{height:50.976000px;}
.h8{height:56.520000px;}
.hd{height:62.172000px;}
.h17{height:62.184600px;}
.h14{height:62.232000px;}
.h15{height:62.256000px;}
.hf{height:62.260200px;}
.h11{height:62.265600px;}
.h18{height:62.266200px;}
.h16{height:62.308200px;}
.h13{height:62.319600px;}
.h19{height:62.437800px;}
.he{height:62.439600px;}
.h12{height:62.440200px;}
.h6{height:64.512000px;}
.hc{height:73.632000px;}
.h7{height:79.128000px;}
.h5{height:101.952000px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:85.039350px;}
.xe{left:86.972550px;}
.xb{left:93.730800px;}
.x8{left:106.065000px;}
.xf{left:108.241650px;}
.x2{left:110.551350px;}
.x13{left:136.057350px;}
.x12{left:137.998500px;}
.x3{left:145.195650px;}
.x4{left:151.195650px;}
.x10{left:153.070800px;}
.x11{left:155.011950px;}
.xc{left:221.292300px;}
.x6{left:276.136800px;}
.x7{left:424.040700px;}
.xa{left:538.627500px;}
.x9{left:547.086000px;}
.xd{left:654.378900px;}
.x5{left:733.915650px;}
@media print{
.v2{vertical-align:-14.400000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:17.837867pt;}
.ls27{letter-spacing:-0.293333pt;}
.ls2{letter-spacing:0.000000pt;}
.ls18{letter-spacing:0.029333pt;}
.ls13{letter-spacing:0.048000pt;}
.ls2a{letter-spacing:0.053333pt;}
.ls1a{letter-spacing:0.058667pt;}
.ls22{letter-spacing:0.080000pt;}
.ls1c{letter-spacing:0.088000pt;}
.ls23{letter-spacing:0.106667pt;}
.lsa{letter-spacing:0.117333pt;}
.ls10{letter-spacing:0.144000pt;}
.ls14{letter-spacing:0.146667pt;}
.ls12{letter-spacing:0.168000pt;}
.ls1{letter-spacing:0.170667pt;}
.ls8{letter-spacing:0.176000pt;}
.ls3{letter-spacing:0.192000pt;}
.ls21{letter-spacing:0.213333pt;}
.ls7{letter-spacing:0.234667pt;}
.lsf{letter-spacing:0.240000pt;}
.ls5{letter-spacing:0.293333pt;}
.ls29{letter-spacing:0.320000pt;}
.ls1b{letter-spacing:0.322667pt;}
.lse{letter-spacing:0.352000pt;}
.ls26{letter-spacing:0.373333pt;}
.ls19{letter-spacing:0.381333pt;}
.ls1d{letter-spacing:0.384000pt;}
.ls20{letter-spacing:0.410667pt;}
.ls9{letter-spacing:0.440000pt;}
.ls1e{letter-spacing:0.469333pt;}
.ls2c{letter-spacing:0.498667pt;}
.ls17{letter-spacing:0.528000pt;}
.lsb{letter-spacing:0.586667pt;}
.ls16{letter-spacing:0.645333pt;}
.ls2b{letter-spacing:0.704000pt;}
.ls6{letter-spacing:0.762667pt;}
.ls2d{letter-spacing:0.880000pt;}
.ls15{letter-spacing:0.938667pt;}
.ls1f{letter-spacing:0.997333pt;}
.ls31{letter-spacing:1.056000pt;}
.ls2e{letter-spacing:1.144000pt;}
.ls2f{letter-spacing:1.290667pt;}
.ls30{letter-spacing:1.466667pt;}
.lsd{letter-spacing:5.632000pt;}
.ls25{letter-spacing:6.218667pt;}
.ls11{letter-spacing:47.856000pt;}
.ls28{letter-spacing:1812.060800pt;}
.lsc{letter-spacing:1841.394133pt;}
.ls24{letter-spacing:1896.905600pt;}
.ls4{letter-spacing:1926.238933pt;}
.ls0{letter-spacing:2528.078933pt;}
.ws0{word-spacing:-20.160000pt;}
.ws1{word-spacing:-15.120000pt;}
.ws18{word-spacing:-14.666667pt;}
.wsa0{word-spacing:-13.200000pt;}
.ws82{word-spacing:-12.320000pt;}
.ws38{word-spacing:-11.333333pt;}
.ws39{word-spacing:-10.248000pt;}
.ws19{word-spacing:-8.008000pt;}
.ws1b{word-spacing:-6.552000pt;}
.wsa1{word-spacing:-0.880000pt;}
.ws69{word-spacing:-0.762667pt;}
.ws6a{word-spacing:-0.586667pt;}
.ws84{word-spacing:-0.410667pt;}
.ws46{word-spacing:-0.352000pt;}
.ws20{word-spacing:-0.293333pt;}
.ws54{word-spacing:-0.240000pt;}
.wsc{word-spacing:-0.192000pt;}
.wsa3{word-spacing:-0.176000pt;}
.ws5{word-spacing:-0.170667pt;}
.ws4a{word-spacing:-0.144000pt;}
.ws62{word-spacing:-0.096000pt;}
.ws1a{word-spacing:-0.044000pt;}
.ws66{word-spacing:-0.036000pt;}
.ws2{word-spacing:0.000000pt;}
.ws6e{word-spacing:0.058667pt;}
.ws95{word-spacing:0.117333pt;}
.ws40{word-spacing:0.176000pt;}
.ws3{word-spacing:0.213333pt;}
.ws44{word-spacing:0.234667pt;}
.ws56{word-spacing:0.293333pt;}
.ws9c{word-spacing:0.352000pt;}
.ws4c{word-spacing:0.384000pt;}
.ws5a{word-spacing:0.410667pt;}
.ws32{word-spacing:0.469333pt;}
.ws75{word-spacing:0.528000pt;}
.ws8a{word-spacing:0.586667pt;}
.ws61{word-spacing:0.645333pt;}
.ws41{word-spacing:0.704000pt;}
.wsa2{word-spacing:0.762667pt;}
.ws2b{word-spacing:0.821333pt;}
.ws4d{word-spacing:0.864000pt;}
.ws42{word-spacing:0.880000pt;}
.ws45{word-spacing:0.938667pt;}
.ws5f{word-spacing:0.997333pt;}
.ws87{word-spacing:1.056000pt;}
.ws7d{word-spacing:1.114667pt;}
.ws6c{word-spacing:1.173333pt;}
.ws7f{word-spacing:1.232000pt;}
.ws7b{word-spacing:1.290667pt;}
.ws99{word-spacing:1.349333pt;}
.ws5c{word-spacing:1.408000pt;}
.ws43{word-spacing:1.466667pt;}
.ws8c{word-spacing:1.525333pt;}
.ws24{word-spacing:1.584000pt;}
.ws14{word-spacing:1.632000pt;}
.ws28{word-spacing:1.701333pt;}
.ws6f{word-spacing:1.760000pt;}
.ws12{word-spacing:1.776000pt;}
.ws8e{word-spacing:1.813333pt;}
.ws3e{word-spacing:1.818667pt;}
.ws27{word-spacing:1.877333pt;}
.wsa{word-spacing:1.920000pt;}
.ws31{word-spacing:1.936000pt;}
.ws64{word-spacing:1.968000pt;}
.ws21{word-spacing:1.994667pt;}
.ws13{word-spacing:2.016000pt;}
.ws5b{word-spacing:2.053333pt;}
.ws4e{word-spacing:2.064000pt;}
.ws10{word-spacing:2.112000pt;}
.ws90{word-spacing:2.133333pt;}
.ws23{word-spacing:2.170667pt;}
.ws16{word-spacing:2.208000pt;}
.ws1e{word-spacing:2.229333pt;}
.ws47{word-spacing:2.288000pt;}
.ws67{word-spacing:2.346667pt;}
.ws11{word-spacing:2.400000pt;}
.ws76{word-spacing:2.405333pt;}
.ws7a{word-spacing:2.464000pt;}
.ws70{word-spacing:2.522667pt;}
.ws2e{word-spacing:2.581333pt;}
.ws68{word-spacing:2.640000pt;}
.ws2d{word-spacing:2.698667pt;}
.ws71{word-spacing:2.757333pt;}
.ws50{word-spacing:2.784000pt;}
.ws86{word-spacing:2.816000pt;}
.ws85{word-spacing:2.874667pt;}
.ws36{word-spacing:2.933333pt;}
.ws51{word-spacing:2.976000pt;}
.ws93{word-spacing:2.986667pt;}
.ws72{word-spacing:2.992000pt;}
.ws22{word-spacing:3.050667pt;}
.ws4f{word-spacing:3.072000pt;}
.ws77{word-spacing:3.109333pt;}
.ws4b{word-spacing:3.120000pt;}
.ws65{word-spacing:3.168000pt;}
.ws92{word-spacing:3.226667pt;}
.ws25{word-spacing:3.285333pt;}
.ws63{word-spacing:3.312000pt;}
.ws88{word-spacing:3.344000pt;}
.ws59{word-spacing:3.402667pt;}
.ws2f{word-spacing:3.461333pt;}
.ws81{word-spacing:3.504000pt;}
.ws6b{word-spacing:3.520000pt;}
.ws78{word-spacing:3.578667pt;}
.ws7c{word-spacing:3.637333pt;}
.ws30{word-spacing:3.696000pt;}
.ws6d{word-spacing:3.754667pt;}
.ws34{word-spacing:3.813333pt;}
.ws15{word-spacing:3.840000pt;}
.ws97{word-spacing:3.872000pt;}
.ws26{word-spacing:3.930667pt;}
.ws3a{word-spacing:3.989333pt;}
.ws8f{word-spacing:4.000000pt;}
.ws9{word-spacing:4.032000pt;}
.wsa4{word-spacing:4.048000pt;}
.ws80{word-spacing:4.106667pt;}
.ws53{word-spacing:4.128000pt;}
.ws33{word-spacing:4.165333pt;}
.ws49{word-spacing:4.176000pt;}
.ws58{word-spacing:4.224000pt;}
.ws98{word-spacing:4.282667pt;}
.ws83{word-spacing:4.341333pt;}
.wsd{word-spacing:4.368000pt;}
.ws9a{word-spacing:4.400000pt;}
.ws94{word-spacing:4.426667pt;}
.ws79{word-spacing:4.458667pt;}
.ws2c{word-spacing:4.517333pt;}
.ws8{word-spacing:4.560000pt;}
.ws96{word-spacing:4.576000pt;}
.ws52{word-spacing:4.608000pt;}
.ws7e{word-spacing:4.634667pt;}
.ws35{word-spacing:4.693333pt;}
.ws4{word-spacing:4.736000pt;}
.ws2a{word-spacing:4.752000pt;}
.wse{word-spacing:4.800000pt;}
.ws57{word-spacing:4.810667pt;}
.wsf{word-spacing:4.848000pt;}
.ws5e{word-spacing:4.869333pt;}
.ws5d{word-spacing:4.986667pt;}
.ws17{word-spacing:4.992000pt;}
.wsb{word-spacing:5.040000pt;}
.ws74{word-spacing:5.045333pt;}
.ws9f{word-spacing:5.104000pt;}
.ws89{word-spacing:5.221333pt;}
.ws8d{word-spacing:5.226667pt;}
.ws3b{word-spacing:5.280000pt;}
.ws9b{word-spacing:5.338667pt;}
.ws73{word-spacing:5.397333pt;}
.ws37{word-spacing:5.456000pt;}
.ws48{word-spacing:5.514667pt;}
.ws3c{word-spacing:5.573333pt;}
.ws91{word-spacing:5.600000pt;}
.ws29{word-spacing:5.690667pt;}
.ws55{word-spacing:5.749333pt;}
.ws3f{word-spacing:5.808000pt;}
.ws60{word-spacing:5.866667pt;}
.ws8b{word-spacing:5.925333pt;}
.ws9e{word-spacing:5.984000pt;}
.ws3d{word-spacing:6.042667pt;}
.ws9d{word-spacing:6.101333pt;}
.ws1f{word-spacing:6.160000pt;}
.ws6{word-spacing:9.472000pt;}
.ws1c{word-spacing:11.333333pt;}
.ws7{word-spacing:11.861333pt;}
.ws1d{word-spacing:75.296000pt;}
._3{margin-left:-21.333333pt;}
._f{margin-left:-19.066667pt;}
._d{margin-left:-16.309333pt;}
._5{margin-left:-14.549333pt;}
._8{margin-left:-12.864000pt;}
._a{margin-left:-0.938667pt;}
._9{width:0.909333pt;}
._e{width:2.986667pt;}
._2{width:4.522667pt;}
._1{width:7.040000pt;}
._4{width:9.360000pt;}
._0{width:11.861333pt;}
._7{width:42.576000pt;}
._c{width:45.215467pt;}
._6{width:47.808000pt;}
._b{width:75.296000pt;}
.fsc{font-size:31.200000pt;}
.fsd{font-size:36.000000pt;}
.fsa{font-size:38.133333pt;}
.fs2{font-size:42.666667pt;}
.fsb{font-size:44.000000pt;}
.fs8{font-size:45.333333pt;}
.fs7{font-size:48.000000pt;}
.fs0{font-size:50.666667pt;}
.fs6{font-size:53.333333pt;}
.fs1{font-size:58.666667pt;}
.fs9{font-size:69.333333pt;}
.fs4{font-size:72.000000pt;}
.fs5{font-size:74.666667pt;}
.fs3{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:75.590533pt;}
.yd3{bottom:122.837067pt;}
.y89{bottom:122.845067pt;}
.y18d{bottom:122.872667pt;}
.y1fa{bottom:122.971733pt;}
.y1ba{bottom:123.083467pt;}
.y1da{bottom:123.402533pt;}
.y9{bottom:124.725733pt;}
.y24e{bottom:126.101200pt;}
.y11e{bottom:126.434400pt;}
.y58{bottom:126.434533pt;}
.y22a{bottom:135.844533pt;}
.y8{bottom:136.096400pt;}
.y88{bottom:137.053067pt;}
.y18c{bottom:138.512667pt;}
.yd2{bottom:140.645067pt;}
.y1f9{bottom:141.451733pt;}
.y1d9{bottom:141.882533pt;}
.y1b9{bottom:141.915467pt;}
.y24d{bottom:144.581200pt;}
.y210{bottom:151.122533pt;}
.yfc{bottom:151.258400pt;}
.y87{bottom:151.261067pt;}
.y7{bottom:153.128267pt;}
.y166{bottom:153.247067pt;}
.y13d{bottom:153.976000pt;}
.y229{bottom:154.324533pt;}
.y1f8{bottom:159.931733pt;}
.y1d8{bottom:160.362533pt;}
.y86{bottom:165.469067pt;}
.yfb{bottom:169.066400pt;}
.y20f{bottom:169.602533pt;}
.y1b8{bottom:169.987467pt;}
.y6{bottom:170.173600pt;}
.y24c{bottom:171.186533pt;}
.y165{bottom:171.727067pt;}
.y13c{bottom:172.456000pt;}
.y18b{bottom:172.536267pt;}
.y57{bottom:172.883600pt;}
.y11d{bottom:173.205733pt;}
.y1f7{bottom:178.411733pt;}
.y1d7{bottom:178.842533pt;}
.y228{bottom:182.044533pt;}
.yd1{bottom:182.443733pt;}
.y85{bottom:183.277067pt;}
.y5{bottom:187.218933pt;}
.y20e{bottom:188.082533pt;}
.y1b7{bottom:188.819467pt;}
.y24b{bottom:189.666533pt;}
.y164{bottom:190.207067pt;}
.y13b{bottom:190.936000pt;}
.y18a{bottom:191.016267pt;}
.y56{bottom:191.363600pt;}
.y11c{bottom:191.685733pt;}
.yb2{bottom:193.893067pt;}
.y84{bottom:193.919867pt;}
.y1f6{bottom:196.891733pt;}
.y1d6{bottom:197.322533pt;}
.y4{bottom:198.589600pt;}
.yd0{bottom:200.923733pt;}
.y20d{bottom:206.562533pt;}
.y1b6{bottom:207.651467pt;}
.yb1{bottom:208.101067pt;}
.y83{bottom:208.127867pt;}
.y163{bottom:208.687067pt;}
.y13a{bottom:209.416000pt;}
.y189{bottom:209.496267pt;}
.y227{bottom:209.764533pt;}
.y11b{bottom:210.165733pt;}
.y1f5{bottom:215.371733pt;}
.y3{bottom:215.634933pt;}
.y1d5{bottom:215.802533pt;}
.yfa{bottom:215.826267pt;}
.y24a{bottom:216.271867pt;}
.y55{bottom:219.083600pt;}
.yb0{bottom:222.309067pt;}
.y82{bottom:222.335867pt;}
.y20c{bottom:225.042533pt;}
.y1b5{bottom:226.483467pt;}
.y2{bottom:227.005600pt;}
.y162{bottom:227.167067pt;}
.y139{bottom:227.896000pt;}
.y188{bottom:227.976267pt;}
.y226{bottom:228.244533pt;}
.ycf{bottom:228.643733pt;}
.y11a{bottom:228.645733pt;}
.y1d4{bottom:234.282533pt;}
.yf9{bottom:234.306267pt;}
.y81{bottom:236.543867pt;}
.y54{bottom:237.563600pt;}
.y249{bottom:242.877200pt;}
.y1f4{bottom:243.091733pt;}
.y20b{bottom:243.522533pt;}
.y1b4{bottom:245.315467pt;}
.y161{bottom:245.647067pt;}
.y138{bottom:246.376000pt;}
.y187{bottom:246.456267pt;}
.yce{bottom:247.123733pt;}
.y119{bottom:247.125733pt;}
.y80{bottom:250.751867pt;}
.y1d3{bottom:252.762533pt;}
.yf8{bottom:252.786267pt;}
.y225{bottom:255.964533pt;}
.y53{bottom:256.043600pt;}
.y248{bottom:261.357200pt;}
.y1f3{bottom:261.571733pt;}
.y20a{bottom:262.002533pt;}
.y1b3{bottom:264.147467pt;}
.y186{bottom:264.936267pt;}
.y7f{bottom:264.959867pt;}
.ycd{bottom:265.603733pt;}
.y118{bottom:265.605733pt;}
.y1d2{bottom:271.242533pt;}
.yf7{bottom:271.266267pt;}
.yaf{bottom:271.275333pt;}
.y160{bottom:273.367067pt;}
.y224{bottom:274.444533pt;}
.y52{bottom:274.523600pt;}
.y7e{bottom:279.167867pt;}
.y1f2{bottom:280.051733pt;}
.y209{bottom:280.482533pt;}
.y1b2{bottom:282.979467pt;}
.y137{bottom:283.336800pt;}
.y185{bottom:283.416267pt;}
.ycc{bottom:284.053467pt;}
.y247{bottom:287.962533pt;}
.y1d1{bottom:289.722533pt;}
.yf6{bottom:289.746267pt;}
.yae{bottom:289.755333pt;}
.y15f{bottom:291.847067pt;}
.y51{bottom:293.003600pt;}
.y7d{bottom:293.375867pt;}
.y1f1{bottom:298.531733pt;}
.y208{bottom:298.962533pt;}
.y136{bottom:298.976800pt;}
.y1b1{bottom:301.811467pt;}
.y184{bottom:301.896267pt;}
.y223{bottom:302.164533pt;}
.ycb{bottom:302.533467pt;}
.y117{bottom:306.550533pt;}
.y7c{bottom:307.583867pt;}
.y1d0{bottom:308.202533pt;}
.yf5{bottom:308.226267pt;}
.y15e{bottom:310.327067pt;}
.y50{bottom:311.483600pt;}
.y246{bottom:314.567867pt;}
.y135{bottom:314.616800pt;}
.y1f0{bottom:317.011733pt;}
.y207{bottom:317.442533pt;}
.yad{bottom:317.475333pt;}
.y183{bottom:320.376267pt;}
.y1b0{bottom:320.643467pt;}
.y222{bottom:320.644533pt;}
.yca{bottom:321.013467pt;}
.y7b{bottom:321.791867pt;}
.y1cf{bottom:326.682533pt;}
.yf4{bottom:326.706267pt;}
.y15d{bottom:328.807067pt;}
.y4f{bottom:329.963600pt;}
.y134{bottom:330.256800pt;}
.y245{bottom:333.047867pt;}
.y1ef{bottom:335.491733pt;}
.y206{bottom:335.922533pt;}
.yac{bottom:335.955333pt;}
.y7a{bottom:335.999867pt;}
.y182{bottom:338.856267pt;}
.y1af{bottom:339.475467pt;}
.yc9{bottom:339.493467pt;}
.y1ce{bottom:345.162533pt;}
.yf3{bottom:345.186267pt;}
.y133{bottom:345.896800pt;}
.y15c{bottom:347.287067pt;}
.y221{bottom:348.364533pt;}
.y4e{bottom:348.443600pt;}
.y79{bottom:350.207867pt;}
.y1ee{bottom:353.971733pt;}
.yab{bottom:354.435333pt;}
.y181{bottom:357.336267pt;}
.yc8{bottom:357.973467pt;}
.y1ae{bottom:358.307467pt;}
.y244{bottom:359.653200pt;}
.y1cd{bottom:363.642533pt;}
.yf2{bottom:363.666267pt;}
.y15b{bottom:365.767067pt;}
.y220{bottom:366.844533pt;}
.y4d{bottom:366.923600pt;}
.y78{bottom:368.015867pt;}
.y1ed{bottom:372.451733pt;}
.yaa{bottom:372.915333pt;}
.y180{bottom:375.816267pt;}
.yc7{bottom:376.453467pt;}
.y1ad{bottom:377.139467pt;}
.y243{bottom:378.133200pt;}
.y132{bottom:380.010133pt;}
.y1cc{bottom:382.122533pt;}
.y116{bottom:382.182933pt;}
.y15a{bottom:384.247067pt;}
.y21f{bottom:385.324533pt;}
.y4c{bottom:385.384000pt;}
.y1ec{bottom:390.931733pt;}
.yf1{bottom:391.386267pt;}
.ya9{bottom:391.395333pt;}
.yc6{bottom:394.933467pt;}
.y1ac{bottom:395.971467pt;}
.y131{bottom:398.490133pt;}
.y1cb{bottom:400.602533pt;}
.y115{bottom:400.662933pt;}
.y159{bottom:402.727067pt;}
.y17f{bottom:403.536267pt;}
.y4b{bottom:403.864000pt;}
.y242{bottom:404.738533pt;}
.y1eb{bottom:409.411733pt;}
.y77{bottom:409.864667pt;}
.yf0{bottom:409.866267pt;}
.ya8{bottom:409.875333pt;}
.y21e{bottom:413.044533pt;}
.y1ab{bottom:414.803467pt;}
.y130{bottom:416.970133pt;}
.y1ca{bottom:419.082533pt;}
.y114{bottom:419.142933pt;}
.y158{bottom:421.207067pt;}
.y17e{bottom:422.016267pt;}
.y4a{bottom:422.344000pt;}
.yc5{bottom:422.653467pt;}
.y241{bottom:423.218533pt;}
.y1ea{bottom:427.891733pt;}
.y76{bottom:428.344667pt;}
.yef{bottom:428.346267pt;}
.ya7{bottom:428.355333pt;}
.y1aa{bottom:433.635467pt;}
.y1c9{bottom:437.562533pt;}
.y113{bottom:437.622933pt;}
.y17d{bottom:440.496267pt;}
.y21d{bottom:440.764533pt;}
.yc4{bottom:441.133467pt;}
.y1e9{bottom:446.371733pt;}
.y75{bottom:446.824667pt;}
.yee{bottom:446.826267pt;}
.ya6{bottom:446.835333pt;}
.y157{bottom:448.927067pt;}
.y240{bottom:449.823867pt;}
.y49{bottom:450.064000pt;}
.y1a9{bottom:452.467467pt;}
.y12f{bottom:453.936267pt;}
.y1c8{bottom:456.042533pt;}
.y112{bottom:456.102933pt;}
.y17c{bottom:458.976267pt;}
.y21c{bottom:459.244533pt;}
.yc3{bottom:459.613467pt;}
.y1e8{bottom:464.851733pt;}
.yed{bottom:465.306267pt;}
.ya5{bottom:465.315333pt;}
.y156{bottom:467.407067pt;}
.y23f{bottom:468.303867pt;}
.y48{bottom:468.544000pt;}
.y12e{bottom:469.576267pt;}
.y1a8{bottom:471.299467pt;}
.y1c7{bottom:474.522533pt;}
.y74{bottom:474.544667pt;}
.y111{bottom:474.582933pt;}
.y17b{bottom:477.456267pt;}
.y21b{bottom:477.724533pt;}
.yc2{bottom:478.093467pt;}
.y1e7{bottom:483.331733pt;}
.yec{bottom:483.786267pt;}
.ya4{bottom:483.795333pt;}
.y12d{bottom:485.216267pt;}
.y155{bottom:485.887067pt;}
.y47{bottom:487.024000pt;}
.y1a7{bottom:490.131467pt;}
.y205{bottom:493.002533pt;}
.y73{bottom:493.024667pt;}
.y110{bottom:493.062933pt;}
.y23e{bottom:494.909200pt;}
.y17a{bottom:495.936267pt;}
.yc1{bottom:496.554800pt;}
.y12c{bottom:500.856267pt;}
.y1e6{bottom:501.811733pt;}
.y24{bottom:502.096133pt;}
.y2c{bottom:502.120133pt;}
.y1c6{bottom:502.242533pt;}
.yeb{bottom:502.266267pt;}
.ya3{bottom:502.275333pt;}
.y154{bottom:504.367067pt;}
.y21a{bottom:505.444533pt;}
.y46{bottom:505.504000pt;}
.y1a6{bottom:508.963467pt;}
.y204{bottom:511.482533pt;}
.y72{bottom:511.504667pt;}
.y10f{bottom:511.542933pt;}
.y23d{bottom:513.389200pt;}
.y179{bottom:514.416267pt;}
.yc0{bottom:515.034800pt;}
.y23{bottom:516.304133pt;}
.y2b{bottom:516.328133pt;}
.y12b{bottom:516.496267pt;}
.y1e5{bottom:520.291733pt;}
.y1c5{bottom:520.722533pt;}
.yea{bottom:520.746267pt;}
.y153{bottom:522.847067pt;}
.y45{bottom:523.924533pt;}
.y1a5{bottom:527.795467pt;}
.y203{bottom:529.962533pt;}
.y71{bottom:529.984667pt;}
.ya2{bottom:529.995333pt;}
.y10e{bottom:530.022933pt;}
.y22{bottom:530.512133pt;}
.y2a{bottom:530.536133pt;}
.y12a{bottom:532.136267pt;}
.ybf{bottom:533.514800pt;}
.y1e4{bottom:538.771733pt;}
.y1c4{bottom:539.202533pt;}
.ye9{bottom:539.226267pt;}
.y23c{bottom:539.994533pt;}
.y152{bottom:541.327067pt;}
.y178{bottom:542.136267pt;}
.y44{bottom:542.404533pt;}
.y21{bottom:544.720133pt;}
.y29{bottom:544.744133pt;}
.y1a4{bottom:546.627467pt;}
.y129{bottom:547.776267pt;}
.y202{bottom:548.442533pt;}
.y70{bottom:548.464667pt;}
.ya1{bottom:548.475333pt;}
.y219{bottom:551.644533pt;}
.ybe{bottom:551.994800pt;}
.y1e3{bottom:557.251733pt;}
.y1c3{bottom:557.682533pt;}
.y10d{bottom:557.683867pt;}
.ye8{bottom:557.706267pt;}
.y23b{bottom:558.474533pt;}
.y28{bottom:558.952133pt;}
.y151{bottom:559.807067pt;}
.y177{bottom:560.616267pt;}
.y43{bottom:560.884533pt;}
.y128{bottom:563.416267pt;}
.y1a3{bottom:565.459467pt;}
.y20{bottom:566.032133pt;}
.y201{bottom:566.922533pt;}
.y6f{bottom:566.944667pt;}
.ya0{bottom:566.955333pt;}
.y218{bottom:570.124533pt;}
.ybd{bottom:570.474800pt;}
.y27{bottom:573.160133pt;}
.y1e2{bottom:575.731733pt;}
.y1c2{bottom:576.162533pt;}
.y10c{bottom:576.163867pt;}
.ye7{bottom:576.186267pt;}
.y23a{bottom:576.954533pt;}
.y150{bottom:578.287067pt;}
.y127{bottom:579.056267pt;}
.y176{bottom:579.096267pt;}
.y42{bottom:579.364533pt;}
.y200{bottom:585.402533pt;}
.y6e{bottom:585.424667pt;}
.y9f{bottom:585.435333pt;}
.y26{bottom:587.368133pt;}
.ybc{bottom:588.954800pt;}
.y1a2{bottom:593.531467pt;}
.y1c1{bottom:594.642533pt;}
.y10b{bottom:594.643867pt;}
.ye6{bottom:594.666267pt;}
.y14f{bottom:596.767067pt;}
.y175{bottom:597.576267pt;}
.y41{bottom:597.844533pt;}
.y25{bottom:601.576133pt;}
.y239{bottom:603.559867pt;}
.y1ff{bottom:603.882533pt;}
.y6d{bottom:603.904667pt;}
.y9e{bottom:603.915333pt;}
.ybb{bottom:607.434800pt;}
.y1a1{bottom:612.363467pt;}
.y126{bottom:613.122533pt;}
.y10a{bottom:613.123867pt;}
.ye5{bottom:613.146267pt;}
.y14e{bottom:615.247067pt;}
.y174{bottom:616.056267pt;}
.y40{bottom:616.324533pt;}
.y1e1{bottom:618.566267pt;}
.y238{bottom:622.039867pt;}
.y1fe{bottom:622.362533pt;}
.y6c{bottom:622.384667pt;}
.y9d{bottom:622.395333pt;}
.yba{bottom:625.901467pt;}
.y1a0{bottom:631.195467pt;}
.y125{bottom:631.602533pt;}
.y109{bottom:631.603867pt;}
.ye4{bottom:631.626267pt;}
.y14d{bottom:633.727067pt;}
.y173{bottom:634.536267pt;}
.y3f{bottom:634.804533pt;}
.y1fd{bottom:640.842533pt;}
.y6b{bottom:640.864667pt;}
.y9c{bottom:640.875333pt;}
.y16{bottom:641.008133pt;}
.y1f{bottom:641.032133pt;}
.y217{bottom:644.044533pt;}
.yb9{bottom:644.381467pt;}
.y237{bottom:648.645200pt;}
.y19f{bottom:650.027467pt;}
.y124{bottom:650.082533pt;}
.y108{bottom:650.083867pt;}
.ye3{bottom:650.106267pt;}
.y14c{bottom:652.207067pt;}
.y172{bottom:653.016267pt;}
.y3e{bottom:653.284533pt;}
.y15{bottom:655.216133pt;}
.y1e{bottom:655.240133pt;}
.y1fc{bottom:659.322533pt;}
.y6a{bottom:659.344667pt;}
.y9b{bottom:659.355333pt;}
.y216{bottom:662.524533pt;}
.yb8{bottom:662.861467pt;}
.y123{bottom:668.562533pt;}
.y107{bottom:668.563867pt;}
.ye2{bottom:668.586267pt;}
.y19e{bottom:668.859467pt;}
.y14{bottom:669.424133pt;}
.y1d{bottom:669.448133pt;}
.y14b{bottom:670.687067pt;}
.y171{bottom:671.496267pt;}
.y3d{bottom:671.764533pt;}
.y236{bottom:675.250533pt;}
.y1fb{bottom:677.802533pt;}
.y69{bottom:677.824667pt;}
.y9a{bottom:677.835333pt;}
.yb7{bottom:681.341467pt;}
.y13{bottom:683.632133pt;}
.y1c{bottom:683.656133pt;}
.y1c0{bottom:687.042533pt;}
.y106{bottom:687.043867pt;}
.y19d{bottom:687.691467pt;}
.y14a{bottom:689.167067pt;}
.y170{bottom:689.976267pt;}
.y3c{bottom:690.244533pt;}
.y235{bottom:693.730533pt;}
.y122{bottom:696.282533pt;}
.y68{bottom:696.304667pt;}
.ye1{bottom:696.306267pt;}
.y99{bottom:696.315333pt;}
.y1b{bottom:697.864133pt;}
.yb6{bottom:699.821467pt;}
.y12{bottom:704.944133pt;}
.y105{bottom:705.523867pt;}
.y19c{bottom:706.523467pt;}
.y149{bottom:707.647067pt;}
.y16f{bottom:708.456267pt;}
.y3b{bottom:708.724533pt;}
.y1a{bottom:712.072133pt;}
.y121{bottom:714.762533pt;}
.y67{bottom:714.784667pt;}
.ye0{bottom:714.786267pt;}
.y98{bottom:714.795333pt;}
.yb5{bottom:718.301467pt;}
.y234{bottom:720.335867pt;}
.y1e0{bottom:724.003867pt;}
.y19b{bottom:725.355467pt;}
.y19{bottom:726.280133pt;}
.y16e{bottom:726.936267pt;}
.y3a{bottom:727.204533pt;}
.y120{bottom:733.242533pt;}
.y104{bottom:733.243867pt;}
.y66{bottom:733.264667pt;}
.ydf{bottom:733.266267pt;}
.y97{bottom:733.275333pt;}
.y148{bottom:735.367067pt;}
.y233{bottom:738.815867pt;}
.y18{bottom:740.488133pt;}
.y1df{bottom:742.483867pt;}
.y19a{bottom:744.187467pt;}
.y16d{bottom:745.416267pt;}
.y39{bottom:745.684533pt;}
.y96{bottom:751.722533pt;}
.y103{bottom:751.723867pt;}
.y65{bottom:751.744667pt;}
.yde{bottom:751.746267pt;}
.y147{bottom:753.847067pt;}
.y17{bottom:754.696133pt;}
.y215{bottom:754.924533pt;}
.y232{bottom:757.295867pt;}
.yb4{bottom:759.246267pt;}
.y1de{bottom:760.963867pt;}
.y199{bottom:763.019467pt;}
.y16c{bottom:763.896267pt;}
.y38{bottom:764.164533pt;}
.y95{bottom:770.202533pt;}
.y102{bottom:770.203867pt;}
.y64{bottom:770.224667pt;}
.ydd{bottom:770.226267pt;}
.y146{bottom:772.327067pt;}
.y214{bottom:773.404533pt;}
.y1dd{bottom:779.443867pt;}
.y198{bottom:781.851467pt;}
.y16b{bottom:782.376267pt;}
.y37{bottom:782.644533pt;}
.y231{bottom:783.901200pt;}
.y94{bottom:788.682533pt;}
.y101{bottom:788.683867pt;}
.y63{bottom:788.704667pt;}
.ydc{bottom:788.706267pt;}
.y145{bottom:790.807067pt;}
.y1dc{bottom:797.923867pt;}
.y16a{bottom:800.856267pt;}
.y36{bottom:801.124533pt;}
.y93{bottom:807.162533pt;}
.y100{bottom:807.163867pt;}
.y62{bottom:807.184667pt;}
.y144{bottom:809.287067pt;}
.y197{bottom:809.923467pt;}
.y230{bottom:810.506533pt;}
.y1db{bottom:816.403867pt;}
.ydb{bottom:816.405333pt;}
.y169{bottom:819.336267pt;}
.y35{bottom:819.604533pt;}
.y92{bottom:825.642533pt;}
.y61{bottom:825.643867pt;}
.y143{bottom:827.767067pt;}
.y196{bottom:828.755467pt;}
.y213{bottom:828.844533pt;}
.y11f{bottom:834.882533pt;}
.yb3{bottom:834.883867pt;}
.yda{bottom:834.885333pt;}
.y22f{bottom:837.111867pt;}
.y168{bottom:837.816267pt;}
.y1bf{bottom:844.122533pt;}
.yff{bottom:844.123867pt;}
.y142{bottom:846.247067pt;}
.y34{bottom:847.324533pt;}
.y195{bottom:847.587467pt;}
.y11{bottom:849.352267pt;}
.y91{bottom:853.362533pt;}
.y60{bottom:853.363867pt;}
.yd9{bottom:853.365333pt;}
.y22e{bottom:855.591867pt;}
.y1be{bottom:862.602533pt;}
.yfe{bottom:862.603867pt;}
.y33{bottom:865.804533pt;}
.y194{bottom:866.419467pt;}
.y10{bottom:867.821467pt;}
.y90{bottom:871.842533pt;}
.y5f{bottom:871.843867pt;}
.yd8{bottom:871.845333pt;}
.y22d{bottom:874.071867pt;}
.y212{bottom:875.044533pt;}
.y167{bottom:878.761067pt;}
.y1bd{bottom:881.082533pt;}
.yfd{bottom:881.083867pt;}
.y141{bottom:883.206667pt;}
.y32{bottom:884.284533pt;}
.y8f{bottom:890.322533pt;}
.y5e{bottom:890.323867pt;}
.yd7{bottom:890.325333pt;}
.y211{bottom:893.524533pt;}
.y140{bottom:898.846667pt;}
.y1bc{bottom:899.562533pt;}
.y22c{bottom:900.677200pt;}
.y31{bottom:902.764533pt;}
.y193{bottom:903.749200pt;}
.yf{bottom:907.282800pt;}
.y8e{bottom:908.802533pt;}
.y5d{bottom:908.803867pt;}
.yd6{bottom:908.805333pt;}
.y13f{bottom:914.486667pt;}
.y1bb{bottom:918.042533pt;}
.y22b{bottom:919.157200pt;}
.y192{bottom:919.749200pt;}
.y30{bottom:921.244533pt;}
.y8d{bottom:927.282533pt;}
.y5c{bottom:927.283867pt;}
.yd5{bottom:927.285333pt;}
.y13e{bottom:930.126667pt;}
.y191{bottom:935.749200pt;}
.y2f{bottom:939.724533pt;}
.y8c{bottom:945.762533pt;}
.y5b{bottom:945.763867pt;}
.yd4{bottom:945.765333pt;}
.ye{bottom:946.736000pt;}
.y190{bottom:951.749200pt;}
.y8b{bottom:964.242533pt;}
.y5a{bottom:964.243867pt;}
.y18f{bottom:967.749200pt;}
.yd{bottom:975.536000pt;}
.y2e{bottom:980.669333pt;}
.y8a{bottom:982.722533pt;}
.y59{bottom:982.723867pt;}
.y18e{bottom:983.749200pt;}
.yc{bottom:1033.547067pt;}
.y2d{bottom:1041.982133pt;}
.yb{bottom:1061.227067pt;}
.ya{bottom:1073.227067pt;}
.h10{height:30.816000pt;}
.h4{height:31.402667pt;}
.h3{height:31.701333pt;}
.h2{height:40.304688pt;}
.hb{height:42.704000pt;}
.ha{height:45.216000pt;}
.h9{height:45.312000pt;}
.h8{height:50.240000pt;}
.hd{height:55.264000pt;}
.h17{height:55.275200pt;}
.h14{height:55.317333pt;}
.h15{height:55.338667pt;}
.hf{height:55.342400pt;}
.h11{height:55.347200pt;}
.h18{height:55.347733pt;}
.h16{height:55.385067pt;}
.h13{height:55.395200pt;}
.h19{height:55.500267pt;}
.he{height:55.501867pt;}
.h12{height:55.502400pt;}
.h6{height:57.344000pt;}
.hc{height:65.450667pt;}
.h7{height:70.336000pt;}
.h5{height:90.624000pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:75.590533pt;}
.xe{left:77.308933pt;}
.xb{left:83.316267pt;}
.x8{left:94.280000pt;}
.xf{left:96.214800pt;}
.x2{left:98.267867pt;}
.x13{left:120.939867pt;}
.x12{left:122.665333pt;}
.x3{left:129.062800pt;}
.x4{left:134.396133pt;}
.x10{left:136.062933pt;}
.x11{left:137.788400pt;}
.xc{left:196.704267pt;}
.x6{left:245.454933pt;}
.x7{left:376.925067pt;}
.xa{left:478.780000pt;}
.x9{left:486.298667pt;}
.xd{left:581.670133pt;}
.x5{left:652.369467pt;}
}




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