
    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_79c064756ca35c25c60b8825.woff')format("woff");}.ff1{font-family:ff1;line-height:0.682617;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_506126b30f7e462d3a919d46.woff')format("woff");}.ff2{font-family:ff2;line-height:0.922852;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_99ceb4438fde3fc688fe0d8b.woff')format("woff");}.ff3{font-family:ff3;line-height:0.907715;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_b0f74909e4251c58f7867597.woff')format("woff");}.ff4{font-family:ff4;line-height:0.831000;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_3bd136db5d1905256527f711.woff')format("woff");}.ff5{font-family:ff5;line-height:1.090332;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_cdba199b4a5e1b5f6a568fbe.woff')format("woff");}.ff6{font-family:ff6;line-height:1.028000;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_9b4393380c74a2cfd2fb95a2.woff')format("woff");}.ff7{font-family:ff7;line-height:1.082031;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_d97cc4e54d88a8ed687469c6.woff')format("woff");}.ff8{font-family:ff8;line-height:0.922852;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_d855ef6033449201ec1b2887.woff')format("woff");}.ff9{font-family:ff9;line-height:0.899414;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_c81cc691c5052c815001c61b.woff')format("woff");}.ffa{font-family:ffa;line-height:0.899414;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_d7bc21e4a6afbab01dd14c20.woff')format("woff");}.ffb{font-family:ffb;line-height:0.899414;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v2{vertical-align:-16.830000px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:15.384000px;}
.v1{vertical-align:19.680000px;}
.v3{vertical-align:23.760000px;}
.ls16{letter-spacing:-7.200000px;}
.ls12{letter-spacing:-4.680000px;}
.ls29{letter-spacing:-4.536000px;}
.ls15{letter-spacing:-2.736000px;}
.ls11{letter-spacing:-2.232000px;}
.ls35{letter-spacing:-1.872000px;}
.ls2e{letter-spacing:-1.152000px;}
.ls1a{letter-spacing:-0.936000px;}
.lsb{letter-spacing:-0.792000px;}
.ls10{letter-spacing:-0.720000px;}
.ls27{letter-spacing:-0.648000px;}
.ls7{letter-spacing:-0.600000px;}
.lsd{letter-spacing:-0.576000px;}
.ls1e{letter-spacing:-0.504000px;}
.ls36{letter-spacing:-0.480000px;}
.lse{letter-spacing:-0.432000px;}
.lsc{letter-spacing:-0.360000px;}
.ls6{letter-spacing:-0.300000px;}
.ls20{letter-spacing:-0.288000px;}
.ls1b{letter-spacing:-0.252000px;}
.ls2c{letter-spacing:-0.240000px;}
.lsf{letter-spacing:-0.216000px;}
.ls30{letter-spacing:-0.210000px;}
.ls2b{letter-spacing:-0.144000px;}
.ls2d{letter-spacing:-0.100800px;}
.ls1f{letter-spacing:-0.072000px;}
.ls4{letter-spacing:0.000000px;}
.ls22{letter-spacing:0.035400px;}
.ls13{letter-spacing:0.072000px;}
.ls2f{letter-spacing:0.129600px;}
.ls18{letter-spacing:0.144000px;}
.ls28{letter-spacing:0.216000px;}
.ls19{letter-spacing:0.288000px;}
.ls3b{letter-spacing:0.300000px;}
.ls26{letter-spacing:0.301800px;}
.ls8{letter-spacing:0.360000px;}
.ls1d{letter-spacing:0.432000px;}
.ls9{letter-spacing:0.504000px;}
.lsa{letter-spacing:0.576000px;}
.ls14{letter-spacing:0.648000px;}
.ls1c{letter-spacing:0.720000px;}
.ls23{letter-spacing:0.792000px;}
.ls17{letter-spacing:0.864000px;}
.ls24{letter-spacing:2.246400px;}
.ls0{letter-spacing:2.850000px;}
.ls39{letter-spacing:2.913600px;}
.ls32{letter-spacing:2.918400px;}
.ls33{letter-spacing:2.932800px;}
.ls37{letter-spacing:2.952000px;}
.ls34{letter-spacing:2.976000px;}
.ls2{letter-spacing:3.000000px;}
.ls38{letter-spacing:3.408000px;}
.ls3a{letter-spacing:3.660000px;}
.ls3c{letter-spacing:4.266000px;}
.ls3{letter-spacing:4.560000px;}
.ls31{letter-spacing:4.752000px;}
.ls21{letter-spacing:5.205600px;}
.ls3d{letter-spacing:8.100000px;}
.ls5{letter-spacing:8.460000px;}
.ls1{letter-spacing:10.740000px;}
.ls25{letter-spacing:397.260000px;}
.ls2a{letter-spacing:413.220000px;}
.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;}
}
.ws3{word-spacing:-25.320000px;}
.ws2d{word-spacing:-20.232000px;}
.ws2{word-spacing:-19.860000px;}
.ws1{word-spacing:-18.867000px;}
.ws10{word-spacing:-18.288000px;}
.ws4c{word-spacing:-18.072000px;}
.ws102{word-spacing:-17.856000px;}
.ws9b{word-spacing:-17.784000px;}
.ws11{word-spacing:-17.424000px;}
.ws2e{word-spacing:-16.860000px;}
.ws2f{word-spacing:-16.260000px;}
.ws6c{word-spacing:-14.162400px;}
.wsfe{word-spacing:-14.061600px;}
.ws3d{word-spacing:-13.910400px;}
.wsff{word-spacing:-13.658400px;}
.ws111{word-spacing:-13.488000px;}
.ws116{word-spacing:-13.248000px;}
.ws114{word-spacing:-12.864000px;}
.ws110{word-spacing:-12.336000px;}
.ws117{word-spacing:-11.856000px;}
.wsf{word-spacing:-11.802000px;}
.ws103{word-spacing:-11.592000px;}
.ws112{word-spacing:-11.376000px;}
.wsf9{word-spacing:-8.460000px;}
.ws118{word-spacing:-8.299200px;}
.ws119{word-spacing:-8.100000px;}
.ws113{word-spacing:-4.752000px;}
.wsc{word-spacing:-4.560000px;}
.ws1e{word-spacing:-2.088000px;}
.ws1b{word-spacing:-2.016000px;}
.wsb6{word-spacing:-1.944000px;}
.ws53{word-spacing:-1.872000px;}
.wsb9{word-spacing:-1.800000px;}
.ws109{word-spacing:-1.512000px;}
.wsb5{word-spacing:-1.440000px;}
.ws21{word-spacing:-1.224000px;}
.ws4d{word-spacing:-1.152000px;}
.ws50{word-spacing:-1.080000px;}
.ws51{word-spacing:-0.936000px;}
.wsf6{word-spacing:-0.864000px;}
.ws1c{word-spacing:-0.792000px;}
.wsb4{word-spacing:-0.648000px;}
.ws20{word-spacing:-0.576000px;}
.wsbc{word-spacing:-0.504000px;}
.ws4e{word-spacing:-0.432000px;}
.ws24{word-spacing:-0.360000px;}
.ws11a{word-spacing:-0.300000px;}
.ws4a{word-spacing:-0.288000px;}
.ws72{word-spacing:-0.216000px;}
.ws2b{word-spacing:-0.144000px;}
.ws2c{word-spacing:-0.072000px;}
.wsa{word-spacing:0.000000px;}
.ws56{word-spacing:0.072000px;}
.ws32{word-spacing:0.216000px;}
.wsfd{word-spacing:0.240000px;}
.ws70{word-spacing:0.288000px;}
.ws12{word-spacing:0.360000px;}
.ws29{word-spacing:0.432000px;}
.ws115{word-spacing:0.480000px;}
.ws52{word-spacing:0.504000px;}
.wse{word-spacing:0.528000px;}
.wsb7{word-spacing:0.576000px;}
.wsd{word-spacing:0.600000px;}
.ws55{word-spacing:0.648000px;}
.ws4f{word-spacing:0.720000px;}
.ws1d{word-spacing:0.792000px;}
.ws44{word-spacing:0.864000px;}
.ws47{word-spacing:0.936000px;}
.ws54{word-spacing:1.080000px;}
.ws78{word-spacing:1.152000px;}
.ws107{word-spacing:1.224000px;}
.ws3e{word-spacing:1.296000px;}
.ws48{word-spacing:1.368000px;}
.wscf{word-spacing:1.440000px;}
.ws25{word-spacing:1.584000px;}
.wsf8{word-spacing:1.656000px;}
.ws9{word-spacing:1.800000px;}
.wsd0{word-spacing:1.872000px;}
.ws5a{word-spacing:1.944000px;}
.ws63{word-spacing:2.016000px;}
.ws85{word-spacing:2.088000px;}
.ws27{word-spacing:2.160000px;}
.ws18{word-spacing:2.232000px;}
.ws86{word-spacing:2.304000px;}
.ws82{word-spacing:2.376000px;}
.ws3c{word-spacing:2.400000px;}
.ws10b{word-spacing:2.448000px;}
.ws4b{word-spacing:2.520000px;}
.wsf7{word-spacing:2.592000px;}
.ws17{word-spacing:2.664000px;}
.ws31{word-spacing:2.736000px;}
.ws101{word-spacing:2.880000px;}
.ws5c{word-spacing:2.952000px;}
.wsfc{word-spacing:2.976000px;}
.ws83{word-spacing:3.024000px;}
.wsb8{word-spacing:3.096000px;}
.ws6f{word-spacing:3.240000px;}
.wsc4{word-spacing:3.312000px;}
.ws3b{word-spacing:3.360000px;}
.ws10c{word-spacing:3.384000px;}
.ws75{word-spacing:3.456000px;}
.ws84{word-spacing:3.528000px;}
.ws3f{word-spacing:3.600000px;}
.ws22{word-spacing:3.672000px;}
.ws6{word-spacing:3.720000px;}
.ws13{word-spacing:3.888000px;}
.ws46{word-spacing:3.960000px;}
.wsb{word-spacing:3.990000px;}
.ws6a{word-spacing:4.032000px;}
.ws6e{word-spacing:4.104000px;}
.ws76{word-spacing:4.176000px;}
.ws4{word-spacing:4.200000px;}
.ws36{word-spacing:4.248000px;}
.wsc5{word-spacing:4.320000px;}
.ws5e{word-spacing:4.392000px;}
.ws97{word-spacing:4.464000px;}
.ws74{word-spacing:4.536000px;}
.wsb2{word-spacing:4.608000px;}
.ws28{word-spacing:4.680000px;}
.ws23{word-spacing:4.752000px;}
.ws71{word-spacing:4.896000px;}
.ws40{word-spacing:4.968000px;}
.ws15{word-spacing:5.040000px;}
.ws1f{word-spacing:5.112000px;}
.ws10d{word-spacing:5.184000px;}
.ws100{word-spacing:5.328000px;}
.ws9a{word-spacing:5.400000px;}
.ws64{word-spacing:5.472000px;}
.ws33{word-spacing:5.544000px;}
.ws10e{word-spacing:5.616000px;}
.ws38{word-spacing:5.688000px;}
.ws99{word-spacing:5.760000px;}
.wsba{word-spacing:5.832000px;}
.wsd3{word-spacing:5.904000px;}
.ws95{word-spacing:5.976000px;}
.ws34{word-spacing:6.048000px;}
.ws35{word-spacing:6.120000px;}
.ws10a{word-spacing:6.192000px;}
.ws108{word-spacing:6.264000px;}
.ws5f{word-spacing:6.336000px;}
.ws14{word-spacing:6.480000px;}
.ws98{word-spacing:6.552000px;}
.ws77{word-spacing:6.624000px;}
.wsb1{word-spacing:6.696000px;}
.ws16{word-spacing:6.768000px;}
.ws3a{word-spacing:6.840000px;}
.ws81{word-spacing:6.912000px;}
.ws2a{word-spacing:6.984000px;}
.ws45{word-spacing:7.056000px;}
.ws5d{word-spacing:7.128000px;}
.wsfa{word-spacing:7.200000px;}
.ws68{word-spacing:7.272000px;}
.wsb3{word-spacing:7.416000px;}
.wsd2{word-spacing:7.488000px;}
.wsbb{word-spacing:7.560000px;}
.ws5b{word-spacing:7.632000px;}
.ws60{word-spacing:7.776000px;}
.ws10f{word-spacing:7.848000px;}
.ws39{word-spacing:7.992000px;}
.ws6d{word-spacing:8.136000px;}
.ws49{word-spacing:8.208000px;}
.ws105{word-spacing:8.280000px;}
.ws73{word-spacing:8.352000px;}
.ws0{word-spacing:8.376000px;}
.ws8{word-spacing:8.400000px;}
.wsf5{word-spacing:8.424000px;}
.wsd1{word-spacing:8.496000px;}
.wsc6{word-spacing:8.640000px;}
.wsc7{word-spacing:8.712000px;}
.ws59{word-spacing:8.784000px;}
.ws30{word-spacing:8.856000px;}
.ws106{word-spacing:8.928000px;}
.wsfb{word-spacing:9.000000px;}
.ws57{word-spacing:9.072000px;}
.ws43{word-spacing:9.144000px;}
.ws41{word-spacing:9.288000px;}
.ws96{word-spacing:9.360000px;}
.ws66{word-spacing:9.432000px;}
.ws58{word-spacing:9.504000px;}
.ws19{word-spacing:9.648000px;}
.ws94{word-spacing:9.720000px;}
.ws1a{word-spacing:9.864000px;}
.ws104{word-spacing:9.936000px;}
.ws42{word-spacing:10.080000px;}
.ws26{word-spacing:10.152000px;}
.ws67{word-spacing:10.656000px;}
.ws6b{word-spacing:11.664000px;}
.ws61{word-spacing:12.168000px;}
.ws65{word-spacing:12.600000px;}
.ws62{word-spacing:12.960000px;}
.ws69{word-spacing:13.176000px;}
.ws37{word-spacing:17.352000px;}
.ws5{word-spacing:22.140000px;}
.wsd8{word-spacing:26.286000px;}
.wsd9{word-spacing:27.138000px;}
.wsd6{word-spacing:29.508000px;}
.wsd4{word-spacing:39.294000px;}
.wsd7{word-spacing:45.600000px;}
.wscd{word-spacing:46.926000px;}
.wsce{word-spacing:47.778000px;}
.wsca{word-spacing:50.148000px;}
.wsc8{word-spacing:59.934000px;}
.ws87{word-spacing:60.726000px;}
.ws89{word-spacing:61.578000px;}
.wsc1{word-spacing:62.706000px;}
.wsc2{word-spacing:63.558000px;}
.ws7d{word-spacing:63.948000px;}
.wsbf{word-spacing:65.928000px;}
.wscc{word-spacing:66.240000px;}
.ws92{word-spacing:68.466000px;}
.ws93{word-spacing:69.318000px;}
.ws8e{word-spacing:71.688000px;}
.ws7{word-spacing:73.140000px;}
.ws7a{word-spacing:73.734000px;}
.wsa0{word-spacing:75.546000px;}
.wsbd{word-spacing:75.714000px;}
.wsad{word-spacing:76.398000px;}
.wsa9{word-spacing:78.768000px;}
.ws7b{word-spacing:79.860000px;}
.ws9c{word-spacing:79.926000px;}
.ws7f{word-spacing:80.040000px;}
.wsaa{word-spacing:80.778000px;}
.ws8c{word-spacing:81.474000px;}
.wsc0{word-spacing:82.020000px;}
.wsa1{word-spacing:83.148000px;}
.ws90{word-spacing:87.780000px;}
.wsa6{word-spacing:88.554000px;}
.wsf1{word-spacing:89.586000px;}
.wse3{word-spacing:90.438000px;}
.wsea{word-spacing:92.808000px;}
.wsa4{word-spacing:92.934000px;}
.ws9d{word-spacing:94.560000px;}
.wsa3{word-spacing:94.860000px;}
.wsa7{word-spacing:99.240000px;}
.wse7{word-spacing:102.594000px;}
.wse5{word-spacing:102.906000px;}
.wseb{word-spacing:103.758000px;}
.wsd5{word-spacing:104.700000px;}
.wsf2{word-spacing:106.128000px;}
.ws7c{word-spacing:106.980000px;}
.wsed{word-spacing:108.900000px;}
.ws7e{word-spacing:109.860000px;}
.wse8{word-spacing:115.914000px;}
.wsbe{word-spacing:119.040000px;}
.wsa8{word-spacing:119.826000px;}
.ws9e{word-spacing:120.678000px;}
.wse1{word-spacing:121.026000px;}
.wsef{word-spacing:121.878000px;}
.wsee{word-spacing:122.220000px;}
.wsa2{word-spacing:123.048000px;}
.ws80{word-spacing:123.960000px;}
.wse6{word-spacing:124.248000px;}
.wsa5{word-spacing:132.834000px;}
.wse9{word-spacing:134.034000px;}
.wsac{word-spacing:139.140000px;}
.wsdf{word-spacing:139.206000px;}
.ws88{word-spacing:139.860000px;}
.wse0{word-spacing:140.058000px;}
.wsec{word-spacing:140.340000px;}
.wsdd{word-spacing:142.428000px;}
.wsc3{word-spacing:147.360000px;}
.ws8b{word-spacing:148.260000px;}
.wsdb{word-spacing:152.214000px;}
.ws8a{word-spacing:153.960000px;}
.wsda{word-spacing:154.560000px;}
.wsde{word-spacing:158.520000px;}
.ws9f{word-spacing:159.480000px;}
.ws79{word-spacing:166.620000px;}
.wsdc{word-spacing:168.600000px;}
.wse2{word-spacing:170.520000px;}
.ws8d{word-spacing:178.260000px;}
.ws8f{word-spacing:199.260000px;}
.wse4{word-spacing:199.800000px;}
.ws91{word-spacing:214.620000px;}
.wsc9{word-spacing:254.820000px;}
.wsb0{word-spacing:274.560000px;}
.wscb{word-spacing:300.660000px;}
.wsab{word-spacing:304.560000px;}
.wsf0{word-spacing:320.520000px;}
.wsae{word-spacing:334.560000px;}
.wsf4{word-spacing:350.520000px;}
.wsf3{word-spacing:379.800000px;}
.wsaf{word-spacing:399.480000px;}
._e{margin-left:-940.386000px;}
._4{margin-left:-66.506400px;}
._19{margin-left:-30.384000px;}
._1a{margin-left:-27.436500px;}
._37{margin-left:-25.932000px;}
._1c{margin-left:-24.594000px;}
._1b{margin-left:-22.918500px;}
._45{margin-left:-19.981500px;}
._5d{margin-left:-16.855500px;}
._2{margin-left:-15.000000px;}
._18{margin-left:-13.998900px;}
._5{margin-left:-11.640000px;}
._65{margin-left:-9.525600px;}
._12{margin-left:-8.280000px;}
._c{margin-left:-6.298500px;}
._a{margin-left:-5.004000px;}
._8{margin-left:-3.300000px;}
._b{margin-left:-2.118000px;}
._1{margin-left:-1.020000px;}
._6{width:1.738500px;}
._7{width:3.264000px;}
._9{width:4.512000px;}
._d{width:6.034500px;}
._13{width:7.579200px;}
._10{width:9.590400px;}
._f{width:10.756800px;}
._5c{width:12.630000px;}
._64{width:13.796100px;}
._66{width:16.296000px;}
._5f{width:29.346000px;}
._11{width:31.645500px;}
._17{width:32.832000px;}
._5e{width:34.159500px;}
._14{width:44.820000px;}
._3{width:48.000000px;}
._5b{width:49.027500px;}
._53{width:54.720000px;}
._54{width:68.173500px;}
._51{width:69.804000px;}
._15{width:79.002000px;}
._57{width:84.720000px;}
._52{width:86.269500px;}
._46{width:94.860000px;}
._16{width:97.146000px;}
._55{width:100.990500px;}
._5a{width:102.600000px;}
._29{width:105.600000px;}
._21{width:116.818500px;}
._1f{width:119.578500px;}
._27{width:123.840000px;}
._2b{width:126.720000px;}
._56{width:133.126500px;}
._2a{width:135.120000px;}
._2c{width:140.820000px;}
._1e{width:146.698500px;}
._47{width:151.990500px;}
._2e{width:153.840000px;}
._1d{width:157.978500px;}
._28{width:161.340000px;}
._49{width:164.220000px;}
._26{width:165.984000px;}
._58{width:167.328000px;}
._59{width:168.337500px;}
._33{width:170.280000px;}
._4b{width:181.590000px;}
._30{width:182.976000px;}
._20{width:184.198500px;}
._36{width:187.584000px;}
._2f{width:191.340000px;}
._4a{width:193.093500px;}
._2d{width:194.353500px;}
._31{width:195.972000px;}
._25{width:197.580000px;}
._0{width:201.564000px;}
._35{width:203.424000px;}
._48{width:206.220000px;}
._23{width:210.600000px;}
._3a{width:216.036000px;}
._22{width:221.880000px;}
._38{width:228.144000px;}
._32{width:229.680000px;}
._3c{width:231.480000px;}
._34{width:240.163500px;}
._41{width:241.812000px;}
._61{width:245.041500px;}
._40{width:246.120000px;}
._24{width:248.100000px;}
._39{width:251.400000px;}
._3d{width:270.960000px;}
._3b{width:273.150000px;}
._3f{width:281.400000px;}
._42{width:285.361500px;}
._60{width:288.901500px;}
._3e{width:303.120000px;}
._63{width:309.003000px;}
._4c{width:316.620000px;}
._44{width:337.563000px;}
._43{width:343.741500px;}
._62{width:347.341500px;}
._4e{width:376.560000px;}
._4f{width:378.913500px;}
._4d{width:380.544000px;}
._50{width:424.723500px;}
.fc0{color:rgb(0,0,0);}
.fs9{font-size:33.600000px;}
.fs6{font-size:35.700000px;}
.fs5{font-size:42.000000px;}
.fs4{font-size:48.000000px;}
.fs8{font-size:50.400000px;}
.fs7{font-size:54.000000px;}
.fs1{font-size:57.000000px;}
.fs0{font-size:60.000000px;}
.fs3{font-size:72.000000px;}
.fs2{font-size:120.000000px;}
.y0{bottom:0.000000px;}
.y2{bottom:55.500000px;}
.y1{bottom:72.000000px;}
.y5b{bottom:117.000000px;}
.yb7{bottom:117.078000px;}
.y21f{bottom:118.452750px;}
.y236{bottom:119.200350px;}
.y26d{bottom:119.400000px;}
.y29c{bottom:119.754000px;}
.y144{bottom:120.050850px;}
.y1bf{bottom:120.543300px;}
.y25{bottom:120.838650px;}
.y18f{bottom:120.899850px;}
.y48{bottom:121.207500px;}
.y134{bottom:121.239150px;}
.yd9{bottom:122.904000px;}
.y23c{bottom:123.300000px;}
.y1af{bottom:123.835350px;}
.y115{bottom:127.033650px;}
.y5a{bottom:132.000000px;}
.y26c{bottom:133.944000px;}
.y29b{bottom:135.054000px;}
.yfa{bottom:136.207500px;}
.yb6{bottom:138.984000px;}
.y47{bottom:139.500000px;}
.y24{bottom:139.588650px;}
.y21e{bottom:140.952750px;}
.y235{bottom:141.250350px;}
.y143{bottom:143.000850px;}
.y1be{bottom:143.043300px;}
.y18e{bottom:143.705850px;}
.y133{bottom:144.333150px;}
.y23b{bottom:146.250000px;}
.yd8{bottom:146.304000px;}
.y1ae{bottom:146.335350px;}
.y1ef{bottom:147.000000px;}
.y26b{bottom:148.500000px;}
.y29a{bottom:150.354000px;}
.y59{bottom:151.207500px;}
.y114{bottom:154.018650px;}
.yf9{bottom:154.500000px;}
.y46{bottom:158.707500px;}
.y2c2{bottom:159.738150px;}
.yb5{bottom:160.890000px;}
.y91{bottom:162.000000px;}
.y26a{bottom:163.044000px;}
.y234{bottom:163.300350px;}
.y21d{bottom:163.452750px;}
.y299{bottom:165.498000px;}
.y1bd{bottom:165.543300px;}
.y142{bottom:165.950850px;}
.y23{bottom:166.241400px;}
.y18d{bottom:166.511850px;}
.y1ad{bottom:168.835350px;}
.y23a{bottom:169.200000px;}
.yd7{bottom:169.704000px;}
.yf8{bottom:173.707500px;}
.y164{bottom:176.272050px;}
.y1ee{bottom:177.000000px;}
.y269{bottom:177.888000px;}
.y2c1{bottom:178.488150px;}
.y298{bottom:180.642000px;}
.y113{bottom:181.003650px;}
.yb4{bottom:182.796000px;}
.y22{bottom:184.391400px;}
.y90{bottom:184.500000px;}
.y233{bottom:185.350350px;}
.y21c{bottom:185.952750px;}
.y1bc{bottom:188.043300px;}
.y141{bottom:188.900850px;}
.y18c{bottom:189.317850px;}
.y58{bottom:189.372000px;}
.y213{bottom:189.984000px;}
.y1ed{bottom:192.000000px;}
.y239{bottom:192.150000px;}
.y268{bottom:192.744000px;}
.yd6{bottom:193.104000px;}
.y132{bottom:193.404300px;}
.y297{bottom:195.786000px;}
.yf7{bottom:196.207500px;}
.y2c0{bottom:197.238150px;}
.y1f2{bottom:198.504000px;}
.y163{bottom:199.528050px;}
.y45{bottom:201.846000px;}
.y21{bottom:202.541400px;}
.yb3{bottom:204.702000px;}
.y8f{bottom:207.000000px;}
.y232{bottom:207.400350px;}
.y267{bottom:207.588000px;}
.y112{bottom:207.988650px;}
.y21b{bottom:208.452750px;}
.y1bb{bottom:210.543300px;}
.y296{bottom:210.930000px;}
.y140{bottom:211.850850px;}
.y57{bottom:211.872000px;}
.y212{bottom:212.034000px;}
.y18b{bottom:212.123850px;}
.y238{bottom:215.100000px;}
.y2bf{bottom:215.988150px;}
.yd5{bottom:216.504000px;}
.y1ac{bottom:216.705150px;}
.y131{bottom:220.389300px;}
.y20{bottom:220.691400px;}
.y1f1{bottom:221.004000px;}
.y1ec{bottom:222.000000px;}
.y266{bottom:222.432000px;}
.y162{bottom:222.784050px;}
.y44{bottom:224.796000px;}
.y295{bottom:226.074000px;}
.yb2{bottom:226.608000px;}
.y231{bottom:229.450350px;}
.y8e{bottom:229.500000px;}
.y21a{bottom:230.952750px;}
.y211{bottom:234.084000px;}
.y2be{bottom:234.738150px;}
.y13f{bottom:234.800850px;}
.y56{bottom:234.822000px;}
.y18a{bottom:234.929850px;}
.y111{bottom:234.973650px;}
.y265{bottom:237.288000px;}
.yf6{bottom:238.050000px;}
.y1f{bottom:238.841400px;}
.yd4{bottom:239.904000px;}
.y1eb{bottom:241.207500px;}
.y294{bottom:241.218000px;}
.y1f0{bottom:243.504000px;}
.y1ab{bottom:243.690150px;}
.y161{bottom:246.040050px;}
.y130{bottom:247.374300px;}
.y43{bottom:247.440000px;}
.yb1{bottom:248.514000px;}
.y230{bottom:251.500350px;}
.y8d{bottom:252.000000px;}
.y264{bottom:252.132000px;}
.y219{bottom:253.452750px;}
.y2bd{bottom:253.488150px;}
.y1ba{bottom:255.543300px;}
.y293{bottom:256.362000px;}
.y210{bottom:256.440000px;}
.y1e{bottom:256.991400px;}
.y189{bottom:257.735850px;}
.y13e{bottom:257.750850px;}
.y55{bottom:257.772000px;}
.yf5{bottom:261.000000px;}
.y110{bottom:261.958650px;}
.yd3{bottom:263.304000px;}
.y263{bottom:266.976000px;}
.y160{bottom:269.296050px;}
.y42{bottom:270.084000px;}
.yb0{bottom:270.420000px;}
.y1aa{bottom:270.675150px;}
.y292{bottom:271.506000px;}
.y22f{bottom:273.550350px;}
.y12f{bottom:274.359300px;}
.y8c{bottom:274.500000px;}
.y1d{bottom:275.141400px;}
.y218{bottom:275.952750px;}
.y1b9{bottom:278.043300px;}
.y20f{bottom:278.796000px;}
.y188{bottom:280.541850px;}
.y13d{bottom:280.700850px;}
.y54{bottom:280.722000px;}
.y262{bottom:281.820000px;}
.y1ea{bottom:283.578000px;}
.yf4{bottom:283.950000px;}
.yd2{bottom:286.704000px;}
.y291{bottom:286.764000px;}
.y10f{bottom:288.943650px;}
.y2bc{bottom:290.988150px;}
.yaf{bottom:292.326000px;}
.y15f{bottom:292.552050px;}
.y41{bottom:292.728000px;}
.y1c{bottom:293.291400px;}
.y22e{bottom:295.600350px;}
.y261{bottom:296.664000px;}
.y8b{bottom:297.000000px;}
.y1a9{bottom:297.660150px;}
.y1b8{bottom:300.543300px;}
.y20e{bottom:301.152000px;}
.y12e{bottom:301.344300px;}
.y290{bottom:301.908000px;}
.y187{bottom:303.347850px;}
.y13c{bottom:303.650850px;}
.y53{bottom:303.672000px;}
.y1e9{bottom:305.772000px;}
.yf3{bottom:306.900000px;}
.yd1{bottom:310.104000px;}
.y1b{bottom:311.441400px;}
.y260{bottom:311.520000px;}
.yae{bottom:314.232000px;}
.y40{bottom:315.372000px;}
.y15e{bottom:315.808050px;}
.y10e{bottom:315.928650px;}
.y28f{bottom:317.052000px;}
.y22d{bottom:317.650350px;}
.y8a{bottom:319.500000px;}
.y2bb{bottom:320.988150px;}
.y1b7{bottom:323.043300px;}
.y20d{bottom:323.508000px;}
.y1a8{bottom:324.645150px;}
.y186{bottom:326.153850px;}
.y25f{bottom:326.364000px;}
.y52{bottom:326.622150px;}
.y1e8{bottom:327.966000px;}
.y12d{bottom:328.329300px;}
.y1a{bottom:329.591400px;}
.y237{bottom:329.850000px;}
.y28e{bottom:332.196000px;}
.yd0{bottom:333.504000px;}
.yad{bottom:336.138000px;}
.y3f{bottom:338.016000px;}
.y15d{bottom:339.064050px;}
.y22c{bottom:339.700350px;}
.y2ba{bottom:339.738150px;}
.y25e{bottom:341.208000px;}
.y89{bottom:342.000000px;}
.y10d{bottom:342.913650px;}
.y1b6{bottom:345.543300px;}
.y20c{bottom:345.864000px;}
.y12c{bottom:347.079300px;}
.y28d{bottom:347.340000px;}
.y19{bottom:347.741400px;}
.y185{bottom:348.959850px;}
.y13b{bottom:349.550850px;}
.y51{bottom:349.572150px;}
.y1e7{bottom:350.160000px;}
.y1a7{bottom:351.630150px;}
.yf2{bottom:352.800000px;}
.y25d{bottom:356.052000px;}
.ycf{bottom:356.904000px;}
.yac{bottom:358.044000px;}
.y2b9{bottom:358.488150px;}
.y3e{bottom:360.660000px;}
.y10c{bottom:361.663650px;}
.y22b{bottom:361.750350px;}
.y15c{bottom:362.320050px;}
.y28c{bottom:362.484000px;}
.y88{bottom:364.500000px;}
.y12b{bottom:365.829300px;}
.y18{bottom:365.891400px;}
.y1b5{bottom:368.043300px;}
.y20b{bottom:368.220000px;}
.y1a6{bottom:369.630150px;}
.y25c{bottom:370.896000px;}
.y184{bottom:371.765850px;}
.y1e6{bottom:372.354000px;}
.y13a{bottom:372.500850px;}
.y50{bottom:372.522150px;}
.yf1{bottom:375.750000px;}
.y2b8{bottom:377.238150px;}
.y28b{bottom:377.628000px;}
.yab{bottom:379.950000px;}
.yce{bottom:380.304000px;}
.y10b{bottom:380.413650px;}
.y3d{bottom:383.304000px;}
.y22a{bottom:383.800350px;}
.y25b{bottom:385.752000px;}
.y87{bottom:387.000000px;}
.y1b4{bottom:390.543300px;}
.y20a{bottom:390.576000px;}
.y17{bottom:392.546400px;}
.y28a{bottom:392.772000px;}
.y1e5{bottom:394.548000px;}
.y183{bottom:394.571850px;}
.y139{bottom:395.450850px;}
.y4f{bottom:395.472150px;}
.y2b7{bottom:395.988150px;}
.y1a5{bottom:396.615150px;}
.yf0{bottom:398.700000px;}
.y25a{bottom:400.596000px;}
.yaa{bottom:401.856000px;}
.ycd{bottom:403.704000px;}
.y12a{bottom:405.565800px;}
.y229{bottom:405.850350px;}
.y3c{bottom:405.948000px;}
.y289{bottom:407.916000px;}
.y15b{bottom:408.814050px;}
.y86{bottom:409.500000px;}
.y209{bottom:412.932000px;}
.y1b3{bottom:413.043300px;}
.y1a4{bottom:414.615150px;}
.y2b6{bottom:414.738150px;}
.y259{bottom:415.440000px;}
.y1e4{bottom:416.742000px;}
.y182{bottom:417.377850px;}
.y138{bottom:418.400850px;}
.y4e{bottom:418.422150px;}
.y10a{bottom:420.150000px;}
.yef{bottom:421.650000px;}
.y288{bottom:423.060000px;}
.ya9{bottom:423.762000px;}
.ycc{bottom:427.104000px;}
.y228{bottom:427.900350px;}
.y3b{bottom:428.592000px;}
.y258{bottom:430.284000px;}
.y16{bottom:431.696400px;}
.y85{bottom:432.000000px;}
.y15a{bottom:432.070050px;}
.y2b5{bottom:433.488150px;}
.y208{bottom:435.288000px;}
.y1b2{bottom:435.543300px;}
.y287{bottom:438.204000px;}
.y1e3{bottom:438.936000px;}
.y181{bottom:440.183850px;}
.y137{bottom:441.350850px;}
.y4d{bottom:441.372150px;}
.y109{bottom:442.650000px;}
.yee{bottom:444.600000px;}
.y257{bottom:445.128000px;}
.ya8{bottom:445.668000px;}
.y15{bottom:449.696400px;}
.y227{bottom:449.950350px;}
.ycb{bottom:450.504000px;}
.y3a{bottom:451.236000px;}
.y129{bottom:451.825800px;}
.y2b4{bottom:452.238150px;}
.y286{bottom:453.348000px;}
.y1a3{bottom:454.351500px;}
.y84{bottom:454.500000px;}
.y159{bottom:455.326050px;}
.y207{bottom:457.644000px;}
.y1b1{bottom:458.043300px;}
.y256{bottom:459.984000px;}
.y1e2{bottom:461.130000px;}
.y136{bottom:464.300850px;}
.y4c{bottom:464.322150px;}
.yed{bottom:467.550000px;}
.ya7{bottom:467.574000px;}
.y285{bottom:468.492000px;}
.y2b3{bottom:470.988150px;}
.y226{bottom:472.000350px;}
.y39{bottom:473.880000px;}
.yca{bottom:473.904000px;}
.y255{bottom:474.828000px;}
.y128{bottom:474.919800px;}
.y14{bottom:476.199300px;}
.y1a2{bottom:476.851500px;}
.y83{bottom:477.000000px;}
.y158{bottom:478.582050px;}
.y206{bottom:479.886000px;}
.y1b0{bottom:480.543300px;}
.y1e1{bottom:483.324000px;}
.y284{bottom:483.636000px;}
.y135{bottom:487.250850px;}
.y4b{bottom:487.272150px;}
.y108{bottom:487.608000px;}
.y180{bottom:488.653650px;}
.ya6{bottom:489.480000px;}
.y254{bottom:489.672000px;}
.y2b2{bottom:489.738150px;}
.yec{bottom:490.500000px;}
.y225{bottom:494.050350px;}
.y13{bottom:494.199300px;}
.y38{bottom:496.524000px;}
.yc9{bottom:497.304000px;}
.y127{bottom:498.013800px;}
.y283{bottom:498.780000px;}
.y82{bottom:499.500000px;}
.y157{bottom:501.838050px;}
.y205{bottom:502.242000px;}
.y253{bottom:504.516000px;}
.y1e0{bottom:505.518000px;}
.y2b1{bottom:508.488150px;}
.y107{bottom:509.658000px;}
.y4a{bottom:510.222150px;}
.ya5{bottom:511.386000px;}
.y12{bottom:512.199300px;}
.yeb{bottom:513.450000px;}
.y282{bottom:513.924000px;}
.y17f{bottom:515.638650px;}
.y224{bottom:516.100350px;}
.y37{bottom:519.168000px;}
.y252{bottom:519.360000px;}
.yc8{bottom:520.704000px;}
.y126{bottom:521.107800px;}
.y1a1{bottom:521.851500px;}
.y81{bottom:522.000000px;}
.y204{bottom:524.598000px;}
.y156{bottom:525.094050px;}
.y2b0{bottom:527.238150px;}
.y1cc{bottom:527.418750px;}
.y1df{bottom:527.712000px;}
.y281{bottom:529.068000px;}
.y11{bottom:530.199300px;}
.y106{bottom:531.708000px;}
.y49{bottom:533.172150px;}
.ya4{bottom:533.292000px;}
.y251{bottom:534.216000px;}
.yea{bottom:536.400000px;}
.y223{bottom:538.150350px;}
.y150{bottom:540.943500px;}
.y36{bottom:541.812000px;}
.y17e{bottom:542.623650px;}
.yc7{bottom:544.104000px;}
.y125{bottom:544.201800px;}
.y280{bottom:544.212000px;}
.y1a0{bottom:544.351500px;}
.yfb{bottom:544.500000px;}
.y2af{bottom:545.988150px;}
.y203{bottom:546.954000px;}
.y10{bottom:548.199300px;}
.y155{bottom:548.350050px;}
.y1de{bottom:549.906000px;}
.y1cb{bottom:553.548750px;}
.y105{bottom:553.758000px;}
.ya3{bottom:555.198000px;}
.y250{bottom:555.444000px;}
.ye9{bottom:559.350000px;}
.y27f{bottom:559.356000px;}
.y222{bottom:560.200350px;}
.y35{bottom:564.456000px;}
.y2ae{bottom:564.738150px;}
.yf{bottom:566.199300px;}
.y19f{bottom:566.851500px;}
.y80{bottom:567.000000px;}
.y124{bottom:567.295800px;}
.yc6{bottom:567.504000px;}
.y14f{bottom:567.928500px;}
.y202{bottom:569.310000px;}
.y17d{bottom:569.608650px;}
.y154{bottom:571.606050px;}
.y1dd{bottom:572.196000px;}
.y27e{bottom:574.500000px;}
.y104{bottom:575.808000px;}
.ya2{bottom:577.104000px;}
.y6f{bottom:577.563150px;}
.y1ca{bottom:579.678750px;}
.y215{bottom:581.350350px;}
.y221{bottom:582.250350px;}
.ye8{bottom:582.300000px;}
.y2ad{bottom:583.488150px;}
.ye{bottom:584.199300px;}
.y34{bottom:587.154000px;}
.y7f{bottom:589.500000px;}
.y123{bottom:590.389800px;}
.yc5{bottom:590.904000px;}
.y201{bottom:591.666000px;}
.y1dc{bottom:594.390000px;}
.y153{bottom:594.862050px;}
.y14e{bottom:594.913500px;}
.y24f{bottom:595.200000px;}
.y6e{bottom:596.313150px;}
.y17c{bottom:596.593650px;}
.y71{bottom:597.307800px;}
.y103{bottom:597.858000px;}
.ya1{bottom:599.010000px;}
.yd{bottom:602.199300px;}
.y2ac{bottom:602.238150px;}
.y214{bottom:603.850350px;}
.y220{bottom:604.300350px;}
.y27d{bottom:604.500000px;}
.ye7{bottom:605.250000px;}
.y1c9{bottom:605.808750px;}
.y33{bottom:609.798000px;}
.y24e{bottom:609.900000px;}
.y19e{bottom:610.073700px;}
.y7e{bottom:612.000000px;}
.y122{bottom:613.483800px;}
.y200{bottom:614.022000px;}
.yc4{bottom:614.304000px;}
.y6d{bottom:615.063150px;}
.y1db{bottom:616.584000px;}
.y152{bottom:618.112050px;}
.y27c{bottom:619.500000px;}
.y102{bottom:619.908000px;}
.yc{bottom:620.199300px;}
.ya0{bottom:620.916000px;}
.y2ab{bottom:620.988150px;}
.y14d{bottom:621.898500px;}
.y17b{bottom:623.578650px;}
.y24d{bottom:624.600000px;}
.ye6{bottom:628.200000px;}
.y19d{bottom:628.298700px;}
.y32{bottom:632.442000px;}
.y1c8{bottom:632.793750px;}
.y6c{bottom:633.813150px;}
.y7d{bottom:634.500000px;}
.y70{bottom:634.810800px;}
.y1ff{bottom:636.378000px;}
.y121{bottom:636.577800px;}
.yb{bottom:638.199300px;}
.y1da{bottom:638.778000px;}
.y24c{bottom:639.300000px;}
.y2aa{bottom:639.738150px;}
.y151{bottom:641.368050px;}
.y17a{bottom:641.578650px;}
.y101{bottom:641.958000px;}
.y9f{bottom:642.822000px;}
.yc3{bottom:646.200000px;}
.y19c{bottom:646.523700px;}
.y14c{bottom:648.883500px;}
.y27b{bottom:649.500000px;}
.ye5{bottom:651.150000px;}
.y24b{bottom:654.000000px;}
.y31{bottom:655.086000px;}
.y7c{bottom:657.000000px;}
.y2a9{bottom:658.488150px;}
.y1fe{bottom:658.734000px;}
.y1c7{bottom:658.923750px;}
.y179{bottom:659.578650px;}
.y120{bottom:659.671800px;}
.y69{bottom:660.796650px;}
.y1d9{bottom:660.972000px;}
.y100{bottom:664.008000px;}
.y27a{bottom:664.500000px;}
.ya{bottom:664.704300px;}
.y9e{bottom:664.728000px;}
.y19b{bottom:664.748700px;}
.y24a{bottom:668.700000px;}
.yc2{bottom:669.600000px;}
.ye4{bottom:674.100000px;}
.y14b{bottom:675.868500px;}
.y2a8{bottom:677.238150px;}
.y178{bottom:677.578650px;}
.y30{bottom:677.730000px;}
.y7b{bottom:679.500000px;}
.y68{bottom:679.546650px;}
.y6b{bottom:680.541150px;}
.y1fd{bottom:681.090000px;}
.y11f{bottom:682.765800px;}
.y19a{bottom:682.973700px;}
.y1d8{bottom:683.166000px;}
.y249{bottom:683.400000px;}
.y1c6{bottom:685.053750px;}
.yff{bottom:686.058000px;}
.y177{bottom:686.563650px;}
.y9d{bottom:686.634000px;}
.y16d{bottom:687.853500px;}
.yc1{bottom:693.000000px;}
.y279{bottom:694.500000px;}
.y2a7{bottom:695.988150px;}
.ye3{bottom:697.050000px;}
.y248{bottom:698.100000px;}
.y67{bottom:698.296650px;}
.y2f{bottom:700.374000px;}
.y199{bottom:701.198700px;}
.y7a{bottom:702.000000px;}
.y14a{bottom:702.853500px;}
.y1fc{bottom:703.446000px;}
.y176{bottom:704.563650px;}
.y1d7{bottom:705.360000px;}
.yfe{bottom:708.108000px;}
.y9{bottom:708.204300px;}
.y9c{bottom:708.540000px;}
.y278{bottom:709.500000px;}
.y1c5{bottom:711.183750px;}
.y247{bottom:712.800000px;}
.y2a6{bottom:714.738150px;}
.y16c{bottom:714.838500px;}
.yc0{bottom:716.400000px;}
.y66{bottom:717.046650px;}
.y6a{bottom:718.044150px;}
.y198{bottom:719.948700px;}
.ye2{bottom:720.000000px;}
.y2e{bottom:723.018000px;}
.y79{bottom:724.500000px;}
.y1fb{bottom:725.802000px;}
.y246{bottom:727.500000px;}
.y1d6{bottom:727.554000px;}
.y8{bottom:727.704300px;}
.y149{bottom:729.838500px;}
.yfd{bottom:730.158000px;}
.y9b{bottom:730.446000px;}
.y11e{bottom:731.235450px;}
.y2a5{bottom:733.488150px;}
.y1c4{bottom:737.313750px;}
.y197{bottom:738.698700px;}
.y277{bottom:739.500000px;}
.ybf{bottom:739.800000px;}
.y16b{bottom:741.823500px;}
.y245{bottom:742.200000px;}
.ye1{bottom:742.950000px;}
.y64{bottom:744.028500px;}
.y175{bottom:744.300000px;}
.y2d{bottom:745.662000px;}
.y78{bottom:747.000000px;}
.y1fa{bottom:748.158000px;}
.y7{bottom:749.454300px;}
.y1d5{bottom:749.748000px;}
.yfc{bottom:752.208000px;}
.y2a4{bottom:752.238150px;}
.y9a{bottom:752.352000px;}
.y276{bottom:754.500000px;}
.y148{bottom:756.823500px;}
.y244{bottom:756.900000px;}
.y196{bottom:757.448700px;}
.y11d{bottom:758.220450px;}
.y63{bottom:762.778500px;}
.ybe{bottom:763.200000px;}
.y1c3{bottom:763.443750px;}
.ye0{bottom:765.900000px;}
.y174{bottom:767.100000px;}
.y2c{bottom:768.306000px;}
.y16a{bottom:768.808500px;}
.y77{bottom:769.500000px;}
.y1f9{bottom:770.514000px;}
.y2a3{bottom:770.988150px;}
.y243{bottom:771.600000px;}
.y1d4{bottom:771.942000px;}
.y99{bottom:774.258000px;}
.y195{bottom:776.198700px;}
.y62{bottom:781.528500px;}
.y147{bottom:783.808500px;}
.y275{bottom:784.500000px;}
.y11c{bottom:785.205450px;}
.y242{bottom:786.300000px;}
.ybd{bottom:786.600000px;}
.ydf{bottom:788.850000px;}
.y1c2{bottom:789.573750px;}
.y2a2{bottom:789.738150px;}
.y173{bottom:789.900000px;}
.y2b{bottom:790.980000px;}
.y76{bottom:792.000000px;}
.y1f8{bottom:792.870000px;}
.y1d3{bottom:794.136000px;}
.y194{bottom:794.948700px;}
.y169{bottom:795.793500px;}
.y98{bottom:796.164000px;}
.y274{bottom:799.500000px;}
.y61{bottom:800.278500px;}
.y65{bottom:801.277650px;}
.y241{bottom:807.372000px;}
.y2a1{bottom:808.488150px;}
.ybc{bottom:810.000000px;}
.y146{bottom:810.793500px;}
.yde{bottom:811.800000px;}
.y11b{bottom:812.190450px;}
.y2a{bottom:813.624000px;}
.y193{bottom:813.698700px;}
.y75{bottom:814.500000px;}
.y1f7{bottom:815.226000px;}
.y1d2{bottom:816.330000px;}
.y1c1{bottom:816.558750px;}
.y6{bottom:816.600000px;}
.y97{bottom:818.070000px;}
.y168{bottom:822.778500px;}
.y2a0{bottom:827.238150px;}
.y60{bottom:827.263500px;}
.y273{bottom:829.500000px;}
.y192{bottom:832.448700px;}
.ybb{bottom:833.400000px;}
.ydd{bottom:834.750000px;}
.y172{bottom:835.476000px;}
.y29{bottom:836.268000px;}
.y74{bottom:837.000000px;}
.y1f6{bottom:837.582000px;}
.y145{bottom:837.778500px;}
.y1d1{bottom:838.524000px;}
.y11a{bottom:839.175450px;}
.y96{bottom:839.976000px;}
.y167{bottom:841.528500px;}
.y1c0{bottom:842.688750px;}
.y272{bottom:844.500000px;}
.y5{bottom:845.850000px;}
.y29f{bottom:845.988150px;}
.y5f{bottom:846.013500px;}
.y240{bottom:847.122000px;}
.y191{bottom:850.673700px;}
.yba{bottom:856.800000px;}
.ydc{bottom:857.700000px;}
.y171{bottom:858.282000px;}
.y28{bottom:858.912000px;}
.y73{bottom:859.500000px;}
.y1f5{bottom:859.938000px;}
.y1d0{bottom:860.718000px;}
.y95{bottom:861.882000px;}
.y5e{bottom:864.763500px;}
.y23f{bottom:865.572000px;}
.y119{bottom:866.160450px;}
.y166{bottom:868.513500px;}
.y190{bottom:869.423700px;}
.y271{bottom:874.500000px;}
.y4{bottom:875.100000px;}
.y29e{bottom:877.494150px;}
.yb9{bottom:880.200000px;}
.ydb{bottom:880.650000px;}
.y170{bottom:881.088000px;}
.y27{bottom:881.556000px;}
.y72{bottom:882.000000px;}
.y1f4{bottom:882.294000px;}
.y1cf{bottom:882.912000px;}
.y94{bottom:883.788000px;}
.y23e{bottom:884.022000px;}
.y165{bottom:887.263500px;}
.y270{bottom:889.500000px;}
.y118{bottom:893.145450px;}
.y23d{bottom:902.472000px;}
.yb8{bottom:903.600000px;}
.y16f{bottom:903.894000px;}
.y26{bottom:904.200000px;}
.y217{bottom:904.495350px;}
.y5d{bottom:904.500000px;}
.y1f3{bottom:904.644000px;}
.y1ce{bottom:905.106000px;}
.y93{bottom:905.694000px;}
.y29d{bottom:908.256000px;}
.y117{bottom:911.895450px;}
.y26f{bottom:919.500000px;}
.yda{bottom:926.550000px;}
.y16e{bottom:926.700000px;}
.y3{bottom:926.850000px;}
.y216{bottom:926.995350px;}
.y5c{bottom:927.000000px;}
.y1cd{bottom:927.300000px;}
.y92{bottom:927.600000px;}
.y116{bottom:930.645450px;}
.y26e{bottom:934.500000px;}
.h8{height:24.630908px;}
.hf{height:33.117188px;}
.hb{height:37.256836px;}
.h13{height:39.072000px;}
.h2{height:39.326660px;}
.h14{height:40.301813px;}
.h9{height:40.757812px;}
.h1{height:41.396484px;}
.hd{height:47.988281px;}
.ha{height:48.840000px;}
.h4{height:49.380000px;}
.h7{height:49.675781px;}
.h11{height:49.699781px;}
.h12{height:50.131781px;}
.h6{height:50.947266px;}
.he{height:57.351797px;}
.hc{height:58.533047px;}
.h5{height:61.136719px;}
.h10{height:61.160719px;}
.h3{height:82.792969px;}
.h0{height:1017.000000px;}
.w0{width:720.000000px;}
.x0{left:0.000000px;}
.x1{left:67.500000px;}
.x26{left:72.124200px;}
.x8{left:73.827750px;}
.x7{left:82.404000px;}
.x3{left:97.263750px;}
.x23{left:99.391950px;}
.x25{left:101.689200px;}
.x27{left:105.094200px;}
.x5{left:112.500000px;}
.x16{left:118.827750px;}
.x31{left:120.318750px;}
.x6{left:127.381950px;}
.x10{left:131.037750px;}
.x43{left:132.246000px;}
.x2{left:135.000000px;}
.x41{left:137.088000px;}
.x9{left:140.142750px;}
.x28{left:144.391950px;}
.xf{left:150.763950px;}
.x3f{left:153.828900px;}
.x40{left:157.218900px;}
.x42{left:159.282000px;}
.x2e{left:172.587750px;}
.x29{left:173.755950px;}
.x17{left:176.037750px;}
.x1d{left:177.972750px;}
.x46{left:180.511950px;}
.x35{left:188.733750px;}
.x2d{left:210.117750px;}
.x11{left:213.777750px;}
.x39{left:216.238950px;}
.x2b{left:218.026500px;}
.xa{left:219.222750px;}
.x2a{left:224.260950px;}
.x3b{left:227.548950px;}
.x3e{left:235.773900px;}
.x3a{left:237.688950px;}
.x32{left:243.993750px;}
.x18{left:258.777750px;}
.x1e{left:260.712750px;}
.x24{left:264.979200px;}
.x12{left:293.697750px;}
.x3c{left:304.438950px;}
.x2f{left:305.532750px;}
.xb{left:306.852750px;}
.x36{left:312.393750px;}
.x19{left:338.697750px;}
.x45{left:348.129900px;}
.x1f{left:351.492750px;}
.x33{left:364.608750px;}
.x13{left:366.837750px;}
.x3d{left:381.328950px;}
.xc{left:385.512750px;}
.x44{left:393.135000px;}
.x1a{left:411.837750px;}
.x37{left:433.023750px;}
.x20{left:436.842750px;}
.x14{left:456.132750px;}
.xd{left:458.652750px;}
.x34{left:484.713750px;}
.x1b{left:501.132750px;}
.x21{left:509.712750px;}
.xe{left:531.792750px;}
.x15{left:532.797750px;}
.x2c{left:534.616500px;}
.x30{left:543.642750px;}
.x38{left:553.143750px;}
.x1c{left:577.797750px;}
.x22{left:586.242750px;}
.x4{left:635.390550px;}
@media print{
.v2{vertical-align:-14.960000pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:13.674667pt;}
.v1{vertical-align:17.493333pt;}
.v3{vertical-align:21.120000pt;}
.ls16{letter-spacing:-6.400000pt;}
.ls12{letter-spacing:-4.160000pt;}
.ls29{letter-spacing:-4.032000pt;}
.ls15{letter-spacing:-2.432000pt;}
.ls11{letter-spacing:-1.984000pt;}
.ls35{letter-spacing:-1.664000pt;}
.ls2e{letter-spacing:-1.024000pt;}
.ls1a{letter-spacing:-0.832000pt;}
.lsb{letter-spacing:-0.704000pt;}
.ls10{letter-spacing:-0.640000pt;}
.ls27{letter-spacing:-0.576000pt;}
.ls7{letter-spacing:-0.533333pt;}
.lsd{letter-spacing:-0.512000pt;}
.ls1e{letter-spacing:-0.448000pt;}
.ls36{letter-spacing:-0.426667pt;}
.lse{letter-spacing:-0.384000pt;}
.lsc{letter-spacing:-0.320000pt;}
.ls6{letter-spacing:-0.266667pt;}
.ls20{letter-spacing:-0.256000pt;}
.ls1b{letter-spacing:-0.224000pt;}
.ls2c{letter-spacing:-0.213333pt;}
.lsf{letter-spacing:-0.192000pt;}
.ls30{letter-spacing:-0.186667pt;}
.ls2b{letter-spacing:-0.128000pt;}
.ls2d{letter-spacing:-0.089600pt;}
.ls1f{letter-spacing:-0.064000pt;}
.ls4{letter-spacing:0.000000pt;}
.ls22{letter-spacing:0.031467pt;}
.ls13{letter-spacing:0.064000pt;}
.ls2f{letter-spacing:0.115200pt;}
.ls18{letter-spacing:0.128000pt;}
.ls28{letter-spacing:0.192000pt;}
.ls19{letter-spacing:0.256000pt;}
.ls3b{letter-spacing:0.266667pt;}
.ls26{letter-spacing:0.268267pt;}
.ls8{letter-spacing:0.320000pt;}
.ls1d{letter-spacing:0.384000pt;}
.ls9{letter-spacing:0.448000pt;}
.lsa{letter-spacing:0.512000pt;}
.ls14{letter-spacing:0.576000pt;}
.ls1c{letter-spacing:0.640000pt;}
.ls23{letter-spacing:0.704000pt;}
.ls17{letter-spacing:0.768000pt;}
.ls24{letter-spacing:1.996800pt;}
.ls0{letter-spacing:2.533333pt;}
.ls39{letter-spacing:2.589867pt;}
.ls32{letter-spacing:2.594133pt;}
.ls33{letter-spacing:2.606933pt;}
.ls37{letter-spacing:2.624000pt;}
.ls34{letter-spacing:2.645333pt;}
.ls2{letter-spacing:2.666667pt;}
.ls38{letter-spacing:3.029333pt;}
.ls3a{letter-spacing:3.253333pt;}
.ls3c{letter-spacing:3.792000pt;}
.ls3{letter-spacing:4.053333pt;}
.ls31{letter-spacing:4.224000pt;}
.ls21{letter-spacing:4.627200pt;}
.ls3d{letter-spacing:7.200000pt;}
.ls5{letter-spacing:7.520000pt;}
.ls1{letter-spacing:9.546667pt;}
.ls25{letter-spacing:353.120000pt;}
.ls2a{letter-spacing:367.306667pt;}
.ws3{word-spacing:-22.506667pt;}
.ws2d{word-spacing:-17.984000pt;}
.ws2{word-spacing:-17.653333pt;}
.ws1{word-spacing:-16.770667pt;}
.ws10{word-spacing:-16.256000pt;}
.ws4c{word-spacing:-16.064000pt;}
.ws102{word-spacing:-15.872000pt;}
.ws9b{word-spacing:-15.808000pt;}
.ws11{word-spacing:-15.488000pt;}
.ws2e{word-spacing:-14.986667pt;}
.ws2f{word-spacing:-14.453333pt;}
.ws6c{word-spacing:-12.588800pt;}
.wsfe{word-spacing:-12.499200pt;}
.ws3d{word-spacing:-12.364800pt;}
.wsff{word-spacing:-12.140800pt;}
.ws111{word-spacing:-11.989333pt;}
.ws116{word-spacing:-11.776000pt;}
.ws114{word-spacing:-11.434667pt;}
.ws110{word-spacing:-10.965333pt;}
.ws117{word-spacing:-10.538667pt;}
.wsf{word-spacing:-10.490667pt;}
.ws103{word-spacing:-10.304000pt;}
.ws112{word-spacing:-10.112000pt;}
.wsf9{word-spacing:-7.520000pt;}
.ws118{word-spacing:-7.377067pt;}
.ws119{word-spacing:-7.200000pt;}
.ws113{word-spacing:-4.224000pt;}
.wsc{word-spacing:-4.053333pt;}
.ws1e{word-spacing:-1.856000pt;}
.ws1b{word-spacing:-1.792000pt;}
.wsb6{word-spacing:-1.728000pt;}
.ws53{word-spacing:-1.664000pt;}
.wsb9{word-spacing:-1.600000pt;}
.ws109{word-spacing:-1.344000pt;}
.wsb5{word-spacing:-1.280000pt;}
.ws21{word-spacing:-1.088000pt;}
.ws4d{word-spacing:-1.024000pt;}
.ws50{word-spacing:-0.960000pt;}
.ws51{word-spacing:-0.832000pt;}
.wsf6{word-spacing:-0.768000pt;}
.ws1c{word-spacing:-0.704000pt;}
.wsb4{word-spacing:-0.576000pt;}
.ws20{word-spacing:-0.512000pt;}
.wsbc{word-spacing:-0.448000pt;}
.ws4e{word-spacing:-0.384000pt;}
.ws24{word-spacing:-0.320000pt;}
.ws11a{word-spacing:-0.266667pt;}
.ws4a{word-spacing:-0.256000pt;}
.ws72{word-spacing:-0.192000pt;}
.ws2b{word-spacing:-0.128000pt;}
.ws2c{word-spacing:-0.064000pt;}
.wsa{word-spacing:0.000000pt;}
.ws56{word-spacing:0.064000pt;}
.ws32{word-spacing:0.192000pt;}
.wsfd{word-spacing:0.213333pt;}
.ws70{word-spacing:0.256000pt;}
.ws12{word-spacing:0.320000pt;}
.ws29{word-spacing:0.384000pt;}
.ws115{word-spacing:0.426667pt;}
.ws52{word-spacing:0.448000pt;}
.wse{word-spacing:0.469333pt;}
.wsb7{word-spacing:0.512000pt;}
.wsd{word-spacing:0.533333pt;}
.ws55{word-spacing:0.576000pt;}
.ws4f{word-spacing:0.640000pt;}
.ws1d{word-spacing:0.704000pt;}
.ws44{word-spacing:0.768000pt;}
.ws47{word-spacing:0.832000pt;}
.ws54{word-spacing:0.960000pt;}
.ws78{word-spacing:1.024000pt;}
.ws107{word-spacing:1.088000pt;}
.ws3e{word-spacing:1.152000pt;}
.ws48{word-spacing:1.216000pt;}
.wscf{word-spacing:1.280000pt;}
.ws25{word-spacing:1.408000pt;}
.wsf8{word-spacing:1.472000pt;}
.ws9{word-spacing:1.600000pt;}
.wsd0{word-spacing:1.664000pt;}
.ws5a{word-spacing:1.728000pt;}
.ws63{word-spacing:1.792000pt;}
.ws85{word-spacing:1.856000pt;}
.ws27{word-spacing:1.920000pt;}
.ws18{word-spacing:1.984000pt;}
.ws86{word-spacing:2.048000pt;}
.ws82{word-spacing:2.112000pt;}
.ws3c{word-spacing:2.133333pt;}
.ws10b{word-spacing:2.176000pt;}
.ws4b{word-spacing:2.240000pt;}
.wsf7{word-spacing:2.304000pt;}
.ws17{word-spacing:2.368000pt;}
.ws31{word-spacing:2.432000pt;}
.ws101{word-spacing:2.560000pt;}
.ws5c{word-spacing:2.624000pt;}
.wsfc{word-spacing:2.645333pt;}
.ws83{word-spacing:2.688000pt;}
.wsb8{word-spacing:2.752000pt;}
.ws6f{word-spacing:2.880000pt;}
.wsc4{word-spacing:2.944000pt;}
.ws3b{word-spacing:2.986667pt;}
.ws10c{word-spacing:3.008000pt;}
.ws75{word-spacing:3.072000pt;}
.ws84{word-spacing:3.136000pt;}
.ws3f{word-spacing:3.200000pt;}
.ws22{word-spacing:3.264000pt;}
.ws6{word-spacing:3.306667pt;}
.ws13{word-spacing:3.456000pt;}
.ws46{word-spacing:3.520000pt;}
.wsb{word-spacing:3.546667pt;}
.ws6a{word-spacing:3.584000pt;}
.ws6e{word-spacing:3.648000pt;}
.ws76{word-spacing:3.712000pt;}
.ws4{word-spacing:3.733333pt;}
.ws36{word-spacing:3.776000pt;}
.wsc5{word-spacing:3.840000pt;}
.ws5e{word-spacing:3.904000pt;}
.ws97{word-spacing:3.968000pt;}
.ws74{word-spacing:4.032000pt;}
.wsb2{word-spacing:4.096000pt;}
.ws28{word-spacing:4.160000pt;}
.ws23{word-spacing:4.224000pt;}
.ws71{word-spacing:4.352000pt;}
.ws40{word-spacing:4.416000pt;}
.ws15{word-spacing:4.480000pt;}
.ws1f{word-spacing:4.544000pt;}
.ws10d{word-spacing:4.608000pt;}
.ws100{word-spacing:4.736000pt;}
.ws9a{word-spacing:4.800000pt;}
.ws64{word-spacing:4.864000pt;}
.ws33{word-spacing:4.928000pt;}
.ws10e{word-spacing:4.992000pt;}
.ws38{word-spacing:5.056000pt;}
.ws99{word-spacing:5.120000pt;}
.wsba{word-spacing:5.184000pt;}
.wsd3{word-spacing:5.248000pt;}
.ws95{word-spacing:5.312000pt;}
.ws34{word-spacing:5.376000pt;}
.ws35{word-spacing:5.440000pt;}
.ws10a{word-spacing:5.504000pt;}
.ws108{word-spacing:5.568000pt;}
.ws5f{word-spacing:5.632000pt;}
.ws14{word-spacing:5.760000pt;}
.ws98{word-spacing:5.824000pt;}
.ws77{word-spacing:5.888000pt;}
.wsb1{word-spacing:5.952000pt;}
.ws16{word-spacing:6.016000pt;}
.ws3a{word-spacing:6.080000pt;}
.ws81{word-spacing:6.144000pt;}
.ws2a{word-spacing:6.208000pt;}
.ws45{word-spacing:6.272000pt;}
.ws5d{word-spacing:6.336000pt;}
.wsfa{word-spacing:6.400000pt;}
.ws68{word-spacing:6.464000pt;}
.wsb3{word-spacing:6.592000pt;}
.wsd2{word-spacing:6.656000pt;}
.wsbb{word-spacing:6.720000pt;}
.ws5b{word-spacing:6.784000pt;}
.ws60{word-spacing:6.912000pt;}
.ws10f{word-spacing:6.976000pt;}
.ws39{word-spacing:7.104000pt;}
.ws6d{word-spacing:7.232000pt;}
.ws49{word-spacing:7.296000pt;}
.ws105{word-spacing:7.360000pt;}
.ws73{word-spacing:7.424000pt;}
.ws0{word-spacing:7.445333pt;}
.ws8{word-spacing:7.466667pt;}
.wsf5{word-spacing:7.488000pt;}
.wsd1{word-spacing:7.552000pt;}
.wsc6{word-spacing:7.680000pt;}
.wsc7{word-spacing:7.744000pt;}
.ws59{word-spacing:7.808000pt;}
.ws30{word-spacing:7.872000pt;}
.ws106{word-spacing:7.936000pt;}
.wsfb{word-spacing:8.000000pt;}
.ws57{word-spacing:8.064000pt;}
.ws43{word-spacing:8.128000pt;}
.ws41{word-spacing:8.256000pt;}
.ws96{word-spacing:8.320000pt;}
.ws66{word-spacing:8.384000pt;}
.ws58{word-spacing:8.448000pt;}
.ws19{word-spacing:8.576000pt;}
.ws94{word-spacing:8.640000pt;}
.ws1a{word-spacing:8.768000pt;}
.ws104{word-spacing:8.832000pt;}
.ws42{word-spacing:8.960000pt;}
.ws26{word-spacing:9.024000pt;}
.ws67{word-spacing:9.472000pt;}
.ws6b{word-spacing:10.368000pt;}
.ws61{word-spacing:10.816000pt;}
.ws65{word-spacing:11.200000pt;}
.ws62{word-spacing:11.520000pt;}
.ws69{word-spacing:11.712000pt;}
.ws37{word-spacing:15.424000pt;}
.ws5{word-spacing:19.680000pt;}
.wsd8{word-spacing:23.365333pt;}
.wsd9{word-spacing:24.122667pt;}
.wsd6{word-spacing:26.229333pt;}
.wsd4{word-spacing:34.928000pt;}
.wsd7{word-spacing:40.533333pt;}
.wscd{word-spacing:41.712000pt;}
.wsce{word-spacing:42.469333pt;}
.wsca{word-spacing:44.576000pt;}
.wsc8{word-spacing:53.274667pt;}
.ws87{word-spacing:53.978667pt;}
.ws89{word-spacing:54.736000pt;}
.wsc1{word-spacing:55.738667pt;}
.wsc2{word-spacing:56.496000pt;}
.ws7d{word-spacing:56.842667pt;}
.wsbf{word-spacing:58.602667pt;}
.wscc{word-spacing:58.880000pt;}
.ws92{word-spacing:60.858667pt;}
.ws93{word-spacing:61.616000pt;}
.ws8e{word-spacing:63.722667pt;}
.ws7{word-spacing:65.013333pt;}
.ws7a{word-spacing:65.541333pt;}
.wsa0{word-spacing:67.152000pt;}
.wsbd{word-spacing:67.301333pt;}
.wsad{word-spacing:67.909333pt;}
.wsa9{word-spacing:70.016000pt;}
.ws7b{word-spacing:70.986667pt;}
.ws9c{word-spacing:71.045333pt;}
.ws7f{word-spacing:71.146667pt;}
.wsaa{word-spacing:71.802667pt;}
.ws8c{word-spacing:72.421333pt;}
.wsc0{word-spacing:72.906667pt;}
.wsa1{word-spacing:73.909333pt;}
.ws90{word-spacing:78.026667pt;}
.wsa6{word-spacing:78.714667pt;}
.wsf1{word-spacing:79.632000pt;}
.wse3{word-spacing:80.389333pt;}
.wsea{word-spacing:82.496000pt;}
.wsa4{word-spacing:82.608000pt;}
.ws9d{word-spacing:84.053333pt;}
.wsa3{word-spacing:84.320000pt;}
.wsa7{word-spacing:88.213333pt;}
.wse7{word-spacing:91.194667pt;}
.wse5{word-spacing:91.472000pt;}
.wseb{word-spacing:92.229333pt;}
.wsd5{word-spacing:93.066667pt;}
.wsf2{word-spacing:94.336000pt;}
.ws7c{word-spacing:95.093333pt;}
.wsed{word-spacing:96.800000pt;}
.ws7e{word-spacing:97.653333pt;}
.wse8{word-spacing:103.034667pt;}
.wsbe{word-spacing:105.813333pt;}
.wsa8{word-spacing:106.512000pt;}
.ws9e{word-spacing:107.269333pt;}
.wse1{word-spacing:107.578667pt;}
.wsef{word-spacing:108.336000pt;}
.wsee{word-spacing:108.640000pt;}
.wsa2{word-spacing:109.376000pt;}
.ws80{word-spacing:110.186667pt;}
.wse6{word-spacing:110.442667pt;}
.wsa5{word-spacing:118.074667pt;}
.wse9{word-spacing:119.141333pt;}
.wsac{word-spacing:123.680000pt;}
.wsdf{word-spacing:123.738667pt;}
.ws88{word-spacing:124.320000pt;}
.wse0{word-spacing:124.496000pt;}
.wsec{word-spacing:124.746667pt;}
.wsdd{word-spacing:126.602667pt;}
.wsc3{word-spacing:130.986667pt;}
.ws8b{word-spacing:131.786667pt;}
.wsdb{word-spacing:135.301333pt;}
.ws8a{word-spacing:136.853333pt;}
.wsda{word-spacing:137.386667pt;}
.wsde{word-spacing:140.906667pt;}
.ws9f{word-spacing:141.760000pt;}
.ws79{word-spacing:148.106667pt;}
.wsdc{word-spacing:149.866667pt;}
.wse2{word-spacing:151.573333pt;}
.ws8d{word-spacing:158.453333pt;}
.ws8f{word-spacing:177.120000pt;}
.wse4{word-spacing:177.600000pt;}
.ws91{word-spacing:190.773333pt;}
.wsc9{word-spacing:226.506667pt;}
.wsb0{word-spacing:244.053333pt;}
.wscb{word-spacing:267.253333pt;}
.wsab{word-spacing:270.720000pt;}
.wsf0{word-spacing:284.906667pt;}
.wsae{word-spacing:297.386667pt;}
.wsf4{word-spacing:311.573333pt;}
.wsf3{word-spacing:337.600000pt;}
.wsaf{word-spacing:355.093333pt;}
._e{margin-left:-835.898667pt;}
._4{margin-left:-59.116800pt;}
._19{margin-left:-27.008000pt;}
._1a{margin-left:-24.388000pt;}
._37{margin-left:-23.050667pt;}
._1c{margin-left:-21.861333pt;}
._1b{margin-left:-20.372000pt;}
._45{margin-left:-17.761333pt;}
._5d{margin-left:-14.982667pt;}
._2{margin-left:-13.333333pt;}
._18{margin-left:-12.443467pt;}
._5{margin-left:-10.346667pt;}
._65{margin-left:-8.467200pt;}
._12{margin-left:-7.360000pt;}
._c{margin-left:-5.598667pt;}
._a{margin-left:-4.448000pt;}
._8{margin-left:-2.933333pt;}
._b{margin-left:-1.882667pt;}
._1{margin-left:-0.906667pt;}
._6{width:1.545333pt;}
._7{width:2.901333pt;}
._9{width:4.010667pt;}
._d{width:5.364000pt;}
._13{width:6.737067pt;}
._10{width:8.524800pt;}
._f{width:9.561600pt;}
._5c{width:11.226667pt;}
._64{width:12.263200pt;}
._66{width:14.485333pt;}
._5f{width:26.085333pt;}
._11{width:28.129333pt;}
._17{width:29.184000pt;}
._5e{width:30.364000pt;}
._14{width:39.840000pt;}
._3{width:42.666667pt;}
._5b{width:43.580000pt;}
._53{width:48.640000pt;}
._54{width:60.598667pt;}
._51{width:62.048000pt;}
._15{width:70.224000pt;}
._57{width:75.306667pt;}
._52{width:76.684000pt;}
._46{width:84.320000pt;}
._16{width:86.352000pt;}
._55{width:89.769333pt;}
._5a{width:91.200000pt;}
._29{width:93.866667pt;}
._21{width:103.838667pt;}
._1f{width:106.292000pt;}
._27{width:110.080000pt;}
._2b{width:112.640000pt;}
._56{width:118.334667pt;}
._2a{width:120.106667pt;}
._2c{width:125.173333pt;}
._1e{width:130.398667pt;}
._47{width:135.102667pt;}
._2e{width:136.746667pt;}
._1d{width:140.425333pt;}
._28{width:143.413333pt;}
._49{width:145.973333pt;}
._26{width:147.541333pt;}
._58{width:148.736000pt;}
._59{width:149.633333pt;}
._33{width:151.360000pt;}
._4b{width:161.413333pt;}
._30{width:162.645333pt;}
._20{width:163.732000pt;}
._36{width:166.741333pt;}
._2f{width:170.080000pt;}
._4a{width:171.638667pt;}
._2d{width:172.758667pt;}
._31{width:174.197333pt;}
._25{width:175.626667pt;}
._0{width:179.168000pt;}
._35{width:180.821333pt;}
._48{width:183.306667pt;}
._23{width:187.200000pt;}
._3a{width:192.032000pt;}
._22{width:197.226667pt;}
._38{width:202.794667pt;}
._32{width:204.160000pt;}
._3c{width:205.760000pt;}
._34{width:213.478667pt;}
._41{width:214.944000pt;}
._61{width:217.814667pt;}
._40{width:218.773333pt;}
._24{width:220.533333pt;}
._39{width:223.466667pt;}
._3d{width:240.853333pt;}
._3b{width:242.800000pt;}
._3f{width:250.133333pt;}
._42{width:253.654667pt;}
._60{width:256.801333pt;}
._3e{width:269.440000pt;}
._63{width:274.669333pt;}
._4c{width:281.440000pt;}
._44{width:300.056000pt;}
._43{width:305.548000pt;}
._62{width:308.748000pt;}
._4e{width:334.720000pt;}
._4f{width:336.812000pt;}
._4d{width:338.261333pt;}
._50{width:377.532000pt;}
.fs9{font-size:29.866667pt;}
.fs6{font-size:31.733333pt;}
.fs5{font-size:37.333333pt;}
.fs4{font-size:42.666667pt;}
.fs8{font-size:44.800000pt;}
.fs7{font-size:48.000000pt;}
.fs1{font-size:50.666667pt;}
.fs0{font-size:53.333333pt;}
.fs3{font-size:64.000000pt;}
.fs2{font-size:106.666667pt;}
.y0{bottom:0.000000pt;}
.y2{bottom:49.333333pt;}
.y1{bottom:64.000000pt;}
.y5b{bottom:104.000000pt;}
.yb7{bottom:104.069333pt;}
.y21f{bottom:105.291333pt;}
.y236{bottom:105.955867pt;}
.y26d{bottom:106.133333pt;}
.y29c{bottom:106.448000pt;}
.y144{bottom:106.711867pt;}
.y1bf{bottom:107.149600pt;}
.y25{bottom:107.412133pt;}
.y18f{bottom:107.466533pt;}
.y48{bottom:107.740000pt;}
.y134{bottom:107.768133pt;}
.yd9{bottom:109.248000pt;}
.y23c{bottom:109.600000pt;}
.y1af{bottom:110.075867pt;}
.y115{bottom:112.918800pt;}
.y5a{bottom:117.333333pt;}
.y26c{bottom:119.061333pt;}
.y29b{bottom:120.048000pt;}
.yfa{bottom:121.073333pt;}
.yb6{bottom:123.541333pt;}
.y47{bottom:124.000000pt;}
.y24{bottom:124.078800pt;}
.y21e{bottom:125.291333pt;}
.y235{bottom:125.555867pt;}
.y143{bottom:127.111867pt;}
.y1be{bottom:127.149600pt;}
.y18e{bottom:127.738533pt;}
.y133{bottom:128.296133pt;}
.y23b{bottom:130.000000pt;}
.yd8{bottom:130.048000pt;}
.y1ae{bottom:130.075867pt;}
.y1ef{bottom:130.666667pt;}
.y26b{bottom:132.000000pt;}
.y29a{bottom:133.648000pt;}
.y59{bottom:134.406667pt;}
.y114{bottom:136.905467pt;}
.yf9{bottom:137.333333pt;}
.y46{bottom:141.073333pt;}
.y2c2{bottom:141.989467pt;}
.yb5{bottom:143.013333pt;}
.y91{bottom:144.000000pt;}
.y26a{bottom:144.928000pt;}
.y234{bottom:145.155867pt;}
.y21d{bottom:145.291333pt;}
.y299{bottom:147.109333pt;}
.y1bd{bottom:147.149600pt;}
.y142{bottom:147.511867pt;}
.y23{bottom:147.770133pt;}
.y18d{bottom:148.010533pt;}
.y1ad{bottom:150.075867pt;}
.y23a{bottom:150.400000pt;}
.yd7{bottom:150.848000pt;}
.yf8{bottom:154.406667pt;}
.y164{bottom:156.686267pt;}
.y1ee{bottom:157.333333pt;}
.y269{bottom:158.122667pt;}
.y2c1{bottom:158.656133pt;}
.y298{bottom:160.570667pt;}
.y113{bottom:160.892133pt;}
.yb4{bottom:162.485333pt;}
.y22{bottom:163.903467pt;}
.y90{bottom:164.000000pt;}
.y233{bottom:164.755867pt;}
.y21c{bottom:165.291333pt;}
.y1bc{bottom:167.149600pt;}
.y141{bottom:167.911867pt;}
.y18c{bottom:168.282533pt;}
.y58{bottom:168.330667pt;}
.y213{bottom:168.874667pt;}
.y1ed{bottom:170.666667pt;}
.y239{bottom:170.800000pt;}
.y268{bottom:171.328000pt;}
.yd6{bottom:171.648000pt;}
.y132{bottom:171.914933pt;}
.y297{bottom:174.032000pt;}
.yf7{bottom:174.406667pt;}
.y2c0{bottom:175.322800pt;}
.y1f2{bottom:176.448000pt;}
.y163{bottom:177.358267pt;}
.y45{bottom:179.418667pt;}
.y21{bottom:180.036800pt;}
.yb3{bottom:181.957333pt;}
.y8f{bottom:184.000000pt;}
.y232{bottom:184.355867pt;}
.y267{bottom:184.522667pt;}
.y112{bottom:184.878800pt;}
.y21b{bottom:185.291333pt;}
.y1bb{bottom:187.149600pt;}
.y296{bottom:187.493333pt;}
.y140{bottom:188.311867pt;}
.y57{bottom:188.330667pt;}
.y212{bottom:188.474667pt;}
.y18b{bottom:188.554533pt;}
.y238{bottom:191.200000pt;}
.y2bf{bottom:191.989467pt;}
.yd5{bottom:192.448000pt;}
.y1ac{bottom:192.626800pt;}
.y131{bottom:195.901600pt;}
.y20{bottom:196.170133pt;}
.y1f1{bottom:196.448000pt;}
.y1ec{bottom:197.333333pt;}
.y266{bottom:197.717333pt;}
.y162{bottom:198.030267pt;}
.y44{bottom:199.818667pt;}
.y295{bottom:200.954667pt;}
.yb2{bottom:201.429333pt;}
.y231{bottom:203.955867pt;}
.y8e{bottom:204.000000pt;}
.y21a{bottom:205.291333pt;}
.y211{bottom:208.074667pt;}
.y2be{bottom:208.656133pt;}
.y13f{bottom:208.711867pt;}
.y56{bottom:208.730667pt;}
.y18a{bottom:208.826533pt;}
.y111{bottom:208.865467pt;}
.y265{bottom:210.922667pt;}
.yf6{bottom:211.600000pt;}
.y1f{bottom:212.303467pt;}
.yd4{bottom:213.248000pt;}
.y1eb{bottom:214.406667pt;}
.y294{bottom:214.416000pt;}
.y1f0{bottom:216.448000pt;}
.y1ab{bottom:216.613467pt;}
.y161{bottom:218.702267pt;}
.y130{bottom:219.888267pt;}
.y43{bottom:219.946667pt;}
.yb1{bottom:220.901333pt;}
.y230{bottom:223.555867pt;}
.y8d{bottom:224.000000pt;}
.y264{bottom:224.117333pt;}
.y219{bottom:225.291333pt;}
.y2bd{bottom:225.322800pt;}
.y1ba{bottom:227.149600pt;}
.y293{bottom:227.877333pt;}
.y210{bottom:227.946667pt;}
.y1e{bottom:228.436800pt;}
.y189{bottom:229.098533pt;}
.y13e{bottom:229.111867pt;}
.y55{bottom:229.130667pt;}
.yf5{bottom:232.000000pt;}
.y110{bottom:232.852133pt;}
.yd3{bottom:234.048000pt;}
.y263{bottom:237.312000pt;}
.y160{bottom:239.374267pt;}
.y42{bottom:240.074667pt;}
.yb0{bottom:240.373333pt;}
.y1aa{bottom:240.600133pt;}
.y292{bottom:241.338667pt;}
.y22f{bottom:243.155867pt;}
.y12f{bottom:243.874933pt;}
.y8c{bottom:244.000000pt;}
.y1d{bottom:244.570133pt;}
.y218{bottom:245.291333pt;}
.y1b9{bottom:247.149600pt;}
.y20f{bottom:247.818667pt;}
.y188{bottom:249.370533pt;}
.y13d{bottom:249.511867pt;}
.y54{bottom:249.530667pt;}
.y262{bottom:250.506667pt;}
.y1ea{bottom:252.069333pt;}
.yf4{bottom:252.400000pt;}
.yd2{bottom:254.848000pt;}
.y291{bottom:254.901333pt;}
.y10f{bottom:256.838800pt;}
.y2bc{bottom:258.656133pt;}
.yaf{bottom:259.845333pt;}
.y15f{bottom:260.046267pt;}
.y41{bottom:260.202667pt;}
.y1c{bottom:260.703467pt;}
.y22e{bottom:262.755867pt;}
.y261{bottom:263.701333pt;}
.y8b{bottom:264.000000pt;}
.y1a9{bottom:264.586800pt;}
.y1b8{bottom:267.149600pt;}
.y20e{bottom:267.690667pt;}
.y12e{bottom:267.861600pt;}
.y290{bottom:268.362667pt;}
.y187{bottom:269.642533pt;}
.y13c{bottom:269.911867pt;}
.y53{bottom:269.930667pt;}
.y1e9{bottom:271.797333pt;}
.yf3{bottom:272.800000pt;}
.yd1{bottom:275.648000pt;}
.y1b{bottom:276.836800pt;}
.y260{bottom:276.906667pt;}
.yae{bottom:279.317333pt;}
.y40{bottom:280.330667pt;}
.y15e{bottom:280.718267pt;}
.y10e{bottom:280.825467pt;}
.y28f{bottom:281.824000pt;}
.y22d{bottom:282.355867pt;}
.y8a{bottom:284.000000pt;}
.y2bb{bottom:285.322800pt;}
.y1b7{bottom:287.149600pt;}
.y20d{bottom:287.562667pt;}
.y1a8{bottom:288.573467pt;}
.y186{bottom:289.914533pt;}
.y25f{bottom:290.101333pt;}
.y52{bottom:290.330800pt;}
.y1e8{bottom:291.525333pt;}
.y12d{bottom:291.848267pt;}
.y1a{bottom:292.970133pt;}
.y237{bottom:293.200000pt;}
.y28e{bottom:295.285333pt;}
.yd0{bottom:296.448000pt;}
.yad{bottom:298.789333pt;}
.y3f{bottom:300.458667pt;}
.y15d{bottom:301.390267pt;}
.y22c{bottom:301.955867pt;}
.y2ba{bottom:301.989467pt;}
.y25e{bottom:303.296000pt;}
.y89{bottom:304.000000pt;}
.y10d{bottom:304.812133pt;}
.y1b6{bottom:307.149600pt;}
.y20c{bottom:307.434667pt;}
.y12c{bottom:308.514933pt;}
.y28d{bottom:308.746667pt;}
.y19{bottom:309.103467pt;}
.y185{bottom:310.186533pt;}
.y13b{bottom:310.711867pt;}
.y51{bottom:310.730800pt;}
.y1e7{bottom:311.253333pt;}
.y1a7{bottom:312.560133pt;}
.yf2{bottom:313.600000pt;}
.y25d{bottom:316.490667pt;}
.ycf{bottom:317.248000pt;}
.yac{bottom:318.261333pt;}
.y2b9{bottom:318.656133pt;}
.y3e{bottom:320.586667pt;}
.y10c{bottom:321.478800pt;}
.y22b{bottom:321.555867pt;}
.y15c{bottom:322.062267pt;}
.y28c{bottom:322.208000pt;}
.y88{bottom:324.000000pt;}
.y12b{bottom:325.181600pt;}
.y18{bottom:325.236800pt;}
.y1b5{bottom:327.149600pt;}
.y20b{bottom:327.306667pt;}
.y1a6{bottom:328.560133pt;}
.y25c{bottom:329.685333pt;}
.y184{bottom:330.458533pt;}
.y1e6{bottom:330.981333pt;}
.y13a{bottom:331.111867pt;}
.y50{bottom:331.130800pt;}
.yf1{bottom:334.000000pt;}
.y2b8{bottom:335.322800pt;}
.y28b{bottom:335.669333pt;}
.yab{bottom:337.733333pt;}
.yce{bottom:338.048000pt;}
.y10b{bottom:338.145467pt;}
.y3d{bottom:340.714667pt;}
.y22a{bottom:341.155867pt;}
.y25b{bottom:342.890667pt;}
.y87{bottom:344.000000pt;}
.y1b4{bottom:347.149600pt;}
.y20a{bottom:347.178667pt;}
.y17{bottom:348.930133pt;}
.y28a{bottom:349.130667pt;}
.y1e5{bottom:350.709333pt;}
.y183{bottom:350.730533pt;}
.y139{bottom:351.511867pt;}
.y4f{bottom:351.530800pt;}
.y2b7{bottom:351.989467pt;}
.y1a5{bottom:352.546800pt;}
.yf0{bottom:354.400000pt;}
.y25a{bottom:356.085333pt;}
.yaa{bottom:357.205333pt;}
.ycd{bottom:358.848000pt;}
.y12a{bottom:360.502933pt;}
.y229{bottom:360.755867pt;}
.y3c{bottom:360.842667pt;}
.y289{bottom:362.592000pt;}
.y15b{bottom:363.390267pt;}
.y86{bottom:364.000000pt;}
.y209{bottom:367.050667pt;}
.y1b3{bottom:367.149600pt;}
.y1a4{bottom:368.546800pt;}
.y2b6{bottom:368.656133pt;}
.y259{bottom:369.280000pt;}
.y1e4{bottom:370.437333pt;}
.y182{bottom:371.002533pt;}
.y138{bottom:371.911867pt;}
.y4e{bottom:371.930800pt;}
.y10a{bottom:373.466667pt;}
.yef{bottom:374.800000pt;}
.y288{bottom:376.053333pt;}
.ya9{bottom:376.677333pt;}
.ycc{bottom:379.648000pt;}
.y228{bottom:380.355867pt;}
.y3b{bottom:380.970667pt;}
.y258{bottom:382.474667pt;}
.y16{bottom:383.730133pt;}
.y85{bottom:384.000000pt;}
.y15a{bottom:384.062267pt;}
.y2b5{bottom:385.322800pt;}
.y208{bottom:386.922667pt;}
.y1b2{bottom:387.149600pt;}
.y287{bottom:389.514667pt;}
.y1e3{bottom:390.165333pt;}
.y181{bottom:391.274533pt;}
.y137{bottom:392.311867pt;}
.y4d{bottom:392.330800pt;}
.y109{bottom:393.466667pt;}
.yee{bottom:395.200000pt;}
.y257{bottom:395.669333pt;}
.ya8{bottom:396.149333pt;}
.y15{bottom:399.730133pt;}
.y227{bottom:399.955867pt;}
.ycb{bottom:400.448000pt;}
.y3a{bottom:401.098667pt;}
.y129{bottom:401.622933pt;}
.y2b4{bottom:401.989467pt;}
.y286{bottom:402.976000pt;}
.y1a3{bottom:403.868000pt;}
.y84{bottom:404.000000pt;}
.y159{bottom:404.734267pt;}
.y207{bottom:406.794667pt;}
.y1b1{bottom:407.149600pt;}
.y256{bottom:408.874667pt;}
.y1e2{bottom:409.893333pt;}
.y136{bottom:412.711867pt;}
.y4c{bottom:412.730800pt;}
.yed{bottom:415.600000pt;}
.ya7{bottom:415.621333pt;}
.y285{bottom:416.437333pt;}
.y2b3{bottom:418.656133pt;}
.y226{bottom:419.555867pt;}
.y39{bottom:421.226667pt;}
.yca{bottom:421.248000pt;}
.y255{bottom:422.069333pt;}
.y128{bottom:422.150933pt;}
.y14{bottom:423.288267pt;}
.y1a2{bottom:423.868000pt;}
.y83{bottom:424.000000pt;}
.y158{bottom:425.406267pt;}
.y206{bottom:426.565333pt;}
.y1b0{bottom:427.149600pt;}
.y1e1{bottom:429.621333pt;}
.y284{bottom:429.898667pt;}
.y135{bottom:433.111867pt;}
.y4b{bottom:433.130800pt;}
.y108{bottom:433.429333pt;}
.y180{bottom:434.358800pt;}
.ya6{bottom:435.093333pt;}
.y254{bottom:435.264000pt;}
.y2b2{bottom:435.322800pt;}
.yec{bottom:436.000000pt;}
.y225{bottom:439.155867pt;}
.y13{bottom:439.288267pt;}
.y38{bottom:441.354667pt;}
.yc9{bottom:442.048000pt;}
.y127{bottom:442.678933pt;}
.y283{bottom:443.360000pt;}
.y82{bottom:444.000000pt;}
.y157{bottom:446.078267pt;}
.y205{bottom:446.437333pt;}
.y253{bottom:448.458667pt;}
.y1e0{bottom:449.349333pt;}
.y2b1{bottom:451.989467pt;}
.y107{bottom:453.029333pt;}
.y4a{bottom:453.530800pt;}
.ya5{bottom:454.565333pt;}
.y12{bottom:455.288267pt;}
.yeb{bottom:456.400000pt;}
.y282{bottom:456.821333pt;}
.y17f{bottom:458.345467pt;}
.y224{bottom:458.755867pt;}
.y37{bottom:461.482667pt;}
.y252{bottom:461.653333pt;}
.yc8{bottom:462.848000pt;}
.y126{bottom:463.206933pt;}
.y1a1{bottom:463.868000pt;}
.y81{bottom:464.000000pt;}
.y204{bottom:466.309333pt;}
.y156{bottom:466.750267pt;}
.y2b0{bottom:468.656133pt;}
.y1cc{bottom:468.816667pt;}
.y1df{bottom:469.077333pt;}
.y281{bottom:470.282667pt;}
.y11{bottom:471.288267pt;}
.y106{bottom:472.629333pt;}
.y49{bottom:473.930800pt;}
.ya4{bottom:474.037333pt;}
.y251{bottom:474.858667pt;}
.yea{bottom:476.800000pt;}
.y223{bottom:478.355867pt;}
.y150{bottom:480.838667pt;}
.y36{bottom:481.610667pt;}
.y17e{bottom:482.332133pt;}
.yc7{bottom:483.648000pt;}
.y125{bottom:483.734933pt;}
.y280{bottom:483.744000pt;}
.y1a0{bottom:483.868000pt;}
.yfb{bottom:484.000000pt;}
.y2af{bottom:485.322800pt;}
.y203{bottom:486.181333pt;}
.y10{bottom:487.288267pt;}
.y155{bottom:487.422267pt;}
.y1de{bottom:488.805333pt;}
.y1cb{bottom:492.043333pt;}
.y105{bottom:492.229333pt;}
.ya3{bottom:493.509333pt;}
.y250{bottom:493.728000pt;}
.ye9{bottom:497.200000pt;}
.y27f{bottom:497.205333pt;}
.y222{bottom:497.955867pt;}
.y35{bottom:501.738667pt;}
.y2ae{bottom:501.989467pt;}
.yf{bottom:503.288267pt;}
.y19f{bottom:503.868000pt;}
.y80{bottom:504.000000pt;}
.y124{bottom:504.262933pt;}
.yc6{bottom:504.448000pt;}
.y14f{bottom:504.825333pt;}
.y202{bottom:506.053333pt;}
.y17d{bottom:506.318800pt;}
.y154{bottom:508.094267pt;}
.y1dd{bottom:508.618667pt;}
.y27e{bottom:510.666667pt;}
.y104{bottom:511.829333pt;}
.ya2{bottom:512.981333pt;}
.y6f{bottom:513.389467pt;}
.y1ca{bottom:515.270000pt;}
.y215{bottom:516.755867pt;}
.y221{bottom:517.555867pt;}
.ye8{bottom:517.600000pt;}
.y2ad{bottom:518.656133pt;}
.ye{bottom:519.288267pt;}
.y34{bottom:521.914667pt;}
.y7f{bottom:524.000000pt;}
.y123{bottom:524.790933pt;}
.yc5{bottom:525.248000pt;}
.y201{bottom:525.925333pt;}
.y1dc{bottom:528.346667pt;}
.y153{bottom:528.766267pt;}
.y14e{bottom:528.812000pt;}
.y24f{bottom:529.066667pt;}
.y6e{bottom:530.056133pt;}
.y17c{bottom:530.305467pt;}
.y71{bottom:530.940267pt;}
.y103{bottom:531.429333pt;}
.ya1{bottom:532.453333pt;}
.yd{bottom:535.288267pt;}
.y2ac{bottom:535.322800pt;}
.y214{bottom:536.755867pt;}
.y220{bottom:537.155867pt;}
.y27d{bottom:537.333333pt;}
.ye7{bottom:538.000000pt;}
.y1c9{bottom:538.496667pt;}
.y33{bottom:542.042667pt;}
.y24e{bottom:542.133333pt;}
.y19e{bottom:542.287733pt;}
.y7e{bottom:544.000000pt;}
.y122{bottom:545.318933pt;}
.y200{bottom:545.797333pt;}
.yc4{bottom:546.048000pt;}
.y6d{bottom:546.722800pt;}
.y1db{bottom:548.074667pt;}
.y152{bottom:549.432933pt;}
.y27c{bottom:550.666667pt;}
.y102{bottom:551.029333pt;}
.yc{bottom:551.288267pt;}
.ya0{bottom:551.925333pt;}
.y2ab{bottom:551.989467pt;}
.y14d{bottom:552.798667pt;}
.y17b{bottom:554.292133pt;}
.y24d{bottom:555.200000pt;}
.ye6{bottom:558.400000pt;}
.y19d{bottom:558.487733pt;}
.y32{bottom:562.170667pt;}
.y1c8{bottom:562.483333pt;}
.y6c{bottom:563.389467pt;}
.y7d{bottom:564.000000pt;}
.y70{bottom:564.276267pt;}
.y1ff{bottom:565.669333pt;}
.y121{bottom:565.846933pt;}
.yb{bottom:567.288267pt;}
.y1da{bottom:567.802667pt;}
.y24c{bottom:568.266667pt;}
.y2aa{bottom:568.656133pt;}
.y151{bottom:570.104933pt;}
.y17a{bottom:570.292133pt;}
.y101{bottom:570.629333pt;}
.y9f{bottom:571.397333pt;}
.yc3{bottom:574.400000pt;}
.y19c{bottom:574.687733pt;}
.y14c{bottom:576.785333pt;}
.y27b{bottom:577.333333pt;}
.ye5{bottom:578.800000pt;}
.y24b{bottom:581.333333pt;}
.y31{bottom:582.298667pt;}
.y7c{bottom:584.000000pt;}
.y2a9{bottom:585.322800pt;}
.y1fe{bottom:585.541333pt;}
.y1c7{bottom:585.710000pt;}
.y179{bottom:586.292133pt;}
.y120{bottom:586.374933pt;}
.y69{bottom:587.374800pt;}
.y1d9{bottom:587.530667pt;}
.y100{bottom:590.229333pt;}
.y27a{bottom:590.666667pt;}
.ya{bottom:590.848267pt;}
.y9e{bottom:590.869333pt;}
.y19b{bottom:590.887733pt;}
.y24a{bottom:594.400000pt;}
.yc2{bottom:595.200000pt;}
.ye4{bottom:599.200000pt;}
.y14b{bottom:600.772000pt;}
.y2a8{bottom:601.989467pt;}
.y178{bottom:602.292133pt;}
.y30{bottom:602.426667pt;}
.y7b{bottom:604.000000pt;}
.y68{bottom:604.041467pt;}
.y6b{bottom:604.925467pt;}
.y1fd{bottom:605.413333pt;}
.y11f{bottom:606.902933pt;}
.y19a{bottom:607.087733pt;}
.y1d8{bottom:607.258667pt;}
.y249{bottom:607.466667pt;}
.y1c6{bottom:608.936667pt;}
.yff{bottom:609.829333pt;}
.y177{bottom:610.278800pt;}
.y9d{bottom:610.341333pt;}
.y16d{bottom:611.425333pt;}
.yc1{bottom:616.000000pt;}
.y279{bottom:617.333333pt;}
.y2a7{bottom:618.656133pt;}
.ye3{bottom:619.600000pt;}
.y248{bottom:620.533333pt;}
.y67{bottom:620.708133pt;}
.y2f{bottom:622.554667pt;}
.y199{bottom:623.287733pt;}
.y7a{bottom:624.000000pt;}
.y14a{bottom:624.758667pt;}
.y1fc{bottom:625.285333pt;}
.y176{bottom:626.278800pt;}
.y1d7{bottom:626.986667pt;}
.yfe{bottom:629.429333pt;}
.y9{bottom:629.514933pt;}
.y9c{bottom:629.813333pt;}
.y278{bottom:630.666667pt;}
.y1c5{bottom:632.163333pt;}
.y247{bottom:633.600000pt;}
.y2a6{bottom:635.322800pt;}
.y16c{bottom:635.412000pt;}
.yc0{bottom:636.800000pt;}
.y66{bottom:637.374800pt;}
.y6a{bottom:638.261467pt;}
.y198{bottom:639.954400pt;}
.ye2{bottom:640.000000pt;}
.y2e{bottom:642.682667pt;}
.y79{bottom:644.000000pt;}
.y1fb{bottom:645.157333pt;}
.y246{bottom:646.666667pt;}
.y1d6{bottom:646.714667pt;}
.y8{bottom:646.848267pt;}
.y149{bottom:648.745333pt;}
.yfd{bottom:649.029333pt;}
.y9b{bottom:649.285333pt;}
.y11e{bottom:649.987067pt;}
.y2a5{bottom:651.989467pt;}
.y1c4{bottom:655.390000pt;}
.y197{bottom:656.621067pt;}
.y277{bottom:657.333333pt;}
.ybf{bottom:657.600000pt;}
.y16b{bottom:659.398667pt;}
.y245{bottom:659.733333pt;}
.ye1{bottom:660.400000pt;}
.y64{bottom:661.358667pt;}
.y175{bottom:661.600000pt;}
.y2d{bottom:662.810667pt;}
.y78{bottom:664.000000pt;}
.y1fa{bottom:665.029333pt;}
.y7{bottom:666.181600pt;}
.y1d5{bottom:666.442667pt;}
.yfc{bottom:668.629333pt;}
.y2a4{bottom:668.656133pt;}
.y9a{bottom:668.757333pt;}
.y276{bottom:670.666667pt;}
.y148{bottom:672.732000pt;}
.y244{bottom:672.800000pt;}
.y196{bottom:673.287733pt;}
.y11d{bottom:673.973733pt;}
.y63{bottom:678.025333pt;}
.ybe{bottom:678.400000pt;}
.y1c3{bottom:678.616667pt;}
.ye0{bottom:680.800000pt;}
.y174{bottom:681.866667pt;}
.y2c{bottom:682.938667pt;}
.y16a{bottom:683.385333pt;}
.y77{bottom:684.000000pt;}
.y1f9{bottom:684.901333pt;}
.y2a3{bottom:685.322800pt;}
.y243{bottom:685.866667pt;}
.y1d4{bottom:686.170667pt;}
.y99{bottom:688.229333pt;}
.y195{bottom:689.954400pt;}
.y62{bottom:694.692000pt;}
.y147{bottom:696.718667pt;}
.y275{bottom:697.333333pt;}
.y11c{bottom:697.960400pt;}
.y242{bottom:698.933333pt;}
.ybd{bottom:699.200000pt;}
.ydf{bottom:701.200000pt;}
.y1c2{bottom:701.843333pt;}
.y2a2{bottom:701.989467pt;}
.y173{bottom:702.133333pt;}
.y2b{bottom:703.093333pt;}
.y76{bottom:704.000000pt;}
.y1f8{bottom:704.773333pt;}
.y1d3{bottom:705.898667pt;}
.y194{bottom:706.621067pt;}
.y169{bottom:707.372000pt;}
.y98{bottom:707.701333pt;}
.y274{bottom:710.666667pt;}
.y61{bottom:711.358667pt;}
.y65{bottom:712.246800pt;}
.y241{bottom:717.664000pt;}
.y2a1{bottom:718.656133pt;}
.ybc{bottom:720.000000pt;}
.y146{bottom:720.705333pt;}
.yde{bottom:721.600000pt;}
.y11b{bottom:721.947067pt;}
.y2a{bottom:723.221333pt;}
.y193{bottom:723.287733pt;}
.y75{bottom:724.000000pt;}
.y1f7{bottom:724.645333pt;}
.y1d2{bottom:725.626667pt;}
.y1c1{bottom:725.830000pt;}
.y6{bottom:725.866667pt;}
.y97{bottom:727.173333pt;}
.y168{bottom:731.358667pt;}
.y2a0{bottom:735.322800pt;}
.y60{bottom:735.345333pt;}
.y273{bottom:737.333333pt;}
.y192{bottom:739.954400pt;}
.ybb{bottom:740.800000pt;}
.ydd{bottom:742.000000pt;}
.y172{bottom:742.645333pt;}
.y29{bottom:743.349333pt;}
.y74{bottom:744.000000pt;}
.y1f6{bottom:744.517333pt;}
.y145{bottom:744.692000pt;}
.y1d1{bottom:745.354667pt;}
.y11a{bottom:745.933733pt;}
.y96{bottom:746.645333pt;}
.y167{bottom:748.025333pt;}
.y1c0{bottom:749.056667pt;}
.y272{bottom:750.666667pt;}
.y5{bottom:751.866667pt;}
.y29f{bottom:751.989467pt;}
.y5f{bottom:752.012000pt;}
.y240{bottom:752.997333pt;}
.y191{bottom:756.154400pt;}
.yba{bottom:761.600000pt;}
.ydc{bottom:762.400000pt;}
.y171{bottom:762.917333pt;}
.y28{bottom:763.477333pt;}
.y73{bottom:764.000000pt;}
.y1f5{bottom:764.389333pt;}
.y1d0{bottom:765.082667pt;}
.y95{bottom:766.117333pt;}
.y5e{bottom:768.678667pt;}
.y23f{bottom:769.397333pt;}
.y119{bottom:769.920400pt;}
.y166{bottom:772.012000pt;}
.y190{bottom:772.821067pt;}
.y271{bottom:777.333333pt;}
.y4{bottom:777.866667pt;}
.y29e{bottom:779.994800pt;}
.yb9{bottom:782.400000pt;}
.ydb{bottom:782.800000pt;}
.y170{bottom:783.189333pt;}
.y27{bottom:783.605333pt;}
.y72{bottom:784.000000pt;}
.y1f4{bottom:784.261333pt;}
.y1cf{bottom:784.810667pt;}
.y94{bottom:785.589333pt;}
.y23e{bottom:785.797333pt;}
.y165{bottom:788.678667pt;}
.y270{bottom:790.666667pt;}
.y118{bottom:793.907067pt;}
.y23d{bottom:802.197333pt;}
.yb8{bottom:803.200000pt;}
.y16f{bottom:803.461333pt;}
.y26{bottom:803.733333pt;}
.y217{bottom:803.995867pt;}
.y5d{bottom:804.000000pt;}
.y1f3{bottom:804.128000pt;}
.y1ce{bottom:804.538667pt;}
.y93{bottom:805.061333pt;}
.y29d{bottom:807.338667pt;}
.y117{bottom:810.573733pt;}
.y26f{bottom:817.333333pt;}
.yda{bottom:823.600000pt;}
.y16e{bottom:823.733333pt;}
.y3{bottom:823.866667pt;}
.y216{bottom:823.995867pt;}
.y5c{bottom:824.000000pt;}
.y1cd{bottom:824.266667pt;}
.y92{bottom:824.533333pt;}
.y116{bottom:827.240400pt;}
.y26e{bottom:830.666667pt;}
.h8{height:21.894141pt;}
.hf{height:29.437500pt;}
.hb{height:33.117188pt;}
.h13{height:34.730667pt;}
.h2{height:34.957031pt;}
.h14{height:35.823833pt;}
.h9{height:36.229167pt;}
.h1{height:36.796875pt;}
.hd{height:42.656250pt;}
.ha{height:43.413333pt;}
.h4{height:43.893333pt;}
.h7{height:44.156250pt;}
.h11{height:44.177583pt;}
.h12{height:44.561583pt;}
.h6{height:45.286458pt;}
.he{height:50.979375pt;}
.hc{height:52.029375pt;}
.h5{height:54.343750pt;}
.h10{height:54.365083pt;}
.h3{height:73.593750pt;}
.h0{height:904.000000pt;}
.w0{width:640.000000pt;}
.x0{left:0.000000pt;}
.x1{left:60.000000pt;}
.x26{left:64.110400pt;}
.x8{left:65.624667pt;}
.x7{left:73.248000pt;}
.x3{left:86.456667pt;}
.x23{left:88.348400pt;}
.x25{left:90.390400pt;}
.x27{left:93.417067pt;}
.x5{left:100.000000pt;}
.x16{left:105.624667pt;}
.x31{left:106.950000pt;}
.x6{left:113.228400pt;}
.x10{left:116.478000pt;}
.x43{left:117.552000pt;}
.x2{left:120.000000pt;}
.x41{left:121.856000pt;}
.x9{left:124.571333pt;}
.x28{left:128.348400pt;}
.xf{left:134.012400pt;}
.x3f{left:136.736800pt;}
.x40{left:139.750133pt;}
.x42{left:141.584000pt;}
.x2e{left:153.411333pt;}
.x29{left:154.449733pt;}
.x17{left:156.478000pt;}
.x1d{left:158.198000pt;}
.x46{left:160.455067pt;}
.x35{left:167.763333pt;}
.x2d{left:186.771333pt;}
.x11{left:190.024667pt;}
.x39{left:192.212400pt;}
.x2b{left:193.801333pt;}
.xa{left:194.864667pt;}
.x2a{left:199.343067pt;}
.x3b{left:202.265733pt;}
.x3e{left:209.576800pt;}
.x3a{left:211.279067pt;}
.x32{left:216.883333pt;}
.x18{left:230.024667pt;}
.x1e{left:231.744667pt;}
.x24{left:235.537067pt;}
.x12{left:261.064667pt;}
.x3c{left:270.612400pt;}
.x2f{left:271.584667pt;}
.xb{left:272.758000pt;}
.x36{left:277.683333pt;}
.x19{left:301.064667pt;}
.x45{left:309.448800pt;}
.x1f{left:312.438000pt;}
.x33{left:324.096667pt;}
.x13{left:326.078000pt;}
.x3d{left:338.959067pt;}
.xc{left:342.678000pt;}
.x44{left:349.453333pt;}
.x1a{left:366.078000pt;}
.x37{left:384.910000pt;}
.x20{left:388.304667pt;}
.x14{left:405.451333pt;}
.xd{left:407.691333pt;}
.x34{left:430.856667pt;}
.x1b{left:445.451333pt;}
.x21{left:453.078000pt;}
.xe{left:472.704667pt;}
.x15{left:473.598000pt;}
.x2c{left:475.214667pt;}
.x30{left:483.238000pt;}
.x38{left:491.683333pt;}
.x1c{left:513.598000pt;}
.x22{left:521.104667pt;}
.x4{left:564.791600pt;}
}




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