
    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_39c78d3f843810557aa06dcf.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.893555;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_525b84e770955e2713752b27.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.675781;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_3ecdcf4a4cd132f8719191ea.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.049805;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_069f030e71534763d7b7c542.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.910156;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_732f5fc7eb90ec79a2b207d3.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.896484;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_6beab3f2e911ef42a4e181c1.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_e90939d529aac5b513d90c51.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.910645;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_f0851e5df4d30e763de689df.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_5613bbb78fdf1224e8cb7172.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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:-27.360000px;}
.v6{vertical-align:-20.880000px;}
.v3{vertical-align:-5.760000px;}
.v5{vertical-align:-2.880000px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:5.760000px;}
.v7{vertical-align:20.880000px;}
.v1{vertical-align:27.360000px;}
.ls2b{letter-spacing:-1.008000px;}
.ls1a{letter-spacing:-0.936000px;}
.lse{letter-spacing:-0.720000px;}
.ls19{letter-spacing:-0.675360px;}
.ls10{letter-spacing:-0.530640px;}
.ls38{letter-spacing:-0.482400px;}
.ls46{letter-spacing:-0.432000px;}
.ls11{letter-spacing:-0.337680px;}
.ls1f{letter-spacing:-0.289440px;}
.lsb{letter-spacing:-0.288000px;}
.ls39{letter-spacing:-0.241200px;}
.ls34{letter-spacing:-0.239040px;}
.lsd{letter-spacing:-0.216000px;}
.ls20{letter-spacing:-0.192960px;}
.ls9{letter-spacing:-0.144000px;}
.ls31{letter-spacing:-0.119520px;}
.ls21{letter-spacing:-0.072000px;}
.ls32{letter-spacing:-0.059760px;}
.ls43{letter-spacing:-0.048240px;}
.ls35{letter-spacing:-0.038880px;}
.ls7{letter-spacing:0.000000px;}
.lsf{letter-spacing:0.048240px;}
.ls44{letter-spacing:0.059760px;}
.ls28{letter-spacing:0.072000px;}
.ls6{letter-spacing:0.084240px;}
.ls30{letter-spacing:0.119520px;}
.lsa{letter-spacing:0.144000px;}
.ls45{letter-spacing:0.174240px;}
.ls41{letter-spacing:0.179280px;}
.ls0{letter-spacing:0.181440px;}
.ls1{letter-spacing:0.192960px;}
.ls2e{letter-spacing:0.206640px;}
.ls50{letter-spacing:0.216000px;}
.ls1d{letter-spacing:0.223920px;}
.ls33{letter-spacing:0.239040px;}
.lsc{letter-spacing:0.264960px;}
.ls2{letter-spacing:0.288000px;}
.ls4b{letter-spacing:0.289440px;}
.ls4e{letter-spacing:0.295200px;}
.ls8{letter-spacing:0.336960px;}
.ls2d{letter-spacing:0.358560px;}
.ls4{letter-spacing:0.360000px;}
.ls12{letter-spacing:0.385920px;}
.ls42{letter-spacing:0.412344px;}
.ls3{letter-spacing:0.504000px;}
.ls29{letter-spacing:0.720000px;}
.ls3b{letter-spacing:0.792000px;}
.ls47{letter-spacing:0.864000px;}
.ls25{letter-spacing:1.440000px;}
.ls14{letter-spacing:2.160000px;}
.ls2c{letter-spacing:2.880000px;}
.ls1e{letter-spacing:3.600000px;}
.ls4c{letter-spacing:4.305600px;}
.ls1c{letter-spacing:4.320000px;}
.ls36{letter-spacing:5.040000px;}
.ls1b{letter-spacing:5.760000px;}
.ls22{letter-spacing:6.480000px;}
.ls3c{letter-spacing:7.200000px;}
.ls18{letter-spacing:7.920000px;}
.ls3f{letter-spacing:8.640000px;}
.ls23{letter-spacing:9.360000px;}
.ls5{letter-spacing:10.080000px;}
.ls26{letter-spacing:10.800000px;}
.ls13{letter-spacing:10.944000px;}
.ls3d{letter-spacing:11.697840px;}
.ls16{letter-spacing:12.240000px;}
.ls15{letter-spacing:12.960000px;}
.ls17{letter-spacing:13.680000px;}
.ls3e{letter-spacing:14.400000px;}
.ls4d{letter-spacing:15.120000px;}
.ls24{letter-spacing:15.840000px;}
.ls4f{letter-spacing:16.560000px;}
.ls2a{letter-spacing:17.280000px;}
.ls48{letter-spacing:19.440000px;}
.ls37{letter-spacing:22.320000px;}
.ls3a{letter-spacing:24.480000px;}
.ls40{letter-spacing:25.200000px;}
.ls27{letter-spacing:28.080000px;}
.ls49{letter-spacing:65.664000px;}
.ls4a{letter-spacing:69.480000px;}
.ls2f{letter-spacing:221.948640px;}
.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:-21.144240px;}
.ws1{word-spacing:-21.060000px;}
.ws9d{word-spacing:-18.864000px;}
.ws28{word-spacing:-18.288000px;}
.wsc0{word-spacing:-18.216000px;}
.ws27{word-spacing:-18.144000px;}
.wsbd{word-spacing:-18.072000px;}
.ws3{word-spacing:-18.000000px;}
.wsaa{word-spacing:-17.928000px;}
.ws4{word-spacing:-17.856000px;}
.wsb{word-spacing:-17.784000px;}
.ws5{word-spacing:-17.712000px;}
.wsbf{word-spacing:-17.568000px;}
.wsa1{word-spacing:-16.560000px;}
.ws72{word-spacing:-15.298560px;}
.ws75{word-spacing:-15.179040px;}
.ws74{word-spacing:-15.059520px;}
.ws98{word-spacing:-14.999760px;}
.wsa5{word-spacing:-14.970240px;}
.ws77{word-spacing:-14.940000px;}
.ws73{word-spacing:-14.880240px;}
.ws71{word-spacing:-14.820480px;}
.wsa{word-spacing:-12.445920px;}
.wsaf{word-spacing:-12.349440px;}
.ws2{word-spacing:-12.252960px;}
.ws7{word-spacing:-12.108240px;}
.ws6{word-spacing:-12.060000px;}
.ws97{word-spacing:-12.011760px;}
.ws3c{word-spacing:-11.867040px;}
.ws82{word-spacing:-11.818800px;}
.ws3b{word-spacing:-11.770560px;}
.ws9{word-spacing:-11.722320px;}
.ws81{word-spacing:-11.577600px;}
.ws8{word-spacing:-11.529360px;}
.ws26{word-spacing:-11.384640px;}
.ws76{word-spacing:-9.720000px;}
.ws78{word-spacing:-9.681120px;}
.ws40{word-spacing:-4.320000px;}
.ws41{word-spacing:-4.032000px;}
.ws50{word-spacing:-3.744000px;}
.ws38{word-spacing:-3.600000px;}
.ws48{word-spacing:-3.384000px;}
.ws4f{word-spacing:-3.312000px;}
.ws61{word-spacing:-3.024000px;}
.ws17{word-spacing:-2.880000px;}
.ws60{word-spacing:-2.592000px;}
.ws46{word-spacing:-2.304000px;}
.ws2a{word-spacing:-2.160000px;}
.ws45{word-spacing:-1.872000px;}
.ws92{word-spacing:-1.584000px;}
.ws3d{word-spacing:-1.440000px;}
.wsc{word-spacing:-1.263600px;}
.ws8e{word-spacing:-1.152000px;}
.ws2e{word-spacing:-0.864000px;}
.ws22{word-spacing:-0.720000px;}
.ws9f{word-spacing:-0.504000px;}
.ws9a{word-spacing:-0.478080px;}
.ws53{word-spacing:-0.432000px;}
.ws7b{word-spacing:-0.358560px;}
.ws87{word-spacing:-0.288000px;}
.ws16{word-spacing:-0.264960px;}
.ws7a{word-spacing:-0.179280px;}
.wsf{word-spacing:-0.144000px;}
.ws7d{word-spacing:-0.119520px;}
.wsb5{word-spacing:-0.072000px;}
.wsae{word-spacing:-0.048240px;}
.wsd{word-spacing:0.000000px;}
.ws79{word-spacing:0.059760px;}
.ws4b{word-spacing:0.072000px;}
.wsc1{word-spacing:0.132480px;}
.ws95{word-spacing:0.144000px;}
.ws4a{word-spacing:0.216000px;}
.ws7e{word-spacing:0.239040px;}
.ws13{word-spacing:0.288000px;}
.ws7c{word-spacing:0.418320px;}
.wsa0{word-spacing:0.432000px;}
.ws99{word-spacing:0.482400px;}
.ws89{word-spacing:0.576000px;}
.ws1f{word-spacing:0.720000px;}
.ws29{word-spacing:0.936000px;}
.ws42{word-spacing:1.008000px;}
.ws5b{word-spacing:1.296000px;}
.wsb1{word-spacing:1.368000px;}
.ws5a{word-spacing:1.440000px;}
.ws57{word-spacing:1.728000px;}
.ws96{word-spacing:2.016000px;}
.ws18{word-spacing:2.160000px;}
.wsa7{word-spacing:2.376000px;}
.ws88{word-spacing:2.448000px;}
.ws21{word-spacing:2.736000px;}
.ws5e{word-spacing:2.808000px;}
.ws20{word-spacing:2.880000px;}
.ws7f{word-spacing:3.168000px;}
.ws44{word-spacing:3.600000px;}
.wsa2{word-spacing:3.816000px;}
.ws4e{word-spacing:3.888000px;}
.ws49{word-spacing:4.176000px;}
.ws23{word-spacing:4.320000px;}
.wsab{word-spacing:4.536000px;}
.ws47{word-spacing:4.608000px;}
.wsa4{word-spacing:4.896000px;}
.wse{word-spacing:5.040000px;}
.ws3a{word-spacing:5.328000px;}
.ws3e{word-spacing:5.616000px;}
.ws12{word-spacing:5.760000px;}
.ws3f{word-spacing:6.048000px;}
.ws9b{word-spacing:6.336000px;}
.ws4c{word-spacing:6.480000px;}
.ws68{word-spacing:6.768000px;}
.ws8b{word-spacing:7.056000px;}
.ws59{word-spacing:7.200000px;}
.ws67{word-spacing:7.488000px;}
.ws43{word-spacing:7.776000px;}
.ws5d{word-spacing:7.848000px;}
.ws37{word-spacing:7.920000px;}
.ws35{word-spacing:8.208000px;}
.ws91{word-spacing:8.496000px;}
.ws36{word-spacing:8.640000px;}
.wsad{word-spacing:8.856000px;}
.ws63{word-spacing:8.928000px;}
.ws51{word-spacing:9.216000px;}
.ws52{word-spacing:9.360000px;}
.wsa6{word-spacing:9.648000px;}
.ws39{word-spacing:9.936000px;}
.ws24{word-spacing:10.080000px;}
.ws25{word-spacing:10.368000px;}
.wsb7{word-spacing:10.656000px;}
.ws2f{word-spacing:10.800000px;}
.ws19{word-spacing:11.088000px;}
.ws6c{word-spacing:11.520000px;}
.ws6b{word-spacing:11.808000px;}
.wsba{word-spacing:12.096000px;}
.ws32{word-spacing:12.240000px;}
.ws31{word-spacing:12.528000px;}
.ws9e{word-spacing:12.816000px;}
.ws33{word-spacing:12.960000px;}
.ws83{word-spacing:13.536000px;}
.ws1e{word-spacing:13.680000px;}
.ws1d{word-spacing:13.896000px;}
.ws1c{word-spacing:13.968000px;}
.ws8c{word-spacing:14.256000px;}
.ws64{word-spacing:14.400000px;}
.ws8d{word-spacing:14.616000px;}
.ws8a{word-spacing:14.688000px;}
.ws11{word-spacing:14.976000px;}
.ws66{word-spacing:15.120000px;}
.ws65{word-spacing:15.408000px;}
.ws15{word-spacing:15.696000px;}
.ws14{word-spacing:15.840000px;}
.ws54{word-spacing:16.128000px;}
.ws5c{word-spacing:16.560000px;}
.wsac{word-spacing:16.848000px;}
.wsbc{word-spacing:17.136000px;}
.ws6a{word-spacing:17.280000px;}
.ws69{word-spacing:17.568000px;}
.ws55{word-spacing:18.000000px;}
.ws80{word-spacing:18.288000px;}
.ws58{word-spacing:18.720000px;}
.ws9c{word-spacing:19.008000px;}
.ws70{word-spacing:19.296000px;}
.ws6e{word-spacing:19.440000px;}
.ws6f{word-spacing:19.656000px;}
.wsb4{word-spacing:20.016000px;}
.ws90{word-spacing:20.160000px;}
.ws8f{word-spacing:20.448000px;}
.ws34{word-spacing:20.880000px;}
.wsb8{word-spacing:21.168000px;}
.ws2b{word-spacing:21.456000px;}
.wsb0{word-spacing:21.600000px;}
.ws6d{word-spacing:21.888000px;}
.ws30{word-spacing:22.176000px;}
.ws1b{word-spacing:22.320000px;}
.ws1a{word-spacing:22.608000px;}
.ws84{word-spacing:23.040000px;}
.ws56{word-spacing:23.760000px;}
.ws5f{word-spacing:24.048000px;}
.wsb3{word-spacing:24.336000px;}
.ws85{word-spacing:24.480000px;}
.wsb2{word-spacing:24.768000px;}
.ws93{word-spacing:25.200000px;}
.ws94{word-spacing:25.488000px;}
.ws86{word-spacing:25.920000px;}
.wsb6{word-spacing:26.208000px;}
.ws4d{word-spacing:26.640000px;}
.wsa3{word-spacing:26.928000px;}
.ws2c{word-spacing:27.360000px;}
.ws2d{word-spacing:27.648000px;}
.wsbb{word-spacing:28.080000px;}
.wsa9{word-spacing:29.520000px;}
.ws10{word-spacing:32.400000px;}
.ws62{word-spacing:33.120000px;}
.wsa8{word-spacing:33.840000px;}
.wsbe{word-spacing:34.560000px;}
.wsb9{word-spacing:35.280000px;}
._79{margin-left:-4373.588880px;}
._78{margin-left:-4165.200000px;}
._7a{margin-left:-3373.001280px;}
._44{margin-left:-2864.160000px;}
._88{margin-left:-2814.256800px;}
._3d{margin-left:-2811.553200px;}
._72{margin-left:-2807.771040px;}
._3a{margin-left:-2805.842880px;}
._58{margin-left:-2804.333760px;}
._38{margin-left:-2802.721680px;}
._56{margin-left:-2801.638080px;}
._86{margin-left:-2800.562400px;}
._5c{margin-left:-2799.308160px;}
._4c{margin-left:-2797.921440px;}
._66{margin-left:-2796.318720px;}
._46{margin-left:-2794.383360px;}
._41{margin-left:-2792.764080px;}
._55{margin-left:-2791.278720px;}
._49{margin-left:-2790.193680px;}
._2d{margin-left:-2788.297200px;}
._30{margin-left:-2786.680800px;}
._2e{margin-left:-2784.799440px;}
._3b{margin-left:-2783.661840px;}
._34{margin-left:-2782.376640px;}
._36{margin-left:-2781.182160px;}
._32{margin-left:-2779.980480px;}
._33{margin-left:-2778.338880px;}
._35{margin-left:-2776.351680px;}
._31{margin-left:-2774.952000px;}
._75{margin-left:-2773.664640px;}
._1c{margin-left:-2771.729280px;}
._101{margin-left:-2769.872400px;}
._1e{margin-left:-2767.703760px;}
._10{margin-left:-2766.571200px;}
._2a{margin-left:-2765.090880px;}
._2c{margin-left:-2763.072000px;}
._c9{margin-left:-2761.952400px;}
._2b{margin-left:-2760.037200px;}
._21{margin-left:-2757.566160px;}
._f{margin-left:-2755.206720px;}
._27{margin-left:-2752.754400px;}
._28{margin-left:-2751.657840px;}
._17{margin-left:-2750.497200px;}
._16{margin-left:-2748.605760px;}
._14{margin-left:-2747.394720px;}
._e{margin-left:-2746.226880px;}
._d{margin-left:-2744.638560px;}
._5{margin-left:-2743.304400px;}
._1a{margin-left:-2741.960160px;}
._24{margin-left:-2740.897440px;}
._111{margin-left:-2739.595680px;}
._ff{margin-left:-2736.934560px;}
._a9{margin-left:-2734.955280px;}
._bf{margin-left:-2729.376000px;}
._9{margin-left:-2727.395280px;}
._6{margin-left:-2726.348400px;}
._f6{margin-left:-2721.240000px;}
._68{margin-left:-2719.833120px;}
._7{margin-left:-2717.956080px;}
._ce{margin-left:-2716.883280px;}
._11b{margin-left:-2715.454800px;}
._1b{margin-left:-2713.897440px;}
._e4{margin-left:-2711.448000px;}
._4{margin-left:-2710.188720px;}
._10e{margin-left:-2707.200000px;}
._d1{margin-left:-2703.059280px;}
._112{margin-left:-2701.078560px;}
._a0{margin-left:-2699.315280px;}
._e7{margin-left:-2697.480000px;}
._124{margin-left:-2695.106880px;}
._a7{margin-left:-2693.525760px;}
._cf{margin-left:-2691.536400px;}
._b6{margin-left:-2689.307280px;}
._aa{margin-left:-2687.443200px;}
._50{margin-left:-2684.580480px;}
._3{margin-left:-2682.355680px;}
._fe{margin-left:-2681.171280px;}
._9e{margin-left:-2679.371280px;}
._b3{margin-left:-2674.835280px;}
._bd{margin-left:-2673.323280px;}
._74{margin-left:-2665.728000px;}
._c2{margin-left:-2664.323280px;}
._9d{margin-left:-2660.936400px;}
._a6{margin-left:-2657.840400px;}
._c4{margin-left:-2651.017680px;}
._a3{margin-left:-2643.336000px;}
._10f{margin-left:-2642.120640px;}
._11a{margin-left:-2638.661760px;}
._c0{margin-left:-2637.360000px;}
._107{margin-left:-2635.344000px;}
._bc{margin-left:-2633.184000px;}
._c7{margin-left:-2625.443280px;}
._af{margin-left:-2623.034880px;}
._fd{margin-left:-2621.952000px;}
._114{margin-left:-2620.376640px;}
._103{margin-left:-2615.147280px;}
._fc{margin-left:-2614.080960px;}
._98{margin-left:-2612.771280px;}
._65{margin-left:-2611.224000px;}
._11e{margin-left:-2610.104400px;}
._d6{margin-left:-2608.088400px;}
._116{margin-left:-2606.302080px;}
._df{margin-left:-2602.008000px;}
._f4{margin-left:-2591.459280px;}
._120{margin-left:-2589.299280px;}
._c6{margin-left:-2587.248000px;}
._d2{margin-left:-2585.240640px;}
._f3{margin-left:-2583.896400px;}
._b5{margin-left:-2575.788480px;}
._ad{margin-left:-2572.160400px;}
._7c{margin-left:-2564.496720px;}
._1{margin-left:-2562.955920px;}
._12a{margin-left:-2561.651280px;}
._ea{margin-left:-2560.352400px;}
._10c{margin-left:-2553.192000px;}
._e2{margin-left:-2550.995280px;}
._cb{margin-left:-2549.522880px;}
._100{margin-left:-2544.914880px;}
._11c{margin-left:-2543.899680px;}
._108{margin-left:-2540.016000px;}
._ae{margin-left:-2536.958160px;}
._f7{margin-left:-2531.555280px;}
._e0{margin-left:-2528.059680px;}
._ed{margin-left:-2522.915280px;}
._b8{margin-left:-2511.464400px;}
._129{margin-left:-2509.344000px;}
._11d{margin-left:-2506.352400px;}
._c8{margin-left:-2495.483280px;}
._89{margin-left:-2488.715280px;}
._d4{margin-left:-2483.640000px;}
._b4{margin-left:-2466.938880px;}
._123{margin-left:-2454.858000px;}
._128{margin-left:-2453.507280px;}
._6e{margin-left:-2450.771280px;}
._9f{margin-left:-2445.912000px;}
._96{margin-left:-2423.840400px;}
._b1{margin-left:-2407.505040px;}
._76{margin-left:-2402.868240px;}
._b9{margin-left:-2391.371280px;}
._11f{margin-left:-2388.638160px;}
._dd{margin-left:-2387.411280px;}
._a4{margin-left:-2383.920000px;}
._e8{margin-left:-2380.466880px;}
._b0{margin-left:-2355.122880px;}
._eb{margin-left:-2348.384400px;}
._110{margin-left:-2338.994880px;}
._69{margin-left:-2335.320000px;}
._dc{margin-left:-2330.064000px;}
._f8{margin-left:-2317.571280px;}
._94{margin-left:-2293.332480px;}
._da{margin-left:-2285.603280px;}
._be{margin-left:-2262.890880px;}
._e5{margin-left:-2253.402000px;}
._ba{margin-left:-2215.403280px;}
._cc{margin-left:-2203.704000px;}
._c3{margin-left:-2201.688000px;}
._c1{margin-left:-2186.456400px;}
._e9{margin-left:-2183.976000px;}
._83{margin-left:-2173.320000px;}
._d7{margin-left:-2153.304000px;}
._a8{margin-left:-2146.032000px;}
._93{margin-left:-2139.624000px;}
._81{margin-left:-2136.571200px;}
._d9{margin-left:-2130.048000px;}
._f9{margin-left:-2125.872000px;}
._109{margin-left:-2100.203280px;}
._99{margin-left:-2068.606800px;}
._84{margin-left:-2067.328800px;}
._113{margin-left:-2040.048000px;}
._122{margin-left:-2017.877760px;}
._126{margin-left:-2011.824000px;}
._f0{margin-left:-2005.776000px;}
._f2{margin-left:-2000.718000px;}
._fb{margin-left:-1988.672400px;}
._4f{margin-left:-1979.208000px;}
._1d{margin-left:-1977.947280px;}
._118{margin-left:-1973.808000px;}
._104{margin-left:-1938.056400px;}
._7b{margin-left:-1931.219280px;}
._1f{margin-left:-1927.547280px;}
._45{margin-left:-1923.083280px;}
._26{margin-left:-1916.681040px;}
._8f{margin-left:-1905.083280px;}
._e3{margin-left:-1895.976000px;}
._117{margin-left:-1886.040000px;}
._e6{margin-left:-1884.024000px;}
._7d{margin-left:-1880.539920px;}
._de{margin-left:-1859.363280px;}
._82{margin-left:-1847.335680px;}
._f5{margin-left:-1841.042880px;}
._fa{margin-left:-1835.531280px;}
._10d{margin-left:-1822.032000px;}
._ee{margin-left:-1820.016000px;}
._e1{margin-left:-1814.040000px;}
._ac{margin-left:-1805.755680px;}
._c5{margin-left:-1797.768000px;}
._106{margin-left:-1796.040000px;}
._a5{margin-left:-1787.723280px;}
._9b{margin-left:-1780.295040px;}
._ec{margin-left:-1770.048000px;}
._121{margin-left:-1761.984000px;}
._a2{margin-left:-1750.032000px;}
._db{margin-left:-1744.664400px;}
._d3{margin-left:-1740.704400px;}
._10b{margin-left:-1732.032000px;}
._d8{margin-left:-1722.704400px;}
._4a{margin-left:-1720.763280px;}
._6a{margin-left:-1712.192400px;}
._f1{margin-left:-1686.704400px;}
._d5{margin-left:-1683.683280px;}
._10a{margin-left:-1661.976000px;}
._b7{margin-left:-1656.000000px;}
._6d{margin-left:-1653.587280px;}
._ef{margin-left:-1642.032000px;}
._8d{margin-left:-1638.719280px;}
._d0{margin-left:-1623.888000px;}
._102{margin-left:-1620.072000px;}
._b2{margin-left:-1617.768000px;}
._bb{margin-left:-1616.040000px;}
._4e{margin-left:-1587.312000px;}
._60{margin-left:-1581.264000px;}
._7e{margin-left:-1567.429920px;}
._105{margin-left:-1563.912000px;}
._95{margin-left:-1551.200400px;}
._127{margin-left:-1547.747280px;}
._92{margin-left:-1545.495840px;}
._ab{margin-left:-1533.960000px;}
._115{margin-left:-1532.016000px;}
._a1{margin-left:-1481.976000px;}
._91{margin-left:-1472.939280px;}
._119{margin-left:-1415.018880px;}
._3e{margin-left:-1411.091280px;}
._67{margin-left:-1408.499280px;}
._a{margin-left:-1389.744000px;}
._7f{margin-left:-1387.391040px;}
._15{margin-left:-1373.866560px;}
._85{margin-left:-1343.260800px;}
._6b{margin-left:-1339.148160px;}
._97{margin-left:-1252.751040px;}
._80{margin-left:-1219.320000px;}
._61{margin-left:-1215.228240px;}
._59{margin-left:-1199.448000px;}
._54{margin-left:-1151.167680px;}
._73{margin-left:-1133.171280px;}
._cd{margin-left:-1083.888000px;}
._5f{margin-left:-1067.544000px;}
._8a{margin-left:-1053.107280px;}
._5a{margin-left:-987.258240px;}
._6f{margin-left:-968.795280px;}
._2f{margin-left:-879.083280px;}
._6c{margin-left:-874.082664px;}
._64{margin-left:-872.439624px;}
._29{margin-left:-849.600000px;}
._63{margin-left:-823.725144px;}
._125{margin-left:-811.872000px;}
._62{margin-left:-808.360344px;}
._9a{margin-left:-737.568000px;}
._87{margin-left:-698.144400px;}
._20{margin-left:-671.608800px;}
._77{margin-left:-643.464000px;}
._37{margin-left:-641.520000px;}
._8{margin-left:-604.589760px;}
._ca{margin-left:-601.920000px;}
._8e{margin-left:-593.096400px;}
._c{margin-left:-585.578880px;}
._9c{margin-left:-562.757760px;}
._40{margin-left:-538.778880px;}
._90{margin-left:-488.408400px;}
._70{margin-left:-483.552000px;}
._5d{margin-left:-473.472000px;}
._47{margin-left:-445.469760px;}
._8b{margin-left:-436.106880px;}
._3f{margin-left:-227.520000px;}
._b{margin-left:-193.680000px;}
._23{margin-left:-3.820320px;}
._19{margin-left:-2.406960px;}
._0{margin-left:-1.263600px;}
._2{width:1.010880px;}
._12{width:2.380320px;}
._13{width:3.389040px;}
._18{width:4.974480px;}
._43{width:6.612480px;}
._48{width:7.743600px;}
._25{width:10.080000px;}
._5b{width:11.622960px;}
._8c{width:12.672000px;}
._11{width:14.572800px;}
._42{width:16.056000px;}
._5e{width:19.146240px;}
._22{width:20.808000px;}
._4b{width:22.423680px;}
._57{width:24.513840px;}
._4d{width:25.671600px;}
._39{width:28.002240px;}
._71{width:30.175920px;}
._3c{width:32.832000px;}
._51{width:207.416880px;}
._53{width:210.094560px;}
._52{width:216.764640px;}
.fc6{color:rgb(255,192,0);}
.fc4{color:rgb(201,33,30);}
.fc3{color:rgb(238,0,0);}
.fc2{color:rgb(0,112,192);}
.fc5{color:rgb(255,0,0);}
.fc1{color:rgb(0,0,128);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:38.880000px;}
.fs3{font-size:48.240000px;}
.fs4{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs2{font-size:72.000000px;}
.fs0{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.y5b{bottom:3.240000px;}
.yad{bottom:3.960000px;}
.yf3{bottom:4.860000px;}
.yac{bottom:5.580000px;}
.y59{bottom:6.300000px;}
.yb0{bottom:7.020000px;}
.y94{bottom:17.460000px;}
.y8f{bottom:17.640000px;}
.y67{bottom:20.520000px;}
.ycb{bottom:110.340000px;}
.ya7{bottom:122.400000px;}
.y17{bottom:125.640000px;}
.y7b{bottom:126.720000px;}
.y2f{bottom:127.800000px;}
.y8d{bottom:131.040000px;}
.yaa{bottom:139.500000px;}
.yc2{bottom:144.000000px;}
.yed{bottom:145.620000px;}
.y3e{bottom:146.340000px;}
.y14d{bottom:147.420000px;}
.yf0{bottom:148.140000px;}
.yca{bottom:151.740000px;}
.y131{bottom:159.840000px;}
.ya6{bottom:163.800000px;}
.y55{bottom:166.860000px;}
.y16{bottom:167.040000px;}
.y7a{bottom:168.120000px;}
.y2e{bottom:169.200000px;}
.y8c{bottom:172.440000px;}
.y103{bottom:173.340000px;}
.ya9{bottom:180.900000px;}
.yc1{bottom:181.080000px;}
.y11c{bottom:186.660000px;}
.yec{bottom:187.020000px;}
.yd6{bottom:187.380000px;}
.y3d{bottom:187.740000px;}
.y14c{bottom:188.820000px;}
.yef{bottom:189.540000px;}
.yc9{bottom:193.140000px;}
.yc0{bottom:198.360000px;}
.y130{bottom:201.240000px;}
.ya5{bottom:205.200000px;}
.y54{bottom:208.260000px;}
.y15{bottom:208.440000px;}
.y79{bottom:209.520000px;}
.y2d{bottom:210.600000px;}
.y8b{bottom:213.840000px;}
.y102{bottom:214.740000px;}
.ybf{bottom:215.640000px;}
.ya8{bottom:218.342880px;}
.y11b{bottom:228.060000px;}
.yeb{bottom:228.420000px;}
.yd5{bottom:228.780000px;}
.y3c{bottom:229.140000px;}
.y14b{bottom:230.220000px;}
.ybe{bottom:232.920000px;}
.yc8{bottom:234.540000px;}
.y12f{bottom:242.640000px;}
.yee{bottom:244.800000px;}
.ybd{bottom:245.160000px;}
.ya4{bottom:246.600000px;}
.y53{bottom:249.660000px;}
.y14{bottom:249.840000px;}
.y78{bottom:250.920000px;}
.y2c{bottom:252.000000px;}
.y8a{bottom:255.240000px;}
.y101{bottom:256.140000px;}
.ybb{bottom:267.480000px;}
.y11a{bottom:269.460000px;}
.yea{bottom:269.820000px;}
.yd4{bottom:270.180000px;}
.y3b{bottom:270.540000px;}
.y14a{bottom:271.620000px;}
.yc7{bottom:275.940000px;}
.ybc{bottom:276.660000px;}
.y12e{bottom:284.040000px;}
.ya3{bottom:288.000000px;}
.yba{bottom:289.800000px;}
.y52{bottom:291.060000px;}
.y13{bottom:291.240000px;}
.y77{bottom:292.320000px;}
.y2b{bottom:293.400000px;}
.y89{bottom:296.640000px;}
.y100{bottom:297.540000px;}
.y119{bottom:310.860000px;}
.ye9{bottom:311.220000px;}
.yd3{bottom:311.580000px;}
.y3a{bottom:311.940000px;}
.yb8{bottom:312.120000px;}
.y149{bottom:313.020000px;}
.yc6{bottom:317.340000px;}
.yb9{bottom:321.300000px;}
.y12d{bottom:325.440000px;}
.ya2{bottom:329.400000px;}
.y51{bottom:332.460000px;}
.y12{bottom:332.640000px;}
.y76{bottom:333.720000px;}
.yb7{bottom:334.440000px;}
.y2a{bottom:334.800000px;}
.y88{bottom:338.040000px;}
.yff{bottom:338.940000px;}
.y118{bottom:352.260000px;}
.ye8{bottom:352.620000px;}
.yd2{bottom:352.980000px;}
.y39{bottom:353.340000px;}
.y148{bottom:354.420000px;}
.yb4{bottom:356.760000px;}
.yc5{bottom:358.740000px;}
.yb6{bottom:365.940000px;}
.y12c{bottom:366.840000px;}
.yb5{bottom:367.560000px;}
.ya1{bottom:370.800000px;}
.y50{bottom:373.860000px;}
.y11{bottom:374.040000px;}
.y75{bottom:375.120000px;}
.y29{bottom:376.200000px;}
.yb1{bottom:379.080000px;}
.y87{bottom:379.440000px;}
.yfe{bottom:380.340000px;}
.yb2{bottom:388.260000px;}
.yb3{bottom:389.880000px;}
.y117{bottom:393.660000px;}
.ye7{bottom:394.020000px;}
.yd1{bottom:394.380000px;}
.y38{bottom:394.740000px;}
.y147{bottom:395.820000px;}
.yc4{bottom:400.140000px;}
.yae{bottom:401.400000px;}
.y12b{bottom:408.240000px;}
.yaf{bottom:410.580000px;}
.ya0{bottom:412.200000px;}
.y4f{bottom:415.260000px;}
.y10{bottom:415.440000px;}
.y74{bottom:416.520000px;}
.y28{bottom:417.600000px;}
.y86{bottom:420.840000px;}
.yfd{bottom:422.100000px;}
.yab{bottom:427.140000px;}
.y116{bottom:435.060000px;}
.ye6{bottom:435.420000px;}
.yd0{bottom:435.780000px;}
.y37{bottom:436.140000px;}
.y146{bottom:437.220000px;}
.y49{bottom:441.540000px;}
.y12a{bottom:449.640000px;}
.y9f{bottom:453.600000px;}
.y4e{bottom:456.660000px;}
.yf{bottom:456.840000px;}
.y27{bottom:459.000000px;}
.yc3{bottom:459.540000px;}
.y85{bottom:462.240000px;}
.yfc{bottom:463.500000px;}
.y73{bottom:469.980000px;}
.y115{bottom:476.460000px;}
.ye5{bottom:476.820000px;}
.ycf{bottom:477.180000px;}
.y36{bottom:477.540000px;}
.y145{bottom:478.620000px;}
.y48{bottom:482.940000px;}
.yfb{bottom:483.480000px;}
.y72{bottom:489.960000px;}
.y9e{bottom:490.860000px;}
.y127{bottom:495.000000px;}
.y4d{bottom:498.060000px;}
.ye{bottom:498.240000px;}
.y26{bottom:500.400000px;}
.y84{bottom:503.640000px;}
.yfa{bottom:505.980000px;}
.y11d{bottom:506.880000px;}
.y71{bottom:507.240000px;}
.y9d{bottom:508.140000px;}
.y135{bottom:511.200000px;}
.y114{bottom:517.860000px;}
.ye4{bottom:518.220000px;}
.yce{bottom:518.580000px;}
.y35{bottom:518.940000px;}
.y144{bottom:520.020000px;}
.y47{bottom:524.340000px;}
.y70{bottom:524.520000px;}
.y9c{bottom:525.240000px;}
.yf9{bottom:528.480000px;}
.y129{bottom:530.460000px;}
.y126{bottom:536.400000px;}
.yd{bottom:539.640000px;}
.y6f{bottom:541.800000px;}
.y9b{bottom:542.520000px;}
.y83{bottom:545.040000px;}
.yf8{bottom:550.980000px;}
.y134{bottom:552.600000px;}
.y9a{bottom:555.840000px;}
.y4c{bottom:557.460000px;}
.y113{bottom:559.260000px;}
.ye3{bottom:559.620000px;}
.y25{bottom:559.800000px;}
.ycd{bottom:559.980000px;}
.y34{bottom:560.340000px;}
.y143{bottom:561.420000px;}
.y46{bottom:565.740000px;}
.yf7{bottom:573.480000px;}
.y6e{bottom:576.360000px;}
.y125{bottom:577.800000px;}
.y82{bottom:586.440000px;}
.y128{bottom:589.680000px;}
.y99{bottom:590.220000px;}
.y6d{bottom:593.460000px;}
.y133{bottom:594.000000px;}
.yf6{bottom:595.980000px;}
.yc{bottom:599.040000px;}
.y112{bottom:600.660000px;}
.y107{bottom:601.020000px;}
.ycc{bottom:601.380000px;}
.y33{bottom:601.740000px;}
.y142{bottom:602.820000px;}
.y45{bottom:607.140000px;}
.y6c{bottom:610.740000px;}
.y4b{bottom:616.860000px;}
.yf5{bottom:618.480000px;}
.y24{bottom:619.020000px;}
.y98{bottom:624.600000px;}
.y81{bottom:627.840000px;}
.y6b{bottom:628.020000px;}
.y124{bottom:631.080000px;}
.y132{bottom:635.400000px;}
.yf4{bottom:640.980000px;}
.y111{bottom:642.060000px;}
.y106{bottom:642.420000px;}
.ye2{bottom:642.780000px;}
.y32{bottom:643.140000px;}
.y141{bottom:644.220000px;}
.y6a{bottom:645.300000px;}
.y44{bottom:648.540000px;}
.y4a{bottom:652.680000px;}
.yb{bottom:658.440000px;}
.y97{bottom:658.800000px;}
.yf2{bottom:663.480000px;}
.y80{bottom:669.240000px;}
.y69{bottom:670.500000px;}
.y23{bottom:672.480000px;}
.y110{bottom:683.460000px;}
.y105{bottom:683.820000px;}
.ye1{bottom:684.180000px;}
.y31{bottom:684.540000px;}
.y140{bottom:685.620000px;}
.yf1{bottom:689.400000px;}
.y43{bottom:689.940000px;}
.y66{bottom:692.460000px;}
.y96{bottom:693.180000px;}
.y68{bottom:704.340000px;}
.y7f{bottom:710.640000px;}
.y22{bottom:713.880000px;}
.ya{bottom:717.840000px;}
.y10f{bottom:724.860000px;}
.y104{bottom:725.220000px;}
.ye0{bottom:725.580000px;}
.y30{bottom:725.940000px;}
.y13f{bottom:727.020000px;}
.y95{bottom:727.560000px;}
.y42{bottom:731.340000px;}
.y7e{bottom:752.040000px;}
.y123{bottom:755.280000px;}
.y93{bottom:761.940000px;}
.y9{bottom:766.080000px;}
.y10e{bottom:766.260000px;}
.y65{bottom:766.980000px;}
.y21{bottom:767.340000px;}
.y13e{bottom:768.420000px;}
.y41{bottom:772.740000px;}
.y92{bottom:796.140000px;}
.y122{bottom:796.680000px;}
.y8{bottom:800.640000px;}
.y10d{bottom:807.660000px;}
.ydf{bottom:808.380000px;}
.y20{bottom:808.740000px;}
.y13d{bottom:809.820000px;}
.y7d{bottom:811.440000px;}
.y40{bottom:814.140000px;}
.y64{bottom:826.380000px;}
.y91{bottom:830.520000px;}
.y121{bottom:838.080000px;}
.y7{bottom:842.040000px;}
.y10c{bottom:849.060000px;}
.yde{bottom:849.780000px;}
.y1f{bottom:850.140000px;}
.y13c{bottom:851.220000px;}
.y63{bottom:864.540000px;}
.y8e{bottom:869.400000px;}
.y7c{bottom:870.840000px;}
.y3f{bottom:873.540000px;}
.y120{bottom:879.480000px;}
.y62{bottom:881.820000px;}
.y6{bottom:883.440000px;}
.y90{bottom:885.600000px;}
.y10b{bottom:890.460000px;}
.ydd{bottom:891.180000px;}
.y1e{bottom:891.540000px;}
.y13b{bottom:892.620000px;}
.y61{bottom:898.920000px;}
.y60{bottom:916.200000px;}
.y11f{bottom:920.880000px;}
.y5{bottom:931.680000px;}
.y10a{bottom:931.860000px;}
.ydc{bottom:932.580000px;}
.y1d{bottom:932.940000px;}
.y5f{bottom:933.480000px;}
.y13a{bottom:934.020000px;}
.y5e{bottom:950.760000px;}
.y11e{bottom:962.280000px;}
.y5d{bottom:968.040000px;}
.y109{bottom:973.620000px;}
.ydb{bottom:973.980000px;}
.y1c{bottom:974.340000px;}
.y139{bottom:975.420000px;}
.y4{bottom:984.060000px;}
.y5c{bottom:985.320000px;}
.y5a{bottom:1002.420000px;}
.y108{bottom:1015.020000px;}
.yda{bottom:1015.380000px;}
.y1b{bottom:1015.740000px;}
.y138{bottom:1016.820000px;}
.y58{bottom:1023.120000px;}
.y3{bottom:1025.460000px;}
.y57{bottom:1029.420000px;}
.yd9{bottom:1056.780000px;}
.y1a{bottom:1057.140000px;}
.y137{bottom:1058.220000px;}
.y56{bottom:1086.480000px;}
.y2{bottom:1088.640000px;}
.yd8{bottom:1098.180000px;}
.y19{bottom:1098.540000px;}
.y136{bottom:1099.440000px;}
.y1{bottom:1137.060000px;}
.yd7{bottom:1139.580000px;}
.y18{bottom:1139.940000px;}
.hc{height:17.098500px;}
.hd{height:17.100000px;}
.ha{height:17.280000px;}
.h19{height:22.320000px;}
.h1a{height:22.321500px;}
.h1e{height:22.498500px;}
.h1f{height:22.500000px;}
.h9{height:23.400000px;}
.h18{height:28.958906px;}
.h17{height:32.425313px;}
.h14{height:32.835234px;}
.h15{height:34.200000px;}
.h1b{height:34.363125px;}
.h16{height:34.378500px;}
.h12{height:34.380000px;}
.he{height:34.560000px;}
.h5{height:40.231406px;}
.h8{height:40.501406px;}
.h10{height:40.676484px;}
.hf{height:41.493516px;}
.h4{height:44.149219px;}
.h7{height:48.796875px;}
.h13{height:49.007812px;}
.hb{height:49.838906px;}
.h11{height:49.992188px;}
.h20{height:50.027344px;}
.h2{height:57.092344px;}
.h6{height:60.046875px;}
.h3{height:67.591406px;}
.h1c{height:892.980000px;}
.h1d{height:893.250000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w25{width:46.800000px;}
.w22{width:46.980000px;}
.w21{width:47.880000px;}
.w1e{width:53.641500px;}
.w13{width:57.420000px;}
.w20{width:58.320000px;}
.w1d{width:63.720000px;}
.w1f{width:65.158500px;}
.wc{width:66.060000px;}
.w16{width:67.858500px;}
.w14{width:67.860000px;}
.w15{width:72.360000px;}
.w18{width:73.980000px;}
.w19{width:74.520000px;}
.w17{width:74.880000px;}
.w1a{width:79.740000px;}
.w5{width:80.640000px;}
.w6{width:80.641500px;}
.w12{width:84.600000px;}
.w11{width:84.780000px;}
.we{width:85.138500px;}
.w4{width:85.140000px;}
.w8{width:85.500000px;}
.wa{width:85.501500px;}
.wb{width:85.678500px;}
.w10{width:85.680000px;}
.w9{width:86.940000px;}
.wf{width:88.920000px;}
.w23{width:90.000000px;}
.w7{width:90.360000px;}
.wd{width:91.441500px;}
.w24{width:95.760000px;}
.w3{width:168.300000px;}
.w2{width:191.518500px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.w1b{width:1262.880000px;}
.w1c{width:1263.000000px;}
.x0{left:0.000000px;}
.x2a{left:2.340000px;}
.x10{left:8.100000px;}
.x23{left:9.540000px;}
.x16{left:11.700000px;}
.x17{left:13.320000px;}
.x25{left:14.400000px;}
.x24{left:16.740000px;}
.x3c{left:18.000000px;}
.x28{left:19.620000px;}
.x26{left:21.240000px;}
.x27{left:22.860000px;}
.x22{left:24.480000px;}
.x1b{left:26.280000px;}
.x12{left:28.080000px;}
.x2c{left:29.160000px;}
.x19{left:30.420000px;}
.x43{left:31.500000px;}
.x47{left:34.200000px;}
.xf{left:36.000000px;}
.x50{left:37.440000px;}
.x5f{left:38.700000px;}
.x13{left:41.040000px;}
.x60{left:43.200000px;}
.x14{left:48.060000px;}
.x15{left:49.860000px;}
.x48{left:51.120000px;}
.xd{left:53.280000px;}
.x4a{left:57.060000px;}
.x31{left:58.860000px;}
.x2e{left:62.100000px;}
.x52{left:63.180000px;}
.xe{left:64.440000px;}
.x3d{left:75.240000px;}
.xc{left:89.460000px;}
.x11{left:90.540000px;}
.x4{left:92.160000px;}
.xb{left:112.500000px;}
.x56{left:120.060000px;}
.x29{left:125.280000px;}
.x3{left:127.620000px;}
.x2{left:135.540000px;}
.x3e{left:142.020000px;}
.x53{left:154.620000px;}
.x8{left:160.020000px;}
.x54{left:181.620000px;}
.x3f{left:184.140000px;}
.x2b{left:191.340000px;}
.x1a{left:212.760000px;}
.x1{left:218.340000px;}
.x2d{left:231.480000px;}
.x58{left:244.980000px;}
.x40{left:252.000000px;}
.x7{left:266.580000px;}
.x2f{left:282.780000px;}
.x1c{left:293.400000px;}
.x6{left:297.900000px;}
.x30{left:319.680000px;}
.x41{left:324.360000px;}
.x32{left:367.920000px;}
.x57{left:369.720000px;}
.x4b{left:371.880000px;}
.x1d{left:374.040000px;}
.x59{left:382.680000px;}
.x42{left:396.720000px;}
.x33{left:403.740000px;}
.x18{left:405.540000px;}
.x4c{left:441.900000px;}
.x5a{left:447.840000px;}
.x34{left:456.840000px;}
.xa{left:458.100000px;}
.x1e{left:464.400000px;}
.x35{left:491.040000px;}
.x5b{left:506.160000px;}
.x9{left:513.900000px;}
.x4f{left:519.660000px;}
.x4d{left:525.780000px;}
.x44{left:539.460000px;}
.x36{left:542.520000px;}
.x1f{left:549.900000px;}
.x5c{left:554.040000px;}
.x37{left:576.360000px;}
.x4e{left:587.880000px;}
.x49{left:594.180000px;}
.x5d{left:601.020000px;}
.x45{left:613.440000px;}
.x38{left:627.300000px;}
.x20{left:636.840000px;}
.x39{left:661.320000px;}
.x51{left:674.280000px;}
.x46{left:687.960000px;}
.x5e{left:691.020000px;}
.x3a{left:712.800000px;}
.x21{left:722.340000px;}
.x3b{left:746.460000px;}
.x5{left:786.780000px;}
.x55{left:1090.620000px;}
@media print{
.v2{vertical-align:-24.320000pt;}
.v6{vertical-align:-18.560000pt;}
.v3{vertical-align:-5.120000pt;}
.v5{vertical-align:-2.560000pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:5.120000pt;}
.v7{vertical-align:18.560000pt;}
.v1{vertical-align:24.320000pt;}
.ls2b{letter-spacing:-0.896000pt;}
.ls1a{letter-spacing:-0.832000pt;}
.lse{letter-spacing:-0.640000pt;}
.ls19{letter-spacing:-0.600320pt;}
.ls10{letter-spacing:-0.471680pt;}
.ls38{letter-spacing:-0.428800pt;}
.ls46{letter-spacing:-0.384000pt;}
.ls11{letter-spacing:-0.300160pt;}
.ls1f{letter-spacing:-0.257280pt;}
.lsb{letter-spacing:-0.256000pt;}
.ls39{letter-spacing:-0.214400pt;}
.ls34{letter-spacing:-0.212480pt;}
.lsd{letter-spacing:-0.192000pt;}
.ls20{letter-spacing:-0.171520pt;}
.ls9{letter-spacing:-0.128000pt;}
.ls31{letter-spacing:-0.106240pt;}
.ls21{letter-spacing:-0.064000pt;}
.ls32{letter-spacing:-0.053120pt;}
.ls43{letter-spacing:-0.042880pt;}
.ls35{letter-spacing:-0.034560pt;}
.ls7{letter-spacing:0.000000pt;}
.lsf{letter-spacing:0.042880pt;}
.ls44{letter-spacing:0.053120pt;}
.ls28{letter-spacing:0.064000pt;}
.ls6{letter-spacing:0.074880pt;}
.ls30{letter-spacing:0.106240pt;}
.lsa{letter-spacing:0.128000pt;}
.ls45{letter-spacing:0.154880pt;}
.ls41{letter-spacing:0.159360pt;}
.ls0{letter-spacing:0.161280pt;}
.ls1{letter-spacing:0.171520pt;}
.ls2e{letter-spacing:0.183680pt;}
.ls50{letter-spacing:0.192000pt;}
.ls1d{letter-spacing:0.199040pt;}
.ls33{letter-spacing:0.212480pt;}
.lsc{letter-spacing:0.235520pt;}
.ls2{letter-spacing:0.256000pt;}
.ls4b{letter-spacing:0.257280pt;}
.ls4e{letter-spacing:0.262400pt;}
.ls8{letter-spacing:0.299520pt;}
.ls2d{letter-spacing:0.318720pt;}
.ls4{letter-spacing:0.320000pt;}
.ls12{letter-spacing:0.343040pt;}
.ls42{letter-spacing:0.366528pt;}
.ls3{letter-spacing:0.448000pt;}
.ls29{letter-spacing:0.640000pt;}
.ls3b{letter-spacing:0.704000pt;}
.ls47{letter-spacing:0.768000pt;}
.ls25{letter-spacing:1.280000pt;}
.ls14{letter-spacing:1.920000pt;}
.ls2c{letter-spacing:2.560000pt;}
.ls1e{letter-spacing:3.200000pt;}
.ls4c{letter-spacing:3.827200pt;}
.ls1c{letter-spacing:3.840000pt;}
.ls36{letter-spacing:4.480000pt;}
.ls1b{letter-spacing:5.120000pt;}
.ls22{letter-spacing:5.760000pt;}
.ls3c{letter-spacing:6.400000pt;}
.ls18{letter-spacing:7.040000pt;}
.ls3f{letter-spacing:7.680000pt;}
.ls23{letter-spacing:8.320000pt;}
.ls5{letter-spacing:8.960000pt;}
.ls26{letter-spacing:9.600000pt;}
.ls13{letter-spacing:9.728000pt;}
.ls3d{letter-spacing:10.398080pt;}
.ls16{letter-spacing:10.880000pt;}
.ls15{letter-spacing:11.520000pt;}
.ls17{letter-spacing:12.160000pt;}
.ls3e{letter-spacing:12.800000pt;}
.ls4d{letter-spacing:13.440000pt;}
.ls24{letter-spacing:14.080000pt;}
.ls4f{letter-spacing:14.720000pt;}
.ls2a{letter-spacing:15.360000pt;}
.ls48{letter-spacing:17.280000pt;}
.ls37{letter-spacing:19.840000pt;}
.ls3a{letter-spacing:21.760000pt;}
.ls40{letter-spacing:22.400000pt;}
.ls27{letter-spacing:24.960000pt;}
.ls49{letter-spacing:58.368000pt;}
.ls4a{letter-spacing:61.760000pt;}
.ls2f{letter-spacing:197.287680pt;}
.ws0{word-spacing:-18.794880pt;}
.ws1{word-spacing:-18.720000pt;}
.ws9d{word-spacing:-16.768000pt;}
.ws28{word-spacing:-16.256000pt;}
.wsc0{word-spacing:-16.192000pt;}
.ws27{word-spacing:-16.128000pt;}
.wsbd{word-spacing:-16.064000pt;}
.ws3{word-spacing:-16.000000pt;}
.wsaa{word-spacing:-15.936000pt;}
.ws4{word-spacing:-15.872000pt;}
.wsb{word-spacing:-15.808000pt;}
.ws5{word-spacing:-15.744000pt;}
.wsbf{word-spacing:-15.616000pt;}
.wsa1{word-spacing:-14.720000pt;}
.ws72{word-spacing:-13.598720pt;}
.ws75{word-spacing:-13.492480pt;}
.ws74{word-spacing:-13.386240pt;}
.ws98{word-spacing:-13.333120pt;}
.wsa5{word-spacing:-13.306880pt;}
.ws77{word-spacing:-13.280000pt;}
.ws73{word-spacing:-13.226880pt;}
.ws71{word-spacing:-13.173760pt;}
.wsa{word-spacing:-11.063040pt;}
.wsaf{word-spacing:-10.977280pt;}
.ws2{word-spacing:-10.891520pt;}
.ws7{word-spacing:-10.762880pt;}
.ws6{word-spacing:-10.720000pt;}
.ws97{word-spacing:-10.677120pt;}
.ws3c{word-spacing:-10.548480pt;}
.ws82{word-spacing:-10.505600pt;}
.ws3b{word-spacing:-10.462720pt;}
.ws9{word-spacing:-10.419840pt;}
.ws81{word-spacing:-10.291200pt;}
.ws8{word-spacing:-10.248320pt;}
.ws26{word-spacing:-10.119680pt;}
.ws76{word-spacing:-8.640000pt;}
.ws78{word-spacing:-8.605440pt;}
.ws40{word-spacing:-3.840000pt;}
.ws41{word-spacing:-3.584000pt;}
.ws50{word-spacing:-3.328000pt;}
.ws38{word-spacing:-3.200000pt;}
.ws48{word-spacing:-3.008000pt;}
.ws4f{word-spacing:-2.944000pt;}
.ws61{word-spacing:-2.688000pt;}
.ws17{word-spacing:-2.560000pt;}
.ws60{word-spacing:-2.304000pt;}
.ws46{word-spacing:-2.048000pt;}
.ws2a{word-spacing:-1.920000pt;}
.ws45{word-spacing:-1.664000pt;}
.ws92{word-spacing:-1.408000pt;}
.ws3d{word-spacing:-1.280000pt;}
.wsc{word-spacing:-1.123200pt;}
.ws8e{word-spacing:-1.024000pt;}
.ws2e{word-spacing:-0.768000pt;}
.ws22{word-spacing:-0.640000pt;}
.ws9f{word-spacing:-0.448000pt;}
.ws9a{word-spacing:-0.424960pt;}
.ws53{word-spacing:-0.384000pt;}
.ws7b{word-spacing:-0.318720pt;}
.ws87{word-spacing:-0.256000pt;}
.ws16{word-spacing:-0.235520pt;}
.ws7a{word-spacing:-0.159360pt;}
.wsf{word-spacing:-0.128000pt;}
.ws7d{word-spacing:-0.106240pt;}
.wsb5{word-spacing:-0.064000pt;}
.wsae{word-spacing:-0.042880pt;}
.wsd{word-spacing:0.000000pt;}
.ws79{word-spacing:0.053120pt;}
.ws4b{word-spacing:0.064000pt;}
.wsc1{word-spacing:0.117760pt;}
.ws95{word-spacing:0.128000pt;}
.ws4a{word-spacing:0.192000pt;}
.ws7e{word-spacing:0.212480pt;}
.ws13{word-spacing:0.256000pt;}
.ws7c{word-spacing:0.371840pt;}
.wsa0{word-spacing:0.384000pt;}
.ws99{word-spacing:0.428800pt;}
.ws89{word-spacing:0.512000pt;}
.ws1f{word-spacing:0.640000pt;}
.ws29{word-spacing:0.832000pt;}
.ws42{word-spacing:0.896000pt;}
.ws5b{word-spacing:1.152000pt;}
.wsb1{word-spacing:1.216000pt;}
.ws5a{word-spacing:1.280000pt;}
.ws57{word-spacing:1.536000pt;}
.ws96{word-spacing:1.792000pt;}
.ws18{word-spacing:1.920000pt;}
.wsa7{word-spacing:2.112000pt;}
.ws88{word-spacing:2.176000pt;}
.ws21{word-spacing:2.432000pt;}
.ws5e{word-spacing:2.496000pt;}
.ws20{word-spacing:2.560000pt;}
.ws7f{word-spacing:2.816000pt;}
.ws44{word-spacing:3.200000pt;}
.wsa2{word-spacing:3.392000pt;}
.ws4e{word-spacing:3.456000pt;}
.ws49{word-spacing:3.712000pt;}
.ws23{word-spacing:3.840000pt;}
.wsab{word-spacing:4.032000pt;}
.ws47{word-spacing:4.096000pt;}
.wsa4{word-spacing:4.352000pt;}
.wse{word-spacing:4.480000pt;}
.ws3a{word-spacing:4.736000pt;}
.ws3e{word-spacing:4.992000pt;}
.ws12{word-spacing:5.120000pt;}
.ws3f{word-spacing:5.376000pt;}
.ws9b{word-spacing:5.632000pt;}
.ws4c{word-spacing:5.760000pt;}
.ws68{word-spacing:6.016000pt;}
.ws8b{word-spacing:6.272000pt;}
.ws59{word-spacing:6.400000pt;}
.ws67{word-spacing:6.656000pt;}
.ws43{word-spacing:6.912000pt;}
.ws5d{word-spacing:6.976000pt;}
.ws37{word-spacing:7.040000pt;}
.ws35{word-spacing:7.296000pt;}
.ws91{word-spacing:7.552000pt;}
.ws36{word-spacing:7.680000pt;}
.wsad{word-spacing:7.872000pt;}
.ws63{word-spacing:7.936000pt;}
.ws51{word-spacing:8.192000pt;}
.ws52{word-spacing:8.320000pt;}
.wsa6{word-spacing:8.576000pt;}
.ws39{word-spacing:8.832000pt;}
.ws24{word-spacing:8.960000pt;}
.ws25{word-spacing:9.216000pt;}
.wsb7{word-spacing:9.472000pt;}
.ws2f{word-spacing:9.600000pt;}
.ws19{word-spacing:9.856000pt;}
.ws6c{word-spacing:10.240000pt;}
.ws6b{word-spacing:10.496000pt;}
.wsba{word-spacing:10.752000pt;}
.ws32{word-spacing:10.880000pt;}
.ws31{word-spacing:11.136000pt;}
.ws9e{word-spacing:11.392000pt;}
.ws33{word-spacing:11.520000pt;}
.ws83{word-spacing:12.032000pt;}
.ws1e{word-spacing:12.160000pt;}
.ws1d{word-spacing:12.352000pt;}
.ws1c{word-spacing:12.416000pt;}
.ws8c{word-spacing:12.672000pt;}
.ws64{word-spacing:12.800000pt;}
.ws8d{word-spacing:12.992000pt;}
.ws8a{word-spacing:13.056000pt;}
.ws11{word-spacing:13.312000pt;}
.ws66{word-spacing:13.440000pt;}
.ws65{word-spacing:13.696000pt;}
.ws15{word-spacing:13.952000pt;}
.ws14{word-spacing:14.080000pt;}
.ws54{word-spacing:14.336000pt;}
.ws5c{word-spacing:14.720000pt;}
.wsac{word-spacing:14.976000pt;}
.wsbc{word-spacing:15.232000pt;}
.ws6a{word-spacing:15.360000pt;}
.ws69{word-spacing:15.616000pt;}
.ws55{word-spacing:16.000000pt;}
.ws80{word-spacing:16.256000pt;}
.ws58{word-spacing:16.640000pt;}
.ws9c{word-spacing:16.896000pt;}
.ws70{word-spacing:17.152000pt;}
.ws6e{word-spacing:17.280000pt;}
.ws6f{word-spacing:17.472000pt;}
.wsb4{word-spacing:17.792000pt;}
.ws90{word-spacing:17.920000pt;}
.ws8f{word-spacing:18.176000pt;}
.ws34{word-spacing:18.560000pt;}
.wsb8{word-spacing:18.816000pt;}
.ws2b{word-spacing:19.072000pt;}
.wsb0{word-spacing:19.200000pt;}
.ws6d{word-spacing:19.456000pt;}
.ws30{word-spacing:19.712000pt;}
.ws1b{word-spacing:19.840000pt;}
.ws1a{word-spacing:20.096000pt;}
.ws84{word-spacing:20.480000pt;}
.ws56{word-spacing:21.120000pt;}
.ws5f{word-spacing:21.376000pt;}
.wsb3{word-spacing:21.632000pt;}
.ws85{word-spacing:21.760000pt;}
.wsb2{word-spacing:22.016000pt;}
.ws93{word-spacing:22.400000pt;}
.ws94{word-spacing:22.656000pt;}
.ws86{word-spacing:23.040000pt;}
.wsb6{word-spacing:23.296000pt;}
.ws4d{word-spacing:23.680000pt;}
.wsa3{word-spacing:23.936000pt;}
.ws2c{word-spacing:24.320000pt;}
.ws2d{word-spacing:24.576000pt;}
.wsbb{word-spacing:24.960000pt;}
.wsa9{word-spacing:26.240000pt;}
.ws10{word-spacing:28.800000pt;}
.ws62{word-spacing:29.440000pt;}
.wsa8{word-spacing:30.080000pt;}
.wsbe{word-spacing:30.720000pt;}
.wsb9{word-spacing:31.360000pt;}
._79{margin-left:-3887.634560pt;}
._78{margin-left:-3702.400000pt;}
._7a{margin-left:-2998.223360pt;}
._44{margin-left:-2545.920000pt;}
._88{margin-left:-2501.561600pt;}
._3d{margin-left:-2499.158400pt;}
._72{margin-left:-2495.796480pt;}
._3a{margin-left:-2494.082560pt;}
._58{margin-left:-2492.741120pt;}
._38{margin-left:-2491.308160pt;}
._56{margin-left:-2490.344960pt;}
._86{margin-left:-2489.388800pt;}
._5c{margin-left:-2488.273920pt;}
._4c{margin-left:-2487.041280pt;}
._66{margin-left:-2485.616640pt;}
._46{margin-left:-2483.896320pt;}
._41{margin-left:-2482.456960pt;}
._55{margin-left:-2481.136640pt;}
._49{margin-left:-2480.172160pt;}
._2d{margin-left:-2478.486400pt;}
._30{margin-left:-2477.049600pt;}
._2e{margin-left:-2475.377280pt;}
._3b{margin-left:-2474.366080pt;}
._34{margin-left:-2473.223680pt;}
._36{margin-left:-2472.161920pt;}
._32{margin-left:-2471.093760pt;}
._33{margin-left:-2469.634560pt;}
._35{margin-left:-2467.868160pt;}
._31{margin-left:-2466.624000pt;}
._75{margin-left:-2465.479680pt;}
._1c{margin-left:-2463.759360pt;}
._101{margin-left:-2462.108800pt;}
._1e{margin-left:-2460.181120pt;}
._10{margin-left:-2459.174400pt;}
._2a{margin-left:-2457.858560pt;}
._2c{margin-left:-2456.064000pt;}
._c9{margin-left:-2455.068800pt;}
._2b{margin-left:-2453.366400pt;}
._21{margin-left:-2451.169920pt;}
._f{margin-left:-2449.072640pt;}
._27{margin-left:-2446.892800pt;}
._28{margin-left:-2445.918080pt;}
._17{margin-left:-2444.886400pt;}
._16{margin-left:-2443.205120pt;}
._14{margin-left:-2442.128640pt;}
._e{margin-left:-2441.090560pt;}
._d{margin-left:-2439.678720pt;}
._5{margin-left:-2438.492800pt;}
._1a{margin-left:-2437.297920pt;}
._24{margin-left:-2436.353280pt;}
._111{margin-left:-2435.196160pt;}
._ff{margin-left:-2432.830720pt;}
._a9{margin-left:-2431.071360pt;}
._bf{margin-left:-2426.112000pt;}
._9{margin-left:-2424.351360pt;}
._6{margin-left:-2423.420800pt;}
._f6{margin-left:-2418.880000pt;}
._68{margin-left:-2417.629440pt;}
._7{margin-left:-2415.960960pt;}
._ce{margin-left:-2415.007360pt;}
._11b{margin-left:-2413.737600pt;}
._1b{margin-left:-2412.353280pt;}
._e4{margin-left:-2410.176000pt;}
._4{margin-left:-2409.056640pt;}
._10e{margin-left:-2406.400000pt;}
._d1{margin-left:-2402.719360pt;}
._112{margin-left:-2400.958720pt;}
._a0{margin-left:-2399.391360pt;}
._e7{margin-left:-2397.760000pt;}
._124{margin-left:-2395.650560pt;}
._a7{margin-left:-2394.245120pt;}
._cf{margin-left:-2392.476800pt;}
._b6{margin-left:-2390.495360pt;}
._aa{margin-left:-2388.838400pt;}
._50{margin-left:-2386.293760pt;}
._3{margin-left:-2384.316160pt;}
._fe{margin-left:-2383.263360pt;}
._9e{margin-left:-2381.663360pt;}
._b3{margin-left:-2377.631360pt;}
._bd{margin-left:-2376.287360pt;}
._74{margin-left:-2369.536000pt;}
._c2{margin-left:-2368.287360pt;}
._9d{margin-left:-2365.276800pt;}
._a6{margin-left:-2362.524800pt;}
._c4{margin-left:-2356.460160pt;}
._a3{margin-left:-2349.632000pt;}
._10f{margin-left:-2348.551680pt;}
._11a{margin-left:-2345.477120pt;}
._c0{margin-left:-2344.320000pt;}
._107{margin-left:-2342.528000pt;}
._bc{margin-left:-2340.608000pt;}
._c7{margin-left:-2333.727360pt;}
._af{margin-left:-2331.586560pt;}
._fd{margin-left:-2330.624000pt;}
._114{margin-left:-2329.223680pt;}
._103{margin-left:-2324.575360pt;}
._fc{margin-left:-2323.627520pt;}
._98{margin-left:-2322.463360pt;}
._65{margin-left:-2321.088000pt;}
._11e{margin-left:-2320.092800pt;}
._d6{margin-left:-2318.300800pt;}
._116{margin-left:-2316.712960pt;}
._df{margin-left:-2312.896000pt;}
._f4{margin-left:-2303.519360pt;}
._120{margin-left:-2301.599360pt;}
._c6{margin-left:-2299.776000pt;}
._d2{margin-left:-2297.991680pt;}
._f3{margin-left:-2296.796800pt;}
._b5{margin-left:-2289.589760pt;}
._ad{margin-left:-2286.364800pt;}
._7c{margin-left:-2279.552640pt;}
._1{margin-left:-2278.183040pt;}
._12a{margin-left:-2277.023360pt;}
._ea{margin-left:-2275.868800pt;}
._10c{margin-left:-2269.504000pt;}
._e2{margin-left:-2267.551360pt;}
._cb{margin-left:-2266.242560pt;}
._100{margin-left:-2262.146560pt;}
._11c{margin-left:-2261.244160pt;}
._108{margin-left:-2257.792000pt;}
._ae{margin-left:-2255.073920pt;}
._f7{margin-left:-2250.271360pt;}
._e0{margin-left:-2247.164160pt;}
._ed{margin-left:-2242.591360pt;}
._b8{margin-left:-2232.412800pt;}
._129{margin-left:-2230.528000pt;}
._11d{margin-left:-2227.868800pt;}
._c8{margin-left:-2218.207360pt;}
._89{margin-left:-2212.191360pt;}
._d4{margin-left:-2207.680000pt;}
._b4{margin-left:-2192.834560pt;}
._123{margin-left:-2182.096000pt;}
._128{margin-left:-2180.895360pt;}
._6e{margin-left:-2178.463360pt;}
._9f{margin-left:-2174.144000pt;}
._96{margin-left:-2154.524800pt;}
._b1{margin-left:-2140.004480pt;}
._76{margin-left:-2135.882880pt;}
._b9{margin-left:-2125.663360pt;}
._11f{margin-left:-2123.233920pt;}
._dd{margin-left:-2122.143360pt;}
._a4{margin-left:-2119.040000pt;}
._e8{margin-left:-2115.970560pt;}
._b0{margin-left:-2093.442560pt;}
._eb{margin-left:-2087.452800pt;}
._110{margin-left:-2079.106560pt;}
._69{margin-left:-2075.840000pt;}
._dc{margin-left:-2071.168000pt;}
._f8{margin-left:-2060.063360pt;}
._94{margin-left:-2038.517760pt;}
._da{margin-left:-2031.647360pt;}
._be{margin-left:-2011.458560pt;}
._e5{margin-left:-2003.024000pt;}
._ba{margin-left:-1969.247360pt;}
._cc{margin-left:-1958.848000pt;}
._c3{margin-left:-1957.056000pt;}
._c1{margin-left:-1943.516800pt;}
._e9{margin-left:-1941.312000pt;}
._83{margin-left:-1931.840000pt;}
._d7{margin-left:-1914.048000pt;}
._a8{margin-left:-1907.584000pt;}
._93{margin-left:-1901.888000pt;}
._81{margin-left:-1899.174400pt;}
._d9{margin-left:-1893.376000pt;}
._f9{margin-left:-1889.664000pt;}
._109{margin-left:-1866.847360pt;}
._99{margin-left:-1838.761600pt;}
._84{margin-left:-1837.625600pt;}
._113{margin-left:-1813.376000pt;}
._122{margin-left:-1793.669120pt;}
._126{margin-left:-1788.288000pt;}
._f0{margin-left:-1782.912000pt;}
._f2{margin-left:-1778.416000pt;}
._fb{margin-left:-1767.708800pt;}
._4f{margin-left:-1759.296000pt;}
._1d{margin-left:-1758.175360pt;}
._118{margin-left:-1754.496000pt;}
._104{margin-left:-1722.716800pt;}
._7b{margin-left:-1716.639360pt;}
._1f{margin-left:-1713.375360pt;}
._45{margin-left:-1709.407360pt;}
._26{margin-left:-1703.716480pt;}
._8f{margin-left:-1693.407360pt;}
._e3{margin-left:-1685.312000pt;}
._117{margin-left:-1676.480000pt;}
._e6{margin-left:-1674.688000pt;}
._7d{margin-left:-1671.591040pt;}
._de{margin-left:-1652.767360pt;}
._82{margin-left:-1642.076160pt;}
._f5{margin-left:-1636.482560pt;}
._fa{margin-left:-1631.583360pt;}
._10d{margin-left:-1619.584000pt;}
._ee{margin-left:-1617.792000pt;}
._e1{margin-left:-1612.480000pt;}
._ac{margin-left:-1605.116160pt;}
._c5{margin-left:-1598.016000pt;}
._106{margin-left:-1596.480000pt;}
._a5{margin-left:-1589.087360pt;}
._9b{margin-left:-1582.484480pt;}
._ec{margin-left:-1573.376000pt;}
._121{margin-left:-1566.208000pt;}
._a2{margin-left:-1555.584000pt;}
._db{margin-left:-1550.812800pt;}
._d3{margin-left:-1547.292800pt;}
._10b{margin-left:-1539.584000pt;}
._d8{margin-left:-1531.292800pt;}
._4a{margin-left:-1529.567360pt;}
._6a{margin-left:-1521.948800pt;}
._f1{margin-left:-1499.292800pt;}
._d5{margin-left:-1496.607360pt;}
._10a{margin-left:-1477.312000pt;}
._b7{margin-left:-1472.000000pt;}
._6d{margin-left:-1469.855360pt;}
._ef{margin-left:-1459.584000pt;}
._8d{margin-left:-1456.639360pt;}
._d0{margin-left:-1443.456000pt;}
._102{margin-left:-1440.064000pt;}
._b2{margin-left:-1438.016000pt;}
._bb{margin-left:-1436.480000pt;}
._4e{margin-left:-1410.944000pt;}
._60{margin-left:-1405.568000pt;}
._7e{margin-left:-1393.271040pt;}
._105{margin-left:-1390.144000pt;}
._95{margin-left:-1378.844800pt;}
._127{margin-left:-1375.775360pt;}
._92{margin-left:-1373.774080pt;}
._ab{margin-left:-1363.520000pt;}
._115{margin-left:-1361.792000pt;}
._a1{margin-left:-1317.312000pt;}
._91{margin-left:-1309.279360pt;}
._119{margin-left:-1257.794560pt;}
._3e{margin-left:-1254.303360pt;}
._67{margin-left:-1251.999360pt;}
._a{margin-left:-1235.328000pt;}
._7f{margin-left:-1233.236480pt;}
._15{margin-left:-1221.214720pt;}
._85{margin-left:-1194.009600pt;}
._6b{margin-left:-1190.353920pt;}
._97{margin-left:-1113.556480pt;}
._80{margin-left:-1083.840000pt;}
._61{margin-left:-1080.202880pt;}
._59{margin-left:-1066.176000pt;}
._54{margin-left:-1023.260160pt;}
._73{margin-left:-1007.263360pt;}
._cd{margin-left:-963.456000pt;}
._5f{margin-left:-948.928000pt;}
._8a{margin-left:-936.095360pt;}
._5a{margin-left:-877.562880pt;}
._6f{margin-left:-861.151360pt;}
._2f{margin-left:-781.407360pt;}
._6c{margin-left:-776.962368pt;}
._64{margin-left:-775.501888pt;}
._29{margin-left:-755.200000pt;}
._63{margin-left:-732.200128pt;}
._125{margin-left:-721.664000pt;}
._62{margin-left:-718.542528pt;}
._9a{margin-left:-655.616000pt;}
._87{margin-left:-620.572800pt;}
._20{margin-left:-596.985600pt;}
._77{margin-left:-571.968000pt;}
._37{margin-left:-570.240000pt;}
._8{margin-left:-537.413120pt;}
._ca{margin-left:-535.040000pt;}
._8e{margin-left:-527.196800pt;}
._c{margin-left:-520.514560pt;}
._9c{margin-left:-500.229120pt;}
._40{margin-left:-478.914560pt;}
._90{margin-left:-434.140800pt;}
._70{margin-left:-429.824000pt;}
._5d{margin-left:-420.864000pt;}
._47{margin-left:-395.973120pt;}
._8b{margin-left:-387.650560pt;}
._3f{margin-left:-202.240000pt;}
._b{margin-left:-172.160000pt;}
._23{margin-left:-3.395840pt;}
._19{margin-left:-2.139520pt;}
._0{margin-left:-1.123200pt;}
._2{width:0.898560pt;}
._12{width:2.115840pt;}
._13{width:3.012480pt;}
._18{width:4.421760pt;}
._43{width:5.877760pt;}
._48{width:6.883200pt;}
._25{width:8.960000pt;}
._5b{width:10.331520pt;}
._8c{width:11.264000pt;}
._11{width:12.953600pt;}
._42{width:14.272000pt;}
._5e{width:17.018880pt;}
._22{width:18.496000pt;}
._4b{width:19.932160pt;}
._57{width:21.790080pt;}
._4d{width:22.819200pt;}
._39{width:24.890880pt;}
._71{width:26.823040pt;}
._3c{width:29.184000pt;}
._51{width:184.370560pt;}
._53{width:186.750720pt;}
._52{width:192.679680pt;}
.fs5{font-size:34.560000pt;}
.fs3{font-size:42.880000pt;}
.fs4{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs2{font-size:64.000000pt;}
.fs0{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.y5b{bottom:2.880000pt;}
.yad{bottom:3.520000pt;}
.yf3{bottom:4.320000pt;}
.yac{bottom:4.960000pt;}
.y59{bottom:5.600000pt;}
.yb0{bottom:6.240000pt;}
.y94{bottom:15.520000pt;}
.y8f{bottom:15.680000pt;}
.y67{bottom:18.240000pt;}
.ycb{bottom:98.080000pt;}
.ya7{bottom:108.800000pt;}
.y17{bottom:111.680000pt;}
.y7b{bottom:112.640000pt;}
.y2f{bottom:113.600000pt;}
.y8d{bottom:116.480000pt;}
.yaa{bottom:124.000000pt;}
.yc2{bottom:128.000000pt;}
.yed{bottom:129.440000pt;}
.y3e{bottom:130.080000pt;}
.y14d{bottom:131.040000pt;}
.yf0{bottom:131.680000pt;}
.yca{bottom:134.880000pt;}
.y131{bottom:142.080000pt;}
.ya6{bottom:145.600000pt;}
.y55{bottom:148.320000pt;}
.y16{bottom:148.480000pt;}
.y7a{bottom:149.440000pt;}
.y2e{bottom:150.400000pt;}
.y8c{bottom:153.280000pt;}
.y103{bottom:154.080000pt;}
.ya9{bottom:160.800000pt;}
.yc1{bottom:160.960000pt;}
.y11c{bottom:165.920000pt;}
.yec{bottom:166.240000pt;}
.yd6{bottom:166.560000pt;}
.y3d{bottom:166.880000pt;}
.y14c{bottom:167.840000pt;}
.yef{bottom:168.480000pt;}
.yc9{bottom:171.680000pt;}
.yc0{bottom:176.320000pt;}
.y130{bottom:178.880000pt;}
.ya5{bottom:182.400000pt;}
.y54{bottom:185.120000pt;}
.y15{bottom:185.280000pt;}
.y79{bottom:186.240000pt;}
.y2d{bottom:187.200000pt;}
.y8b{bottom:190.080000pt;}
.y102{bottom:190.880000pt;}
.ybf{bottom:191.680000pt;}
.ya8{bottom:194.082560pt;}
.y11b{bottom:202.720000pt;}
.yeb{bottom:203.040000pt;}
.yd5{bottom:203.360000pt;}
.y3c{bottom:203.680000pt;}
.y14b{bottom:204.640000pt;}
.ybe{bottom:207.040000pt;}
.yc8{bottom:208.480000pt;}
.y12f{bottom:215.680000pt;}
.yee{bottom:217.600000pt;}
.ybd{bottom:217.920000pt;}
.ya4{bottom:219.200000pt;}
.y53{bottom:221.920000pt;}
.y14{bottom:222.080000pt;}
.y78{bottom:223.040000pt;}
.y2c{bottom:224.000000pt;}
.y8a{bottom:226.880000pt;}
.y101{bottom:227.680000pt;}
.ybb{bottom:237.760000pt;}
.y11a{bottom:239.520000pt;}
.yea{bottom:239.840000pt;}
.yd4{bottom:240.160000pt;}
.y3b{bottom:240.480000pt;}
.y14a{bottom:241.440000pt;}
.yc7{bottom:245.280000pt;}
.ybc{bottom:245.920000pt;}
.y12e{bottom:252.480000pt;}
.ya3{bottom:256.000000pt;}
.yba{bottom:257.600000pt;}
.y52{bottom:258.720000pt;}
.y13{bottom:258.880000pt;}
.y77{bottom:259.840000pt;}
.y2b{bottom:260.800000pt;}
.y89{bottom:263.680000pt;}
.y100{bottom:264.480000pt;}
.y119{bottom:276.320000pt;}
.ye9{bottom:276.640000pt;}
.yd3{bottom:276.960000pt;}
.y3a{bottom:277.280000pt;}
.yb8{bottom:277.440000pt;}
.y149{bottom:278.240000pt;}
.yc6{bottom:282.080000pt;}
.yb9{bottom:285.600000pt;}
.y12d{bottom:289.280000pt;}
.ya2{bottom:292.800000pt;}
.y51{bottom:295.520000pt;}
.y12{bottom:295.680000pt;}
.y76{bottom:296.640000pt;}
.yb7{bottom:297.280000pt;}
.y2a{bottom:297.600000pt;}
.y88{bottom:300.480000pt;}
.yff{bottom:301.280000pt;}
.y118{bottom:313.120000pt;}
.ye8{bottom:313.440000pt;}
.yd2{bottom:313.760000pt;}
.y39{bottom:314.080000pt;}
.y148{bottom:315.040000pt;}
.yb4{bottom:317.120000pt;}
.yc5{bottom:318.880000pt;}
.yb6{bottom:325.280000pt;}
.y12c{bottom:326.080000pt;}
.yb5{bottom:326.720000pt;}
.ya1{bottom:329.600000pt;}
.y50{bottom:332.320000pt;}
.y11{bottom:332.480000pt;}
.y75{bottom:333.440000pt;}
.y29{bottom:334.400000pt;}
.yb1{bottom:336.960000pt;}
.y87{bottom:337.280000pt;}
.yfe{bottom:338.080000pt;}
.yb2{bottom:345.120000pt;}
.yb3{bottom:346.560000pt;}
.y117{bottom:349.920000pt;}
.ye7{bottom:350.240000pt;}
.yd1{bottom:350.560000pt;}
.y38{bottom:350.880000pt;}
.y147{bottom:351.840000pt;}
.yc4{bottom:355.680000pt;}
.yae{bottom:356.800000pt;}
.y12b{bottom:362.880000pt;}
.yaf{bottom:364.960000pt;}
.ya0{bottom:366.400000pt;}
.y4f{bottom:369.120000pt;}
.y10{bottom:369.280000pt;}
.y74{bottom:370.240000pt;}
.y28{bottom:371.200000pt;}
.y86{bottom:374.080000pt;}
.yfd{bottom:375.200000pt;}
.yab{bottom:379.680000pt;}
.y116{bottom:386.720000pt;}
.ye6{bottom:387.040000pt;}
.yd0{bottom:387.360000pt;}
.y37{bottom:387.680000pt;}
.y146{bottom:388.640000pt;}
.y49{bottom:392.480000pt;}
.y12a{bottom:399.680000pt;}
.y9f{bottom:403.200000pt;}
.y4e{bottom:405.920000pt;}
.yf{bottom:406.080000pt;}
.y27{bottom:408.000000pt;}
.yc3{bottom:408.480000pt;}
.y85{bottom:410.880000pt;}
.yfc{bottom:412.000000pt;}
.y73{bottom:417.760000pt;}
.y115{bottom:423.520000pt;}
.ye5{bottom:423.840000pt;}
.ycf{bottom:424.160000pt;}
.y36{bottom:424.480000pt;}
.y145{bottom:425.440000pt;}
.y48{bottom:429.280000pt;}
.yfb{bottom:429.760000pt;}
.y72{bottom:435.520000pt;}
.y9e{bottom:436.320000pt;}
.y127{bottom:440.000000pt;}
.y4d{bottom:442.720000pt;}
.ye{bottom:442.880000pt;}
.y26{bottom:444.800000pt;}
.y84{bottom:447.680000pt;}
.yfa{bottom:449.760000pt;}
.y11d{bottom:450.560000pt;}
.y71{bottom:450.880000pt;}
.y9d{bottom:451.680000pt;}
.y135{bottom:454.400000pt;}
.y114{bottom:460.320000pt;}
.ye4{bottom:460.640000pt;}
.yce{bottom:460.960000pt;}
.y35{bottom:461.280000pt;}
.y144{bottom:462.240000pt;}
.y47{bottom:466.080000pt;}
.y70{bottom:466.240000pt;}
.y9c{bottom:466.880000pt;}
.yf9{bottom:469.760000pt;}
.y129{bottom:471.520000pt;}
.y126{bottom:476.800000pt;}
.yd{bottom:479.680000pt;}
.y6f{bottom:481.600000pt;}
.y9b{bottom:482.240000pt;}
.y83{bottom:484.480000pt;}
.yf8{bottom:489.760000pt;}
.y134{bottom:491.200000pt;}
.y9a{bottom:494.080000pt;}
.y4c{bottom:495.520000pt;}
.y113{bottom:497.120000pt;}
.ye3{bottom:497.440000pt;}
.y25{bottom:497.600000pt;}
.ycd{bottom:497.760000pt;}
.y34{bottom:498.080000pt;}
.y143{bottom:499.040000pt;}
.y46{bottom:502.880000pt;}
.yf7{bottom:509.760000pt;}
.y6e{bottom:512.320000pt;}
.y125{bottom:513.600000pt;}
.y82{bottom:521.280000pt;}
.y128{bottom:524.160000pt;}
.y99{bottom:524.640000pt;}
.y6d{bottom:527.520000pt;}
.y133{bottom:528.000000pt;}
.yf6{bottom:529.760000pt;}
.yc{bottom:532.480000pt;}
.y112{bottom:533.920000pt;}
.y107{bottom:534.240000pt;}
.ycc{bottom:534.560000pt;}
.y33{bottom:534.880000pt;}
.y142{bottom:535.840000pt;}
.y45{bottom:539.680000pt;}
.y6c{bottom:542.880000pt;}
.y4b{bottom:548.320000pt;}
.yf5{bottom:549.760000pt;}
.y24{bottom:550.240000pt;}
.y98{bottom:555.200000pt;}
.y81{bottom:558.080000pt;}
.y6b{bottom:558.240000pt;}
.y124{bottom:560.960000pt;}
.y132{bottom:564.800000pt;}
.yf4{bottom:569.760000pt;}
.y111{bottom:570.720000pt;}
.y106{bottom:571.040000pt;}
.ye2{bottom:571.360000pt;}
.y32{bottom:571.680000pt;}
.y141{bottom:572.640000pt;}
.y6a{bottom:573.600000pt;}
.y44{bottom:576.480000pt;}
.y4a{bottom:580.160000pt;}
.yb{bottom:585.280000pt;}
.y97{bottom:585.600000pt;}
.yf2{bottom:589.760000pt;}
.y80{bottom:594.880000pt;}
.y69{bottom:596.000000pt;}
.y23{bottom:597.760000pt;}
.y110{bottom:607.520000pt;}
.y105{bottom:607.840000pt;}
.ye1{bottom:608.160000pt;}
.y31{bottom:608.480000pt;}
.y140{bottom:609.440000pt;}
.yf1{bottom:612.800000pt;}
.y43{bottom:613.280000pt;}
.y66{bottom:615.520000pt;}
.y96{bottom:616.160000pt;}
.y68{bottom:626.080000pt;}
.y7f{bottom:631.680000pt;}
.y22{bottom:634.560000pt;}
.ya{bottom:638.080000pt;}
.y10f{bottom:644.320000pt;}
.y104{bottom:644.640000pt;}
.ye0{bottom:644.960000pt;}
.y30{bottom:645.280000pt;}
.y13f{bottom:646.240000pt;}
.y95{bottom:646.720000pt;}
.y42{bottom:650.080000pt;}
.y7e{bottom:668.480000pt;}
.y123{bottom:671.360000pt;}
.y93{bottom:677.280000pt;}
.y9{bottom:680.960000pt;}
.y10e{bottom:681.120000pt;}
.y65{bottom:681.760000pt;}
.y21{bottom:682.080000pt;}
.y13e{bottom:683.040000pt;}
.y41{bottom:686.880000pt;}
.y92{bottom:707.680000pt;}
.y122{bottom:708.160000pt;}
.y8{bottom:711.680000pt;}
.y10d{bottom:717.920000pt;}
.ydf{bottom:718.560000pt;}
.y20{bottom:718.880000pt;}
.y13d{bottom:719.840000pt;}
.y7d{bottom:721.280000pt;}
.y40{bottom:723.680000pt;}
.y64{bottom:734.560000pt;}
.y91{bottom:738.240000pt;}
.y121{bottom:744.960000pt;}
.y7{bottom:748.480000pt;}
.y10c{bottom:754.720000pt;}
.yde{bottom:755.360000pt;}
.y1f{bottom:755.680000pt;}
.y13c{bottom:756.640000pt;}
.y63{bottom:768.480000pt;}
.y8e{bottom:772.800000pt;}
.y7c{bottom:774.080000pt;}
.y3f{bottom:776.480000pt;}
.y120{bottom:781.760000pt;}
.y62{bottom:783.840000pt;}
.y6{bottom:785.280000pt;}
.y90{bottom:787.200000pt;}
.y10b{bottom:791.520000pt;}
.ydd{bottom:792.160000pt;}
.y1e{bottom:792.480000pt;}
.y13b{bottom:793.440000pt;}
.y61{bottom:799.040000pt;}
.y60{bottom:814.400000pt;}
.y11f{bottom:818.560000pt;}
.y5{bottom:828.160000pt;}
.y10a{bottom:828.320000pt;}
.ydc{bottom:828.960000pt;}
.y1d{bottom:829.280000pt;}
.y5f{bottom:829.760000pt;}
.y13a{bottom:830.240000pt;}
.y5e{bottom:845.120000pt;}
.y11e{bottom:855.360000pt;}
.y5d{bottom:860.480000pt;}
.y109{bottom:865.440000pt;}
.ydb{bottom:865.760000pt;}
.y1c{bottom:866.080000pt;}
.y139{bottom:867.040000pt;}
.y4{bottom:874.720000pt;}
.y5c{bottom:875.840000pt;}
.y5a{bottom:891.040000pt;}
.y108{bottom:902.240000pt;}
.yda{bottom:902.560000pt;}
.y1b{bottom:902.880000pt;}
.y138{bottom:903.840000pt;}
.y58{bottom:909.440000pt;}
.y3{bottom:911.520000pt;}
.y57{bottom:915.040000pt;}
.yd9{bottom:939.360000pt;}
.y1a{bottom:939.680000pt;}
.y137{bottom:940.640000pt;}
.y56{bottom:965.760000pt;}
.y2{bottom:967.680000pt;}
.yd8{bottom:976.160000pt;}
.y19{bottom:976.480000pt;}
.y136{bottom:977.280000pt;}
.y1{bottom:1010.720000pt;}
.yd7{bottom:1012.960000pt;}
.y18{bottom:1013.280000pt;}
.hc{height:15.198667pt;}
.hd{height:15.200000pt;}
.ha{height:15.360000pt;}
.h19{height:19.840000pt;}
.h1a{height:19.841333pt;}
.h1e{height:19.998667pt;}
.h1f{height:20.000000pt;}
.h9{height:20.800000pt;}
.h18{height:25.741250pt;}
.h17{height:28.822500pt;}
.h14{height:29.186875pt;}
.h15{height:30.400000pt;}
.h1b{height:30.545000pt;}
.h16{height:30.558667pt;}
.h12{height:30.560000pt;}
.he{height:30.720000pt;}
.h5{height:35.761250pt;}
.h8{height:36.001250pt;}
.h10{height:36.156875pt;}
.hf{height:36.883125pt;}
.h4{height:39.243750pt;}
.h7{height:43.375000pt;}
.h13{height:43.562500pt;}
.hb{height:44.301250pt;}
.h11{height:44.437500pt;}
.h20{height:44.468750pt;}
.h2{height:50.748750pt;}
.h6{height:53.375000pt;}
.h3{height:60.081250pt;}
.h1c{height:793.760000pt;}
.h1d{height:794.000000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w25{width:41.600000pt;}
.w22{width:41.760000pt;}
.w21{width:42.560000pt;}
.w1e{width:47.681333pt;}
.w13{width:51.040000pt;}
.w20{width:51.840000pt;}
.w1d{width:56.640000pt;}
.w1f{width:57.918667pt;}
.wc{width:58.720000pt;}
.w16{width:60.318667pt;}
.w14{width:60.320000pt;}
.w15{width:64.320000pt;}
.w18{width:65.760000pt;}
.w19{width:66.240000pt;}
.w17{width:66.560000pt;}
.w1a{width:70.880000pt;}
.w5{width:71.680000pt;}
.w6{width:71.681333pt;}
.w12{width:75.200000pt;}
.w11{width:75.360000pt;}
.we{width:75.678667pt;}
.w4{width:75.680000pt;}
.w8{width:76.000000pt;}
.wa{width:76.001333pt;}
.wb{width:76.158667pt;}
.w10{width:76.160000pt;}
.w9{width:77.280000pt;}
.wf{width:79.040000pt;}
.w23{width:80.000000pt;}
.w7{width:80.320000pt;}
.wd{width:81.281333pt;}
.w24{width:85.120000pt;}
.w3{width:149.600000pt;}
.w2{width:170.238667pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.w1b{width:1122.560000pt;}
.w1c{width:1122.666667pt;}
.x0{left:0.000000pt;}
.x2a{left:2.080000pt;}
.x10{left:7.200000pt;}
.x23{left:8.480000pt;}
.x16{left:10.400000pt;}
.x17{left:11.840000pt;}
.x25{left:12.800000pt;}
.x24{left:14.880000pt;}
.x3c{left:16.000000pt;}
.x28{left:17.440000pt;}
.x26{left:18.880000pt;}
.x27{left:20.320000pt;}
.x22{left:21.760000pt;}
.x1b{left:23.360000pt;}
.x12{left:24.960000pt;}
.x2c{left:25.920000pt;}
.x19{left:27.040000pt;}
.x43{left:28.000000pt;}
.x47{left:30.400000pt;}
.xf{left:32.000000pt;}
.x50{left:33.280000pt;}
.x5f{left:34.400000pt;}
.x13{left:36.480000pt;}
.x60{left:38.400000pt;}
.x14{left:42.720000pt;}
.x15{left:44.320000pt;}
.x48{left:45.440000pt;}
.xd{left:47.360000pt;}
.x4a{left:50.720000pt;}
.x31{left:52.320000pt;}
.x2e{left:55.200000pt;}
.x52{left:56.160000pt;}
.xe{left:57.280000pt;}
.x3d{left:66.880000pt;}
.xc{left:79.520000pt;}
.x11{left:80.480000pt;}
.x4{left:81.920000pt;}
.xb{left:100.000000pt;}
.x56{left:106.720000pt;}
.x29{left:111.360000pt;}
.x3{left:113.440000pt;}
.x2{left:120.480000pt;}
.x3e{left:126.240000pt;}
.x53{left:137.440000pt;}
.x8{left:142.240000pt;}
.x54{left:161.440000pt;}
.x3f{left:163.680000pt;}
.x2b{left:170.080000pt;}
.x1a{left:189.120000pt;}
.x1{left:194.080000pt;}
.x2d{left:205.760000pt;}
.x58{left:217.760000pt;}
.x40{left:224.000000pt;}
.x7{left:236.960000pt;}
.x2f{left:251.360000pt;}
.x1c{left:260.800000pt;}
.x6{left:264.800000pt;}
.x30{left:284.160000pt;}
.x41{left:288.320000pt;}
.x32{left:327.040000pt;}
.x57{left:328.640000pt;}
.x4b{left:330.560000pt;}
.x1d{left:332.480000pt;}
.x59{left:340.160000pt;}
.x42{left:352.640000pt;}
.x33{left:358.880000pt;}
.x18{left:360.480000pt;}
.x4c{left:392.800000pt;}
.x5a{left:398.080000pt;}
.x34{left:406.080000pt;}
.xa{left:407.200000pt;}
.x1e{left:412.800000pt;}
.x35{left:436.480000pt;}
.x5b{left:449.920000pt;}
.x9{left:456.800000pt;}
.x4f{left:461.920000pt;}
.x4d{left:467.360000pt;}
.x44{left:479.520000pt;}
.x36{left:482.240000pt;}
.x1f{left:488.800000pt;}
.x5c{left:492.480000pt;}
.x37{left:512.320000pt;}
.x4e{left:522.560000pt;}
.x49{left:528.160000pt;}
.x5d{left:534.240000pt;}
.x45{left:545.280000pt;}
.x38{left:557.600000pt;}
.x20{left:566.080000pt;}
.x39{left:587.840000pt;}
.x51{left:599.360000pt;}
.x46{left:611.520000pt;}
.x5e{left:614.240000pt;}
.x3a{left:633.600000pt;}
.x21{left:642.080000pt;}
.x3b{left:663.520000pt;}
.x5{left:699.360000pt;}
.x55{left:969.440000pt;}
}




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