
    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_c806f46534e9adefb07ed220.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.157227;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_ecfb1b2937a571cf7353bdc5.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.022461;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_45421bc6ffaf92dbd94ad078.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.139160;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_3b5b025e32ed61f1357f4e43.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.976111;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_a0d789f3cf723247a5f33e04.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.159668;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_0497439e5fd0a558788560e5.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.995000;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_79a66432cc454452aaad7618.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.128000;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_290d3c79c44697ada9644f0f.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.996000;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_9658ed6fa35bce5c75cd7c11.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.090000;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_6b4056435881b83ba7f8646d.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.998000;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;}
.m2{transform:matrix(0.189583,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189583,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189583,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.189585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189585,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);}
.m4{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);}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:19.980000px;}
.v1{vertical-align:21.978000px;}
.ls0{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.330000px;}
.ls6{letter-spacing:0.857400px;}
.ls4{letter-spacing:2.769600px;}
.ls3{letter-spacing:3.205800px;}
.ls7{letter-spacing:7.903800px;}
.ls5{letter-spacing:12.722400px;}
.ls8{letter-spacing:29.619000px;}
.ls1{letter-spacing:33.183600px;}
.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:-13.446000px;}
.ws71{word-spacing:-13.392000px;}
.ws1{word-spacing:-13.230000px;}
.ws7c{word-spacing:-13.200000px;}
.ws2{word-spacing:-12.542429px;}
.wsb3{word-spacing:-12.000000px;}
.ws24{word-spacing:-7.695600px;}
.wsd9{word-spacing:-6.996000px;}
.wse1{word-spacing:-5.160000px;}
.wsd8{word-spacing:-2.700000px;}
.wsde{word-spacing:-2.400000px;}
.ws43{word-spacing:-2.310000px;}
.ws9b{word-spacing:-2.178000px;}
.ws1d{word-spacing:-2.160000px;}
.ws25{word-spacing:-2.046000px;}
.ws7f{word-spacing:-1.980000px;}
.ws84{word-spacing:-1.914000px;}
.ws97{word-spacing:-1.848000px;}
.wsbe{word-spacing:-1.800000px;}
.ws3b{word-spacing:-1.782000px;}
.wsa4{word-spacing:-1.716000px;}
.wsbd{word-spacing:-1.680000px;}
.ws76{word-spacing:-1.650000px;}
.ws4e{word-spacing:-1.518000px;}
.ws78{word-spacing:-1.452000px;}
.ws15{word-spacing:-1.404000px;}
.ws34{word-spacing:-1.386000px;}
.ws92{word-spacing:-1.320000px;}
.wsb4{word-spacing:-1.254000px;}
.wsaa{word-spacing:-1.188000px;}
.ws5b{word-spacing:-1.122000px;}
.ws8d{word-spacing:-1.056000px;}
.ws2e{word-spacing:-0.990000px;}
.ws9a{word-spacing:-0.924000px;}
.ws16{word-spacing:-0.810000px;}
.ws17{word-spacing:-0.756000px;}
.wsbc{word-spacing:-0.720000px;}
.ws5a{word-spacing:-0.660000px;}
.wsce{word-spacing:-0.600000px;}
.ws94{word-spacing:-0.594000px;}
.ws35{word-spacing:-0.528000px;}
.ws32{word-spacing:-0.462000px;}
.ws26{word-spacing:-0.396000px;}
.wse0{word-spacing:-0.360000px;}
.ws4c{word-spacing:-0.330000px;}
.wsca{word-spacing:-0.240000px;}
.ws5d{word-spacing:-0.198000px;}
.wsd2{word-spacing:-0.180000px;}
.ws48{word-spacing:-0.132000px;}
.wsb5{word-spacing:-0.066000px;}
.ws3{word-spacing:0.000000px;}
.wsda{word-spacing:0.120000px;}
.wscf{word-spacing:0.240000px;}
.ws96{word-spacing:0.264000px;}
.wse{word-spacing:0.324000px;}
.ws83{word-spacing:0.396000px;}
.ws30{word-spacing:0.462000px;}
.wsc0{word-spacing:0.480000px;}
.wsc2{word-spacing:0.540000px;}
.ws4d{word-spacing:0.594000px;}
.ws51{word-spacing:0.660000px;}
.ws68{word-spacing:0.726000px;}
.ws27{word-spacing:0.792000px;}
.wsc9{word-spacing:0.840000px;}
.ws53{word-spacing:0.858000px;}
.ws23{word-spacing:0.864000px;}
.ws82{word-spacing:0.924000px;}
.wsc3{word-spacing:0.960000px;}
.ws36{word-spacing:0.990000px;}
.wsba{word-spacing:1.080000px;}
.ws66{word-spacing:1.122000px;}
.ws9e{word-spacing:1.188000px;}
.ws2f{word-spacing:1.254000px;}
.wsb7{word-spacing:1.320000px;}
.ws69{word-spacing:1.386000px;}
.ws41{word-spacing:1.518000px;}
.wsa0{word-spacing:1.584000px;}
.wsc1{word-spacing:1.620000px;}
.ws87{word-spacing:1.650000px;}
.ws8a{word-spacing:1.716000px;}
.wsad{word-spacing:1.782000px;}
.ws1a{word-spacing:1.890000px;}
.ws81{word-spacing:1.914000px;}
.ws8c{word-spacing:1.980000px;}
.ws18{word-spacing:2.106000px;}
.wsa1{word-spacing:2.112000px;}
.ws9c{word-spacing:2.178000px;}
.wsd0{word-spacing:2.280000px;}
.ws7b{word-spacing:2.310000px;}
.wsb2{word-spacing:2.376000px;}
.wsb{word-spacing:2.430000px;}
.ws58{word-spacing:2.442000px;}
.ws5e{word-spacing:2.508000px;}
.wsb0{word-spacing:2.574000px;}
.ws39{word-spacing:2.706000px;}
.ws1c{word-spacing:2.808000px;}
.ws28{word-spacing:2.838000px;}
.ws5c{word-spacing:2.904000px;}
.ws33{word-spacing:2.970000px;}
.ws86{word-spacing:3.036000px;}
.ws2a{word-spacing:3.102000px;}
.ws8b{word-spacing:3.168000px;}
.wsb9{word-spacing:3.180000px;}
.ws61{word-spacing:3.234000px;}
.ws6f{word-spacing:3.300000px;}
.wsbf{word-spacing:3.360000px;}
.ws42{word-spacing:3.366000px;}
.wse2{word-spacing:3.420000px;}
.ws89{word-spacing:3.432000px;}
.wsd1{word-spacing:3.480000px;}
.ws49{word-spacing:3.498000px;}
.ws22{word-spacing:3.510000px;}
.wsd4{word-spacing:3.540000px;}
.ws7e{word-spacing:3.564000px;}
.ws3d{word-spacing:3.630000px;}
.wsdd{word-spacing:3.660000px;}
.ws45{word-spacing:3.696000px;}
.ws7d{word-spacing:3.828000px;}
.ws4b{word-spacing:3.894000px;}
.ws6a{word-spacing:3.960000px;}
.ws5f{word-spacing:4.026000px;}
.ws38{word-spacing:4.092000px;}
.wscd{word-spacing:4.140000px;}
.wsd{word-spacing:4.158000px;}
.ws52{word-spacing:4.290000px;}
.wsdf{word-spacing:4.320000px;}
.wsa9{word-spacing:4.356000px;}
.ws6c{word-spacing:4.422000px;}
.ws3f{word-spacing:4.488000px;}
.ws77{word-spacing:4.554000px;}
.ws31{word-spacing:4.620000px;}
.ws3e{word-spacing:4.686000px;}
.wsaf{word-spacing:4.818000px;}
.ws13{word-spacing:4.914000px;}
.ws8f{word-spacing:4.950000px;}
.ws9d{word-spacing:5.082000px;}
.ws2d{word-spacing:5.148000px;}
.ws40{word-spacing:5.214000px;}
.wsb1{word-spacing:5.280000px;}
.ws37{word-spacing:5.412000px;}
.ws46{word-spacing:5.478000px;}
.ws99{word-spacing:5.544000px;}
.wsc4{word-spacing:5.640000px;}
.ws4f{word-spacing:5.676000px;}
.ws6b{word-spacing:5.808000px;}
.ws8{word-spacing:5.940000px;}
.ws70{word-spacing:6.006000px;}
.ws10{word-spacing:6.102000px;}
.wsab{word-spacing:6.138000px;}
.wscb{word-spacing:6.180000px;}
.ws6e{word-spacing:6.204000px;}
.wsa{word-spacing:6.264000px;}
.wsac{word-spacing:6.336000px;}
.ws7a{word-spacing:6.402000px;}
.ws8e{word-spacing:6.468000px;}
.ws14{word-spacing:6.534000px;}
.wsd6{word-spacing:6.540000px;}
.ws88{word-spacing:6.600000px;}
.wscc{word-spacing:6.660000px;}
.ws93{word-spacing:6.666000px;}
.wsc6{word-spacing:6.720000px;}
.ws3a{word-spacing:6.732000px;}
.ws67{word-spacing:6.798000px;}
.wsae{word-spacing:6.864000px;}
.ws65{word-spacing:6.930000px;}
.wsc7{word-spacing:6.960000px;}
.ws50{word-spacing:6.996000px;}
.ws2c{word-spacing:7.062000px;}
.ws9{word-spacing:7.128000px;}
.ws47{word-spacing:7.260000px;}
.ws60{word-spacing:7.326000px;}
.ws21{word-spacing:7.344000px;}
.ws98{word-spacing:7.458000px;}
.ws57{word-spacing:7.590000px;}
.ws3c{word-spacing:7.656000px;}
.ws2b{word-spacing:7.722000px;}
.wsbb{word-spacing:7.800000px;}
.ws91{word-spacing:7.854000px;}
.ws29{word-spacing:8.118000px;}
.ws54{word-spacing:8.184000px;}
.ws80{word-spacing:8.250000px;}
.ws64{word-spacing:8.382000px;}
.wsd5{word-spacing:8.400000px;}
.ws85{word-spacing:8.448000px;}
.ws59{word-spacing:8.580000px;}
.wsb6{word-spacing:8.844000px;}
.ws7{word-spacing:8.964000px;}
.ws19{word-spacing:9.180000px;}
.wsb8{word-spacing:9.300000px;}
.ws9f{word-spacing:9.306000px;}
.ws72{word-spacing:9.504000px;}
.ws63{word-spacing:9.570000px;}
.ws90{word-spacing:10.230000px;}
.ws1b{word-spacing:10.314000px;}
.ws56{word-spacing:10.428000px;}
.ws44{word-spacing:10.758000px;}
.ws11{word-spacing:11.124000px;}
.ws12{word-spacing:11.178000px;}
.ws6d{word-spacing:11.220000px;}
.ws4{word-spacing:11.394000px;}
.ws6{word-spacing:11.934000px;}
.wsc8{word-spacing:12.720000px;}
.wsc{word-spacing:12.906000px;}
.wsf{word-spacing:13.446000px;}
.ws55{word-spacing:14.058000px;}
.ws62{word-spacing:14.124000px;}
.ws4a{word-spacing:14.190000px;}
.ws1e{word-spacing:14.796000px;}
.ws5{word-spacing:15.012000px;}
.wsa2{word-spacing:15.180000px;}
.wsa3{word-spacing:16.104000px;}
.wsc5{word-spacing:16.500000px;}
.wsdb{word-spacing:18.720000px;}
.wsd3{word-spacing:19.200000px;}
.wsdc{word-spacing:19.680000px;}
.ws20{word-spacing:22.032000px;}
.ws95{word-spacing:22.242000px;}
.wsd7{word-spacing:29.640000px;}
.ws1f{word-spacing:31.104000px;}
.ws79{word-spacing:156.851063px;}
.ws73{word-spacing:156.854780px;}
.wsa8{word-spacing:166.973561px;}
.ws74{word-spacing:187.173015px;}
.ws75{word-spacing:217.499415px;}
.wsa7{word-spacing:261.658244px;}
.wsa5{word-spacing:299.917829px;}
.wsa6{word-spacing:312.671356px;}
._9{margin-left:-48.048000px;}
._43{margin-left:-5.945400px;}
._4{margin-left:-3.986400px;}
._2{margin-left:-2.339400px;}
._1{margin-left:-1.231200px;}
._3{width:1.161600px;}
._5{width:2.864400px;}
._0{width:4.806000px;}
._7{width:6.534000px;}
._8{width:8.052000px;}
._b{width:10.203600px;}
._3f{width:11.424600px;}
._46{width:13.476000px;}
._6{width:14.777400px;}
._c{width:15.807000px;}
._47{width:17.169000px;}
._48{width:19.182000px;}
._45{width:21.438000px;}
._49{width:22.446000px;}
._3e{width:29.298000px;}
._a{width:33.183600px;}
._3d{width:130.639463px;}
._23{width:139.897610px;}
._10{width:156.318146px;}
._42{width:163.468683px;}
._1c{width:170.115366px;}
._2d{width:187.122732px;}
._2f{width:188.939122px;}
._13{width:200.515463px;}
._2c{width:217.445415px;}
._12{width:230.838146px;}
._44{width:240.171951px;}
._41{width:274.324683px;}
._2e{width:280.871561px;}
._24{width:437.851171px;}
._29{width:521.162371px;}
._f{width:547.640195px;}
._e{width:599.605610px;}
._1e{width:611.342371px;}
._2a{width:627.326371px;}
._40{width:706.256327px;}
._31{width:712.415122px;}
._19{width:733.691122px;}
._1f{width:735.706522px;}
._32{width:772.111171px;}
._34{width:776.863171px;}
._20{width:777.960322px;}
._25{width:781.157122px;}
._33{width:789.823171px;}
._28{width:803.215171px;}
._30{width:821.063122px;}
._35{width:828.623122px;}
._22{width:834.146371px;}
._d{width:851.445951px;}
._14{width:858.824371px;}
._38{width:864.209122px;}
._1d{width:874.955122px;}
._26{width:894.719122px;}
._36{width:904.061122px;}
._3c{width:910.706195px;}
._2b{width:928.817561px;}
._11{width:971.064322px;}
._1b{width:974.071171px;}
._18{width:976.518322px;}
._17{width:977.905171px;}
._27{width:989.975122px;}
._39{width:1025.075122px;}
._21{width:1079.857171px;}
._3a{width:1096.705171px;}
._15{width:1120.601122px;}
._3b{width:1128.971122px;}
._16{width:1133.857171px;}
._1a{width:1191.665122px;}
._37{width:1196.903122px;}
.fc3{color:rgb(255,0,0);}
.fc2{color:transparent;}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(35,31,32);}
.fs7{font-size:34.980000px;}
.fs5{font-size:38.478000px;}
.fs3{font-size:50.371200px;}
.fs1{font-size:54.000000px;}
.fs4{font-size:57.000000px;}
.fs6{font-size:60.000000px;}
.fs0{font-size:66.000000px;}
.fs2{font-size:86.400000px;}
.y0{bottom:0.000000px;}
.y46{bottom:43.265250px;}
.y1{bottom:45.026550px;}
.y45{bottom:59.765250px;}
.y44{bottom:76.265250px;}
.y218{bottom:89.291400px;}
.y93{bottom:91.510050px;}
.y149{bottom:92.511000px;}
.y12f{bottom:92.777850px;}
.y28a{bottom:92.797800px;}
.y306{bottom:92.821950px;}
.y184{bottom:92.839950px;}
.y1f5{bottom:92.920200px;}
.ye1{bottom:93.321750px;}
.y6c{bottom:93.381150px;}
.y331{bottom:93.557250px;}
.yb9{bottom:93.595950px;}
.y1d0{bottom:93.748200px;}
.y2dc{bottom:94.082100px;}
.y2b1{bottom:94.178100px;}
.y16d{bottom:94.756950px;}
.y1ab{bottom:95.150100px;}
.y23c{bottom:95.190300px;}
.y105{bottom:96.754050px;}
.y20{bottom:97.795200px;}
.y217{bottom:107.291400px;}
.y92{bottom:112.359900px;}
.y305{bottom:112.727100px;}
.y330{bottom:112.982100px;}
.y148{bottom:113.361000px;}
.y12e{bottom:113.628000px;}
.y183{bottom:113.689950px;}
.y2b0{bottom:113.828100px;}
.y1f4{bottom:113.920200px;}
.y2db{bottom:113.957100px;}
.y289{bottom:113.977800px;}
.ye0{bottom:114.171750px;}
.y1f{bottom:114.295200px;}
.y6b{bottom:114.426150px;}
.yb8{bottom:114.641100px;}
.y1cf{bottom:114.898200px;}
.y1aa{bottom:116.000100px;}
.y23b{bottom:116.415300px;}
.y104{bottom:117.604050px;}
.y16c{bottom:119.425350px;}
.y41{bottom:123.307200px;}
.y1e{bottom:130.795200px;}
.y32f{bottom:132.407100px;}
.y304{bottom:132.632100px;}
.y91{bottom:133.135050px;}
.y2af{bottom:133.478100px;}
.y2da{bottom:133.832100px;}
.y147{bottom:134.211000px;}
.y12d{bottom:134.478000px;}
.y182{bottom:134.539950px;}
.y1f3{bottom:134.920200px;}
.ydf{bottom:135.021750px;}
.y288{bottom:135.157800px;}
.y6a{bottom:135.471150px;}
.yb7{bottom:135.685950px;}
.y1ce{bottom:136.048050px;}
.y1a9{bottom:136.100100px;}
.y23a{bottom:137.640300px;}
.y103{bottom:138.454050px;}
.y16b{bottom:138.559200px;}
.y40{bottom:139.807200px;}
.y1d{bottom:151.547250px;}
.y32e{bottom:151.832100px;}
.y303{bottom:152.536950px;}
.y2ae{bottom:153.128100px;}
.y2d9{bottom:153.707100px;}
.y90{bottom:153.909900px;}
.y146{bottom:155.061000px;}
.y12c{bottom:155.327850px;}
.y181{bottom:155.389950px;}
.yde{bottom:155.871750px;}
.y1f2{bottom:155.920200px;}
.y3f{bottom:156.307200px;}
.y287{bottom:156.337800px;}
.y69{bottom:156.516150px;}
.yb6{bottom:156.731100px;}
.y1a8{bottom:156.950100px;}
.y1cd{bottom:157.198200px;}
.y16a{bottom:157.693050px;}
.y239{bottom:158.865300px;}
.y102{bottom:159.304050px;}
.y1c{bottom:168.047250px;}
.y216{bottom:168.067200px;}
.y263{bottom:169.901550px;}
.y32d{bottom:171.257100px;}
.y302{bottom:172.442100px;}
.y2ad{bottom:172.778100px;}
.y3e{bottom:172.807200px;}
.y2d8{bottom:173.582100px;}
.y8f{bottom:174.684900px;}
.y145{bottom:175.911000px;}
.y12b{bottom:176.178000px;}
.y180{bottom:176.239950px;}
.ydd{bottom:176.721750px;}
.y169{bottom:176.826900px;}
.y1f1{bottom:176.920200px;}
.y286{bottom:177.517800px;}
.y68{bottom:177.561150px;}
.yb5{bottom:177.775950px;}
.y1cc{bottom:178.348200px;}
.y238{bottom:180.090300px;}
.y101{bottom:184.405950px;}
.y1b{bottom:184.547250px;}
.y1a7{bottom:185.554050px;}
.y215{bottom:189.142200px;}
.y3d{bottom:189.307200px;}
.y32c{bottom:190.682100px;}
.y301{bottom:192.347100px;}
.y2ac{bottom:192.428100px;}
.y2d7{bottom:193.457100px;}
.y8e{bottom:195.459900px;}
.y262{bottom:195.471000px;}
.y168{bottom:195.960750px;}
.y144{bottom:196.761000px;}
.y12a{bottom:197.028000px;}
.ydc{bottom:197.571750px;}
.y1f0{bottom:197.920200px;}
.y67{bottom:198.606150px;}
.y285{bottom:198.697800px;}
.yb4{bottom:198.820950px;}
.y1cb{bottom:199.498050px;}
.y1a{bottom:201.047250px;}
.y237{bottom:201.315300px;}
.y17f{bottom:203.467950px;}
.y100{bottom:205.255950px;}
.y1a6{bottom:205.654050px;}
.y3c{bottom:205.807200px;}
.y32b{bottom:210.107100px;}
.y214{bottom:210.217200px;}
.y2ab{bottom:212.078100px;}
.y300{bottom:212.252100px;}
.y2d6{bottom:213.332100px;}
.y261{bottom:213.471000px;}
.y167{bottom:215.094600px;}
.y8d{bottom:216.234900px;}
.y19{bottom:217.547250px;}
.y143{bottom:217.611000px;}
.y129{bottom:217.878000px;}
.ydb{bottom:218.421750px;}
.y1ef{bottom:218.920200px;}
.y66{bottom:219.651150px;}
.yb3{bottom:219.865950px;}
.y284{bottom:219.877800px;}
.y1ca{bottom:220.648200px;}
.y3b{bottom:222.307200px;}
.y236{bottom:222.540300px;}
.y1a5{bottom:225.754050px;}
.yff{bottom:226.105950px;}
.y32a{bottom:229.532100px;}
.y260{bottom:231.471000px;}
.y2aa{bottom:231.728100px;}
.y2ff{bottom:232.157100px;}
.y2d5{bottom:233.207100px;}
.y18{bottom:234.047250px;}
.y166{bottom:234.228450px;}
.y8c{bottom:237.009900px;}
.y128{bottom:238.727850px;}
.y17e{bottom:239.199750px;}
.yda{bottom:239.271750px;}
.y213{bottom:239.796150px;}
.y1ee{bottom:239.920200px;}
.y65{bottom:240.696150px;}
.yb2{bottom:240.910950px;}
.y283{bottom:241.057800px;}
.y1c9{bottom:241.798200px;}
.y235{bottom:243.765300px;}
.y142{bottom:244.839000px;}
.y1a4{bottom:245.854050px;}
.yfe{bottom:246.955950px;}
.y329{bottom:248.957100px;}
.y25f{bottom:249.471000px;}
.y17{bottom:250.547250px;}
.y2a9{bottom:251.378100px;}
.y2fe{bottom:252.062100px;}
.y2d4{bottom:253.082100px;}
.y165{bottom:253.362300px;}
.y8b{bottom:257.784900px;}
.y127{bottom:259.577850px;}
.yd9{bottom:260.121750px;}
.y212{bottom:260.871150px;}
.y1ed{bottom:260.920200px;}
.y64{bottom:261.741150px;}
.yb1{bottom:261.955950px;}
.y282{bottom:262.237800px;}
.y1c8{bottom:262.948200px;}
.y17d{bottom:264.203700px;}
.y234{bottom:264.990300px;}
.y1a3{bottom:265.954050px;}
.y16{bottom:267.047250px;}
.y25e{bottom:267.471000px;}
.y328{bottom:268.382100px;}
.y2a8{bottom:271.028100px;}
.y2fd{bottom:271.967100px;}
.yfd{bottom:272.058000px;}
.y164{bottom:272.496150px;}
.y2d3{bottom:272.957100px;}
.y8a{bottom:278.559900px;}
.y126{bottom:280.428000px;}
.yd8{bottom:280.971750px;}
.y1ec{bottom:281.920200px;}
.y211{bottom:281.946150px;}
.y63{bottom:282.786150px;}
.y281{bottom:283.417800px;}
.y15{bottom:283.547250px;}
.y3a{bottom:283.878000px;}
.y1c7{bottom:284.098200px;}
.y141{bottom:284.822850px;}
.y25d{bottom:285.471000px;}
.y1a2{bottom:286.054050px;}
.y233{bottom:286.215300px;}
.y327{bottom:287.807100px;}
.yb0{bottom:289.378950px;}
.y2a7{bottom:290.678100px;}
.y163{bottom:291.630000px;}
.y2fc{bottom:291.872100px;}
.y2d2{bottom:292.832100px;}
.yfc{bottom:292.908000px;}
.y89{bottom:299.334900px;}
.y14{bottom:300.047250px;}
.y39{bottom:300.378000px;}
.y125{bottom:301.278000px;}
.yd7{bottom:301.821750px;}
.y1eb{bottom:302.920200px;}
.y210{bottom:303.021150px;}
.y25c{bottom:303.471000px;}
.y62{bottom:303.831150px;}
.y280{bottom:304.597800px;}
.y1c6{bottom:305.248050px;}
.y1a1{bottom:306.154050px;}
.y326{bottom:307.232100px;}
.y232{bottom:307.440300px;}
.y140{bottom:309.826800px;}
.y2a6{bottom:310.328100px;}
.y162{bottom:310.763850px;}
.y2fb{bottom:311.777100px;}
.y2d1{bottom:312.707100px;}
.yfb{bottom:313.758000px;}
.y13{bottom:316.547250px;}
.y38{bottom:316.878000px;}
.y88{bottom:320.109900px;}
.y25b{bottom:321.471000px;}
.y124{bottom:322.128000px;}
.yd6{bottom:322.671750px;}
.y1ea{bottom:323.920200px;}
.y20f{bottom:324.096150px;}
.y61{bottom:324.876150px;}
.yaf{bottom:325.305900px;}
.y27f{bottom:325.777800px;}
.y1c5{bottom:326.398200px;}
.y325{bottom:326.657100px;}
.y231{bottom:328.665300px;}
.y161{bottom:329.897700px;}
.y2a5{bottom:329.978100px;}
.y2fa{bottom:331.682100px;}
.y2d0{bottom:332.582100px;}
.y1a0{bottom:332.632050px;}
.y12{bottom:333.047250px;}
.y37{bottom:333.378000px;}
.yfa{bottom:334.608000px;}
.y25a{bottom:339.471000px;}
.y87{bottom:340.884900px;}
.y123{bottom:342.977850px;}
.yd5{bottom:343.521750px;}
.y1e9{bottom:344.920200px;}
.y20e{bottom:345.171150px;}
.y324{bottom:346.082100px;}
.yae{bottom:346.350900px;}
.y27e{bottom:346.957800px;}
.y1c4{bottom:347.548200px;}
.y160{bottom:349.031550px;}
.y11{bottom:349.547250px;}
.y2a4{bottom:349.628100px;}
.y36{bottom:349.878000px;}
.y230{bottom:349.890300px;}
.y2f9{bottom:351.587100px;}
.y60{bottom:352.299150px;}
.y2cf{bottom:352.457100px;}
.yf9{bottom:355.458000px;}
.y259{bottom:357.471000px;}
.y86{bottom:361.659900px;}
.y122{bottom:363.827850px;}
.yd4{bottom:364.371750px;}
.y323{bottom:365.507100px;}
.y1e8{bottom:365.920200px;}
.y10{bottom:366.047250px;}
.y20d{bottom:366.246150px;}
.yad{bottom:367.395900px;}
.y19f{bottom:367.613850px;}
.y27d{bottom:368.137800px;}
.y15f{bottom:368.165400px;}
.y1c3{bottom:368.698200px;}
.y2a3{bottom:369.278100px;}
.y35{bottom:370.629900px;}
.y22f{bottom:371.115300px;}
.y2f8{bottom:371.492100px;}
.y2ce{bottom:372.332100px;}
.y258{bottom:375.471000px;}
.yf8{bottom:376.308000px;}
.y5f{bottom:381.848100px;}
.y85{bottom:382.434900px;}
.yf{bottom:382.547250px;}
.y121{bottom:384.678000px;}
.y322{bottom:384.932100px;}
.yd3{bottom:385.221750px;}
.y1e7{bottom:386.920200px;}
.y15e{bottom:387.299400px;}
.y20c{bottom:387.321150px;}
.y19e{bottom:387.713850px;}
.yac{bottom:388.440900px;}
.y2a2{bottom:388.928100px;}
.y27c{bottom:389.317800px;}
.y1c2{bottom:389.848200px;}
.y2f7{bottom:391.397100px;}
.y2cd{bottom:392.207100px;}
.y22e{bottom:392.340300px;}
.y257{bottom:393.471000px;}
.yf7{bottom:397.158000px;}
.ye{bottom:399.047250px;}
.y84{bottom:403.209900px;}
.y34{bottom:403.629900px;}
.y321{bottom:404.357100px;}
.y120{bottom:405.528000px;}
.yd2{bottom:406.071750px;}
.y15d{bottom:406.433250px;}
.y19d{bottom:407.813850px;}
.y1e6{bottom:407.920200px;}
.y20b{bottom:408.396150px;}
.y2a1{bottom:408.578100px;}
.yab{bottom:409.485900px;}
.y27b{bottom:410.497800px;}
.y1c1{bottom:410.998050px;}
.y2f6{bottom:411.302100px;}
.y256{bottom:411.471000px;}
.y2cc{bottom:412.082100px;}
.y22d{bottom:413.565300px;}
.yd{bottom:415.547250px;}
.yf6{bottom:418.008000px;}
.y33{bottom:420.129900px;}
.y320{bottom:423.782100px;}
.y83{bottom:423.984900px;}
.y15c{bottom:425.567100px;}
.yd1{bottom:426.921750px;}
.y19c{bottom:427.913850px;}
.y2a0{bottom:428.228100px;}
.y1e5{bottom:428.920200px;}
.y255{bottom:430.099950px;}
.yaa{bottom:430.530900px;}
.y2f5{bottom:431.207100px;}
.y27a{bottom:431.677800px;}
.y2cb{bottom:431.957100px;}
.yc{bottom:432.047250px;}
.y1c0{bottom:432.148200px;}
.y11f{bottom:432.755850px;}
.y5e{bottom:434.782800px;}
.y22c{bottom:434.790300px;}
.y32{bottom:436.629900px;}
.y20a{bottom:437.975100px;}
.yf5{bottom:438.858000px;}
.y31f{bottom:443.207100px;}
.y15b{bottom:444.700950px;}
.y82{bottom:444.759900px;}
.yd0{bottom:447.771750px;}
.y29f{bottom:447.878100px;}
.y19b{bottom:448.013850px;}
.y254{bottom:448.099950px;}
.yb{bottom:448.547250px;}
.y2f4{bottom:451.112100px;}
.ya9{bottom:451.575900px;}
.y2ca{bottom:451.832100px;}
.y279{bottom:452.857800px;}
.y31{bottom:453.129900px;}
.y1bf{bottom:453.298200px;}
.y5d{bottom:455.827800px;}
.y1e4{bottom:458.424150px;}
.y209{bottom:459.050100px;}
.yf4{bottom:459.708000px;}
.y11e{bottom:462.109800px;}
.y31e{bottom:462.632100px;}
.y15a{bottom:463.834800px;}
.y22b{bottom:464.519250px;}
.ya{bottom:465.047250px;}
.y81{bottom:465.534900px;}
.y253{bottom:466.099950px;}
.y29e{bottom:467.528100px;}
.y19a{bottom:468.113850px;}
.ycf{bottom:468.621750px;}
.y30{bottom:469.629900px;}
.y2f3{bottom:471.017100px;}
.y2c9{bottom:471.707100px;}
.ya8{bottom:472.620900px;}
.y278{bottom:474.037800px;}
.y1be{bottom:474.448200px;}
.y5c{bottom:476.872800px;}
.y1e3{bottom:479.424150px;}
.y208{bottom:480.125100px;}
.y9{bottom:481.547250px;}
.y31d{bottom:482.057100px;}
.y159{bottom:482.968650px;}
.y252{bottom:484.099950px;}
.y22a{bottom:485.744250px;}
.y80{bottom:486.309900px;}
.y29d{bottom:487.178100px;}
.y199{bottom:488.213850px;}
.yf3{bottom:489.061950px;}
.yce{bottom:489.471750px;}
.y2f{bottom:490.381950px;}
.y2f2{bottom:490.922100px;}
.y2c8{bottom:491.582100px;}
.ya7{bottom:493.665900px;}
.y277{bottom:495.217800px;}
.y1bd{bottom:495.598200px;}
.y5b{bottom:497.917800px;}
.y8{bottom:498.047250px;}
.y1e2{bottom:500.424150px;}
.y207{bottom:501.200100px;}
.y31c{bottom:501.482100px;}
.y251{bottom:502.099950px;}
.y158{bottom:502.102500px;}
.y29c{bottom:506.828100px;}
.y7f{bottom:507.084900px;}
.y198{bottom:508.313850px;}
.yf2{bottom:509.911950px;}
.ycd{bottom:510.321750px;}
.y2f1{bottom:510.827100px;}
.y2c7{bottom:511.457100px;}
.y7{bottom:514.547250px;}
.y11d{bottom:514.849650px;}
.y229{bottom:515.473200px;}
.y276{bottom:516.397800px;}
.y1bc{bottom:516.748050px;}
.y5a{bottom:518.962800px;}
.y250{bottom:520.099950px;}
.y31b{bottom:520.907100px;}
.y157{bottom:521.236350px;}
.y206{bottom:522.275100px;}
.ya6{bottom:523.214850px;}
.y2e{bottom:523.381950px;}
.y29b{bottom:526.478100px;}
.y7e{bottom:527.859900px;}
.y197{bottom:528.413850px;}
.y1e1{bottom:529.928100px;}
.y2f0{bottom:530.732100px;}
.yf1{bottom:530.761950px;}
.y6{bottom:531.047250px;}
.ycc{bottom:531.171750px;}
.y2c6{bottom:531.332100px;}
.y228{bottom:536.698200px;}
.y275{bottom:537.577800px;}
.y1bb{bottom:537.898200px;}
.y24f{bottom:538.099950px;}
.y2d{bottom:539.881950px;}
.y59{bottom:540.007800px;}
.y31a{bottom:540.332100px;}
.y156{bottom:540.370200px;}
.y11c{bottom:540.418950px;}
.y205{bottom:543.350100px;}
.ya5{bottom:544.259850px;}
.y5{bottom:547.547250px;}
.y196{bottom:548.513850px;}
.y7d{bottom:548.634900px;}
.y2ef{bottom:550.637100px;}
.y1e0{bottom:550.928100px;}
.y2c5{bottom:551.207100px;}
.yf0{bottom:551.611950px;}
.ycb{bottom:552.021750px;}
.y29a{bottom:554.632050px;}
.y13f{bottom:555.519600px;}
.y24e{bottom:556.099950px;}
.y2c{bottom:556.381950px;}
.y11b{bottom:556.918950px;}
.y227{bottom:557.923200px;}
.y274{bottom:558.757800px;}
.y1ba{bottom:559.048200px;}
.y155{bottom:559.504050px;}
.y319{bottom:559.757100px;}
.y58{bottom:561.052800px;}
.y4{bottom:564.047250px;}
.y195{bottom:568.613850px;}
.ya4{bottom:569.556750px;}
.y2ee{bottom:570.542100px;}
.y2c4{bottom:571.082100px;}
.yef{bottom:572.461950px;}
.yca{bottom:572.871750px;}
.y2b{bottom:572.881950px;}
.y204{bottom:572.929050px;}
.y11a{bottom:573.418950px;}
.y24d{bottom:574.728900px;}
.y7c{bottom:575.787900px;}
.y154{bottom:578.637900px;}
.y226{bottom:579.148200px;}
.y318{bottom:579.182100px;}
.y273{bottom:579.937800px;}
.y1b9{bottom:580.198200px;}
.y1df{bottom:580.432050px;}
.y3{bottom:580.547250px;}
.y57{bottom:582.097800px;}
.y13e{bottom:582.404550px;}
.y194{bottom:588.713850px;}
.y2a{bottom:589.381950px;}
.y119{bottom:589.918950px;}
.y2ed{bottom:590.447100px;}
.ya3{bottom:590.601750px;}
.y2c3{bottom:590.957100px;}
.y24c{bottom:592.728900px;}
.yee{bottom:593.311950px;}
.yc9{bottom:593.721750px;}
.y203{bottom:594.004050px;}
.y2{bottom:597.047250px;}
.y153{bottom:597.771750px;}
.y317{bottom:598.607100px;}
.y225{bottom:600.373200px;}
.y272{bottom:601.117800px;}
.y1de{bottom:601.432050px;}
.y56{bottom:603.142800px;}
.y13d{bottom:603.664350px;}
.y118{bottom:606.418950px;}
.y299{bottom:607.821750px;}
.y193{bottom:608.813850px;}
.y1b8{bottom:609.852150px;}
.y29{bottom:610.133850px;}
.y2ec{bottom:610.352100px;}
.y24b{bottom:610.728900px;}
.y2c2{bottom:610.832100px;}
.y7b{bottom:611.444850px;}
.ya2{bottom:611.646750px;}
.yed{bottom:614.161950px;}
.yc8{bottom:614.571750px;}
.y152{bottom:616.905600px;}
.y316{bottom:618.032100px;}
.y271{bottom:622.297800px;}
.y1dd{bottom:622.432050px;}
.y117{bottom:622.918950px;}
.y202{bottom:623.583000px;}
.y55{bottom:624.187800px;}
.y13c{bottom:624.924150px;}
.y24a{bottom:628.728900px;}
.y192{bottom:628.913850px;}
.y298{bottom:629.121750px;}
.y224{bottom:630.102150px;}
.y2eb{bottom:630.257100px;}
.y2c1{bottom:630.707100px;}
.y1b7{bottom:631.002000px;}
.y7a{bottom:632.219850px;}
.ya1{bottom:632.691750px;}
.yec{bottom:635.011950px;}
.yc7{bottom:635.421750px;}
.y151{bottom:636.039450px;}
.y315{bottom:637.457100px;}
.y116{bottom:639.418950px;}
.y270{bottom:643.477800px;}
.y201{bottom:644.658000px;}
.y54{bottom:645.232800px;}
.y13b{bottom:646.184100px;}
.y249{bottom:646.728900px;}
.y191{bottom:649.013850px;}
.y2ea{bottom:650.162100px;}
.y297{bottom:650.421750px;}
.y2c0{bottom:650.582100px;}
.y223{bottom:651.327000px;}
.y1dc{bottom:651.936000px;}
.y1b6{bottom:652.152150px;}
.y17c{bottom:652.432050px;}
.y79{bottom:652.994850px;}
.ya0{bottom:653.736750px;}
.yeb{bottom:655.861950px;}
.y115{bottom:655.918950px;}
.y150{bottom:656.236350px;}
.yc6{bottom:656.271750px;}
.y314{bottom:656.882100px;}
.y26f{bottom:664.657800px;}
.y248{bottom:664.728900px;}
.y200{bottom:665.733000px;}
.y53{bottom:666.277800px;}
.y13a{bottom:667.443900px;}
.y190{bottom:669.113850px;}
.y28{bottom:669.153600px;}
.y2e9{bottom:670.067100px;}
.y2bf{bottom:670.457100px;}
.y296{bottom:671.721750px;}
.y114{bottom:672.418950px;}
.y222{bottom:672.552000px;}
.y1db{bottom:672.936000px;}
.y9f{bottom:674.781750px;}
.y313{bottom:676.307100px;}
.yea{bottom:676.711950px;}
.yc5{bottom:677.121750px;}
.y78{bottom:678.021750px;}
.y17b{bottom:678.253950px;}
.y1b5{bottom:681.806100px;}
.y247{bottom:682.728900px;}
.y26e{bottom:685.837800px;}
.y14f{bottom:686.620200px;}
.y52{bottom:687.322800px;}
.y139{bottom:688.703700px;}
.y113{bottom:688.918950px;}
.y18f{bottom:689.213850px;}
.y2e8{bottom:689.972100px;}
.y2be{bottom:690.332100px;}
.y295{bottom:693.021750px;}
.y1da{bottom:693.936000px;}
.y1ff{bottom:695.311950px;}
.y312{bottom:695.732100px;}
.y9e{bottom:695.826750px;}
.y17a{bottom:697.387800px;}
.ye9{bottom:697.561950px;}
.yc4{bottom:697.971750px;}
.y77{bottom:698.796750px;}
.y27{bottom:700.653600px;}
.y246{bottom:700.728900px;}
.y221{bottom:702.280950px;}
.y1b4{bottom:702.955950px;}
.y26d{bottom:707.017800px;}
.y51{bottom:708.367800px;}
.y112{bottom:708.863400px;}
.y18e{bottom:709.313850px;}
.y2e7{bottom:709.877100px;}
.y138{bottom:709.963500px;}
.y2bd{bottom:710.207100px;}
.y294{bottom:714.321750px;}
.y311{bottom:715.157100px;}
.y1fe{bottom:716.386950px;}
.y179{bottom:716.521650px;}
.y9d{bottom:716.871750px;}
.ye8{bottom:718.411950px;}
.y245{bottom:718.728900px;}
.yc3{bottom:718.821750px;}
.y76{bottom:719.571750px;}
.y14e{bottom:720.128100px;}
.y1d9{bottom:723.439800px;}
.y220{bottom:723.505950px;}
.y26c{bottom:728.197800px;}
.y111{bottom:728.807700px;}
.y50{bottom:729.412800px;}
.y18d{bottom:729.413850px;}
.y2e6{bottom:729.782100px;}
.y2bc{bottom:730.082100px;}
.y137{bottom:731.223450px;}
.y26{bottom:732.153600px;}
.y1b3{bottom:732.609900px;}
.y310{bottom:734.582100px;}
.y293{bottom:735.621750px;}
.y178{bottom:735.655500px;}
.y244{bottom:736.728900px;}
.y1fd{bottom:737.461950px;}
.y9c{bottom:737.916750px;}
.ye7{bottom:739.261950px;}
.yc2{bottom:739.671750px;}
.y75{bottom:740.346750px;}
.y14d{bottom:740.978100px;}
.y1d8{bottom:744.439800px;}
.y110{bottom:745.757700px;}
.y26b{bottom:749.377800px;}
.y18c{bottom:749.513850px;}
.y2e5{bottom:749.687100px;}
.y2bb{bottom:749.957100px;}
.y4f{bottom:750.457800px;}
.y136{bottom:752.483250px;}
.y1b2{bottom:753.760050px;}
.y30f{bottom:754.007100px;}
.y243{bottom:754.728900px;}
.y177{bottom:754.789350px;}
.y292{bottom:756.921750px;}
.y1fc{bottom:758.536950px;}
.y9b{bottom:758.961750px;}
.ye6{bottom:760.111950px;}
.yc1{bottom:760.521750px;}
.y74{bottom:761.121750px;}
.y21f{bottom:761.738850px;}
.y14c{bottom:761.828100px;}
.y10f{bottom:762.707700px;}
.y1d7{bottom:765.439800px;}
.y2e4{bottom:769.592100px;}
.y18b{bottom:769.613850px;}
.y2ba{bottom:769.832100px;}
.y26a{bottom:770.557800px;}
.y4e{bottom:771.502800px;}
.y242{bottom:773.357700px;}
.y30e{bottom:773.432250px;}
.y135{bottom:773.743050px;}
.y176{bottom:773.923200px;}
.y1b1{bottom:774.909900px;}
.y291{bottom:778.221750px;}
.y1fb{bottom:779.611950px;}
.y10e{bottom:779.657850px;}
.y9a{bottom:780.006750px;}
.ye5{bottom:780.961950px;}
.yc0{bottom:781.371750px;}
.y73{bottom:781.896750px;}
.y14b{bottom:782.678100px;}
.y21e{bottom:782.964000px;}
.y1d6{bottom:786.439950px;}
.y2e3{bottom:789.497100px;}
.y2b9{bottom:789.707100px;}
.y18a{bottom:789.714000px;}
.y241{bottom:791.357700px;}
.y269{bottom:791.737800px;}
.y4d{bottom:792.547800px;}
.y30d{bottom:792.857100px;}
.y175{bottom:793.057050px;}
.y134{bottom:795.003000px;}
.y10d{bottom:796.607700px;}
.y24{bottom:797.669250px;}
.y290{bottom:799.521750px;}
.y1fa{bottom:800.686950px;}
.y99{bottom:801.051750px;}
.ye4{bottom:801.811950px;}
.ybf{bottom:802.221750px;}
.y72{bottom:802.671750px;}
.y21d{bottom:804.188850px;}
.y1b0{bottom:804.563850px;}
.y25{bottom:804.862200px;}
.y240{bottom:809.357700px;}
.y2e2{bottom:809.402100px;}
.y2b8{bottom:809.582100px;}
.y14a{bottom:812.032050px;}
.y174{bottom:812.190900px;}
.y30c{bottom:812.282100px;}
.y268{bottom:812.917800px;}
.y10c{bottom:813.557700px;}
.y4c{bottom:813.592800px;}
.y1d5{bottom:815.943750px;}
.y133{bottom:816.262800px;}
.y189{bottom:818.317800px;}
.y28f{bottom:820.821750px;}
.y1f9{bottom:821.761950px;}
.y98{bottom:822.096750px;}
.ye3{bottom:822.661950px;}
.ybe{bottom:823.071750px;}
.y71{bottom:823.446750px;}
.y21c{bottom:825.413850px;}
.y1af{bottom:825.714000px;}
.y23f{bottom:827.357700px;}
.y23{bottom:829.169250px;}
.y2e1{bottom:829.307250px;}
.y2b7{bottom:829.457100px;}
.y10b{bottom:830.507700px;}
.y173{bottom:831.324750px;}
.y30b{bottom:831.707100px;}
.y267{bottom:834.097800px;}
.y4b{bottom:834.637800px;}
.y1d4{bottom:836.943750px;}
.y132{bottom:837.522600px;}
.y188{bottom:838.417800px;}
.y28e{bottom:842.121750px;}
.y97{bottom:843.141750px;}
.ybd{bottom:843.921750px;}
.y70{bottom:844.221750px;}
.y23e{bottom:845.357700px;}
.y21b{bottom:846.638850px;}
.y10a{bottom:847.457850px;}
.y2e0{bottom:849.212100px;}
.y1f8{bottom:849.214800px;}
.y2b6{bottom:849.332100px;}
.ye2{bottom:849.889950px;}
.y172{bottom:850.458600px;}
.y30a{bottom:851.132100px;}
.y266{bottom:855.277800px;}
.y1ae{bottom:855.367800px;}
.y4a{bottom:855.682800px;}
.y1d3{bottom:857.943750px;}
.y187{bottom:858.517800px;}
.y131{bottom:858.782550px;}
.y22{bottom:860.669250px;}
.y23d{bottom:863.357700px;}
.y28d{bottom:863.421750px;}
.y96{bottom:864.186750px;}
.y109{bottom:864.407850px;}
.ybc{bottom:864.771750px;}
.y6f{bottom:864.996750px;}
.y2df{bottom:869.117100px;}
.y2b5{bottom:869.207100px;}
.y171{bottom:869.592450px;}
.y309{bottom:870.557250px;}
.y21a{bottom:876.367800px;}
.y265{bottom:876.457800px;}
.y1ad{bottom:876.517800px;}
.y49{bottom:876.727800px;}
.y186{bottom:878.617800px;}
.y1d2{bottom:878.943750px;}
.y130{bottom:880.042350px;}
.y108{bottom:881.357700px;}
.y28c{bottom:884.721750px;}
.y1f7{bottom:885.171750px;}
.y95{bottom:885.231750px;}
.ybb{bottom:885.621750px;}
.y6e{bottom:885.771750px;}
.y170{bottom:888.726300px;}
.y2de{bottom:889.022250px;}
.y2b4{bottom:889.082100px;}
.y308{bottom:889.982100px;}
.y21{bottom:892.169250px;}
.y219{bottom:897.592800px;}
.y264{bottom:897.637800px;}
.y48{bottom:897.772800px;}
.y1d1{bottom:899.943750px;}
.y107{bottom:901.302150px;}
.y28b{bottom:906.021750px;}
.y1ac{bottom:906.171750px;}
.y1f6{bottom:906.246750px;}
.y94{bottom:906.276750px;}
.yba{bottom:906.471750px;}
.y6d{bottom:906.546750px;}
.y185{bottom:907.221750px;}
.y16f{bottom:907.860150px;}
.y2dd{bottom:908.927100px;}
.y2b3{bottom:908.957100px;}
.y307{bottom:909.407100px;}
.y43{bottom:917.118600px;}
.y47{bottom:927.321750px;}
.y16e{bottom:928.057050px;}
.y2b2{bottom:928.832100px;}
.y106{bottom:933.811950px;}
.y42{bottom:935.118600px;}
.h7{height:40.114955px;}
.h12{height:41.107522px;}
.h15{height:42.360000px;}
.h3{height:43.004883px;}
.hb{height:43.391273px;}
.hd{height:46.596000px;}
.hf{height:46.662000px;}
.h11{height:47.766000px;}
.h14{height:48.000000px;}
.ha{height:48.673828px;}
.h9{height:48.726562px;}
.h4{height:49.122070px;}
.h13{height:50.280000px;}
.hc{height:51.433594px;}
.h10{height:52.800000px;}
.he{height:55.308000px;}
.h2{height:59.554688px;}
.h5{height:68.807813px;}
.h6{height:77.878125px;}
.h8{height:77.962500px;}
.h0{height:1020.472500px;}
.h1{height:1020.750000px;}
.w0{width:722.835000px;}
.w1{width:723.000000px;}
.x0{left:0.000000px;}
.x4{left:68.031450px;}
.x20{left:74.409450px;}
.x6{left:76.535400px;}
.xc{left:80.787450px;}
.x19{left:87.165300px;}
.x1c{left:97.795350px;}
.xb{left:102.047250px;}
.x1f{left:104.443950px;}
.x10{left:108.425250px;}
.xd{left:110.551200px;}
.x15{left:140.314950px;}
.x12{left:142.604550px;}
.xa{left:173.418450px;}
.x18{left:179.168850px;}
.x9{left:187.899150px;}
.xf{left:200.738250px;}
.x24{left:211.534050px;}
.xe{left:227.242500px;}
.x21{left:233.211750px;}
.x26{left:239.060400px;}
.x1e{left:254.776950px;}
.x16{left:258.830850px;}
.x5{left:270.021900px;}
.x1b{left:288.962400px;}
.x17{left:291.094800px;}
.x27{left:294.252300px;}
.x14{left:298.667700px;}
.x23{left:303.889950px;}
.x13{left:311.902500px;}
.x28{left:313.424850px;}
.x25{left:316.259850px;}
.x1d{left:348.770400px;}
.x1{left:352.986000px;}
.x11{left:376.299150px;}
.x3{left:395.433000px;}
.x22{left:401.811000px;}
.x2{left:408.189000px;}
.x8{left:425.828550px;}
.x7{left:452.099100px;}
.x1a{left:527.185350px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:17.760000pt;}
.v1{vertical-align:19.536000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.293333pt;}
.ls6{letter-spacing:0.762133pt;}
.ls4{letter-spacing:2.461867pt;}
.ls3{letter-spacing:2.849600pt;}
.ls7{letter-spacing:7.025600pt;}
.ls5{letter-spacing:11.308800pt;}
.ls8{letter-spacing:26.328000pt;}
.ls1{letter-spacing:29.496533pt;}
.ws0{word-spacing:-11.952000pt;}
.ws71{word-spacing:-11.904000pt;}
.ws1{word-spacing:-11.760000pt;}
.ws7c{word-spacing:-11.733333pt;}
.ws2{word-spacing:-11.148826pt;}
.wsb3{word-spacing:-10.666667pt;}
.ws24{word-spacing:-6.840533pt;}
.wsd9{word-spacing:-6.218667pt;}
.wse1{word-spacing:-4.586667pt;}
.wsd8{word-spacing:-2.400000pt;}
.wsde{word-spacing:-2.133333pt;}
.ws43{word-spacing:-2.053333pt;}
.ws9b{word-spacing:-1.936000pt;}
.ws1d{word-spacing:-1.920000pt;}
.ws25{word-spacing:-1.818667pt;}
.ws7f{word-spacing:-1.760000pt;}
.ws84{word-spacing:-1.701333pt;}
.ws97{word-spacing:-1.642667pt;}
.wsbe{word-spacing:-1.600000pt;}
.ws3b{word-spacing:-1.584000pt;}
.wsa4{word-spacing:-1.525333pt;}
.wsbd{word-spacing:-1.493333pt;}
.ws76{word-spacing:-1.466667pt;}
.ws4e{word-spacing:-1.349333pt;}
.ws78{word-spacing:-1.290667pt;}
.ws15{word-spacing:-1.248000pt;}
.ws34{word-spacing:-1.232000pt;}
.ws92{word-spacing:-1.173333pt;}
.wsb4{word-spacing:-1.114667pt;}
.wsaa{word-spacing:-1.056000pt;}
.ws5b{word-spacing:-0.997333pt;}
.ws8d{word-spacing:-0.938667pt;}
.ws2e{word-spacing:-0.880000pt;}
.ws9a{word-spacing:-0.821333pt;}
.ws16{word-spacing:-0.720000pt;}
.ws17{word-spacing:-0.672000pt;}
.wsbc{word-spacing:-0.640000pt;}
.ws5a{word-spacing:-0.586667pt;}
.wsce{word-spacing:-0.533333pt;}
.ws94{word-spacing:-0.528000pt;}
.ws35{word-spacing:-0.469333pt;}
.ws32{word-spacing:-0.410667pt;}
.ws26{word-spacing:-0.352000pt;}
.wse0{word-spacing:-0.320000pt;}
.ws4c{word-spacing:-0.293333pt;}
.wsca{word-spacing:-0.213333pt;}
.ws5d{word-spacing:-0.176000pt;}
.wsd2{word-spacing:-0.160000pt;}
.ws48{word-spacing:-0.117333pt;}
.wsb5{word-spacing:-0.058667pt;}
.ws3{word-spacing:0.000000pt;}
.wsda{word-spacing:0.106667pt;}
.wscf{word-spacing:0.213333pt;}
.ws96{word-spacing:0.234667pt;}
.wse{word-spacing:0.288000pt;}
.ws83{word-spacing:0.352000pt;}
.ws30{word-spacing:0.410667pt;}
.wsc0{word-spacing:0.426667pt;}
.wsc2{word-spacing:0.480000pt;}
.ws4d{word-spacing:0.528000pt;}
.ws51{word-spacing:0.586667pt;}
.ws68{word-spacing:0.645333pt;}
.ws27{word-spacing:0.704000pt;}
.wsc9{word-spacing:0.746667pt;}
.ws53{word-spacing:0.762667pt;}
.ws23{word-spacing:0.768000pt;}
.ws82{word-spacing:0.821333pt;}
.wsc3{word-spacing:0.853333pt;}
.ws36{word-spacing:0.880000pt;}
.wsba{word-spacing:0.960000pt;}
.ws66{word-spacing:0.997333pt;}
.ws9e{word-spacing:1.056000pt;}
.ws2f{word-spacing:1.114667pt;}
.wsb7{word-spacing:1.173333pt;}
.ws69{word-spacing:1.232000pt;}
.ws41{word-spacing:1.349333pt;}
.wsa0{word-spacing:1.408000pt;}
.wsc1{word-spacing:1.440000pt;}
.ws87{word-spacing:1.466667pt;}
.ws8a{word-spacing:1.525333pt;}
.wsad{word-spacing:1.584000pt;}
.ws1a{word-spacing:1.680000pt;}
.ws81{word-spacing:1.701333pt;}
.ws8c{word-spacing:1.760000pt;}
.ws18{word-spacing:1.872000pt;}
.wsa1{word-spacing:1.877333pt;}
.ws9c{word-spacing:1.936000pt;}
.wsd0{word-spacing:2.026667pt;}
.ws7b{word-spacing:2.053333pt;}
.wsb2{word-spacing:2.112000pt;}
.wsb{word-spacing:2.160000pt;}
.ws58{word-spacing:2.170667pt;}
.ws5e{word-spacing:2.229333pt;}
.wsb0{word-spacing:2.288000pt;}
.ws39{word-spacing:2.405333pt;}
.ws1c{word-spacing:2.496000pt;}
.ws28{word-spacing:2.522667pt;}
.ws5c{word-spacing:2.581333pt;}
.ws33{word-spacing:2.640000pt;}
.ws86{word-spacing:2.698667pt;}
.ws2a{word-spacing:2.757333pt;}
.ws8b{word-spacing:2.816000pt;}
.wsb9{word-spacing:2.826667pt;}
.ws61{word-spacing:2.874667pt;}
.ws6f{word-spacing:2.933333pt;}
.wsbf{word-spacing:2.986667pt;}
.ws42{word-spacing:2.992000pt;}
.wse2{word-spacing:3.040000pt;}
.ws89{word-spacing:3.050667pt;}
.wsd1{word-spacing:3.093333pt;}
.ws49{word-spacing:3.109333pt;}
.ws22{word-spacing:3.120000pt;}
.wsd4{word-spacing:3.146667pt;}
.ws7e{word-spacing:3.168000pt;}
.ws3d{word-spacing:3.226667pt;}
.wsdd{word-spacing:3.253333pt;}
.ws45{word-spacing:3.285333pt;}
.ws7d{word-spacing:3.402667pt;}
.ws4b{word-spacing:3.461333pt;}
.ws6a{word-spacing:3.520000pt;}
.ws5f{word-spacing:3.578667pt;}
.ws38{word-spacing:3.637333pt;}
.wscd{word-spacing:3.680000pt;}
.wsd{word-spacing:3.696000pt;}
.ws52{word-spacing:3.813333pt;}
.wsdf{word-spacing:3.840000pt;}
.wsa9{word-spacing:3.872000pt;}
.ws6c{word-spacing:3.930667pt;}
.ws3f{word-spacing:3.989333pt;}
.ws77{word-spacing:4.048000pt;}
.ws31{word-spacing:4.106667pt;}
.ws3e{word-spacing:4.165333pt;}
.wsaf{word-spacing:4.282667pt;}
.ws13{word-spacing:4.368000pt;}
.ws8f{word-spacing:4.400000pt;}
.ws9d{word-spacing:4.517333pt;}
.ws2d{word-spacing:4.576000pt;}
.ws40{word-spacing:4.634667pt;}
.wsb1{word-spacing:4.693333pt;}
.ws37{word-spacing:4.810667pt;}
.ws46{word-spacing:4.869333pt;}
.ws99{word-spacing:4.928000pt;}
.wsc4{word-spacing:5.013333pt;}
.ws4f{word-spacing:5.045333pt;}
.ws6b{word-spacing:5.162667pt;}
.ws8{word-spacing:5.280000pt;}
.ws70{word-spacing:5.338667pt;}
.ws10{word-spacing:5.424000pt;}
.wsab{word-spacing:5.456000pt;}
.wscb{word-spacing:5.493333pt;}
.ws6e{word-spacing:5.514667pt;}
.wsa{word-spacing:5.568000pt;}
.wsac{word-spacing:5.632000pt;}
.ws7a{word-spacing:5.690667pt;}
.ws8e{word-spacing:5.749333pt;}
.ws14{word-spacing:5.808000pt;}
.wsd6{word-spacing:5.813333pt;}
.ws88{word-spacing:5.866667pt;}
.wscc{word-spacing:5.920000pt;}
.ws93{word-spacing:5.925333pt;}
.wsc6{word-spacing:5.973333pt;}
.ws3a{word-spacing:5.984000pt;}
.ws67{word-spacing:6.042667pt;}
.wsae{word-spacing:6.101333pt;}
.ws65{word-spacing:6.160000pt;}
.wsc7{word-spacing:6.186667pt;}
.ws50{word-spacing:6.218667pt;}
.ws2c{word-spacing:6.277333pt;}
.ws9{word-spacing:6.336000pt;}
.ws47{word-spacing:6.453333pt;}
.ws60{word-spacing:6.512000pt;}
.ws21{word-spacing:6.528000pt;}
.ws98{word-spacing:6.629333pt;}
.ws57{word-spacing:6.746667pt;}
.ws3c{word-spacing:6.805333pt;}
.ws2b{word-spacing:6.864000pt;}
.wsbb{word-spacing:6.933333pt;}
.ws91{word-spacing:6.981333pt;}
.ws29{word-spacing:7.216000pt;}
.ws54{word-spacing:7.274667pt;}
.ws80{word-spacing:7.333333pt;}
.ws64{word-spacing:7.450667pt;}
.wsd5{word-spacing:7.466667pt;}
.ws85{word-spacing:7.509333pt;}
.ws59{word-spacing:7.626667pt;}
.wsb6{word-spacing:7.861333pt;}
.ws7{word-spacing:7.968000pt;}
.ws19{word-spacing:8.160000pt;}
.wsb8{word-spacing:8.266667pt;}
.ws9f{word-spacing:8.272000pt;}
.ws72{word-spacing:8.448000pt;}
.ws63{word-spacing:8.506667pt;}
.ws90{word-spacing:9.093333pt;}
.ws1b{word-spacing:9.168000pt;}
.ws56{word-spacing:9.269333pt;}
.ws44{word-spacing:9.562667pt;}
.ws11{word-spacing:9.888000pt;}
.ws12{word-spacing:9.936000pt;}
.ws6d{word-spacing:9.973333pt;}
.ws4{word-spacing:10.128000pt;}
.ws6{word-spacing:10.608000pt;}
.wsc8{word-spacing:11.306667pt;}
.wsc{word-spacing:11.472000pt;}
.wsf{word-spacing:11.952000pt;}
.ws55{word-spacing:12.496000pt;}
.ws62{word-spacing:12.554667pt;}
.ws4a{word-spacing:12.613333pt;}
.ws1e{word-spacing:13.152000pt;}
.ws5{word-spacing:13.344000pt;}
.wsa2{word-spacing:13.493333pt;}
.wsa3{word-spacing:14.314667pt;}
.wsc5{word-spacing:14.666667pt;}
.wsdb{word-spacing:16.640000pt;}
.wsd3{word-spacing:17.066667pt;}
.wsdc{word-spacing:17.493333pt;}
.ws20{word-spacing:19.584000pt;}
.ws95{word-spacing:19.770667pt;}
.wsd7{word-spacing:26.346667pt;}
.ws1f{word-spacing:27.648000pt;}
.ws79{word-spacing:139.423167pt;}
.ws73{word-spacing:139.426472pt;}
.wsa8{word-spacing:148.420943pt;}
.ws74{word-spacing:166.376013pt;}
.ws75{word-spacing:193.332813pt;}
.wsa7{word-spacing:232.585106pt;}
.wsa5{word-spacing:266.593626pt;}
.wsa6{word-spacing:277.930094pt;}
._9{margin-left:-42.709333pt;}
._43{margin-left:-5.284800pt;}
._4{margin-left:-3.543467pt;}
._2{margin-left:-2.079467pt;}
._1{margin-left:-1.094400pt;}
._3{width:1.032533pt;}
._5{width:2.546133pt;}
._0{width:4.272000pt;}
._7{width:5.808000pt;}
._8{width:7.157333pt;}
._b{width:9.069867pt;}
._3f{width:10.155200pt;}
._46{width:11.978667pt;}
._6{width:13.135467pt;}
._c{width:14.050667pt;}
._47{width:15.261333pt;}
._48{width:17.050667pt;}
._45{width:19.056000pt;}
._49{width:19.952000pt;}
._3e{width:26.042667pt;}
._a{width:29.496533pt;}
._3d{width:116.123967pt;}
._23{width:124.353431pt;}
._10{width:138.949463pt;}
._42{width:145.305496pt;}
._1c{width:151.213659pt;}
._2d{width:166.331317pt;}
._2f{width:167.945886pt;}
._13{width:178.235967pt;}
._2c{width:193.284813pt;}
._12{width:205.189463pt;}
._44{width:213.486179pt;}
._41{width:243.844163pt;}
._2e{width:249.663610pt;}
._24{width:389.201041pt;}
._29{width:463.255441pt;}
._f{width:486.791285pt;}
._e{width:532.982764pt;}
._1e{width:543.415441pt;}
._2a{width:557.623441pt;}
._40{width:627.783402pt;}
._31{width:633.257886pt;}
._19{width:652.169886pt;}
._1f{width:653.961353pt;}
._32{width:686.321041pt;}
._34{width:690.545041pt;}
._20{width:691.520286pt;}
._25{width:694.361886pt;}
._33{width:702.065041pt;}
._28{width:713.969041pt;}
._30{width:729.833886pt;}
._35{width:736.553886pt;}
._22{width:741.463441pt;}
._d{width:756.840846pt;}
._14{width:763.399441pt;}
._38{width:768.185886pt;}
._1d{width:777.737886pt;}
._26{width:795.305886pt;}
._36{width:803.609886pt;}
._3c{width:809.516618pt;}
._2b{width:825.615610pt;}
._11{width:863.168286pt;}
._1b{width:865.841041pt;}
._18{width:868.016286pt;}
._17{width:869.249041pt;}
._27{width:879.977886pt;}
._39{width:911.177886pt;}
._21{width:959.873041pt;}
._3a{width:974.849041pt;}
._15{width:996.089886pt;}
._3b{width:1003.529886pt;}
._16{width:1007.873041pt;}
._1a{width:1059.257886pt;}
._37{width:1063.913886pt;}
.fs7{font-size:31.093333pt;}
.fs5{font-size:34.202667pt;}
.fs3{font-size:44.774400pt;}
.fs1{font-size:48.000000pt;}
.fs4{font-size:50.666667pt;}
.fs6{font-size:53.333333pt;}
.fs0{font-size:58.666667pt;}
.fs2{font-size:76.800000pt;}
.y0{bottom:0.000000pt;}
.y46{bottom:38.458000pt;}
.y1{bottom:40.023600pt;}
.y45{bottom:53.124667pt;}
.y44{bottom:67.791333pt;}
.y218{bottom:79.370133pt;}
.y93{bottom:81.342267pt;}
.y149{bottom:82.232000pt;}
.y12f{bottom:82.469200pt;}
.y28a{bottom:82.486933pt;}
.y306{bottom:82.508400pt;}
.y184{bottom:82.524400pt;}
.y1f5{bottom:82.595733pt;}
.ye1{bottom:82.952667pt;}
.y6c{bottom:83.005467pt;}
.y331{bottom:83.162000pt;}
.yb9{bottom:83.196400pt;}
.y1d0{bottom:83.331733pt;}
.y2dc{bottom:83.628533pt;}
.y2b1{bottom:83.713867pt;}
.y16d{bottom:84.228400pt;}
.y1ab{bottom:84.577867pt;}
.y23c{bottom:84.613600pt;}
.y105{bottom:86.003600pt;}
.y20{bottom:86.929067pt;}
.y217{bottom:95.370133pt;}
.y92{bottom:99.875467pt;}
.y305{bottom:100.201867pt;}
.y330{bottom:100.428533pt;}
.y148{bottom:100.765333pt;}
.y12e{bottom:101.002667pt;}
.y183{bottom:101.057733pt;}
.y2b0{bottom:101.180533pt;}
.y1f4{bottom:101.262400pt;}
.y2db{bottom:101.295200pt;}
.y289{bottom:101.313600pt;}
.ye0{bottom:101.486000pt;}
.y1f{bottom:101.595733pt;}
.y6b{bottom:101.712133pt;}
.yb8{bottom:101.903200pt;}
.y1cf{bottom:102.131733pt;}
.y1aa{bottom:103.111200pt;}
.y23b{bottom:103.480267pt;}
.y104{bottom:104.536933pt;}
.y16c{bottom:106.155867pt;}
.y41{bottom:109.606400pt;}
.y1e{bottom:116.262400pt;}
.y32f{bottom:117.695200pt;}
.y304{bottom:117.895200pt;}
.y91{bottom:118.342267pt;}
.y2af{bottom:118.647200pt;}
.y2da{bottom:118.961867pt;}
.y147{bottom:119.298667pt;}
.y12d{bottom:119.536000pt;}
.y182{bottom:119.591067pt;}
.y1f3{bottom:119.929067pt;}
.ydf{bottom:120.019333pt;}
.y288{bottom:120.140267pt;}
.y6a{bottom:120.418800pt;}
.yb7{bottom:120.609733pt;}
.y1ce{bottom:120.931600pt;}
.y1a9{bottom:120.977867pt;}
.y23a{bottom:122.346933pt;}
.y103{bottom:123.070267pt;}
.y16b{bottom:123.163733pt;}
.y40{bottom:124.273067pt;}
.y1d{bottom:134.708667pt;}
.y32e{bottom:134.961867pt;}
.y303{bottom:135.588400pt;}
.y2ae{bottom:136.113867pt;}
.y2d9{bottom:136.628533pt;}
.y90{bottom:136.808800pt;}
.y146{bottom:137.832000pt;}
.y12c{bottom:138.069200pt;}
.y181{bottom:138.124400pt;}
.yde{bottom:138.552667pt;}
.y1f2{bottom:138.595733pt;}
.y3f{bottom:138.939733pt;}
.y287{bottom:138.966933pt;}
.y69{bottom:139.125467pt;}
.yb6{bottom:139.316533pt;}
.y1a8{bottom:139.511200pt;}
.y1cd{bottom:139.731733pt;}
.y16a{bottom:140.171600pt;}
.y239{bottom:141.213600pt;}
.y102{bottom:141.603600pt;}
.y1c{bottom:149.375333pt;}
.y216{bottom:149.393067pt;}
.y263{bottom:151.023600pt;}
.y32d{bottom:152.228533pt;}
.y302{bottom:153.281867pt;}
.y2ad{bottom:153.580533pt;}
.y3e{bottom:153.606400pt;}
.y2d8{bottom:154.295200pt;}
.y8f{bottom:155.275467pt;}
.y145{bottom:156.365333pt;}
.y12b{bottom:156.602667pt;}
.y180{bottom:156.657733pt;}
.ydd{bottom:157.086000pt;}
.y169{bottom:157.179467pt;}
.y1f1{bottom:157.262400pt;}
.y286{bottom:157.793600pt;}
.y68{bottom:157.832133pt;}
.yb5{bottom:158.023067pt;}
.y1cc{bottom:158.531733pt;}
.y238{bottom:160.080267pt;}
.y101{bottom:163.916400pt;}
.y1b{bottom:164.042000pt;}
.y1a7{bottom:164.936933pt;}
.y215{bottom:168.126400pt;}
.y3d{bottom:168.273067pt;}
.y32c{bottom:169.495200pt;}
.y301{bottom:170.975200pt;}
.y2ac{bottom:171.047200pt;}
.y2d7{bottom:171.961867pt;}
.y8e{bottom:173.742133pt;}
.y262{bottom:173.752000pt;}
.y168{bottom:174.187333pt;}
.y144{bottom:174.898667pt;}
.y12a{bottom:175.136000pt;}
.ydc{bottom:175.619333pt;}
.y1f0{bottom:175.929067pt;}
.y67{bottom:176.538800pt;}
.y285{bottom:176.620267pt;}
.yb4{bottom:176.729733pt;}
.y1cb{bottom:177.331600pt;}
.y1a{bottom:178.708667pt;}
.y237{bottom:178.946933pt;}
.y17f{bottom:180.860400pt;}
.y100{bottom:182.449733pt;}
.y1a6{bottom:182.803600pt;}
.y3c{bottom:182.939733pt;}
.y32b{bottom:186.761867pt;}
.y214{bottom:186.859733pt;}
.y2ab{bottom:188.513867pt;}
.y300{bottom:188.668533pt;}
.y2d6{bottom:189.628533pt;}
.y261{bottom:189.752000pt;}
.y167{bottom:191.195200pt;}
.y8d{bottom:192.208800pt;}
.y19{bottom:193.375333pt;}
.y143{bottom:193.432000pt;}
.y129{bottom:193.669333pt;}
.ydb{bottom:194.152667pt;}
.y1ef{bottom:194.595733pt;}
.y66{bottom:195.245467pt;}
.yb3{bottom:195.436400pt;}
.y284{bottom:195.446933pt;}
.y1ca{bottom:196.131733pt;}
.y3b{bottom:197.606400pt;}
.y236{bottom:197.813600pt;}
.y1a5{bottom:200.670267pt;}
.yff{bottom:200.983067pt;}
.y32a{bottom:204.028533pt;}
.y260{bottom:205.752000pt;}
.y2aa{bottom:205.980533pt;}
.y2ff{bottom:206.361867pt;}
.y2d5{bottom:207.295200pt;}
.y18{bottom:208.042000pt;}
.y166{bottom:208.203067pt;}
.y8c{bottom:210.675467pt;}
.y128{bottom:212.202533pt;}
.y17e{bottom:212.622000pt;}
.yda{bottom:212.686000pt;}
.y213{bottom:213.152133pt;}
.y1ee{bottom:213.262400pt;}
.y65{bottom:213.952133pt;}
.yb2{bottom:214.143067pt;}
.y283{bottom:214.273600pt;}
.y1c9{bottom:214.931733pt;}
.y235{bottom:216.680267pt;}
.y142{bottom:217.634667pt;}
.y1a4{bottom:218.536933pt;}
.yfe{bottom:219.516400pt;}
.y329{bottom:221.295200pt;}
.y25f{bottom:221.752000pt;}
.y17{bottom:222.708667pt;}
.y2a9{bottom:223.447200pt;}
.y2fe{bottom:224.055200pt;}
.y2d4{bottom:224.961867pt;}
.y165{bottom:225.210933pt;}
.y8b{bottom:229.142133pt;}
.y127{bottom:230.735867pt;}
.yd9{bottom:231.219333pt;}
.y212{bottom:231.885467pt;}
.y1ed{bottom:231.929067pt;}
.y64{bottom:232.658800pt;}
.yb1{bottom:232.849733pt;}
.y282{bottom:233.100267pt;}
.y1c8{bottom:233.731733pt;}
.y17d{bottom:234.847733pt;}
.y234{bottom:235.546933pt;}
.y1a3{bottom:236.403600pt;}
.y16{bottom:237.375333pt;}
.y25e{bottom:237.752000pt;}
.y328{bottom:238.561867pt;}
.y2a8{bottom:240.913867pt;}
.y2fd{bottom:241.748533pt;}
.yfd{bottom:241.829333pt;}
.y164{bottom:242.218800pt;}
.y2d3{bottom:242.628533pt;}
.y8a{bottom:247.608800pt;}
.y126{bottom:249.269333pt;}
.yd8{bottom:249.752667pt;}
.y1ec{bottom:250.595733pt;}
.y211{bottom:250.618800pt;}
.y63{bottom:251.365467pt;}
.y281{bottom:251.926933pt;}
.y15{bottom:252.042000pt;}
.y3a{bottom:252.336000pt;}
.y1c7{bottom:252.531733pt;}
.y141{bottom:253.175867pt;}
.y25d{bottom:253.752000pt;}
.y1a2{bottom:254.270267pt;}
.y233{bottom:254.413600pt;}
.y327{bottom:255.828533pt;}
.yb0{bottom:257.225733pt;}
.y2a7{bottom:258.380533pt;}
.y163{bottom:259.226667pt;}
.y2fc{bottom:259.441867pt;}
.y2d2{bottom:260.295200pt;}
.yfc{bottom:260.362667pt;}
.y89{bottom:266.075467pt;}
.y14{bottom:266.708667pt;}
.y39{bottom:267.002667pt;}
.y125{bottom:267.802667pt;}
.yd7{bottom:268.286000pt;}
.y1eb{bottom:269.262400pt;}
.y210{bottom:269.352133pt;}
.y25c{bottom:269.752000pt;}
.y62{bottom:270.072133pt;}
.y280{bottom:270.753600pt;}
.y1c6{bottom:271.331600pt;}
.y1a1{bottom:272.136933pt;}
.y326{bottom:273.095200pt;}
.y232{bottom:273.280267pt;}
.y140{bottom:275.401600pt;}
.y2a6{bottom:275.847200pt;}
.y162{bottom:276.234533pt;}
.y2fb{bottom:277.135200pt;}
.y2d1{bottom:277.961867pt;}
.yfb{bottom:278.896000pt;}
.y13{bottom:281.375333pt;}
.y38{bottom:281.669333pt;}
.y88{bottom:284.542133pt;}
.y25b{bottom:285.752000pt;}
.y124{bottom:286.336000pt;}
.yd6{bottom:286.819333pt;}
.y1ea{bottom:287.929067pt;}
.y20f{bottom:288.085467pt;}
.y61{bottom:288.778800pt;}
.yaf{bottom:289.160800pt;}
.y27f{bottom:289.580267pt;}
.y1c5{bottom:290.131733pt;}
.y325{bottom:290.361867pt;}
.y231{bottom:292.146933pt;}
.y161{bottom:293.242400pt;}
.y2a5{bottom:293.313867pt;}
.y2fa{bottom:294.828533pt;}
.y2d0{bottom:295.628533pt;}
.y1a0{bottom:295.672933pt;}
.y12{bottom:296.042000pt;}
.y37{bottom:296.336000pt;}
.yfa{bottom:297.429333pt;}
.y25a{bottom:301.752000pt;}
.y87{bottom:303.008800pt;}
.y123{bottom:304.869200pt;}
.yd5{bottom:305.352667pt;}
.y1e9{bottom:306.595733pt;}
.y20e{bottom:306.818800pt;}
.y324{bottom:307.628533pt;}
.yae{bottom:307.867467pt;}
.y27e{bottom:308.406933pt;}
.y1c4{bottom:308.931733pt;}
.y160{bottom:310.250267pt;}
.y11{bottom:310.708667pt;}
.y2a4{bottom:310.780533pt;}
.y36{bottom:311.002667pt;}
.y230{bottom:311.013600pt;}
.y2f9{bottom:312.521867pt;}
.y60{bottom:313.154800pt;}
.y2cf{bottom:313.295200pt;}
.yf9{bottom:315.962667pt;}
.y259{bottom:317.752000pt;}
.y86{bottom:321.475467pt;}
.y122{bottom:323.402533pt;}
.yd4{bottom:323.886000pt;}
.y323{bottom:324.895200pt;}
.y1e8{bottom:325.262400pt;}
.y10{bottom:325.375333pt;}
.y20d{bottom:325.552133pt;}
.yad{bottom:326.574133pt;}
.y19f{bottom:326.767867pt;}
.y27d{bottom:327.233600pt;}
.y15f{bottom:327.258133pt;}
.y1c3{bottom:327.731733pt;}
.y2a3{bottom:328.247200pt;}
.y35{bottom:329.448800pt;}
.y22f{bottom:329.880267pt;}
.y2f8{bottom:330.215200pt;}
.y2ce{bottom:330.961867pt;}
.y258{bottom:333.752000pt;}
.yf8{bottom:334.496000pt;}
.y5f{bottom:339.420533pt;}
.y85{bottom:339.942133pt;}
.yf{bottom:340.042000pt;}
.y121{bottom:341.936000pt;}
.y322{bottom:342.161867pt;}
.yd3{bottom:342.419333pt;}
.y1e7{bottom:343.929067pt;}
.y15e{bottom:344.266133pt;}
.y20c{bottom:344.285467pt;}
.y19e{bottom:344.634533pt;}
.yac{bottom:345.280800pt;}
.y2a2{bottom:345.713867pt;}
.y27c{bottom:346.060267pt;}
.y1c2{bottom:346.531733pt;}
.y2f7{bottom:347.908533pt;}
.y2cd{bottom:348.628533pt;}
.y22e{bottom:348.746933pt;}
.y257{bottom:349.752000pt;}
.yf7{bottom:353.029333pt;}
.ye{bottom:354.708667pt;}
.y84{bottom:358.408800pt;}
.y34{bottom:358.782133pt;}
.y321{bottom:359.428533pt;}
.y120{bottom:360.469333pt;}
.yd2{bottom:360.952667pt;}
.y15d{bottom:361.274000pt;}
.y19d{bottom:362.501200pt;}
.y1e6{bottom:362.595733pt;}
.y20b{bottom:363.018800pt;}
.y2a1{bottom:363.180533pt;}
.yab{bottom:363.987467pt;}
.y27b{bottom:364.886933pt;}
.y1c1{bottom:365.331600pt;}
.y2f6{bottom:365.601867pt;}
.y256{bottom:365.752000pt;}
.y2cc{bottom:366.295200pt;}
.y22d{bottom:367.613600pt;}
.yd{bottom:369.375333pt;}
.yf6{bottom:371.562667pt;}
.y33{bottom:373.448800pt;}
.y320{bottom:376.695200pt;}
.y83{bottom:376.875467pt;}
.y15c{bottom:378.281867pt;}
.yd1{bottom:379.486000pt;}
.y19c{bottom:380.367867pt;}
.y2a0{bottom:380.647200pt;}
.y1e5{bottom:381.262400pt;}
.y255{bottom:382.311067pt;}
.yaa{bottom:382.694133pt;}
.y2f5{bottom:383.295200pt;}
.y27a{bottom:383.713600pt;}
.y2cb{bottom:383.961867pt;}
.yc{bottom:384.042000pt;}
.y1c0{bottom:384.131733pt;}
.y11f{bottom:384.671867pt;}
.y5e{bottom:386.473600pt;}
.y22c{bottom:386.480267pt;}
.y32{bottom:388.115467pt;}
.y20a{bottom:389.311200pt;}
.yf5{bottom:390.096000pt;}
.y31f{bottom:393.961867pt;}
.y15b{bottom:395.289733pt;}
.y82{bottom:395.342133pt;}
.yd0{bottom:398.019333pt;}
.y29f{bottom:398.113867pt;}
.y19b{bottom:398.234533pt;}
.y254{bottom:398.311067pt;}
.yb{bottom:398.708667pt;}
.y2f4{bottom:400.988533pt;}
.ya9{bottom:401.400800pt;}
.y2ca{bottom:401.628533pt;}
.y279{bottom:402.540267pt;}
.y31{bottom:402.782133pt;}
.y1bf{bottom:402.931733pt;}
.y5d{bottom:405.180267pt;}
.y1e4{bottom:407.488133pt;}
.y209{bottom:408.044533pt;}
.yf4{bottom:408.629333pt;}
.y11e{bottom:410.764267pt;}
.y31e{bottom:411.228533pt;}
.y15a{bottom:412.297600pt;}
.y22b{bottom:412.906000pt;}
.ya{bottom:413.375333pt;}
.y81{bottom:413.808800pt;}
.y253{bottom:414.311067pt;}
.y29e{bottom:415.580533pt;}
.y19a{bottom:416.101200pt;}
.ycf{bottom:416.552667pt;}
.y30{bottom:417.448800pt;}
.y2f3{bottom:418.681867pt;}
.y2c9{bottom:419.295200pt;}
.ya8{bottom:420.107467pt;}
.y278{bottom:421.366933pt;}
.y1be{bottom:421.731733pt;}
.y5c{bottom:423.886933pt;}
.y1e3{bottom:426.154800pt;}
.y208{bottom:426.777867pt;}
.y9{bottom:428.042000pt;}
.y31d{bottom:428.495200pt;}
.y159{bottom:429.305467pt;}
.y252{bottom:430.311067pt;}
.y22a{bottom:431.772667pt;}
.y80{bottom:432.275467pt;}
.y29d{bottom:433.047200pt;}
.y199{bottom:433.967867pt;}
.yf3{bottom:434.721733pt;}
.yce{bottom:435.086000pt;}
.y2f{bottom:435.895067pt;}
.y2f2{bottom:436.375200pt;}
.y2c8{bottom:436.961867pt;}
.ya7{bottom:438.814133pt;}
.y277{bottom:440.193600pt;}
.y1bd{bottom:440.531733pt;}
.y5b{bottom:442.593600pt;}
.y8{bottom:442.708667pt;}
.y1e2{bottom:444.821467pt;}
.y207{bottom:445.511200pt;}
.y31c{bottom:445.761867pt;}
.y251{bottom:446.311067pt;}
.y158{bottom:446.313333pt;}
.y29c{bottom:450.513867pt;}
.y7f{bottom:450.742133pt;}
.y198{bottom:451.834533pt;}
.yf2{bottom:453.255067pt;}
.ycd{bottom:453.619333pt;}
.y2f1{bottom:454.068533pt;}
.y2c7{bottom:454.628533pt;}
.y7{bottom:457.375333pt;}
.y11d{bottom:457.644133pt;}
.y229{bottom:458.198400pt;}
.y276{bottom:459.020267pt;}
.y1bc{bottom:459.331600pt;}
.y5a{bottom:461.300267pt;}
.y250{bottom:462.311067pt;}
.y31b{bottom:463.028533pt;}
.y157{bottom:463.321200pt;}
.y206{bottom:464.244533pt;}
.ya6{bottom:465.079867pt;}
.y2e{bottom:465.228400pt;}
.y29b{bottom:467.980533pt;}
.y7e{bottom:469.208800pt;}
.y197{bottom:469.701200pt;}
.y1e1{bottom:471.047200pt;}
.y2f0{bottom:471.761867pt;}
.yf1{bottom:471.788400pt;}
.y6{bottom:472.042000pt;}
.ycc{bottom:472.152667pt;}
.y2c6{bottom:472.295200pt;}
.y228{bottom:477.065067pt;}
.y275{bottom:477.846933pt;}
.y1bb{bottom:478.131733pt;}
.y24f{bottom:478.311067pt;}
.y2d{bottom:479.895067pt;}
.y59{bottom:480.006933pt;}
.y31a{bottom:480.295200pt;}
.y156{bottom:480.329067pt;}
.y11c{bottom:480.372400pt;}
.y205{bottom:482.977867pt;}
.ya5{bottom:483.786533pt;}
.y5{bottom:486.708667pt;}
.y196{bottom:487.567867pt;}
.y7d{bottom:487.675467pt;}
.y2ef{bottom:489.455200pt;}
.y1e0{bottom:489.713867pt;}
.y2c5{bottom:489.961867pt;}
.yf0{bottom:490.321733pt;}
.ycb{bottom:490.686000pt;}
.y29a{bottom:493.006267pt;}
.y13f{bottom:493.795200pt;}
.y24e{bottom:494.311067pt;}
.y2c{bottom:494.561733pt;}
.y11b{bottom:495.039067pt;}
.y227{bottom:495.931733pt;}
.y274{bottom:496.673600pt;}
.y1ba{bottom:496.931733pt;}
.y155{bottom:497.336933pt;}
.y319{bottom:497.561867pt;}
.y58{bottom:498.713600pt;}
.y4{bottom:501.375333pt;}
.y195{bottom:505.434533pt;}
.ya4{bottom:506.272667pt;}
.y2ee{bottom:507.148533pt;}
.y2c4{bottom:507.628533pt;}
.yef{bottom:508.855067pt;}
.yca{bottom:509.219333pt;}
.y2b{bottom:509.228400pt;}
.y204{bottom:509.270267pt;}
.y11a{bottom:509.705733pt;}
.y24d{bottom:510.870133pt;}
.y7c{bottom:511.811467pt;}
.y154{bottom:514.344800pt;}
.y226{bottom:514.798400pt;}
.y318{bottom:514.828533pt;}
.y273{bottom:515.500267pt;}
.y1b9{bottom:515.731733pt;}
.y1df{bottom:515.939600pt;}
.y3{bottom:516.042000pt;}
.y57{bottom:517.420267pt;}
.y13e{bottom:517.692933pt;}
.y194{bottom:523.301200pt;}
.y2a{bottom:523.895067pt;}
.y119{bottom:524.372400pt;}
.y2ed{bottom:524.841867pt;}
.ya3{bottom:524.979333pt;}
.y2c3{bottom:525.295200pt;}
.y24c{bottom:526.870133pt;}
.yee{bottom:527.388400pt;}
.yc9{bottom:527.752667pt;}
.y203{bottom:528.003600pt;}
.y2{bottom:530.708667pt;}
.y153{bottom:531.352667pt;}
.y317{bottom:532.095200pt;}
.y225{bottom:533.665067pt;}
.y272{bottom:534.326933pt;}
.y1de{bottom:534.606267pt;}
.y56{bottom:536.126933pt;}
.y13d{bottom:536.590533pt;}
.y118{bottom:539.039067pt;}
.y299{bottom:540.286000pt;}
.y193{bottom:541.167867pt;}
.y1b8{bottom:542.090800pt;}
.y29{bottom:542.341200pt;}
.y2ec{bottom:542.535200pt;}
.y24b{bottom:542.870133pt;}
.y2c2{bottom:542.961867pt;}
.y7b{bottom:543.506533pt;}
.ya2{bottom:543.686000pt;}
.yed{bottom:545.921733pt;}
.yc8{bottom:546.286000pt;}
.y152{bottom:548.360533pt;}
.y316{bottom:549.361867pt;}
.y271{bottom:553.153600pt;}
.y1dd{bottom:553.272933pt;}
.y117{bottom:553.705733pt;}
.y202{bottom:554.296000pt;}
.y55{bottom:554.833600pt;}
.y13c{bottom:555.488133pt;}
.y24a{bottom:558.870133pt;}
.y192{bottom:559.034533pt;}
.y298{bottom:559.219333pt;}
.y224{bottom:560.090800pt;}
.y2eb{bottom:560.228533pt;}
.y2c1{bottom:560.628533pt;}
.y1b7{bottom:560.890667pt;}
.y7a{bottom:561.973200pt;}
.ya1{bottom:562.392667pt;}
.yec{bottom:564.455067pt;}
.yc7{bottom:564.819333pt;}
.y151{bottom:565.368400pt;}
.y315{bottom:566.628533pt;}
.y116{bottom:568.372400pt;}
.y270{bottom:571.980267pt;}
.y201{bottom:573.029333pt;}
.y54{bottom:573.540267pt;}
.y13b{bottom:574.385867pt;}
.y249{bottom:574.870133pt;}
.y191{bottom:576.901200pt;}
.y2ea{bottom:577.921867pt;}
.y297{bottom:578.152667pt;}
.y2c0{bottom:578.295200pt;}
.y223{bottom:578.957333pt;}
.y1dc{bottom:579.498667pt;}
.y1b6{bottom:579.690800pt;}
.y17c{bottom:579.939600pt;}
.y79{bottom:580.439867pt;}
.ya0{bottom:581.099333pt;}
.yeb{bottom:582.988400pt;}
.y115{bottom:583.039067pt;}
.y150{bottom:583.321200pt;}
.yc6{bottom:583.352667pt;}
.y314{bottom:583.895200pt;}
.y26f{bottom:590.806933pt;}
.y248{bottom:590.870133pt;}
.y200{bottom:591.762667pt;}
.y53{bottom:592.246933pt;}
.y13a{bottom:593.283467pt;}
.y190{bottom:594.767867pt;}
.y28{bottom:594.803200pt;}
.y2e9{bottom:595.615200pt;}
.y2bf{bottom:595.961867pt;}
.y296{bottom:597.086000pt;}
.y114{bottom:597.705733pt;}
.y222{bottom:597.824000pt;}
.y1db{bottom:598.165333pt;}
.y9f{bottom:599.806000pt;}
.y313{bottom:601.161867pt;}
.yea{bottom:601.521733pt;}
.yc5{bottom:601.886000pt;}
.y78{bottom:602.686000pt;}
.y17b{bottom:602.892400pt;}
.y1b5{bottom:606.049867pt;}
.y247{bottom:606.870133pt;}
.y26e{bottom:609.633600pt;}
.y14f{bottom:610.329067pt;}
.y52{bottom:610.953600pt;}
.y139{bottom:612.181067pt;}
.y113{bottom:612.372400pt;}
.y18f{bottom:612.634533pt;}
.y2e8{bottom:613.308533pt;}
.y2be{bottom:613.628533pt;}
.y295{bottom:616.019333pt;}
.y1da{bottom:616.832000pt;}
.y1ff{bottom:618.055067pt;}
.y312{bottom:618.428533pt;}
.y9e{bottom:618.512667pt;}
.y17a{bottom:619.900267pt;}
.ye9{bottom:620.055067pt;}
.yc4{bottom:620.419333pt;}
.y77{bottom:621.152667pt;}
.y27{bottom:622.803200pt;}
.y246{bottom:622.870133pt;}
.y221{bottom:624.249733pt;}
.y1b4{bottom:624.849733pt;}
.y26d{bottom:628.460267pt;}
.y51{bottom:629.660267pt;}
.y112{bottom:630.100800pt;}
.y18e{bottom:630.501200pt;}
.y2e7{bottom:631.001867pt;}
.y138{bottom:631.078667pt;}
.y2bd{bottom:631.295200pt;}
.y294{bottom:634.952667pt;}
.y311{bottom:635.695200pt;}
.y1fe{bottom:636.788400pt;}
.y179{bottom:636.908133pt;}
.y9d{bottom:637.219333pt;}
.ye8{bottom:638.588400pt;}
.y245{bottom:638.870133pt;}
.yc3{bottom:638.952667pt;}
.y76{bottom:639.619333pt;}
.y14e{bottom:640.113867pt;}
.y1d9{bottom:643.057600pt;}
.y220{bottom:643.116400pt;}
.y26c{bottom:647.286933pt;}
.y111{bottom:647.829067pt;}
.y50{bottom:648.366933pt;}
.y18d{bottom:648.367867pt;}
.y2e6{bottom:648.695200pt;}
.y2bc{bottom:648.961867pt;}
.y137{bottom:649.976400pt;}
.y26{bottom:650.803200pt;}
.y1b3{bottom:651.208800pt;}
.y310{bottom:652.961867pt;}
.y293{bottom:653.886000pt;}
.y178{bottom:653.916000pt;}
.y244{bottom:654.870133pt;}
.y1fd{bottom:655.521733pt;}
.y9c{bottom:655.926000pt;}
.ye7{bottom:657.121733pt;}
.yc2{bottom:657.486000pt;}
.y75{bottom:658.086000pt;}
.y14d{bottom:658.647200pt;}
.y1d8{bottom:661.724267pt;}
.y110{bottom:662.895733pt;}
.y26b{bottom:666.113600pt;}
.y18c{bottom:666.234533pt;}
.y2e5{bottom:666.388533pt;}
.y2bb{bottom:666.628533pt;}
.y4f{bottom:667.073600pt;}
.y136{bottom:668.874000pt;}
.y1b2{bottom:670.008933pt;}
.y30f{bottom:670.228533pt;}
.y243{bottom:670.870133pt;}
.y177{bottom:670.923867pt;}
.y292{bottom:672.819333pt;}
.y1fc{bottom:674.255067pt;}
.y9b{bottom:674.632667pt;}
.ye6{bottom:675.655067pt;}
.yc1{bottom:676.019333pt;}
.y74{bottom:676.552667pt;}
.y21f{bottom:677.101200pt;}
.y14c{bottom:677.180533pt;}
.y10f{bottom:677.962400pt;}
.y1d7{bottom:680.390933pt;}
.y2e4{bottom:684.081867pt;}
.y18b{bottom:684.101200pt;}
.y2ba{bottom:684.295200pt;}
.y26a{bottom:684.940267pt;}
.y4e{bottom:685.780267pt;}
.y242{bottom:687.429067pt;}
.y30e{bottom:687.495333pt;}
.y135{bottom:687.771600pt;}
.y176{bottom:687.931733pt;}
.y1b1{bottom:688.808800pt;}
.y291{bottom:691.752667pt;}
.y1fb{bottom:692.988400pt;}
.y10e{bottom:693.029200pt;}
.y9a{bottom:693.339333pt;}
.ye5{bottom:694.188400pt;}
.yc0{bottom:694.552667pt;}
.y73{bottom:695.019333pt;}
.y14b{bottom:695.713867pt;}
.y21e{bottom:695.968000pt;}
.y1d6{bottom:699.057733pt;}
.y2e3{bottom:701.775200pt;}
.y2b9{bottom:701.961867pt;}
.y18a{bottom:701.968000pt;}
.y241{bottom:703.429067pt;}
.y269{bottom:703.766933pt;}
.y4d{bottom:704.486933pt;}
.y30d{bottom:704.761867pt;}
.y175{bottom:704.939600pt;}
.y134{bottom:706.669333pt;}
.y10d{bottom:708.095733pt;}
.y24{bottom:709.039333pt;}
.y290{bottom:710.686000pt;}
.y1fa{bottom:711.721733pt;}
.y99{bottom:712.046000pt;}
.ye4{bottom:712.721733pt;}
.ybf{bottom:713.086000pt;}
.y72{bottom:713.486000pt;}
.y21d{bottom:714.834533pt;}
.y1b0{bottom:715.167867pt;}
.y25{bottom:715.433067pt;}
.y240{bottom:719.429067pt;}
.y2e2{bottom:719.468533pt;}
.y2b8{bottom:719.628533pt;}
.y14a{bottom:721.806267pt;}
.y174{bottom:721.947467pt;}
.y30c{bottom:722.028533pt;}
.y268{bottom:722.593600pt;}
.y10c{bottom:723.162400pt;}
.y4c{bottom:723.193600pt;}
.y1d5{bottom:725.283333pt;}
.y133{bottom:725.566933pt;}
.y189{bottom:727.393600pt;}
.y28f{bottom:729.619333pt;}
.y1f9{bottom:730.455067pt;}
.y98{bottom:730.752667pt;}
.ye3{bottom:731.255067pt;}
.ybe{bottom:731.619333pt;}
.y71{bottom:731.952667pt;}
.y21c{bottom:733.701200pt;}
.y1af{bottom:733.968000pt;}
.y23f{bottom:735.429067pt;}
.y23{bottom:737.039333pt;}
.y2e1{bottom:737.162000pt;}
.y2b7{bottom:737.295200pt;}
.y10b{bottom:738.229067pt;}
.y173{bottom:738.955333pt;}
.y30b{bottom:739.295200pt;}
.y267{bottom:741.420267pt;}
.y4b{bottom:741.900267pt;}
.y1d4{bottom:743.950000pt;}
.y132{bottom:744.464533pt;}
.y188{bottom:745.260267pt;}
.y28e{bottom:748.552667pt;}
.y97{bottom:749.459333pt;}
.ybd{bottom:750.152667pt;}
.y70{bottom:750.419333pt;}
.y23e{bottom:751.429067pt;}
.y21b{bottom:752.567867pt;}
.y10a{bottom:753.295867pt;}
.y2e0{bottom:754.855200pt;}
.y1f8{bottom:754.857600pt;}
.y2b6{bottom:754.961867pt;}
.ye2{bottom:755.457733pt;}
.y172{bottom:755.963200pt;}
.y30a{bottom:756.561867pt;}
.y266{bottom:760.246933pt;}
.y1ae{bottom:760.326933pt;}
.y4a{bottom:760.606933pt;}
.y1d3{bottom:762.616667pt;}
.y187{bottom:763.126933pt;}
.y131{bottom:763.362267pt;}
.y22{bottom:765.039333pt;}
.y23d{bottom:767.429067pt;}
.y28d{bottom:767.486000pt;}
.y96{bottom:768.166000pt;}
.y109{bottom:768.362533pt;}
.ybc{bottom:768.686000pt;}
.y6f{bottom:768.886000pt;}
.y2df{bottom:772.548533pt;}
.y2b5{bottom:772.628533pt;}
.y171{bottom:772.971067pt;}
.y309{bottom:773.828667pt;}
.y21a{bottom:778.993600pt;}
.y265{bottom:779.073600pt;}
.y1ad{bottom:779.126933pt;}
.y49{bottom:779.313600pt;}
.y186{bottom:780.993600pt;}
.y1d2{bottom:781.283333pt;}
.y130{bottom:782.259867pt;}
.y108{bottom:783.429067pt;}
.y28c{bottom:786.419333pt;}
.y1f7{bottom:786.819333pt;}
.y95{bottom:786.872667pt;}
.ybb{bottom:787.219333pt;}
.y6e{bottom:787.352667pt;}
.y170{bottom:789.978933pt;}
.y2de{bottom:790.242000pt;}
.y2b4{bottom:790.295200pt;}
.y308{bottom:791.095200pt;}
.y21{bottom:793.039333pt;}
.y219{bottom:797.860267pt;}
.y264{bottom:797.900267pt;}
.y48{bottom:798.020267pt;}
.y1d1{bottom:799.950000pt;}
.y107{bottom:801.157467pt;}
.y28b{bottom:805.352667pt;}
.y1ac{bottom:805.486000pt;}
.y1f6{bottom:805.552667pt;}
.y94{bottom:805.579333pt;}
.yba{bottom:805.752667pt;}
.y6d{bottom:805.819333pt;}
.y185{bottom:806.419333pt;}
.y16f{bottom:806.986800pt;}
.y2dd{bottom:807.935200pt;}
.y2b3{bottom:807.961867pt;}
.y307{bottom:808.361867pt;}
.y43{bottom:815.216533pt;}
.y47{bottom:824.286000pt;}
.y16e{bottom:824.939600pt;}
.y2b2{bottom:825.628533pt;}
.y106{bottom:830.055067pt;}
.y42{bottom:831.216533pt;}
.h7{height:35.657738pt;}
.h12{height:36.540019pt;}
.h15{height:37.653333pt;}
.h3{height:38.226562pt;}
.hb{height:38.570020pt;}
.hd{height:41.418667pt;}
.hf{height:41.477333pt;}
.h11{height:42.458667pt;}
.h14{height:42.666667pt;}
.ha{height:43.265625pt;}
.h9{height:43.312500pt;}
.h4{height:43.664062pt;}
.h13{height:44.693333pt;}
.hc{height:45.718750pt;}
.h10{height:46.933333pt;}
.he{height:49.162667pt;}
.h2{height:52.937500pt;}
.h5{height:61.162500pt;}
.h6{height:69.225000pt;}
.h8{height:69.300000pt;}
.h0{height:907.086667pt;}
.h1{height:907.333333pt;}
.w0{width:642.520000pt;}
.w1{width:642.666667pt;}
.x0{left:0.000000pt;}
.x4{left:60.472400pt;}
.x20{left:66.141733pt;}
.x6{left:68.031467pt;}
.xc{left:71.811067pt;}
.x19{left:77.480267pt;}
.x1c{left:86.929200pt;}
.xb{left:90.708667pt;}
.x1f{left:92.839067pt;}
.x10{left:96.378000pt;}
.xd{left:98.267733pt;}
.x15{left:124.724400pt;}
.x12{left:126.759600pt;}
.xa{left:154.149733pt;}
.x18{left:159.261200pt;}
.x9{left:167.021467pt;}
.xf{left:178.434000pt;}
.x24{left:188.030267pt;}
.xe{left:201.993333pt;}
.x21{left:207.299333pt;}
.x26{left:212.498133pt;}
.x1e{left:226.468400pt;}
.x16{left:230.071867pt;}
.x5{left:240.019467pt;}
.x1b{left:256.855467pt;}
.x17{left:258.750933pt;}
.x27{left:261.557600pt;}
.x14{left:265.482400pt;}
.x23{left:270.124400pt;}
.x13{left:277.246667pt;}
.x28{left:278.599867pt;}
.x25{left:281.119867pt;}
.x1d{left:310.018133pt;}
.x1{left:313.765333pt;}
.x11{left:334.488133pt;}
.x3{left:351.496000pt;}
.x22{left:357.165333pt;}
.x2{left:362.834667pt;}
.x8{left:378.514267pt;}
.x7{left:401.865867pt;}
.x1a{left:468.609200pt;}
}




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