
    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_ac70d94756282a3cafa8d5d1.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_0fceb38010fe1e7daea2c57a.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_ea4f434f6353e36097965419.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.964000;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_97c9c08661bb43b4e8370ee1.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_6ec77b4dfc695f6478194e82.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_de5fc843b2c49a01d71875d8.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.141000;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_60a4afdc1f5f789997cbc43b.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_96a8d63e004a08e9f76401bb.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.174000;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_37062ff7a88e2ac6ca5d5dca.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.145067;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_ddfb73c678a0345a4537b98e.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.725000;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_cb8eb479d62a5c1222757206.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;}
.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:19.877400px;}
.ls37{letter-spacing:-0.330000px;}
.ls3c{letter-spacing:-0.264000px;}
.ls38{letter-spacing:-0.066000px;}
.lsa{letter-spacing:0.000000px;}
.ls2b{letter-spacing:0.033000px;}
.ls32{letter-spacing:0.047400px;}
.ls1{letter-spacing:0.054000px;}
.lse{letter-spacing:0.060000px;}
.lsc{letter-spacing:0.066000px;}
.ls2{letter-spacing:0.108000px;}
.ls25{letter-spacing:0.120000px;}
.ls10{letter-spacing:0.132000px;}
.ls26{letter-spacing:0.135000px;}
.ls41{letter-spacing:0.150000px;}
.ls4{letter-spacing:0.162000px;}
.ls5{letter-spacing:0.170100px;}
.ls1c{letter-spacing:0.180000px;}
.ls2e{letter-spacing:0.198000px;}
.ls8{letter-spacing:0.216000px;}
.ls31{letter-spacing:0.231000px;}
.ls1d{letter-spacing:0.264000px;}
.ls9{letter-spacing:0.270000px;}
.ls7{letter-spacing:0.297000px;}
.lsd{letter-spacing:0.300000px;}
.ls1b{letter-spacing:0.330000px;}
.ls3d{letter-spacing:0.363000px;}
.ls3{letter-spacing:0.378000px;}
.ls15{letter-spacing:0.396000px;}
.ls3a{letter-spacing:0.420000px;}
.ls11{letter-spacing:0.429000px;}
.ls40{letter-spacing:0.450000px;}
.ls2a{letter-spacing:0.462000px;}
.ls3b{letter-spacing:0.480000px;}
.ls30{letter-spacing:0.510000px;}
.ls14{letter-spacing:0.528000px;}
.ls21{letter-spacing:0.570000px;}
.ls28{letter-spacing:0.594000px;}
.ls33{letter-spacing:0.600000px;}
.ls19{letter-spacing:0.660000px;}
.ls6{letter-spacing:0.675000px;}
.ls20{letter-spacing:0.693000px;}
.ls1f{letter-spacing:0.726000px;}
.ls43{letter-spacing:0.759000px;}
.ls23{letter-spacing:0.780000px;}
.ls12{letter-spacing:0.792000px;}
.ls22{letter-spacing:0.858000px;}
.ls3e{letter-spacing:0.864000px;}
.ls44{letter-spacing:0.924000px;}
.ls36{letter-spacing:0.957000px;}
.lsf{letter-spacing:0.960000px;}
.ls29{letter-spacing:0.990000px;}
.ls18{letter-spacing:1.056000px;}
.ls2c{letter-spacing:1.080000px;}
.ls13{letter-spacing:1.122000px;}
.ls34{letter-spacing:1.140000px;}
.ls27{letter-spacing:1.200000px;}
.ls1a{letter-spacing:1.254000px;}
.ls24{letter-spacing:1.260000px;}
.ls2d{letter-spacing:1.320000px;}
.ls1e{letter-spacing:1.380000px;}
.ls2f{letter-spacing:1.452000px;}
.ls17{letter-spacing:1.485000px;}
.ls42{letter-spacing:1.584000px;}
.ls3f{letter-spacing:1.782000px;}
.ls39{letter-spacing:2038.568400px;}
.ls16{letter-spacing:2071.568400px;}
.ls35{letter-spacing:2134.018800px;}
.lsb{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;}
.ws22{word-spacing:-16.500000px;}
.ws40{word-spacing:-15.345000px;}
.ws9b{word-spacing:-14.718000px;}
.ws86{word-spacing:-13.926000px;}
.ws87{word-spacing:-13.893000px;}
.ws88{word-spacing:-13.860000px;}
.ws3f{word-spacing:-12.750000px;}
.ws2{word-spacing:-11.448000px;}
.ws6b{word-spacing:-9.009000px;}
.ws6c{word-spacing:-7.371000px;}
.wsc2{word-spacing:-1.782000px;}
.wsd1{word-spacing:-0.990000px;}
.ws35{word-spacing:-0.960000px;}
.ws73{word-spacing:-0.858000px;}
.ws7c{word-spacing:-0.792000px;}
.ws8f{word-spacing:-0.396000px;}
.ws68{word-spacing:-0.330000px;}
.ws32{word-spacing:-0.300000px;}
.ws3b{word-spacing:-0.264000px;}
.ws15{word-spacing:-0.216000px;}
.ws3{word-spacing:-0.210600px;}
.wsb7{word-spacing:-0.198000px;}
.ws85{word-spacing:-0.162000px;}
.wsc{word-spacing:-0.108000px;}
.ws42{word-spacing:-0.066000px;}
.ws34{word-spacing:-0.060000px;}
.wsa{word-spacing:-0.054000px;}
.ws41{word-spacing:-0.049500px;}
.ws4{word-spacing:-0.040500px;}
.ws5{word-spacing:0.000000px;}
.wsc0{word-spacing:0.054000px;}
.ws69{word-spacing:0.060000px;}
.ws5d{word-spacing:0.066000px;}
.wsbe{word-spacing:0.108000px;}
.ws47{word-spacing:0.132000px;}
.ws8e{word-spacing:0.198000px;}
.wsc3{word-spacing:0.240000px;}
.ws74{word-spacing:0.264000px;}
.ws19{word-spacing:0.270000px;}
.wsd2{word-spacing:0.324000px;}
.ws45{word-spacing:0.330000px;}
.wsa4{word-spacing:0.378000px;}
.wsb4{word-spacing:0.396000px;}
.ws58{word-spacing:0.462000px;}
.ws7a{word-spacing:0.480000px;}
.wsa9{word-spacing:0.528000px;}
.ws1d{word-spacing:0.594000px;}
.ws62{word-spacing:0.600000px;}
.wsd0{word-spacing:0.648000px;}
.ws37{word-spacing:0.660000px;}
.ws8c{word-spacing:0.720000px;}
.ws5e{word-spacing:0.726000px;}
.ws20{word-spacing:0.756000px;}
.wsc4{word-spacing:0.780000px;}
.ws49{word-spacing:0.792000px;}
.wsba{word-spacing:0.840000px;}
.ws39{word-spacing:0.858000px;}
.wsd4{word-spacing:0.924000px;}
.ws4d{word-spacing:0.990000px;}
.ws64{word-spacing:1.056000px;}
.ws12{word-spacing:1.080000px;}
.ws90{word-spacing:1.122000px;}
.ws84{word-spacing:1.188000px;}
.wsbb{word-spacing:1.200000px;}
.wsd3{word-spacing:1.242000px;}
.ws25{word-spacing:1.254000px;}
.ws3e{word-spacing:1.320000px;}
.wsb0{word-spacing:1.386000px;}
.ws2c{word-spacing:1.452000px;}
.ws10{word-spacing:1.458000px;}
.ws60{word-spacing:1.500000px;}
.ws70{word-spacing:1.518000px;}
.ws46{word-spacing:1.584000px;}
.ws14{word-spacing:1.620000px;}
.wsb1{word-spacing:1.650000px;}
.wscc{word-spacing:1.674000px;}
.ws92{word-spacing:1.716000px;}
.ws11{word-spacing:1.728000px;}
.ws7d{word-spacing:1.782000px;}
.wscf{word-spacing:1.836000px;}
.wsad{word-spacing:1.848000px;}
.wsc9{word-spacing:1.860000px;}
.ws4c{word-spacing:1.914000px;}
.ws94{word-spacing:1.920000px;}
.ws5c{word-spacing:1.980000px;}
.ws9d{word-spacing:2.046000px;}
.ws7{word-spacing:2.064000px;}
.wsa2{word-spacing:2.106000px;}
.ws44{word-spacing:2.112000px;}
.ws54{word-spacing:2.178000px;}
.ws3c{word-spacing:2.244000px;}
.wsbf{word-spacing:2.268000px;}
.ws2a{word-spacing:2.310000px;}
.wsa1{word-spacing:2.322000px;}
.ws1a{word-spacing:2.376000px;}
.ws3d{word-spacing:2.442000px;}
.wsa7{word-spacing:2.508000px;}
.ws17{word-spacing:2.538000px;}
.ws30{word-spacing:2.574000px;}
.ws91{word-spacing:2.640000px;}
.ws80{word-spacing:2.700000px;}
.ws82{word-spacing:2.706000px;}
.ws48{word-spacing:2.772000px;}
.wsd{word-spacing:2.808000px;}
.ws7f{word-spacing:2.820000px;}
.ws59{word-spacing:2.838000px;}
.ws2d{word-spacing:2.904000px;}
.wsc5{word-spacing:2.940000px;}
.wsf{word-spacing:2.970000px;}
.wscb{word-spacing:3.000000px;}
.ws13{word-spacing:3.024000px;}
.wsab{word-spacing:3.036000px;}
.wsc8{word-spacing:3.060000px;}
.ws67{word-spacing:3.102000px;}
.ws99{word-spacing:3.120000px;}
.ws8a{word-spacing:3.168000px;}
.ws1f{word-spacing:3.186000px;}
.ws2e{word-spacing:3.234000px;}
.ws1c{word-spacing:3.240000px;}
.ws3a{word-spacing:3.300000px;}
.wsbc{word-spacing:3.366000px;}
.ws5b{word-spacing:3.432000px;}
.ws6{word-spacing:3.456000px;}
.ws79{word-spacing:3.480000px;}
.ws7e{word-spacing:3.498000px;}
.ws4e{word-spacing:3.564000px;}
.ws29{word-spacing:3.630000px;}
.ws16{word-spacing:3.672000px;}
.ws5a{word-spacing:3.696000px;}
.ws4a{word-spacing:3.762000px;}
.ws1e{word-spacing:3.780000px;}
.ws55{word-spacing:3.828000px;}
.wsce{word-spacing:3.834000px;}
.ws98{word-spacing:3.894000px;}
.ws65{word-spacing:3.900000px;}
.ws71{word-spacing:3.960000px;}
.ws72{word-spacing:4.026000px;}
.wsaa{word-spacing:4.092000px;}
.wsaf{word-spacing:4.158000px;}
.ws33{word-spacing:4.200000px;}
.ws56{word-spacing:4.224000px;}
.ws83{word-spacing:4.356000px;}
.wsca{word-spacing:4.380000px;}
.ws28{word-spacing:4.422000px;}
.ws76{word-spacing:4.428000px;}
.ws97{word-spacing:4.488000px;}
.wscd{word-spacing:4.536000px;}
.ws51{word-spacing:4.554000px;}
.ws61{word-spacing:4.560000px;}
.ws18{word-spacing:4.590000px;}
.ws66{word-spacing:4.620000px;}
.ws21{word-spacing:4.644000px;}
.wsb3{word-spacing:4.686000px;}
.wsb6{word-spacing:4.740000px;}
.ws77{word-spacing:4.752000px;}
.ws6d{word-spacing:4.818000px;}
.wsc6{word-spacing:4.860000px;}
.ws27{word-spacing:4.884000px;}
.wsa3{word-spacing:4.914000px;}
.ws81{word-spacing:4.950000px;}
.ws63{word-spacing:4.980000px;}
.ws4f{word-spacing:5.016000px;}
.ws8b{word-spacing:5.040000px;}
.wsa5{word-spacing:5.082000px;}
.ws9e{word-spacing:5.100000px;}
.wsa0{word-spacing:5.130000px;}
.ws93{word-spacing:5.148000px;}
.ws89{word-spacing:5.214000px;}
.ws4b{word-spacing:5.280000px;}
.ws38{word-spacing:5.346000px;}
.wse{word-spacing:5.400000px;}
.wsa6{word-spacing:5.412000px;}
.ws9a{word-spacing:5.460000px;}
.wsbd{word-spacing:5.478000px;}
.ws9c{word-spacing:5.520000px;}
.wsa8{word-spacing:5.544000px;}
.ws75{word-spacing:5.610000px;}
.ws1b{word-spacing:5.616000px;}
.ws5f{word-spacing:5.640000px;}
.wsb{word-spacing:5.670000px;}
.ws78{word-spacing:5.676000px;}
.ws43{word-spacing:5.742000px;}
.ws6f{word-spacing:5.808000px;}
.wsae{word-spacing:5.874000px;}
.ws9f{word-spacing:5.880000px;}
.ws6e{word-spacing:5.940000px;}
.wsc1{word-spacing:5.994000px;}
.ws96{word-spacing:6.000000px;}
.ws36{word-spacing:6.006000px;}
.ws6a{word-spacing:6.060000px;}
.wsac{word-spacing:6.072000px;}
.ws53{word-spacing:6.138000px;}
.ws2f{word-spacing:6.204000px;}
.ws95{word-spacing:6.240000px;}
.ws50{word-spacing:6.270000px;}
.ws31{word-spacing:6.300000px;}
.ws57{word-spacing:6.336000px;}
.ws2b{word-spacing:6.402000px;}
.wsb9{word-spacing:6.468000px;}
.wsb5{word-spacing:6.534000px;}
.wsb2{word-spacing:6.600000px;}
.wsb8{word-spacing:6.666000px;}
.ws52{word-spacing:6.732000px;}
.ws7b{word-spacing:6.798000px;}
.ws8d{word-spacing:6.864000px;}
.ws26{word-spacing:6.930000px;}
.wsc7{word-spacing:6.996000px;}
.ws8{word-spacing:10.656000px;}
.ws23{word-spacing:12.750000px;}
.ws9{word-spacing:13.344000px;}
.ws24{word-spacing:84.708000px;}
._4{margin-left:-24.000000px;}
._5{margin-left:-22.711800px;}
._f{margin-left:-20.790000px;}
._6{margin-left:-17.640000px;}
._b{margin-left:-13.596000px;}
._8{margin-left:-11.178000px;}
._16{margin-left:-2.217600px;}
._a{margin-left:-1.122000px;}
._d{width:1.009500px;}
._3{width:2.073600px;}
._10{width:3.420000px;}
._7{width:5.508000px;}
._9{width:6.996000px;}
._1{width:9.936000px;}
._2{width:11.328000px;}
._0{width:13.344000px;}
._13{width:27.504000px;}
._14{width:32.237400px;}
._15{width:33.479400px;}
._e{width:47.979000px;}
._12{width:52.379400px;}
._11{width:54.000000px;}
._c{width:84.708000px;}
.fc2{color:rgb(96,138,150);}
.fc1{color:rgb(157,194,227);}
.fc0{color:rgb(0,0,0);}
.fsd{font-size:35.100000px;}
.fs8{font-size:40.500000px;}
.fsc{font-size:42.900000px;}
.fs2{font-size:48.000000px;}
.fsb{font-size:49.500000px;}
.fs9{font-size:51.000000px;}
.fs7{font-size:54.000000px;}
.fs0{font-size:57.000000px;}
.fs6{font-size:60.000000px;}
.fs1{font-size:66.000000px;}
.fse{font-size:72.000000px;}
.fsa{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;}
.y126{bottom:138.191550px;}
.y107{bottom:138.194550px;}
.ye9{bottom:138.194700px;}
.y179{bottom:138.209700px;}
.y241{bottom:138.209850px;}
.y215{bottom:138.232650px;}
.y96{bottom:138.945750px;}
.y1a6{bottom:139.474200px;}
.y6c{bottom:139.554600px;}
.y14f{bottom:139.684500px;}
.y1c5{bottom:139.806300px;}
.yc3{bottom:140.175000px;}
.y285{bottom:140.296350px;}
.y9{bottom:140.316450px;}
.y8{bottom:153.108450px;}
.y106{bottom:154.178550px;}
.ye8{bottom:154.178700px;}
.y178{bottom:154.193700px;}
.y240{bottom:154.193850px;}
.y14e{bottom:157.279500px;}
.y1c4{bottom:157.401300px;}
.yc2{bottom:157.770000px;}
.y125{bottom:158.225550px;}
.y214{bottom:159.022650px;}
.y95{bottom:159.735750px;}
.y1a5{bottom:160.264200px;}
.y6b{bottom:160.344600px;}
.y284{bottom:161.086350px;}
.y177{bottom:170.177700px;}
.y23f{bottom:170.177850px;}
.y7{bottom:172.269300px;}
.y105{bottom:174.212550px;}
.ye7{bottom:174.212700px;}
.y1c3{bottom:174.996300px;}
.yc1{bottom:175.365000px;}
.y213{bottom:179.812650px;}
.y94{bottom:180.525750px;}
.y1a4{bottom:181.054200px;}
.y6a{bottom:181.134600px;}
.y1ee{bottom:186.155700px;}
.y176{bottom:186.161700px;}
.y23e{bottom:186.161850px;}
.y283{bottom:191.099850px;}
.y6{bottom:191.445300px;}
.y1c2{bottom:192.591300px;}
.yc0{bottom:192.960000px;}
.y14d{bottom:193.528950px;}
.y212{bottom:200.602650px;}
.y293{bottom:201.199350px;}
.y93{bottom:201.309750px;}
.y1a3{bottom:201.844200px;}
.y69{bottom:201.924600px;}
.y1ed{bottom:202.139700px;}
.y175{bottom:202.145700px;}
.y23d{bottom:202.145850px;}
.y124{bottom:205.223250px;}
.y1c1{bottom:210.186300px;}
.y5{bottom:210.621300px;}
.y282{bottom:211.889850px;}
.y14c{bottom:214.318950px;}
.y174{bottom:218.129700px;}
.y23c{bottom:218.129850px;}
.y211{bottom:221.392650px;}
.y292{bottom:221.989350px;}
.y92{bottom:222.099750px;}
.y1ec{bottom:222.173700px;}
.y1a2{bottom:222.634200px;}
.y68{bottom:222.714600px;}
.y4{bottom:223.413300px;}
.ye6{bottom:223.625850px;}
.y123{bottom:226.013250px;}
.ybf{bottom:231.316500px;}
.y173{bottom:234.113700px;}
.y23b{bottom:234.113850px;}
.y1eb{bottom:234.125700px;}
.y14b{bottom:235.108950px;}
.y261{bottom:240.012600px;}
.y104{bottom:240.419250px;}
.ye5{bottom:241.220850px;}
.y281{bottom:241.903350px;}
.y210{bottom:242.182650px;}
.y3{bottom:242.589300px;}
.y91{bottom:242.886750px;}
.y1a1{bottom:243.424200px;}
.y67{bottom:243.504600px;}
.y122{bottom:246.803250px;}
.y1ea{bottom:250.109700px;}
.ybe{bottom:252.106500px;}
.y1c0{bottom:253.174350px;}
.y172{bottom:254.147700px;}
.y23a{bottom:254.147850px;}
.y2{bottom:255.381300px;}
.y14a{bottom:255.898950px;}
.ye4{bottom:258.815850px;}
.y260{bottom:260.802600px;}
.y103{bottom:261.209250px;}
.y280{bottom:262.693350px;}
.y20f{bottom:262.972650px;}
.y90{bottom:263.670750px;}
.y1a0{bottom:264.214200px;}
.y66{bottom:264.294600px;}
.y171{bottom:266.087700px;}
.y1e9{bottom:266.093700px;}
.y121{bottom:267.593250px;}
.ybd{bottom:272.896500px;}
.y1bf{bottom:273.964350px;}
.ye3{bottom:276.410850px;}
.y25f{bottom:281.592600px;}
.y102{bottom:281.999250px;}
.y1e8{bottom:282.077700px;}
.y20e{bottom:283.762650px;}
.y291{bottom:284.359350px;}
.y8f{bottom:284.460750px;}
.y19f{bottom:285.004200px;}
.y65{bottom:285.084600px;}
.y170{bottom:286.121700px;}
.y120{bottom:288.383250px;}
.y27f{bottom:292.706850px;}
.ybc{bottom:293.686500px;}
.y1be{bottom:294.754350px;}
.y149{bottom:295.357350px;}
.y1e7{bottom:298.061700px;}
.y16f{bottom:298.067700px;}
.y101{bottom:302.789250px;}
.y20d{bottom:304.552650px;}
.y290{bottom:305.149350px;}
.y8e{bottom:305.247750px;}
.y64{bottom:305.874600px;}
.y11f{bottom:309.173250px;}
.y25e{bottom:312.777600px;}
.y148{bottom:312.952350px;}
.y27e{bottom:313.496850px;}
.y16e{bottom:314.051700px;}
.ybb{bottom:314.476500px;}
.ye2{bottom:314.770350px;}
.y19e{bottom:315.149700px;}
.y1bd{bottom:315.544350px;}
.y3f{bottom:318.064950px;}
.y2f{bottom:318.078450px;}
.y1e6{bottom:318.095700px;}
.y239{bottom:319.512450px;}
.y100{bottom:323.579250px;}
.y8d{bottom:325.991700px;}
.y63{bottom:326.664600px;}
.y11e{bottom:329.951250px;}
.y16d{bottom:330.035700px;}
.y147{bottom:330.547350px;}
.y25d{bottom:333.567600px;}
.y3e{bottom:334.048950px;}
.y2e{bottom:334.062450px;}
.yba{bottom:335.266500px;}
.ye1{bottom:335.560350px;}
.y20c{bottom:335.737650px;}
.y19d{bottom:335.939700px;}
.y1bc{bottom:336.334350px;}
.y238{bottom:340.302450px;}
.y27d{bottom:343.510350px;}
.yff{bottom:344.369250px;}
.y8c{bottom:346.781700px;}
.y62{bottom:347.454600px;}
.y146{bottom:348.142350px;}
.y3d{bottom:350.032950px;}
.y2d{bottom:350.046450px;}
.y16c{bottom:350.069700px;}
.y11d{bottom:350.741250px;}
.yb9{bottom:356.056500px;}
.ye0{bottom:356.350350px;}
.y20b{bottom:356.527650px;}
.y19c{bottom:356.729700px;}
.y1bb{bottom:357.124350px;}
.y237{bottom:361.092450px;}
.y25c{bottom:364.752600px;}
.y145{bottom:365.737350px;}
.y3c{bottom:366.016950px;}
.y2c{bottom:366.030450px;}
.y8b{bottom:367.571700px;}
.y61{bottom:368.244600px;}
.y11c{bottom:371.531250px;}
.y27c{bottom:373.523850px;}
.yb8{bottom:376.846500px;}
.ydf{bottom:377.140350px;}
.y20a{bottom:377.317650px;}
.y19b{bottom:377.519700px;}
.y1e5{bottom:380.378700px;}
.y236{bottom:381.882450px;}
.y3b{bottom:382.000950px;}
.y2b{bottom:382.014450px;}
.y144{bottom:383.332350px;}
.yfe{bottom:385.948650px;}
.y1ba{bottom:388.309350px;}
.y8a{bottom:388.361700px;}
.y60{bottom:389.034600px;}
.y11b{bottom:392.321250px;}
.y27b{bottom:394.313850px;}
.y25b{bottom:395.937600px;}
.yb7{bottom:397.636500px;}
.yde{bottom:397.930350px;}
.y3a{bottom:397.984950px;}
.y209{bottom:398.107650px;}
.y19a{bottom:398.309700px;}
.y1e4{bottom:401.168700px;}
.y235{bottom:402.672450px;}
.yfd{bottom:403.543650px;}
.y2a{bottom:405.990450px;}
.y1b9{bottom:409.099350px;}
.y89{bottom:409.151700px;}
.y5f{bottom:409.824600px;}
.y11a{bottom:413.111250px;}
.y39{bottom:413.968950px;}
.y25a{bottom:416.727600px;}
.y16b{bottom:417.408000px;}
.yb6{bottom:418.426500px;}
.ydd{bottom:418.720350px;}
.y208{bottom:418.897650px;}
.y199{bottom:419.099700px;}
.y143{bottom:419.492850px;}
.yfc{bottom:421.138650px;}
.y1e3{bottom:421.949850px;}
.y234{bottom:423.462450px;}
.y27a{bottom:424.327350px;}
.y1b8{bottom:429.889350px;}
.y38{bottom:429.952950px;}
.y259{bottom:437.517600px;}
.y16a{bottom:438.198000px;}
.yfb{bottom:438.733650px;}
.ydc{bottom:439.510350px;}
.y207{bottom:439.687650px;}
.y198{bottom:439.889700px;}
.y142{bottom:440.282850px;}
.y88{bottom:440.336700px;}
.y5e{bottom:441.009600px;}
.y1e2{bottom:442.739850px;}
.y233{bottom:444.252450px;}
.y37{bottom:445.936950px;}
.y1b7{bottom:450.679350px;}
.y279{bottom:454.340850px;}
.y119{bottom:454.690650px;}
.y169{bottom:458.988000px;}
.ydb{bottom:460.300350px;}
.y206{bottom:460.477650px;}
.y197{bottom:460.679700px;}
.y141{bottom:461.072850px;}
.y28f{bottom:461.074350px;}
.y87{bottom:461.126700px;}
.y5d{bottom:461.799600px;}
.y36{bottom:461.920950px;}
.yb5{bottom:462.135450px;}
.y1e1{bottom:463.529850px;}
.y232{bottom:465.042450px;}
.y1b6{bottom:471.469350px;}
.y118{bottom:472.285650px;}
.y278{bottom:475.130850px;}
.yfa{bottom:477.090150px;}
.y35{bottom:477.904950px;}
.yb4{bottom:479.730450px;}
.y168{bottom:479.772000px;}
.yda{bottom:481.090350px;}
.y205{bottom:481.267650px;}
.y196{bottom:481.469700px;}
.y140{bottom:481.862850px;}
.y86{bottom:481.916700px;}
.y5c{bottom:482.589600px;}
.y258{bottom:483.580350px;}
.y1e0{bottom:484.319850px;}
.y231{bottom:485.832450px;}
.y117{bottom:489.880650px;}
.y1b5{bottom:492.259350px;}
.y34{bottom:493.888950px;}
.yb3{bottom:497.325450px;}
.yf9{bottom:497.880150px;}
.y167{bottom:500.562000px;}
.y204{bottom:502.057650px;}
.y195{bottom:502.259700px;}
.y13f{bottom:502.652850px;}
.y85{bottom:502.706700px;}
.y5b{bottom:503.379600px;}
.y277{bottom:505.144350px;}
.y230{bottom:506.622450px;}
.y116{bottom:507.475650px;}
.y33{bottom:509.926950px;}
.y1b4{bottom:513.049350px;}
.yb2{bottom:514.920450px;}
.yf8{bottom:518.670150px;}
.y166{bottom:521.352000px;}
.y203{bottom:522.847650px;}
.y194{bottom:523.049700px;}
.y13e{bottom:523.442850px;}
.y84{bottom:523.496700px;}
.y5a{bottom:524.169600px;}
.y1df{bottom:525.899100px;}
.y32{bottom:525.910950px;}
.y276{bottom:525.934350px;}
.yd9{bottom:527.156100px;}
.y22f{bottom:527.412450px;}
.yb1{bottom:532.515450px;}
.y1b3{bottom:533.839350px;}
.yf7{bottom:539.460150px;}
.y31{bottom:541.894950px;}
.y1de{bottom:543.494100px;}
.y202{bottom:543.637650px;}
.y193{bottom:543.839700px;}
.y13d{bottom:544.232850px;}
.y28e{bottom:544.234350px;}
.y83{bottom:544.286700px;}
.y59{bottom:544.959600px;}
.y115{bottom:545.847150px;}
.yd8{bottom:552.740100px;}
.y1b2{bottom:554.629350px;}
.y275{bottom:555.947850px;}
.y30{bottom:557.878950px;}
.y22e{bottom:558.597450px;}
.yf6{bottom:560.250150px;}
.y1dd{bottom:561.089100px;}
.y165{bottom:562.934400px;}
.y201{bottom:564.427650px;}
.y192{bottom:564.629700px;}
.y13c{bottom:565.022850px;}
.y28d{bottom:565.024350px;}
.y82{bottom:565.076700px;}
.y114{bottom:566.637150px;}
.y257{bottom:568.628100px;}
.yb0{bottom:570.889950px;}
.y1b1{bottom:575.419350px;}
.y1dc{bottom:578.684100px;}
.y22d{bottom:579.387450px;}
.y164{bottom:580.529400px;}
.yf5{bottom:581.040150px;}
.y200{bottom:585.217650px;}
.y191{bottom:585.419700px;}
.y13b{bottom:585.812850px;}
.y28c{bottom:585.814350px;}
.y81{bottom:585.866700px;}
.y274{bottom:585.961350px;}
.y113{bottom:587.427150px;}
.y256{bottom:589.418100px;}
.y58{bottom:590.794650px;}
.yaf{bottom:591.679950px;}
.y1b0{bottom:596.209350px;}
.y163{bottom:598.124400px;}
.y22c{bottom:600.177450px;}
.yf4{bottom:601.830150px;}
.y18{bottom:602.261100px;}
.y29{bottom:602.280450px;}
.y1ff{bottom:606.007650px;}
.y190{bottom:606.209700px;}
.y28b{bottom:606.604350px;}
.y80{bottom:606.656700px;}
.y273{bottom:606.751350px;}
.y112{bottom:608.217150px;}
.y57{bottom:608.389650px;}
.y255{bottom:610.208100px;}
.yae{bottom:612.469950px;}
.y162{bottom:615.719400px;}
.y13a{bottom:616.997850px;}
.y1af{bottom:616.999350px;}
.y1db{bottom:617.058600px;}
.y17{bottom:618.245100px;}
.y28{bottom:618.264450px;}
.y22b{bottom:620.967450px;}
.yf3{bottom:622.620150px;}
.y56{bottom:625.984650px;}
.y1fe{bottom:626.797650px;}
.y18f{bottom:626.999700px;}
.y7f{bottom:627.446700px;}
.y272{bottom:627.541350px;}
.y111{bottom:629.007150px;}
.y254{bottom:630.998100px;}
.yad{bottom:633.259950px;}
.y161{bottom:633.314400px;}
.y16{bottom:634.229100px;}
.y27{bottom:634.248450px;}
.y139{bottom:637.787850px;}
.y1ae{bottom:637.789350px;}
.yd7{bottom:637.808700px;}
.y1da{bottom:637.848600px;}
.y22a{bottom:641.757450px;}
.yf2{bottom:643.410150px;}
.y55{bottom:643.579650px;}
.y18e{bottom:647.789700px;}
.y7e{bottom:648.236700px;}
.y15{bottom:650.213100px;}
.y26{bottom:650.232450px;}
.y160{bottom:650.909400px;}
.y253{bottom:651.788100px;}
.y271{bottom:657.554850px;}
.y138{bottom:658.577850px;}
.y1ad{bottom:658.579350px;}
.yd6{bottom:658.598700px;}
.y1d9{bottom:658.638600px;}
.y54{bottom:661.174650px;}
.y229{bottom:662.547450px;}
.yf1{bottom:664.200150px;}
.y14{bottom:666.197100px;}
.y25{bottom:666.216450px;}
.y1fd{bottom:668.383050px;}
.y18d{bottom:668.579700px;}
.y110{bottom:670.591050px;}
.y252{bottom:672.578100px;}
.yac{bottom:676.974900px;}
.y270{bottom:678.344850px;}
.y137{bottom:679.367850px;}
.y1ac{bottom:679.369350px;}
.y1d8{bottom:679.371000px;}
.yd5{bottom:679.388700px;}
.y24{bottom:682.200450px;}
.y228{bottom:683.337450px;}
.y1fc{bottom:685.978050px;}
.y10f{bottom:688.186050px;}
.y15f{bottom:689.286900px;}
.y28a{bottom:689.764350px;}
.y13{bottom:690.173100px;}
.y251{bottom:693.368100px;}
.y7d{bottom:693.452100px;}
.yab{bottom:694.569900px;}
.y23{bottom:698.184450px;}
.y18c{bottom:698.725200px;}
.y136{bottom:700.157850px;}
.y1ab{bottom:700.159350px;}
.y1d7{bottom:700.161000px;}
.yd4{bottom:700.178700px;}
.y1fb{bottom:703.573050px;}
.y53{bottom:703.760100px;}
.y227{bottom:704.127450px;}
.yf0{bottom:705.781050px;}
.y26f{bottom:708.358350px;}
.y15e{bottom:710.076900px;}
.y289{bottom:710.554350px;}
.yaa{bottom:712.164900px;}
.y250{bottom:714.158100px;}
.y22{bottom:714.168450px;}
.y7c{bottom:719.036100px;}
.y18b{bottom:719.515200px;}
.y135{bottom:720.947850px;}
.y1aa{bottom:720.949350px;}
.y1d6{bottom:720.951000px;}
.yd3{bottom:720.968700px;}
.y1fa{bottom:721.168050px;}
.yef{bottom:723.376050px;}
.y52{bottom:724.550100px;}
.y226{bottom:724.902300px;}
.y26e{bottom:729.148350px;}
.ya9{bottom:729.759900px;}
.y21{bottom:730.152450px;}
.y15d{bottom:730.866900px;}
.y24f{bottom:734.948100px;}
.y1f9{bottom:738.763050px;}
.y18a{bottom:740.305200px;}
.yee{bottom:740.971050px;}
.y134{bottom:741.737850px;}
.y288{bottom:741.739350px;}
.y1d5{bottom:741.741000px;}
.yd2{bottom:741.758700px;}
.y51{bottom:745.340100px;}
.y225{bottom:745.692300px;}
.y20{bottom:746.136450px;}
.ya8{bottom:747.354900px;}
.y1a9{bottom:752.134350px;}
.y24e{bottom:755.738100px;}
.y1f8{bottom:756.358050px;}
.yed{bottom:758.566050px;}
.y26d{bottom:759.161850px;}
.y189{bottom:761.095200px;}
.y1f{bottom:762.120450px;}
.y133{bottom:762.527850px;}
.y287{bottom:762.529350px;}
.y1d4{bottom:762.531000px;}
.yd1{bottom:762.548700px;}
.ya7{bottom:764.949900px;}
.y50{bottom:766.130100px;}
.y224{bottom:766.482300px;}
.y1a8{bottom:772.924350px;}
.y1f7{bottom:773.953050px;}
.yec{bottom:776.161050px;}
.y24d{bottom:776.528100px;}
.y15c{bottom:776.932650px;}
.y1e{bottom:778.104450px;}
.y26c{bottom:779.951850px;}
.y188{bottom:781.885200px;}
.ya6{bottom:782.544900px;}
.y132{bottom:783.317850px;}
.y1d3{bottom:783.321000px;}
.yd0{bottom:783.338700px;}
.y4f{bottom:786.920100px;}
.y223{bottom:787.272300px;}
.y1f6{bottom:791.548050px;}
.y1a7{bottom:793.714350px;}
.y1d{bottom:794.123100px;}
.y24c{bottom:797.318100px;}
.ya5{bottom:800.139900px;}
.y15b{bottom:802.516650px;}
.y187{bottom:802.675200px;}
.y131{bottom:804.107850px;}
.y7b{bottom:804.109350px;}
.y1d2{bottom:804.111000px;}
.ycf{bottom:804.128700px;}
.y4e{bottom:807.710100px;}
.y222{bottom:808.062300px;}
.y26b{bottom:809.965350px;}
.y1c{bottom:810.107100px;}
.yeb{bottom:814.502850px;}
.y10e{bottom:814.504350px;}
.ya4{bottom:817.734900px;}
.y24b{bottom:818.108100px;}
.y186{bottom:823.465200px;}
.y130{bottom:824.897850px;}
.y7a{bottom:824.899350px;}
.y1d1{bottom:824.901000px;}
.yce{bottom:824.918700px;}
.y1b{bottom:826.091100px;}
.y4d{bottom:828.500100px;}
.y221{bottom:828.852300px;}
.y1f5{bottom:829.915500px;}
.y26a{bottom:830.755350px;}
.yea{bottom:835.292850px;}
.y10d{bottom:835.294350px;}
.y24a{bottom:838.898100px;}
.y1a{bottom:842.075100px;}
.y185{bottom:844.255200px;}
.y12f{bottom:845.687850px;}
.y79{bottom:845.689350px;}
.y1d0{bottom:845.691000px;}
.ycd{bottom:845.708700px;}
.y4c{bottom:849.290100px;}
.y1f4{bottom:850.705500px;}
.ya3{bottom:856.082850px;}
.y10c{bottom:856.084350px;}
.y19{bottom:858.059100px;}
.y249{bottom:859.688100px;}
.y269{bottom:860.768850px;}
.y184{bottom:865.045200px;}
.y12e{bottom:866.477850px;}
.y78{bottom:866.479350px;}
.ycc{bottom:866.498700px;}
.y4b{bottom:870.080100px;}
.y220{bottom:870.442500px;}
.y1f3{bottom:871.495500px;}
.ya2{bottom:876.872850px;}
.y10b{bottom:876.874350px;}
.y1cf{bottom:876.876000px;}
.y248{bottom:880.478100px;}
.y268{bottom:881.558850px;}
.y183{bottom:885.835200px;}
.y12d{bottom:887.267850px;}
.y77{bottom:887.269350px;}
.ycb{bottom:887.288700px;}
.y15a{bottom:887.622300px;}
.y21f{bottom:888.037500px;}
.y4a{bottom:890.870100px;}
.ya1{bottom:897.662850px;}
.y10a{bottom:897.664350px;}
.y1ce{bottom:897.666000px;}
.y1f2{bottom:902.680500px;}
.y21e{bottom:905.632500px;}
.y182{bottom:906.625200px;}
.y12c{bottom:908.057850px;}
.y76{bottom:908.059350px;}
.yca{bottom:908.078700px;}
.y159{bottom:908.412300px;}
.y267{bottom:911.572350px;}
.y49{bottom:911.660100px;}
.y247{bottom:911.663100px;}
.ya0{bottom:918.452850px;}
.y109{bottom:918.454350px;}
.y1cd{bottom:918.456000px;}
.y21d{bottom:923.227500px;}
.y1f1{bottom:923.470500px;}
.y181{bottom:927.415200px;}
.y12b{bottom:928.847850px;}
.y75{bottom:928.849350px;}
.y158{bottom:929.202300px;}
.y12{bottom:930.321300px;}
.y266{bottom:932.362350px;}
.y48{bottom:932.450100px;}
.y246{bottom:932.453100px;}
.y9f{bottom:939.242850px;}
.y108{bottom:939.244350px;}
.y1cc{bottom:939.246000px;}
.yc9{bottom:939.263700px;}
.y21c{bottom:940.822500px;}
.y1f0{bottom:944.260500px;}
.y12a{bottom:949.637850px;}
.y74{bottom:949.639350px;}
.y157{bottom:949.983450px;}
.y11{bottom:951.099150px;}
.y47{bottom:953.240100px;}
.y245{bottom:953.243100px;}
.y180{bottom:957.560700px;}
.y21b{bottom:958.417500px;}
.y9e{bottom:960.032850px;}
.yc8{bottom:960.034350px;}
.y1cb{bottom:960.036000px;}
.y265{bottom:962.375850px;}
.y129{bottom:970.427850px;}
.y73{bottom:970.429350px;}
.y156{bottom:970.773450px;}
.y46{bottom:974.030100px;}
.y244{bottom:974.033100px;}
.y21a{bottom:976.012500px;}
.y17f{bottom:978.350700px;}
.y9d{bottom:980.822850px;}
.yc7{bottom:980.824350px;}
.y1ca{bottom:980.826000px;}
.y264{bottom:983.165850px;}
.y1ef{bottom:990.323400px;}
.y128{bottom:991.217850px;}
.y72{bottom:991.219350px;}
.y155{bottom:991.563450px;}
.y219{bottom:993.607500px;}
.y45{bottom:994.820100px;}
.y243{bottom:994.823100px;}
.y10{bottom:995.493150px;}
.y17e{bottom:999.140700px;}
.y9c{bottom:1001.612850px;}
.yc6{bottom:1001.614350px;}
.y1c9{bottom:1001.616000px;}
.y218{bottom:1011.202500px;}
.y127{bottom:1012.007850px;}
.y71{bottom:1012.009350px;}
.y154{bottom:1012.353450px;}
.y263{bottom:1013.179350px;}
.y44{bottom:1015.610100px;}
.y242{bottom:1015.613100px;}
.y17d{bottom:1019.930700px;}
.yf{bottom:1020.693150px;}
.y9b{bottom:1022.402850px;}
.yc5{bottom:1022.404350px;}
.y1c8{bottom:1022.406000px;}
.y217{bottom:1028.797500px;}
.y70{bottom:1032.799350px;}
.y262{bottom:1033.969350px;}
.y43{bottom:1036.400100px;}
.y17c{bottom:1040.720700px;}
.y9a{bottom:1043.192850px;}
.yc4{bottom:1043.194350px;}
.y1c7{bottom:1043.196000px;}
.y216{bottom:1046.392500px;}
.y286{bottom:1053.589350px;}
.y153{bottom:1053.932850px;}
.y42{bottom:1057.190100px;}
.y17b{bottom:1061.510700px;}
.y99{bottom:1063.982850px;}
.y6f{bottom:1063.984350px;}
.y1c6{bottom:1063.986000px;}
.ye{bottom:1065.078000px;}
.y152{bottom:1071.527850px;}
.y98{bottom:1084.772850px;}
.y6e{bottom:1084.774350px;}
.y151{bottom:1089.122850px;}
.yd{bottom:1097.478000px;}
.y41{bottom:1103.253000px;}
.y17a{bottom:1104.408000px;}
.y97{bottom:1105.562850px;}
.y6d{bottom:1105.564350px;}
.y150{bottom:1106.717850px;}
.yc{bottom:1162.740450px;}
.y40{bottom:1172.229900px;}
.yb{bottom:1193.880450px;}
.ya{bottom:1207.380450px;}
.h4{height:35.328000px;}
.h12{height:35.532000px;}
.h3{height:35.664000px;}
.h2{height:45.342773px;}
.hb{height:48.858000px;}
.h9{height:50.976000px;}
.ha{height:51.732000px;}
.h8{height:57.480000px;}
.hd{height:63.228000px;}
.hf{height:63.240000px;}
.h18{height:63.240600px;}
.h10{height:63.252000px;}
.h15{height:63.263400px;}
.h16{height:63.264000px;}
.h14{height:63.276000px;}
.h1a{height:63.288600px;}
.h11{height:63.305400px;}
.h13{height:63.394800px;}
.he{height:63.412200px;}
.h19{height:63.458400px;}
.h6{height:64.512000px;}
.h17{height:67.968000px;}
.hc{height:73.632000px;}
.h7{height:80.472000px;}
.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;}
.x10{left:86.972550px;}
.xc{left:93.730800px;}
.x14{left:106.300500px;}
.x13{left:108.232200px;}
.x2{left:110.551350px;}
.x11{left:129.510000px;}
.x16{left:136.057350px;}
.x15{left:137.998500px;}
.x3{left:145.195650px;}
.x4{left:151.195650px;}
.xf{left:153.070800px;}
.x12{left:155.011950px;}
.xd{left:285.066300px;}
.x6{left:296.812500px;}
.x8{left:309.845700px;}
.x7{left:500.719350px;}
.x9{left:556.490700px;}
.xa{left:638.831700px;}
.xb{left:650.316000px;}
.xe{left:710.083200px;}
.x5{left:733.915650px;}
@media print{
.v2{vertical-align:-14.400000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:17.668800pt;}
.ls37{letter-spacing:-0.293333pt;}
.ls3c{letter-spacing:-0.234667pt;}
.ls38{letter-spacing:-0.058667pt;}
.lsa{letter-spacing:0.000000pt;}
.ls2b{letter-spacing:0.029333pt;}
.ls32{letter-spacing:0.042133pt;}
.ls1{letter-spacing:0.048000pt;}
.lse{letter-spacing:0.053333pt;}
.lsc{letter-spacing:0.058667pt;}
.ls2{letter-spacing:0.096000pt;}
.ls25{letter-spacing:0.106667pt;}
.ls10{letter-spacing:0.117333pt;}
.ls26{letter-spacing:0.120000pt;}
.ls41{letter-spacing:0.133333pt;}
.ls4{letter-spacing:0.144000pt;}
.ls5{letter-spacing:0.151200pt;}
.ls1c{letter-spacing:0.160000pt;}
.ls2e{letter-spacing:0.176000pt;}
.ls8{letter-spacing:0.192000pt;}
.ls31{letter-spacing:0.205333pt;}
.ls1d{letter-spacing:0.234667pt;}
.ls9{letter-spacing:0.240000pt;}
.ls7{letter-spacing:0.264000pt;}
.lsd{letter-spacing:0.266667pt;}
.ls1b{letter-spacing:0.293333pt;}
.ls3d{letter-spacing:0.322667pt;}
.ls3{letter-spacing:0.336000pt;}
.ls15{letter-spacing:0.352000pt;}
.ls3a{letter-spacing:0.373333pt;}
.ls11{letter-spacing:0.381333pt;}
.ls40{letter-spacing:0.400000pt;}
.ls2a{letter-spacing:0.410667pt;}
.ls3b{letter-spacing:0.426667pt;}
.ls30{letter-spacing:0.453333pt;}
.ls14{letter-spacing:0.469333pt;}
.ls21{letter-spacing:0.506667pt;}
.ls28{letter-spacing:0.528000pt;}
.ls33{letter-spacing:0.533333pt;}
.ls19{letter-spacing:0.586667pt;}
.ls6{letter-spacing:0.600000pt;}
.ls20{letter-spacing:0.616000pt;}
.ls1f{letter-spacing:0.645333pt;}
.ls43{letter-spacing:0.674667pt;}
.ls23{letter-spacing:0.693333pt;}
.ls12{letter-spacing:0.704000pt;}
.ls22{letter-spacing:0.762667pt;}
.ls3e{letter-spacing:0.768000pt;}
.ls44{letter-spacing:0.821333pt;}
.ls36{letter-spacing:0.850667pt;}
.lsf{letter-spacing:0.853333pt;}
.ls29{letter-spacing:0.880000pt;}
.ls18{letter-spacing:0.938667pt;}
.ls2c{letter-spacing:0.960000pt;}
.ls13{letter-spacing:0.997333pt;}
.ls34{letter-spacing:1.013333pt;}
.ls27{letter-spacing:1.066667pt;}
.ls1a{letter-spacing:1.114667pt;}
.ls24{letter-spacing:1.120000pt;}
.ls2d{letter-spacing:1.173333pt;}
.ls1e{letter-spacing:1.226667pt;}
.ls2f{letter-spacing:1.290667pt;}
.ls17{letter-spacing:1.320000pt;}
.ls42{letter-spacing:1.408000pt;}
.ls3f{letter-spacing:1.584000pt;}
.ls39{letter-spacing:1812.060800pt;}
.ls16{letter-spacing:1841.394133pt;}
.ls35{letter-spacing:1896.905600pt;}
.lsb{letter-spacing:1926.238933pt;}
.ls0{letter-spacing:2528.078933pt;}
.ws0{word-spacing:-20.160000pt;}
.ws1{word-spacing:-15.120000pt;}
.ws22{word-spacing:-14.666667pt;}
.ws40{word-spacing:-13.640000pt;}
.ws9b{word-spacing:-13.082667pt;}
.ws86{word-spacing:-12.378667pt;}
.ws87{word-spacing:-12.349333pt;}
.ws88{word-spacing:-12.320000pt;}
.ws3f{word-spacing:-11.333333pt;}
.ws2{word-spacing:-10.176000pt;}
.ws6b{word-spacing:-8.008000pt;}
.ws6c{word-spacing:-6.552000pt;}
.wsc2{word-spacing:-1.584000pt;}
.wsd1{word-spacing:-0.880000pt;}
.ws35{word-spacing:-0.853333pt;}
.ws73{word-spacing:-0.762667pt;}
.ws7c{word-spacing:-0.704000pt;}
.ws8f{word-spacing:-0.352000pt;}
.ws68{word-spacing:-0.293333pt;}
.ws32{word-spacing:-0.266667pt;}
.ws3b{word-spacing:-0.234667pt;}
.ws15{word-spacing:-0.192000pt;}
.ws3{word-spacing:-0.187200pt;}
.wsb7{word-spacing:-0.176000pt;}
.ws85{word-spacing:-0.144000pt;}
.wsc{word-spacing:-0.096000pt;}
.ws42{word-spacing:-0.058667pt;}
.ws34{word-spacing:-0.053333pt;}
.wsa{word-spacing:-0.048000pt;}
.ws41{word-spacing:-0.044000pt;}
.ws4{word-spacing:-0.036000pt;}
.ws5{word-spacing:0.000000pt;}
.wsc0{word-spacing:0.048000pt;}
.ws69{word-spacing:0.053333pt;}
.ws5d{word-spacing:0.058667pt;}
.wsbe{word-spacing:0.096000pt;}
.ws47{word-spacing:0.117333pt;}
.ws8e{word-spacing:0.176000pt;}
.wsc3{word-spacing:0.213333pt;}
.ws74{word-spacing:0.234667pt;}
.ws19{word-spacing:0.240000pt;}
.wsd2{word-spacing:0.288000pt;}
.ws45{word-spacing:0.293333pt;}
.wsa4{word-spacing:0.336000pt;}
.wsb4{word-spacing:0.352000pt;}
.ws58{word-spacing:0.410667pt;}
.ws7a{word-spacing:0.426667pt;}
.wsa9{word-spacing:0.469333pt;}
.ws1d{word-spacing:0.528000pt;}
.ws62{word-spacing:0.533333pt;}
.wsd0{word-spacing:0.576000pt;}
.ws37{word-spacing:0.586667pt;}
.ws8c{word-spacing:0.640000pt;}
.ws5e{word-spacing:0.645333pt;}
.ws20{word-spacing:0.672000pt;}
.wsc4{word-spacing:0.693333pt;}
.ws49{word-spacing:0.704000pt;}
.wsba{word-spacing:0.746667pt;}
.ws39{word-spacing:0.762667pt;}
.wsd4{word-spacing:0.821333pt;}
.ws4d{word-spacing:0.880000pt;}
.ws64{word-spacing:0.938667pt;}
.ws12{word-spacing:0.960000pt;}
.ws90{word-spacing:0.997333pt;}
.ws84{word-spacing:1.056000pt;}
.wsbb{word-spacing:1.066667pt;}
.wsd3{word-spacing:1.104000pt;}
.ws25{word-spacing:1.114667pt;}
.ws3e{word-spacing:1.173333pt;}
.wsb0{word-spacing:1.232000pt;}
.ws2c{word-spacing:1.290667pt;}
.ws10{word-spacing:1.296000pt;}
.ws60{word-spacing:1.333333pt;}
.ws70{word-spacing:1.349333pt;}
.ws46{word-spacing:1.408000pt;}
.ws14{word-spacing:1.440000pt;}
.wsb1{word-spacing:1.466667pt;}
.wscc{word-spacing:1.488000pt;}
.ws92{word-spacing:1.525333pt;}
.ws11{word-spacing:1.536000pt;}
.ws7d{word-spacing:1.584000pt;}
.wscf{word-spacing:1.632000pt;}
.wsad{word-spacing:1.642667pt;}
.wsc9{word-spacing:1.653333pt;}
.ws4c{word-spacing:1.701333pt;}
.ws94{word-spacing:1.706667pt;}
.ws5c{word-spacing:1.760000pt;}
.ws9d{word-spacing:1.818667pt;}
.ws7{word-spacing:1.834667pt;}
.wsa2{word-spacing:1.872000pt;}
.ws44{word-spacing:1.877333pt;}
.ws54{word-spacing:1.936000pt;}
.ws3c{word-spacing:1.994667pt;}
.wsbf{word-spacing:2.016000pt;}
.ws2a{word-spacing:2.053333pt;}
.wsa1{word-spacing:2.064000pt;}
.ws1a{word-spacing:2.112000pt;}
.ws3d{word-spacing:2.170667pt;}
.wsa7{word-spacing:2.229333pt;}
.ws17{word-spacing:2.256000pt;}
.ws30{word-spacing:2.288000pt;}
.ws91{word-spacing:2.346667pt;}
.ws80{word-spacing:2.400000pt;}
.ws82{word-spacing:2.405333pt;}
.ws48{word-spacing:2.464000pt;}
.wsd{word-spacing:2.496000pt;}
.ws7f{word-spacing:2.506667pt;}
.ws59{word-spacing:2.522667pt;}
.ws2d{word-spacing:2.581333pt;}
.wsc5{word-spacing:2.613333pt;}
.wsf{word-spacing:2.640000pt;}
.wscb{word-spacing:2.666667pt;}
.ws13{word-spacing:2.688000pt;}
.wsab{word-spacing:2.698667pt;}
.wsc8{word-spacing:2.720000pt;}
.ws67{word-spacing:2.757333pt;}
.ws99{word-spacing:2.773333pt;}
.ws8a{word-spacing:2.816000pt;}
.ws1f{word-spacing:2.832000pt;}
.ws2e{word-spacing:2.874667pt;}
.ws1c{word-spacing:2.880000pt;}
.ws3a{word-spacing:2.933333pt;}
.wsbc{word-spacing:2.992000pt;}
.ws5b{word-spacing:3.050667pt;}
.ws6{word-spacing:3.072000pt;}
.ws79{word-spacing:3.093333pt;}
.ws7e{word-spacing:3.109333pt;}
.ws4e{word-spacing:3.168000pt;}
.ws29{word-spacing:3.226667pt;}
.ws16{word-spacing:3.264000pt;}
.ws5a{word-spacing:3.285333pt;}
.ws4a{word-spacing:3.344000pt;}
.ws1e{word-spacing:3.360000pt;}
.ws55{word-spacing:3.402667pt;}
.wsce{word-spacing:3.408000pt;}
.ws98{word-spacing:3.461333pt;}
.ws65{word-spacing:3.466667pt;}
.ws71{word-spacing:3.520000pt;}
.ws72{word-spacing:3.578667pt;}
.wsaa{word-spacing:3.637333pt;}
.wsaf{word-spacing:3.696000pt;}
.ws33{word-spacing:3.733333pt;}
.ws56{word-spacing:3.754667pt;}
.ws83{word-spacing:3.872000pt;}
.wsca{word-spacing:3.893333pt;}
.ws28{word-spacing:3.930667pt;}
.ws76{word-spacing:3.936000pt;}
.ws97{word-spacing:3.989333pt;}
.wscd{word-spacing:4.032000pt;}
.ws51{word-spacing:4.048000pt;}
.ws61{word-spacing:4.053333pt;}
.ws18{word-spacing:4.080000pt;}
.ws66{word-spacing:4.106667pt;}
.ws21{word-spacing:4.128000pt;}
.wsb3{word-spacing:4.165333pt;}
.wsb6{word-spacing:4.213333pt;}
.ws77{word-spacing:4.224000pt;}
.ws6d{word-spacing:4.282667pt;}
.wsc6{word-spacing:4.320000pt;}
.ws27{word-spacing:4.341333pt;}
.wsa3{word-spacing:4.368000pt;}
.ws81{word-spacing:4.400000pt;}
.ws63{word-spacing:4.426667pt;}
.ws4f{word-spacing:4.458667pt;}
.ws8b{word-spacing:4.480000pt;}
.wsa5{word-spacing:4.517333pt;}
.ws9e{word-spacing:4.533333pt;}
.wsa0{word-spacing:4.560000pt;}
.ws93{word-spacing:4.576000pt;}
.ws89{word-spacing:4.634667pt;}
.ws4b{word-spacing:4.693333pt;}
.ws38{word-spacing:4.752000pt;}
.wse{word-spacing:4.800000pt;}
.wsa6{word-spacing:4.810667pt;}
.ws9a{word-spacing:4.853333pt;}
.wsbd{word-spacing:4.869333pt;}
.ws9c{word-spacing:4.906667pt;}
.wsa8{word-spacing:4.928000pt;}
.ws75{word-spacing:4.986667pt;}
.ws1b{word-spacing:4.992000pt;}
.ws5f{word-spacing:5.013333pt;}
.wsb{word-spacing:5.040000pt;}
.ws78{word-spacing:5.045333pt;}
.ws43{word-spacing:5.104000pt;}
.ws6f{word-spacing:5.162667pt;}
.wsae{word-spacing:5.221333pt;}
.ws9f{word-spacing:5.226667pt;}
.ws6e{word-spacing:5.280000pt;}
.wsc1{word-spacing:5.328000pt;}
.ws96{word-spacing:5.333333pt;}
.ws36{word-spacing:5.338667pt;}
.ws6a{word-spacing:5.386667pt;}
.wsac{word-spacing:5.397333pt;}
.ws53{word-spacing:5.456000pt;}
.ws2f{word-spacing:5.514667pt;}
.ws95{word-spacing:5.546667pt;}
.ws50{word-spacing:5.573333pt;}
.ws31{word-spacing:5.600000pt;}
.ws57{word-spacing:5.632000pt;}
.ws2b{word-spacing:5.690667pt;}
.wsb9{word-spacing:5.749333pt;}
.wsb5{word-spacing:5.808000pt;}
.wsb2{word-spacing:5.866667pt;}
.wsb8{word-spacing:5.925333pt;}
.ws52{word-spacing:5.984000pt;}
.ws7b{word-spacing:6.042667pt;}
.ws8d{word-spacing:6.101333pt;}
.ws26{word-spacing:6.160000pt;}
.wsc7{word-spacing:6.218667pt;}
.ws8{word-spacing:9.472000pt;}
.ws23{word-spacing:11.333333pt;}
.ws9{word-spacing:11.861333pt;}
.ws24{word-spacing:75.296000pt;}
._4{margin-left:-21.333333pt;}
._5{margin-left:-20.188267pt;}
._f{margin-left:-18.480000pt;}
._6{margin-left:-15.680000pt;}
._b{margin-left:-12.085333pt;}
._8{margin-left:-9.936000pt;}
._16{margin-left:-1.971200pt;}
._a{margin-left:-0.997333pt;}
._d{width:0.897333pt;}
._3{width:1.843200pt;}
._10{width:3.040000pt;}
._7{width:4.896000pt;}
._9{width:6.218667pt;}
._1{width:8.832000pt;}
._2{width:10.069333pt;}
._0{width:11.861333pt;}
._13{width:24.448000pt;}
._14{width:28.655467pt;}
._15{width:29.759467pt;}
._e{width:42.648000pt;}
._12{width:46.559467pt;}
._11{width:48.000000pt;}
._c{width:75.296000pt;}
.fsd{font-size:31.200000pt;}
.fs8{font-size:36.000000pt;}
.fsc{font-size:38.133333pt;}
.fs2{font-size:42.666667pt;}
.fsb{font-size:44.000000pt;}
.fs9{font-size:45.333333pt;}
.fs7{font-size:48.000000pt;}
.fs0{font-size:50.666667pt;}
.fs6{font-size:53.333333pt;}
.fs1{font-size:58.666667pt;}
.fse{font-size:64.000000pt;}
.fsa{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;}
.y126{bottom:122.836933pt;}
.y107{bottom:122.839600pt;}
.ye9{bottom:122.839733pt;}
.y179{bottom:122.853067pt;}
.y241{bottom:122.853200pt;}
.y215{bottom:122.873467pt;}
.y96{bottom:123.507333pt;}
.y1a6{bottom:123.977067pt;}
.y6c{bottom:124.048533pt;}
.y14f{bottom:124.164000pt;}
.y1c5{bottom:124.272267pt;}
.yc3{bottom:124.600000pt;}
.y285{bottom:124.707867pt;}
.y9{bottom:124.725733pt;}
.y8{bottom:136.096400pt;}
.y106{bottom:137.047600pt;}
.ye8{bottom:137.047733pt;}
.y178{bottom:137.061067pt;}
.y240{bottom:137.061200pt;}
.y14e{bottom:139.804000pt;}
.y1c4{bottom:139.912267pt;}
.yc2{bottom:140.240000pt;}
.y125{bottom:140.644933pt;}
.y214{bottom:141.353467pt;}
.y95{bottom:141.987333pt;}
.y1a5{bottom:142.457067pt;}
.y6b{bottom:142.528533pt;}
.y284{bottom:143.187867pt;}
.y177{bottom:151.269067pt;}
.y23f{bottom:151.269200pt;}
.y7{bottom:153.128267pt;}
.y105{bottom:154.855600pt;}
.ye7{bottom:154.855733pt;}
.y1c3{bottom:155.552267pt;}
.yc1{bottom:155.880000pt;}
.y213{bottom:159.833467pt;}
.y94{bottom:160.467333pt;}
.y1a4{bottom:160.937067pt;}
.y6a{bottom:161.008533pt;}
.y1ee{bottom:165.471733pt;}
.y176{bottom:165.477067pt;}
.y23e{bottom:165.477200pt;}
.y283{bottom:169.866533pt;}
.y6{bottom:170.173600pt;}
.y1c2{bottom:171.192267pt;}
.yc0{bottom:171.520000pt;}
.y14d{bottom:172.025733pt;}
.y212{bottom:178.313467pt;}
.y293{bottom:178.843867pt;}
.y93{bottom:178.942000pt;}
.y1a3{bottom:179.417067pt;}
.y69{bottom:179.488533pt;}
.y1ed{bottom:179.679733pt;}
.y175{bottom:179.685067pt;}
.y23d{bottom:179.685200pt;}
.y124{bottom:182.420667pt;}
.y1c1{bottom:186.832267pt;}
.y5{bottom:187.218933pt;}
.y282{bottom:188.346533pt;}
.y14c{bottom:190.505733pt;}
.y174{bottom:193.893067pt;}
.y23c{bottom:193.893200pt;}
.y211{bottom:196.793467pt;}
.y292{bottom:197.323867pt;}
.y92{bottom:197.422000pt;}
.y1ec{bottom:197.487733pt;}
.y1a2{bottom:197.897067pt;}
.y68{bottom:197.968533pt;}
.y4{bottom:198.589600pt;}
.ye6{bottom:198.778533pt;}
.y123{bottom:200.900667pt;}
.ybf{bottom:205.614667pt;}
.y173{bottom:208.101067pt;}
.y23b{bottom:208.101200pt;}
.y1eb{bottom:208.111733pt;}
.y14b{bottom:208.985733pt;}
.y261{bottom:213.344533pt;}
.y104{bottom:213.706000pt;}
.ye5{bottom:214.418533pt;}
.y281{bottom:215.025200pt;}
.y210{bottom:215.273467pt;}
.y3{bottom:215.634933pt;}
.y91{bottom:215.899333pt;}
.y1a1{bottom:216.377067pt;}
.y67{bottom:216.448533pt;}
.y122{bottom:219.380667pt;}
.y1ea{bottom:222.319733pt;}
.ybe{bottom:224.094667pt;}
.y1c0{bottom:225.043867pt;}
.y172{bottom:225.909067pt;}
.y23a{bottom:225.909200pt;}
.y2{bottom:227.005600pt;}
.y14a{bottom:227.465733pt;}
.ye4{bottom:230.058533pt;}
.y260{bottom:231.824533pt;}
.y103{bottom:232.186000pt;}
.y280{bottom:233.505200pt;}
.y20f{bottom:233.753467pt;}
.y90{bottom:234.374000pt;}
.y1a0{bottom:234.857067pt;}
.y66{bottom:234.928533pt;}
.y171{bottom:236.522400pt;}
.y1e9{bottom:236.527733pt;}
.y121{bottom:237.860667pt;}
.ybd{bottom:242.574667pt;}
.y1bf{bottom:243.523867pt;}
.ye3{bottom:245.698533pt;}
.y25f{bottom:250.304533pt;}
.y102{bottom:250.666000pt;}
.y1e8{bottom:250.735733pt;}
.y20e{bottom:252.233467pt;}
.y291{bottom:252.763867pt;}
.y8f{bottom:252.854000pt;}
.y19f{bottom:253.337067pt;}
.y65{bottom:253.408533pt;}
.y170{bottom:254.330400pt;}
.y120{bottom:256.340667pt;}
.y27f{bottom:260.183867pt;}
.ybc{bottom:261.054667pt;}
.y1be{bottom:262.003867pt;}
.y149{bottom:262.539867pt;}
.y1e7{bottom:264.943733pt;}
.y16f{bottom:264.949067pt;}
.y101{bottom:269.146000pt;}
.y20d{bottom:270.713467pt;}
.y290{bottom:271.243867pt;}
.y8e{bottom:271.331333pt;}
.y64{bottom:271.888533pt;}
.y11f{bottom:274.820667pt;}
.y25e{bottom:278.024533pt;}
.y148{bottom:278.179867pt;}
.y27e{bottom:278.663867pt;}
.y16e{bottom:279.157067pt;}
.ybb{bottom:279.534667pt;}
.ye2{bottom:279.795867pt;}
.y19e{bottom:280.133067pt;}
.y1bd{bottom:280.483867pt;}
.y3f{bottom:282.724400pt;}
.y2f{bottom:282.736400pt;}
.y1e6{bottom:282.751733pt;}
.y239{bottom:284.011067pt;}
.y100{bottom:287.626000pt;}
.y8d{bottom:289.770400pt;}
.y63{bottom:290.368533pt;}
.y11e{bottom:293.290000pt;}
.y16d{bottom:293.365067pt;}
.y147{bottom:293.819867pt;}
.y25d{bottom:296.504533pt;}
.y3e{bottom:296.932400pt;}
.y2e{bottom:296.944400pt;}
.yba{bottom:298.014667pt;}
.ye1{bottom:298.275867pt;}
.y20c{bottom:298.433467pt;}
.y19d{bottom:298.613067pt;}
.y1bc{bottom:298.963867pt;}
.y238{bottom:302.491067pt;}
.y27d{bottom:305.342533pt;}
.yff{bottom:306.106000pt;}
.y8c{bottom:308.250400pt;}
.y62{bottom:308.848533pt;}
.y146{bottom:309.459867pt;}
.y3d{bottom:311.140400pt;}
.y2d{bottom:311.152400pt;}
.y16c{bottom:311.173067pt;}
.y11d{bottom:311.770000pt;}
.yb9{bottom:316.494667pt;}
.ye0{bottom:316.755867pt;}
.y20b{bottom:316.913467pt;}
.y19c{bottom:317.093067pt;}
.y1bb{bottom:317.443867pt;}
.y237{bottom:320.971067pt;}
.y25c{bottom:324.224533pt;}
.y145{bottom:325.099867pt;}
.y3c{bottom:325.348400pt;}
.y2c{bottom:325.360400pt;}
.y8b{bottom:326.730400pt;}
.y61{bottom:327.328533pt;}
.y11c{bottom:330.250000pt;}
.y27c{bottom:332.021200pt;}
.yb8{bottom:334.974667pt;}
.ydf{bottom:335.235867pt;}
.y20a{bottom:335.393467pt;}
.y19b{bottom:335.573067pt;}
.y1e5{bottom:338.114400pt;}
.y236{bottom:339.451067pt;}
.y3b{bottom:339.556400pt;}
.y2b{bottom:339.568400pt;}
.y144{bottom:340.739867pt;}
.yfe{bottom:343.065467pt;}
.y1ba{bottom:345.163867pt;}
.y8a{bottom:345.210400pt;}
.y60{bottom:345.808533pt;}
.y11b{bottom:348.730000pt;}
.y27b{bottom:350.501200pt;}
.y25b{bottom:351.944533pt;}
.yb7{bottom:353.454667pt;}
.yde{bottom:353.715867pt;}
.y3a{bottom:353.764400pt;}
.y209{bottom:353.873467pt;}
.y19a{bottom:354.053067pt;}
.y1e4{bottom:356.594400pt;}
.y235{bottom:357.931067pt;}
.yfd{bottom:358.705467pt;}
.y2a{bottom:360.880400pt;}
.y1b9{bottom:363.643867pt;}
.y89{bottom:363.690400pt;}
.y5f{bottom:364.288533pt;}
.y11a{bottom:367.210000pt;}
.y39{bottom:367.972400pt;}
.y25a{bottom:370.424533pt;}
.y16b{bottom:371.029333pt;}
.yb6{bottom:371.934667pt;}
.ydd{bottom:372.195867pt;}
.y208{bottom:372.353467pt;}
.y199{bottom:372.533067pt;}
.y143{bottom:372.882533pt;}
.yfc{bottom:374.345467pt;}
.y1e3{bottom:375.066533pt;}
.y234{bottom:376.411067pt;}
.y27a{bottom:377.179867pt;}
.y1b8{bottom:382.123867pt;}
.y38{bottom:382.180400pt;}
.y259{bottom:388.904533pt;}
.y16a{bottom:389.509333pt;}
.yfb{bottom:389.985467pt;}
.ydc{bottom:390.675867pt;}
.y207{bottom:390.833467pt;}
.y198{bottom:391.013067pt;}
.y142{bottom:391.362533pt;}
.y88{bottom:391.410400pt;}
.y5e{bottom:392.008533pt;}
.y1e2{bottom:393.546533pt;}
.y233{bottom:394.891067pt;}
.y37{bottom:396.388400pt;}
.y1b7{bottom:400.603867pt;}
.y279{bottom:403.858533pt;}
.y119{bottom:404.169467pt;}
.y169{bottom:407.989333pt;}
.ydb{bottom:409.155867pt;}
.y206{bottom:409.313467pt;}
.y197{bottom:409.493067pt;}
.y141{bottom:409.842533pt;}
.y28f{bottom:409.843867pt;}
.y87{bottom:409.890400pt;}
.y5d{bottom:410.488533pt;}
.y36{bottom:410.596400pt;}
.yb5{bottom:410.787067pt;}
.y1e1{bottom:412.026533pt;}
.y232{bottom:413.371067pt;}
.y1b6{bottom:419.083867pt;}
.y118{bottom:419.809467pt;}
.y278{bottom:422.338533pt;}
.yfa{bottom:424.080133pt;}
.y35{bottom:424.804400pt;}
.yb4{bottom:426.427067pt;}
.y168{bottom:426.464000pt;}
.yda{bottom:427.635867pt;}
.y205{bottom:427.793467pt;}
.y196{bottom:427.973067pt;}
.y140{bottom:428.322533pt;}
.y86{bottom:428.370400pt;}
.y5c{bottom:428.968533pt;}
.y258{bottom:429.849200pt;}
.y1e0{bottom:430.506533pt;}
.y231{bottom:431.851067pt;}
.y117{bottom:435.449467pt;}
.y1b5{bottom:437.563867pt;}
.y34{bottom:439.012400pt;}
.yb3{bottom:442.067067pt;}
.yf9{bottom:442.560133pt;}
.y167{bottom:444.944000pt;}
.y204{bottom:446.273467pt;}
.y195{bottom:446.453067pt;}
.y13f{bottom:446.802533pt;}
.y85{bottom:446.850400pt;}
.y5b{bottom:447.448533pt;}
.y277{bottom:449.017200pt;}
.y230{bottom:450.331067pt;}
.y116{bottom:451.089467pt;}
.y33{bottom:453.268400pt;}
.y1b4{bottom:456.043867pt;}
.yb2{bottom:457.707067pt;}
.yf8{bottom:461.040133pt;}
.y166{bottom:463.424000pt;}
.y203{bottom:464.753467pt;}
.y194{bottom:464.933067pt;}
.y13e{bottom:465.282533pt;}
.y84{bottom:465.330400pt;}
.y5a{bottom:465.928533pt;}
.y1df{bottom:467.465867pt;}
.y32{bottom:467.476400pt;}
.y276{bottom:467.497200pt;}
.yd9{bottom:468.583200pt;}
.y22f{bottom:468.811067pt;}
.yb1{bottom:473.347067pt;}
.y1b3{bottom:474.523867pt;}
.yf7{bottom:479.520133pt;}
.y31{bottom:481.684400pt;}
.y1de{bottom:483.105867pt;}
.y202{bottom:483.233467pt;}
.y193{bottom:483.413067pt;}
.y13d{bottom:483.762533pt;}
.y28e{bottom:483.763867pt;}
.y83{bottom:483.810400pt;}
.y59{bottom:484.408533pt;}
.y115{bottom:485.197467pt;}
.yd8{bottom:491.324533pt;}
.y1b2{bottom:493.003867pt;}
.y275{bottom:494.175867pt;}
.y30{bottom:495.892400pt;}
.y22e{bottom:496.531067pt;}
.yf6{bottom:498.000133pt;}
.y1dd{bottom:498.745867pt;}
.y165{bottom:500.386133pt;}
.y201{bottom:501.713467pt;}
.y192{bottom:501.893067pt;}
.y13c{bottom:502.242533pt;}
.y28d{bottom:502.243867pt;}
.y82{bottom:502.290400pt;}
.y114{bottom:503.677467pt;}
.y257{bottom:505.447200pt;}
.yb0{bottom:507.457733pt;}
.y1b1{bottom:511.483867pt;}
.y1dc{bottom:514.385867pt;}
.y22d{bottom:515.011067pt;}
.y164{bottom:516.026133pt;}
.yf5{bottom:516.480133pt;}
.y200{bottom:520.193467pt;}
.y191{bottom:520.373067pt;}
.y13b{bottom:520.722533pt;}
.y28c{bottom:520.723867pt;}
.y81{bottom:520.770400pt;}
.y274{bottom:520.854533pt;}
.y113{bottom:522.157467pt;}
.y256{bottom:523.927200pt;}
.y58{bottom:525.150800pt;}
.yaf{bottom:525.937733pt;}
.y1b0{bottom:529.963867pt;}
.y163{bottom:531.666133pt;}
.y22c{bottom:533.491067pt;}
.yf4{bottom:534.960133pt;}
.y18{bottom:535.343200pt;}
.y29{bottom:535.360400pt;}
.y1ff{bottom:538.673467pt;}
.y190{bottom:538.853067pt;}
.y28b{bottom:539.203867pt;}
.y80{bottom:539.250400pt;}
.y273{bottom:539.334533pt;}
.y112{bottom:540.637467pt;}
.y57{bottom:540.790800pt;}
.y255{bottom:542.407200pt;}
.yae{bottom:544.417733pt;}
.y162{bottom:547.306133pt;}
.y13a{bottom:548.442533pt;}
.y1af{bottom:548.443867pt;}
.y1db{bottom:548.496533pt;}
.y17{bottom:549.551200pt;}
.y28{bottom:549.568400pt;}
.y22b{bottom:551.971067pt;}
.yf3{bottom:553.440133pt;}
.y56{bottom:556.430800pt;}
.y1fe{bottom:557.153467pt;}
.y18f{bottom:557.333067pt;}
.y7f{bottom:557.730400pt;}
.y272{bottom:557.814533pt;}
.y111{bottom:559.117467pt;}
.y254{bottom:560.887200pt;}
.yad{bottom:562.897733pt;}
.y161{bottom:562.946133pt;}
.y16{bottom:563.759200pt;}
.y27{bottom:563.776400pt;}
.y139{bottom:566.922533pt;}
.y1ae{bottom:566.923867pt;}
.yd7{bottom:566.941067pt;}
.y1da{bottom:566.976533pt;}
.y22a{bottom:570.451067pt;}
.yf2{bottom:571.920133pt;}
.y55{bottom:572.070800pt;}
.y18e{bottom:575.813067pt;}
.y7e{bottom:576.210400pt;}
.y15{bottom:577.967200pt;}
.y26{bottom:577.984400pt;}
.y160{bottom:578.586133pt;}
.y253{bottom:579.367200pt;}
.y271{bottom:584.493200pt;}
.y138{bottom:585.402533pt;}
.y1ad{bottom:585.403867pt;}
.yd6{bottom:585.421067pt;}
.y1d9{bottom:585.456533pt;}
.y54{bottom:587.710800pt;}
.y229{bottom:588.931067pt;}
.yf1{bottom:590.400133pt;}
.y14{bottom:592.175200pt;}
.y25{bottom:592.192400pt;}
.y1fd{bottom:594.118267pt;}
.y18d{bottom:594.293067pt;}
.y110{bottom:596.080933pt;}
.y252{bottom:597.847200pt;}
.yac{bottom:601.755467pt;}
.y270{bottom:602.973200pt;}
.y137{bottom:603.882533pt;}
.y1ac{bottom:603.883867pt;}
.y1d8{bottom:603.885333pt;}
.yd5{bottom:603.901067pt;}
.y24{bottom:606.400400pt;}
.y228{bottom:607.411067pt;}
.y1fc{bottom:609.758267pt;}
.y10f{bottom:611.720933pt;}
.y15f{bottom:612.699467pt;}
.y28a{bottom:613.123867pt;}
.y13{bottom:613.487200pt;}
.y251{bottom:616.327200pt;}
.y7d{bottom:616.401867pt;}
.yab{bottom:617.395467pt;}
.y23{bottom:620.608400pt;}
.y18c{bottom:621.089067pt;}
.y136{bottom:622.362533pt;}
.y1ab{bottom:622.363867pt;}
.y1d7{bottom:622.365333pt;}
.yd4{bottom:622.381067pt;}
.y1fb{bottom:625.398267pt;}
.y53{bottom:625.564533pt;}
.y227{bottom:625.891067pt;}
.yf0{bottom:627.360933pt;}
.y26f{bottom:629.651867pt;}
.y15e{bottom:631.179467pt;}
.y289{bottom:631.603867pt;}
.yaa{bottom:633.035467pt;}
.y250{bottom:634.807200pt;}
.y22{bottom:634.816400pt;}
.y7c{bottom:639.143200pt;}
.y18b{bottom:639.569067pt;}
.y135{bottom:640.842533pt;}
.y1aa{bottom:640.843867pt;}
.y1d6{bottom:640.845333pt;}
.yd3{bottom:640.861067pt;}
.y1fa{bottom:641.038267pt;}
.yef{bottom:643.000933pt;}
.y52{bottom:644.044533pt;}
.y226{bottom:644.357600pt;}
.y26e{bottom:648.131867pt;}
.ya9{bottom:648.675467pt;}
.y21{bottom:649.024400pt;}
.y15d{bottom:649.659467pt;}
.y24f{bottom:653.287200pt;}
.y1f9{bottom:656.678267pt;}
.y18a{bottom:658.049067pt;}
.yee{bottom:658.640933pt;}
.y134{bottom:659.322533pt;}
.y288{bottom:659.323867pt;}
.y1d5{bottom:659.325333pt;}
.yd2{bottom:659.341067pt;}
.y51{bottom:662.524533pt;}
.y225{bottom:662.837600pt;}
.y20{bottom:663.232400pt;}
.ya8{bottom:664.315467pt;}
.y1a9{bottom:668.563867pt;}
.y24e{bottom:671.767200pt;}
.y1f8{bottom:672.318267pt;}
.yed{bottom:674.280933pt;}
.y26d{bottom:674.810533pt;}
.y189{bottom:676.529067pt;}
.y1f{bottom:677.440400pt;}
.y133{bottom:677.802533pt;}
.y287{bottom:677.803867pt;}
.y1d4{bottom:677.805333pt;}
.yd1{bottom:677.821067pt;}
.ya7{bottom:679.955467pt;}
.y50{bottom:681.004533pt;}
.y224{bottom:681.317600pt;}
.y1a8{bottom:687.043867pt;}
.y1f7{bottom:687.958267pt;}
.yec{bottom:689.920933pt;}
.y24d{bottom:690.247200pt;}
.y15c{bottom:690.606800pt;}
.y1e{bottom:691.648400pt;}
.y26c{bottom:693.290533pt;}
.y188{bottom:695.009067pt;}
.ya6{bottom:695.595467pt;}
.y132{bottom:696.282533pt;}
.y1d3{bottom:696.285333pt;}
.yd0{bottom:696.301067pt;}
.y4f{bottom:699.484533pt;}
.y223{bottom:699.797600pt;}
.y1f6{bottom:703.598267pt;}
.y1a7{bottom:705.523867pt;}
.y1d{bottom:705.887200pt;}
.y24c{bottom:708.727200pt;}
.ya5{bottom:711.235467pt;}
.y15b{bottom:713.348133pt;}
.y187{bottom:713.489067pt;}
.y131{bottom:714.762533pt;}
.y7b{bottom:714.763867pt;}
.y1d2{bottom:714.765333pt;}
.ycf{bottom:714.781067pt;}
.y4e{bottom:717.964533pt;}
.y222{bottom:718.277600pt;}
.y26b{bottom:719.969200pt;}
.y1c{bottom:720.095200pt;}
.yeb{bottom:724.002533pt;}
.y10e{bottom:724.003867pt;}
.ya4{bottom:726.875467pt;}
.y24b{bottom:727.207200pt;}
.y186{bottom:731.969067pt;}
.y130{bottom:733.242533pt;}
.y7a{bottom:733.243867pt;}
.y1d1{bottom:733.245333pt;}
.yce{bottom:733.261067pt;}
.y1b{bottom:734.303200pt;}
.y4d{bottom:736.444533pt;}
.y221{bottom:736.757600pt;}
.y1f5{bottom:737.702667pt;}
.y26a{bottom:738.449200pt;}
.yea{bottom:742.482533pt;}
.y10d{bottom:742.483867pt;}
.y24a{bottom:745.687200pt;}
.y1a{bottom:748.511200pt;}
.y185{bottom:750.449067pt;}
.y12f{bottom:751.722533pt;}
.y79{bottom:751.723867pt;}
.y1d0{bottom:751.725333pt;}
.ycd{bottom:751.741067pt;}
.y4c{bottom:754.924533pt;}
.y1f4{bottom:756.182667pt;}
.ya3{bottom:760.962533pt;}
.y10c{bottom:760.963867pt;}
.y19{bottom:762.719200pt;}
.y249{bottom:764.167200pt;}
.y269{bottom:765.127867pt;}
.y184{bottom:768.929067pt;}
.y12e{bottom:770.202533pt;}
.y78{bottom:770.203867pt;}
.ycc{bottom:770.221067pt;}
.y4b{bottom:773.404533pt;}
.y220{bottom:773.726667pt;}
.y1f3{bottom:774.662667pt;}
.ya2{bottom:779.442533pt;}
.y10b{bottom:779.443867pt;}
.y1cf{bottom:779.445333pt;}
.y248{bottom:782.647200pt;}
.y268{bottom:783.607867pt;}
.y183{bottom:787.409067pt;}
.y12d{bottom:788.682533pt;}
.y77{bottom:788.683867pt;}
.ycb{bottom:788.701067pt;}
.y15a{bottom:788.997600pt;}
.y21f{bottom:789.366667pt;}
.y4a{bottom:791.884533pt;}
.ya1{bottom:797.922533pt;}
.y10a{bottom:797.923867pt;}
.y1ce{bottom:797.925333pt;}
.y1f2{bottom:802.382667pt;}
.y21e{bottom:805.006667pt;}
.y182{bottom:805.889067pt;}
.y12c{bottom:807.162533pt;}
.y76{bottom:807.163867pt;}
.yca{bottom:807.181067pt;}
.y159{bottom:807.477600pt;}
.y267{bottom:810.286533pt;}
.y49{bottom:810.364533pt;}
.y247{bottom:810.367200pt;}
.ya0{bottom:816.402533pt;}
.y109{bottom:816.403867pt;}
.y1cd{bottom:816.405333pt;}
.y21d{bottom:820.646667pt;}
.y1f1{bottom:820.862667pt;}
.y181{bottom:824.369067pt;}
.y12b{bottom:825.642533pt;}
.y75{bottom:825.643867pt;}
.y158{bottom:825.957600pt;}
.y12{bottom:826.952267pt;}
.y266{bottom:828.766533pt;}
.y48{bottom:828.844533pt;}
.y246{bottom:828.847200pt;}
.y9f{bottom:834.882533pt;}
.y108{bottom:834.883867pt;}
.y1cc{bottom:834.885333pt;}
.yc9{bottom:834.901067pt;}
.y21c{bottom:836.286667pt;}
.y1f0{bottom:839.342667pt;}
.y12a{bottom:844.122533pt;}
.y74{bottom:844.123867pt;}
.y157{bottom:844.429733pt;}
.y11{bottom:845.421467pt;}
.y47{bottom:847.324533pt;}
.y245{bottom:847.327200pt;}
.y180{bottom:851.165067pt;}
.y21b{bottom:851.926667pt;}
.y9e{bottom:853.362533pt;}
.yc8{bottom:853.363867pt;}
.y1cb{bottom:853.365333pt;}
.y265{bottom:855.445200pt;}
.y129{bottom:862.602533pt;}
.y73{bottom:862.603867pt;}
.y156{bottom:862.909733pt;}
.y46{bottom:865.804533pt;}
.y244{bottom:865.807200pt;}
.y21a{bottom:867.566667pt;}
.y17f{bottom:869.645067pt;}
.y9d{bottom:871.842533pt;}
.yc7{bottom:871.843867pt;}
.y1ca{bottom:871.845333pt;}
.y264{bottom:873.925200pt;}
.y1ef{bottom:880.287467pt;}
.y128{bottom:881.082533pt;}
.y72{bottom:881.083867pt;}
.y155{bottom:881.389733pt;}
.y219{bottom:883.206667pt;}
.y45{bottom:884.284533pt;}
.y243{bottom:884.287200pt;}
.y10{bottom:884.882800pt;}
.y17e{bottom:888.125067pt;}
.y9c{bottom:890.322533pt;}
.yc6{bottom:890.323867pt;}
.y1c9{bottom:890.325333pt;}
.y218{bottom:898.846667pt;}
.y127{bottom:899.562533pt;}
.y71{bottom:899.563867pt;}
.y154{bottom:899.869733pt;}
.y263{bottom:900.603867pt;}
.y44{bottom:902.764533pt;}
.y242{bottom:902.767200pt;}
.y17d{bottom:906.605067pt;}
.yf{bottom:907.282800pt;}
.y9b{bottom:908.802533pt;}
.yc5{bottom:908.803867pt;}
.y1c8{bottom:908.805333pt;}
.y217{bottom:914.486667pt;}
.y70{bottom:918.043867pt;}
.y262{bottom:919.083867pt;}
.y43{bottom:921.244533pt;}
.y17c{bottom:925.085067pt;}
.y9a{bottom:927.282533pt;}
.yc4{bottom:927.283867pt;}
.y1c7{bottom:927.285333pt;}
.y216{bottom:930.126667pt;}
.y286{bottom:936.523867pt;}
.y153{bottom:936.829200pt;}
.y42{bottom:939.724533pt;}
.y17b{bottom:943.565067pt;}
.y99{bottom:945.762533pt;}
.y6f{bottom:945.763867pt;}
.y1c6{bottom:945.765333pt;}
.ye{bottom:946.736000pt;}
.y152{bottom:952.469200pt;}
.y98{bottom:964.242533pt;}
.y6e{bottom:964.243867pt;}
.y151{bottom:968.109200pt;}
.yd{bottom:975.536000pt;}
.y41{bottom:980.669333pt;}
.y17a{bottom:981.696000pt;}
.y97{bottom:982.722533pt;}
.y6d{bottom:982.723867pt;}
.y150{bottom:983.749200pt;}
.yc{bottom:1033.547067pt;}
.y40{bottom:1041.982133pt;}
.yb{bottom:1061.227067pt;}
.ya{bottom:1073.227067pt;}
.h4{height:31.402667pt;}
.h12{height:31.584000pt;}
.h3{height:31.701333pt;}
.h2{height:40.304688pt;}
.hb{height:43.429333pt;}
.h9{height:45.312000pt;}
.ha{height:45.984000pt;}
.h8{height:51.093333pt;}
.hd{height:56.202667pt;}
.hf{height:56.213333pt;}
.h18{height:56.213867pt;}
.h10{height:56.224000pt;}
.h15{height:56.234133pt;}
.h16{height:56.234667pt;}
.h14{height:56.245333pt;}
.h1a{height:56.256533pt;}
.h11{height:56.271467pt;}
.h13{height:56.350933pt;}
.he{height:56.366400pt;}
.h19{height:56.407467pt;}
.h6{height:57.344000pt;}
.h17{height:60.416000pt;}
.hc{height:65.450667pt;}
.h7{height:71.530667pt;}
.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;}
.x10{left:77.308933pt;}
.xc{left:83.316267pt;}
.x14{left:94.489333pt;}
.x13{left:96.206400pt;}
.x2{left:98.267867pt;}
.x11{left:115.120000pt;}
.x16{left:120.939867pt;}
.x15{left:122.665333pt;}
.x3{left:129.062800pt;}
.x4{left:134.396133pt;}
.xf{left:136.062933pt;}
.x12{left:137.788400pt;}
.xd{left:253.392267pt;}
.x6{left:263.833333pt;}
.x8{left:275.418400pt;}
.x7{left:445.083867pt;}
.x9{left:494.658400pt;}
.xa{left:567.850400pt;}
.xb{left:578.058667pt;}
.xe{left:631.185067pt;}
.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; }
  