
    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_bc72832ed446a7c556d89cb5.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_bcc05966f4d5cd0662da6c82.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_89331c8bd746fb71657ef3d5.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_d55f8567e02320e2f61b6307.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_253a3c6cd3378ebfe1665ffa.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_dc2d690f679ae86055364af9.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_95ab3714788466f3a036d83b.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_c3a2a7e060465e919b45a10c.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.011000;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_81441b2b7204c005d5a5c2a9.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.161000;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_974b181ed190b65dfdd3b95b.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.753000;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_5b252b112e6bb669d9e3b2c0.woff2')format("woff");}.ffc{font-family:ffc;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;}
.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:-19.800000px;}
.v3{vertical-align:-16.200000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:19.812000px;}
.ls35{letter-spacing:-0.990000px;}
.ls34{letter-spacing:-0.330000px;}
.ls33{letter-spacing:-0.066000px;}
.ls7{letter-spacing:0.000000px;}
.ls38{letter-spacing:0.026400px;}
.lsf{letter-spacing:0.030000px;}
.lsa{letter-spacing:0.030600px;}
.ls25{letter-spacing:0.033000px;}
.ls6{letter-spacing:0.054000px;}
.ls26{letter-spacing:0.060000px;}
.ls9{letter-spacing:0.066000px;}
.ls21{letter-spacing:0.099000px;}
.ls1{letter-spacing:0.108000px;}
.ls2f{letter-spacing:0.120000px;}
.ls1b{letter-spacing:0.132000px;}
.ls15{letter-spacing:0.165000px;}
.ls32{letter-spacing:0.180000px;}
.lsd{letter-spacing:0.198000px;}
.ls1f{letter-spacing:0.214200px;}
.ls2{letter-spacing:0.216000px;}
.ls27{letter-spacing:0.264000px;}
.lsb{letter-spacing:0.330000px;}
.ls31{letter-spacing:0.360000px;}
.ls36{letter-spacing:0.363000px;}
.ls1e{letter-spacing:0.396000px;}
.ls19{letter-spacing:0.429000px;}
.ls4{letter-spacing:0.432000px;}
.ls1a{letter-spacing:0.462000px;}
.ls16{letter-spacing:0.495000px;}
.ls14{letter-spacing:0.528000px;}
.ls3{letter-spacing:0.540000px;}
.ls20{letter-spacing:0.594000px;}
.lsc{letter-spacing:0.660000px;}
.ls12{letter-spacing:0.726000px;}
.ls1c{letter-spacing:0.792000px;}
.ls13{letter-spacing:0.858000px;}
.ls18{letter-spacing:0.924000px;}
.ls5{letter-spacing:0.972000px;}
.ls24{letter-spacing:0.990000px;}
.ls23{letter-spacing:1.023000px;}
.ls1d{letter-spacing:1.056000px;}
.ls2d{letter-spacing:1.122000px;}
.ls10{letter-spacing:1.140000px;}
.ls11{letter-spacing:1.148400px;}
.ls17{letter-spacing:1.188000px;}
.ls37{letter-spacing:1.254000px;}
.ls28{letter-spacing:1.320000px;}
.ls2c{letter-spacing:1.386000px;}
.ls22{letter-spacing:1.452000px;}
.ls2b{letter-spacing:1.584000px;}
.ls29{letter-spacing:1.650000px;}
.ls2a{letter-spacing:1.848000px;}
.ls30{letter-spacing:2038.568400px;}
.lse{letter-spacing:2071.568400px;}
.ls2e{letter-spacing:2134.018800px;}
.ls8{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;}
.ws19{word-spacing:-16.500000px;}
.ws5c{word-spacing:-14.883000px;}
.ws49{word-spacing:-14.289000px;}
.ws5b{word-spacing:-14.190000px;}
.ws62{word-spacing:-13.992000px;}
.wsc6{word-spacing:-13.860000px;}
.ws38{word-spacing:-12.750000px;}
.ws1a{word-spacing:-7.371000px;}
.wsc8{word-spacing:-1.584000px;}
.ws93{word-spacing:-1.386000px;}
.ws8c{word-spacing:-1.320000px;}
.wsbe{word-spacing:-1.140000px;}
.ws68{word-spacing:-0.990000px;}
.wsba{word-spacing:-0.924000px;}
.ws69{word-spacing:-0.792000px;}
.ws4e{word-spacing:-0.660000px;}
.ws95{word-spacing:-0.462000px;}
.ws6a{word-spacing:-0.396000px;}
.wsc5{word-spacing:-0.330000px;}
.ws33{word-spacing:-0.264000px;}
.ws12{word-spacing:-0.216000px;}
.ws59{word-spacing:-0.132000px;}
.wscb{word-spacing:-0.066000px;}
.wsc{word-spacing:-0.054000px;}
.ws2{word-spacing:0.000000px;}
.wse{word-spacing:0.054000px;}
.wsb3{word-spacing:0.060000px;}
.ws22{word-spacing:0.066000px;}
.ws66{word-spacing:0.132000px;}
.ws2c{word-spacing:0.198000px;}
.wsb2{word-spacing:0.240000px;}
.wsb5{word-spacing:0.264000px;}
.ws87{word-spacing:0.330000px;}
.ws73{word-spacing:0.396000px;}
.ws31{word-spacing:0.462000px;}
.ws8a{word-spacing:0.528000px;}
.wsf{word-spacing:0.594000px;}
.ws47{word-spacing:0.600000px;}
.ws8{word-spacing:0.648000px;}
.ws50{word-spacing:0.660000px;}
.wsa8{word-spacing:0.720000px;}
.wsa4{word-spacing:0.780000px;}
.ws20{word-spacing:0.792000px;}
.ws8e{word-spacing:0.858000px;}
.wsaa{word-spacing:0.900000px;}
.ws92{word-spacing:0.924000px;}
.ws13{word-spacing:0.972000px;}
.ws98{word-spacing:0.990000px;}
.ws36{word-spacing:1.026000px;}
.wsbc{word-spacing:1.056000px;}
.wsad{word-spacing:1.080000px;}
.ws7c{word-spacing:1.122000px;}
.wsb8{word-spacing:1.188000px;}
.wsac{word-spacing:1.200000px;}
.wsca{word-spacing:1.254000px;}
.ws3b{word-spacing:1.260000px;}
.ws28{word-spacing:1.320000px;}
.ws70{word-spacing:1.350000px;}
.ws3a{word-spacing:1.380000px;}
.ws71{word-spacing:1.386000px;}
.ws48{word-spacing:1.440000px;}
.ws5f{word-spacing:1.452000px;}
.ws37{word-spacing:1.458000px;}
.ws44{word-spacing:1.500000px;}
.ws53{word-spacing:1.518000px;}
.ws11{word-spacing:1.566000px;}
.ws4b{word-spacing:1.584000px;}
.ws42{word-spacing:1.620000px;}
.ws4{word-spacing:1.632000px;}
.ws97{word-spacing:1.650000px;}
.ws64{word-spacing:1.716000px;}
.wsa5{word-spacing:1.740000px;}
.ws30{word-spacing:1.782000px;}
.ws4d{word-spacing:1.848000px;}
.ws83{word-spacing:1.860000px;}
.ws4c{word-spacing:1.914000px;}
.ws81{word-spacing:1.920000px;}
.ws58{word-spacing:1.980000px;}
.ws17{word-spacing:1.998000px;}
.ws9f{word-spacing:2.040000px;}
.ws77{word-spacing:2.046000px;}
.ws25{word-spacing:2.112000px;}
.ws35{word-spacing:2.160000px;}
.ws2e{word-spacing:2.178000px;}
.ws3{word-spacing:2.256000px;}
.ws39{word-spacing:2.280000px;}
.wsb1{word-spacing:2.340000px;}
.wsb6{word-spacing:2.376000px;}
.ws65{word-spacing:2.442000px;}
.ws3e{word-spacing:2.460000px;}
.ws6e{word-spacing:2.484000px;}
.ws8f{word-spacing:2.508000px;}
.ws76{word-spacing:2.574000px;}
.ws80{word-spacing:2.580000px;}
.ws67{word-spacing:2.640000px;}
.ws9d{word-spacing:2.700000px;}
.ws88{word-spacing:2.706000px;}
.ws10{word-spacing:2.754000px;}
.wsbf{word-spacing:2.760000px;}
.ws2d{word-spacing:2.772000px;}
.wsaf{word-spacing:2.820000px;}
.ws29{word-spacing:2.838000px;}
.wsae{word-spacing:2.880000px;}
.wsb9{word-spacing:2.904000px;}
.wsd{word-spacing:2.916000px;}
.ws7d{word-spacing:2.970000px;}
.ws4a{word-spacing:3.036000px;}
.wsa6{word-spacing:3.060000px;}
.wsc7{word-spacing:3.102000px;}
.ws86{word-spacing:3.168000px;}
.ws9c{word-spacing:3.234000px;}
.ws46{word-spacing:3.240000px;}
.ws5d{word-spacing:3.300000px;}
.ws18{word-spacing:3.348000px;}
.ws27{word-spacing:3.366000px;}
.wsa7{word-spacing:3.420000px;}
.ws56{word-spacing:3.432000px;}
.ws16{word-spacing:3.456000px;}
.ws9e{word-spacing:3.480000px;}
.ws52{word-spacing:3.498000px;}
.ws84{word-spacing:3.540000px;}
.ws5a{word-spacing:3.564000px;}
.ws9a{word-spacing:3.630000px;}
.ws75{word-spacing:3.696000px;}
.ws32{word-spacing:3.762000px;}
.wsa2{word-spacing:3.780000px;}
.ws21{word-spacing:3.828000px;}
.ws55{word-spacing:3.894000px;}
.wsb0{word-spacing:3.900000px;}
.ws6d{word-spacing:3.960000px;}
.wsc1{word-spacing:4.020000px;}
.ws8b{word-spacing:4.092000px;}
.ws3d{word-spacing:4.140000px;}
.ws34{word-spacing:4.158000px;}
.ws4f{word-spacing:4.224000px;}
.wsb4{word-spacing:4.260000px;}
.ws5e{word-spacing:4.290000px;}
.ws14{word-spacing:4.320000px;}
.ws2f{word-spacing:4.356000px;}
.ws82{word-spacing:4.380000px;}
.ws51{word-spacing:4.422000px;}
.ws7a{word-spacing:4.488000px;}
.ws24{word-spacing:4.554000px;}
.ws40{word-spacing:4.560000px;}
.ws61{word-spacing:4.620000px;}
.wsb{word-spacing:4.644000px;}
.ws57{word-spacing:4.686000px;}
.ws7b{word-spacing:4.752000px;}
.wsc0{word-spacing:4.800000px;}
.ws9{word-spacing:4.806000px;}
.wsc3{word-spacing:4.818000px;}
.wsa1{word-spacing:4.884000px;}
.ws3c{word-spacing:4.920000px;}
.ws63{word-spacing:4.950000px;}
.ws89{word-spacing:5.016000px;}
.ws7{word-spacing:5.076000px;}
.ws1e{word-spacing:5.082000px;}
.wsa3{word-spacing:5.100000px;}
.ws15{word-spacing:5.130000px;}
.ws85{word-spacing:5.148000px;}
.wsa9{word-spacing:5.160000px;}
.ws2a{word-spacing:5.214000px;}
.ws78{word-spacing:5.280000px;}
.wsa0{word-spacing:5.340000px;}
.ws8d{word-spacing:5.346000px;}
.ws6f{word-spacing:5.400000px;}
.wsc4{word-spacing:5.412000px;}
.ws7e{word-spacing:5.460000px;}
.ws96{word-spacing:5.478000px;}
.wsb7{word-spacing:5.544000px;}
.ws26{word-spacing:5.610000px;}
.wsa{word-spacing:5.670000px;}
.ws74{word-spacing:5.676000px;}
.ws7f{word-spacing:5.700000px;}
.wsbd{word-spacing:5.742000px;}
.ws91{word-spacing:5.808000px;}
.wsab{word-spacing:5.820000px;}
.ws94{word-spacing:5.874000px;}
.ws54{word-spacing:5.940000px;}
.ws1f{word-spacing:6.006000px;}
.ws3f{word-spacing:6.060000px;}
.wsc2{word-spacing:6.072000px;}
.ws72{word-spacing:6.138000px;}
.ws43{word-spacing:6.180000px;}
.ws41{word-spacing:6.240000px;}
.ws2b{word-spacing:6.270000px;}
.ws45{word-spacing:6.300000px;}
.ws9b{word-spacing:6.336000px;}
.ws99{word-spacing:6.402000px;}
.ws79{word-spacing:6.468000px;}
.ws90{word-spacing:6.534000px;}
.ws6c{word-spacing:6.600000px;}
.ws6b{word-spacing:6.666000px;}
.ws23{word-spacing:6.798000px;}
.wsc9{word-spacing:6.864000px;}
.ws1d{word-spacing:6.930000px;}
.ws60{word-spacing:6.996000px;}
.ws5{word-spacing:10.656000px;}
.ws1b{word-spacing:12.750000px;}
.ws6{word-spacing:13.344000px;}
.wsbb{word-spacing:27.504000px;}
.ws1c{word-spacing:84.708000px;}
._2{margin-left:-24.000000px;}
._3{margin-left:-22.694400px;}
._d{margin-left:-20.922000px;}
._4{margin-left:-17.640000px;}
._10{margin-left:-16.632000px;}
._c{margin-left:-15.576000px;}
._6{margin-left:-1.508400px;}
._9{width:1.023000px;}
._f{width:7.392000px;}
._5{width:9.774000px;}
._1{width:11.040000px;}
._0{width:13.344000px;}
._a{width:20.988000px;}
._e{width:27.504000px;}
._7{width:49.626000px;}
._b{width:51.354000px;}
._8{width:84.708000px;}
.fc2{color:rgb(96,138,150);}
.fc1{color:rgb(157,194,227);}
.fc0{color:rgb(0,0,0);}
.fsb{font-size:35.100000px;}
.fsa{font-size:42.900000px;}
.fs2{font-size:48.000000px;}
.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;}
.fsc{font-size:72.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;}
.y65{bottom:138.200700px;}
.y120{bottom:138.588450px;}
.y1b7{bottom:139.217850px;}
.y243{bottom:139.398750px;}
.y161{bottom:139.573500px;}
.y147{bottom:139.627350px;}
.y1da{bottom:139.698300px;}
.y108{bottom:140.090700px;}
.ya2{bottom:140.095350px;}
.y79{bottom:140.163900px;}
.y20e{bottom:140.201250px;}
.yee{bottom:140.204250px;}
.y9{bottom:140.316450px;}
.y225{bottom:140.476500px;}
.y191{bottom:142.905600px;}
.y1f8{bottom:148.272750px;}
.y8{bottom:153.108450px;}
.y64{bottom:154.184700px;}
.y160{bottom:157.168500px;}
.y78{bottom:157.758900px;}
.y20d{bottom:157.796250px;}
.y11f{bottom:159.378450px;}
.y1b6{bottom:160.007850px;}
.y146{bottom:160.417350px;}
.y1d9{bottom:160.488300px;}
.y190{bottom:160.500600px;}
.y107{bottom:160.880700px;}
.ya1{bottom:160.885350px;}
.yed{bottom:160.994250px;}
.y224{bottom:161.266500px;}
.y1f7{bottom:169.062750px;}
.y63{bottom:170.168700px;}
.y242{bottom:170.583750px;}
.y7{bottom:172.269300px;}
.y15f{bottom:174.763500px;}
.y77{bottom:175.353900px;}
.y20c{bottom:175.391250px;}
.y18f{bottom:178.095600px;}
.y11e{bottom:180.168450px;}
.y145{bottom:181.207350px;}
.y1d8{bottom:181.278300px;}
.y106{bottom:181.670700px;}
.ya0{bottom:181.675350px;}
.yec{bottom:181.784250px;}
.y223{bottom:182.056500px;}
.y62{bottom:186.152700px;}
.y1f6{bottom:189.852750px;}
.y241{bottom:191.373750px;}
.y6{bottom:191.445300px;}
.y76{bottom:192.948900px;}
.y20b{bottom:192.986250px;}
.y18e{bottom:195.690600px;}
.y11d{bottom:200.958450px;}
.y15e{bottom:201.163500px;}
.y144{bottom:201.997350px;}
.y1d7{bottom:202.068300px;}
.y105{bottom:202.460700px;}
.y9f{bottom:202.465350px;}
.yeb{bottom:202.574250px;}
.y1b5{bottom:203.944800px;}
.y61{bottom:206.186700px;}
.y75{bottom:210.543900px;}
.y20a{bottom:210.581250px;}
.y5{bottom:210.621300px;}
.y1f5{bottom:210.642750px;}
.y222{bottom:213.241500px;}
.y18d{bottom:213.285600px;}
.y11c{bottom:221.748450px;}
.y240{bottom:222.558750px;}
.y143{bottom:222.787350px;}
.y104{bottom:223.250700px;}
.y9e{bottom:223.255350px;}
.yea{bottom:223.364250px;}
.y4{bottom:223.413300px;}
.y15d{bottom:227.563500px;}
.y74{bottom:228.138900px;}
.y209{bottom:228.176250px;}
.y18c{bottom:230.880600px;}
.y1f4{bottom:231.432750px;}
.y221{bottom:234.031500px;}
.y11b{bottom:242.538450px;}
.y3{bottom:242.589300px;}
.y142{bottom:243.577350px;}
.y103{bottom:244.040700px;}
.y9d{bottom:244.045350px;}
.ye9{bottom:244.154250px;}
.y15c{bottom:245.158500px;}
.y73{bottom:245.733900px;}
.y208{bottom:245.771250px;}
.y1d6{bottom:248.131050px;}
.y18b{bottom:248.475600px;}
.y1f3{bottom:252.222750px;}
.y23f{bottom:253.743750px;}
.y220{bottom:254.821500px;}
.y2{bottom:255.381300px;}
.y15b{bottom:262.753500px;}
.y11a{bottom:263.328450px;}
.y72{bottom:263.328900px;}
.y207{bottom:263.366250px;}
.yca{bottom:263.576850px;}
.y141{bottom:264.367350px;}
.y102{bottom:264.830700px;}
.y9c{bottom:264.835350px;}
.ye8{bottom:264.944250px;}
.y18a{bottom:266.070600px;}
.y1f2{bottom:273.012750px;}
.y23e{bottom:274.533750px;}
.y21f{bottom:275.611500px;}
.y71{bottom:280.923900px;}
.y206{bottom:280.961250px;}
.y189{bottom:283.665600px;}
.y119{bottom:284.118450px;}
.yc9{bottom:284.366850px;}
.y1b4{bottom:284.703450px;}
.y140{bottom:285.157350px;}
.y101{bottom:285.620700px;}
.y9b{bottom:285.625350px;}
.ye7{bottom:285.734250px;}
.y15a{bottom:289.153500px;}
.y1f1{bottom:293.802750px;}
.y21e{bottom:296.401500px;}
.y60{bottom:298.358100px;}
.y70{bottom:298.518900px;}
.y205{bottom:298.556250px;}
.y188{bottom:301.260600px;}
.y118{bottom:304.908450px;}
.yc8{bottom:305.156850px;}
.y1b3{bottom:305.493450px;}
.y23d{bottom:305.718750px;}
.y13f{bottom:305.947350px;}
.ye6{bottom:306.524250px;}
.y1f0{bottom:314.592750px;}
.y159{bottom:315.553500px;}
.y6f{bottom:316.113900px;}
.y100{bottom:316.805700px;}
.y21d{bottom:317.191500px;}
.y187{bottom:318.855600px;}
.y5f{bottom:319.148100px;}
.y117{bottom:325.698450px;}
.y1d5{bottom:325.939350px;}
.yc7{bottom:325.946850px;}
.y1b2{bottom:326.283450px;}
.y23c{bottom:326.508750px;}
.ye5{bottom:327.314250px;}
.y158{bottom:333.148500px;}
.y6e{bottom:333.708900px;}
.y9a{bottom:333.814200px;}
.y1ef{bottom:335.382750px;}
.y186{bottom:336.450600px;}
.y204{bottom:336.918750px;}
.y13e{bottom:337.132350px;}
.yff{bottom:337.595700px;}
.y21c{bottom:337.981500px;}
.y5e{bottom:339.938100px;}
.y116{bottom:346.488450px;}
.y1d4{bottom:346.729350px;}
.yc6{bottom:346.736850px;}
.y1b1{bottom:347.073450px;}
.y23b{bottom:347.298750px;}
.ye4{bottom:348.104250px;}
.y6d{bottom:351.303900px;}
.y185{bottom:354.045600px;}
.y1ee{bottom:356.172750px;}
.y203{bottom:357.708750px;}
.y13d{bottom:357.922350px;}
.yfe{bottom:358.385700px;}
.y157{bottom:359.548500px;}
.y5d{bottom:360.728100px;}
.y2d{bottom:363.396300px;}
.y3a{bottom:363.436800px;}
.y115{bottom:367.278450px;}
.y1d3{bottom:367.519350px;}
.yc5{bottom:367.526850px;}
.y1b0{bottom:367.863450px;}
.ye3{bottom:368.894250px;}
.y6c{bottom:368.898900px;}
.y21b{bottom:369.166500px;}
.y1ed{bottom:376.962750px;}
.y23a{bottom:378.483750px;}
.y202{bottom:378.498750px;}
.y13c{bottom:378.712350px;}
.yfd{bottom:379.175700px;}
.y2c{bottom:379.380300px;}
.y39{bottom:379.420800px;}
.y5c{bottom:381.518100px;}
.y156{bottom:385.948500px;}
.y1d2{bottom:388.309350px;}
.yc4{bottom:388.316850px;}
.y1af{bottom:388.653450px;}
.y21a{bottom:389.956500px;}
.y2b{bottom:395.364300px;}
.y38{bottom:395.404800px;}
.y184{bottom:396.632850px;}
.y114{bottom:398.463450px;}
.y239{bottom:399.273750px;}
.y201{bottom:399.288750px;}
.y13b{bottom:399.502350px;}
.yfc{bottom:399.965700px;}
.ye2{bottom:400.079250px;}
.y5b{bottom:402.308100px;}
.y1d1{bottom:409.099350px;}
.yc3{bottom:409.106850px;}
.y1ae{bottom:409.443450px;}
.y219{bottom:410.746500px;}
.y2a{bottom:411.348300px;}
.y37{bottom:411.388800px;}
.y183{bottom:417.422850px;}
.y113{bottom:419.253450px;}
.y200{bottom:420.078750px;}
.y13a{bottom:420.292350px;}
.yfb{bottom:420.755700px;}
.y6b{bottom:420.807750px;}
.ye1{bottom:420.869250px;}
.y5a{bottom:423.098100px;}
.y155{bottom:424.320000px;}
.y29{bottom:427.332300px;}
.y36{bottom:427.372800px;}
.y99{bottom:429.887850px;}
.y1d0{bottom:429.889350px;}
.yc2{bottom:429.896850px;}
.y1ad{bottom:430.233450px;}
.y238{bottom:430.458750px;}
.y218{bottom:431.536500px;}
.y182{bottom:438.212850px;}
.y112{bottom:440.043450px;}
.y1ff{bottom:440.868750px;}
.y139{bottom:441.082350px;}
.yfa{bottom:441.545700px;}
.ye0{bottom:441.659250px;}
.y6a{bottom:442.653000px;}
.y35{bottom:443.356800px;}
.y59{bottom:443.888100px;}
.y154{bottom:445.110000px;}
.y98{bottom:450.677850px;}
.y1cf{bottom:450.679350px;}
.yc1{bottom:450.686850px;}
.y1ac{bottom:451.023450px;}
.y237{bottom:451.248750px;}
.y28{bottom:451.308300px;}
.y217{bottom:452.326500px;}
.y1ec{bottom:456.146850px;}
.y181{bottom:459.002850px;}
.y34{bottom:459.340800px;}
.y111{bottom:460.833450px;}
.y1fe{bottom:461.658750px;}
.y138{bottom:461.872350px;}
.yf9{bottom:462.335700px;}
.ydf{bottom:462.449250px;}
.y58{bottom:464.678100px;}
.y153{bottom:465.900000px;}
.y97{bottom:471.467850px;}
.y1ce{bottom:471.469350px;}
.yc0{bottom:471.476850px;}
.y1ab{bottom:471.813450px;}
.y216{bottom:473.116500px;}
.y33{bottom:475.324800px;}
.y1eb{bottom:477.992100px;}
.y180{bottom:479.792850px;}
.y110{bottom:481.623450px;}
.y24c{bottom:481.862850px;}
.y236{bottom:482.433750px;}
.y1fd{bottom:482.448750px;}
.y137{bottom:482.662350px;}
.yde{bottom:483.239250px;}
.y57{bottom:485.468100px;}
.y152{bottom:486.690000px;}
.y32{bottom:491.308800px;}
.y96{bottom:492.257850px;}
.y1cd{bottom:492.259350px;}
.ybf{bottom:492.266850px;}
.y215{bottom:493.906500px;}
.y17f{bottom:500.582850px;}
.y10f{bottom:502.413450px;}
.y24b{bottom:502.652850px;}
.y1aa{bottom:502.998450px;}
.y136{bottom:503.452350px;}
.ydd{bottom:504.029250px;}
.y31{bottom:507.292800px;}
.y151{bottom:507.480000px;}
.y1ea{bottom:508.334850px;}
.y95{bottom:513.047850px;}
.y1cc{bottom:513.049350px;}
.ybe{bottom:513.056850px;}
.y235{bottom:513.618750px;}
.y214{bottom:514.696500px;}
.y56{bottom:516.653100px;}
.yf8{bottom:516.913050px;}
.y17e{bottom:521.372850px;}
.y10e{bottom:523.203450px;}
.y30{bottom:523.276800px;}
.y24a{bottom:523.442850px;}
.y1a9{bottom:523.788450px;}
.y135{bottom:524.242350px;}
.ydc{bottom:524.819250px;}
.y94{bottom:533.837850px;}
.y234{bottom:534.408750px;}
.yf7{bottom:534.508050px;}
.y213{bottom:535.486500px;}
.y55{bottom:537.443100px;}
.y2f{bottom:539.260800px;}
.y17d{bottom:542.162850px;}
.y10d{bottom:543.993450px;}
.y1cb{bottom:544.234350px;}
.ybd{bottom:544.241850px;}
.y1a8{bottom:544.578450px;}
.y1fc{bottom:544.622850px;}
.y134{bottom:545.032350px;}
.ydb{bottom:545.609250px;}
.yf6{bottom:552.103050px;}
.y93{bottom:554.627850px;}
.y2e{bottom:555.244800px;}
.y150{bottom:555.677850px;}
.y212{bottom:556.276500px;}
.y54{bottom:558.233100px;}
.y1fb{bottom:562.221600px;}
.y17c{bottom:562.952850px;}
.y10c{bottom:564.783450px;}
.y1ca{bottom:565.024350px;}
.ybc{bottom:565.031850px;}
.y1a7{bottom:565.368450px;}
.y233{bottom:565.593750px;}
.yda{bottom:566.399250px;}
.yf5{bottom:569.698050px;}
.y14f{bottom:573.272850px;}
.y92{bottom:575.417850px;}
.y133{bottom:576.217350px;}
.y211{bottom:577.066500px;}
.y53{bottom:579.023100px;}
.y1fa{bottom:584.066850px;}
.y10b{bottom:585.573450px;}
.y1c9{bottom:585.814350px;}
.ybb{bottom:585.821850px;}
.y1a6{bottom:586.158450px;}
.y232{bottom:586.383750px;}
.yd9{bottom:587.189250px;}
.yf4{bottom:587.293050px;}
.y14e{bottom:590.867850px;}
.y17b{bottom:594.137850px;}
.y91{bottom:596.207850px;}
.y132{bottom:597.007350px;}
.y210{bottom:597.856500px;}
.y1a{bottom:599.592300px;}
.y27{bottom:599.632800px;}
.y52{bottom:599.813100px;}
.yf3{bottom:604.888050px;}
.y249{bottom:606.602850px;}
.y1c8{bottom:606.604350px;}
.yba{bottom:606.611850px;}
.y1a5{bottom:606.948450px;}
.y14d{bottom:608.462850px;}
.y1f9{bottom:614.409450px;}
.y17a{bottom:614.927850px;}
.y19{bottom:615.576300px;}
.y26{bottom:615.616800px;}
.y90{bottom:616.997850px;}
.y231{bottom:617.568750px;}
.y131{bottom:617.797350px;}
.y51{bottom:620.603100px;}
.yf2{bottom:622.483050px;}
.y14c{bottom:626.057850px;}
.y248{bottom:627.392850px;}
.y1c7{bottom:627.394350px;}
.yb9{bottom:627.401850px;}
.y1a4{bottom:627.738450px;}
.yd8{bottom:628.767150px;}
.y18{bottom:631.560300px;}
.y25{bottom:631.600800px;}
.y10a{bottom:631.636200px;}
.y179{bottom:635.717850px;}
.y230{bottom:638.358750px;}
.y130{bottom:638.587350px;}
.yf1{bottom:640.078050px;}
.y50{bottom:641.393100px;}
.y14b{bottom:643.652850px;}
.y20f{bottom:643.919250px;}
.yd7{bottom:646.362150px;}
.y17{bottom:647.544300px;}
.y24{bottom:647.584800px;}
.y8f{bottom:648.182850px;}
.y1c6{bottom:648.184350px;}
.yb8{bottom:648.191850px;}
.y1a3{bottom:648.528450px;}
.y178{bottom:656.507850px;}
.y247{bottom:658.577850px;}
.y22f{bottom:659.148750px;}
.y12f{bottom:659.377350px;}
.y14a{bottom:661.247850px;}
.y16{bottom:663.528300px;}
.y23{bottom:663.568800px;}
.yd6{bottom:663.957150px;}
.y8e{bottom:668.972850px;}
.y1c5{bottom:668.974350px;}
.yb7{bottom:668.981850px;}
.y1a2{bottom:669.318450px;}
.y4f{bottom:672.578100px;}
.y177{bottom:677.297850px;}
.y246{bottom:679.367850px;}
.y15{bottom:679.512300px;}
.y22{bottom:679.552800px;}
.y12e{bottom:680.167350px;}
.y8d{bottom:689.762850px;}
.yb6{bottom:689.771850px;}
.y1a1{bottom:690.108450px;}
.y22e{bottom:690.333750px;}
.yf0{bottom:691.986900px;}
.y4e{bottom:693.368100px;}
.y21{bottom:695.536800px;}
.y176{bottom:698.087850px;}
.yd5{bottom:700.157850px;}
.y1c4{bottom:700.159350px;}
.y12d{bottom:700.957350px;}
.y14{bottom:703.488300px;}
.y8c{bottom:710.552850px;}
.yb5{bottom:710.561850px;}
.y1a0{bottom:710.898450px;}
.y22d{bottom:711.123750px;}
.y20{bottom:711.520800px;}
.y149{bottom:713.156700px;}
.yef{bottom:713.832150px;}
.y4d{bottom:714.158100px;}
.y175{bottom:718.877850px;}
.yd4{bottom:720.947850px;}
.y1c3{bottom:720.949350px;}
.y1f{bottom:727.504800px;}
.y8b{bottom:731.342850px;}
.y19f{bottom:731.688450px;}
.y4c{bottom:734.948100px;}
.y148{bottom:735.001950px;}
.y174{bottom:739.667850px;}
.yd3{bottom:741.737850px;}
.y1c2{bottom:741.739350px;}
.yb4{bottom:741.746850px;}
.y22c{bottom:742.308750px;}
.y1e{bottom:743.488800px;}
.y12c{bottom:747.020100px;}
.y1e9{bottom:747.413850px;}
.y8a{bottom:752.132850px;}
.y19e{bottom:752.478450px;}
.y4b{bottom:755.738100px;}
.y1d{bottom:759.472800px;}
.yd2{bottom:762.527850px;}
.y1c1{bottom:762.529350px;}
.yb3{bottom:762.536850px;}
.y22b{bottom:763.098750px;}
.y1e8{bottom:768.203850px;}
.y89{bottom:772.922850px;}
.y19d{bottom:773.268450px;}
.y1c{bottom:775.456800px;}
.y4a{bottom:776.528100px;}
.yd1{bottom:783.317850px;}
.y1c0{bottom:783.319350px;}
.yb2{bottom:783.326850px;}
.y1e7{bottom:788.993850px;}
.y173{bottom:789.992850px;}
.y1b{bottom:791.440800px;}
.y19c{bottom:794.058450px;}
.y22a{bottom:794.283750px;}
.y49{bottom:797.318100px;}
.y88{bottom:804.107850px;}
.y1bf{bottom:804.109350px;}
.yb1{bottom:804.116850px;}
.y172{bottom:807.587850px;}
.y1e6{bottom:809.783850px;}
.y19b{bottom:814.848450px;}
.y229{bottom:815.073750px;}
.y48{bottom:818.108100px;}
.y87{bottom:824.897850px;}
.y12b{bottom:824.899350px;}
.yb0{bottom:824.906850px;}
.y171{bottom:825.182850px;}
.y1e5{bottom:830.573850px;}
.y19a{bottom:835.638450px;}
.y47{bottom:838.898100px;}
.y170{bottom:842.777850px;}
.y86{bottom:845.687850px;}
.y12a{bottom:845.689350px;}
.yaf{bottom:845.696850px;}
.y228{bottom:846.258750px;}
.y1e4{bottom:851.363850px;}
.yd0{bottom:856.082850px;}
.y199{bottom:856.428450px;}
.y16f{bottom:860.372850px;}
.y85{bottom:866.477850px;}
.y129{bottom:866.479350px;}
.yae{bottom:866.486850px;}
.y227{bottom:867.048750px;}
.y46{bottom:870.083100px;}
.y1e3{bottom:872.153850px;}
.ycf{bottom:876.872850px;}
.y16e{bottom:877.967850px;}
.y84{bottom:887.267850px;}
.y128{bottom:887.269350px;}
.yad{bottom:887.276850px;}
.y198{bottom:887.613450px;}
.y45{bottom:890.873100px;}
.y1e2{bottom:892.943850px;}
.y16d{bottom:895.562850px;}
.yce{bottom:897.662850px;}
.y1be{bottom:897.664350px;}
.y13{bottom:897.921450px;}
.y83{bottom:908.057850px;}
.y127{bottom:908.059350px;}
.yac{bottom:908.066850px;}
.y197{bottom:908.403450px;}
.y44{bottom:911.663100px;}
.y226{bottom:913.111650px;}
.y16c{bottom:913.157850px;}
.y1e1{bottom:913.733850px;}
.ycd{bottom:918.452850px;}
.y1bd{bottom:918.454350px;}
.y12{bottom:918.699150px;}
.y82{bottom:928.847850px;}
.y126{bottom:928.849350px;}
.yab{bottom:928.856850px;}
.y196{bottom:929.193450px;}
.y16b{bottom:930.752850px;}
.y43{bottom:932.453100px;}
.ycc{bottom:939.242850px;}
.y1bc{bottom:939.244350px;}
.y1e0{bottom:947.278350px;}
.y16a{bottom:948.347850px;}
.y81{bottom:949.637850px;}
.y125{bottom:949.639350px;}
.yaa{bottom:949.646850px;}
.y195{bottom:949.983450px;}
.y42{bottom:953.243100px;}
.ycb{bottom:960.032850px;}
.y1bb{bottom:960.034350px;}
.y11{bottom:963.093150px;}
.y169{bottom:965.942850px;}
.y1df{bottom:968.068350px;}
.y109{bottom:970.427850px;}
.y124{bottom:970.429350px;}
.ya9{bottom:970.436850px;}
.y194{bottom:970.773450px;}
.y41{bottom:974.033100px;}
.y80{bottom:980.822850px;}
.y1ba{bottom:980.824350px;}
.y168{bottom:983.537850px;}
.y10{bottom:988.293150px;}
.y1de{bottom:988.858350px;}
.y123{bottom:991.219350px;}
.ya8{bottom:991.226850px;}
.y193{bottom:991.563450px;}
.y40{bottom:994.823100px;}
.y167{bottom:1001.132850px;}
.y7f{bottom:1001.612850px;}
.y1b9{bottom:1001.614350px;}
.y69{bottom:1009.192200px;}
.y1dd{bottom:1009.648350px;}
.y122{bottom:1012.009350px;}
.ya7{bottom:1012.016850px;}
.y192{bottom:1012.353450px;}
.y3f{bottom:1015.613100px;}
.y7e{bottom:1022.402850px;}
.y1b8{bottom:1022.404350px;}
.y68{bottom:1026.787200px;}
.y166{bottom:1027.532850px;}
.y1dc{bottom:1030.438350px;}
.yf{bottom:1032.678000px;}
.y121{bottom:1032.799350px;}
.y3e{bottom:1036.400100px;}
.y7d{bottom:1043.192850px;}
.ya6{bottom:1043.194350px;}
.y67{bottom:1044.382200px;}
.y1db{bottom:1051.228350px;}
.y245{bottom:1053.587850px;}
.y165{bottom:1053.932850px;}
.y3d{bottom:1057.190100px;}
.y66{bottom:1061.977200px;}
.y7c{bottom:1063.982850px;}
.ya5{bottom:1063.984350px;}
.ye{bottom:1065.078000px;}
.y164{bottom:1071.527850px;}
.y244{bottom:1074.377850px;}
.y7b{bottom:1084.772850px;}
.ya4{bottom:1084.774350px;}
.y163{bottom:1089.122850px;}
.yd{bottom:1097.478000px;}
.y3c{bottom:1103.253000px;}
.y7a{bottom:1105.562850px;}
.ya3{bottom:1105.564350px;}
.y162{bottom:1106.717850px;}
.yc{bottom:1162.740450px;}
.y3b{bottom:1172.229900px;}
.yb{bottom:1193.880450px;}
.ya{bottom:1207.380450px;}
.hf{height:27.904500px;}
.h4{height:35.328000px;}
.h3{height:35.664000px;}
.hb{height:40.545000px;}
.ha{height:42.930000px;}
.h11{height:45.315000px;}
.h2{height:45.342773px;}
.h8{height:47.700000px;}
.h9{height:50.976000px;}
.hd{height:52.470000px;}
.h10{height:53.808000px;}
.he{height:53.917500px;}
.h12{height:53.935500px;}
.h6{height:64.512000px;}
.h7{height:66.780000px;}
.h13{height:67.968000px;}
.hc{height:73.632000px;}
.h5{height:78.624000px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:85.039350px;}
.x11{left:86.980500px;}
.xd{left:93.730800px;}
.x10{left:106.304550px;}
.x15{left:108.241650px;}
.x2{left:110.551350px;}
.x1a{left:128.764200px;}
.x23{left:136.057350px;}
.x22{left:137.998500px;}
.x3{left:145.195650px;}
.x4{left:151.195650px;}
.x16{left:153.070800px;}
.x12{left:155.011950px;}
.xa{left:181.740150px;}
.x1e{left:189.684300px;}
.x19{left:226.248450px;}
.xe{left:242.554800px;}
.x1f{left:252.013800px;}
.x1d{left:260.079300px;}
.x18{left:268.141800px;}
.x14{left:282.266700px;}
.x7{left:367.928400px;}
.x17{left:413.335050px;}
.x13{left:415.276200px;}
.x8{left:438.803400px;}
.xb{left:462.615150px;}
.x1c{left:502.940700px;}
.x21{left:561.167550px;}
.x6{left:595.171650px;}
.x1b{left:600.424950px;}
.xf{left:603.099000px;}
.x20{left:634.255800px;}
.xc{left:637.746150px;}
.x9{left:653.652150px;}
.x5{left:733.915650px;}
@media print{
.v2{vertical-align:-17.600000pt;}
.v3{vertical-align:-14.400000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:17.610667pt;}
.ls35{letter-spacing:-0.880000pt;}
.ls34{letter-spacing:-0.293333pt;}
.ls33{letter-spacing:-0.058667pt;}
.ls7{letter-spacing:0.000000pt;}
.ls38{letter-spacing:0.023467pt;}
.lsf{letter-spacing:0.026667pt;}
.lsa{letter-spacing:0.027200pt;}
.ls25{letter-spacing:0.029333pt;}
.ls6{letter-spacing:0.048000pt;}
.ls26{letter-spacing:0.053333pt;}
.ls9{letter-spacing:0.058667pt;}
.ls21{letter-spacing:0.088000pt;}
.ls1{letter-spacing:0.096000pt;}
.ls2f{letter-spacing:0.106667pt;}
.ls1b{letter-spacing:0.117333pt;}
.ls15{letter-spacing:0.146667pt;}
.ls32{letter-spacing:0.160000pt;}
.lsd{letter-spacing:0.176000pt;}
.ls1f{letter-spacing:0.190400pt;}
.ls2{letter-spacing:0.192000pt;}
.ls27{letter-spacing:0.234667pt;}
.lsb{letter-spacing:0.293333pt;}
.ls31{letter-spacing:0.320000pt;}
.ls36{letter-spacing:0.322667pt;}
.ls1e{letter-spacing:0.352000pt;}
.ls19{letter-spacing:0.381333pt;}
.ls4{letter-spacing:0.384000pt;}
.ls1a{letter-spacing:0.410667pt;}
.ls16{letter-spacing:0.440000pt;}
.ls14{letter-spacing:0.469333pt;}
.ls3{letter-spacing:0.480000pt;}
.ls20{letter-spacing:0.528000pt;}
.lsc{letter-spacing:0.586667pt;}
.ls12{letter-spacing:0.645333pt;}
.ls1c{letter-spacing:0.704000pt;}
.ls13{letter-spacing:0.762667pt;}
.ls18{letter-spacing:0.821333pt;}
.ls5{letter-spacing:0.864000pt;}
.ls24{letter-spacing:0.880000pt;}
.ls23{letter-spacing:0.909333pt;}
.ls1d{letter-spacing:0.938667pt;}
.ls2d{letter-spacing:0.997333pt;}
.ls10{letter-spacing:1.013333pt;}
.ls11{letter-spacing:1.020800pt;}
.ls17{letter-spacing:1.056000pt;}
.ls37{letter-spacing:1.114667pt;}
.ls28{letter-spacing:1.173333pt;}
.ls2c{letter-spacing:1.232000pt;}
.ls22{letter-spacing:1.290667pt;}
.ls2b{letter-spacing:1.408000pt;}
.ls29{letter-spacing:1.466667pt;}
.ls2a{letter-spacing:1.642667pt;}
.ls30{letter-spacing:1812.060800pt;}
.lse{letter-spacing:1841.394133pt;}
.ls2e{letter-spacing:1896.905600pt;}
.ls8{letter-spacing:1926.238933pt;}
.ls0{letter-spacing:2528.078933pt;}
.ws0{word-spacing:-20.160000pt;}
.ws1{word-spacing:-15.120000pt;}
.ws19{word-spacing:-14.666667pt;}
.ws5c{word-spacing:-13.229333pt;}
.ws49{word-spacing:-12.701333pt;}
.ws5b{word-spacing:-12.613333pt;}
.ws62{word-spacing:-12.437333pt;}
.wsc6{word-spacing:-12.320000pt;}
.ws38{word-spacing:-11.333333pt;}
.ws1a{word-spacing:-6.552000pt;}
.wsc8{word-spacing:-1.408000pt;}
.ws93{word-spacing:-1.232000pt;}
.ws8c{word-spacing:-1.173333pt;}
.wsbe{word-spacing:-1.013333pt;}
.ws68{word-spacing:-0.880000pt;}
.wsba{word-spacing:-0.821333pt;}
.ws69{word-spacing:-0.704000pt;}
.ws4e{word-spacing:-0.586667pt;}
.ws95{word-spacing:-0.410667pt;}
.ws6a{word-spacing:-0.352000pt;}
.wsc5{word-spacing:-0.293333pt;}
.ws33{word-spacing:-0.234667pt;}
.ws12{word-spacing:-0.192000pt;}
.ws59{word-spacing:-0.117333pt;}
.wscb{word-spacing:-0.058667pt;}
.wsc{word-spacing:-0.048000pt;}
.ws2{word-spacing:0.000000pt;}
.wse{word-spacing:0.048000pt;}
.wsb3{word-spacing:0.053333pt;}
.ws22{word-spacing:0.058667pt;}
.ws66{word-spacing:0.117333pt;}
.ws2c{word-spacing:0.176000pt;}
.wsb2{word-spacing:0.213333pt;}
.wsb5{word-spacing:0.234667pt;}
.ws87{word-spacing:0.293333pt;}
.ws73{word-spacing:0.352000pt;}
.ws31{word-spacing:0.410667pt;}
.ws8a{word-spacing:0.469333pt;}
.wsf{word-spacing:0.528000pt;}
.ws47{word-spacing:0.533333pt;}
.ws8{word-spacing:0.576000pt;}
.ws50{word-spacing:0.586667pt;}
.wsa8{word-spacing:0.640000pt;}
.wsa4{word-spacing:0.693333pt;}
.ws20{word-spacing:0.704000pt;}
.ws8e{word-spacing:0.762667pt;}
.wsaa{word-spacing:0.800000pt;}
.ws92{word-spacing:0.821333pt;}
.ws13{word-spacing:0.864000pt;}
.ws98{word-spacing:0.880000pt;}
.ws36{word-spacing:0.912000pt;}
.wsbc{word-spacing:0.938667pt;}
.wsad{word-spacing:0.960000pt;}
.ws7c{word-spacing:0.997333pt;}
.wsb8{word-spacing:1.056000pt;}
.wsac{word-spacing:1.066667pt;}
.wsca{word-spacing:1.114667pt;}
.ws3b{word-spacing:1.120000pt;}
.ws28{word-spacing:1.173333pt;}
.ws70{word-spacing:1.200000pt;}
.ws3a{word-spacing:1.226667pt;}
.ws71{word-spacing:1.232000pt;}
.ws48{word-spacing:1.280000pt;}
.ws5f{word-spacing:1.290667pt;}
.ws37{word-spacing:1.296000pt;}
.ws44{word-spacing:1.333333pt;}
.ws53{word-spacing:1.349333pt;}
.ws11{word-spacing:1.392000pt;}
.ws4b{word-spacing:1.408000pt;}
.ws42{word-spacing:1.440000pt;}
.ws4{word-spacing:1.450667pt;}
.ws97{word-spacing:1.466667pt;}
.ws64{word-spacing:1.525333pt;}
.wsa5{word-spacing:1.546667pt;}
.ws30{word-spacing:1.584000pt;}
.ws4d{word-spacing:1.642667pt;}
.ws83{word-spacing:1.653333pt;}
.ws4c{word-spacing:1.701333pt;}
.ws81{word-spacing:1.706667pt;}
.ws58{word-spacing:1.760000pt;}
.ws17{word-spacing:1.776000pt;}
.ws9f{word-spacing:1.813333pt;}
.ws77{word-spacing:1.818667pt;}
.ws25{word-spacing:1.877333pt;}
.ws35{word-spacing:1.920000pt;}
.ws2e{word-spacing:1.936000pt;}
.ws3{word-spacing:2.005333pt;}
.ws39{word-spacing:2.026667pt;}
.wsb1{word-spacing:2.080000pt;}
.wsb6{word-spacing:2.112000pt;}
.ws65{word-spacing:2.170667pt;}
.ws3e{word-spacing:2.186667pt;}
.ws6e{word-spacing:2.208000pt;}
.ws8f{word-spacing:2.229333pt;}
.ws76{word-spacing:2.288000pt;}
.ws80{word-spacing:2.293333pt;}
.ws67{word-spacing:2.346667pt;}
.ws9d{word-spacing:2.400000pt;}
.ws88{word-spacing:2.405333pt;}
.ws10{word-spacing:2.448000pt;}
.wsbf{word-spacing:2.453333pt;}
.ws2d{word-spacing:2.464000pt;}
.wsaf{word-spacing:2.506667pt;}
.ws29{word-spacing:2.522667pt;}
.wsae{word-spacing:2.560000pt;}
.wsb9{word-spacing:2.581333pt;}
.wsd{word-spacing:2.592000pt;}
.ws7d{word-spacing:2.640000pt;}
.ws4a{word-spacing:2.698667pt;}
.wsa6{word-spacing:2.720000pt;}
.wsc7{word-spacing:2.757333pt;}
.ws86{word-spacing:2.816000pt;}
.ws9c{word-spacing:2.874667pt;}
.ws46{word-spacing:2.880000pt;}
.ws5d{word-spacing:2.933333pt;}
.ws18{word-spacing:2.976000pt;}
.ws27{word-spacing:2.992000pt;}
.wsa7{word-spacing:3.040000pt;}
.ws56{word-spacing:3.050667pt;}
.ws16{word-spacing:3.072000pt;}
.ws9e{word-spacing:3.093333pt;}
.ws52{word-spacing:3.109333pt;}
.ws84{word-spacing:3.146667pt;}
.ws5a{word-spacing:3.168000pt;}
.ws9a{word-spacing:3.226667pt;}
.ws75{word-spacing:3.285333pt;}
.ws32{word-spacing:3.344000pt;}
.wsa2{word-spacing:3.360000pt;}
.ws21{word-spacing:3.402667pt;}
.ws55{word-spacing:3.461333pt;}
.wsb0{word-spacing:3.466667pt;}
.ws6d{word-spacing:3.520000pt;}
.wsc1{word-spacing:3.573333pt;}
.ws8b{word-spacing:3.637333pt;}
.ws3d{word-spacing:3.680000pt;}
.ws34{word-spacing:3.696000pt;}
.ws4f{word-spacing:3.754667pt;}
.wsb4{word-spacing:3.786667pt;}
.ws5e{word-spacing:3.813333pt;}
.ws14{word-spacing:3.840000pt;}
.ws2f{word-spacing:3.872000pt;}
.ws82{word-spacing:3.893333pt;}
.ws51{word-spacing:3.930667pt;}
.ws7a{word-spacing:3.989333pt;}
.ws24{word-spacing:4.048000pt;}
.ws40{word-spacing:4.053333pt;}
.ws61{word-spacing:4.106667pt;}
.wsb{word-spacing:4.128000pt;}
.ws57{word-spacing:4.165333pt;}
.ws7b{word-spacing:4.224000pt;}
.wsc0{word-spacing:4.266667pt;}
.ws9{word-spacing:4.272000pt;}
.wsc3{word-spacing:4.282667pt;}
.wsa1{word-spacing:4.341333pt;}
.ws3c{word-spacing:4.373333pt;}
.ws63{word-spacing:4.400000pt;}
.ws89{word-spacing:4.458667pt;}
.ws7{word-spacing:4.512000pt;}
.ws1e{word-spacing:4.517333pt;}
.wsa3{word-spacing:4.533333pt;}
.ws15{word-spacing:4.560000pt;}
.ws85{word-spacing:4.576000pt;}
.wsa9{word-spacing:4.586667pt;}
.ws2a{word-spacing:4.634667pt;}
.ws78{word-spacing:4.693333pt;}
.wsa0{word-spacing:4.746667pt;}
.ws8d{word-spacing:4.752000pt;}
.ws6f{word-spacing:4.800000pt;}
.wsc4{word-spacing:4.810667pt;}
.ws7e{word-spacing:4.853333pt;}
.ws96{word-spacing:4.869333pt;}
.wsb7{word-spacing:4.928000pt;}
.ws26{word-spacing:4.986667pt;}
.wsa{word-spacing:5.040000pt;}
.ws74{word-spacing:5.045333pt;}
.ws7f{word-spacing:5.066667pt;}
.wsbd{word-spacing:5.104000pt;}
.ws91{word-spacing:5.162667pt;}
.wsab{word-spacing:5.173333pt;}
.ws94{word-spacing:5.221333pt;}
.ws54{word-spacing:5.280000pt;}
.ws1f{word-spacing:5.338667pt;}
.ws3f{word-spacing:5.386667pt;}
.wsc2{word-spacing:5.397333pt;}
.ws72{word-spacing:5.456000pt;}
.ws43{word-spacing:5.493333pt;}
.ws41{word-spacing:5.546667pt;}
.ws2b{word-spacing:5.573333pt;}
.ws45{word-spacing:5.600000pt;}
.ws9b{word-spacing:5.632000pt;}
.ws99{word-spacing:5.690667pt;}
.ws79{word-spacing:5.749333pt;}
.ws90{word-spacing:5.808000pt;}
.ws6c{word-spacing:5.866667pt;}
.ws6b{word-spacing:5.925333pt;}
.ws23{word-spacing:6.042667pt;}
.wsc9{word-spacing:6.101333pt;}
.ws1d{word-spacing:6.160000pt;}
.ws60{word-spacing:6.218667pt;}
.ws5{word-spacing:9.472000pt;}
.ws1b{word-spacing:11.333333pt;}
.ws6{word-spacing:11.861333pt;}
.wsbb{word-spacing:24.448000pt;}
.ws1c{word-spacing:75.296000pt;}
._2{margin-left:-21.333333pt;}
._3{margin-left:-20.172800pt;}
._d{margin-left:-18.597333pt;}
._4{margin-left:-15.680000pt;}
._10{margin-left:-14.784000pt;}
._c{margin-left:-13.845333pt;}
._6{margin-left:-1.340800pt;}
._9{width:0.909333pt;}
._f{width:6.570667pt;}
._5{width:8.688000pt;}
._1{width:9.813333pt;}
._0{width:11.861333pt;}
._a{width:18.656000pt;}
._e{width:24.448000pt;}
._7{width:44.112000pt;}
._b{width:45.648000pt;}
._8{width:75.296000pt;}
.fsb{font-size:31.200000pt;}
.fsa{font-size:38.133333pt;}
.fs2{font-size:42.666667pt;}
.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;}
.fsc{font-size:64.000000pt;}
.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;}
.y65{bottom:122.845067pt;}
.y120{bottom:123.189733pt;}
.y1b7{bottom:123.749200pt;}
.y243{bottom:123.910000pt;}
.y161{bottom:124.065333pt;}
.y147{bottom:124.113200pt;}
.y1da{bottom:124.176267pt;}
.y108{bottom:124.525067pt;}
.ya2{bottom:124.529200pt;}
.y79{bottom:124.590133pt;}
.y20e{bottom:124.623333pt;}
.yee{bottom:124.626000pt;}
.y9{bottom:124.725733pt;}
.y225{bottom:124.868000pt;}
.y191{bottom:127.027200pt;}
.y1f8{bottom:131.798000pt;}
.y8{bottom:136.096400pt;}
.y64{bottom:137.053067pt;}
.y160{bottom:139.705333pt;}
.y78{bottom:140.230133pt;}
.y20d{bottom:140.263333pt;}
.y11f{bottom:141.669733pt;}
.y1b6{bottom:142.229200pt;}
.y146{bottom:142.593200pt;}
.y1d9{bottom:142.656267pt;}
.y190{bottom:142.667200pt;}
.y107{bottom:143.005067pt;}
.ya1{bottom:143.009200pt;}
.yed{bottom:143.106000pt;}
.y224{bottom:143.348000pt;}
.y1f7{bottom:150.278000pt;}
.y63{bottom:151.261067pt;}
.y242{bottom:151.630000pt;}
.y7{bottom:153.128267pt;}
.y15f{bottom:155.345333pt;}
.y77{bottom:155.870133pt;}
.y20c{bottom:155.903333pt;}
.y18f{bottom:158.307200pt;}
.y11e{bottom:160.149733pt;}
.y145{bottom:161.073200pt;}
.y1d8{bottom:161.136267pt;}
.y106{bottom:161.485067pt;}
.ya0{bottom:161.489200pt;}
.yec{bottom:161.586000pt;}
.y223{bottom:161.828000pt;}
.y62{bottom:165.469067pt;}
.y1f6{bottom:168.758000pt;}
.y241{bottom:170.110000pt;}
.y6{bottom:170.173600pt;}
.y76{bottom:171.510133pt;}
.y20b{bottom:171.543333pt;}
.y18e{bottom:173.947200pt;}
.y11d{bottom:178.629733pt;}
.y15e{bottom:178.812000pt;}
.y144{bottom:179.553200pt;}
.y1d7{bottom:179.616267pt;}
.y105{bottom:179.965067pt;}
.y9f{bottom:179.969200pt;}
.yeb{bottom:180.066000pt;}
.y1b5{bottom:181.284267pt;}
.y61{bottom:183.277067pt;}
.y75{bottom:187.150133pt;}
.y20a{bottom:187.183333pt;}
.y5{bottom:187.218933pt;}
.y1f5{bottom:187.238000pt;}
.y222{bottom:189.548000pt;}
.y18d{bottom:189.587200pt;}
.y11c{bottom:197.109733pt;}
.y240{bottom:197.830000pt;}
.y143{bottom:198.033200pt;}
.y104{bottom:198.445067pt;}
.y9e{bottom:198.449200pt;}
.yea{bottom:198.546000pt;}
.y4{bottom:198.589600pt;}
.y15d{bottom:202.278667pt;}
.y74{bottom:202.790133pt;}
.y209{bottom:202.823333pt;}
.y18c{bottom:205.227200pt;}
.y1f4{bottom:205.718000pt;}
.y221{bottom:208.028000pt;}
.y11b{bottom:215.589733pt;}
.y3{bottom:215.634933pt;}
.y142{bottom:216.513200pt;}
.y103{bottom:216.925067pt;}
.y9d{bottom:216.929200pt;}
.ye9{bottom:217.026000pt;}
.y15c{bottom:217.918667pt;}
.y73{bottom:218.430133pt;}
.y208{bottom:218.463333pt;}
.y1d6{bottom:220.560933pt;}
.y18b{bottom:220.867200pt;}
.y1f3{bottom:224.198000pt;}
.y23f{bottom:225.550000pt;}
.y220{bottom:226.508000pt;}
.y2{bottom:227.005600pt;}
.y15b{bottom:233.558667pt;}
.y11a{bottom:234.069733pt;}
.y72{bottom:234.070133pt;}
.y207{bottom:234.103333pt;}
.yca{bottom:234.290533pt;}
.y141{bottom:234.993200pt;}
.y102{bottom:235.405067pt;}
.y9c{bottom:235.409200pt;}
.ye8{bottom:235.506000pt;}
.y18a{bottom:236.507200pt;}
.y1f2{bottom:242.678000pt;}
.y23e{bottom:244.030000pt;}
.y21f{bottom:244.988000pt;}
.y71{bottom:249.710133pt;}
.y206{bottom:249.743333pt;}
.y189{bottom:252.147200pt;}
.y119{bottom:252.549733pt;}
.yc9{bottom:252.770533pt;}
.y1b4{bottom:253.069733pt;}
.y140{bottom:253.473200pt;}
.y101{bottom:253.885067pt;}
.y9b{bottom:253.889200pt;}
.ye7{bottom:253.986000pt;}
.y15a{bottom:257.025333pt;}
.y1f1{bottom:261.158000pt;}
.y21e{bottom:263.468000pt;}
.y60{bottom:265.207200pt;}
.y70{bottom:265.350133pt;}
.y205{bottom:265.383333pt;}
.y188{bottom:267.787200pt;}
.y118{bottom:271.029733pt;}
.yc8{bottom:271.250533pt;}
.y1b3{bottom:271.549733pt;}
.y23d{bottom:271.750000pt;}
.y13f{bottom:271.953200pt;}
.ye6{bottom:272.466000pt;}
.y1f0{bottom:279.638000pt;}
.y159{bottom:280.492000pt;}
.y6f{bottom:280.990133pt;}
.y100{bottom:281.605067pt;}
.y21d{bottom:281.948000pt;}
.y187{bottom:283.427200pt;}
.y5f{bottom:283.687200pt;}
.y117{bottom:289.509733pt;}
.y1d5{bottom:289.723867pt;}
.yc7{bottom:289.730533pt;}
.y1b2{bottom:290.029733pt;}
.y23c{bottom:290.230000pt;}
.ye5{bottom:290.946000pt;}
.y158{bottom:296.132000pt;}
.y6e{bottom:296.630133pt;}
.y9a{bottom:296.723733pt;}
.y1ef{bottom:298.118000pt;}
.y186{bottom:299.067200pt;}
.y204{bottom:299.483333pt;}
.y13e{bottom:299.673200pt;}
.yff{bottom:300.085067pt;}
.y21c{bottom:300.428000pt;}
.y5e{bottom:302.167200pt;}
.y116{bottom:307.989733pt;}
.y1d4{bottom:308.203867pt;}
.yc6{bottom:308.210533pt;}
.y1b1{bottom:308.509733pt;}
.y23b{bottom:308.710000pt;}
.ye4{bottom:309.426000pt;}
.y6d{bottom:312.270133pt;}
.y185{bottom:314.707200pt;}
.y1ee{bottom:316.598000pt;}
.y203{bottom:317.963333pt;}
.y13d{bottom:318.153200pt;}
.yfe{bottom:318.565067pt;}
.y157{bottom:319.598667pt;}
.y5d{bottom:320.647200pt;}
.y2d{bottom:323.018933pt;}
.y3a{bottom:323.054933pt;}
.y115{bottom:326.469733pt;}
.y1d3{bottom:326.683867pt;}
.yc5{bottom:326.690533pt;}
.y1b0{bottom:326.989733pt;}
.ye3{bottom:327.906000pt;}
.y6c{bottom:327.910133pt;}
.y21b{bottom:328.148000pt;}
.y1ed{bottom:335.078000pt;}
.y23a{bottom:336.430000pt;}
.y202{bottom:336.443333pt;}
.y13c{bottom:336.633200pt;}
.yfd{bottom:337.045067pt;}
.y2c{bottom:337.226933pt;}
.y39{bottom:337.262933pt;}
.y5c{bottom:339.127200pt;}
.y156{bottom:343.065333pt;}
.y1d2{bottom:345.163867pt;}
.yc4{bottom:345.170533pt;}
.y1af{bottom:345.469733pt;}
.y21a{bottom:346.628000pt;}
.y2b{bottom:351.434933pt;}
.y38{bottom:351.470933pt;}
.y184{bottom:352.562533pt;}
.y114{bottom:354.189733pt;}
.y239{bottom:354.910000pt;}
.y201{bottom:354.923333pt;}
.y13b{bottom:355.113200pt;}
.yfc{bottom:355.525067pt;}
.ye2{bottom:355.626000pt;}
.y5b{bottom:357.607200pt;}
.y1d1{bottom:363.643867pt;}
.yc3{bottom:363.650533pt;}
.y1ae{bottom:363.949733pt;}
.y219{bottom:365.108000pt;}
.y2a{bottom:365.642933pt;}
.y37{bottom:365.678933pt;}
.y183{bottom:371.042533pt;}
.y113{bottom:372.669733pt;}
.y200{bottom:373.403333pt;}
.y13a{bottom:373.593200pt;}
.yfb{bottom:374.005067pt;}
.y6b{bottom:374.051333pt;}
.ye1{bottom:374.106000pt;}
.y5a{bottom:376.087200pt;}
.y155{bottom:377.173333pt;}
.y29{bottom:379.850933pt;}
.y36{bottom:379.886933pt;}
.y99{bottom:382.122533pt;}
.y1d0{bottom:382.123867pt;}
.yc2{bottom:382.130533pt;}
.y1ad{bottom:382.429733pt;}
.y238{bottom:382.630000pt;}
.y218{bottom:383.588000pt;}
.y182{bottom:389.522533pt;}
.y112{bottom:391.149733pt;}
.y1ff{bottom:391.883333pt;}
.y139{bottom:392.073200pt;}
.yfa{bottom:392.485067pt;}
.ye0{bottom:392.586000pt;}
.y6a{bottom:393.469333pt;}
.y35{bottom:394.094933pt;}
.y59{bottom:394.567200pt;}
.y154{bottom:395.653333pt;}
.y98{bottom:400.602533pt;}
.y1cf{bottom:400.603867pt;}
.yc1{bottom:400.610533pt;}
.y1ac{bottom:400.909733pt;}
.y237{bottom:401.110000pt;}
.y28{bottom:401.162933pt;}
.y217{bottom:402.068000pt;}
.y1ec{bottom:405.463867pt;}
.y181{bottom:408.002533pt;}
.y34{bottom:408.302933pt;}
.y111{bottom:409.629733pt;}
.y1fe{bottom:410.363333pt;}
.y138{bottom:410.553200pt;}
.yf9{bottom:410.965067pt;}
.ydf{bottom:411.066000pt;}
.y58{bottom:413.047200pt;}
.y153{bottom:414.133333pt;}
.y97{bottom:419.082533pt;}
.y1ce{bottom:419.083867pt;}
.yc0{bottom:419.090533pt;}
.y1ab{bottom:419.389733pt;}
.y216{bottom:420.548000pt;}
.y33{bottom:422.510933pt;}
.y1eb{bottom:424.881867pt;}
.y180{bottom:426.482533pt;}
.y110{bottom:428.109733pt;}
.y24c{bottom:428.322533pt;}
.y236{bottom:428.830000pt;}
.y1fd{bottom:428.843333pt;}
.y137{bottom:429.033200pt;}
.yde{bottom:429.546000pt;}
.y57{bottom:431.527200pt;}
.y152{bottom:432.613333pt;}
.y32{bottom:436.718933pt;}
.y96{bottom:437.562533pt;}
.y1cd{bottom:437.563867pt;}
.ybf{bottom:437.570533pt;}
.y215{bottom:439.028000pt;}
.y17f{bottom:444.962533pt;}
.y10f{bottom:446.589733pt;}
.y24b{bottom:446.802533pt;}
.y1aa{bottom:447.109733pt;}
.y136{bottom:447.513200pt;}
.ydd{bottom:448.026000pt;}
.y31{bottom:450.926933pt;}
.y151{bottom:451.093333pt;}
.y1ea{bottom:451.853200pt;}
.y95{bottom:456.042533pt;}
.y1cc{bottom:456.043867pt;}
.ybe{bottom:456.050533pt;}
.y235{bottom:456.550000pt;}
.y214{bottom:457.508000pt;}
.y56{bottom:459.247200pt;}
.yf8{bottom:459.478267pt;}
.y17e{bottom:463.442533pt;}
.y10e{bottom:465.069733pt;}
.y30{bottom:465.134933pt;}
.y24a{bottom:465.282533pt;}
.y1a9{bottom:465.589733pt;}
.y135{bottom:465.993200pt;}
.ydc{bottom:466.506000pt;}
.y94{bottom:474.522533pt;}
.y234{bottom:475.030000pt;}
.yf7{bottom:475.118267pt;}
.y213{bottom:475.988000pt;}
.y55{bottom:477.727200pt;}
.y2f{bottom:479.342933pt;}
.y17d{bottom:481.922533pt;}
.y10d{bottom:483.549733pt;}
.y1cb{bottom:483.763867pt;}
.ybd{bottom:483.770533pt;}
.y1a8{bottom:484.069733pt;}
.y1fc{bottom:484.109200pt;}
.y134{bottom:484.473200pt;}
.ydb{bottom:484.986000pt;}
.yf6{bottom:490.758267pt;}
.y93{bottom:493.002533pt;}
.y2e{bottom:493.550933pt;}
.y150{bottom:493.935867pt;}
.y212{bottom:494.468000pt;}
.y54{bottom:496.207200pt;}
.y1fb{bottom:499.752533pt;}
.y17c{bottom:500.402533pt;}
.y10c{bottom:502.029733pt;}
.y1ca{bottom:502.243867pt;}
.ybc{bottom:502.250533pt;}
.y1a7{bottom:502.549733pt;}
.y233{bottom:502.750000pt;}
.yda{bottom:503.466000pt;}
.yf5{bottom:506.398267pt;}
.y14f{bottom:509.575867pt;}
.y92{bottom:511.482533pt;}
.y133{bottom:512.193200pt;}
.y211{bottom:512.948000pt;}
.y53{bottom:514.687200pt;}
.y1fa{bottom:519.170533pt;}
.y10b{bottom:520.509733pt;}
.y1c9{bottom:520.723867pt;}
.ybb{bottom:520.730533pt;}
.y1a6{bottom:521.029733pt;}
.y232{bottom:521.230000pt;}
.yd9{bottom:521.946000pt;}
.yf4{bottom:522.038267pt;}
.y14e{bottom:525.215867pt;}
.y17b{bottom:528.122533pt;}
.y91{bottom:529.962533pt;}
.y132{bottom:530.673200pt;}
.y210{bottom:531.428000pt;}
.y1a{bottom:532.970933pt;}
.y27{bottom:533.006933pt;}
.y52{bottom:533.167200pt;}
.yf3{bottom:537.678267pt;}
.y249{bottom:539.202533pt;}
.y1c8{bottom:539.203867pt;}
.yba{bottom:539.210533pt;}
.y1a5{bottom:539.509733pt;}
.y14d{bottom:540.855867pt;}
.y1f9{bottom:546.141733pt;}
.y17a{bottom:546.602533pt;}
.y19{bottom:547.178933pt;}
.y26{bottom:547.214933pt;}
.y90{bottom:548.442533pt;}
.y231{bottom:548.950000pt;}
.y131{bottom:549.153200pt;}
.y51{bottom:551.647200pt;}
.yf2{bottom:553.318267pt;}
.y14c{bottom:556.495867pt;}
.y248{bottom:557.682533pt;}
.y1c7{bottom:557.683867pt;}
.yb9{bottom:557.690533pt;}
.y1a4{bottom:557.989733pt;}
.yd8{bottom:558.904133pt;}
.y18{bottom:561.386933pt;}
.y25{bottom:561.422933pt;}
.y10a{bottom:561.454400pt;}
.y179{bottom:565.082533pt;}
.y230{bottom:567.430000pt;}
.y130{bottom:567.633200pt;}
.yf1{bottom:568.958267pt;}
.y50{bottom:570.127200pt;}
.y14b{bottom:572.135867pt;}
.y20f{bottom:572.372667pt;}
.yd7{bottom:574.544133pt;}
.y17{bottom:575.594933pt;}
.y24{bottom:575.630933pt;}
.y8f{bottom:576.162533pt;}
.y1c6{bottom:576.163867pt;}
.yb8{bottom:576.170533pt;}
.y1a3{bottom:576.469733pt;}
.y178{bottom:583.562533pt;}
.y247{bottom:585.402533pt;}
.y22f{bottom:585.910000pt;}
.y12f{bottom:586.113200pt;}
.y14a{bottom:587.775867pt;}
.y16{bottom:589.802933pt;}
.y23{bottom:589.838933pt;}
.yd6{bottom:590.184133pt;}
.y8e{bottom:594.642533pt;}
.y1c5{bottom:594.643867pt;}
.yb7{bottom:594.650533pt;}
.y1a2{bottom:594.949733pt;}
.y4f{bottom:597.847200pt;}
.y177{bottom:602.042533pt;}
.y246{bottom:603.882533pt;}
.y15{bottom:604.010933pt;}
.y22{bottom:604.046933pt;}
.y12e{bottom:604.593200pt;}
.y8d{bottom:613.122533pt;}
.yb6{bottom:613.130533pt;}
.y1a1{bottom:613.429733pt;}
.y22e{bottom:613.630000pt;}
.yf0{bottom:615.099467pt;}
.y4e{bottom:616.327200pt;}
.y21{bottom:618.254933pt;}
.y176{bottom:620.522533pt;}
.yd5{bottom:622.362533pt;}
.y1c4{bottom:622.363867pt;}
.y12d{bottom:623.073200pt;}
.y14{bottom:625.322933pt;}
.y8c{bottom:631.602533pt;}
.yb5{bottom:631.610533pt;}
.y1a0{bottom:631.909733pt;}
.y22d{bottom:632.110000pt;}
.y20{bottom:632.462933pt;}
.y149{bottom:633.917067pt;}
.yef{bottom:634.517467pt;}
.y4d{bottom:634.807200pt;}
.y175{bottom:639.002533pt;}
.yd4{bottom:640.842533pt;}
.y1c3{bottom:640.843867pt;}
.y1f{bottom:646.670933pt;}
.y8b{bottom:650.082533pt;}
.y19f{bottom:650.389733pt;}
.y4c{bottom:653.287200pt;}
.y148{bottom:653.335067pt;}
.y174{bottom:657.482533pt;}
.yd3{bottom:659.322533pt;}
.y1c2{bottom:659.323867pt;}
.yb4{bottom:659.330533pt;}
.y22c{bottom:659.830000pt;}
.y1e{bottom:660.878933pt;}
.y12c{bottom:664.017867pt;}
.y1e9{bottom:664.367867pt;}
.y8a{bottom:668.562533pt;}
.y19e{bottom:668.869733pt;}
.y4b{bottom:671.767200pt;}
.y1d{bottom:675.086933pt;}
.yd2{bottom:677.802533pt;}
.y1c1{bottom:677.803867pt;}
.yb3{bottom:677.810533pt;}
.y22b{bottom:678.310000pt;}
.y1e8{bottom:682.847867pt;}
.y89{bottom:687.042533pt;}
.y19d{bottom:687.349733pt;}
.y1c{bottom:689.294933pt;}
.y4a{bottom:690.247200pt;}
.yd1{bottom:696.282533pt;}
.y1c0{bottom:696.283867pt;}
.yb2{bottom:696.290533pt;}
.y1e7{bottom:701.327867pt;}
.y173{bottom:702.215867pt;}
.y1b{bottom:703.502933pt;}
.y19c{bottom:705.829733pt;}
.y22a{bottom:706.030000pt;}
.y49{bottom:708.727200pt;}
.y88{bottom:714.762533pt;}
.y1bf{bottom:714.763867pt;}
.yb1{bottom:714.770533pt;}
.y172{bottom:717.855867pt;}
.y1e6{bottom:719.807867pt;}
.y19b{bottom:724.309733pt;}
.y229{bottom:724.510000pt;}
.y48{bottom:727.207200pt;}
.y87{bottom:733.242533pt;}
.y12b{bottom:733.243867pt;}
.yb0{bottom:733.250533pt;}
.y171{bottom:733.495867pt;}
.y1e5{bottom:738.287867pt;}
.y19a{bottom:742.789733pt;}
.y47{bottom:745.687200pt;}
.y170{bottom:749.135867pt;}
.y86{bottom:751.722533pt;}
.y12a{bottom:751.723867pt;}
.yaf{bottom:751.730533pt;}
.y228{bottom:752.230000pt;}
.y1e4{bottom:756.767867pt;}
.yd0{bottom:760.962533pt;}
.y199{bottom:761.269733pt;}
.y16f{bottom:764.775867pt;}
.y85{bottom:770.202533pt;}
.y129{bottom:770.203867pt;}
.yae{bottom:770.210533pt;}
.y227{bottom:770.710000pt;}
.y46{bottom:773.407200pt;}
.y1e3{bottom:775.247867pt;}
.ycf{bottom:779.442533pt;}
.y16e{bottom:780.415867pt;}
.y84{bottom:788.682533pt;}
.y128{bottom:788.683867pt;}
.yad{bottom:788.690533pt;}
.y198{bottom:788.989733pt;}
.y45{bottom:791.887200pt;}
.y1e2{bottom:793.727867pt;}
.y16d{bottom:796.055867pt;}
.yce{bottom:797.922533pt;}
.y1be{bottom:797.923867pt;}
.y13{bottom:798.152400pt;}
.y83{bottom:807.162533pt;}
.y127{bottom:807.163867pt;}
.yac{bottom:807.170533pt;}
.y197{bottom:807.469733pt;}
.y44{bottom:810.367200pt;}
.y226{bottom:811.654800pt;}
.y16c{bottom:811.695867pt;}
.y1e1{bottom:812.207867pt;}
.ycd{bottom:816.402533pt;}
.y1bd{bottom:816.403867pt;}
.y12{bottom:816.621467pt;}
.y82{bottom:825.642533pt;}
.y126{bottom:825.643867pt;}
.yab{bottom:825.650533pt;}
.y196{bottom:825.949733pt;}
.y16b{bottom:827.335867pt;}
.y43{bottom:828.847200pt;}
.ycc{bottom:834.882533pt;}
.y1bc{bottom:834.883867pt;}
.y1e0{bottom:842.025200pt;}
.y16a{bottom:842.975867pt;}
.y81{bottom:844.122533pt;}
.y125{bottom:844.123867pt;}
.yaa{bottom:844.130533pt;}
.y195{bottom:844.429733pt;}
.y42{bottom:847.327200pt;}
.ycb{bottom:853.362533pt;}
.y1bb{bottom:853.363867pt;}
.y11{bottom:856.082800pt;}
.y169{bottom:858.615867pt;}
.y1df{bottom:860.505200pt;}
.y109{bottom:862.602533pt;}
.y124{bottom:862.603867pt;}
.ya9{bottom:862.610533pt;}
.y194{bottom:862.909733pt;}
.y41{bottom:865.807200pt;}
.y80{bottom:871.842533pt;}
.y1ba{bottom:871.843867pt;}
.y168{bottom:874.255867pt;}
.y10{bottom:878.482800pt;}
.y1de{bottom:878.985200pt;}
.y123{bottom:881.083867pt;}
.ya8{bottom:881.090533pt;}
.y193{bottom:881.389733pt;}
.y40{bottom:884.287200pt;}
.y167{bottom:889.895867pt;}
.y7f{bottom:890.322533pt;}
.y1b9{bottom:890.323867pt;}
.y69{bottom:897.059733pt;}
.y1dd{bottom:897.465200pt;}
.y122{bottom:899.563867pt;}
.ya7{bottom:899.570533pt;}
.y192{bottom:899.869733pt;}
.y3f{bottom:902.767200pt;}
.y7e{bottom:908.802533pt;}
.y1b8{bottom:908.803867pt;}
.y68{bottom:912.699733pt;}
.y166{bottom:913.362533pt;}
.y1dc{bottom:915.945200pt;}
.yf{bottom:917.936000pt;}
.y121{bottom:918.043867pt;}
.y3e{bottom:921.244533pt;}
.y7d{bottom:927.282533pt;}
.ya6{bottom:927.283867pt;}
.y67{bottom:928.339733pt;}
.y1db{bottom:934.425200pt;}
.y245{bottom:936.522533pt;}
.y165{bottom:936.829200pt;}
.y3d{bottom:939.724533pt;}
.y66{bottom:943.979733pt;}
.y7c{bottom:945.762533pt;}
.ya5{bottom:945.763867pt;}
.ye{bottom:946.736000pt;}
.y164{bottom:952.469200pt;}
.y244{bottom:955.002533pt;}
.y7b{bottom:964.242533pt;}
.ya4{bottom:964.243867pt;}
.y163{bottom:968.109200pt;}
.yd{bottom:975.536000pt;}
.y3c{bottom:980.669333pt;}
.y7a{bottom:982.722533pt;}
.ya3{bottom:982.723867pt;}
.y162{bottom:983.749200pt;}
.yc{bottom:1033.547067pt;}
.y3b{bottom:1041.982133pt;}
.yb{bottom:1061.227067pt;}
.ya{bottom:1073.227067pt;}
.hf{height:24.804000pt;}
.h4{height:31.402667pt;}
.h3{height:31.701333pt;}
.hb{height:36.040000pt;}
.ha{height:38.160000pt;}
.h11{height:40.280000pt;}
.h2{height:40.304688pt;}
.h8{height:42.400000pt;}
.h9{height:45.312000pt;}
.hd{height:46.640000pt;}
.h10{height:47.829333pt;}
.he{height:47.926667pt;}
.h12{height:47.942667pt;}
.h6{height:57.344000pt;}
.h7{height:59.360000pt;}
.h13{height:60.416000pt;}
.hc{height:65.450667pt;}
.h5{height:69.888000pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:75.590533pt;}
.x11{left:77.316000pt;}
.xd{left:83.316267pt;}
.x10{left:94.492933pt;}
.x15{left:96.214800pt;}
.x2{left:98.267867pt;}
.x1a{left:114.457067pt;}
.x23{left:120.939867pt;}
.x22{left:122.665333pt;}
.x3{left:129.062800pt;}
.x4{left:134.396133pt;}
.x16{left:136.062933pt;}
.x12{left:137.788400pt;}
.xa{left:161.546800pt;}
.x1e{left:168.608267pt;}
.x19{left:201.109733pt;}
.xe{left:215.604267pt;}
.x1f{left:224.012267pt;}
.x1d{left:231.181600pt;}
.x18{left:238.348267pt;}
.x14{left:250.903733pt;}
.x7{left:327.047467pt;}
.x17{left:367.408933pt;}
.x13{left:369.134400pt;}
.x8{left:390.047467pt;}
.xb{left:411.213467pt;}
.x1c{left:447.058400pt;}
.x21{left:498.815600pt;}
.x6{left:529.041467pt;}
.x1b{left:533.711067pt;}
.xf{left:536.088000pt;}
.x20{left:563.782933pt;}
.xc{left:566.885467pt;}
.x9{left:581.024133pt;}
.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; }
  