
    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_452053dc8bc6c012f7321474.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.912000;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_2072d9154a589db939d88759.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.973000;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_62dc51eb30d78666ec240fa3.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.904000;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_f8b785d5d51d2b1f62ed915d.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.912000;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_0d49ec9ef8aa970d2d993373.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.927000;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_855fe07f8f989a17e753160f.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.994141;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_bd2d927c41c3ecdb57f652e9.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.941000;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_bda2c4f703ab2fe3e66151ef.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.765065;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_79ee0208fdf476a10b527ce6.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.973000;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_62dc51eb30d78666ec240fa3.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.904000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_6d5b9535d6f4922ad3d81cfa.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.707031;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_d68aa787dff291c85b876873.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.006000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_92854306790a8d025e919d7d.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_2072d9154a589db939d88759.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.973000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_62dc51eb30d78666ec240fa3.woff2')format("woff");}.fff{font-family:fff;line-height:0.904000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url('chunks/assets/font_f8b785d5d51d2b1f62ed915d.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.912000;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:ff11;src:url('chunks/assets/font_6fee03094f639161592f9345.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.943000;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:ff12;src:url('chunks/assets/font_2072d9154a589db939d88759.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.973000;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:ff13;src:url('chunks/assets/font_62dc51eb30d78666ec240fa3.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.904000;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:ff14;src:url('chunks/assets/font_f8b785d5d51d2b1f62ed915d.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.912000;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:ff15;src:url('chunks/assets/font_2072d9154a589db939d88759.woff2')format("woff");}.ff15{font-family:ff15;line-height:0.973000;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:ff16;src:url('chunks/assets/font_62dc51eb30d78666ec240fa3.woff2')format("woff");}.ff16{font-family:ff16;line-height:0.904000;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:ff17;src:url('chunks/assets/font_f8b785d5d51d2b1f62ed915d.woff2')format("woff");}.ff17{font-family:ff17;line-height:0.912000;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:ff18;src:url('chunks/assets/font_6dd10402016d2bd4785442f6.woff2')format("woff");}.ff18{font-family:ff18;line-height:0.941000;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;}
.m1{transform:matrix(0.000000,0.250000,-0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,0.250000,-0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,0.250000,-0.250000,0.000000,0,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);}
.m2{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:-21.600000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:27.000000px;}
.v1{vertical-align:29.700000px;}
.v4{vertical-align:54.000000px;}
.ls4{letter-spacing:-1.776000px;}
.ls3{letter-spacing:0.000000px;}
.ls8{letter-spacing:0.596700px;}
.ls7{letter-spacing:0.900000px;}
.ls0{letter-spacing:3.780000px;}
.ls6{letter-spacing:9.360000px;}
.ls1{letter-spacing:17.200200px;}
.ls2{letter-spacing:24.492000px;}
.ls5{letter-spacing:1609.678200px;}
.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;}
}
.ws6{word-spacing:-15.600000px;}
.ws7{word-spacing:-15.012000px;}
.ws3{word-spacing:-14.400000px;}
.ws4{word-spacing:-12.960000px;}
.ws10f{word-spacing:-12.510000px;}
.ws0{word-spacing:-12.164724px;}
.wsa{word-spacing:-11.520480px;}
.ws2{word-spacing:-11.520000px;}
.wse8{word-spacing:-10.939500px;}
.ws5{word-spacing:-10.342800px;}
.ws1{word-spacing:-7.637760px;}
.ws6c{word-spacing:-5.940000px;}
.wsb0{word-spacing:-4.560000px;}
.wsb6{word-spacing:-4.140000px;}
.ws59{word-spacing:-3.959400px;}
.wsaf{word-spacing:-3.900000px;}
.wsa0{word-spacing:-3.540600px;}
.wsab{word-spacing:-3.360000px;}
.wsf2{word-spacing:-3.299400px;}
.ws5c{word-spacing:-3.240000px;}
.wse5{word-spacing:-3.179400px;}
.ws92{word-spacing:-3.120000px;}
.ws67{word-spacing:-3.059400px;}
.ws8c{word-spacing:-2.940000px;}
.ws97{word-spacing:-2.880000px;}
.ws55{word-spacing:-2.820000px;}
.wsf4{word-spacing:-2.760600px;}
.ws57{word-spacing:-2.640600px;}
.ws21{word-spacing:-2.580000px;}
.wsbf{word-spacing:-2.340000px;}
.ws75{word-spacing:-2.220000px;}
.wsae{word-spacing:-2.160000px;}
.ws107{word-spacing:-2.040000px;}
.wsfc{word-spacing:-1.980000px;}
.wsf6{word-spacing:-1.860600px;}
.ws101{word-spacing:-1.800000px;}
.wsb{word-spacing:-1.776000px;}
.wsb9{word-spacing:-1.740600px;}
.wscd{word-spacing:-1.619400px;}
.ws102{word-spacing:-1.560000px;}
.wsd6{word-spacing:-1.499400px;}
.wsdd{word-spacing:-1.471860px;}
.ws103{word-spacing:-1.320000px;}
.ws4a{word-spacing:-1.260000px;}
.ws58{word-spacing:-1.140000px;}
.wse1{word-spacing:-1.080600px;}
.wsa7{word-spacing:-1.020000px;}
.ws89{word-spacing:-0.960600px;}
.ws2e{word-spacing:-0.918000px;}
.ws61{word-spacing:-0.840600px;}
.ws1d{word-spacing:-0.780000px;}
.wsf5{word-spacing:-0.660000px;}
.ws8f{word-spacing:-0.599400px;}
.wsba{word-spacing:-0.540000px;}
.wsc2{word-spacing:-0.480000px;}
.ws10b{word-spacing:-0.420000px;}
.ws110{word-spacing:-0.315000px;}
.wsec{word-spacing:-0.300000px;}
.ws30{word-spacing:-0.216000px;}
.ws111{word-spacing:-0.135450px;}
.ws86{word-spacing:-0.120000px;}
.wscc{word-spacing:-0.060600px;}
.ws8{word-spacing:0.000000px;}
.ws65{word-spacing:0.060600px;}
.ws8e{word-spacing:0.180600px;}
.ws6b{word-spacing:0.240000px;}
.wsee{word-spacing:0.360000px;}
.ws78{word-spacing:0.480000px;}
.ws33{word-spacing:0.486000px;}
.ws2d{word-spacing:0.539460px;}
.wsdc{word-spacing:0.540000px;}
.wsa5{word-spacing:0.599400px;}
.ws4e{word-spacing:0.660000px;}
.wsc0{word-spacing:0.780000px;}
.ws3e{word-spacing:0.840600px;}
.ws42{word-spacing:0.960600px;}
.wsc{word-spacing:1.020000px;}
.ws2f{word-spacing:1.080000px;}
.ws43{word-spacing:1.080600px;}
.ws1c{word-spacing:1.140000px;}
.ws49{word-spacing:1.260000px;}
.ws40{word-spacing:1.320000px;}
.ws95{word-spacing:1.440000px;}
.wsd{word-spacing:1.499400px;}
.wsa2{word-spacing:1.560000px;}
.ws50{word-spacing:1.619400px;}
.wsc4{word-spacing:1.680000px;}
.ws9{word-spacing:1.776000px;}
.ws5f{word-spacing:1.800000px;}
.ws14{word-spacing:1.920000px;}
.wsa3{word-spacing:1.980000px;}
.ws3f{word-spacing:2.040000px;}
.ws4d{word-spacing:2.100000px;}
.ws94{word-spacing:2.160000px;}
.ws20{word-spacing:2.307240px;}
.wsdf{word-spacing:2.399400px;}
.wsf9{word-spacing:2.460000px;}
.ws29{word-spacing:2.484540px;}
.ws1b{word-spacing:2.506140px;}
.ws7d{word-spacing:2.580000px;}
.ws3d{word-spacing:2.760600px;}
.wseb{word-spacing:2.940000px;}
.wsf1{word-spacing:2.983500px;}
.ws5a{word-spacing:3.000000px;}
.wsa1{word-spacing:3.179400px;}
.ws5e{word-spacing:3.299400px;}
.ws10a{word-spacing:3.360000px;}
.ws1f{word-spacing:3.480000px;}
.ws6f{word-spacing:3.540600px;}
.ws26{word-spacing:3.563460px;}
.ws5b{word-spacing:3.660000px;}
.ws1a{word-spacing:3.780000px;}
.ws41{word-spacing:3.840000px;}
.ws98{word-spacing:3.959400px;}
.wsfe{word-spacing:4.020000px;}
.ws31{word-spacing:4.104000px;}
.wsbc{word-spacing:4.140000px;}
.ws9e{word-spacing:4.200600px;}
.ws68{word-spacing:4.320600px;}
.wsf7{word-spacing:4.380000px;}
.wsd3{word-spacing:4.440600px;}
.ws36{word-spacing:4.481460px;}
.ws82{word-spacing:4.500000px;}
.wsc5{word-spacing:4.560000px;}
.ws8b{word-spacing:4.620000px;}
.ws44{word-spacing:4.739400px;}
.ws19{word-spacing:4.859400px;}
.ws63{word-spacing:4.920000px;}
.wsef{word-spacing:4.979400px;}
.ws4b{word-spacing:5.040000px;}
.wsc8{word-spacing:5.160000px;}
.ws3c{word-spacing:5.220600px;}
.ws37{word-spacing:5.400000px;}
.ws66{word-spacing:5.460000px;}
.ws69{word-spacing:5.639400px;}
.ws99{word-spacing:5.700000px;}
.ws35{word-spacing:5.724000px;}
.ws10d{word-spacing:5.759400px;}
.ws106{word-spacing:5.880600px;}
.ws96{word-spacing:5.940000px;}
.ws108{word-spacing:6.000600px;}
.ws83{word-spacing:6.120600px;}
.ws6d{word-spacing:6.180000px;}
.ws2a{word-spacing:6.210540px;}
.ws53{word-spacing:6.360000px;}
.wsed{word-spacing:6.480000px;}
.ws34{word-spacing:6.534000px;}
.wsb5{word-spacing:6.539400px;}
.wsb4{word-spacing:6.600000px;}
.wsc3{word-spacing:6.659400px;}
.ws3a{word-spacing:6.780600px;}
.ws6e{word-spacing:7.020000px;}
.ws9b{word-spacing:7.140000px;}
.ws3b{word-spacing:7.260000px;}
.ws7a{word-spacing:7.380000px;}
.wsb7{word-spacing:7.439400px;}
.ws70{word-spacing:7.680600px;}
.ws32{word-spacing:7.722540px;}
.ws5d{word-spacing:7.740000px;}
.ws4f{word-spacing:7.800000px;}
.wsfa{word-spacing:7.860000px;}
.ws71{word-spacing:7.920000px;}
.ws54{word-spacing:7.980000px;}
.ws6a{word-spacing:8.040000px;}
.ws81{word-spacing:8.160000px;}
.wsfd{word-spacing:8.219400px;}
.wsc6{word-spacing:8.280000px;}
.wse9{word-spacing:8.340600px;}
.ws4c{word-spacing:8.460600px;}
.ws2c{word-spacing:8.586000px;}
.ws28{word-spacing:8.640000px;}
.ws64{word-spacing:8.700000px;}
.wse2{word-spacing:8.760000px;}
.wsdb{word-spacing:8.820000px;}
.ws9f{word-spacing:8.879400px;}
.wsbb{word-spacing:8.999400px;}
.ws7f{word-spacing:9.119400px;}
.wsfb{word-spacing:9.180000px;}
.ws85{word-spacing:9.240600px;}
.ws79{word-spacing:9.360600px;}
.wsa6{word-spacing:9.420000px;}
.wsb8{word-spacing:9.480000px;}
.ws7e{word-spacing:9.540000px;}
.ws45{word-spacing:9.660000px;}
.ws47{word-spacing:9.720000px;}
.ws13{word-spacing:9.840000px;}
.ws2b{word-spacing:9.936540px;}
.ws60{word-spacing:9.960000px;}
.wsca{word-spacing:10.020600px;}
.ws56{word-spacing:10.260600px;}
.wsd2{word-spacing:10.380000px;}
.wse6{word-spacing:10.559400px;}
.ws11{word-spacing:10.620000px;}
.ws72{word-spacing:10.679400px;}
.ws1e{word-spacing:10.860000px;}
.ws39{word-spacing:10.920600px;}
.wsf0{word-spacing:11.040600px;}
.wsd5{word-spacing:11.280000px;}
.ws77{word-spacing:11.340000px;}
.wsb3{word-spacing:11.400000px;}
.wsc7{word-spacing:11.459400px;}
.wse0{word-spacing:11.640000px;}
.wsda{word-spacing:11.760000px;}
.wsc9{word-spacing:11.880000px;}
.ws9c{word-spacing:12.060000px;}
.wsa9{word-spacing:12.120000px;}
.wsd4{word-spacing:12.239400px;}
.wsf3{word-spacing:12.359400px;}
.wsc1{word-spacing:12.420000px;}
.wsff{word-spacing:12.540000px;}
.ws25{word-spacing:12.780000px;}
.ws52{word-spacing:12.900000px;}
.wsbd{word-spacing:13.080000px;}
.ws91{word-spacing:13.139400px;}
.wsd8{word-spacing:13.259400px;}
.wsce{word-spacing:13.440000px;}
.ws8d{word-spacing:13.500600px;}
.ws80{word-spacing:13.560000px;}
.ws7c{word-spacing:13.620600px;}
.ws84{word-spacing:13.740000px;}
.wsaa{word-spacing:13.800000px;}
.wsa4{word-spacing:13.860000px;}
.wsb1{word-spacing:13.919400px;}
.ws100{word-spacing:13.980000px;}
.ws10{word-spacing:14.460000px;}
.wscf{word-spacing:14.700000px;}
.ws9a{word-spacing:14.760000px;}
.ws90{word-spacing:14.880000px;}
.ws10e{word-spacing:14.939400px;}
.wsd9{word-spacing:15.060600px;}
.wsd7{word-spacing:15.120000px;}
.ws46{word-spacing:15.480000px;}
.ws62{word-spacing:15.540000px;}
.ws105{word-spacing:15.599400px;}
.ws76{word-spacing:15.719400px;}
.ws7b{word-spacing:16.379400px;}
.ws93{word-spacing:16.440000px;}
.wsad{word-spacing:16.560000px;}
.wsd1{word-spacing:16.920000px;}
.ws27{word-spacing:17.010000px;}
.wsf8{word-spacing:17.040000px;}
.ws22{word-spacing:17.160000px;}
.ws9d{word-spacing:17.279400px;}
.ws73{word-spacing:17.399400px;}
.ws51{word-spacing:17.700000px;}
.ws12{word-spacing:17.760600px;}
.ws38{word-spacing:17.940000px;}
.ws17{word-spacing:18.059400px;}
.wsf{word-spacing:18.179400px;}
.ws10c{word-spacing:18.299400px;}
.wse4{word-spacing:18.360000px;}
.ws88{word-spacing:18.480000px;}
.wse{word-spacing:19.260000px;}
.ws15{word-spacing:19.739400px;}
.wsd0{word-spacing:20.460000px;}
.wsde{word-spacing:21.360000px;}
.ws104{word-spacing:21.480000px;}
.wse3{word-spacing:21.720000px;}
.ws109{word-spacing:21.900600px;}
.wsa8{word-spacing:22.319400px;}
.ws8a{word-spacing:22.620000px;}
.ws87{word-spacing:23.099400px;}
.wsb2{word-spacing:23.520000px;}
.ws48{word-spacing:25.320000px;}
.wse7{word-spacing:26.520000px;}
.ws16{word-spacing:27.660000px;}
.wsac{word-spacing:28.139400px;}
.ws74{word-spacing:28.380600px;}
.wsea{word-spacing:29.220000px;}
.wsbe{word-spacing:31.080600px;}
.ws18{word-spacing:32.640600px;}
.wscb{word-spacing:36.720000px;}
.ws24{word-spacing:39.060000px;}
.ws23{word-spacing:54.660000px;}
._e{margin-left:-2920.478760px;}
._d{margin-left:-2055.832380px;}
._b{margin-left:-59.040000px;}
._3{margin-left:-47.970000px;}
._17{margin-left:-37.260000px;}
._18{margin-left:-20.880000px;}
._13{margin-left:-17.625000px;}
._12{margin-left:-15.903600px;}
._15{margin-left:-14.344800px;}
._5{margin-left:-11.520000px;}
._10{margin-left:-9.420000px;}
._16{margin-left:-8.262000px;}
._11{margin-left:-7.258800px;}
._9{margin-left:-6.210000px;}
._f{margin-left:-5.119200px;}
._a{margin-left:-3.996000px;}
._0{margin-left:-2.740800px;}
._1{margin-left:-1.203648px;}
._4{width:1.334400px;}
._6{width:2.352000px;}
._8{width:11.949648px;}
._19{width:12.960000px;}
._7{width:14.040000px;}
._1a{width:20.610000px;}
._2{width:32.839380px;}
._14{width:38.016000px;}
._c{width:193.722840px;}
.fc3{color:rgb(0,0,255);}
.fc4{color:rgb(0,0,0);}
.fc2{color:rgb(255,255,255);}
.fc1{color:rgb(35,31,32);}
.fc0{color:rgb(65,64,153);}
.fs6{font-size:31.824000px;}
.fs5{font-size:39.000000px;}
.fs8{font-size:39.780000px;}
.fs4{font-size:43.758000px;}
.fs9{font-size:45.000000px;}
.fs1{font-size:48.000000px;}
.fs7{font-size:54.000000px;}
.fs0{font-size:60.000000px;}
.fs3{font-size:66.000000px;}
.fs2{font-size:132.000000px;}
.y0{bottom:0.000000px;}
.y2{bottom:41.383350px;}
.y1{bottom:41.386350px;}
.yc4{bottom:81.586350px;}
.ye6{bottom:81.602550px;}
.yf1{bottom:81.604050px;}
.y72{bottom:81.604650px;}
.y178{bottom:81.605550px;}
.y5f{bottom:81.610800px;}
.y1a7{bottom:81.614100px;}
.y154{bottom:81.633750px;}
.y2b{bottom:81.637800px;}
.yfa{bottom:81.739050px;}
.y1e1{bottom:82.066350px;}
.y1e0{bottom:96.586350px;}
.y2a{bottom:96.637800px;}
.yc3{bottom:99.586350px;}
.yf0{bottom:99.604050px;}
.y71{bottom:99.604650px;}
.y177{bottom:99.605550px;}
.y5e{bottom:99.610800px;}
.y1a6{bottom:99.614100px;}
.ye5{bottom:99.616350px;}
.y153{bottom:99.633750px;}
.yf9{bottom:101.224050px;}
.y1df{bottom:111.106350px;}
.y29{bottom:111.637800px;}
.yc2{bottom:117.586350px;}
.yef{bottom:117.604050px;}
.y70{bottom:117.604650px;}
.y176{bottom:117.605550px;}
.y5d{bottom:117.610800px;}
.y1a5{bottom:117.614100px;}
.ye4{bottom:117.616350px;}
.y152{bottom:117.633750px;}
.yf8{bottom:120.709050px;}
.y1de{bottom:125.626350px;}
.y223{bottom:130.190850px;}
.y270{bottom:130.798350px;}
.y125{bottom:135.586350px;}
.yee{bottom:135.604050px;}
.y6f{bottom:135.604650px;}
.y175{bottom:135.605550px;}
.y5c{bottom:135.610800px;}
.y1a4{bottom:135.614100px;}
.ye3{bottom:135.616350px;}
.y151{bottom:135.633750px;}
.y28{bottom:140.137800px;}
.y1dd{bottom:140.146350px;}
.yf7{bottom:140.194050px;}
.y222{bottom:142.937100px;}
.y26f{bottom:143.679600px;}
.yc1{bottom:143.731350px;}
.y124{bottom:153.586350px;}
.yed{bottom:153.604050px;}
.y6e{bottom:153.604650px;}
.y174{bottom:153.605550px;}
.y5b{bottom:153.610800px;}
.y1a3{bottom:153.614100px;}
.ye2{bottom:153.616350px;}
.y150{bottom:153.633750px;}
.y1dc{bottom:154.666350px;}
.y27{bottom:155.137800px;}
.y221{bottom:155.683350px;}
.y26e{bottom:156.560850px;}
.yf6{bottom:159.679050px;}
.yc0{bottom:161.731350px;}
.y220{bottom:168.433350px;}
.y1db{bottom:169.186350px;}
.y26d{bottom:169.442100px;}
.yec{bottom:171.604050px;}
.y6d{bottom:171.604650px;}
.y173{bottom:171.605550px;}
.y5a{bottom:171.610800px;}
.y1a2{bottom:171.614100px;}
.ye1{bottom:171.616350px;}
.y14f{bottom:171.633750px;}
.y26{bottom:175.537800px;}
.yf5{bottom:179.164050px;}
.ybf{bottom:179.731350px;}
.y26c{bottom:182.323350px;}
.y1da{bottom:183.706350px;}
.y25{bottom:185.137800px;}
.y123{bottom:189.571350px;}
.yeb{bottom:189.604050px;}
.y6c{bottom:189.604650px;}
.y181{bottom:189.605550px;}
.y59{bottom:189.610800px;}
.y1a1{bottom:189.614100px;}
.ye0{bottom:189.616350px;}
.y14e{bottom:189.633750px;}
.y26b{bottom:195.204600px;}
.ybe{bottom:197.731350px;}
.y1d9{bottom:198.226350px;}
.yf4{bottom:198.649050px;}
.y24{bottom:200.137800px;}
.y172{bottom:203.105550px;}
.y122{bottom:207.571350px;}
.yea{bottom:207.604050px;}
.y6b{bottom:207.604650px;}
.y180{bottom:207.605550px;}
.y58{bottom:207.610800px;}
.ydf{bottom:207.616350px;}
.y14d{bottom:207.633750px;}
.y26a{bottom:208.085850px;}
.y1d8{bottom:212.746350px;}
.ybd{bottom:215.731350px;}
.yf3{bottom:218.134050px;}
.y23{bottom:220.537800px;}
.y269{bottom:220.967100px;}
.y171{bottom:221.105550px;}
.y1a0{bottom:221.114100px;}
.y21f{bottom:225.433350px;}
.y121{bottom:225.571350px;}
.y6a{bottom:225.604650px;}
.y17f{bottom:225.605550px;}
.yde{bottom:225.616350px;}
.y14c{bottom:225.633750px;}
.y1d7{bottom:227.266350px;}
.y22{bottom:230.137800px;}
.ybc{bottom:233.731350px;}
.y268{bottom:233.848350px;}
.yf2{bottom:237.619050px;}
.ye9{bottom:239.104050px;}
.y170{bottom:239.105550px;}
.y19f{bottom:239.114100px;}
.y21e{bottom:239.833350px;}
.y1d6{bottom:241.786350px;}
.y120{bottom:243.571350px;}
.y69{bottom:243.604650px;}
.y17e{bottom:243.605550px;}
.ydd{bottom:243.616350px;}
.y267{bottom:246.729600px;}
.y21{bottom:250.537800px;}
.ybb{bottom:251.731350px;}
.y21d{bottom:254.233350px;}
.y1d5{bottom:256.306350px;}
.ye8{bottom:257.104050px;}
.y16f{bottom:257.105550px;}
.y19e{bottom:257.114100px;}
.y57{bottom:258.448800px;}
.y266{bottom:259.610850px;}
.y20{bottom:260.137800px;}
.y11f{bottom:261.571350px;}
.y68{bottom:261.604650px;}
.y17d{bottom:261.605550px;}
.ydc{bottom:261.616350px;}
.y21c{bottom:268.633350px;}
.yba{bottom:269.731350px;}
.y265{bottom:272.492100px;}
.y56{bottom:274.945800px;}
.y16e{bottom:275.105550px;}
.y19d{bottom:275.114100px;}
.y11e{bottom:279.571350px;}
.y67{bottom:279.604650px;}
.y17c{bottom:279.605550px;}
.ydb{bottom:279.616350px;}
.y1f{bottom:280.537800px;}
.y14b{bottom:282.993750px;}
.y21b{bottom:283.033350px;}
.y264{bottom:285.373350px;}
.yb9{bottom:287.731350px;}
.y1d4{bottom:288.826350px;}
.y1e{bottom:290.137800px;}
.y55{bottom:291.442800px;}
.y16d{bottom:293.105550px;}
.y19c{bottom:293.114100px;}
.y21a{bottom:297.433350px;}
.y11d{bottom:297.571350px;}
.y66{bottom:297.604650px;}
.y17b{bottom:297.605550px;}
.yda{bottom:297.616350px;}
.y100{bottom:298.099050px;}
.y263{bottom:298.254600px;}
.y14a{bottom:300.993750px;}
.y1d{bottom:305.137800px;}
.yb8{bottom:305.731350px;}
.y1d3{bottom:306.946350px;}
.y54{bottom:307.939800px;}
.y16c{bottom:311.105550px;}
.y19b{bottom:311.114100px;}
.y262{bottom:311.135850px;}
.yff{bottom:314.299050px;}
.y11c{bottom:315.571350px;}
.y65{bottom:315.604650px;}
.y17a{bottom:315.605550px;}
.yd9{bottom:315.616350px;}
.y219{bottom:317.833350px;}
.y149{bottom:318.993750px;}
.y1c{bottom:320.137800px;}
.yb7{bottom:323.731350px;}
.y261{bottom:324.017100px;}
.y53{bottom:324.436800px;}
.y1d2{bottom:325.066350px;}
.y16b{bottom:329.105550px;}
.y19a{bottom:329.114100px;}
.yfe{bottom:330.499050px;}
.y218{bottom:332.233350px;}
.y11b{bottom:333.571350px;}
.y64{bottom:333.604650px;}
.y179{bottom:333.605550px;}
.yd8{bottom:333.616350px;}
.y260{bottom:336.898350px;}
.y148{bottom:336.993750px;}
.y1b{bottom:340.537800px;}
.y52{bottom:340.933800px;}
.yb6{bottom:341.731350px;}
.y1d1{bottom:343.186350px;}
.y217{bottom:346.633350px;}
.yfd{bottom:346.699050px;}
.y16a{bottom:347.105550px;}
.y199{bottom:347.114100px;}
.y25f{bottom:349.779600px;}
.y11a{bottom:351.571350px;}
.y63{bottom:351.604650px;}
.yd7{bottom:351.616350px;}
.y31{bottom:354.205650px;}
.y147{bottom:354.993750px;}
.y51{bottom:357.430800px;}
.yb5{bottom:359.731350px;}
.y216{bottom:361.033350px;}
.y1d0{bottom:361.306350px;}
.y25e{bottom:362.660850px;}
.yfc{bottom:362.899050px;}
.y169{bottom:365.105550px;}
.y198{bottom:365.114100px;}
.y30{bottom:368.605650px;}
.y119{bottom:369.571350px;}
.y62{bottom:369.604650px;}
.yd6{bottom:369.616350px;}
.y146{bottom:372.993750px;}
.y50{bottom:373.927800px;}
.y215{bottom:375.433350px;}
.y25d{bottom:375.542100px;}
.yb4{bottom:377.731350px;}
.yfb{bottom:379.099050px;}
.y1cf{bottom:379.426350px;}
.y2f{bottom:383.005650px;}
.y168{bottom:383.105550px;}
.y197{bottom:383.114100px;}
.y118{bottom:387.571350px;}
.y61{bottom:387.610800px;}
.yd5{bottom:387.616350px;}
.y25c{bottom:388.423350px;}
.y214{bottom:389.833350px;}
.y4f{bottom:390.424800px;}
.y145{bottom:390.993750px;}
.yb3{bottom:395.731350px;}
.y2e{bottom:397.405650px;}
.y1ce{bottom:397.546350px;}
.y167{bottom:401.105550px;}
.y196{bottom:401.114100px;}
.y25b{bottom:401.304600px;}
.y117{bottom:405.571350px;}
.y60{bottom:405.610800px;}
.yd4{bottom:405.616350px;}
.y4e{bottom:406.921800px;}
.y144{bottom:408.993750px;}
.y213{bottom:410.233350px;}
.y2d{bottom:411.805650px;}
.yb2{bottom:413.731350px;}
.y25a{bottom:414.185850px;}
.y1cd{bottom:415.666350px;}
.y166{bottom:419.105550px;}
.y195{bottom:419.114100px;}
.y4d{bottom:423.418800px;}
.y116{bottom:423.571350px;}
.yd3{bottom:423.616350px;}
.y2c{bottom:426.205650px;}
.y143{bottom:426.993750px;}
.y259{bottom:427.067100px;}
.y212{bottom:430.633350px;}
.yb1{bottom:431.731350px;}
.y1cc{bottom:433.786350px;}
.y165{bottom:437.105550px;}
.y194{bottom:437.114100px;}
.y4c{bottom:439.915800px;}
.y258{bottom:439.948350px;}
.y115{bottom:441.571350px;}
.yd2{bottom:441.616350px;}
.y142{bottom:444.993750px;}
.y211{bottom:445.033350px;}
.yb0{bottom:449.731350px;}
.y1cb{bottom:451.906350px;}
.y257{bottom:452.829600px;}
.y164{bottom:455.105550px;}
.y193{bottom:455.114100px;}
.y4b{bottom:456.412800px;}
.y210{bottom:459.433350px;}
.y114{bottom:459.571350px;}
.yd1{bottom:459.616350px;}
.y141{bottom:462.993750px;}
.y8a{bottom:465.115350px;}
.y256{bottom:465.710850px;}
.yaf{bottom:467.731350px;}
.y1ca{bottom:470.026350px;}
.y4a{bottom:472.909800px;}
.y163{bottom:473.105550px;}
.y192{bottom:473.114100px;}
.y113{bottom:477.571350px;}
.yd0{bottom:477.616350px;}
.y255{bottom:478.592100px;}
.y20f{bottom:479.833350px;}
.y140{bottom:480.993750px;}
.y89{bottom:481.612350px;}
.yae{bottom:485.731350px;}
.y1c9{bottom:488.146350px;}
.y49{bottom:489.406800px;}
.y162{bottom:491.105550px;}
.y191{bottom:491.114100px;}
.y254{bottom:491.473350px;}
.y112{bottom:495.571350px;}
.ycf{bottom:495.616350px;}
.y88{bottom:498.109350px;}
.y13f{bottom:498.993750px;}
.y20e{bottom:500.833350px;}
.yad{bottom:503.731350px;}
.y253{bottom:504.354600px;}
.y48{bottom:505.903800px;}
.y1c8{bottom:506.266350px;}
.y161{bottom:509.105550px;}
.y190{bottom:509.114100px;}
.y111{bottom:513.571350px;}
.yce{bottom:513.616350px;}
.y87{bottom:514.618350px;}
.y20d{bottom:515.233350px;}
.y13e{bottom:516.993750px;}
.y252{bottom:517.235850px;}
.yac{bottom:521.731350px;}
.y47{bottom:522.400800px;}
.y1c7{bottom:524.386350px;}
.y160{bottom:527.105550px;}
.y18f{bottom:527.114100px;}
.y20c{bottom:529.633350px;}
.y251{bottom:530.117100px;}
.y86{bottom:531.115350px;}
.y110{bottom:531.571350px;}
.ycd{bottom:531.616350px;}
.y13d{bottom:534.993750px;}
.y46{bottom:538.897800px;}
.yab{bottom:539.731350px;}
.y1c6{bottom:542.506350px;}
.y250{bottom:542.998350px;}
.y15f{bottom:545.105550px;}
.y18e{bottom:545.114100px;}
.y85{bottom:547.612350px;}
.y10f{bottom:549.571350px;}
.ycc{bottom:549.616350px;}
.y20b{bottom:550.033350px;}
.y13c{bottom:552.993750px;}
.y45{bottom:555.394800px;}
.y24f{bottom:555.879600px;}
.yaa{bottom:557.731350px;}
.y1c5{bottom:560.626350px;}
.y15e{bottom:563.105550px;}
.y18d{bottom:563.114100px;}
.y84{bottom:564.109350px;}
.y20a{bottom:564.433350px;}
.y10e{bottom:567.571350px;}
.ycb{bottom:567.616350px;}
.y24e{bottom:568.760850px;}
.y13b{bottom:570.993750px;}
.y44{bottom:571.891800px;}
.ya9{bottom:575.731350px;}
.y1c4{bottom:578.746350px;}
.y209{bottom:578.833350px;}
.y1a{bottom:579.934650px;}
.y83{bottom:580.621350px;}
.y15d{bottom:581.105550px;}
.y18c{bottom:581.114100px;}
.y24d{bottom:581.642100px;}
.y10d{bottom:585.571350px;}
.yca{bottom:585.616350px;}
.y43{bottom:588.388800px;}
.y13a{bottom:588.993750px;}
.y208{bottom:593.233350px;}
.y24c{bottom:594.523350px;}
.y19{bottom:594.934650px;}
.y1c3{bottom:596.866350px;}
.y82{bottom:597.118350px;}
.y15c{bottom:599.105550px;}
.y18b{bottom:599.114100px;}
.ya8{bottom:601.876350px;}
.y10c{bottom:603.571350px;}
.yc9{bottom:603.616350px;}
.y42{bottom:604.885800px;}
.y139{bottom:606.993750px;}
.y24b{bottom:607.404600px;}
.y207{bottom:607.633350px;}
.y18{bottom:609.934650px;}
.y81{bottom:613.615350px;}
.y1c2{bottom:614.986350px;}
.y15b{bottom:617.105550px;}
.y18a{bottom:617.114100px;}
.ya7{bottom:619.876350px;}
.y24a{bottom:620.285850px;}
.y41{bottom:621.382800px;}
.y10b{bottom:621.571350px;}
.yc8{bottom:621.616350px;}
.y206{bottom:622.033350px;}
.y80{bottom:630.112350px;}
.y1c1{bottom:633.106350px;}
.y249{bottom:633.167100px;}
.y15a{bottom:635.105550px;}
.y189{bottom:635.114100px;}
.y205{bottom:636.433350px;}
.ya6{bottom:637.876350px;}
.y40{bottom:637.879800px;}
.y17{bottom:638.434650px;}
.y10a{bottom:639.571350px;}
.yc7{bottom:639.616350px;}
.y138{bottom:641.283750px;}
.y248{bottom:646.048350px;}
.y7f{bottom:646.609350px;}
.y204{bottom:650.833350px;}
.y1c0{bottom:651.226350px;}
.y159{bottom:653.105550px;}
.y188{bottom:653.114100px;}
.y3f{bottom:654.376800px;}
.ya5{bottom:655.876350px;}
.y109{bottom:657.571350px;}
.y247{bottom:658.929600px;}
.y137{bottom:659.283750px;}
.y7e{bottom:663.121350px;}
.y203{bottom:665.233350px;}
.y16{bottom:666.934650px;}
.y1bf{bottom:669.346350px;}
.y3e{bottom:670.873800px;}
.y158{bottom:671.105550px;}
.y187{bottom:671.114100px;}
.y246{bottom:671.810850px;}
.ya4{bottom:673.876350px;}
.y108{bottom:675.571350px;}
.yc6{bottom:676.126350px;}
.y136{bottom:677.283750px;}
.y7d{bottom:679.618350px;}
.y202{bottom:679.633350px;}
.y15{bottom:681.934650px;}
.y245{bottom:684.692100px;}
.y3d{bottom:687.370800px;}
.y1be{bottom:687.466350px;}
.y157{bottom:689.105550px;}
.y186{bottom:689.114100px;}
.ya3{bottom:691.876350px;}
.y107{bottom:693.571350px;}
.y201{bottom:694.033350px;}
.yc5{bottom:694.126350px;}
.y135{bottom:695.283750px;}
.y7c{bottom:696.115350px;}
.y14{bottom:696.934650px;}
.y244{bottom:697.573350px;}
.y3c{bottom:703.867800px;}
.y1bd{bottom:705.586350px;}
.y156{bottom:707.105550px;}
.y185{bottom:707.114100px;}
.y200{bottom:708.433350px;}
.ya2{bottom:709.876350px;}
.y243{bottom:710.454600px;}
.y106{bottom:711.571350px;}
.y13{bottom:711.934650px;}
.y7b{bottom:712.612350px;}
.y134{bottom:713.283750px;}
.y3b{bottom:720.364800px;}
.y1ff{bottom:722.833350px;}
.y242{bottom:723.335850px;}
.y1bc{bottom:723.706350px;}
.y155{bottom:725.105550px;}
.y12{bottom:726.934650px;}
.ya1{bottom:727.876350px;}
.y7a{bottom:729.109350px;}
.y105{bottom:729.571350px;}
.y8b{bottom:730.181745px;}
.y133{bottom:731.283750px;}
.y241{bottom:736.217100px;}
.y3a{bottom:736.861800px;}
.y1fe{bottom:737.233350px;}
.y1bb{bottom:741.826350px;}
.y11{bottom:741.934650px;}
.y79{bottom:745.624350px;}
.ya0{bottom:745.876350px;}
.ye7{bottom:747.527400px;}
.y104{bottom:747.571350px;}
.y240{bottom:749.098350px;}
.y132{bottom:749.283750px;}
.y1fd{bottom:751.633350px;}
.y39{bottom:753.358800px;}
.y1e4{bottom:753.643950px;}
.y10{bottom:756.934650px;}
.y1ba{bottom:759.946350px;}
.y23f{bottom:761.979600px;}
.y78{bottom:762.121350px;}
.y9f{bottom:763.876350px;}
.y184{bottom:764.360400px;}
.y103{bottom:765.571350px;}
.y1fc{bottom:766.033350px;}
.y131{bottom:767.283750px;}
.y1e3{bottom:769.843950px;}
.y38{bottom:769.855800px;}
.y23e{bottom:774.860850px;}
.y1b9{bottom:778.066350px;}
.y77{bottom:778.618350px;}
.y1fb{bottom:780.433350px;}
.y183{bottom:780.560400px;}
.yf{bottom:780.934650px;}
.y9e{bottom:781.876350px;}
.y102{bottom:783.571350px;}
.y130{bottom:785.283750px;}
.y1e2{bottom:786.043950px;}
.y37{bottom:786.352800px;}
.y23d{bottom:787.742100px;}
.y76{bottom:795.115350px;}
.ye{bottom:795.934650px;}
.y1b8{bottom:796.186350px;}
.y182{bottom:796.760400px;}
.y23c{bottom:800.623350px;}
.y1fa{bottom:800.833350px;}
.y101{bottom:801.571350px;}
.y36{bottom:802.849800px;}
.y12f{bottom:803.283750px;}
.yd{bottom:810.934650px;}
.y75{bottom:811.612350px;}
.y23b{bottom:813.504600px;}
.y1b7{bottom:814.306350px;}
.y1f9{bottom:815.233350px;}
.y35{bottom:819.346800px;}
.y9d{bottom:819.571350px;}
.y12e{bottom:821.283750px;}
.yc{bottom:825.934650px;}
.y23a{bottom:826.385850px;}
.y74{bottom:828.109350px;}
.y1f8{bottom:829.633350px;}
.y1b6{bottom:832.426350px;}
.y34{bottom:835.843800px;}
.y9c{bottom:837.571350px;}
.y239{bottom:839.267100px;}
.y12d{bottom:839.283750px;}
.yb{bottom:840.934650px;}
.y1f7{bottom:844.033350px;}
.y1b5{bottom:850.546350px;}
.y238{bottom:852.148350px;}
.y33{bottom:852.340800px;}
.y9b{bottom:855.571350px;}
.ya{bottom:855.934650px;}
.y12c{bottom:857.283750px;}
.y1f6{bottom:858.433350px;}
.y73{bottom:859.840650px;}
.y237{bottom:865.029600px;}
.y1b4{bottom:868.666350px;}
.y32{bottom:868.840800px;}
.y9{bottom:870.934650px;}
.y1f5{bottom:872.833350px;}
.y9a{bottom:873.571350px;}
.y12b{bottom:875.283750px;}
.y236{bottom:877.910850px;}
.y1b3{bottom:886.786350px;}
.y1f4{bottom:887.233350px;}
.y235{bottom:890.792100px;}
.y99{bottom:891.571350px;}
.y12a{bottom:893.283750px;}
.y1f3{bottom:901.633350px;}
.y234{bottom:903.673350px;}
.y1b2{bottom:904.906350px;}
.y98{bottom:909.571350px;}
.y129{bottom:911.283750px;}
.y1f2{bottom:916.033350px;}
.y233{bottom:916.554600px;}
.y1b1{bottom:923.026350px;}
.y97{bottom:927.571350px;}
.y128{bottom:929.283750px;}
.y232{bottom:929.435850px;}
.y1f1{bottom:930.433350px;}
.y8{bottom:937.837650px;}
.y1b0{bottom:941.146350px;}
.y231{bottom:942.317100px;}
.y96{bottom:945.571350px;}
.y127{bottom:947.281350px;}
.y1f0{bottom:950.833350px;}
.y230{bottom:955.198350px;}
.y7{bottom:957.340650px;}
.y1af{bottom:959.266350px;}
.y95{bottom:963.571350px;}
.y1ef{bottom:965.233350px;}
.y126{bottom:965.281350px;}
.y22f{bottom:968.079600px;}
.y1ae{bottom:977.386350px;}
.y1ee{bottom:979.633350px;}
.y22e{bottom:980.960850px;}
.y94{bottom:981.571350px;}
.y22d{bottom:993.842100px;}
.y1ed{bottom:994.033350px;}
.y93{bottom:999.571350px;}
.y22c{bottom:1006.723350px;}
.y1ec{bottom:1008.433350px;}
.y6{bottom:1015.828650px;}
.y1ad{bottom:1016.969100px;}
.y92{bottom:1017.571350px;}
.y22b{bottom:1019.604600px;}
.y1eb{bottom:1022.833350px;}
.y22a{bottom:1032.485850px;}
.y1ac{bottom:1035.089100px;}
.y91{bottom:1035.571350px;}
.y1ea{bottom:1037.233350px;}
.y229{bottom:1045.367100px;}
.y1e9{bottom:1051.633350px;}
.y1ab{bottom:1053.209100px;}
.y90{bottom:1053.571350px;}
.y5{bottom:1054.834650px;}
.y228{bottom:1058.248350px;}
.y1e8{bottom:1066.033350px;}
.y227{bottom:1071.129600px;}
.y1aa{bottom:1071.329100px;}
.y8f{bottom:1071.571350px;}
.y1e7{bottom:1080.433350px;}
.y226{bottom:1084.010850px;}
.y1a9{bottom:1089.449100px;}
.y8e{bottom:1089.571350px;}
.y4{bottom:1093.840650px;}
.y1e6{bottom:1094.833350px;}
.y225{bottom:1096.892100px;}
.y1a8{bottom:1107.569100px;}
.y8d{bottom:1107.571350px;}
.y1e5{bottom:1109.233350px;}
.y224{bottom:1109.773350px;}
.y3{bottom:1140.946200px;}
.y8c{bottom:1140.946350px;}
.h8{height:25.109136px;}
.h14{height:32.895000px;}
.h9{height:34.944000px;}
.h3{height:37.872000px;}
.h11{height:39.474000px;}
.ha{height:42.606000px;}
.h2{height:43.680000px;}
.h4{height:43.860000px;}
.hb{height:44.040000px;}
.hf{height:47.340000px;}
.h10{height:56.143320px;}
.hd{height:56.173920px;}
.hc{height:56.198520px;}
.h13{height:56.207520px;}
.h12{height:56.208120px;}
.h6{height:61.687098px;}
.h7{height:61.699098px;}
.h5{height:96.228516px;}
.he{height:110.320312px;}
.h1{height:1190.250000px;}
.h0{height:1190.551500px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x5{left:60.750000px;}
.x3{left:66.450000px;}
.x6{left:70.399950px;}
.xe{left:74.256900px;}
.x12{left:84.667500px;}
.x4{left:220.379400px;}
.x2{left:265.559850px;}
.xf{left:460.326900px;}
.x10{left:473.826900px;}
.x13{left:484.245000px;}
.x8{left:537.517950px;}
.xa{left:546.518850px;}
.x9{left:551.010450px;}
.xb{left:558.395850px;}
.xc{left:564.518850px;}
.x7{left:715.315350px;}
.x11{left:723.708900px;}
.x1{left:824.963400px;}
.xd{left:853.499955px;}
@media print{
.v2{vertical-align:-19.200000pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:24.000000pt;}
.v1{vertical-align:26.400000pt;}
.v4{vertical-align:48.000000pt;}
.ls4{letter-spacing:-1.578667pt;}
.ls3{letter-spacing:0.000000pt;}
.ls8{letter-spacing:0.530400pt;}
.ls7{letter-spacing:0.800000pt;}
.ls0{letter-spacing:3.360000pt;}
.ls6{letter-spacing:8.320000pt;}
.ls1{letter-spacing:15.289067pt;}
.ls2{letter-spacing:21.770667pt;}
.ls5{letter-spacing:1430.825067pt;}
.ws6{word-spacing:-13.866667pt;}
.ws7{word-spacing:-13.344000pt;}
.ws3{word-spacing:-12.800000pt;}
.ws4{word-spacing:-11.520000pt;}
.ws10f{word-spacing:-11.120000pt;}
.ws0{word-spacing:-10.813088pt;}
.wsa{word-spacing:-10.240427pt;}
.ws2{word-spacing:-10.240000pt;}
.wse8{word-spacing:-9.724000pt;}
.ws5{word-spacing:-9.193600pt;}
.ws1{word-spacing:-6.789120pt;}
.ws6c{word-spacing:-5.280000pt;}
.wsb0{word-spacing:-4.053333pt;}
.wsb6{word-spacing:-3.680000pt;}
.ws59{word-spacing:-3.519467pt;}
.wsaf{word-spacing:-3.466667pt;}
.wsa0{word-spacing:-3.147200pt;}
.wsab{word-spacing:-2.986667pt;}
.wsf2{word-spacing:-2.932800pt;}
.ws5c{word-spacing:-2.880000pt;}
.wse5{word-spacing:-2.826133pt;}
.ws92{word-spacing:-2.773333pt;}
.ws67{word-spacing:-2.719467pt;}
.ws8c{word-spacing:-2.613333pt;}
.ws97{word-spacing:-2.560000pt;}
.ws55{word-spacing:-2.506667pt;}
.wsf4{word-spacing:-2.453867pt;}
.ws57{word-spacing:-2.347200pt;}
.ws21{word-spacing:-2.293333pt;}
.wsbf{word-spacing:-2.080000pt;}
.ws75{word-spacing:-1.973333pt;}
.wsae{word-spacing:-1.920000pt;}
.ws107{word-spacing:-1.813333pt;}
.wsfc{word-spacing:-1.760000pt;}
.wsf6{word-spacing:-1.653867pt;}
.ws101{word-spacing:-1.600000pt;}
.wsb{word-spacing:-1.578667pt;}
.wsb9{word-spacing:-1.547200pt;}
.wscd{word-spacing:-1.439467pt;}
.ws102{word-spacing:-1.386667pt;}
.wsd6{word-spacing:-1.332800pt;}
.wsdd{word-spacing:-1.308320pt;}
.ws103{word-spacing:-1.173333pt;}
.ws4a{word-spacing:-1.120000pt;}
.ws58{word-spacing:-1.013333pt;}
.wse1{word-spacing:-0.960533pt;}
.wsa7{word-spacing:-0.906667pt;}
.ws89{word-spacing:-0.853867pt;}
.ws2e{word-spacing:-0.816000pt;}
.ws61{word-spacing:-0.747200pt;}
.ws1d{word-spacing:-0.693333pt;}
.wsf5{word-spacing:-0.586667pt;}
.ws8f{word-spacing:-0.532800pt;}
.wsba{word-spacing:-0.480000pt;}
.wsc2{word-spacing:-0.426667pt;}
.ws10b{word-spacing:-0.373333pt;}
.ws110{word-spacing:-0.280000pt;}
.wsec{word-spacing:-0.266667pt;}
.ws30{word-spacing:-0.192000pt;}
.ws111{word-spacing:-0.120400pt;}
.ws86{word-spacing:-0.106667pt;}
.wscc{word-spacing:-0.053867pt;}
.ws8{word-spacing:0.000000pt;}
.ws65{word-spacing:0.053867pt;}
.ws8e{word-spacing:0.160533pt;}
.ws6b{word-spacing:0.213333pt;}
.wsee{word-spacing:0.320000pt;}
.ws78{word-spacing:0.426667pt;}
.ws33{word-spacing:0.432000pt;}
.ws2d{word-spacing:0.479520pt;}
.wsdc{word-spacing:0.480000pt;}
.wsa5{word-spacing:0.532800pt;}
.ws4e{word-spacing:0.586667pt;}
.wsc0{word-spacing:0.693333pt;}
.ws3e{word-spacing:0.747200pt;}
.ws42{word-spacing:0.853867pt;}
.wsc{word-spacing:0.906667pt;}
.ws2f{word-spacing:0.960000pt;}
.ws43{word-spacing:0.960533pt;}
.ws1c{word-spacing:1.013333pt;}
.ws49{word-spacing:1.120000pt;}
.ws40{word-spacing:1.173333pt;}
.ws95{word-spacing:1.280000pt;}
.wsd{word-spacing:1.332800pt;}
.wsa2{word-spacing:1.386667pt;}
.ws50{word-spacing:1.439467pt;}
.wsc4{word-spacing:1.493333pt;}
.ws9{word-spacing:1.578667pt;}
.ws5f{word-spacing:1.600000pt;}
.ws14{word-spacing:1.706667pt;}
.wsa3{word-spacing:1.760000pt;}
.ws3f{word-spacing:1.813333pt;}
.ws4d{word-spacing:1.866667pt;}
.ws94{word-spacing:1.920000pt;}
.ws20{word-spacing:2.050880pt;}
.wsdf{word-spacing:2.132800pt;}
.wsf9{word-spacing:2.186667pt;}
.ws29{word-spacing:2.208480pt;}
.ws1b{word-spacing:2.227680pt;}
.ws7d{word-spacing:2.293333pt;}
.ws3d{word-spacing:2.453867pt;}
.wseb{word-spacing:2.613333pt;}
.wsf1{word-spacing:2.652000pt;}
.ws5a{word-spacing:2.666667pt;}
.wsa1{word-spacing:2.826133pt;}
.ws5e{word-spacing:2.932800pt;}
.ws10a{word-spacing:2.986667pt;}
.ws1f{word-spacing:3.093333pt;}
.ws6f{word-spacing:3.147200pt;}
.ws26{word-spacing:3.167520pt;}
.ws5b{word-spacing:3.253333pt;}
.ws1a{word-spacing:3.360000pt;}
.ws41{word-spacing:3.413333pt;}
.ws98{word-spacing:3.519467pt;}
.wsfe{word-spacing:3.573333pt;}
.ws31{word-spacing:3.648000pt;}
.wsbc{word-spacing:3.680000pt;}
.ws9e{word-spacing:3.733867pt;}
.ws68{word-spacing:3.840533pt;}
.wsf7{word-spacing:3.893333pt;}
.wsd3{word-spacing:3.947200pt;}
.ws36{word-spacing:3.983520pt;}
.ws82{word-spacing:4.000000pt;}
.wsc5{word-spacing:4.053333pt;}
.ws8b{word-spacing:4.106667pt;}
.ws44{word-spacing:4.212800pt;}
.ws19{word-spacing:4.319467pt;}
.ws63{word-spacing:4.373333pt;}
.wsef{word-spacing:4.426133pt;}
.ws4b{word-spacing:4.480000pt;}
.wsc8{word-spacing:4.586667pt;}
.ws3c{word-spacing:4.640533pt;}
.ws37{word-spacing:4.800000pt;}
.ws66{word-spacing:4.853333pt;}
.ws69{word-spacing:5.012800pt;}
.ws99{word-spacing:5.066667pt;}
.ws35{word-spacing:5.088000pt;}
.ws10d{word-spacing:5.119467pt;}
.ws106{word-spacing:5.227200pt;}
.ws96{word-spacing:5.280000pt;}
.ws108{word-spacing:5.333867pt;}
.ws83{word-spacing:5.440533pt;}
.ws6d{word-spacing:5.493333pt;}
.ws2a{word-spacing:5.520480pt;}
.ws53{word-spacing:5.653333pt;}
.wsed{word-spacing:5.760000pt;}
.ws34{word-spacing:5.808000pt;}
.wsb5{word-spacing:5.812800pt;}
.wsb4{word-spacing:5.866667pt;}
.wsc3{word-spacing:5.919467pt;}
.ws3a{word-spacing:6.027200pt;}
.ws6e{word-spacing:6.240000pt;}
.ws9b{word-spacing:6.346667pt;}
.ws3b{word-spacing:6.453333pt;}
.ws7a{word-spacing:6.560000pt;}
.wsb7{word-spacing:6.612800pt;}
.ws70{word-spacing:6.827200pt;}
.ws32{word-spacing:6.864480pt;}
.ws5d{word-spacing:6.880000pt;}
.ws4f{word-spacing:6.933333pt;}
.wsfa{word-spacing:6.986667pt;}
.ws71{word-spacing:7.040000pt;}
.ws54{word-spacing:7.093333pt;}
.ws6a{word-spacing:7.146667pt;}
.ws81{word-spacing:7.253333pt;}
.wsfd{word-spacing:7.306133pt;}
.wsc6{word-spacing:7.360000pt;}
.wse9{word-spacing:7.413867pt;}
.ws4c{word-spacing:7.520533pt;}
.ws2c{word-spacing:7.632000pt;}
.ws28{word-spacing:7.680000pt;}
.ws64{word-spacing:7.733333pt;}
.wse2{word-spacing:7.786667pt;}
.wsdb{word-spacing:7.840000pt;}
.ws9f{word-spacing:7.892800pt;}
.wsbb{word-spacing:7.999467pt;}
.ws7f{word-spacing:8.106133pt;}
.wsfb{word-spacing:8.160000pt;}
.ws85{word-spacing:8.213867pt;}
.ws79{word-spacing:8.320533pt;}
.wsa6{word-spacing:8.373333pt;}
.wsb8{word-spacing:8.426667pt;}
.ws7e{word-spacing:8.480000pt;}
.ws45{word-spacing:8.586667pt;}
.ws47{word-spacing:8.640000pt;}
.ws13{word-spacing:8.746667pt;}
.ws2b{word-spacing:8.832480pt;}
.ws60{word-spacing:8.853333pt;}
.wsca{word-spacing:8.907200pt;}
.ws56{word-spacing:9.120533pt;}
.wsd2{word-spacing:9.226667pt;}
.wse6{word-spacing:9.386133pt;}
.ws11{word-spacing:9.440000pt;}
.ws72{word-spacing:9.492800pt;}
.ws1e{word-spacing:9.653333pt;}
.ws39{word-spacing:9.707200pt;}
.wsf0{word-spacing:9.813867pt;}
.wsd5{word-spacing:10.026667pt;}
.ws77{word-spacing:10.080000pt;}
.wsb3{word-spacing:10.133333pt;}
.wsc7{word-spacing:10.186133pt;}
.wse0{word-spacing:10.346667pt;}
.wsda{word-spacing:10.453333pt;}
.wsc9{word-spacing:10.560000pt;}
.ws9c{word-spacing:10.720000pt;}
.wsa9{word-spacing:10.773333pt;}
.wsd4{word-spacing:10.879467pt;}
.wsf3{word-spacing:10.986133pt;}
.wsc1{word-spacing:11.040000pt;}
.wsff{word-spacing:11.146667pt;}
.ws25{word-spacing:11.360000pt;}
.ws52{word-spacing:11.466667pt;}
.wsbd{word-spacing:11.626667pt;}
.ws91{word-spacing:11.679467pt;}
.wsd8{word-spacing:11.786133pt;}
.wsce{word-spacing:11.946667pt;}
.ws8d{word-spacing:12.000533pt;}
.ws80{word-spacing:12.053333pt;}
.ws7c{word-spacing:12.107200pt;}
.ws84{word-spacing:12.213333pt;}
.wsaa{word-spacing:12.266667pt;}
.wsa4{word-spacing:12.320000pt;}
.wsb1{word-spacing:12.372800pt;}
.ws100{word-spacing:12.426667pt;}
.ws10{word-spacing:12.853333pt;}
.wscf{word-spacing:13.066667pt;}
.ws9a{word-spacing:13.120000pt;}
.ws90{word-spacing:13.226667pt;}
.ws10e{word-spacing:13.279467pt;}
.wsd9{word-spacing:13.387200pt;}
.wsd7{word-spacing:13.440000pt;}
.ws46{word-spacing:13.760000pt;}
.ws62{word-spacing:13.813333pt;}
.ws105{word-spacing:13.866133pt;}
.ws76{word-spacing:13.972800pt;}
.ws7b{word-spacing:14.559467pt;}
.ws93{word-spacing:14.613333pt;}
.wsad{word-spacing:14.720000pt;}
.wsd1{word-spacing:15.040000pt;}
.ws27{word-spacing:15.120000pt;}
.wsf8{word-spacing:15.146667pt;}
.ws22{word-spacing:15.253333pt;}
.ws9d{word-spacing:15.359467pt;}
.ws73{word-spacing:15.466133pt;}
.ws51{word-spacing:15.733333pt;}
.ws12{word-spacing:15.787200pt;}
.ws38{word-spacing:15.946667pt;}
.ws17{word-spacing:16.052800pt;}
.wsf{word-spacing:16.159467pt;}
.ws10c{word-spacing:16.266133pt;}
.wse4{word-spacing:16.320000pt;}
.ws88{word-spacing:16.426667pt;}
.wse{word-spacing:17.120000pt;}
.ws15{word-spacing:17.546133pt;}
.wsd0{word-spacing:18.186667pt;}
.wsde{word-spacing:18.986667pt;}
.ws104{word-spacing:19.093333pt;}
.wse3{word-spacing:19.306667pt;}
.ws109{word-spacing:19.467200pt;}
.wsa8{word-spacing:19.839467pt;}
.ws8a{word-spacing:20.106667pt;}
.ws87{word-spacing:20.532800pt;}
.wsb2{word-spacing:20.906667pt;}
.ws48{word-spacing:22.506667pt;}
.wse7{word-spacing:23.573333pt;}
.ws16{word-spacing:24.586667pt;}
.wsac{word-spacing:25.012800pt;}
.ws74{word-spacing:25.227200pt;}
.wsea{word-spacing:25.973333pt;}
.wsbe{word-spacing:27.627200pt;}
.ws18{word-spacing:29.013867pt;}
.wscb{word-spacing:32.640000pt;}
.ws24{word-spacing:34.720000pt;}
.ws23{word-spacing:48.586667pt;}
._e{margin-left:-2595.981120pt;}
._d{margin-left:-1827.406560pt;}
._b{margin-left:-52.480000pt;}
._3{margin-left:-42.640000pt;}
._17{margin-left:-33.120000pt;}
._18{margin-left:-18.560000pt;}
._13{margin-left:-15.666667pt;}
._12{margin-left:-14.136533pt;}
._15{margin-left:-12.750933pt;}
._5{margin-left:-10.240000pt;}
._10{margin-left:-8.373333pt;}
._16{margin-left:-7.344000pt;}
._11{margin-left:-6.452267pt;}
._9{margin-left:-5.520000pt;}
._f{margin-left:-4.550400pt;}
._a{margin-left:-3.552000pt;}
._0{margin-left:-2.436267pt;}
._1{margin-left:-1.069909pt;}
._4{width:1.186133pt;}
._6{width:2.090667pt;}
._8{width:10.621909pt;}
._19{width:11.520000pt;}
._7{width:12.480000pt;}
._1a{width:18.320000pt;}
._2{width:29.190560pt;}
._14{width:33.792000pt;}
._c{width:172.198080pt;}
.fs6{font-size:28.288000pt;}
.fs5{font-size:34.666667pt;}
.fs8{font-size:35.360000pt;}
.fs4{font-size:38.896000pt;}
.fs9{font-size:40.000000pt;}
.fs1{font-size:42.666667pt;}
.fs7{font-size:48.000000pt;}
.fs0{font-size:53.333333pt;}
.fs3{font-size:58.666667pt;}
.fs2{font-size:117.333333pt;}
.y0{bottom:0.000000pt;}
.y2{bottom:36.785200pt;}
.y1{bottom:36.787867pt;}
.yc4{bottom:72.521200pt;}
.ye6{bottom:72.535600pt;}
.yf1{bottom:72.536933pt;}
.y72{bottom:72.537467pt;}
.y178{bottom:72.538267pt;}
.y5f{bottom:72.542933pt;}
.y1a7{bottom:72.545867pt;}
.y154{bottom:72.563333pt;}
.y2b{bottom:72.566933pt;}
.yfa{bottom:72.656933pt;}
.y1e1{bottom:72.947867pt;}
.y1e0{bottom:85.854533pt;}
.y2a{bottom:85.900267pt;}
.yc3{bottom:88.521200pt;}
.yf0{bottom:88.536933pt;}
.y71{bottom:88.537467pt;}
.y177{bottom:88.538267pt;}
.y5e{bottom:88.542933pt;}
.y1a6{bottom:88.545867pt;}
.ye5{bottom:88.547867pt;}
.y153{bottom:88.563333pt;}
.yf9{bottom:89.976933pt;}
.y1df{bottom:98.761200pt;}
.y29{bottom:99.233600pt;}
.yc2{bottom:104.521200pt;}
.yef{bottom:104.536933pt;}
.y70{bottom:104.537467pt;}
.y176{bottom:104.538267pt;}
.y5d{bottom:104.542933pt;}
.y1a5{bottom:104.545867pt;}
.ye4{bottom:104.547867pt;}
.y152{bottom:104.563333pt;}
.yf8{bottom:107.296933pt;}
.y1de{bottom:111.667867pt;}
.y223{bottom:115.725200pt;}
.y270{bottom:116.265200pt;}
.y125{bottom:120.521200pt;}
.yee{bottom:120.536933pt;}
.y6f{bottom:120.537467pt;}
.y175{bottom:120.538267pt;}
.y5c{bottom:120.542933pt;}
.y1a4{bottom:120.545867pt;}
.ye3{bottom:120.547867pt;}
.y151{bottom:120.563333pt;}
.y28{bottom:124.566933pt;}
.y1dd{bottom:124.574533pt;}
.yf7{bottom:124.616933pt;}
.y222{bottom:127.055200pt;}
.y26f{bottom:127.715200pt;}
.yc1{bottom:127.761200pt;}
.y124{bottom:136.521200pt;}
.yed{bottom:136.536933pt;}
.y6e{bottom:136.537467pt;}
.y174{bottom:136.538267pt;}
.y5b{bottom:136.542933pt;}
.y1a3{bottom:136.545867pt;}
.ye2{bottom:136.547867pt;}
.y150{bottom:136.563333pt;}
.y1dc{bottom:137.481200pt;}
.y27{bottom:137.900267pt;}
.y221{bottom:138.385200pt;}
.y26e{bottom:139.165200pt;}
.yf6{bottom:141.936933pt;}
.yc0{bottom:143.761200pt;}
.y220{bottom:149.718533pt;}
.y1db{bottom:150.387867pt;}
.y26d{bottom:150.615200pt;}
.yec{bottom:152.536933pt;}
.y6d{bottom:152.537467pt;}
.y173{bottom:152.538267pt;}
.y5a{bottom:152.542933pt;}
.y1a2{bottom:152.545867pt;}
.ye1{bottom:152.547867pt;}
.y14f{bottom:152.563333pt;}
.y26{bottom:156.033600pt;}
.yf5{bottom:159.256933pt;}
.ybf{bottom:159.761200pt;}
.y26c{bottom:162.065200pt;}
.y1da{bottom:163.294533pt;}
.y25{bottom:164.566933pt;}
.y123{bottom:168.507867pt;}
.yeb{bottom:168.536933pt;}
.y6c{bottom:168.537467pt;}
.y181{bottom:168.538267pt;}
.y59{bottom:168.542933pt;}
.y1a1{bottom:168.545867pt;}
.ye0{bottom:168.547867pt;}
.y14e{bottom:168.563333pt;}
.y26b{bottom:173.515200pt;}
.ybe{bottom:175.761200pt;}
.y1d9{bottom:176.201200pt;}
.yf4{bottom:176.576933pt;}
.y24{bottom:177.900267pt;}
.y172{bottom:180.538267pt;}
.y122{bottom:184.507867pt;}
.yea{bottom:184.536933pt;}
.y6b{bottom:184.537467pt;}
.y180{bottom:184.538267pt;}
.y58{bottom:184.542933pt;}
.ydf{bottom:184.547867pt;}
.y14d{bottom:184.563333pt;}
.y26a{bottom:184.965200pt;}
.y1d8{bottom:189.107867pt;}
.ybd{bottom:191.761200pt;}
.yf3{bottom:193.896933pt;}
.y23{bottom:196.033600pt;}
.y269{bottom:196.415200pt;}
.y171{bottom:196.538267pt;}
.y1a0{bottom:196.545867pt;}
.y21f{bottom:200.385200pt;}
.y121{bottom:200.507867pt;}
.y6a{bottom:200.537467pt;}
.y17f{bottom:200.538267pt;}
.yde{bottom:200.547867pt;}
.y14c{bottom:200.563333pt;}
.y1d7{bottom:202.014533pt;}
.y22{bottom:204.566933pt;}
.ybc{bottom:207.761200pt;}
.y268{bottom:207.865200pt;}
.yf2{bottom:211.216933pt;}
.ye9{bottom:212.536933pt;}
.y170{bottom:212.538267pt;}
.y19f{bottom:212.545867pt;}
.y21e{bottom:213.185200pt;}
.y1d6{bottom:214.921200pt;}
.y120{bottom:216.507867pt;}
.y69{bottom:216.537467pt;}
.y17e{bottom:216.538267pt;}
.ydd{bottom:216.547867pt;}
.y267{bottom:219.315200pt;}
.y21{bottom:222.700267pt;}
.ybb{bottom:223.761200pt;}
.y21d{bottom:225.985200pt;}
.y1d5{bottom:227.827867pt;}
.ye8{bottom:228.536933pt;}
.y16f{bottom:228.538267pt;}
.y19e{bottom:228.545867pt;}
.y57{bottom:229.732267pt;}
.y266{bottom:230.765200pt;}
.y20{bottom:231.233600pt;}
.y11f{bottom:232.507867pt;}
.y68{bottom:232.537467pt;}
.y17d{bottom:232.538267pt;}
.ydc{bottom:232.547867pt;}
.y21c{bottom:238.785200pt;}
.yba{bottom:239.761200pt;}
.y265{bottom:242.215200pt;}
.y56{bottom:244.396267pt;}
.y16e{bottom:244.538267pt;}
.y19d{bottom:244.545867pt;}
.y11e{bottom:248.507867pt;}
.y67{bottom:248.537467pt;}
.y17c{bottom:248.538267pt;}
.ydb{bottom:248.547867pt;}
.y1f{bottom:249.366933pt;}
.y14b{bottom:251.550000pt;}
.y21b{bottom:251.585200pt;}
.y264{bottom:253.665200pt;}
.yb9{bottom:255.761200pt;}
.y1d4{bottom:256.734533pt;}
.y1e{bottom:257.900267pt;}
.y55{bottom:259.060267pt;}
.y16d{bottom:260.538267pt;}
.y19c{bottom:260.545867pt;}
.y21a{bottom:264.385200pt;}
.y11d{bottom:264.507867pt;}
.y66{bottom:264.537467pt;}
.y17b{bottom:264.538267pt;}
.yda{bottom:264.547867pt;}
.y100{bottom:264.976933pt;}
.y263{bottom:265.115200pt;}
.y14a{bottom:267.550000pt;}
.y1d{bottom:271.233600pt;}
.yb8{bottom:271.761200pt;}
.y1d3{bottom:272.841200pt;}
.y54{bottom:273.724267pt;}
.y16c{bottom:276.538267pt;}
.y19b{bottom:276.545867pt;}
.y262{bottom:276.565200pt;}
.yff{bottom:279.376933pt;}
.y11c{bottom:280.507867pt;}
.y65{bottom:280.537467pt;}
.y17a{bottom:280.538267pt;}
.yd9{bottom:280.547867pt;}
.y219{bottom:282.518533pt;}
.y149{bottom:283.550000pt;}
.y1c{bottom:284.566933pt;}
.yb7{bottom:287.761200pt;}
.y261{bottom:288.015200pt;}
.y53{bottom:288.388267pt;}
.y1d2{bottom:288.947867pt;}
.y16b{bottom:292.538267pt;}
.y19a{bottom:292.545867pt;}
.yfe{bottom:293.776933pt;}
.y218{bottom:295.318533pt;}
.y11b{bottom:296.507867pt;}
.y64{bottom:296.537467pt;}
.y179{bottom:296.538267pt;}
.yd8{bottom:296.547867pt;}
.y260{bottom:299.465200pt;}
.y148{bottom:299.550000pt;}
.y1b{bottom:302.700267pt;}
.y52{bottom:303.052267pt;}
.yb6{bottom:303.761200pt;}
.y1d1{bottom:305.054533pt;}
.y217{bottom:308.118533pt;}
.yfd{bottom:308.176933pt;}
.y16a{bottom:308.538267pt;}
.y199{bottom:308.545867pt;}
.y25f{bottom:310.915200pt;}
.y11a{bottom:312.507867pt;}
.y63{bottom:312.537467pt;}
.yd7{bottom:312.547867pt;}
.y31{bottom:314.849467pt;}
.y147{bottom:315.550000pt;}
.y51{bottom:317.716267pt;}
.yb5{bottom:319.761200pt;}
.y216{bottom:320.918533pt;}
.y1d0{bottom:321.161200pt;}
.y25e{bottom:322.365200pt;}
.yfc{bottom:322.576933pt;}
.y169{bottom:324.538267pt;}
.y198{bottom:324.545867pt;}
.y30{bottom:327.649467pt;}
.y119{bottom:328.507867pt;}
.y62{bottom:328.537467pt;}
.yd6{bottom:328.547867pt;}
.y146{bottom:331.550000pt;}
.y50{bottom:332.380267pt;}
.y215{bottom:333.718533pt;}
.y25d{bottom:333.815200pt;}
.yb4{bottom:335.761200pt;}
.yfb{bottom:336.976933pt;}
.y1cf{bottom:337.267867pt;}
.y2f{bottom:340.449467pt;}
.y168{bottom:340.538267pt;}
.y197{bottom:340.545867pt;}
.y118{bottom:344.507867pt;}
.y61{bottom:344.542933pt;}
.yd5{bottom:344.547867pt;}
.y25c{bottom:345.265200pt;}
.y214{bottom:346.518533pt;}
.y4f{bottom:347.044267pt;}
.y145{bottom:347.550000pt;}
.yb3{bottom:351.761200pt;}
.y2e{bottom:353.249467pt;}
.y1ce{bottom:353.374533pt;}
.y167{bottom:356.538267pt;}
.y196{bottom:356.545867pt;}
.y25b{bottom:356.715200pt;}
.y117{bottom:360.507867pt;}
.y60{bottom:360.542933pt;}
.yd4{bottom:360.547867pt;}
.y4e{bottom:361.708267pt;}
.y144{bottom:363.550000pt;}
.y213{bottom:364.651867pt;}
.y2d{bottom:366.049467pt;}
.yb2{bottom:367.761200pt;}
.y25a{bottom:368.165200pt;}
.y1cd{bottom:369.481200pt;}
.y166{bottom:372.538267pt;}
.y195{bottom:372.545867pt;}
.y4d{bottom:376.372267pt;}
.y116{bottom:376.507867pt;}
.yd3{bottom:376.547867pt;}
.y2c{bottom:378.849467pt;}
.y143{bottom:379.550000pt;}
.y259{bottom:379.615200pt;}
.y212{bottom:382.785200pt;}
.yb1{bottom:383.761200pt;}
.y1cc{bottom:385.587867pt;}
.y165{bottom:388.538267pt;}
.y194{bottom:388.545867pt;}
.y4c{bottom:391.036267pt;}
.y258{bottom:391.065200pt;}
.y115{bottom:392.507867pt;}
.yd2{bottom:392.547867pt;}
.y142{bottom:395.550000pt;}
.y211{bottom:395.585200pt;}
.yb0{bottom:399.761200pt;}
.y1cb{bottom:401.694533pt;}
.y257{bottom:402.515200pt;}
.y164{bottom:404.538267pt;}
.y193{bottom:404.545867pt;}
.y4b{bottom:405.700267pt;}
.y210{bottom:408.385200pt;}
.y114{bottom:408.507867pt;}
.yd1{bottom:408.547867pt;}
.y141{bottom:411.550000pt;}
.y8a{bottom:413.435867pt;}
.y256{bottom:413.965200pt;}
.yaf{bottom:415.761200pt;}
.y1ca{bottom:417.801200pt;}
.y4a{bottom:420.364267pt;}
.y163{bottom:420.538267pt;}
.y192{bottom:420.545867pt;}
.y113{bottom:424.507867pt;}
.yd0{bottom:424.547867pt;}
.y255{bottom:425.415200pt;}
.y20f{bottom:426.518533pt;}
.y140{bottom:427.550000pt;}
.y89{bottom:428.099867pt;}
.yae{bottom:431.761200pt;}
.y1c9{bottom:433.907867pt;}
.y49{bottom:435.028267pt;}
.y162{bottom:436.538267pt;}
.y191{bottom:436.545867pt;}
.y254{bottom:436.865200pt;}
.y112{bottom:440.507867pt;}
.ycf{bottom:440.547867pt;}
.y88{bottom:442.763867pt;}
.y13f{bottom:443.550000pt;}
.y20e{bottom:445.185200pt;}
.yad{bottom:447.761200pt;}
.y253{bottom:448.315200pt;}
.y48{bottom:449.692267pt;}
.y1c8{bottom:450.014533pt;}
.y161{bottom:452.538267pt;}
.y190{bottom:452.545867pt;}
.y111{bottom:456.507867pt;}
.yce{bottom:456.547867pt;}
.y87{bottom:457.438533pt;}
.y20d{bottom:457.985200pt;}
.y13e{bottom:459.550000pt;}
.y252{bottom:459.765200pt;}
.yac{bottom:463.761200pt;}
.y47{bottom:464.356267pt;}
.y1c7{bottom:466.121200pt;}
.y160{bottom:468.538267pt;}
.y18f{bottom:468.545867pt;}
.y20c{bottom:470.785200pt;}
.y251{bottom:471.215200pt;}
.y86{bottom:472.102533pt;}
.y110{bottom:472.507867pt;}
.ycd{bottom:472.547867pt;}
.y13d{bottom:475.550000pt;}
.y46{bottom:479.020267pt;}
.yab{bottom:479.761200pt;}
.y1c6{bottom:482.227867pt;}
.y250{bottom:482.665200pt;}
.y15f{bottom:484.538267pt;}
.y18e{bottom:484.545867pt;}
.y85{bottom:486.766533pt;}
.y10f{bottom:488.507867pt;}
.ycc{bottom:488.547867pt;}
.y20b{bottom:488.918533pt;}
.y13c{bottom:491.550000pt;}
.y45{bottom:493.684267pt;}
.y24f{bottom:494.115200pt;}
.yaa{bottom:495.761200pt;}
.y1c5{bottom:498.334533pt;}
.y15e{bottom:500.538267pt;}
.y18d{bottom:500.545867pt;}
.y84{bottom:501.430533pt;}
.y20a{bottom:501.718533pt;}
.y10e{bottom:504.507867pt;}
.ycb{bottom:504.547867pt;}
.y24e{bottom:505.565200pt;}
.y13b{bottom:507.550000pt;}
.y44{bottom:508.348267pt;}
.ya9{bottom:511.761200pt;}
.y1c4{bottom:514.441200pt;}
.y209{bottom:514.518533pt;}
.y1a{bottom:515.497467pt;}
.y83{bottom:516.107867pt;}
.y15d{bottom:516.538267pt;}
.y18c{bottom:516.545867pt;}
.y24d{bottom:517.015200pt;}
.y10d{bottom:520.507867pt;}
.yca{bottom:520.547867pt;}
.y43{bottom:523.012267pt;}
.y13a{bottom:523.550000pt;}
.y208{bottom:527.318533pt;}
.y24c{bottom:528.465200pt;}
.y19{bottom:528.830800pt;}
.y1c3{bottom:530.547867pt;}
.y82{bottom:530.771867pt;}
.y15c{bottom:532.538267pt;}
.y18b{bottom:532.545867pt;}
.ya8{bottom:535.001200pt;}
.y10c{bottom:536.507867pt;}
.yc9{bottom:536.547867pt;}
.y42{bottom:537.676267pt;}
.y139{bottom:539.550000pt;}
.y24b{bottom:539.915200pt;}
.y207{bottom:540.118533pt;}
.y18{bottom:542.164133pt;}
.y81{bottom:545.435867pt;}
.y1c2{bottom:546.654533pt;}
.y15b{bottom:548.538267pt;}
.y18a{bottom:548.545867pt;}
.ya7{bottom:551.001200pt;}
.y24a{bottom:551.365200pt;}
.y41{bottom:552.340267pt;}
.y10b{bottom:552.507867pt;}
.yc8{bottom:552.547867pt;}
.y206{bottom:552.918533pt;}
.y80{bottom:560.099867pt;}
.y1c1{bottom:562.761200pt;}
.y249{bottom:562.815200pt;}
.y15a{bottom:564.538267pt;}
.y189{bottom:564.545867pt;}
.y205{bottom:565.718533pt;}
.ya6{bottom:567.001200pt;}
.y40{bottom:567.004267pt;}
.y17{bottom:567.497467pt;}
.y10a{bottom:568.507867pt;}
.yc7{bottom:568.547867pt;}
.y138{bottom:570.030000pt;}
.y248{bottom:574.265200pt;}
.y7f{bottom:574.763867pt;}
.y204{bottom:578.518533pt;}
.y1c0{bottom:578.867867pt;}
.y159{bottom:580.538267pt;}
.y188{bottom:580.545867pt;}
.y3f{bottom:581.668267pt;}
.ya5{bottom:583.001200pt;}
.y109{bottom:584.507867pt;}
.y247{bottom:585.715200pt;}
.y137{bottom:586.030000pt;}
.y7e{bottom:589.441200pt;}
.y203{bottom:591.318533pt;}
.y16{bottom:592.830800pt;}
.y1bf{bottom:594.974533pt;}
.y3e{bottom:596.332267pt;}
.y158{bottom:596.538267pt;}
.y187{bottom:596.545867pt;}
.y246{bottom:597.165200pt;}
.ya4{bottom:599.001200pt;}
.y108{bottom:600.507867pt;}
.yc6{bottom:601.001200pt;}
.y136{bottom:602.030000pt;}
.y7d{bottom:604.105200pt;}
.y202{bottom:604.118533pt;}
.y15{bottom:606.164133pt;}
.y245{bottom:608.615200pt;}
.y3d{bottom:610.996267pt;}
.y1be{bottom:611.081200pt;}
.y157{bottom:612.538267pt;}
.y186{bottom:612.545867pt;}
.ya3{bottom:615.001200pt;}
.y107{bottom:616.507867pt;}
.y201{bottom:616.918533pt;}
.yc5{bottom:617.001200pt;}
.y135{bottom:618.030000pt;}
.y7c{bottom:618.769200pt;}
.y14{bottom:619.497467pt;}
.y244{bottom:620.065200pt;}
.y3c{bottom:625.660267pt;}
.y1bd{bottom:627.187867pt;}
.y156{bottom:628.538267pt;}
.y185{bottom:628.545867pt;}
.y200{bottom:629.718533pt;}
.ya2{bottom:631.001200pt;}
.y243{bottom:631.515200pt;}
.y106{bottom:632.507867pt;}
.y13{bottom:632.830800pt;}
.y7b{bottom:633.433200pt;}
.y134{bottom:634.030000pt;}
.y3b{bottom:640.324267pt;}
.y1ff{bottom:642.518533pt;}
.y242{bottom:642.965200pt;}
.y1bc{bottom:643.294533pt;}
.y155{bottom:644.538267pt;}
.y12{bottom:646.164133pt;}
.ya1{bottom:647.001200pt;}
.y7a{bottom:648.097200pt;}
.y105{bottom:648.507867pt;}
.y8b{bottom:649.050440pt;}
.y133{bottom:650.030000pt;}
.y241{bottom:654.415200pt;}
.y3a{bottom:654.988267pt;}
.y1fe{bottom:655.318533pt;}
.y1bb{bottom:659.401200pt;}
.y11{bottom:659.497467pt;}
.y79{bottom:662.777200pt;}
.ya0{bottom:663.001200pt;}
.ye7{bottom:664.468800pt;}
.y104{bottom:664.507867pt;}
.y240{bottom:665.865200pt;}
.y132{bottom:666.030000pt;}
.y1fd{bottom:668.118533pt;}
.y39{bottom:669.652267pt;}
.y1e4{bottom:669.905733pt;}
.y10{bottom:672.830800pt;}
.y1ba{bottom:675.507867pt;}
.y23f{bottom:677.315200pt;}
.y78{bottom:677.441200pt;}
.y9f{bottom:679.001200pt;}
.y184{bottom:679.431467pt;}
.y103{bottom:680.507867pt;}
.y1fc{bottom:680.918533pt;}
.y131{bottom:682.030000pt;}
.y1e3{bottom:684.305733pt;}
.y38{bottom:684.316267pt;}
.y23e{bottom:688.765200pt;}
.y1b9{bottom:691.614533pt;}
.y77{bottom:692.105200pt;}
.y1fb{bottom:693.718533pt;}
.y183{bottom:693.831467pt;}
.yf{bottom:694.164133pt;}
.y9e{bottom:695.001200pt;}
.y102{bottom:696.507867pt;}
.y130{bottom:698.030000pt;}
.y1e2{bottom:698.705733pt;}
.y37{bottom:698.980267pt;}
.y23d{bottom:700.215200pt;}
.y76{bottom:706.769200pt;}
.ye{bottom:707.497467pt;}
.y1b8{bottom:707.721200pt;}
.y182{bottom:708.231467pt;}
.y23c{bottom:711.665200pt;}
.y1fa{bottom:711.851867pt;}
.y101{bottom:712.507867pt;}
.y36{bottom:713.644267pt;}
.y12f{bottom:714.030000pt;}
.yd{bottom:720.830800pt;}
.y75{bottom:721.433200pt;}
.y23b{bottom:723.115200pt;}
.y1b7{bottom:723.827867pt;}
.y1f9{bottom:724.651867pt;}
.y35{bottom:728.308267pt;}
.y9d{bottom:728.507867pt;}
.y12e{bottom:730.030000pt;}
.yc{bottom:734.164133pt;}
.y23a{bottom:734.565200pt;}
.y74{bottom:736.097200pt;}
.y1f8{bottom:737.451867pt;}
.y1b6{bottom:739.934533pt;}
.y34{bottom:742.972267pt;}
.y9c{bottom:744.507867pt;}
.y239{bottom:746.015200pt;}
.y12d{bottom:746.030000pt;}
.yb{bottom:747.497467pt;}
.y1f7{bottom:750.251867pt;}
.y1b5{bottom:756.041200pt;}
.y238{bottom:757.465200pt;}
.y33{bottom:757.636267pt;}
.y9b{bottom:760.507867pt;}
.ya{bottom:760.830800pt;}
.y12c{bottom:762.030000pt;}
.y1f6{bottom:763.051867pt;}
.y73{bottom:764.302800pt;}
.y237{bottom:768.915200pt;}
.y1b4{bottom:772.147867pt;}
.y32{bottom:772.302933pt;}
.y9{bottom:774.164133pt;}
.y1f5{bottom:775.851867pt;}
.y9a{bottom:776.507867pt;}
.y12b{bottom:778.030000pt;}
.y236{bottom:780.365200pt;}
.y1b3{bottom:788.254533pt;}
.y1f4{bottom:788.651867pt;}
.y235{bottom:791.815200pt;}
.y99{bottom:792.507867pt;}
.y12a{bottom:794.030000pt;}
.y1f3{bottom:801.451867pt;}
.y234{bottom:803.265200pt;}
.y1b2{bottom:804.361200pt;}
.y98{bottom:808.507867pt;}
.y129{bottom:810.030000pt;}
.y1f2{bottom:814.251867pt;}
.y233{bottom:814.715200pt;}
.y1b1{bottom:820.467867pt;}
.y97{bottom:824.507867pt;}
.y128{bottom:826.030000pt;}
.y232{bottom:826.165200pt;}
.y1f1{bottom:827.051867pt;}
.y8{bottom:833.633467pt;}
.y1b0{bottom:836.574533pt;}
.y231{bottom:837.615200pt;}
.y96{bottom:840.507867pt;}
.y127{bottom:842.027867pt;}
.y1f0{bottom:845.185200pt;}
.y230{bottom:849.065200pt;}
.y7{bottom:850.969467pt;}
.y1af{bottom:852.681200pt;}
.y95{bottom:856.507867pt;}
.y1ef{bottom:857.985200pt;}
.y126{bottom:858.027867pt;}
.y22f{bottom:860.515200pt;}
.y1ae{bottom:868.787867pt;}
.y1ee{bottom:870.785200pt;}
.y22e{bottom:871.965200pt;}
.y94{bottom:872.507867pt;}
.y22d{bottom:883.415200pt;}
.y1ed{bottom:883.585200pt;}
.y93{bottom:888.507867pt;}
.y22c{bottom:894.865200pt;}
.y1ec{bottom:896.385200pt;}
.y6{bottom:902.958800pt;}
.y1ad{bottom:903.972533pt;}
.y92{bottom:904.507867pt;}
.y22b{bottom:906.315200pt;}
.y1eb{bottom:909.185200pt;}
.y22a{bottom:917.765200pt;}
.y1ac{bottom:920.079200pt;}
.y91{bottom:920.507867pt;}
.y1ea{bottom:921.985200pt;}
.y229{bottom:929.215200pt;}
.y1e9{bottom:934.785200pt;}
.y1ab{bottom:936.185867pt;}
.y90{bottom:936.507867pt;}
.y5{bottom:937.630800pt;}
.y228{bottom:940.665200pt;}
.y1e8{bottom:947.585200pt;}
.y227{bottom:952.115200pt;}
.y1aa{bottom:952.292533pt;}
.y8f{bottom:952.507867pt;}
.y1e7{bottom:960.385200pt;}
.y226{bottom:963.565200pt;}
.y1a9{bottom:968.399200pt;}
.y8e{bottom:968.507867pt;}
.y4{bottom:972.302800pt;}
.y1e6{bottom:973.185200pt;}
.y225{bottom:975.015200pt;}
.y1a8{bottom:984.505867pt;}
.y8d{bottom:984.507867pt;}
.y1e5{bottom:985.985200pt;}
.y224{bottom:986.465200pt;}
.y3{bottom:1014.174400pt;}
.y8c{bottom:1014.174533pt;}
.h8{height:22.319232pt;}
.h14{height:29.240000pt;}
.h9{height:31.061333pt;}
.h3{height:33.664000pt;}
.h11{height:35.088000pt;}
.ha{height:37.872000pt;}
.h2{height:38.826667pt;}
.h4{height:38.986667pt;}
.hb{height:39.146667pt;}
.hf{height:42.080000pt;}
.h10{height:49.905173pt;}
.hd{height:49.932373pt;}
.hc{height:49.954240pt;}
.h13{height:49.962240pt;}
.h12{height:49.962773pt;}
.h6{height:54.832976pt;}
.h7{height:54.843643pt;}
.h5{height:85.536458pt;}
.he{height:98.062500pt;}
.h1{height:1058.000000pt;}
.h0{height:1058.268000pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x5{left:54.000000pt;}
.x3{left:59.066667pt;}
.x6{left:62.577733pt;}
.xe{left:66.006133pt;}
.x12{left:75.260000pt;}
.x4{left:195.892800pt;}
.x2{left:236.053200pt;}
.xf{left:409.179467pt;}
.x10{left:421.179467pt;}
.x13{left:430.440000pt;}
.x8{left:477.793733pt;}
.xa{left:485.794533pt;}
.x9{left:489.787067pt;}
.xb{left:496.351867pt;}
.xc{left:501.794533pt;}
.x7{left:635.835867pt;}
.x11{left:643.296800pt;}
.x1{left:733.300800pt;}
.xd{left:758.666627pt;}
}




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