
    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_ee86c70784195659197b7017.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_09e903b62a71818e10d9638e.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.062000;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_ccbbb982cf601cdc96b7d61e.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_7dc82ee6bfefdc61277bb324.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_fc817d214c1aea058fa539fa.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.913000;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_aeaec14ace88aedf740c1efe.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_5e4f2a1925934eab588513d0.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_ebd6e5f16d7a47393efbc0f8.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_5f9fac6916e5b8b67d496bcf.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.062000;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_ccbbb982cf601cdc96b7d61e.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_b9628cac2a6da0a30b383c84.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_5eee1975c4b50179b8cab35c.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.014000;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_60193f7946793598c5e901af.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_09e903b62a71818e10d9638e.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.062000;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_ccbbb982cf601cdc96b7d61e.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_7dc82ee6bfefdc61277bb324.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_5e4dcf5c4a8c293f471eaf2e.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.795000;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_53caa4008d82961d4f2f8f6b.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.679000;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_09e903b62a71818e10d9638e.woff2')format("woff");}.ff13{font-family:ff13;line-height:1.062000;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_ccbbb982cf601cdc96b7d61e.woff2')format("woff");}.ff14{font-family:ff14;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:ff15;src:url('chunks/assets/font_7dc82ee6bfefdc61277bb324.woff2')format("woff");}.ff15{font-family:ff15;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:ff16;src:url('chunks/assets/font_09e903b62a71818e10d9638e.woff2')format("woff");}.ff16{font-family:ff16;line-height:1.062000;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_ccbbb982cf601cdc96b7d61e.woff2')format("woff");}.ff17{font-family:ff17;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:ff18;src:url('chunks/assets/font_7dc82ee6bfefdc61277bb324.woff2')format("woff");}.ff18{font-family:ff18;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:ff19;src:url('chunks/assets/font_a627b77543a335120e3b8e93.woff2')format("woff");}.ff19{font-family:ff19;line-height:0.732527;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:ff1a;src:url('chunks/assets/font_ccb7effc8dc5cd3bff8df2f6.woff2')format("woff");}.ff1a{font-family:ff1a;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);}
.v3{vertical-align:-21.600000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:27.000000px;}
.v1{vertical-align:29.700000px;}
.ls4{letter-spacing:-1.776000px;}
.ls3{letter-spacing:0.000000px;}
.ls8{letter-spacing:0.001800px;}
.ls7{letter-spacing:0.900000px;}
.ls0{letter-spacing:3.780000px;}
.ls1{letter-spacing:17.200200px;}
.ls2{letter-spacing:24.492000px;}
.ls6{letter-spacing:45.492000px;}
.ls5{letter-spacing:1551.839400px;}
.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;}
}
.ws1{word-spacing:-20.460000px;}
.ws1c{word-spacing:-15.600000px;}
.ws113{word-spacing:-15.599400px;}
.ws4{word-spacing:-15.012000px;}
.ws2{word-spacing:-14.400000px;}
.ws3{word-spacing:-12.960000px;}
.ws11f{word-spacing:-12.510000px;}
.ws0{word-spacing:-12.164724px;}
.ws7{word-spacing:-11.520480px;}
.ws1d{word-spacing:-10.342800px;}
.wsc9{word-spacing:-8.262000px;}
.ws28{word-spacing:-8.099400px;}
.wsf5{word-spacing:-7.637760px;}
.wsd8{word-spacing:-6.840000px;}
.wsc3{word-spacing:-6.120600px;}
.wsd3{word-spacing:-5.820000px;}
.ws10d{word-spacing:-5.520000px;}
.wsf2{word-spacing:-4.859400px;}
.ws6b{word-spacing:-4.560000px;}
.ws10b{word-spacing:-4.200600px;}
.ws2a{word-spacing:-4.079400px;}
.wsf3{word-spacing:-3.840000px;}
.wsdc{word-spacing:-3.660000px;}
.ws74{word-spacing:-3.540600px;}
.ws3b{word-spacing:-3.420600px;}
.wsdd{word-spacing:-3.360000px;}
.ws9c{word-spacing:-3.240000px;}
.wsc5{word-spacing:-3.059400px;}
.ws81{word-spacing:-2.940000px;}
.wsa8{word-spacing:-2.880000px;}
.wscc{word-spacing:-2.820000px;}
.wsd7{word-spacing:-2.760600px;}
.wseb{word-spacing:-2.640600px;}
.wsee{word-spacing:-2.580000px;}
.ws61{word-spacing:-2.520600px;}
.ws102{word-spacing:-2.460000px;}
.ws3a{word-spacing:-2.267858px;}
.wsd2{word-spacing:-2.160000px;}
.ws19{word-spacing:-2.106000px;}
.ws11e{word-spacing:-2.100000px;}
.ws76{word-spacing:-1.980000px;}
.ws6a{word-spacing:-1.920000px;}
.ws70{word-spacing:-1.860600px;}
.ws112{word-spacing:-1.740600px;}
.ws8e{word-spacing:-1.680000px;}
.ws24{word-spacing:-1.619400px;}
.ws1b{word-spacing:-1.512000px;}
.ws59{word-spacing:-1.440000px;}
.ws73{word-spacing:-1.379400px;}
.wsf7{word-spacing:-1.260000px;}
.ws1a{word-spacing:-1.241460px;}
.wsd6{word-spacing:-1.200000px;}
.ws8a{word-spacing:-1.140000px;}
.wsda{word-spacing:-1.020000px;}
.wsc6{word-spacing:-0.960600px;}
.wsca{word-spacing:-0.900000px;}
.wsc1{word-spacing:-0.840600px;}
.ws4f{word-spacing:-0.780000px;}
.ws103{word-spacing:-0.719400px;}
.ws9d{word-spacing:-0.599400px;}
.ws10f{word-spacing:-0.540000px;}
.wsf0{word-spacing:-0.480000px;}
.ws37{word-spacing:-0.420000px;}
.wsae{word-spacing:-0.300000px;}
.wsab{word-spacing:-0.120000px;}
.ws120{word-spacing:-0.090000px;}
.wsd1{word-spacing:-0.060600px;}
.ws5{word-spacing:0.000000px;}
.ws6f{word-spacing:0.060600px;}
.ws39{word-spacing:0.180600px;}
.wse6{word-spacing:0.240000px;}
.ws114{word-spacing:0.300000px;}
.ws94{word-spacing:0.360000px;}
.ws46{word-spacing:0.420000px;}
.ws88{word-spacing:0.540000px;}
.wsac{word-spacing:0.660000px;}
.ws45{word-spacing:0.780000px;}
.wsc2{word-spacing:0.960600px;}
.ws63{word-spacing:1.020000px;}
.wsad{word-spacing:1.080600px;}
.ws8f{word-spacing:1.140000px;}
.ws51{word-spacing:1.200000px;}
.wscb{word-spacing:1.260000px;}
.ws6e{word-spacing:1.320000px;}
.wse0{word-spacing:1.379400px;}
.ws25{word-spacing:1.440000px;}
.wsd0{word-spacing:1.499400px;}
.ws2b{word-spacing:1.560000px;}
.ws36{word-spacing:1.619400px;}
.wsce{word-spacing:1.680000px;}
.ws31{word-spacing:1.740600px;}
.ws4d{word-spacing:1.750718px;}
.ws6{word-spacing:1.776000px;}
.wse7{word-spacing:1.800000px;}
.wse5{word-spacing:1.860600px;}
.ws7b{word-spacing:1.920000px;}
.wsa2{word-spacing:2.160000px;}
.wsec{word-spacing:2.220000px;}
.ws6c{word-spacing:2.340000px;}
.ws72{word-spacing:2.460000px;}
.wsbc{word-spacing:2.520600px;}
.ws77{word-spacing:2.580000px;}
.ws4e{word-spacing:2.640600px;}
.ws16{word-spacing:2.646000px;}
.wsa9{word-spacing:2.700000px;}
.ws34{word-spacing:2.760600px;}
.ws79{word-spacing:2.820000px;}
.wsaf{word-spacing:2.880000px;}
.ws3d{word-spacing:2.940000px;}
.wsfa{word-spacing:3.000000px;}
.wsa4{word-spacing:3.059400px;}
.ws18{word-spacing:3.186540px;}
.ws14{word-spacing:3.294000px;}
.ws30{word-spacing:3.299400px;}
.ws2d{word-spacing:3.420600px;}
.ws5b{word-spacing:3.540600px;}
.ws50{word-spacing:3.600000px;}
.ws40{word-spacing:3.619980px;}
.ws21{word-spacing:3.659760px;}
.wsf1{word-spacing:3.660000px;}
.wsfd{word-spacing:3.720000px;}
.ws48{word-spacing:3.780000px;}
.wsa0{word-spacing:3.840000px;}
.wscf{word-spacing:3.900000px;}
.wsbe{word-spacing:3.959400px;}
.wsf9{word-spacing:4.020000px;}
.wse8{word-spacing:4.079400px;}
.ws111{word-spacing:4.140000px;}
.wsc7{word-spacing:4.260000px;}
.ws10c{word-spacing:4.380000px;}
.wsed{word-spacing:4.620000px;}
.ws7e{word-spacing:4.739400px;}
.ws12{word-spacing:4.859400px;}
.ws11c{word-spacing:4.920000px;}
.wse2{word-spacing:4.979400px;}
.wse1{word-spacing:5.160000px;}
.wsc0{word-spacing:5.220600px;}
.ws85{word-spacing:5.340000px;}
.ws2e{word-spacing:5.400000px;}
.ws3f{word-spacing:5.460000px;}
.ws22{word-spacing:5.520000px;}
.ws23{word-spacing:5.580000px;}
.wsa{word-spacing:5.639400px;}
.ws8b{word-spacing:5.700000px;}
.ws33{word-spacing:5.759400px;}
.ws66{word-spacing:5.880600px;}
.ws68{word-spacing:5.940000px;}
.ws52{word-spacing:6.000600px;}
.ws110{word-spacing:6.060000px;}
.ws11d{word-spacing:6.120600px;}
.wsc8{word-spacing:6.180000px;}
.ws38{word-spacing:6.240000px;}
.ws69{word-spacing:6.480000px;}
.wsbf{word-spacing:6.600000px;}
.ws5e{word-spacing:6.659400px;}
.ws3e{word-spacing:6.720000px;}
.ws64{word-spacing:6.780600px;}
.ws5a{word-spacing:6.840000px;}
.ws92{word-spacing:6.900600px;}
.wsb1{word-spacing:6.960000px;}
.ws118{word-spacing:7.020000px;}
.ws32{word-spacing:7.260000px;}
.ws78{word-spacing:7.380000px;}
.wsf4{word-spacing:7.500000px;}
.ws5c{word-spacing:7.680600px;}
.wsef{word-spacing:7.800000px;}
.ws75{word-spacing:7.860000px;}
.ws15{word-spacing:7.938000px;}
.ws116{word-spacing:7.980000px;}
.ws109{word-spacing:8.040000px;}
.wsf8{word-spacing:8.099400px;}
.ws42{word-spacing:8.160000px;}
.ws11b{word-spacing:8.219400px;}
.ws9{word-spacing:8.280000px;}
.ws17{word-spacing:8.370000px;}
.ws44{word-spacing:8.460600px;}
.ws84{word-spacing:8.580600px;}
.wscd{word-spacing:8.640000px;}
.wsa6{word-spacing:8.760000px;}
.wsb{word-spacing:8.820000px;}
.ws119{word-spacing:8.879400px;}
.ws115{word-spacing:8.940000px;}
.ws10a{word-spacing:8.999400px;}
.wse3{word-spacing:9.060000px;}
.wsf6{word-spacing:9.240600px;}
.ws8d{word-spacing:9.300000px;}
.ws7d{word-spacing:9.360600px;}
.ws4b{word-spacing:9.540000px;}
.wsdf{word-spacing:9.600000px;}
.ws71{word-spacing:9.660000px;}
.wsa1{word-spacing:9.720000px;}
.wsd9{word-spacing:9.840000px;}
.ws10e{word-spacing:9.960000px;}
.ws9b{word-spacing:10.140600px;}
.wsb0{word-spacing:10.200000px;}
.ws104{word-spacing:10.260600px;}
.wsc4{word-spacing:10.320000px;}
.ws47{word-spacing:10.500000px;}
.ws5d{word-spacing:10.559400px;}
.ws41{word-spacing:10.679400px;}
.ws106{word-spacing:10.740000px;}
.wse{word-spacing:10.740600px;}
.ws13{word-spacing:10.746540px;}
.wsfb{word-spacing:11.040600px;}
.ws108{word-spacing:11.100000px;}
.ws100{word-spacing:11.160000px;}
.ws117{word-spacing:11.220000px;}
.ws3c{word-spacing:11.340000px;}
.ws7a{word-spacing:11.520000px;}
.ws86{word-spacing:11.579400px;}
.ws43{word-spacing:11.640000px;}
.ws4c{word-spacing:11.760000px;}
.wsfc{word-spacing:11.820600px;}
.wsb2{word-spacing:11.940600px;}
.ws107{word-spacing:12.000000px;}
.ws55{word-spacing:12.060000px;}
.ws60{word-spacing:12.120000px;}
.ws67{word-spacing:12.180000px;}
.wsde{word-spacing:12.239400px;}
.ws62{word-spacing:12.420000px;}
.ws2f{word-spacing:12.479400px;}
.wse9{word-spacing:12.660000px;}
.wsdb{word-spacing:12.780000px;}
.wsd5{word-spacing:12.960000px;}
.ws101{word-spacing:13.080000px;}
.wsea{word-spacing:13.259400px;}
.ws89{word-spacing:13.440000px;}
.ws97{word-spacing:13.500600px;}
.ws96{word-spacing:13.620600px;}
.ws105{word-spacing:13.800000px;}
.wse4{word-spacing:13.919400px;}
.ws9e{word-spacing:14.039400px;}
.ws1f{word-spacing:14.100000px;}
.ws99{word-spacing:14.280600px;}
.ws7f{word-spacing:14.400600px;}
.ws10{word-spacing:14.460000px;}
.ws56{word-spacing:14.520000px;}
.ws11a{word-spacing:14.700000px;}
.ws29{word-spacing:14.760000px;}
.ws9f{word-spacing:14.819400px;}
.ws27{word-spacing:15.060600px;}
.wsfe{word-spacing:15.240000px;}
.ws20{word-spacing:15.300000px;}
.wsa3{word-spacing:15.420000px;}
.ws7c{word-spacing:15.840600px;}
.ws83{word-spacing:16.020000px;}
.wsd{word-spacing:16.200000px;}
.ws9a{word-spacing:16.379400px;}
.wsb3{word-spacing:16.680000px;}
.ws80{word-spacing:17.040000px;}
.wsd4{word-spacing:17.279400px;}
.ws95{word-spacing:17.340000px;}
.ws93{word-spacing:17.399400px;}
.ws54{word-spacing:17.520600px;}
.wsbd{word-spacing:17.580000px;}
.ws6d{word-spacing:17.820000px;}
.ws90{word-spacing:17.880000px;}
.wsa5{word-spacing:17.940000px;}
.ws57{word-spacing:18.299400px;}
.ws35{word-spacing:18.600000px;}
.wsbb{word-spacing:18.720000px;}
.wsba{word-spacing:18.780000px;}
.wsff{word-spacing:18.840000px;}
.wsaa{word-spacing:19.560000px;}
.ws2c{word-spacing:19.620000px;}
.ws1e{word-spacing:19.739400px;}
.ws53{word-spacing:19.920000px;}
.ws91{word-spacing:19.979400px;}
.wsa7{word-spacing:20.160000px;}
.ws98{word-spacing:20.639400px;}
.ws49{word-spacing:21.360000px;}
.ws82{word-spacing:21.480000px;}
.ws65{word-spacing:22.020000px;}
.ws4a{word-spacing:22.680600px;}
.ws8c{word-spacing:23.160000px;}
.ws58{word-spacing:27.000000px;}
.ws11{word-spacing:27.060000px;}
.ws87{word-spacing:28.200000px;}
.wsc{word-spacing:29.819400px;}
.ws8{word-spacing:31.260000px;}
.wsf{word-spacing:32.700000px;}
.ws26{word-spacing:36.120600px;}
.ws5f{word-spacing:47.580000px;}
.wsb7{word-spacing:201.636000px;}
.wsb9{word-spacing:263.574000px;}
.wsb4{word-spacing:349.704000px;}
.wsb5{word-spacing:360.018000px;}
.wsb8{word-spacing:461.592000px;}
.wsb6{word-spacing:594.648000px;}
._a{margin-left:-2995.484760px;}
._9{margin-left:-1764.934380px;}
._8{margin-left:-59.040000px;}
._4{margin-left:-47.970000px;}
._11{margin-left:-38.760000px;}
._f{margin-left:-25.920000px;}
._c{margin-left:-22.916400px;}
._e{margin-left:-16.756800px;}
._6{margin-left:-11.520000px;}
._30{margin-left:-8.367600px;}
._2{margin-left:-7.332048px;}
._0{margin-left:-6.196800px;}
._d{margin-left:-5.040000px;}
._3{margin-left:-3.552000px;}
._1{margin-left:-1.776000px;}
._5{width:1.334400px;}
._10{width:2.460000px;}
._2d{width:7.200000px;}
._2b{width:9.180000px;}
._2c{width:12.000000px;}
._7{width:14.040000px;}
._2f{width:20.610000px;}
._b{width:22.842000px;}
._12{width:39.190800px;}
._28{width:65.916000px;}
._2e{width:74.358000px;}
._18{width:312.606000px;}
._20{width:338.634000px;}
._14{width:345.006000px;}
._16{width:362.988000px;}
._15{width:368.982000px;}
._1f{width:375.030000px;}
._1b{width:392.580000px;}
._1a{width:460.398000px;}
._2a{width:463.266000px;}
._26{width:493.290000px;}
._25{width:525.960000px;}
._23{width:544.968000px;}
._13{width:551.664000px;}
._1d{width:568.620000px;}
._1c{width:581.580000px;}
._29{width:614.034000px;}
._27{width:710.310000px;}
._19{width:746.982000px;}
._22{width:785.040000px;}
._24{width:1042.578000px;}
._21{width:1121.688000px;}
._17{width:1143.018000px;}
._1e{width:1236.708000px;}
.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);}
.fs8{font-size:31.824000px;}
.fs5{font-size:39.000000px;}
.fs7{font-size:39.780000px;}
.fs4{font-size:43.758000px;}
.fs9{font-size:45.000000px;}
.fs1{font-size:48.000000px;}
.fs6{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;}
.yac{bottom:81.571350px;}
.y1fc{bottom:81.601350px;}
.y62{bottom:81.610650px;}
.yd8{bottom:81.616350px;}
.y146{bottom:81.631200px;}
.y2c{bottom:81.637800px;}
.y1e1{bottom:81.736350px;}
.y10f{bottom:81.796350px;}
.y54{bottom:81.973800px;}
.y1aa{bottom:82.366350px;}
.y234{bottom:86.881350px;}
.y165{bottom:90.586200px;}
.y2b{bottom:96.637800px;}
.y53{bottom:98.727300px;}
.yab{bottom:99.571350px;}
.y1fb{bottom:99.601350px;}
.y61{bottom:99.610650px;}
.yd7{bottom:99.616350px;}
.y145{bottom:99.631200px;}
.y1e0{bottom:99.991350px;}
.y10e{bottom:100.201350px;}
.y1a9{bottom:100.651350px;}
.y233{bottom:101.881350px;}
.y2a{bottom:111.637800px;}
.y52{bottom:115.480800px;}
.y232{bottom:116.881350px;}
.y164{bottom:117.129450px;}
.yaa{bottom:117.571350px;}
.y1fa{bottom:117.601350px;}
.y60{bottom:117.610650px;}
.yd6{bottom:117.616350px;}
.y144{bottom:117.631200px;}
.y1df{bottom:118.246350px;}
.y10d{bottom:118.606350px;}
.y1a8{bottom:118.936350px;}
.y231{bottom:131.881350px;}
.y51{bottom:132.234300px;}
.ya9{bottom:135.571350px;}
.y1f9{bottom:135.601350px;}
.y5f{bottom:135.610650px;}
.yd5{bottom:135.616350px;}
.y1de{bottom:136.501350px;}
.y10c{bottom:137.011350px;}
.y1a7{bottom:137.221350px;}
.y163{bottom:137.271450px;}
.y29{bottom:140.137800px;}
.y230{bottom:141.481350px;}
.y50{bottom:148.987800px;}
.y143{bottom:153.451200px;}
.ya8{bottom:153.571350px;}
.y1f8{bottom:153.601350px;}
.y5e{bottom:153.610650px;}
.yd4{bottom:153.616350px;}
.y1dd{bottom:154.756350px;}
.y28{bottom:155.137800px;}
.y10b{bottom:155.416350px;}
.y1a6{bottom:155.506350px;}
.y162{bottom:158.911950px;}
.y4f{bottom:165.741300px;}
.y142{bottom:171.451200px;}
.ya7{bottom:171.571350px;}
.y1f7{bottom:171.601350px;}
.y5d{bottom:171.610650px;}
.yd3{bottom:171.616350px;}
.y1dc{bottom:173.011350px;}
.y1a5{bottom:173.791350px;}
.y10a{bottom:173.821350px;}
.y32{bottom:174.205650px;}
.y22f{bottom:174.466350px;}
.y272{bottom:179.158350px;}
.y2bc{bottom:179.417100px;}
.y161{bottom:180.552450px;}
.y4e{bottom:182.494800px;}
.y31{bottom:188.605650px;}
.y141{bottom:189.451200px;}
.ya6{bottom:189.571350px;}
.y1f6{bottom:189.601350px;}
.y5c{bottom:189.610650px;}
.yd2{bottom:189.616350px;}
.y1db{bottom:191.266350px;}
.y271{bottom:191.904600px;}
.y1a4{bottom:192.076350px;}
.y2bb{bottom:192.163350px;}
.y109{bottom:192.226350px;}
.y22e{bottom:192.466350px;}
.y4d{bottom:199.248300px;}
.y160{bottom:202.192950px;}
.y30{bottom:203.005650px;}
.y270{bottom:204.650850px;}
.y2ba{bottom:204.909600px;}
.y140{bottom:207.451200px;}
.ya5{bottom:207.571350px;}
.y1f5{bottom:207.601350px;}
.y5b{bottom:207.610650px;}
.yd1{bottom:207.616350px;}
.y1da{bottom:209.521350px;}
.y1a3{bottom:210.361350px;}
.y22d{bottom:210.466350px;}
.y108{bottom:210.631350px;}
.y4c{bottom:216.001800px;}
.y26f{bottom:217.397100px;}
.y2f{bottom:217.405650px;}
.y2b9{bottom:217.655850px;}
.y15f{bottom:223.833450px;}
.y13f{bottom:225.451200px;}
.ya4{bottom:225.571350px;}
.y5a{bottom:225.610650px;}
.yd0{bottom:225.612000px;}
.y1d9{bottom:227.776350px;}
.y22c{bottom:228.466350px;}
.y1a2{bottom:228.646350px;}
.y107{bottom:229.036350px;}
.y26e{bottom:230.143350px;}
.y2b8{bottom:230.402100px;}
.y2e{bottom:231.805650px;}
.y4b{bottom:232.755300px;}
.y26d{bottom:242.889600px;}
.y2b7{bottom:243.148350px;}
.y1f4{bottom:243.346350px;}
.y13e{bottom:243.451200px;}
.ya3{bottom:243.571350px;}
.y59{bottom:243.610650px;}
.ycf{bottom:243.612000px;}
.y15e{bottom:245.473950px;}
.y1d8{bottom:246.031350px;}
.y2d{bottom:246.205650px;}
.y22b{bottom:246.466350px;}
.y1a1{bottom:246.931350px;}
.y106{bottom:247.441350px;}
.y4a{bottom:249.508800px;}
.y26c{bottom:255.635850px;}
.y2b6{bottom:255.894600px;}
.y1f3{bottom:261.346350px;}
.y13d{bottom:261.451200px;}
.ya2{bottom:261.571350px;}
.y58{bottom:261.610650px;}
.yce{bottom:261.612000px;}
.y1d7{bottom:264.286350px;}
.y22a{bottom:264.466350px;}
.y1a0{bottom:265.216350px;}
.y105{bottom:265.846350px;}
.y49{bottom:266.262300px;}
.y15d{bottom:267.114450px;}
.y26b{bottom:268.382100px;}
.y2b5{bottom:268.640850px;}
.y1f2{bottom:279.346350px;}
.y13c{bottom:279.451200px;}
.ya1{bottom:279.571350px;}
.ycd{bottom:279.612000px;}
.y26a{bottom:281.128350px;}
.y2b4{bottom:281.387100px;}
.y229{bottom:282.466350px;}
.y1d6{bottom:282.541350px;}
.y48{bottom:283.015800px;}
.y19f{bottom:283.501350px;}
.y104{bottom:284.251350px;}
.y15c{bottom:288.754950px;}
.y269{bottom:293.874600px;}
.y2b3{bottom:294.133350px;}
.y1f1{bottom:297.346350px;}
.y13b{bottom:297.451200px;}
.ya0{bottom:297.571350px;}
.ycc{bottom:297.612000px;}
.y47{bottom:299.769300px;}
.y228{bottom:300.466350px;}
.y19e{bottom:301.786350px;}
.y103{bottom:302.656350px;}
.y27{bottom:303.558000px;}
.y268{bottom:306.620850px;}
.y2b2{bottom:306.879600px;}
.y15b{bottom:310.395450px;}
.y57{bottom:312.226650px;}
.y1f0{bottom:315.346350px;}
.y13a{bottom:315.451200px;}
.y9f{bottom:315.571350px;}
.ycb{bottom:315.612000px;}
.y46{bottom:316.522800px;}
.y227{bottom:318.466350px;}
.y26{bottom:318.558000px;}
.y267{bottom:319.367100px;}
.y2b1{bottom:319.625850px;}
.y19d{bottom:320.071350px;}
.y102{bottom:321.061350px;}
.y1d5{bottom:322.126350px;}
.y56{bottom:328.723650px;}
.y15a{bottom:332.035950px;}
.y266{bottom:332.113350px;}
.y2b0{bottom:332.372100px;}
.y45{bottom:333.276300px;}
.y1ef{bottom:333.346350px;}
.y139{bottom:333.451200px;}
.y25{bottom:333.558000px;}
.y9e{bottom:333.571350px;}
.yca{bottom:333.612000px;}
.y226{bottom:336.466350px;}
.y19c{bottom:338.356350px;}
.y101{bottom:339.466350px;}
.y1d4{bottom:340.381350px;}
.y265{bottom:344.859600px;}
.y2af{bottom:345.118350px;}
.y55{bottom:345.220650px;}
.y44{bottom:350.029800px;}
.y1ee{bottom:351.346350px;}
.y138{bottom:351.451200px;}
.y9d{bottom:351.571350px;}
.yc9{bottom:351.612000px;}
.y159{bottom:353.676450px;}
.y225{bottom:354.466350px;}
.y19b{bottom:356.641350px;}
.y264{bottom:357.605850px;}
.y2ae{bottom:357.864600px;}
.y1d3{bottom:358.636350px;}
.y24{bottom:362.058000px;}
.y43{bottom:366.783300px;}
.y71{bottom:368.902290px;}
.y1ed{bottom:369.346350px;}
.y137{bottom:369.451200px;}
.y9c{bottom:369.571350px;}
.yc8{bottom:369.612000px;}
.y263{bottom:370.352100px;}
.y2ad{bottom:370.610850px;}
.y100{bottom:371.371350px;}
.y224{bottom:372.466350px;}
.y19a{bottom:374.926350px;}
.y158{bottom:375.316950px;}
.y1d2{bottom:376.891350px;}
.y23{bottom:377.058000px;}
.y262{bottom:383.098350px;}
.y2ac{bottom:383.357100px;}
.y42{bottom:383.536800px;}
.y1ec{bottom:387.346350px;}
.y136{bottom:387.451200px;}
.y9b{bottom:387.571350px;}
.yff{bottom:389.776350px;}
.y223{bottom:390.466350px;}
.y22{bottom:392.058000px;}
.y1d1{bottom:395.146350px;}
.y261{bottom:395.844600px;}
.y2ab{bottom:396.103350px;}
.y70{bottom:396.109500px;}
.y157{bottom:396.957450px;}
.y41{bottom:400.290300px;}
.yc7{bottom:403.407000px;}
.y1eb{bottom:405.346350px;}
.y9a{bottom:405.571350px;}
.y21{bottom:407.058000px;}
.yfe{bottom:408.181350px;}
.y222{bottom:408.466350px;}
.y260{bottom:408.590850px;}
.y2aa{bottom:408.849600px;}
.y6f{bottom:412.615500px;}
.y1d0{bottom:413.401350px;}
.y199{bottom:414.511350px;}
.y40{bottom:417.043800px;}
.y156{bottom:417.099450px;}
.y25f{bottom:421.337100px;}
.yc6{bottom:421.407000px;}
.y2a9{bottom:421.595850px;}
.y20{bottom:422.058000px;}
.y135{bottom:423.271200px;}
.y1ea{bottom:423.346350px;}
.y99{bottom:423.571350px;}
.y221{bottom:426.466350px;}
.yfd{bottom:426.586350px;}
.y6e{bottom:429.112500px;}
.y1cf{bottom:431.656350px;}
.y198{bottom:432.796350px;}
.y3f{bottom:433.797300px;}
.y25e{bottom:434.083350px;}
.y2a8{bottom:434.342100px;}
.y1f{bottom:437.058000px;}
.yc5{bottom:439.407000px;}
.y134{bottom:441.271200px;}
.y1e9{bottom:441.346350px;}
.y98{bottom:441.571350px;}
.y154{bottom:441.736950px;}
.y220{bottom:444.466350px;}
.yfc{bottom:444.991350px;}
.y6d{bottom:445.609500px;}
.y25d{bottom:446.829600px;}
.y2a7{bottom:447.088350px;}
.y1ce{bottom:449.911350px;}
.y3e{bottom:450.550800px;}
.y197{bottom:451.081350px;}
.yc4{bottom:457.407000px;}
.y155{bottom:457.936950px;}
.y133{bottom:459.271200px;}
.y1e8{bottom:459.346350px;}
.y97{bottom:459.571350px;}
.y25c{bottom:459.575850px;}
.y2a6{bottom:459.834600px;}
.y1e{bottom:461.058000px;}
.y6c{bottom:462.115500px;}
.y21f{bottom:462.466350px;}
.yfb{bottom:463.396350px;}
.y3d{bottom:467.304300px;}
.y1cd{bottom:468.166350px;}
.y196{bottom:469.366350px;}
.y25b{bottom:472.322100px;}
.y2a5{bottom:472.580850px;}
.yc3{bottom:475.407000px;}
.y1d{bottom:476.058000px;}
.y132{bottom:477.271200px;}
.y1e7{bottom:477.346350px;}
.y96{bottom:477.571350px;}
.y6b{bottom:478.612500px;}
.y153{bottom:479.950800px;}
.y21e{bottom:480.466350px;}
.yfa{bottom:481.801350px;}
.y3c{bottom:484.057800px;}
.y25a{bottom:485.068350px;}
.y2a4{bottom:485.327100px;}
.y1cc{bottom:486.421350px;}
.y195{bottom:487.651350px;}
.y1c{bottom:491.058000px;}
.yc2{bottom:493.407000px;}
.y6a{bottom:495.109500px;}
.y131{bottom:495.271200px;}
.y1e6{bottom:495.346350px;}
.y95{bottom:495.571350px;}
.y259{bottom:497.814600px;}
.y2a3{bottom:498.073350px;}
.y21d{bottom:498.466350px;}
.yf9{bottom:500.206350px;}
.y3b{bottom:500.811300px;}
.y1cb{bottom:504.676350px;}
.y194{bottom:505.936350px;}
.y1b{bottom:506.058000px;}
.y258{bottom:510.560850px;}
.y2a2{bottom:510.819600px;}
.yc1{bottom:511.407000px;}
.y69{bottom:511.618500px;}
.y130{bottom:513.271200px;}
.y1e5{bottom:513.346350px;}
.y94{bottom:513.571350px;}
.y21c{bottom:516.466350px;}
.y3a{bottom:517.564800px;}
.yf8{bottom:518.611350px;}
.y1a{bottom:521.058000px;}
.y1ca{bottom:522.931350px;}
.y257{bottom:523.307100px;}
.y2a1{bottom:523.565850px;}
.y193{bottom:524.221350px;}
.y68{bottom:528.115500px;}
.yc0{bottom:529.407000px;}
.y12f{bottom:531.271200px;}
.y1e4{bottom:531.346350px;}
.y93{bottom:531.571350px;}
.y39{bottom:534.318300px;}
.y21b{bottom:534.466350px;}
.y256{bottom:536.053350px;}
.y19{bottom:536.058000px;}
.y2a0{bottom:536.312100px;}
.yf7{bottom:537.016350px;}
.y152{bottom:541.178700px;}
.y1c9{bottom:541.186350px;}
.y192{bottom:542.506350px;}
.y67{bottom:544.612500px;}
.ybf{bottom:547.407000px;}
.y255{bottom:548.799600px;}
.y29f{bottom:549.058350px;}
.y12e{bottom:549.271200px;}
.y1e3{bottom:549.346350px;}
.y92{bottom:549.571350px;}
.y18{bottom:551.058000px;}
.y38{bottom:551.071800px;}
.y21a{bottom:552.466350px;}
.yf6{bottom:555.421350px;}
.y1c8{bottom:559.441350px;}
.y151{bottom:559.493700px;}
.y66{bottom:561.109500px;}
.y254{bottom:561.545850px;}
.y29e{bottom:561.804600px;}
.ybe{bottom:565.407000px;}
.y17{bottom:566.058000px;}
.y12d{bottom:567.271200px;}
.y91{bottom:567.571350px;}
.y37{bottom:567.825300px;}
.y219{bottom:570.466350px;}
.yf5{bottom:573.826350px;}
.y191{bottom:574.291350px;}
.y253{bottom:574.292100px;}
.y29d{bottom:574.550850px;}
.y65{bottom:577.612500px;}
.y1c7{bottom:577.696350px;}
.y150{bottom:577.808700px;}
.y16{bottom:581.058000px;}
.ybd{bottom:583.407000px;}
.y36{bottom:584.578800px;}
.y1e2{bottom:585.091350px;}
.y90{bottom:585.571350px;}
.y252{bottom:587.038350px;}
.y29c{bottom:587.297100px;}
.y218{bottom:588.466350px;}
.yf4{bottom:592.231350px;}
.y190{bottom:592.576350px;}
.y64{bottom:594.109500px;}
.y1c6{bottom:595.951350px;}
.y15{bottom:596.058000px;}
.y14f{bottom:596.123700px;}
.y251{bottom:599.788350px;}
.y29b{bottom:600.043350px;}
.y35{bottom:601.332300px;}
.ybc{bottom:601.407000px;}
.y12c{bottom:603.091350px;}
.y8f{bottom:603.571350px;}
.y217{bottom:606.466350px;}
.yf3{bottom:610.636350px;}
.y18f{bottom:610.861350px;}
.y14{bottom:611.058000px;}
.y29a{bottom:612.789600px;}
.y1c5{bottom:614.206350px;}
.y14e{bottom:614.438700px;}
.y34{bottom:618.085800px;}
.ybb{bottom:619.407000px;}
.y12b{bottom:621.091350px;}
.y8e{bottom:621.571350px;}
.y216{bottom:624.466350px;}
.y299{bottom:625.535850px;}
.y63{bottom:625.840800px;}
.y13{bottom:626.058000px;}
.yf2{bottom:629.041350px;}
.y18e{bottom:629.146350px;}
.y1c4{bottom:632.461350px;}
.y14d{bottom:632.753700px;}
.y33{bottom:634.840800px;}
.yba{bottom:637.407000px;}
.y298{bottom:638.282100px;}
.y12a{bottom:639.091350px;}
.y8d{bottom:639.571350px;}
.y12{bottom:641.058000px;}
.y215{bottom:642.466350px;}
.y18d{bottom:647.431350px;}
.yf1{bottom:647.446350px;}
.y1c3{bottom:650.716350px;}
.y297{bottom:651.028350px;}
.y14c{bottom:651.068700px;}
.yb9{bottom:655.407000px;}
.y11{bottom:656.058000px;}
.y129{bottom:657.091350px;}
.y8c{bottom:657.571350px;}
.y214{bottom:660.466350px;}
.y296{bottom:663.774600px;}
.y18c{bottom:665.716350px;}
.yf0{bottom:665.851350px;}
.y1c2{bottom:668.971350px;}
.y14b{bottom:669.383700px;}
.y10{bottom:671.058000px;}
.y250{bottom:671.833350px;}
.yb8{bottom:673.407000px;}
.y128{bottom:675.091350px;}
.y8b{bottom:675.571350px;}
.y295{bottom:676.520850px;}
.y213{bottom:678.466350px;}
.y18b{bottom:684.001350px;}
.yef{bottom:684.256350px;}
.yf{bottom:686.058000px;}
.y24f{bottom:686.233350px;}
.y1c1{bottom:687.226350px;}
.y14a{bottom:687.698700px;}
.y294{bottom:689.267100px;}
.yb7{bottom:691.407000px;}
.y127{bottom:693.091350px;}
.y8a{bottom:693.571350px;}
.y212{bottom:696.466350px;}
.y24e{bottom:700.633350px;}
.y293{bottom:702.013350px;}
.y18a{bottom:702.286350px;}
.yee{bottom:702.661350px;}
.ye{bottom:703.837650px;}
.y1c0{bottom:705.481350px;}
.y149{bottom:706.013700px;}
.yb6{bottom:709.407000px;}
.y126{bottom:711.091350px;}
.y89{bottom:711.571350px;}
.y211{bottom:714.466350px;}
.y292{bottom:714.759600px;}
.y24d{bottom:715.033350px;}
.y189{bottom:720.571350px;}
.yed{bottom:721.066350px;}
.yd{bottom:723.340650px;}
.y1bf{bottom:723.736350px;}
.y148{bottom:724.328700px;}
.yb5{bottom:727.407000px;}
.y291{bottom:727.505850px;}
.y125{bottom:729.091350px;}
.y24c{bottom:729.433350px;}
.y88{bottom:729.571350px;}
.y210{bottom:732.466350px;}
.y188{bottom:738.856350px;}
.yec{bottom:739.471350px;}
.y290{bottom:740.252100px;}
.y1be{bottom:741.991350px;}
.y147{bottom:742.643700px;}
.y24b{bottom:743.833350px;}
.yb4{bottom:745.411350px;}
.y124{bottom:747.091350px;}
.y87{bottom:747.571350px;}
.y20f{bottom:750.466350px;}
.y28f{bottom:752.998350px;}
.y187{bottom:757.141350px;}
.yeb{bottom:757.876350px;}
.y1bd{bottom:760.246350px;}
.yb3{bottom:763.411350px;}
.y24a{bottom:764.233350px;}
.y123{bottom:765.091350px;}
.y86{bottom:765.571350px;}
.y28e{bottom:765.744600px;}
.y20e{bottom:768.466350px;}
.y186{bottom:775.426350px;}
.yea{bottom:776.281350px;}
.y28d{bottom:778.490850px;}
.y1bc{bottom:778.501350px;}
.yb2{bottom:781.411350px;}
.yc{bottom:781.792650px;}
.y122{bottom:783.091350px;}
.y85{bottom:783.571350px;}
.y249{bottom:784.633350px;}
.y20d{bottom:786.466350px;}
.y28c{bottom:791.237100px;}
.y185{bottom:793.711350px;}
.ye9{bottom:794.686350px;}
.y1bb{bottom:796.756350px;}
.y248{bottom:799.033350px;}
.yb1{bottom:799.411350px;}
.y121{bottom:801.091350px;}
.y84{bottom:801.571350px;}
.y28b{bottom:803.983350px;}
.y20c{bottom:804.466350px;}
.y175{bottom:805.058550px;}
.y184{bottom:811.996350px;}
.ye8{bottom:813.091350px;}
.y1ba{bottom:815.011350px;}
.y28a{bottom:816.729600px;}
.yb0{bottom:817.411350px;}
.y120{bottom:819.091350px;}
.y247{bottom:819.433350px;}
.y83{bottom:819.571350px;}
.y174{bottom:820.058550px;}
.yb{bottom:820.798650px;}
.y20b{bottom:822.466350px;}
.y289{bottom:829.475850px;}
.y183{bottom:830.281350px;}
.ye7{bottom:831.496350px;}
.y1b9{bottom:833.266350px;}
.y173{bottom:835.058550px;}
.yaf{bottom:835.411350px;}
.y11f{bottom:837.091350px;}
.y82{bottom:837.571350px;}
.y246{bottom:840.433350px;}
.y20a{bottom:840.466350px;}
.y288{bottom:842.222100px;}
.y182{bottom:848.566350px;}
.ye6{bottom:849.901350px;}
.y1b8{bottom:851.521350px;}
.yae{bottom:853.411350px;}
.y287{bottom:854.968350px;}
.y11e{bottom:855.091350px;}
.y81{bottom:855.571350px;}
.y209{bottom:858.466350px;}
.ya{bottom:859.804650px;}
.y245{bottom:860.833350px;}
.y172{bottom:861.615000px;}
.y181{bottom:866.851350px;}
.y286{bottom:867.714600px;}
.ye5{bottom:868.306350px;}
.y1b7{bottom:869.776350px;}
.yad{bottom:871.411350px;}
.y11d{bottom:873.091350px;}
.y80{bottom:873.571350px;}
.y244{bottom:875.233350px;}
.y208{bottom:876.466350px;}
.y171{bottom:877.815000px;}
.y285{bottom:880.460850px;}
.ye4{bottom:886.711350px;}
.y1b6{bottom:888.031350px;}
.y11c{bottom:891.091350px;}
.y7f{bottom:891.571350px;}
.y284{bottom:893.207100px;}
.y207{bottom:894.466350px;}
.y243{bottom:895.633350px;}
.y170{bottom:897.957000px;}
.y9{bottom:898.810650px;}
.ye3{bottom:905.116350px;}
.y283{bottom:905.953350px;}
.y1b5{bottom:906.286350px;}
.y180{bottom:906.436350px;}
.y11b{bottom:909.091350px;}
.y7e{bottom:909.571350px;}
.y242{bottom:910.033350px;}
.y206{bottom:912.466350px;}
.y282{bottom:918.699600px;}
.y16f{bottom:919.597500px;}
.ye2{bottom:923.521350px;}
.y241{bottom:924.433350px;}
.y1b4{bottom:924.541350px;}
.y17f{bottom:924.721350px;}
.y11a{bottom:927.091350px;}
.y7d{bottom:927.571350px;}
.y281{bottom:931.445850px;}
.y8{bottom:937.816650px;}
.y240{bottom:938.833350px;}
.y16e{bottom:941.238000px;}
.ye1{bottom:941.926350px;}
.y1b3{bottom:942.796350px;}
.y17e{bottom:943.006350px;}
.y280{bottom:944.192100px;}
.y119{bottom:945.091350px;}
.y7c{bottom:945.571350px;}
.y23f{bottom:953.233350px;}
.y27f{bottom:956.938350px;}
.y16d{bottom:957.438000px;}
.ye0{bottom:960.331350px;}
.y1b2{bottom:961.051350px;}
.y17d{bottom:961.291350px;}
.y205{bottom:963.076350px;}
.y118{bottom:963.091350px;}
.y7b{bottom:963.571350px;}
.y27e{bottom:969.684600px;}
.y23e{bottom:973.633350px;}
.y7{bottom:976.822650px;}
.ydf{bottom:978.736350px;}
.y16c{bottom:979.078500px;}
.y1b1{bottom:979.306350px;}
.y17c{bottom:979.576350px;}
.y204{bottom:981.076350px;}
.y117{bottom:981.091350px;}
.y7a{bottom:981.571350px;}
.y27d{bottom:982.430850px;}
.y23d{bottom:988.033350px;}
.y27c{bottom:995.177100px;}
.y16b{bottom:995.278500px;}
.yde{bottom:997.141350px;}
.y1b0{bottom:997.561350px;}
.y17b{bottom:997.861350px;}
.y203{bottom:999.076350px;}
.y116{bottom:999.091350px;}
.y79{bottom:999.571350px;}
.y23c{bottom:1002.433350px;}
.y27b{bottom:1007.923350px;}
.ydd{bottom:1015.546350px;}
.y1af{bottom:1015.816350px;}
.y6{bottom:1015.828650px;}
.y17a{bottom:1016.146350px;}
.y23b{bottom:1016.833350px;}
.y16a{bottom:1016.919000px;}
.y202{bottom:1017.076350px;}
.y115{bottom:1017.091350px;}
.y78{bottom:1017.571350px;}
.y27a{bottom:1020.669600px;}
.y23a{bottom:1031.233350px;}
.y279{bottom:1033.415850px;}
.ydc{bottom:1033.951350px;}
.y1ae{bottom:1034.071350px;}
.y179{bottom:1034.431350px;}
.y201{bottom:1035.076350px;}
.y114{bottom:1035.091350px;}
.y77{bottom:1035.571350px;}
.y169{bottom:1037.061000px;}
.y239{bottom:1045.633350px;}
.y278{bottom:1046.162100px;}
.y1ad{bottom:1052.326350px;}
.ydb{bottom:1052.356350px;}
.y178{bottom:1052.716350px;}
.y200{bottom:1053.076350px;}
.y113{bottom:1053.091350px;}
.y76{bottom:1053.571350px;}
.y5{bottom:1054.834650px;}
.y277{bottom:1058.908350px;}
.y167{bottom:1061.698500px;}
.y238{bottom:1066.033350px;}
.y1ac{bottom:1070.581350px;}
.yda{bottom:1070.761350px;}
.y177{bottom:1071.001350px;}
.y1ff{bottom:1071.076350px;}
.y112{bottom:1071.091350px;}
.y75{bottom:1071.571350px;}
.y276{bottom:1071.654600px;}
.y168{bottom:1077.898500px;}
.y237{bottom:1080.433350px;}
.y275{bottom:1084.400850px;}
.y1ab{bottom:1088.836350px;}
.y1fe{bottom:1089.076350px;}
.y111{bottom:1089.091350px;}
.yd9{bottom:1089.166350px;}
.y176{bottom:1089.286350px;}
.y74{bottom:1089.571350px;}
.y4{bottom:1093.840650px;}
.y236{bottom:1094.833350px;}
.y274{bottom:1097.147100px;}
.y166{bottom:1099.912350px;}
.y1fd{bottom:1107.076350px;}
.y110{bottom:1107.091350px;}
.y73{bottom:1107.571350px;}
.y235{bottom:1109.233350px;}
.y273{bottom:1109.893350px;}
.y3{bottom:1140.946200px;}
.y72{bottom:1140.946350px;}
.h12{height:27.941472px;}
.h13{height:32.895000px;}
.h8{height:34.944000px;}
.h11{height:35.088000px;}
.h10{height:39.474000px;}
.h3{height:42.144000px;}
.h2{height:43.680000px;}
.h4{height:43.860000px;}
.ha{height:44.520000px;}
.hd{height:45.000000px;}
.h9{height:47.412000px;}
.hc{height:56.320312px;}
.he{height:56.499360px;}
.hb{height:56.516760px;}
.hf{height:56.534160px;}
.h6{height:61.687098px;}
.h7{height:61.699098px;}
.h5{height:96.228516px;}
.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;}
.x11{left:72.627000px;}
.xd{left:74.247000px;}
.x1a{left:78.750000px;}
.x12{left:84.000000px;}
.x4{left:220.379400px;}
.x2{left:258.330000px;}
.x13{left:331.161000px;}
.x14{left:431.655000px;}
.xe{left:460.332000px;}
.xf{left:473.839050px;}
.x1b{left:484.143750px;}
.x18{left:487.167000px;}
.x15{left:530.650500px;}
.x8{left:537.517800px;}
.x9{left:546.518850px;}
.xa{left:558.395850px;}
.xb{left:564.518850px;}
.x16{left:632.656500px;}
.x19{left:658.171500px;}
.x10{left:723.708900px;}
.x17{left:734.662500px;}
.x7{left:759.024750px;}
.x1{left:824.963400px;}
.xc{left:867.000000px;}
@media print{
.v3{vertical-align:-19.200000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:24.000000pt;}
.v1{vertical-align:26.400000pt;}
.ls4{letter-spacing:-1.578667pt;}
.ls3{letter-spacing:0.000000pt;}
.ls8{letter-spacing:0.001600pt;}
.ls7{letter-spacing:0.800000pt;}
.ls0{letter-spacing:3.360000pt;}
.ls1{letter-spacing:15.289067pt;}
.ls2{letter-spacing:21.770667pt;}
.ls6{letter-spacing:40.437333pt;}
.ls5{letter-spacing:1379.412800pt;}
.ws1{word-spacing:-18.186667pt;}
.ws1c{word-spacing:-13.866667pt;}
.ws113{word-spacing:-13.866133pt;}
.ws4{word-spacing:-13.344000pt;}
.ws2{word-spacing:-12.800000pt;}
.ws3{word-spacing:-11.520000pt;}
.ws11f{word-spacing:-11.120000pt;}
.ws0{word-spacing:-10.813088pt;}
.ws7{word-spacing:-10.240427pt;}
.ws1d{word-spacing:-9.193600pt;}
.wsc9{word-spacing:-7.344000pt;}
.ws28{word-spacing:-7.199467pt;}
.wsf5{word-spacing:-6.789120pt;}
.wsd8{word-spacing:-6.080000pt;}
.wsc3{word-spacing:-5.440533pt;}
.wsd3{word-spacing:-5.173333pt;}
.ws10d{word-spacing:-4.906667pt;}
.wsf2{word-spacing:-4.319467pt;}
.ws6b{word-spacing:-4.053333pt;}
.ws10b{word-spacing:-3.733867pt;}
.ws2a{word-spacing:-3.626133pt;}
.wsf3{word-spacing:-3.413333pt;}
.wsdc{word-spacing:-3.253333pt;}
.ws74{word-spacing:-3.147200pt;}
.ws3b{word-spacing:-3.040533pt;}
.wsdd{word-spacing:-2.986667pt;}
.ws9c{word-spacing:-2.880000pt;}
.wsc5{word-spacing:-2.719467pt;}
.ws81{word-spacing:-2.613333pt;}
.wsa8{word-spacing:-2.560000pt;}
.wscc{word-spacing:-2.506667pt;}
.wsd7{word-spacing:-2.453867pt;}
.wseb{word-spacing:-2.347200pt;}
.wsee{word-spacing:-2.293333pt;}
.ws61{word-spacing:-2.240533pt;}
.ws102{word-spacing:-2.186667pt;}
.ws3a{word-spacing:-2.015874pt;}
.wsd2{word-spacing:-1.920000pt;}
.ws19{word-spacing:-1.872000pt;}
.ws11e{word-spacing:-1.866667pt;}
.ws76{word-spacing:-1.760000pt;}
.ws6a{word-spacing:-1.706667pt;}
.ws70{word-spacing:-1.653867pt;}
.ws112{word-spacing:-1.547200pt;}
.ws8e{word-spacing:-1.493333pt;}
.ws24{word-spacing:-1.439467pt;}
.ws1b{word-spacing:-1.344000pt;}
.ws59{word-spacing:-1.280000pt;}
.ws73{word-spacing:-1.226133pt;}
.wsf7{word-spacing:-1.120000pt;}
.ws1a{word-spacing:-1.103520pt;}
.wsd6{word-spacing:-1.066667pt;}
.ws8a{word-spacing:-1.013333pt;}
.wsda{word-spacing:-0.906667pt;}
.wsc6{word-spacing:-0.853867pt;}
.wsca{word-spacing:-0.800000pt;}
.wsc1{word-spacing:-0.747200pt;}
.ws4f{word-spacing:-0.693333pt;}
.ws103{word-spacing:-0.639467pt;}
.ws9d{word-spacing:-0.532800pt;}
.ws10f{word-spacing:-0.480000pt;}
.wsf0{word-spacing:-0.426667pt;}
.ws37{word-spacing:-0.373333pt;}
.wsae{word-spacing:-0.266667pt;}
.wsab{word-spacing:-0.106667pt;}
.ws120{word-spacing:-0.080000pt;}
.wsd1{word-spacing:-0.053867pt;}
.ws5{word-spacing:0.000000pt;}
.ws6f{word-spacing:0.053867pt;}
.ws39{word-spacing:0.160533pt;}
.wse6{word-spacing:0.213333pt;}
.ws114{word-spacing:0.266667pt;}
.ws94{word-spacing:0.320000pt;}
.ws46{word-spacing:0.373333pt;}
.ws88{word-spacing:0.480000pt;}
.wsac{word-spacing:0.586667pt;}
.ws45{word-spacing:0.693333pt;}
.wsc2{word-spacing:0.853867pt;}
.ws63{word-spacing:0.906667pt;}
.wsad{word-spacing:0.960533pt;}
.ws8f{word-spacing:1.013333pt;}
.ws51{word-spacing:1.066667pt;}
.wscb{word-spacing:1.120000pt;}
.ws6e{word-spacing:1.173333pt;}
.wse0{word-spacing:1.226133pt;}
.ws25{word-spacing:1.280000pt;}
.wsd0{word-spacing:1.332800pt;}
.ws2b{word-spacing:1.386667pt;}
.ws36{word-spacing:1.439467pt;}
.wsce{word-spacing:1.493333pt;}
.ws31{word-spacing:1.547200pt;}
.ws4d{word-spacing:1.556194pt;}
.ws6{word-spacing:1.578667pt;}
.wse7{word-spacing:1.600000pt;}
.wse5{word-spacing:1.653867pt;}
.ws7b{word-spacing:1.706667pt;}
.wsa2{word-spacing:1.920000pt;}
.wsec{word-spacing:1.973333pt;}
.ws6c{word-spacing:2.080000pt;}
.ws72{word-spacing:2.186667pt;}
.wsbc{word-spacing:2.240533pt;}
.ws77{word-spacing:2.293333pt;}
.ws4e{word-spacing:2.347200pt;}
.ws16{word-spacing:2.352000pt;}
.wsa9{word-spacing:2.400000pt;}
.ws34{word-spacing:2.453867pt;}
.ws79{word-spacing:2.506667pt;}
.wsaf{word-spacing:2.560000pt;}
.ws3d{word-spacing:2.613333pt;}
.wsfa{word-spacing:2.666667pt;}
.wsa4{word-spacing:2.719467pt;}
.ws18{word-spacing:2.832480pt;}
.ws14{word-spacing:2.928000pt;}
.ws30{word-spacing:2.932800pt;}
.ws2d{word-spacing:3.040533pt;}
.ws5b{word-spacing:3.147200pt;}
.ws50{word-spacing:3.200000pt;}
.ws40{word-spacing:3.217760pt;}
.ws21{word-spacing:3.253120pt;}
.wsf1{word-spacing:3.253333pt;}
.wsfd{word-spacing:3.306667pt;}
.ws48{word-spacing:3.360000pt;}
.wsa0{word-spacing:3.413333pt;}
.wscf{word-spacing:3.466667pt;}
.wsbe{word-spacing:3.519467pt;}
.wsf9{word-spacing:3.573333pt;}
.wse8{word-spacing:3.626133pt;}
.ws111{word-spacing:3.680000pt;}
.wsc7{word-spacing:3.786667pt;}
.ws10c{word-spacing:3.893333pt;}
.wsed{word-spacing:4.106667pt;}
.ws7e{word-spacing:4.212800pt;}
.ws12{word-spacing:4.319467pt;}
.ws11c{word-spacing:4.373333pt;}
.wse2{word-spacing:4.426133pt;}
.wse1{word-spacing:4.586667pt;}
.wsc0{word-spacing:4.640533pt;}
.ws85{word-spacing:4.746667pt;}
.ws2e{word-spacing:4.800000pt;}
.ws3f{word-spacing:4.853333pt;}
.ws22{word-spacing:4.906667pt;}
.ws23{word-spacing:4.960000pt;}
.wsa{word-spacing:5.012800pt;}
.ws8b{word-spacing:5.066667pt;}
.ws33{word-spacing:5.119467pt;}
.ws66{word-spacing:5.227200pt;}
.ws68{word-spacing:5.280000pt;}
.ws52{word-spacing:5.333867pt;}
.ws110{word-spacing:5.386667pt;}
.ws11d{word-spacing:5.440533pt;}
.wsc8{word-spacing:5.493333pt;}
.ws38{word-spacing:5.546667pt;}
.ws69{word-spacing:5.760000pt;}
.wsbf{word-spacing:5.866667pt;}
.ws5e{word-spacing:5.919467pt;}
.ws3e{word-spacing:5.973333pt;}
.ws64{word-spacing:6.027200pt;}
.ws5a{word-spacing:6.080000pt;}
.ws92{word-spacing:6.133867pt;}
.wsb1{word-spacing:6.186667pt;}
.ws118{word-spacing:6.240000pt;}
.ws32{word-spacing:6.453333pt;}
.ws78{word-spacing:6.560000pt;}
.wsf4{word-spacing:6.666667pt;}
.ws5c{word-spacing:6.827200pt;}
.wsef{word-spacing:6.933333pt;}
.ws75{word-spacing:6.986667pt;}
.ws15{word-spacing:7.056000pt;}
.ws116{word-spacing:7.093333pt;}
.ws109{word-spacing:7.146667pt;}
.wsf8{word-spacing:7.199467pt;}
.ws42{word-spacing:7.253333pt;}
.ws11b{word-spacing:7.306133pt;}
.ws9{word-spacing:7.360000pt;}
.ws17{word-spacing:7.440000pt;}
.ws44{word-spacing:7.520533pt;}
.ws84{word-spacing:7.627200pt;}
.wscd{word-spacing:7.680000pt;}
.wsa6{word-spacing:7.786667pt;}
.wsb{word-spacing:7.840000pt;}
.ws119{word-spacing:7.892800pt;}
.ws115{word-spacing:7.946667pt;}
.ws10a{word-spacing:7.999467pt;}
.wse3{word-spacing:8.053333pt;}
.wsf6{word-spacing:8.213867pt;}
.ws8d{word-spacing:8.266667pt;}
.ws7d{word-spacing:8.320533pt;}
.ws4b{word-spacing:8.480000pt;}
.wsdf{word-spacing:8.533333pt;}
.ws71{word-spacing:8.586667pt;}
.wsa1{word-spacing:8.640000pt;}
.wsd9{word-spacing:8.746667pt;}
.ws10e{word-spacing:8.853333pt;}
.ws9b{word-spacing:9.013867pt;}
.wsb0{word-spacing:9.066667pt;}
.ws104{word-spacing:9.120533pt;}
.wsc4{word-spacing:9.173333pt;}
.ws47{word-spacing:9.333333pt;}
.ws5d{word-spacing:9.386133pt;}
.ws41{word-spacing:9.492800pt;}
.ws106{word-spacing:9.546667pt;}
.wse{word-spacing:9.547200pt;}
.ws13{word-spacing:9.552480pt;}
.wsfb{word-spacing:9.813867pt;}
.ws108{word-spacing:9.866667pt;}
.ws100{word-spacing:9.920000pt;}
.ws117{word-spacing:9.973333pt;}
.ws3c{word-spacing:10.080000pt;}
.ws7a{word-spacing:10.240000pt;}
.ws86{word-spacing:10.292800pt;}
.ws43{word-spacing:10.346667pt;}
.ws4c{word-spacing:10.453333pt;}
.wsfc{word-spacing:10.507200pt;}
.wsb2{word-spacing:10.613867pt;}
.ws107{word-spacing:10.666667pt;}
.ws55{word-spacing:10.720000pt;}
.ws60{word-spacing:10.773333pt;}
.ws67{word-spacing:10.826667pt;}
.wsde{word-spacing:10.879467pt;}
.ws62{word-spacing:11.040000pt;}
.ws2f{word-spacing:11.092800pt;}
.wse9{word-spacing:11.253333pt;}
.wsdb{word-spacing:11.360000pt;}
.wsd5{word-spacing:11.520000pt;}
.ws101{word-spacing:11.626667pt;}
.wsea{word-spacing:11.786133pt;}
.ws89{word-spacing:11.946667pt;}
.ws97{word-spacing:12.000533pt;}
.ws96{word-spacing:12.107200pt;}
.ws105{word-spacing:12.266667pt;}
.wse4{word-spacing:12.372800pt;}
.ws9e{word-spacing:12.479467pt;}
.ws1f{word-spacing:12.533333pt;}
.ws99{word-spacing:12.693867pt;}
.ws7f{word-spacing:12.800533pt;}
.ws10{word-spacing:12.853333pt;}
.ws56{word-spacing:12.906667pt;}
.ws11a{word-spacing:13.066667pt;}
.ws29{word-spacing:13.120000pt;}
.ws9f{word-spacing:13.172800pt;}
.ws27{word-spacing:13.387200pt;}
.wsfe{word-spacing:13.546667pt;}
.ws20{word-spacing:13.600000pt;}
.wsa3{word-spacing:13.706667pt;}
.ws7c{word-spacing:14.080533pt;}
.ws83{word-spacing:14.240000pt;}
.wsd{word-spacing:14.400000pt;}
.ws9a{word-spacing:14.559467pt;}
.wsb3{word-spacing:14.826667pt;}
.ws80{word-spacing:15.146667pt;}
.wsd4{word-spacing:15.359467pt;}
.ws95{word-spacing:15.413333pt;}
.ws93{word-spacing:15.466133pt;}
.ws54{word-spacing:15.573867pt;}
.wsbd{word-spacing:15.626667pt;}
.ws6d{word-spacing:15.840000pt;}
.ws90{word-spacing:15.893333pt;}
.wsa5{word-spacing:15.946667pt;}
.ws57{word-spacing:16.266133pt;}
.ws35{word-spacing:16.533333pt;}
.wsbb{word-spacing:16.640000pt;}
.wsba{word-spacing:16.693333pt;}
.wsff{word-spacing:16.746667pt;}
.wsaa{word-spacing:17.386667pt;}
.ws2c{word-spacing:17.440000pt;}
.ws1e{word-spacing:17.546133pt;}
.ws53{word-spacing:17.706667pt;}
.ws91{word-spacing:17.759467pt;}
.wsa7{word-spacing:17.920000pt;}
.ws98{word-spacing:18.346133pt;}
.ws49{word-spacing:18.986667pt;}
.ws82{word-spacing:19.093333pt;}
.ws65{word-spacing:19.573333pt;}
.ws4a{word-spacing:20.160533pt;}
.ws8c{word-spacing:20.586667pt;}
.ws58{word-spacing:24.000000pt;}
.ws11{word-spacing:24.053333pt;}
.ws87{word-spacing:25.066667pt;}
.wsc{word-spacing:26.506133pt;}
.ws8{word-spacing:27.786667pt;}
.wsf{word-spacing:29.066667pt;}
.ws26{word-spacing:32.107200pt;}
.ws5f{word-spacing:42.293333pt;}
.wsb7{word-spacing:179.232000pt;}
.wsb9{word-spacing:234.288000pt;}
.wsb4{word-spacing:310.848000pt;}
.wsb5{word-spacing:320.016000pt;}
.wsb8{word-spacing:410.304000pt;}
.wsb6{word-spacing:528.576000pt;}
._a{margin-left:-2662.653120pt;}
._9{margin-left:-1568.830560pt;}
._8{margin-left:-52.480000pt;}
._4{margin-left:-42.640000pt;}
._11{margin-left:-34.453333pt;}
._f{margin-left:-23.040000pt;}
._c{margin-left:-20.370133pt;}
._e{margin-left:-14.894933pt;}
._6{margin-left:-10.240000pt;}
._30{margin-left:-7.437867pt;}
._2{margin-left:-6.517376pt;}
._0{margin-left:-5.508267pt;}
._d{margin-left:-4.480000pt;}
._3{margin-left:-3.157333pt;}
._1{margin-left:-1.578667pt;}
._5{width:1.186133pt;}
._10{width:2.186667pt;}
._2d{width:6.400000pt;}
._2b{width:8.160000pt;}
._2c{width:10.666667pt;}
._7{width:12.480000pt;}
._2f{width:18.320000pt;}
._b{width:20.304000pt;}
._12{width:34.836267pt;}
._28{width:58.592000pt;}
._2e{width:66.096000pt;}
._18{width:277.872000pt;}
._20{width:301.008000pt;}
._14{width:306.672000pt;}
._16{width:322.656000pt;}
._15{width:327.984000pt;}
._1f{width:333.360000pt;}
._1b{width:348.960000pt;}
._1a{width:409.242667pt;}
._2a{width:411.792000pt;}
._26{width:438.480000pt;}
._25{width:467.520000pt;}
._23{width:484.416000pt;}
._13{width:490.368000pt;}
._1d{width:505.440000pt;}
._1c{width:516.960000pt;}
._29{width:545.808000pt;}
._27{width:631.386667pt;}
._19{width:663.984000pt;}
._22{width:697.813333pt;}
._24{width:926.736000pt;}
._21{width:997.056000pt;}
._17{width:1016.016000pt;}
._1e{width:1099.296000pt;}
.fs8{font-size:28.288000pt;}
.fs5{font-size:34.666667pt;}
.fs7{font-size:35.360000pt;}
.fs4{font-size:38.896000pt;}
.fs9{font-size:40.000000pt;}
.fs1{font-size:42.666667pt;}
.fs6{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;}
.yac{bottom:72.507867pt;}
.y1fc{bottom:72.534533pt;}
.y62{bottom:72.542800pt;}
.yd8{bottom:72.547867pt;}
.y146{bottom:72.561067pt;}
.y2c{bottom:72.566933pt;}
.y1e1{bottom:72.654533pt;}
.y10f{bottom:72.707867pt;}
.y54{bottom:72.865600pt;}
.y1aa{bottom:73.214533pt;}
.y234{bottom:77.227867pt;}
.y165{bottom:80.521067pt;}
.y2b{bottom:85.900267pt;}
.y53{bottom:87.757600pt;}
.yab{bottom:88.507867pt;}
.y1fb{bottom:88.534533pt;}
.y61{bottom:88.542800pt;}
.yd7{bottom:88.547867pt;}
.y145{bottom:88.561067pt;}
.y1e0{bottom:88.881200pt;}
.y10e{bottom:89.067867pt;}
.y1a9{bottom:89.467867pt;}
.y233{bottom:90.561200pt;}
.y2a{bottom:99.233600pt;}
.y52{bottom:102.649600pt;}
.y232{bottom:103.894533pt;}
.y164{bottom:104.115067pt;}
.yaa{bottom:104.507867pt;}
.y1fa{bottom:104.534533pt;}
.y60{bottom:104.542800pt;}
.yd6{bottom:104.547867pt;}
.y144{bottom:104.561067pt;}
.y1df{bottom:105.107867pt;}
.y10d{bottom:105.427867pt;}
.y1a8{bottom:105.721200pt;}
.y231{bottom:117.227867pt;}
.y51{bottom:117.541600pt;}
.ya9{bottom:120.507867pt;}
.y1f9{bottom:120.534533pt;}
.y5f{bottom:120.542800pt;}
.yd5{bottom:120.547867pt;}
.y1de{bottom:121.334533pt;}
.y10c{bottom:121.787867pt;}
.y1a7{bottom:121.974533pt;}
.y163{bottom:122.019067pt;}
.y29{bottom:124.566933pt;}
.y230{bottom:125.761200pt;}
.y50{bottom:132.433600pt;}
.y143{bottom:136.401067pt;}
.ya8{bottom:136.507867pt;}
.y1f8{bottom:136.534533pt;}
.y5e{bottom:136.542800pt;}
.yd4{bottom:136.547867pt;}
.y1dd{bottom:137.561200pt;}
.y28{bottom:137.900267pt;}
.y10b{bottom:138.147867pt;}
.y1a6{bottom:138.227867pt;}
.y162{bottom:141.255067pt;}
.y4f{bottom:147.325600pt;}
.y142{bottom:152.401067pt;}
.ya7{bottom:152.507867pt;}
.y1f7{bottom:152.534533pt;}
.y5d{bottom:152.542800pt;}
.yd3{bottom:152.547867pt;}
.y1dc{bottom:153.787867pt;}
.y1a5{bottom:154.481200pt;}
.y10a{bottom:154.507867pt;}
.y32{bottom:154.849467pt;}
.y22f{bottom:155.081200pt;}
.y272{bottom:159.251867pt;}
.y2bc{bottom:159.481867pt;}
.y161{bottom:160.491067pt;}
.y4e{bottom:162.217600pt;}
.y31{bottom:167.649467pt;}
.y141{bottom:168.401067pt;}
.ya6{bottom:168.507867pt;}
.y1f6{bottom:168.534533pt;}
.y5c{bottom:168.542800pt;}
.yd2{bottom:168.547867pt;}
.y1db{bottom:170.014533pt;}
.y271{bottom:170.581867pt;}
.y1a4{bottom:170.734533pt;}
.y2bb{bottom:170.811867pt;}
.y109{bottom:170.867867pt;}
.y22e{bottom:171.081200pt;}
.y4d{bottom:177.109600pt;}
.y160{bottom:179.727067pt;}
.y30{bottom:180.449467pt;}
.y270{bottom:181.911867pt;}
.y2ba{bottom:182.141867pt;}
.y140{bottom:184.401067pt;}
.ya5{bottom:184.507867pt;}
.y1f5{bottom:184.534533pt;}
.y5b{bottom:184.542800pt;}
.yd1{bottom:184.547867pt;}
.y1da{bottom:186.241200pt;}
.y1a3{bottom:186.987867pt;}
.y22d{bottom:187.081200pt;}
.y108{bottom:187.227867pt;}
.y4c{bottom:192.001600pt;}
.y26f{bottom:193.241867pt;}
.y2f{bottom:193.249467pt;}
.y2b9{bottom:193.471867pt;}
.y15f{bottom:198.963067pt;}
.y13f{bottom:200.401067pt;}
.ya4{bottom:200.507867pt;}
.y5a{bottom:200.542800pt;}
.yd0{bottom:200.544000pt;}
.y1d9{bottom:202.467867pt;}
.y22c{bottom:203.081200pt;}
.y1a2{bottom:203.241200pt;}
.y107{bottom:203.587867pt;}
.y26e{bottom:204.571867pt;}
.y2b8{bottom:204.801867pt;}
.y2e{bottom:206.049467pt;}
.y4b{bottom:206.893600pt;}
.y26d{bottom:215.901867pt;}
.y2b7{bottom:216.131867pt;}
.y1f4{bottom:216.307867pt;}
.y13e{bottom:216.401067pt;}
.ya3{bottom:216.507867pt;}
.y59{bottom:216.542800pt;}
.ycf{bottom:216.544000pt;}
.y15e{bottom:218.199067pt;}
.y1d8{bottom:218.694533pt;}
.y2d{bottom:218.849467pt;}
.y22b{bottom:219.081200pt;}
.y1a1{bottom:219.494533pt;}
.y106{bottom:219.947867pt;}
.y4a{bottom:221.785600pt;}
.y26c{bottom:227.231867pt;}
.y2b6{bottom:227.461867pt;}
.y1f3{bottom:232.307867pt;}
.y13d{bottom:232.401067pt;}
.ya2{bottom:232.507867pt;}
.y58{bottom:232.542800pt;}
.yce{bottom:232.544000pt;}
.y1d7{bottom:234.921200pt;}
.y22a{bottom:235.081200pt;}
.y1a0{bottom:235.747867pt;}
.y105{bottom:236.307867pt;}
.y49{bottom:236.677600pt;}
.y15d{bottom:237.435067pt;}
.y26b{bottom:238.561867pt;}
.y2b5{bottom:238.791867pt;}
.y1f2{bottom:248.307867pt;}
.y13c{bottom:248.401067pt;}
.ya1{bottom:248.507867pt;}
.ycd{bottom:248.544000pt;}
.y26a{bottom:249.891867pt;}
.y2b4{bottom:250.121867pt;}
.y229{bottom:251.081200pt;}
.y1d6{bottom:251.147867pt;}
.y48{bottom:251.569600pt;}
.y19f{bottom:252.001200pt;}
.y104{bottom:252.667867pt;}
.y15c{bottom:256.671067pt;}
.y269{bottom:261.221867pt;}
.y2b3{bottom:261.451867pt;}
.y1f1{bottom:264.307867pt;}
.y13b{bottom:264.401067pt;}
.ya0{bottom:264.507867pt;}
.ycc{bottom:264.544000pt;}
.y47{bottom:266.461600pt;}
.y228{bottom:267.081200pt;}
.y19e{bottom:268.254533pt;}
.y103{bottom:269.027867pt;}
.y27{bottom:269.829333pt;}
.y268{bottom:272.551867pt;}
.y2b2{bottom:272.781867pt;}
.y15b{bottom:275.907067pt;}
.y57{bottom:277.534800pt;}
.y1f0{bottom:280.307867pt;}
.y13a{bottom:280.401067pt;}
.y9f{bottom:280.507867pt;}
.ycb{bottom:280.544000pt;}
.y46{bottom:281.353600pt;}
.y227{bottom:283.081200pt;}
.y26{bottom:283.162667pt;}
.y267{bottom:283.881867pt;}
.y2b1{bottom:284.111867pt;}
.y19d{bottom:284.507867pt;}
.y102{bottom:285.387867pt;}
.y1d5{bottom:286.334533pt;}
.y56{bottom:292.198800pt;}
.y15a{bottom:295.143067pt;}
.y266{bottom:295.211867pt;}
.y2b0{bottom:295.441867pt;}
.y45{bottom:296.245600pt;}
.y1ef{bottom:296.307867pt;}
.y139{bottom:296.401067pt;}
.y25{bottom:296.496000pt;}
.y9e{bottom:296.507867pt;}
.yca{bottom:296.544000pt;}
.y226{bottom:299.081200pt;}
.y19c{bottom:300.761200pt;}
.y101{bottom:301.747867pt;}
.y1d4{bottom:302.561200pt;}
.y265{bottom:306.541867pt;}
.y2af{bottom:306.771867pt;}
.y55{bottom:306.862800pt;}
.y44{bottom:311.137600pt;}
.y1ee{bottom:312.307867pt;}
.y138{bottom:312.401067pt;}
.y9d{bottom:312.507867pt;}
.yc9{bottom:312.544000pt;}
.y159{bottom:314.379067pt;}
.y225{bottom:315.081200pt;}
.y19b{bottom:317.014533pt;}
.y264{bottom:317.871867pt;}
.y2ae{bottom:318.101867pt;}
.y1d3{bottom:318.787867pt;}
.y24{bottom:321.829333pt;}
.y43{bottom:326.029600pt;}
.y71{bottom:327.913147pt;}
.y1ed{bottom:328.307867pt;}
.y137{bottom:328.401067pt;}
.y9c{bottom:328.507867pt;}
.yc8{bottom:328.544000pt;}
.y263{bottom:329.201867pt;}
.y2ad{bottom:329.431867pt;}
.y100{bottom:330.107867pt;}
.y224{bottom:331.081200pt;}
.y19a{bottom:333.267867pt;}
.y158{bottom:333.615067pt;}
.y1d2{bottom:335.014533pt;}
.y23{bottom:335.162667pt;}
.y262{bottom:340.531867pt;}
.y2ac{bottom:340.761867pt;}
.y42{bottom:340.921600pt;}
.y1ec{bottom:344.307867pt;}
.y136{bottom:344.401067pt;}
.y9b{bottom:344.507867pt;}
.yff{bottom:346.467867pt;}
.y223{bottom:347.081200pt;}
.y22{bottom:348.496000pt;}
.y1d1{bottom:351.241200pt;}
.y261{bottom:351.861867pt;}
.y2ab{bottom:352.091867pt;}
.y70{bottom:352.097333pt;}
.y157{bottom:352.851067pt;}
.y41{bottom:355.813600pt;}
.yc7{bottom:358.584000pt;}
.y1eb{bottom:360.307867pt;}
.y9a{bottom:360.507867pt;}
.y21{bottom:361.829333pt;}
.yfe{bottom:362.827867pt;}
.y222{bottom:363.081200pt;}
.y260{bottom:363.191867pt;}
.y2aa{bottom:363.421867pt;}
.y6f{bottom:366.769333pt;}
.y1d0{bottom:367.467867pt;}
.y199{bottom:368.454533pt;}
.y40{bottom:370.705600pt;}
.y156{bottom:370.755067pt;}
.y25f{bottom:374.521867pt;}
.yc6{bottom:374.584000pt;}
.y2a9{bottom:374.751867pt;}
.y20{bottom:375.162667pt;}
.y135{bottom:376.241067pt;}
.y1ea{bottom:376.307867pt;}
.y99{bottom:376.507867pt;}
.y221{bottom:379.081200pt;}
.yfd{bottom:379.187867pt;}
.y6e{bottom:381.433333pt;}
.y1cf{bottom:383.694533pt;}
.y198{bottom:384.707867pt;}
.y3f{bottom:385.597600pt;}
.y25e{bottom:385.851867pt;}
.y2a8{bottom:386.081867pt;}
.y1f{bottom:388.496000pt;}
.yc5{bottom:390.584000pt;}
.y134{bottom:392.241067pt;}
.y1e9{bottom:392.307867pt;}
.y98{bottom:392.507867pt;}
.y154{bottom:392.655067pt;}
.y220{bottom:395.081200pt;}
.yfc{bottom:395.547867pt;}
.y6d{bottom:396.097333pt;}
.y25d{bottom:397.181867pt;}
.y2a7{bottom:397.411867pt;}
.y1ce{bottom:399.921200pt;}
.y3e{bottom:400.489600pt;}
.y197{bottom:400.961200pt;}
.yc4{bottom:406.584000pt;}
.y155{bottom:407.055067pt;}
.y133{bottom:408.241067pt;}
.y1e8{bottom:408.307867pt;}
.y97{bottom:408.507867pt;}
.y25c{bottom:408.511867pt;}
.y2a6{bottom:408.741867pt;}
.y1e{bottom:409.829333pt;}
.y6c{bottom:410.769333pt;}
.y21f{bottom:411.081200pt;}
.yfb{bottom:411.907867pt;}
.y3d{bottom:415.381600pt;}
.y1cd{bottom:416.147867pt;}
.y196{bottom:417.214533pt;}
.y25b{bottom:419.841867pt;}
.y2a5{bottom:420.071867pt;}
.yc3{bottom:422.584000pt;}
.y1d{bottom:423.162667pt;}
.y132{bottom:424.241067pt;}
.y1e7{bottom:424.307867pt;}
.y96{bottom:424.507867pt;}
.y6b{bottom:425.433333pt;}
.y153{bottom:426.622933pt;}
.y21e{bottom:427.081200pt;}
.yfa{bottom:428.267867pt;}
.y3c{bottom:430.273600pt;}
.y25a{bottom:431.171867pt;}
.y2a4{bottom:431.401867pt;}
.y1cc{bottom:432.374533pt;}
.y195{bottom:433.467867pt;}
.y1c{bottom:436.496000pt;}
.yc2{bottom:438.584000pt;}
.y6a{bottom:440.097333pt;}
.y131{bottom:440.241067pt;}
.y1e6{bottom:440.307867pt;}
.y95{bottom:440.507867pt;}
.y259{bottom:442.501867pt;}
.y2a3{bottom:442.731867pt;}
.y21d{bottom:443.081200pt;}
.yf9{bottom:444.627867pt;}
.y3b{bottom:445.165600pt;}
.y1cb{bottom:448.601200pt;}
.y194{bottom:449.721200pt;}
.y1b{bottom:449.829333pt;}
.y258{bottom:453.831867pt;}
.y2a2{bottom:454.061867pt;}
.yc1{bottom:454.584000pt;}
.y69{bottom:454.772000pt;}
.y130{bottom:456.241067pt;}
.y1e5{bottom:456.307867pt;}
.y94{bottom:456.507867pt;}
.y21c{bottom:459.081200pt;}
.y3a{bottom:460.057600pt;}
.yf8{bottom:460.987867pt;}
.y1a{bottom:463.162667pt;}
.y1ca{bottom:464.827867pt;}
.y257{bottom:465.161867pt;}
.y2a1{bottom:465.391867pt;}
.y193{bottom:465.974533pt;}
.y68{bottom:469.436000pt;}
.yc0{bottom:470.584000pt;}
.y12f{bottom:472.241067pt;}
.y1e4{bottom:472.307867pt;}
.y93{bottom:472.507867pt;}
.y39{bottom:474.949600pt;}
.y21b{bottom:475.081200pt;}
.y256{bottom:476.491867pt;}
.y19{bottom:476.496000pt;}
.y2a0{bottom:476.721867pt;}
.yf7{bottom:477.347867pt;}
.y152{bottom:481.047733pt;}
.y1c9{bottom:481.054533pt;}
.y192{bottom:482.227867pt;}
.y67{bottom:484.100000pt;}
.ybf{bottom:486.584000pt;}
.y255{bottom:487.821867pt;}
.y29f{bottom:488.051867pt;}
.y12e{bottom:488.241067pt;}
.y1e3{bottom:488.307867pt;}
.y92{bottom:488.507867pt;}
.y18{bottom:489.829333pt;}
.y38{bottom:489.841600pt;}
.y21a{bottom:491.081200pt;}
.yf6{bottom:493.707867pt;}
.y1c8{bottom:497.281200pt;}
.y151{bottom:497.327733pt;}
.y66{bottom:498.764000pt;}
.y254{bottom:499.151867pt;}
.y29e{bottom:499.381867pt;}
.ybe{bottom:502.584000pt;}
.y17{bottom:503.162667pt;}
.y12d{bottom:504.241067pt;}
.y91{bottom:504.507867pt;}
.y37{bottom:504.733600pt;}
.y219{bottom:507.081200pt;}
.yf5{bottom:510.067867pt;}
.y191{bottom:510.481200pt;}
.y253{bottom:510.481867pt;}
.y29d{bottom:510.711867pt;}
.y65{bottom:513.433333pt;}
.y1c7{bottom:513.507867pt;}
.y150{bottom:513.607733pt;}
.y16{bottom:516.496000pt;}
.ybd{bottom:518.584000pt;}
.y36{bottom:519.625600pt;}
.y1e2{bottom:520.081200pt;}
.y90{bottom:520.507867pt;}
.y252{bottom:521.811867pt;}
.y29c{bottom:522.041867pt;}
.y218{bottom:523.081200pt;}
.yf4{bottom:526.427867pt;}
.y190{bottom:526.734533pt;}
.y64{bottom:528.097333pt;}
.y1c6{bottom:529.734533pt;}
.y15{bottom:529.829333pt;}
.y14f{bottom:529.887733pt;}
.y251{bottom:533.145200pt;}
.y29b{bottom:533.371867pt;}
.y35{bottom:534.517600pt;}
.ybc{bottom:534.584000pt;}
.y12c{bottom:536.081200pt;}
.y8f{bottom:536.507867pt;}
.y217{bottom:539.081200pt;}
.yf3{bottom:542.787867pt;}
.y18f{bottom:542.987867pt;}
.y14{bottom:543.162667pt;}
.y29a{bottom:544.701867pt;}
.y1c5{bottom:545.961200pt;}
.y14e{bottom:546.167733pt;}
.y34{bottom:549.409600pt;}
.ybb{bottom:550.584000pt;}
.y12b{bottom:552.081200pt;}
.y8e{bottom:552.507867pt;}
.y216{bottom:555.081200pt;}
.y299{bottom:556.031867pt;}
.y63{bottom:556.302933pt;}
.y13{bottom:556.496000pt;}
.yf2{bottom:559.147867pt;}
.y18e{bottom:559.241200pt;}
.y1c4{bottom:562.187867pt;}
.y14d{bottom:562.447733pt;}
.y33{bottom:564.302933pt;}
.yba{bottom:566.584000pt;}
.y298{bottom:567.361867pt;}
.y12a{bottom:568.081200pt;}
.y8d{bottom:568.507867pt;}
.y12{bottom:569.829333pt;}
.y215{bottom:571.081200pt;}
.y18d{bottom:575.494533pt;}
.yf1{bottom:575.507867pt;}
.y1c3{bottom:578.414533pt;}
.y297{bottom:578.691867pt;}
.y14c{bottom:578.727733pt;}
.yb9{bottom:582.584000pt;}
.y11{bottom:583.162667pt;}
.y129{bottom:584.081200pt;}
.y8c{bottom:584.507867pt;}
.y214{bottom:587.081200pt;}
.y296{bottom:590.021867pt;}
.y18c{bottom:591.747867pt;}
.yf0{bottom:591.867867pt;}
.y1c2{bottom:594.641200pt;}
.y14b{bottom:595.007733pt;}
.y10{bottom:596.496000pt;}
.y250{bottom:597.185200pt;}
.yb8{bottom:598.584000pt;}
.y128{bottom:600.081200pt;}
.y8b{bottom:600.507867pt;}
.y295{bottom:601.351867pt;}
.y213{bottom:603.081200pt;}
.y18b{bottom:608.001200pt;}
.yef{bottom:608.227867pt;}
.yf{bottom:609.829333pt;}
.y24f{bottom:609.985200pt;}
.y1c1{bottom:610.867867pt;}
.y14a{bottom:611.287733pt;}
.y294{bottom:612.681867pt;}
.yb7{bottom:614.584000pt;}
.y127{bottom:616.081200pt;}
.y8a{bottom:616.507867pt;}
.y212{bottom:619.081200pt;}
.y24e{bottom:622.785200pt;}
.y293{bottom:624.011867pt;}
.y18a{bottom:624.254533pt;}
.yee{bottom:624.587867pt;}
.ye{bottom:625.633467pt;}
.y1c0{bottom:627.094533pt;}
.y149{bottom:627.567733pt;}
.yb6{bottom:630.584000pt;}
.y126{bottom:632.081200pt;}
.y89{bottom:632.507867pt;}
.y211{bottom:635.081200pt;}
.y292{bottom:635.341867pt;}
.y24d{bottom:635.585200pt;}
.y189{bottom:640.507867pt;}
.yed{bottom:640.947867pt;}
.yd{bottom:642.969467pt;}
.y1bf{bottom:643.321200pt;}
.y148{bottom:643.847733pt;}
.yb5{bottom:646.584000pt;}
.y291{bottom:646.671867pt;}
.y125{bottom:648.081200pt;}
.y24c{bottom:648.385200pt;}
.y88{bottom:648.507867pt;}
.y210{bottom:651.081200pt;}
.y188{bottom:656.761200pt;}
.yec{bottom:657.307867pt;}
.y290{bottom:658.001867pt;}
.y1be{bottom:659.547867pt;}
.y147{bottom:660.127733pt;}
.y24b{bottom:661.185200pt;}
.yb4{bottom:662.587867pt;}
.y124{bottom:664.081200pt;}
.y87{bottom:664.507867pt;}
.y20f{bottom:667.081200pt;}
.y28f{bottom:669.331867pt;}
.y187{bottom:673.014533pt;}
.yeb{bottom:673.667867pt;}
.y1bd{bottom:675.774533pt;}
.yb3{bottom:678.587867pt;}
.y24a{bottom:679.318533pt;}
.y123{bottom:680.081200pt;}
.y86{bottom:680.507867pt;}
.y28e{bottom:680.661867pt;}
.y20e{bottom:683.081200pt;}
.y186{bottom:689.267867pt;}
.yea{bottom:690.027867pt;}
.y28d{bottom:691.991867pt;}
.y1bc{bottom:692.001200pt;}
.yb2{bottom:694.587867pt;}
.yc{bottom:694.926800pt;}
.y122{bottom:696.081200pt;}
.y85{bottom:696.507867pt;}
.y249{bottom:697.451867pt;}
.y20d{bottom:699.081200pt;}
.y28c{bottom:703.321867pt;}
.y185{bottom:705.521200pt;}
.ye9{bottom:706.387867pt;}
.y1bb{bottom:708.227867pt;}
.y248{bottom:710.251867pt;}
.yb1{bottom:710.587867pt;}
.y121{bottom:712.081200pt;}
.y84{bottom:712.507867pt;}
.y28b{bottom:714.651867pt;}
.y20c{bottom:715.081200pt;}
.y175{bottom:715.607600pt;}
.y184{bottom:721.774533pt;}
.ye8{bottom:722.747867pt;}
.y1ba{bottom:724.454533pt;}
.y28a{bottom:725.981867pt;}
.yb0{bottom:726.587867pt;}
.y120{bottom:728.081200pt;}
.y247{bottom:728.385200pt;}
.y83{bottom:728.507867pt;}
.y174{bottom:728.940933pt;}
.yb{bottom:729.598800pt;}
.y20b{bottom:731.081200pt;}
.y289{bottom:737.311867pt;}
.y183{bottom:738.027867pt;}
.ye7{bottom:739.107867pt;}
.y1b9{bottom:740.681200pt;}
.y173{bottom:742.274267pt;}
.yaf{bottom:742.587867pt;}
.y11f{bottom:744.081200pt;}
.y82{bottom:744.507867pt;}
.y246{bottom:747.051867pt;}
.y20a{bottom:747.081200pt;}
.y288{bottom:748.641867pt;}
.y182{bottom:754.281200pt;}
.ye6{bottom:755.467867pt;}
.y1b8{bottom:756.907867pt;}
.yae{bottom:758.587867pt;}
.y287{bottom:759.971867pt;}
.y11e{bottom:760.081200pt;}
.y81{bottom:760.507867pt;}
.y209{bottom:763.081200pt;}
.ya{bottom:764.270800pt;}
.y245{bottom:765.185200pt;}
.y172{bottom:765.880000pt;}
.y181{bottom:770.534533pt;}
.y286{bottom:771.301867pt;}
.ye5{bottom:771.827867pt;}
.y1b7{bottom:773.134533pt;}
.yad{bottom:774.587867pt;}
.y11d{bottom:776.081200pt;}
.y80{bottom:776.507867pt;}
.y244{bottom:777.985200pt;}
.y208{bottom:779.081200pt;}
.y171{bottom:780.280000pt;}
.y285{bottom:782.631867pt;}
.ye4{bottom:788.187867pt;}
.y1b6{bottom:789.361200pt;}
.y11c{bottom:792.081200pt;}
.y7f{bottom:792.507867pt;}
.y284{bottom:793.961867pt;}
.y207{bottom:795.081200pt;}
.y243{bottom:796.118533pt;}
.y170{bottom:798.184000pt;}
.y9{bottom:798.942800pt;}
.ye3{bottom:804.547867pt;}
.y283{bottom:805.291867pt;}
.y1b5{bottom:805.587867pt;}
.y180{bottom:805.721200pt;}
.y11b{bottom:808.081200pt;}
.y7e{bottom:808.507867pt;}
.y242{bottom:808.918533pt;}
.y206{bottom:811.081200pt;}
.y282{bottom:816.621867pt;}
.y16f{bottom:817.420000pt;}
.ye2{bottom:820.907867pt;}
.y241{bottom:821.718533pt;}
.y1b4{bottom:821.814533pt;}
.y17f{bottom:821.974533pt;}
.y11a{bottom:824.081200pt;}
.y7d{bottom:824.507867pt;}
.y281{bottom:827.951867pt;}
.y8{bottom:833.614800pt;}
.y240{bottom:834.518533pt;}
.y16e{bottom:836.656000pt;}
.ye1{bottom:837.267867pt;}
.y1b3{bottom:838.041200pt;}
.y17e{bottom:838.227867pt;}
.y280{bottom:839.281867pt;}
.y119{bottom:840.081200pt;}
.y7c{bottom:840.507867pt;}
.y23f{bottom:847.318533pt;}
.y27f{bottom:850.611867pt;}
.y16d{bottom:851.056000pt;}
.ye0{bottom:853.627867pt;}
.y1b2{bottom:854.267867pt;}
.y17d{bottom:854.481200pt;}
.y205{bottom:856.067867pt;}
.y118{bottom:856.081200pt;}
.y7b{bottom:856.507867pt;}
.y27e{bottom:861.941867pt;}
.y23e{bottom:865.451867pt;}
.y7{bottom:868.286800pt;}
.ydf{bottom:869.987867pt;}
.y16c{bottom:870.292000pt;}
.y1b1{bottom:870.494533pt;}
.y17c{bottom:870.734533pt;}
.y204{bottom:872.067867pt;}
.y117{bottom:872.081200pt;}
.y7a{bottom:872.507867pt;}
.y27d{bottom:873.271867pt;}
.y23d{bottom:878.251867pt;}
.y27c{bottom:884.601867pt;}
.y16b{bottom:884.692000pt;}
.yde{bottom:886.347867pt;}
.y1b0{bottom:886.721200pt;}
.y17b{bottom:886.987867pt;}
.y203{bottom:888.067867pt;}
.y116{bottom:888.081200pt;}
.y79{bottom:888.507867pt;}
.y23c{bottom:891.051867pt;}
.y27b{bottom:895.931867pt;}
.ydd{bottom:902.707867pt;}
.y1af{bottom:902.947867pt;}
.y6{bottom:902.958800pt;}
.y17a{bottom:903.241200pt;}
.y23b{bottom:903.851867pt;}
.y16a{bottom:903.928000pt;}
.y202{bottom:904.067867pt;}
.y115{bottom:904.081200pt;}
.y78{bottom:904.507867pt;}
.y27a{bottom:907.261867pt;}
.y23a{bottom:916.651867pt;}
.y279{bottom:918.591867pt;}
.ydc{bottom:919.067867pt;}
.y1ae{bottom:919.174533pt;}
.y179{bottom:919.494533pt;}
.y201{bottom:920.067867pt;}
.y114{bottom:920.081200pt;}
.y77{bottom:920.507867pt;}
.y169{bottom:921.832000pt;}
.y239{bottom:929.451867pt;}
.y278{bottom:929.921867pt;}
.y1ad{bottom:935.401200pt;}
.ydb{bottom:935.427867pt;}
.y178{bottom:935.747867pt;}
.y200{bottom:936.067867pt;}
.y113{bottom:936.081200pt;}
.y76{bottom:936.507867pt;}
.y5{bottom:937.630800pt;}
.y277{bottom:941.251867pt;}
.y167{bottom:943.732000pt;}
.y238{bottom:947.585200pt;}
.y1ac{bottom:951.627867pt;}
.yda{bottom:951.787867pt;}
.y177{bottom:952.001200pt;}
.y1ff{bottom:952.067867pt;}
.y112{bottom:952.081200pt;}
.y75{bottom:952.507867pt;}
.y276{bottom:952.581867pt;}
.y168{bottom:958.132000pt;}
.y237{bottom:960.385200pt;}
.y275{bottom:963.911867pt;}
.y1ab{bottom:967.854533pt;}
.y1fe{bottom:968.067867pt;}
.y111{bottom:968.081200pt;}
.yd9{bottom:968.147867pt;}
.y176{bottom:968.254533pt;}
.y74{bottom:968.507867pt;}
.y4{bottom:972.302800pt;}
.y236{bottom:973.185200pt;}
.y274{bottom:975.241867pt;}
.y166{bottom:977.699867pt;}
.y1fd{bottom:984.067867pt;}
.y110{bottom:984.081200pt;}
.y73{bottom:984.507867pt;}
.y235{bottom:985.985200pt;}
.y273{bottom:986.571867pt;}
.y3{bottom:1014.174400pt;}
.y72{bottom:1014.174533pt;}
.h12{height:24.836864pt;}
.h13{height:29.240000pt;}
.h8{height:31.061333pt;}
.h11{height:31.189333pt;}
.h10{height:35.088000pt;}
.h3{height:37.461333pt;}
.h2{height:38.826667pt;}
.h4{height:38.986667pt;}
.ha{height:39.573333pt;}
.hd{height:40.000000pt;}
.h9{height:42.144000pt;}
.hc{height:50.062500pt;}
.he{height:50.221653pt;}
.hb{height:50.237120pt;}
.hf{height:50.252587pt;}
.h6{height:54.832976pt;}
.h7{height:54.843643pt;}
.h5{height:85.536458pt;}
.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;}
.x11{left:64.557333pt;}
.xd{left:65.997333pt;}
.x1a{left:70.000000pt;}
.x12{left:74.666667pt;}
.x4{left:195.892800pt;}
.x2{left:229.626667pt;}
.x13{left:294.365333pt;}
.x14{left:383.693333pt;}
.xe{left:409.184000pt;}
.xf{left:421.190267pt;}
.x1b{left:430.350000pt;}
.x18{left:433.037333pt;}
.x15{left:471.689333pt;}
.x8{left:477.793600pt;}
.x9{left:485.794533pt;}
.xa{left:496.351867pt;}
.xb{left:501.794533pt;}
.x16{left:562.361333pt;}
.x19{left:585.041333pt;}
.x10{left:643.296800pt;}
.x17{left:653.033333pt;}
.x7{left:674.688667pt;}
.x1{left:733.300800pt;}
.xc{left:770.666667pt;}
}




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