
    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_f8923a0d96d8210b8292c82d.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.942000;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_8543eb5cf12a010fac92e154.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.916000;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_f016d7a8f857d4524c19afd8.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.942000;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_cd16f3b7cc4c846032312dd2.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.942000;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_6c3b535cb3961abac869d0e4.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.932000;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_b348b38bc7b668f41346daf3.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.911000;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_c47a905e71f69bca9cd6d2ed.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.961000;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_fe298509a5e50480fadd7500.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.072000;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_5bd90660699187dbfeab3412.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.956000;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_0a55c267018ff0e1d6bc7ecb.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.919000;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_a59c7cb2e4ebe00d98176f53.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.826000;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_c69005cdc01a3c46f9e51a31.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.932000;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.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.m1{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);}
.v3{vertical-align:-20.790000px;}
.v0{vertical-align:0.000000px;}
.v5{vertical-align:15.840000px;}
.v1{vertical-align:20.712000px;}
.v2{vertical-align:31.069800px;}
.v4{vertical-align:47.952000px;}
.ls4f{letter-spacing:-4.104000px;}
.ls5a{letter-spacing:-0.918000px;}
.ls44{letter-spacing:-0.702000px;}
.ls3c{letter-spacing:-0.648000px;}
.ls60{letter-spacing:-0.504000px;}
.ls52{letter-spacing:-0.378000px;}
.ls3b{letter-spacing:-0.216000px;}
.ls63{letter-spacing:-0.144000px;}
.ls15{letter-spacing:-0.096000px;}
.ls46{letter-spacing:-0.063000px;}
.ls51{letter-spacing:-0.054000px;}
.ls9{letter-spacing:0.000000px;}
.ls62{letter-spacing:0.048000px;}
.ls36{letter-spacing:0.054000px;}
.ls1f{letter-spacing:0.096000px;}
.ls39{letter-spacing:0.108000px;}
.ls45{letter-spacing:0.126000px;}
.ls2b{letter-spacing:0.139200px;}
.ls43{letter-spacing:0.162000px;}
.ls65{letter-spacing:0.176400px;}
.ls28{letter-spacing:0.189000px;}
.ls20{letter-spacing:0.192000px;}
.ls3f{letter-spacing:0.216000px;}
.ls11{letter-spacing:0.240000px;}
.ls22{letter-spacing:0.252000px;}
.ls34{letter-spacing:0.270000px;}
.ls53{letter-spacing:0.297000px;}
.ls5d{letter-spacing:0.315000px;}
.ls5b{letter-spacing:0.324000px;}
.ls1b{letter-spacing:0.378000px;}
.ls27{letter-spacing:0.384000px;}
.ls26{letter-spacing:0.396900px;}
.ls2a{letter-spacing:0.432000px;}
.ls2e{letter-spacing:0.441000px;}
.lsa{letter-spacing:0.480000px;}
.ls57{letter-spacing:0.486000px;}
.ls24{letter-spacing:0.504000px;}
.lse{letter-spacing:0.535500px;}
.ls14{letter-spacing:0.567000px;}
.ls2d{letter-spacing:0.576000px;}
.ls35{letter-spacing:0.594000px;}
.ls66{letter-spacing:0.598500px;}
.ls1{letter-spacing:0.600000px;}
.ls29{letter-spacing:0.617400px;}
.ls17{letter-spacing:0.630000px;}
.ls6{letter-spacing:0.672000px;}
.ls1c{letter-spacing:0.693000px;}
.ls49{letter-spacing:0.702000px;}
.ls61{letter-spacing:0.703200px;}
.ls5e{letter-spacing:0.705600px;}
.ls10{letter-spacing:0.720000px;}
.ls2f{letter-spacing:0.749700px;}
.ls1a{letter-spacing:0.756000px;}
.ls30{letter-spacing:0.768000px;}
.ls64{letter-spacing:0.787500px;}
.ls5f{letter-spacing:0.810000px;}
.ls4{letter-spacing:0.816000px;}
.lsf{letter-spacing:0.819000px;}
.ls5c{letter-spacing:0.837000px;}
.ls0{letter-spacing:0.840000px;}
.ls5{letter-spacing:0.864000px;}
.ls68{letter-spacing:0.868800px;}
.ls2c{letter-spacing:0.873600px;}
.ls3{letter-spacing:0.882000px;}
.ls8{letter-spacing:0.912000px;}
.ls47{letter-spacing:0.918000px;}
.ls21{letter-spacing:0.926100px;}
.ls3e{letter-spacing:0.945000px;}
.ls7{letter-spacing:0.960000px;}
.ls59{letter-spacing:0.972000px;}
.ls2{letter-spacing:1.008000px;}
.ls38{letter-spacing:1.026000px;}
.ls16{letter-spacing:1.039500px;}
.lsd{letter-spacing:1.071000px;}
.ls31{letter-spacing:1.080000px;}
.ls1d{letter-spacing:1.102500px;}
.ls33{letter-spacing:1.107000px;}
.ls18{letter-spacing:1.134000px;}
.ls19{letter-spacing:1.165500px;}
.ls23{letter-spacing:1.197000px;}
.ls1e{letter-spacing:1.228500px;}
.lsb{letter-spacing:1.260000px;}
.lsc{letter-spacing:1.291500px;}
.ls13{letter-spacing:1.323000px;}
.ls48{letter-spacing:1.350000px;}
.ls3d{letter-spacing:1.354500px;}
.ls50{letter-spacing:1.404000px;}
.ls54{letter-spacing:1.431000px;}
.ls4e{letter-spacing:1.575000px;}
.ls25{letter-spacing:1.638000px;}
.ls3a{letter-spacing:1.674000px;}
.ls41{letter-spacing:1.701000px;}
.ls56{letter-spacing:1.728000px;}
.ls58{letter-spacing:1.782000px;}
.ls42{letter-spacing:1.827000px;}
.ls4a{letter-spacing:1.836000px;}
.ls4c{letter-spacing:1.953000px;}
.ls12{letter-spacing:2.100000px;}
.ls4d{letter-spacing:2.268000px;}
.ls40{letter-spacing:2.322000px;}
.ls37{letter-spacing:2.331000px;}
.ls4b{letter-spacing:2.376000px;}
.ls55{letter-spacing:2.538000px;}
.ls67{letter-spacing:16.304400px;}
.ls32{letter-spacing:333.072000px;}
.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;}
}
.wse9{word-spacing:-15.183000px;}
.ws75{word-spacing:-14.868000px;}
.ws16{word-spacing:-14.553000px;}
.ws58{word-spacing:-14.521500px;}
.wsd4{word-spacing:-14.490000px;}
.wsc9{word-spacing:-14.364000px;}
.wsc8{word-spacing:-14.301000px;}
.wsa3{word-spacing:-14.112000px;}
.ws11d{word-spacing:-14.049000px;}
.wsae{word-spacing:-13.986000px;}
.ws100{word-spacing:-13.878000px;}
.wse8{word-spacing:-12.744000px;}
.ws9d{word-spacing:-12.474000px;}
.wsc0{word-spacing:-12.447000px;}
.wse7{word-spacing:-12.096000px;}
.wsbf{word-spacing:-11.934000px;}
.ws0{word-spacing:-11.520000px;}
.ws2{word-spacing:-10.512000px;}
.ws1{word-spacing:-10.080000px;}
.ws59{word-spacing:-9.552000px;}
.ws53{word-spacing:-7.452900px;}
.ws80{word-spacing:-7.408800px;}
.wse6{word-spacing:-7.236000px;}
.ws20{word-spacing:-7.056000px;}
.ws3d{word-spacing:-6.615000px;}
.ws21{word-spacing:-6.526800px;}
.ws15{word-spacing:-1.776000px;}
.ws98{word-spacing:-1.680000px;}
.ws124{word-spacing:-1.638000px;}
.wsfc{word-spacing:-1.575000px;}
.ws49{word-spacing:-1.323000px;}
.wsed{word-spacing:-1.134000px;}
.ws8{word-spacing:-1.008000px;}
.ws6c{word-spacing:-0.912000px;}
.wsc{word-spacing:-0.864000px;}
.ws3{word-spacing:-0.840000px;}
.wsf4{word-spacing:-0.594000px;}
.ws2d{word-spacing:-0.480000px;}
.wsdc{word-spacing:-0.378000px;}
.wsf8{word-spacing:-0.270000px;}
.ws132{word-spacing:-0.240000px;}
.wsc6{word-spacing:-0.216000px;}
.ws102{word-spacing:-0.162000px;}
.ws25{word-spacing:-0.144000px;}
.wsdf{word-spacing:-0.126000px;}
.wsf2{word-spacing:-0.054000px;}
.ws4{word-spacing:0.000000px;}
.wsb3{word-spacing:0.063000px;}
.ws5e{word-spacing:0.126000px;}
.wsec{word-spacing:0.162000px;}
.ws7c{word-spacing:0.189000px;}
.ws10c{word-spacing:0.216000px;}
.ws32{word-spacing:0.252000px;}
.ws123{word-spacing:0.270000px;}
.ws117{word-spacing:0.315000px;}
.ws8a{word-spacing:0.336000px;}
.ws128{word-spacing:0.378000px;}
.ws68{word-spacing:0.432000px;}
.ws4b{word-spacing:0.441000px;}
.ws109{word-spacing:0.504000px;}
.ws3f{word-spacing:0.528000px;}
.ws83{word-spacing:0.567000px;}
.ws2a{word-spacing:0.624000px;}
.ws56{word-spacing:0.630000px;}
.ws6d{word-spacing:0.672000px;}
.wsfa{word-spacing:0.693000px;}
.ws27{word-spacing:0.720000px;}
.ws1a{word-spacing:0.756000px;}
.ws6e{word-spacing:0.816000px;}
.ws84{word-spacing:0.819000px;}
.ws8b{word-spacing:0.864000px;}
.ws46{word-spacing:0.882000px;}
.ws41{word-spacing:0.912000px;}
.ws1b{word-spacing:0.945000px;}
.ws110{word-spacing:0.972000px;}
.ws1f{word-spacing:1.008000px;}
.ws70{word-spacing:1.056000px;}
.ws1c{word-spacing:1.071000px;}
.ws101{word-spacing:1.080000px;}
.ws121{word-spacing:1.134000px;}
.ws10a{word-spacing:1.197000px;}
.wsdd{word-spacing:1.242000px;}
.ws97{word-spacing:1.248000px;}
.wsd7{word-spacing:1.260000px;}
.ws118{word-spacing:1.323000px;}
.ws40{word-spacing:1.344000px;}
.ws7b{word-spacing:1.386000px;}
.ws115{word-spacing:1.404000px;}
.ws5f{word-spacing:1.449000px;}
.ws111{word-spacing:1.458000px;}
.ws67{word-spacing:1.512000px;}
.ws96{word-spacing:1.536000px;}
.ws22{word-spacing:1.575000px;}
.wsd{word-spacing:1.632000px;}
.ws31{word-spacing:1.638000px;}
.ws2b{word-spacing:1.680000px;}
.ws90{word-spacing:1.701000px;}
.wse{word-spacing:1.728000px;}
.ws8e{word-spacing:1.764000px;}
.ws73{word-spacing:1.824000px;}
.ws8d{word-spacing:1.827000px;}
.ws6a{word-spacing:1.872000px;}
.ws57{word-spacing:1.890000px;}
.ws3a{word-spacing:1.953000px;}
.ws28{word-spacing:1.968000px;}
.wsb5{word-spacing:2.016000px;}
.wsc5{word-spacing:2.052000px;}
.ws54{word-spacing:2.079000px;}
.ws6f{word-spacing:2.112000px;}
.ws4f{word-spacing:2.142000px;}
.ws136{word-spacing:2.160000px;}
.ws1d{word-spacing:2.205000px;}
.wseb{word-spacing:2.214000px;}
.ws51{word-spacing:2.268000px;}
.ws9{word-spacing:2.310000px;}
.wsf5{word-spacing:2.322000px;}
.ws12d{word-spacing:2.331000px;}
.ws119{word-spacing:2.394000px;}
.wscc{word-spacing:2.457000px;}
.ws23{word-spacing:2.520000px;}
.wsf0{word-spacing:2.538000px;}
.wsb{word-spacing:2.544000px;}
.ws36{word-spacing:2.583000px;}
.ws6{word-spacing:2.640000px;}
.ws3e{word-spacing:2.646000px;}
.wsc7{word-spacing:2.700000px;}
.wsa4{word-spacing:2.754000px;}
.ws87{word-spacing:2.772000px;}
.wsa5{word-spacing:2.808000px;}
.ws95{word-spacing:2.832000px;}
.wsea{word-spacing:2.835000px;}
.ws135{word-spacing:2.880000px;}
.wsa6{word-spacing:2.898000px;}
.wsb9{word-spacing:2.961000px;}
.ws8c{word-spacing:2.976000px;}
.ws74{word-spacing:3.024000px;}
.ws5{word-spacing:3.060000px;}
.wsa{word-spacing:3.072000px;}
.ws10f{word-spacing:3.078000px;}
.ws12f{word-spacing:3.087000px;}
.wsb4{word-spacing:3.150000px;}
.ws17{word-spacing:3.213000px;}
.ws11{word-spacing:3.216000px;}
.ws1e{word-spacing:3.276000px;}
.ws99{word-spacing:3.312000px;}
.ws4e{word-spacing:3.339000px;}
.ws81{word-spacing:3.402000px;}
.ws116{word-spacing:3.456000px;}
.wsd2{word-spacing:3.465000px;}
.ws134{word-spacing:3.504000px;}
.ws35{word-spacing:3.528000px;}
.ws6b{word-spacing:3.552000px;}
.ws30{word-spacing:3.591000px;}
.ws126{word-spacing:3.600000px;}
.ws125{word-spacing:3.648000px;}
.wsce{word-spacing:3.654000px;}
.ws33{word-spacing:3.717000px;}
.ws7a{word-spacing:3.780000px;}
.ws12{word-spacing:3.840000px;}
.ws3c{word-spacing:3.843000px;}
.wscf{word-spacing:3.906000px;}
.ws72{word-spacing:3.936000px;}
.ws78{word-spacing:3.969000px;}
.ws11f{word-spacing:4.032000px;}
.ws65{word-spacing:4.095000px;}
.ws112{word-spacing:4.104000px;}
.ws120{word-spacing:4.158000px;}
.wsf7{word-spacing:4.212000px;}
.ws12e{word-spacing:4.221000px;}
.wsb7{word-spacing:4.284000px;}
.ws24{word-spacing:4.347000px;}
.wsb8{word-spacing:4.410000px;}
.ws42{word-spacing:4.473000px;}
.ws64{word-spacing:4.536000px;}
.ws37{word-spacing:4.599000px;}
.ws55{word-spacing:4.662000px;}
.ws88{word-spacing:4.725000px;}
.ws94{word-spacing:4.800000px;}
.wsa8{word-spacing:4.851000px;}
.ws62{word-spacing:4.914000px;}
.ws12b{word-spacing:4.968000px;}
.ws11b{word-spacing:4.977000px;}
.wsba{word-spacing:5.040000px;}
.ws133{word-spacing:5.088000px;}
.ws8f{word-spacing:5.166000px;}
.ws4c{word-spacing:5.229000px;}
.ws10{word-spacing:5.232000px;}
.ws34{word-spacing:5.292000px;}
.ws69{word-spacing:5.328000px;}
.wsf3{word-spacing:5.346000px;}
.ws47{word-spacing:5.355000px;}
.ws7e{word-spacing:5.418000px;}
.ws5b{word-spacing:5.481000px;}
.ws2c{word-spacing:5.520000px;}
.ws39{word-spacing:5.544000px;}
.ws114{word-spacing:5.562000px;}
.ws91{word-spacing:5.568000px;}
.ws2e{word-spacing:5.607000px;}
.ws60{word-spacing:5.670000px;}
.ws85{word-spacing:5.733000px;}
.wsf{word-spacing:5.760000px;}
.ws139{word-spacing:5.796000px;}
.wsee{word-spacing:5.886000px;}
.ws13{word-spacing:5.904000px;}
.ws52{word-spacing:5.922000px;}
.ws10b{word-spacing:5.985000px;}
.ws131{word-spacing:6.096000px;}
.wsad{word-spacing:6.111000px;}
.ws26{word-spacing:6.144000px;}
.ws44{word-spacing:6.174000px;}
.ws14{word-spacing:6.192000px;}
.ws130{word-spacing:6.237000px;}
.wsfd{word-spacing:6.300000px;}
.wsd8{word-spacing:6.363000px;}
.ws7d{word-spacing:6.426000px;}
.ws93{word-spacing:6.432000px;}
.ws50{word-spacing:6.489000px;}
.wsc2{word-spacing:6.552000px;}
.ws82{word-spacing:6.576000px;}
.wsd0{word-spacing:6.615000px;}
.ws71{word-spacing:6.672000px;}
.wsa7{word-spacing:6.678000px;}
.wsbd{word-spacing:6.741000px;}
.ws12a{word-spacing:6.750000px;}
.wse0{word-spacing:6.804000px;}
.wsd3{word-spacing:6.867000px;}
.ws10e{word-spacing:6.912000px;}
.ws43{word-spacing:6.930000px;}
.ws5d{word-spacing:6.993000px;}
.wsd1{word-spacing:7.056000px;}
.ws76{word-spacing:7.182000px;}
.ws5c{word-spacing:7.245000px;}
.wsef{word-spacing:7.290000px;}
.ws5a{word-spacing:7.308000px;}
.ws113{word-spacing:7.344000px;}
.wsb1{word-spacing:7.371000px;}
.wsde{word-spacing:7.398000px;}
.ws48{word-spacing:7.434000px;}
.wsc4{word-spacing:7.497000px;}
.ws108{word-spacing:7.506000px;}
.wsb2{word-spacing:7.560000px;}
.wsb6{word-spacing:7.686000px;}
.ws19{word-spacing:7.749000px;}
.ws127{word-spacing:7.812000px;}
.ws61{word-spacing:7.938000px;}
.ws2f{word-spacing:8.001000px;}
.ws9a{word-spacing:8.064000px;}
.wsda{word-spacing:8.208000px;}
.wsb0{word-spacing:8.316000px;}
.wsaf{word-spacing:8.379000px;}
.ws10d{word-spacing:8.478000px;}
.ws92{word-spacing:8.544000px;}
.ws66{word-spacing:8.631000px;}
.wsca{word-spacing:8.694000px;}
.ws106{word-spacing:8.748000px;}
.wsa9{word-spacing:8.820000px;}
.ws38{word-spacing:8.883000px;}
.wse1{word-spacing:8.946000px;}
.ws29{word-spacing:8.976000px;}
.ws63{word-spacing:9.009000px;}
.ws129{word-spacing:9.072000px;}
.wse2{word-spacing:9.261000px;}
.wsd5{word-spacing:9.324000px;}
.ws3b{word-spacing:9.513000px;}
.ws138{word-spacing:9.576000px;}
.wscd{word-spacing:9.639000px;}
.ws89{word-spacing:9.828000px;}
.wsab{word-spacing:9.954000px;}
.wsbc{word-spacing:10.080000px;}
.ws105{word-spacing:10.314000px;}
.ws86{word-spacing:10.332000px;}
.wsac{word-spacing:10.395000px;}
.ws79{word-spacing:10.458000px;}
.wsc1{word-spacing:10.521000px;}
.ws4d{word-spacing:10.584000px;}
.ws18{word-spacing:10.710000px;}
.ws122{word-spacing:10.773000px;}
.ws45{word-spacing:10.836000px;}
.wsc3{word-spacing:10.962000px;}
.wscb{word-spacing:11.088000px;}
.ws103{word-spacing:11.232000px;}
.ws11a{word-spacing:11.277000px;}
.wsf1{word-spacing:11.340000px;}
.ws12c{word-spacing:11.466000px;}
.wsaa{word-spacing:11.529000px;}
.wsd6{word-spacing:11.655000px;}
.wse4{word-spacing:11.781000px;}
.ws7f{word-spacing:11.844000px;}
.ws107{word-spacing:11.988000px;}
.wsbb{word-spacing:12.033000px;}
.wsfb{word-spacing:12.096000px;}
.ws11c{word-spacing:12.285000px;}
.wse3{word-spacing:12.348000px;}
.wsf6{word-spacing:12.366000px;}
.ws4a{word-spacing:12.537000px;}
.ws13a{word-spacing:12.789000px;}
.wsf9{word-spacing:12.915000px;}
.ws11e{word-spacing:13.041000px;}
.ws77{word-spacing:13.230000px;}
.ws104{word-spacing:13.716000px;}
.wsdb{word-spacing:15.984000px;}
.ws7{word-spacing:36.576000px;}
.ws137{word-spacing:51.786000px;}
.ws9c{word-spacing:80.028000px;}
.ws9b{word-spacing:115.290000px;}
.ws9f{word-spacing:141.966000px;}
.wsa0{word-spacing:167.508000px;}
.wsa1{word-spacing:183.524400px;}
.wsd9{word-spacing:361.746000px;}
.wsff{word-spacing:367.740000px;}
.wsa2{word-spacing:371.466000px;}
.ws9e{word-spacing:398.763000px;}
.wsfe{word-spacing:491.508000px;}
.wse5{word-spacing:492.804000px;}
.wsbe{word-spacing:808.758000px;}
._4{margin-left:-48.096000px;}
._2a{margin-left:-15.700800px;}
._3{margin-left:-14.155200px;}
._20{margin-left:-13.128000px;}
._24{margin-left:-7.625100px;}
._6{margin-left:-6.342000px;}
._a{margin-left:-5.008500px;}
._21{margin-left:-3.996000px;}
._8{margin-left:-2.875200px;}
._1{margin-left:-1.848000px;}
._0{width:1.176000px;}
._f{width:2.212800px;}
._1e{width:4.032000px;}
._26{width:5.197200px;}
._22{width:6.321000px;}
._13{width:7.755300px;}
._1f{width:9.229500px;}
._b{width:12.816000px;}
._27{width:15.204000px;}
._14{width:22.368000px;}
._10{width:24.288000px;}
._d{width:25.296000px;}
._17{width:26.592000px;}
._18{width:27.600000px;}
._16{width:29.232000px;}
._15{width:30.576000px;}
._11{width:32.496000px;}
._e{width:34.080000px;}
._c{width:35.424000px;}
._9{width:48.573000px;}
._2{width:53.707200px;}
._29{width:67.440000px;}
._19{width:73.099200px;}
._1a{width:104.880000px;}
._1d{width:426.681000px;}
._1b{width:453.978000px;}
._1c{width:467.205000px;}
._7{width:497.574000px;}
._28{width:509.652000px;}
._25{width:510.948000px;}
._23{width:571.698000px;}
._5{width:928.704000px;}
._12{width:1545.982800px;}
.fc1{color:rgb(79,98,40);}
.fc0{color:rgb(0,0,0);}
.fs8{font-size:33.600000px;}
.fs3{font-size:42.000000px;}
.fs6{font-size:44.100000px;}
.fs2{font-size:48.000000px;}
.fs7{font-size:54.000000px;}
.fs1{font-size:60.000000px;}
.fs5{font-size:63.000000px;}
.fs4{font-size:72.000000px;}
.fs0{font-size:84.000000px;}
.y0{bottom:0.000000px;}
.y48{bottom:68.031450px;}
.y13d{bottom:68.580300px;}
.y166{bottom:69.142500px;}
.yce{bottom:69.219150px;}
.y191{bottom:70.947300px;}
.y47{bottom:83.031450px;}
.y13c{bottom:88.078800px;}
.y165{bottom:88.641000px;}
.ycd{bottom:88.717650px;}
.y190{bottom:90.445800px;}
.y46{bottom:98.031450px;}
.yf9{bottom:104.291700px;}
.y13b{bottom:107.577300px;}
.y164{bottom:108.139500px;}
.ycc{bottom:108.216150px;}
.y18f{bottom:109.944300px;}
.y45{bottom:113.031450px;}
.yf1{bottom:123.745200px;}
.yf8{bottom:123.785700px;}
.y13a{bottom:127.075800px;}
.y163{bottom:127.638000px;}
.ycb{bottom:127.714650px;}
.y44{bottom:128.031450px;}
.y1e2{bottom:128.835150px;}
.y18e{bottom:129.442800px;}
.y1fb{bottom:130.357650px;}
.y1cb{bottom:130.365150px;}
.ye0{bottom:130.372650px;}
.y1b2{bottom:136.323150px;}
.y43{bottom:143.031450px;}
.yf0{bottom:143.239200px;}
.yf7{bottom:143.279700px;}
.y11a{bottom:145.067400px;}
.y139{bottom:146.574300px;}
.y162{bottom:147.136500px;}
.yca{bottom:147.213150px;}
.y1e1{bottom:148.333650px;}
.y18d{bottom:148.941300px;}
.y1fa{bottom:149.856150px;}
.y20c{bottom:149.859150px;}
.y1ca{bottom:149.863650px;}
.ydf{bottom:149.871150px;}
.y1b1{bottom:155.835150px;}
.y42{bottom:158.031450px;}
.yef{bottom:162.733200px;}
.yf6{bottom:162.773700px;}
.y119{bottom:164.565900px;}
.y138{bottom:166.072800px;}
.y161{bottom:166.635000px;}
.yc9{bottom:166.711650px;}
.y1e0{bottom:167.832150px;}
.y1d{bottom:168.379050px;}
.y18c{bottom:168.439800px;}
.y76{bottom:169.330650px;}
.y1f9{bottom:169.354650px;}
.y20b{bottom:169.357650px;}
.y1c9{bottom:169.362150px;}
.yde{bottom:169.369650px;}
.y41{bottom:173.031450px;}
.y1b0{bottom:175.333650px;}
.yee{bottom:182.227200px;}
.yf5{bottom:182.267700px;}
.y1c{bottom:183.379050px;}
.y118{bottom:184.064400px;}
.y137{bottom:185.571300px;}
.y160{bottom:186.133500px;}
.yc8{bottom:186.210150px;}
.y1df{bottom:187.330650px;}
.y40{bottom:188.031450px;}
.yfa{bottom:188.827650px;}
.y75{bottom:188.829150px;}
.y91{bottom:188.832150px;}
.y1f8{bottom:188.853150px;}
.y20a{bottom:188.856150px;}
.y1c8{bottom:188.860650px;}
.ydd{bottom:188.868150px;}
.y1af{bottom:194.832150px;}
.yed{bottom:201.721200px;}
.yf4{bottom:201.761700px;}
.y3f{bottom:203.031450px;}
.y117{bottom:203.562900px;}
.y136{bottom:205.069800px;}
.y15f{bottom:205.632000px;}
.yc7{bottom:205.708650px;}
.y1de{bottom:206.829150px;}
.y18b{bottom:207.436800px;}
.y5c{bottom:208.326150px;}
.y74{bottom:208.327650px;}
.y90{bottom:208.330650px;}
.y1f7{bottom:208.351650px;}
.y209{bottom:208.354650px;}
.y1c7{bottom:208.359150px;}
.ydc{bottom:208.366650px;}
.y1b{bottom:212.767050px;}
.y1ae{bottom:214.330650px;}
.y3e{bottom:218.031450px;}
.yec{bottom:221.215200px;}
.yf3{bottom:221.255700px;}
.y1d6{bottom:221.830650px;}
.y116{bottom:223.061400px;}
.y135{bottom:224.568300px;}
.y15e{bottom:225.130500px;}
.yc6{bottom:225.207150px;}
.y1dd{bottom:226.327650px;}
.y1a{bottom:227.767050px;}
.y5b{bottom:227.824650px;}
.y73{bottom:227.826150px;}
.y1f6{bottom:227.850150px;}
.y208{bottom:227.853150px;}
.y1c6{bottom:227.857650px;}
.ydb{bottom:227.865150px;}
.y3d{bottom:233.031450px;}
.y1ad{bottom:233.829150px;}
.yeb{bottom:240.709200px;}
.yf2{bottom:240.749700px;}
.y1d5{bottom:241.329150px;}
.y115{bottom:242.559900px;}
.y134{bottom:244.066800px;}
.y15d{bottom:244.629000px;}
.yc5{bottom:244.705650px;}
.y1dc{bottom:245.826150px;}
.y5a{bottom:247.323150px;}
.y72{bottom:247.324650px;}
.y8f{bottom:247.327650px;}
.y1f5{bottom:247.348650px;}
.y207{bottom:247.351650px;}
.y1c5{bottom:247.356150px;}
.yda{bottom:247.363650px;}
.y3c{bottom:248.031450px;}
.y1ac{bottom:253.327650px;}
.y19{bottom:257.155050px;}
.y1d4{bottom:260.827650px;}
.y114{bottom:262.058400px;}
.yea{bottom:262.457700px;}
.y3b{bottom:263.031450px;}
.y133{bottom:263.565300px;}
.y15c{bottom:264.127500px;}
.yc4{bottom:264.204150px;}
.y1db{bottom:265.324650px;}
.y18a{bottom:265.932300px;}
.y71{bottom:266.823150px;}
.y59{bottom:266.841150px;}
.y1f4{bottom:266.847150px;}
.ya3{bottom:266.848650px;}
.y206{bottom:266.850150px;}
.y1c4{bottom:266.854650px;}
.yd9{bottom:266.862150px;}
.y18{bottom:272.155050px;}
.y1ab{bottom:272.826150px;}
.y3a{bottom:278.031450px;}
.y1d3{bottom:280.326150px;}
.y113{bottom:281.556900px;}
.ye9{bottom:281.951700px;}
.y132{bottom:283.063800px;}
.y15b{bottom:283.626000px;}
.yc3{bottom:283.702650px;}
.y1da{bottom:284.823150px;}
.y189{bottom:285.430800px;}
.y58{bottom:286.339650px;}
.y1f3{bottom:286.345650px;}
.ya2{bottom:286.347150px;}
.y70{bottom:286.351650px;}
.y1c3{bottom:286.353150px;}
.yd8{bottom:286.360650px;}
.y17{bottom:287.155050px;}
.y1aa{bottom:292.324650px;}
.y39{bottom:293.031450px;}
.y1d2{bottom:299.824650px;}
.y112{bottom:301.055400px;}
.ye8{bottom:301.445700px;}
.y16{bottom:302.155050px;}
.y131{bottom:302.562300px;}
.y15a{bottom:303.124500px;}
.yc2{bottom:303.201150px;}
.y1d9{bottom:304.321650px;}
.y188{bottom:304.929300px;}
.y8e{bottom:305.823150px;}
.y57{bottom:305.838150px;}
.y1f2{bottom:305.844150px;}
.ya1{bottom:305.845650px;}
.y205{bottom:305.847150px;}
.y6f{bottom:305.850150px;}
.y1c2{bottom:305.851650px;}
.yd7{bottom:305.859150px;}
.y38{bottom:308.031450px;}
.y1a9{bottom:311.823150px;}
.y15{bottom:317.155050px;}
.y1d1{bottom:319.323150px;}
.y111{bottom:320.553900px;}
.ye7{bottom:320.939700px;}
.y130{bottom:322.060800px;}
.y159{bottom:322.623000px;}
.yc1{bottom:322.699650px;}
.y37{bottom:323.031450px;}
.y187{bottom:324.427800px;}
.y8d{bottom:325.333650px;}
.y56{bottom:325.336650px;}
.y1f1{bottom:325.342650px;}
.ya0{bottom:325.344150px;}
.y6e{bottom:325.348650px;}
.y1c1{bottom:325.350150px;}
.yd6{bottom:325.357650px;}
.y1a8{bottom:331.327650px;}
.y14{bottom:332.155050px;}
.y36{bottom:338.031450px;}
.y1d0{bottom:338.821650px;}
.y110{bottom:340.052400px;}
.ye6{bottom:340.433700px;}
.y1d8{bottom:341.056650px;}
.y12f{bottom:341.559300px;}
.yc0{bottom:342.198150px;}
.y186{bottom:343.926300px;}
.y8c{bottom:344.832150px;}
.y55{bottom:344.835150px;}
.y1f0{bottom:344.841150px;}
.y9f{bottom:344.842650px;}
.y6d{bottom:344.847150px;}
.y1c0{bottom:344.848650px;}
.yd5{bottom:344.856150px;}
.y13{bottom:347.155050px;}
.y1a7{bottom:350.826150px;}
.y35{bottom:353.031450px;}
.y1d7{bottom:358.309650px;}
.y10f{bottom:359.550900px;}
.ye5{bottom:359.927700px;}
.y12e{bottom:361.057800px;}
.ybf{bottom:361.696650px;}
.y12{bottom:362.155050px;}
.y185{bottom:363.424800px;}
.y8b{bottom:364.330650px;}
.y54{bottom:364.333650px;}
.y1ef{bottom:364.339650px;}
.y9e{bottom:364.341150px;}
.y204{bottom:364.342650px;}
.y6c{bottom:364.345650px;}
.y1bf{bottom:364.347150px;}
.yd4{bottom:364.354650px;}
.yac{bottom:368.031450px;}
.y1a6{bottom:370.324650px;}
.y1cf{bottom:375.562650px;}
.y11{bottom:377.155050px;}
.y10e{bottom:379.049400px;}
.ye4{bottom:379.421700px;}
.y12d{bottom:380.556300px;}
.ybe{bottom:381.195150px;}
.y184{bottom:382.923300px;}
.yab{bottom:383.031450px;}
.y8a{bottom:383.829150px;}
.y53{bottom:383.832150px;}
.y1ee{bottom:383.838150px;}
.y203{bottom:383.841150px;}
.y6b{bottom:383.844150px;}
.y1be{bottom:383.845650px;}
.yd3{bottom:383.853150px;}
.y1a5{bottom:389.823150px;}
.y14e{bottom:389.948700px;}
.y153{bottom:389.975700px;}
.y158{bottom:390.002700px;}
.y10{bottom:392.155050px;}
.y1ce{bottom:392.815650px;}
.yaa{bottom:398.031450px;}
.y10d{bottom:398.547900px;}
.ye3{bottom:398.915700px;}
.y12c{bottom:400.054800px;}
.ybd{bottom:400.693650px;}
.y183{bottom:402.421800px;}
.y34{bottom:403.324650px;}
.y89{bottom:403.327650px;}
.y52{bottom:403.330650px;}
.y85{bottom:403.332150px;}
.y1ed{bottom:403.336650px;}
.y9d{bottom:403.338150px;}
.y202{bottom:403.339650px;}
.y6a{bottom:403.342650px;}
.y1bd{bottom:403.344150px;}
.yd2{bottom:403.351650px;}
.yf{bottom:407.155050px;}
.y1a4{bottom:409.321650px;}
.y14d{bottom:409.442700px;}
.y152{bottom:409.469700px;}
.y157{bottom:409.496700px;}
.y1cd{bottom:410.068650px;}
.y10c{bottom:418.046400px;}
.y12b{bottom:419.553300px;}
.ybc{bottom:420.192150px;}
.y33{bottom:422.823150px;}
.y88{bottom:422.826150px;}
.y51{bottom:422.829150px;}
.y84{bottom:422.830650px;}
.y1ec{bottom:422.835150px;}
.y201{bottom:422.838150px;}
.y69{bottom:422.841150px;}
.y1bc{bottom:422.842650px;}
.yd1{bottom:422.850150px;}
.ye2{bottom:423.053700px;}
.y1cc{bottom:427.321650px;}
.y14c{bottom:428.936700px;}
.y151{bottom:428.963700px;}
.y156{bottom:428.990700px;}
.ye{bottom:436.543050px;}
.y10b{bottom:437.544900px;}
.y12a{bottom:439.051800px;}
.ybb{bottom:439.690650px;}
.y32{bottom:442.324650px;}
.y50{bottom:442.327650px;}
.y83{bottom:442.329150px;}
.y1eb{bottom:442.333650px;}
.y200{bottom:442.336650px;}
.y68{bottom:442.339650px;}
.y1bb{bottom:442.341150px;}
.yd0{bottom:442.348650px;}
.y1a3{bottom:446.020650px;}
.y14b{bottom:448.430700px;}
.y150{bottom:448.457700px;}
.y155{bottom:448.484700px;}
.yd{bottom:451.543050px;}
.ye1{bottom:453.571650px;}
.y17e{bottom:456.669450px;}
.y10a{bottom:457.043400px;}
.y129{bottom:458.550300px;}
.yba{bottom:459.189150px;}
.y31{bottom:461.823150px;}
.y4f{bottom:461.826150px;}
.y82{bottom:461.827650px;}
.y1ea{bottom:461.832150px;}
.y9c{bottom:461.833650px;}
.y1ff{bottom:461.835150px;}
.y67{bottom:461.838150px;}
.y1ba{bottom:461.839650px;}
.ycf{bottom:461.847150px;}
.y1a2{bottom:463.273650px;}
.yc{bottom:466.543050px;}
.y14a{bottom:467.924700px;}
.y14f{bottom:467.951700px;}
.y154{bottom:467.978700px;}
.y178{bottom:476.136450px;}
.y17d{bottom:476.163450px;}
.y109{bottom:476.541900px;}
.y128{bottom:478.048800px;}
.yb9{bottom:478.687650px;}
.y1a1{bottom:480.526650px;}
.y30{bottom:481.323150px;}
.y4e{bottom:481.324650px;}
.y81{bottom:481.326150px;}
.y1e9{bottom:481.330650px;}
.y9b{bottom:481.332150px;}
.y1fe{bottom:481.333650px;}
.y66{bottom:481.336650px;}
.y1b9{bottom:481.338150px;}
.y87{bottom:481.345650px;}
.y147{bottom:487.432200px;}
.y177{bottom:495.630450px;}
.y17c{bottom:495.657450px;}
.y182{bottom:495.684450px;}
.y108{bottom:496.040400px;}
.y127{bottom:497.547300px;}
.y1a0{bottom:497.779650px;}
.y4d{bottom:500.823150px;}
.y2f{bottom:500.824650px;}
.y1e8{bottom:500.829150px;}
.y9a{bottom:500.830650px;}
.y1fd{bottom:500.832150px;}
.y65{bottom:500.835150px;}
.y1b8{bottom:500.836650px;}
.y86{bottom:500.844150px;}
.y146{bottom:506.926200px;}
.y149{bottom:506.939700px;}
.y19f{bottom:515.032650px;}
.y176{bottom:515.124450px;}
.y17b{bottom:515.151450px;}
.y181{bottom:515.178450px;}
.y107{bottom:515.538900px;}
.y126{bottom:517.045800px;}
.y2e{bottom:520.323150px;}
.y1e7{bottom:520.327650px;}
.y99{bottom:520.329150px;}
.y1fc{bottom:520.330650px;}
.y64{bottom:520.333650px;}
.y1b7{bottom:520.335150px;}
.y4c{bottom:520.342650px;}
.y145{bottom:526.420200px;}
.y148{bottom:526.433700px;}
.yb8{bottom:528.693750px;}
.y19e{bottom:532.285650px;}
.y175{bottom:534.618450px;}
.y17a{bottom:534.645450px;}
.y180{bottom:534.672450px;}
.y106{bottom:535.037400px;}
.y125{bottom:536.544300px;}
.y1e6{bottom:539.826150px;}
.y80{bottom:539.827650px;}
.ya9{bottom:539.829150px;}
.y63{bottom:539.832150px;}
.y1b6{bottom:539.833650px;}
.y2d{bottom:539.841150px;}
.y142{bottom:545.927700px;}
.y19d{bottom:549.538650px;}
.yb7{bottom:552.669750px;}
.yb{bottom:553.468800px;}
.y174{bottom:554.112450px;}
.y179{bottom:554.139450px;}
.y17f{bottom:554.166450px;}
.y105{bottom:554.535900px;}
.y124{bottom:556.042800px;}
.y1e5{bottom:559.324650px;}
.y7f{bottom:559.326150px;}
.ya8{bottom:559.327650px;}
.y62{bottom:559.330650px;}
.y1b5{bottom:559.332150px;}
.y2c{bottom:559.339650px;}
.yb6{bottom:564.657750px;}
.y141{bottom:565.421700px;}
.y144{bottom:565.435200px;}
.y19c{bottom:566.791650px;}
.ya{bottom:566.971800px;}
.y16d{bottom:573.606450px;}
.y171{bottom:573.619950px;}
.y104{bottom:574.034400px;}
.y123{bottom:575.541300px;}
.y1e4{bottom:578.823150px;}
.y7e{bottom:578.824650px;}
.ya7{bottom:578.826150px;}
.y61{bottom:578.829150px;}
.y1b4{bottom:578.830650px;}
.y2b{bottom:578.838150px;}
.y9{bottom:580.474800px;}
.y19b{bottom:584.044650px;}
.y140{bottom:584.915700px;}
.y143{bottom:584.929200px;}
.y16c{bottom:593.100450px;}
.y170{bottom:593.113950px;}
.y103{bottom:593.532900px;}
.y122{bottom:595.039800px;}
.y7d{bottom:598.323150px;}
.ya6{bottom:598.324650px;}
.y60{bottom:598.327650px;}
.y1b3{bottom:598.329150px;}
.y1e3{bottom:598.333650px;}
.y2a{bottom:598.336650px;}
.yb5{bottom:600.621750px;}
.y19a{bottom:601.297650px;}
.y13f{bottom:609.053700px;}
.y16b{bottom:612.594450px;}
.y16f{bottom:612.607950px;}
.yb4{bottom:612.609750px;}
.y173{bottom:612.621450px;}
.y102{bottom:613.031400px;}
.ya5{bottom:617.823150px;}
.y5f{bottom:617.826150px;}
.y7c{bottom:617.827650px;}
.y98{bottom:617.832150px;}
.y29{bottom:617.835150px;}
.y199{bottom:618.550650px;}
.y8{bottom:621.149100px;}
.y16a{bottom:632.088450px;}
.y16e{bottom:632.101950px;}
.y172{bottom:632.115450px;}
.y101{bottom:632.529900px;}
.y198{bottom:635.803650px;}
.y7{bottom:636.149100px;}
.y5e{bottom:637.324650px;}
.y7b{bottom:637.326150px;}
.y97{bottom:637.330650px;}
.y28{bottom:637.333650px;}
.y13e{bottom:639.571650px;}
.y121{bottom:647.623200px;}
.yb3{bottom:648.573750px;}
.y6{bottom:651.149100px;}
.y100{bottom:652.028400px;}
.y197{bottom:653.056650px;}
.y169{bottom:653.836950px;}
.y5d{bottom:656.823150px;}
.y7a{bottom:656.824650px;}
.y96{bottom:656.829150px;}
.y27{bottom:656.832150px;}
.yb2{bottom:660.561750px;}
.y5{bottom:666.149100px;}
.y120{bottom:667.117200px;}
.y196{bottom:670.309650px;}
.yff{bottom:671.526900px;}
.y79{bottom:676.323150px;}
.y95{bottom:676.327650px;}
.y26{bottom:676.330650px;}
.y168{bottom:677.812950px;}
.y11f{bottom:686.611200px;}
.y195{bottom:687.562650px;}
.y4{bottom:688.649550px;}
.yfe{bottom:691.025400px;}
.y78{bottom:695.824650px;}
.y94{bottom:695.826150px;}
.y25{bottom:695.829150px;}
.yb1{bottom:696.525750px;}
.y194{bottom:704.815650px;}
.y167{bottom:705.933150px;}
.y11e{bottom:706.118700px;}
.yfd{bottom:710.523900px;}
.y77{bottom:715.323150px;}
.y93{bottom:715.324650px;}
.y24{bottom:715.327650px;}
.yaf{bottom:720.501750px;}
.y193{bottom:722.068650px;}
.y11d{bottom:725.612700px;}
.yfc{bottom:730.022400px;}
.y92{bottom:734.823150px;}
.y23{bottom:734.826150px;}
.y192{bottom:739.321650px;}
.y3{bottom:741.141600px;}
.yb0{bottom:744.477750px;}
.y11c{bottom:745.106700px;}
.yfb{bottom:749.520900px;}
.ya4{bottom:754.323150px;}
.y22{bottom:754.324650px;}
.y2{bottom:765.144600px;}
.y11b{bottom:766.855200px;}
.yae{bottom:768.453750px;}
.y4b{bottom:773.823150px;}
.y1{bottom:789.147600px;}
.y21{bottom:793.321650px;}
.yad{bottom:794.975400px;}
.y4a{bottom:841.007700px;}
.y1f{bottom:841.009800px;}
.y20{bottom:848.774400px;}
.y49{bottom:859.007700px;}
.y1e{bottom:859.009800px;}
.h6{height:29.400000px;}
.h5{height:30.282000px;}
.h4{height:34.608000px;}
.h1b{height:38.556000px;}
.h1a{height:38.934000px;}
.h21{height:40.065600px;}
.h3{height:43.260000px;}
.h1c{height:44.334000px;}
.h10{height:44.982000px;}
.h8{height:45.423000px;}
.h7{height:50.400000px;}
.h9{height:51.723000px;}
.h1e{height:56.792100px;}
.h1f{height:56.834100px;}
.h12{height:56.876100px;}
.h18{height:56.888100px;}
.h15{height:56.900100px;}
.he{height:56.912100px;}
.ha{height:56.918100px;}
.h22{height:56.936100px;}
.h20{height:56.942100px;}
.h16{height:56.948100px;}
.h17{height:56.954100px;}
.h11{height:56.960100px;}
.h19{height:56.966100px;}
.h14{height:56.972100px;}
.h13{height:56.978100px;}
.hb{height:56.984100px;}
.hc{height:56.990100px;}
.hf{height:56.996100px;}
.h23{height:58.566000px;}
.h2{height:60.564000px;}
.hd{height:81.469800px;}
.h1d{height:92.286000px;}
.h1{height:935.250000px;}
.h0{height:935.433000px;}
.w0{width:659.055000px;}
.w1{width:659.250000px;}
.x0{left:0.000000px;}
.x6{left:70.277400px;}
.x2{left:74.409450px;}
.xa{left:79.576800px;}
.x7{left:95.669250px;}
.x1{left:98.407500px;}
.x11{left:100.468500px;}
.x3{left:103.185450px;}
.xc{left:108.277800px;}
.x8{left:124.444500px;}
.x1c{left:131.959050px;}
.x14{left:136.379550px;}
.x10{left:144.573000px;}
.x9{left:147.884400px;}
.x1d{left:153.214650px;}
.x18{left:159.596700px;}
.x1b{left:160.727550px;}
.xb{left:167.623800px;}
.xd{left:168.876000px;}
.x17{left:181.974900px;}
.x12{left:232.836000px;}
.x15{left:241.943100px;}
.xf{left:245.267850px;}
.x19{left:267.677700px;}
.x4{left:276.550050px;}
.xe{left:302.688000px;}
.x13{left:369.996000px;}
.x16{left:409.478100px;}
.x1a{left:430.096200px;}
.x5{left:477.333300px;}
@media print{
.v3{vertical-align:-18.480000pt;}
.v0{vertical-align:0.000000pt;}
.v5{vertical-align:14.080000pt;}
.v1{vertical-align:18.410667pt;}
.v2{vertical-align:27.617600pt;}
.v4{vertical-align:42.624000pt;}
.ls4f{letter-spacing:-3.648000pt;}
.ls5a{letter-spacing:-0.816000pt;}
.ls44{letter-spacing:-0.624000pt;}
.ls3c{letter-spacing:-0.576000pt;}
.ls60{letter-spacing:-0.448000pt;}
.ls52{letter-spacing:-0.336000pt;}
.ls3b{letter-spacing:-0.192000pt;}
.ls63{letter-spacing:-0.128000pt;}
.ls15{letter-spacing:-0.085333pt;}
.ls46{letter-spacing:-0.056000pt;}
.ls51{letter-spacing:-0.048000pt;}
.ls9{letter-spacing:0.000000pt;}
.ls62{letter-spacing:0.042667pt;}
.ls36{letter-spacing:0.048000pt;}
.ls1f{letter-spacing:0.085333pt;}
.ls39{letter-spacing:0.096000pt;}
.ls45{letter-spacing:0.112000pt;}
.ls2b{letter-spacing:0.123733pt;}
.ls43{letter-spacing:0.144000pt;}
.ls65{letter-spacing:0.156800pt;}
.ls28{letter-spacing:0.168000pt;}
.ls20{letter-spacing:0.170667pt;}
.ls3f{letter-spacing:0.192000pt;}
.ls11{letter-spacing:0.213333pt;}
.ls22{letter-spacing:0.224000pt;}
.ls34{letter-spacing:0.240000pt;}
.ls53{letter-spacing:0.264000pt;}
.ls5d{letter-spacing:0.280000pt;}
.ls5b{letter-spacing:0.288000pt;}
.ls1b{letter-spacing:0.336000pt;}
.ls27{letter-spacing:0.341333pt;}
.ls26{letter-spacing:0.352800pt;}
.ls2a{letter-spacing:0.384000pt;}
.ls2e{letter-spacing:0.392000pt;}
.lsa{letter-spacing:0.426667pt;}
.ls57{letter-spacing:0.432000pt;}
.ls24{letter-spacing:0.448000pt;}
.lse{letter-spacing:0.476000pt;}
.ls14{letter-spacing:0.504000pt;}
.ls2d{letter-spacing:0.512000pt;}
.ls35{letter-spacing:0.528000pt;}
.ls66{letter-spacing:0.532000pt;}
.ls1{letter-spacing:0.533333pt;}
.ls29{letter-spacing:0.548800pt;}
.ls17{letter-spacing:0.560000pt;}
.ls6{letter-spacing:0.597333pt;}
.ls1c{letter-spacing:0.616000pt;}
.ls49{letter-spacing:0.624000pt;}
.ls61{letter-spacing:0.625067pt;}
.ls5e{letter-spacing:0.627200pt;}
.ls10{letter-spacing:0.640000pt;}
.ls2f{letter-spacing:0.666400pt;}
.ls1a{letter-spacing:0.672000pt;}
.ls30{letter-spacing:0.682667pt;}
.ls64{letter-spacing:0.700000pt;}
.ls5f{letter-spacing:0.720000pt;}
.ls4{letter-spacing:0.725333pt;}
.lsf{letter-spacing:0.728000pt;}
.ls5c{letter-spacing:0.744000pt;}
.ls0{letter-spacing:0.746667pt;}
.ls5{letter-spacing:0.768000pt;}
.ls68{letter-spacing:0.772267pt;}
.ls2c{letter-spacing:0.776533pt;}
.ls3{letter-spacing:0.784000pt;}
.ls8{letter-spacing:0.810667pt;}
.ls47{letter-spacing:0.816000pt;}
.ls21{letter-spacing:0.823200pt;}
.ls3e{letter-spacing:0.840000pt;}
.ls7{letter-spacing:0.853333pt;}
.ls59{letter-spacing:0.864000pt;}
.ls2{letter-spacing:0.896000pt;}
.ls38{letter-spacing:0.912000pt;}
.ls16{letter-spacing:0.924000pt;}
.lsd{letter-spacing:0.952000pt;}
.ls31{letter-spacing:0.960000pt;}
.ls1d{letter-spacing:0.980000pt;}
.ls33{letter-spacing:0.984000pt;}
.ls18{letter-spacing:1.008000pt;}
.ls19{letter-spacing:1.036000pt;}
.ls23{letter-spacing:1.064000pt;}
.ls1e{letter-spacing:1.092000pt;}
.lsb{letter-spacing:1.120000pt;}
.lsc{letter-spacing:1.148000pt;}
.ls13{letter-spacing:1.176000pt;}
.ls48{letter-spacing:1.200000pt;}
.ls3d{letter-spacing:1.204000pt;}
.ls50{letter-spacing:1.248000pt;}
.ls54{letter-spacing:1.272000pt;}
.ls4e{letter-spacing:1.400000pt;}
.ls25{letter-spacing:1.456000pt;}
.ls3a{letter-spacing:1.488000pt;}
.ls41{letter-spacing:1.512000pt;}
.ls56{letter-spacing:1.536000pt;}
.ls58{letter-spacing:1.584000pt;}
.ls42{letter-spacing:1.624000pt;}
.ls4a{letter-spacing:1.632000pt;}
.ls4c{letter-spacing:1.736000pt;}
.ls12{letter-spacing:1.866667pt;}
.ls4d{letter-spacing:2.016000pt;}
.ls40{letter-spacing:2.064000pt;}
.ls37{letter-spacing:2.072000pt;}
.ls4b{letter-spacing:2.112000pt;}
.ls55{letter-spacing:2.256000pt;}
.ls67{letter-spacing:14.492800pt;}
.ls32{letter-spacing:296.064000pt;}
.wse9{word-spacing:-13.496000pt;}
.ws75{word-spacing:-13.216000pt;}
.ws16{word-spacing:-12.936000pt;}
.ws58{word-spacing:-12.908000pt;}
.wsd4{word-spacing:-12.880000pt;}
.wsc9{word-spacing:-12.768000pt;}
.wsc8{word-spacing:-12.712000pt;}
.wsa3{word-spacing:-12.544000pt;}
.ws11d{word-spacing:-12.488000pt;}
.wsae{word-spacing:-12.432000pt;}
.ws100{word-spacing:-12.336000pt;}
.wse8{word-spacing:-11.328000pt;}
.ws9d{word-spacing:-11.088000pt;}
.wsc0{word-spacing:-11.064000pt;}
.wse7{word-spacing:-10.752000pt;}
.wsbf{word-spacing:-10.608000pt;}
.ws0{word-spacing:-10.240000pt;}
.ws2{word-spacing:-9.344000pt;}
.ws1{word-spacing:-8.960000pt;}
.ws59{word-spacing:-8.490667pt;}
.ws53{word-spacing:-6.624800pt;}
.ws80{word-spacing:-6.585600pt;}
.wse6{word-spacing:-6.432000pt;}
.ws20{word-spacing:-6.272000pt;}
.ws3d{word-spacing:-5.880000pt;}
.ws21{word-spacing:-5.801600pt;}
.ws15{word-spacing:-1.578667pt;}
.ws98{word-spacing:-1.493333pt;}
.ws124{word-spacing:-1.456000pt;}
.wsfc{word-spacing:-1.400000pt;}
.ws49{word-spacing:-1.176000pt;}
.wsed{word-spacing:-1.008000pt;}
.ws8{word-spacing:-0.896000pt;}
.ws6c{word-spacing:-0.810667pt;}
.wsc{word-spacing:-0.768000pt;}
.ws3{word-spacing:-0.746667pt;}
.wsf4{word-spacing:-0.528000pt;}
.ws2d{word-spacing:-0.426667pt;}
.wsdc{word-spacing:-0.336000pt;}
.wsf8{word-spacing:-0.240000pt;}
.ws132{word-spacing:-0.213333pt;}
.wsc6{word-spacing:-0.192000pt;}
.ws102{word-spacing:-0.144000pt;}
.ws25{word-spacing:-0.128000pt;}
.wsdf{word-spacing:-0.112000pt;}
.wsf2{word-spacing:-0.048000pt;}
.ws4{word-spacing:0.000000pt;}
.wsb3{word-spacing:0.056000pt;}
.ws5e{word-spacing:0.112000pt;}
.wsec{word-spacing:0.144000pt;}
.ws7c{word-spacing:0.168000pt;}
.ws10c{word-spacing:0.192000pt;}
.ws32{word-spacing:0.224000pt;}
.ws123{word-spacing:0.240000pt;}
.ws117{word-spacing:0.280000pt;}
.ws8a{word-spacing:0.298667pt;}
.ws128{word-spacing:0.336000pt;}
.ws68{word-spacing:0.384000pt;}
.ws4b{word-spacing:0.392000pt;}
.ws109{word-spacing:0.448000pt;}
.ws3f{word-spacing:0.469333pt;}
.ws83{word-spacing:0.504000pt;}
.ws2a{word-spacing:0.554667pt;}
.ws56{word-spacing:0.560000pt;}
.ws6d{word-spacing:0.597333pt;}
.wsfa{word-spacing:0.616000pt;}
.ws27{word-spacing:0.640000pt;}
.ws1a{word-spacing:0.672000pt;}
.ws6e{word-spacing:0.725333pt;}
.ws84{word-spacing:0.728000pt;}
.ws8b{word-spacing:0.768000pt;}
.ws46{word-spacing:0.784000pt;}
.ws41{word-spacing:0.810667pt;}
.ws1b{word-spacing:0.840000pt;}
.ws110{word-spacing:0.864000pt;}
.ws1f{word-spacing:0.896000pt;}
.ws70{word-spacing:0.938667pt;}
.ws1c{word-spacing:0.952000pt;}
.ws101{word-spacing:0.960000pt;}
.ws121{word-spacing:1.008000pt;}
.ws10a{word-spacing:1.064000pt;}
.wsdd{word-spacing:1.104000pt;}
.ws97{word-spacing:1.109333pt;}
.wsd7{word-spacing:1.120000pt;}
.ws118{word-spacing:1.176000pt;}
.ws40{word-spacing:1.194667pt;}
.ws7b{word-spacing:1.232000pt;}
.ws115{word-spacing:1.248000pt;}
.ws5f{word-spacing:1.288000pt;}
.ws111{word-spacing:1.296000pt;}
.ws67{word-spacing:1.344000pt;}
.ws96{word-spacing:1.365333pt;}
.ws22{word-spacing:1.400000pt;}
.wsd{word-spacing:1.450667pt;}
.ws31{word-spacing:1.456000pt;}
.ws2b{word-spacing:1.493333pt;}
.ws90{word-spacing:1.512000pt;}
.wse{word-spacing:1.536000pt;}
.ws8e{word-spacing:1.568000pt;}
.ws73{word-spacing:1.621333pt;}
.ws8d{word-spacing:1.624000pt;}
.ws6a{word-spacing:1.664000pt;}
.ws57{word-spacing:1.680000pt;}
.ws3a{word-spacing:1.736000pt;}
.ws28{word-spacing:1.749333pt;}
.wsb5{word-spacing:1.792000pt;}
.wsc5{word-spacing:1.824000pt;}
.ws54{word-spacing:1.848000pt;}
.ws6f{word-spacing:1.877333pt;}
.ws4f{word-spacing:1.904000pt;}
.ws136{word-spacing:1.920000pt;}
.ws1d{word-spacing:1.960000pt;}
.wseb{word-spacing:1.968000pt;}
.ws51{word-spacing:2.016000pt;}
.ws9{word-spacing:2.053333pt;}
.wsf5{word-spacing:2.064000pt;}
.ws12d{word-spacing:2.072000pt;}
.ws119{word-spacing:2.128000pt;}
.wscc{word-spacing:2.184000pt;}
.ws23{word-spacing:2.240000pt;}
.wsf0{word-spacing:2.256000pt;}
.wsb{word-spacing:2.261333pt;}
.ws36{word-spacing:2.296000pt;}
.ws6{word-spacing:2.346667pt;}
.ws3e{word-spacing:2.352000pt;}
.wsc7{word-spacing:2.400000pt;}
.wsa4{word-spacing:2.448000pt;}
.ws87{word-spacing:2.464000pt;}
.wsa5{word-spacing:2.496000pt;}
.ws95{word-spacing:2.517333pt;}
.wsea{word-spacing:2.520000pt;}
.ws135{word-spacing:2.560000pt;}
.wsa6{word-spacing:2.576000pt;}
.wsb9{word-spacing:2.632000pt;}
.ws8c{word-spacing:2.645333pt;}
.ws74{word-spacing:2.688000pt;}
.ws5{word-spacing:2.720000pt;}
.wsa{word-spacing:2.730667pt;}
.ws10f{word-spacing:2.736000pt;}
.ws12f{word-spacing:2.744000pt;}
.wsb4{word-spacing:2.800000pt;}
.ws17{word-spacing:2.856000pt;}
.ws11{word-spacing:2.858667pt;}
.ws1e{word-spacing:2.912000pt;}
.ws99{word-spacing:2.944000pt;}
.ws4e{word-spacing:2.968000pt;}
.ws81{word-spacing:3.024000pt;}
.ws116{word-spacing:3.072000pt;}
.wsd2{word-spacing:3.080000pt;}
.ws134{word-spacing:3.114667pt;}
.ws35{word-spacing:3.136000pt;}
.ws6b{word-spacing:3.157333pt;}
.ws30{word-spacing:3.192000pt;}
.ws126{word-spacing:3.200000pt;}
.ws125{word-spacing:3.242667pt;}
.wsce{word-spacing:3.248000pt;}
.ws33{word-spacing:3.304000pt;}
.ws7a{word-spacing:3.360000pt;}
.ws12{word-spacing:3.413333pt;}
.ws3c{word-spacing:3.416000pt;}
.wscf{word-spacing:3.472000pt;}
.ws72{word-spacing:3.498667pt;}
.ws78{word-spacing:3.528000pt;}
.ws11f{word-spacing:3.584000pt;}
.ws65{word-spacing:3.640000pt;}
.ws112{word-spacing:3.648000pt;}
.ws120{word-spacing:3.696000pt;}
.wsf7{word-spacing:3.744000pt;}
.ws12e{word-spacing:3.752000pt;}
.wsb7{word-spacing:3.808000pt;}
.ws24{word-spacing:3.864000pt;}
.wsb8{word-spacing:3.920000pt;}
.ws42{word-spacing:3.976000pt;}
.ws64{word-spacing:4.032000pt;}
.ws37{word-spacing:4.088000pt;}
.ws55{word-spacing:4.144000pt;}
.ws88{word-spacing:4.200000pt;}
.ws94{word-spacing:4.266667pt;}
.wsa8{word-spacing:4.312000pt;}
.ws62{word-spacing:4.368000pt;}
.ws12b{word-spacing:4.416000pt;}
.ws11b{word-spacing:4.424000pt;}
.wsba{word-spacing:4.480000pt;}
.ws133{word-spacing:4.522667pt;}
.ws8f{word-spacing:4.592000pt;}
.ws4c{word-spacing:4.648000pt;}
.ws10{word-spacing:4.650667pt;}
.ws34{word-spacing:4.704000pt;}
.ws69{word-spacing:4.736000pt;}
.wsf3{word-spacing:4.752000pt;}
.ws47{word-spacing:4.760000pt;}
.ws7e{word-spacing:4.816000pt;}
.ws5b{word-spacing:4.872000pt;}
.ws2c{word-spacing:4.906667pt;}
.ws39{word-spacing:4.928000pt;}
.ws114{word-spacing:4.944000pt;}
.ws91{word-spacing:4.949333pt;}
.ws2e{word-spacing:4.984000pt;}
.ws60{word-spacing:5.040000pt;}
.ws85{word-spacing:5.096000pt;}
.wsf{word-spacing:5.120000pt;}
.ws139{word-spacing:5.152000pt;}
.wsee{word-spacing:5.232000pt;}
.ws13{word-spacing:5.248000pt;}
.ws52{word-spacing:5.264000pt;}
.ws10b{word-spacing:5.320000pt;}
.ws131{word-spacing:5.418667pt;}
.wsad{word-spacing:5.432000pt;}
.ws26{word-spacing:5.461333pt;}
.ws44{word-spacing:5.488000pt;}
.ws14{word-spacing:5.504000pt;}
.ws130{word-spacing:5.544000pt;}
.wsfd{word-spacing:5.600000pt;}
.wsd8{word-spacing:5.656000pt;}
.ws7d{word-spacing:5.712000pt;}
.ws93{word-spacing:5.717333pt;}
.ws50{word-spacing:5.768000pt;}
.wsc2{word-spacing:5.824000pt;}
.ws82{word-spacing:5.845333pt;}
.wsd0{word-spacing:5.880000pt;}
.ws71{word-spacing:5.930667pt;}
.wsa7{word-spacing:5.936000pt;}
.wsbd{word-spacing:5.992000pt;}
.ws12a{word-spacing:6.000000pt;}
.wse0{word-spacing:6.048000pt;}
.wsd3{word-spacing:6.104000pt;}
.ws10e{word-spacing:6.144000pt;}
.ws43{word-spacing:6.160000pt;}
.ws5d{word-spacing:6.216000pt;}
.wsd1{word-spacing:6.272000pt;}
.ws76{word-spacing:6.384000pt;}
.ws5c{word-spacing:6.440000pt;}
.wsef{word-spacing:6.480000pt;}
.ws5a{word-spacing:6.496000pt;}
.ws113{word-spacing:6.528000pt;}
.wsb1{word-spacing:6.552000pt;}
.wsde{word-spacing:6.576000pt;}
.ws48{word-spacing:6.608000pt;}
.wsc4{word-spacing:6.664000pt;}
.ws108{word-spacing:6.672000pt;}
.wsb2{word-spacing:6.720000pt;}
.wsb6{word-spacing:6.832000pt;}
.ws19{word-spacing:6.888000pt;}
.ws127{word-spacing:6.944000pt;}
.ws61{word-spacing:7.056000pt;}
.ws2f{word-spacing:7.112000pt;}
.ws9a{word-spacing:7.168000pt;}
.wsda{word-spacing:7.296000pt;}
.wsb0{word-spacing:7.392000pt;}
.wsaf{word-spacing:7.448000pt;}
.ws10d{word-spacing:7.536000pt;}
.ws92{word-spacing:7.594667pt;}
.ws66{word-spacing:7.672000pt;}
.wsca{word-spacing:7.728000pt;}
.ws106{word-spacing:7.776000pt;}
.wsa9{word-spacing:7.840000pt;}
.ws38{word-spacing:7.896000pt;}
.wse1{word-spacing:7.952000pt;}
.ws29{word-spacing:7.978667pt;}
.ws63{word-spacing:8.008000pt;}
.ws129{word-spacing:8.064000pt;}
.wse2{word-spacing:8.232000pt;}
.wsd5{word-spacing:8.288000pt;}
.ws3b{word-spacing:8.456000pt;}
.ws138{word-spacing:8.512000pt;}
.wscd{word-spacing:8.568000pt;}
.ws89{word-spacing:8.736000pt;}
.wsab{word-spacing:8.848000pt;}
.wsbc{word-spacing:8.960000pt;}
.ws105{word-spacing:9.168000pt;}
.ws86{word-spacing:9.184000pt;}
.wsac{word-spacing:9.240000pt;}
.ws79{word-spacing:9.296000pt;}
.wsc1{word-spacing:9.352000pt;}
.ws4d{word-spacing:9.408000pt;}
.ws18{word-spacing:9.520000pt;}
.ws122{word-spacing:9.576000pt;}
.ws45{word-spacing:9.632000pt;}
.wsc3{word-spacing:9.744000pt;}
.wscb{word-spacing:9.856000pt;}
.ws103{word-spacing:9.984000pt;}
.ws11a{word-spacing:10.024000pt;}
.wsf1{word-spacing:10.080000pt;}
.ws12c{word-spacing:10.192000pt;}
.wsaa{word-spacing:10.248000pt;}
.wsd6{word-spacing:10.360000pt;}
.wse4{word-spacing:10.472000pt;}
.ws7f{word-spacing:10.528000pt;}
.ws107{word-spacing:10.656000pt;}
.wsbb{word-spacing:10.696000pt;}
.wsfb{word-spacing:10.752000pt;}
.ws11c{word-spacing:10.920000pt;}
.wse3{word-spacing:10.976000pt;}
.wsf6{word-spacing:10.992000pt;}
.ws4a{word-spacing:11.144000pt;}
.ws13a{word-spacing:11.368000pt;}
.wsf9{word-spacing:11.480000pt;}
.ws11e{word-spacing:11.592000pt;}
.ws77{word-spacing:11.760000pt;}
.ws104{word-spacing:12.192000pt;}
.wsdb{word-spacing:14.208000pt;}
.ws7{word-spacing:32.512000pt;}
.ws137{word-spacing:46.032000pt;}
.ws9c{word-spacing:71.136000pt;}
.ws9b{word-spacing:102.480000pt;}
.ws9f{word-spacing:126.192000pt;}
.wsa0{word-spacing:148.896000pt;}
.wsa1{word-spacing:163.132800pt;}
.wsd9{word-spacing:321.552000pt;}
.wsff{word-spacing:326.880000pt;}
.wsa2{word-spacing:330.192000pt;}
.ws9e{word-spacing:354.456000pt;}
.wsfe{word-spacing:436.896000pt;}
.wse5{word-spacing:438.048000pt;}
.wsbe{word-spacing:718.896000pt;}
._4{margin-left:-42.752000pt;}
._2a{margin-left:-13.956267pt;}
._3{margin-left:-12.582400pt;}
._20{margin-left:-11.669333pt;}
._24{margin-left:-6.777867pt;}
._6{margin-left:-5.637333pt;}
._a{margin-left:-4.452000pt;}
._21{margin-left:-3.552000pt;}
._8{margin-left:-2.555733pt;}
._1{margin-left:-1.642667pt;}
._0{width:1.045333pt;}
._f{width:1.966933pt;}
._1e{width:3.584000pt;}
._26{width:4.619733pt;}
._22{width:5.618667pt;}
._13{width:6.893600pt;}
._1f{width:8.204000pt;}
._b{width:11.392000pt;}
._27{width:13.514667pt;}
._14{width:19.882667pt;}
._10{width:21.589333pt;}
._d{width:22.485333pt;}
._17{width:23.637333pt;}
._18{width:24.533333pt;}
._16{width:25.984000pt;}
._15{width:27.178667pt;}
._11{width:28.885333pt;}
._e{width:30.293333pt;}
._c{width:31.488000pt;}
._9{width:43.176000pt;}
._2{width:47.739733pt;}
._29{width:59.946667pt;}
._19{width:64.977067pt;}
._1a{width:93.226667pt;}
._1d{width:379.272000pt;}
._1b{width:403.536000pt;}
._1c{width:415.293333pt;}
._7{width:442.288000pt;}
._28{width:453.024000pt;}
._25{width:454.176000pt;}
._23{width:508.176000pt;}
._5{width:825.514667pt;}
._12{width:1374.206933pt;}
.fs8{font-size:29.866667pt;}
.fs3{font-size:37.333333pt;}
.fs6{font-size:39.200000pt;}
.fs2{font-size:42.666667pt;}
.fs7{font-size:48.000000pt;}
.fs1{font-size:53.333333pt;}
.fs5{font-size:56.000000pt;}
.fs4{font-size:64.000000pt;}
.fs0{font-size:74.666667pt;}
.y0{bottom:0.000000pt;}
.y48{bottom:60.472400pt;}
.y13d{bottom:60.960267pt;}
.y166{bottom:61.460000pt;}
.yce{bottom:61.528133pt;}
.y191{bottom:63.064267pt;}
.y47{bottom:73.805733pt;}
.y13c{bottom:78.292267pt;}
.y165{bottom:78.792000pt;}
.ycd{bottom:78.860133pt;}
.y190{bottom:80.396267pt;}
.y46{bottom:87.139067pt;}
.yf9{bottom:92.703733pt;}
.y13b{bottom:95.624267pt;}
.y164{bottom:96.124000pt;}
.ycc{bottom:96.192133pt;}
.y18f{bottom:97.728267pt;}
.y45{bottom:100.472400pt;}
.yf1{bottom:109.995733pt;}
.yf8{bottom:110.031733pt;}
.y13a{bottom:112.956267pt;}
.y163{bottom:113.456000pt;}
.ycb{bottom:113.524133pt;}
.y44{bottom:113.805733pt;}
.y1e2{bottom:114.520133pt;}
.y18e{bottom:115.060267pt;}
.y1fb{bottom:115.873467pt;}
.y1cb{bottom:115.880133pt;}
.ye0{bottom:115.886800pt;}
.y1b2{bottom:121.176133pt;}
.y43{bottom:127.139067pt;}
.yf0{bottom:127.323733pt;}
.yf7{bottom:127.359733pt;}
.y11a{bottom:128.948800pt;}
.y139{bottom:130.288267pt;}
.y162{bottom:130.788000pt;}
.yca{bottom:130.856133pt;}
.y1e1{bottom:131.852133pt;}
.y18d{bottom:132.392267pt;}
.y1fa{bottom:133.205467pt;}
.y20c{bottom:133.208133pt;}
.y1ca{bottom:133.212133pt;}
.ydf{bottom:133.218800pt;}
.y1b1{bottom:138.520133pt;}
.y42{bottom:140.472400pt;}
.yef{bottom:144.651733pt;}
.yf6{bottom:144.687733pt;}
.y119{bottom:146.280800pt;}
.y138{bottom:147.620267pt;}
.y161{bottom:148.120000pt;}
.yc9{bottom:148.188133pt;}
.y1e0{bottom:149.184133pt;}
.y1d{bottom:149.670267pt;}
.y18c{bottom:149.724267pt;}
.y76{bottom:150.516133pt;}
.y1f9{bottom:150.537467pt;}
.y20b{bottom:150.540133pt;}
.y1c9{bottom:150.544133pt;}
.yde{bottom:150.550800pt;}
.y41{bottom:153.805733pt;}
.y1b0{bottom:155.852133pt;}
.yee{bottom:161.979733pt;}
.yf5{bottom:162.015733pt;}
.y1c{bottom:163.003600pt;}
.y118{bottom:163.612800pt;}
.y137{bottom:164.952267pt;}
.y160{bottom:165.452000pt;}
.yc8{bottom:165.520133pt;}
.y1df{bottom:166.516133pt;}
.y40{bottom:167.139067pt;}
.yfa{bottom:167.846800pt;}
.y75{bottom:167.848133pt;}
.y91{bottom:167.850800pt;}
.y1f8{bottom:167.869467pt;}
.y20a{bottom:167.872133pt;}
.y1c8{bottom:167.876133pt;}
.ydd{bottom:167.882800pt;}
.y1af{bottom:173.184133pt;}
.yed{bottom:179.307733pt;}
.yf4{bottom:179.343733pt;}
.y3f{bottom:180.472400pt;}
.y117{bottom:180.944800pt;}
.y136{bottom:182.284267pt;}
.y15f{bottom:182.784000pt;}
.yc7{bottom:182.852133pt;}
.y1de{bottom:183.848133pt;}
.y18b{bottom:184.388267pt;}
.y5c{bottom:185.178800pt;}
.y74{bottom:185.180133pt;}
.y90{bottom:185.182800pt;}
.y1f7{bottom:185.201467pt;}
.y209{bottom:185.204133pt;}
.y1c7{bottom:185.208133pt;}
.ydc{bottom:185.214800pt;}
.y1b{bottom:189.126267pt;}
.y1ae{bottom:190.516133pt;}
.y3e{bottom:193.805733pt;}
.yec{bottom:196.635733pt;}
.yf3{bottom:196.671733pt;}
.y1d6{bottom:197.182800pt;}
.y116{bottom:198.276800pt;}
.y135{bottom:199.616267pt;}
.y15e{bottom:200.116000pt;}
.yc6{bottom:200.184133pt;}
.y1dd{bottom:201.180133pt;}
.y1a{bottom:202.459600pt;}
.y5b{bottom:202.510800pt;}
.y73{bottom:202.512133pt;}
.y1f6{bottom:202.533467pt;}
.y208{bottom:202.536133pt;}
.y1c6{bottom:202.540133pt;}
.ydb{bottom:202.546800pt;}
.y3d{bottom:207.139067pt;}
.y1ad{bottom:207.848133pt;}
.yeb{bottom:213.963733pt;}
.yf2{bottom:213.999733pt;}
.y1d5{bottom:214.514800pt;}
.y115{bottom:215.608800pt;}
.y134{bottom:216.948267pt;}
.y15d{bottom:217.448000pt;}
.yc5{bottom:217.516133pt;}
.y1dc{bottom:218.512133pt;}
.y5a{bottom:219.842800pt;}
.y72{bottom:219.844133pt;}
.y8f{bottom:219.846800pt;}
.y1f5{bottom:219.865467pt;}
.y207{bottom:219.868133pt;}
.y1c5{bottom:219.872133pt;}
.yda{bottom:219.878800pt;}
.y3c{bottom:220.472400pt;}
.y1ac{bottom:225.180133pt;}
.y19{bottom:228.582267pt;}
.y1d4{bottom:231.846800pt;}
.y114{bottom:232.940800pt;}
.yea{bottom:233.295733pt;}
.y3b{bottom:233.805733pt;}
.y133{bottom:234.280267pt;}
.y15c{bottom:234.780000pt;}
.yc4{bottom:234.848133pt;}
.y1db{bottom:235.844133pt;}
.y18a{bottom:236.384267pt;}
.y71{bottom:237.176133pt;}
.y59{bottom:237.192133pt;}
.y1f4{bottom:237.197467pt;}
.ya3{bottom:237.198800pt;}
.y206{bottom:237.200133pt;}
.y1c4{bottom:237.204133pt;}
.yd9{bottom:237.210800pt;}
.y18{bottom:241.915600pt;}
.y1ab{bottom:242.512133pt;}
.y3a{bottom:247.139067pt;}
.y1d3{bottom:249.178800pt;}
.y113{bottom:250.272800pt;}
.ye9{bottom:250.623733pt;}
.y132{bottom:251.612267pt;}
.y15b{bottom:252.112000pt;}
.yc3{bottom:252.180133pt;}
.y1da{bottom:253.176133pt;}
.y189{bottom:253.716267pt;}
.y58{bottom:254.524133pt;}
.y1f3{bottom:254.529467pt;}
.ya2{bottom:254.530800pt;}
.y70{bottom:254.534800pt;}
.y1c3{bottom:254.536133pt;}
.yd8{bottom:254.542800pt;}
.y17{bottom:255.248933pt;}
.y1aa{bottom:259.844133pt;}
.y39{bottom:260.472400pt;}
.y1d2{bottom:266.510800pt;}
.y112{bottom:267.604800pt;}
.ye8{bottom:267.951733pt;}
.y16{bottom:268.582267pt;}
.y131{bottom:268.944267pt;}
.y15a{bottom:269.444000pt;}
.yc2{bottom:269.512133pt;}
.y1d9{bottom:270.508133pt;}
.y188{bottom:271.048267pt;}
.y8e{bottom:271.842800pt;}
.y57{bottom:271.856133pt;}
.y1f2{bottom:271.861467pt;}
.ya1{bottom:271.862800pt;}
.y205{bottom:271.864133pt;}
.y6f{bottom:271.866800pt;}
.y1c2{bottom:271.868133pt;}
.yd7{bottom:271.874800pt;}
.y38{bottom:273.805733pt;}
.y1a9{bottom:277.176133pt;}
.y15{bottom:281.915600pt;}
.y1d1{bottom:283.842800pt;}
.y111{bottom:284.936800pt;}
.ye7{bottom:285.279733pt;}
.y130{bottom:286.276267pt;}
.y159{bottom:286.776000pt;}
.yc1{bottom:286.844133pt;}
.y37{bottom:287.139067pt;}
.y187{bottom:288.380267pt;}
.y8d{bottom:289.185467pt;}
.y56{bottom:289.188133pt;}
.y1f1{bottom:289.193467pt;}
.ya0{bottom:289.194800pt;}
.y6e{bottom:289.198800pt;}
.y1c1{bottom:289.200133pt;}
.yd6{bottom:289.206800pt;}
.y1a8{bottom:294.513467pt;}
.y14{bottom:295.248933pt;}
.y36{bottom:300.472400pt;}
.y1d0{bottom:301.174800pt;}
.y110{bottom:302.268800pt;}
.ye6{bottom:302.607733pt;}
.y1d8{bottom:303.161467pt;}
.y12f{bottom:303.608267pt;}
.yc0{bottom:304.176133pt;}
.y186{bottom:305.712267pt;}
.y8c{bottom:306.517467pt;}
.y55{bottom:306.520133pt;}
.y1f0{bottom:306.525467pt;}
.y9f{bottom:306.526800pt;}
.y6d{bottom:306.530800pt;}
.y1c0{bottom:306.532133pt;}
.yd5{bottom:306.538800pt;}
.y13{bottom:308.582267pt;}
.y1a7{bottom:311.845467pt;}
.y35{bottom:313.805733pt;}
.y1d7{bottom:318.497467pt;}
.y10f{bottom:319.600800pt;}
.ye5{bottom:319.935733pt;}
.y12e{bottom:320.940267pt;}
.ybf{bottom:321.508133pt;}
.y12{bottom:321.915600pt;}
.y185{bottom:323.044267pt;}
.y8b{bottom:323.849467pt;}
.y54{bottom:323.852133pt;}
.y1ef{bottom:323.857467pt;}
.y9e{bottom:323.858800pt;}
.y204{bottom:323.860133pt;}
.y6c{bottom:323.862800pt;}
.y1bf{bottom:323.864133pt;}
.yd4{bottom:323.870800pt;}
.yac{bottom:327.139067pt;}
.y1a6{bottom:329.177467pt;}
.y1cf{bottom:333.833467pt;}
.y11{bottom:335.248933pt;}
.y10e{bottom:336.932800pt;}
.ye4{bottom:337.263733pt;}
.y12d{bottom:338.272267pt;}
.ybe{bottom:338.840133pt;}
.y184{bottom:340.376267pt;}
.yab{bottom:340.472400pt;}
.y8a{bottom:341.181467pt;}
.y53{bottom:341.184133pt;}
.y1ee{bottom:341.189467pt;}
.y203{bottom:341.192133pt;}
.y6b{bottom:341.194800pt;}
.y1be{bottom:341.196133pt;}
.yd3{bottom:341.202800pt;}
.y1a5{bottom:346.509467pt;}
.y14e{bottom:346.621067pt;}
.y153{bottom:346.645067pt;}
.y158{bottom:346.669067pt;}
.y10{bottom:348.582267pt;}
.y1ce{bottom:349.169467pt;}
.yaa{bottom:353.805733pt;}
.y10d{bottom:354.264800pt;}
.ye3{bottom:354.591733pt;}
.y12c{bottom:355.604267pt;}
.ybd{bottom:356.172133pt;}
.y183{bottom:357.708267pt;}
.y34{bottom:358.510800pt;}
.y89{bottom:358.513467pt;}
.y52{bottom:358.516133pt;}
.y85{bottom:358.517467pt;}
.y1ed{bottom:358.521467pt;}
.y9d{bottom:358.522800pt;}
.y202{bottom:358.524133pt;}
.y6a{bottom:358.526800pt;}
.y1bd{bottom:358.528133pt;}
.yd2{bottom:358.534800pt;}
.yf{bottom:361.915600pt;}
.y1a4{bottom:363.841467pt;}
.y14d{bottom:363.949067pt;}
.y152{bottom:363.973067pt;}
.y157{bottom:363.997067pt;}
.y1cd{bottom:364.505467pt;}
.y10c{bottom:371.596800pt;}
.y12b{bottom:372.936267pt;}
.ybc{bottom:373.504133pt;}
.y33{bottom:375.842800pt;}
.y88{bottom:375.845467pt;}
.y51{bottom:375.848133pt;}
.y84{bottom:375.849467pt;}
.y1ec{bottom:375.853467pt;}
.y201{bottom:375.856133pt;}
.y69{bottom:375.858800pt;}
.y1bc{bottom:375.860133pt;}
.yd1{bottom:375.866800pt;}
.ye2{bottom:376.047733pt;}
.y1cc{bottom:379.841467pt;}
.y14c{bottom:381.277067pt;}
.y151{bottom:381.301067pt;}
.y156{bottom:381.325067pt;}
.ye{bottom:388.038267pt;}
.y10b{bottom:388.928800pt;}
.y12a{bottom:390.268267pt;}
.ybb{bottom:390.836133pt;}
.y32{bottom:393.177467pt;}
.y50{bottom:393.180133pt;}
.y83{bottom:393.181467pt;}
.y1eb{bottom:393.185467pt;}
.y200{bottom:393.188133pt;}
.y68{bottom:393.190800pt;}
.y1bb{bottom:393.192133pt;}
.yd0{bottom:393.198800pt;}
.y1a3{bottom:396.462800pt;}
.y14b{bottom:398.605067pt;}
.y150{bottom:398.629067pt;}
.y155{bottom:398.653067pt;}
.yd{bottom:401.371600pt;}
.ye1{bottom:403.174800pt;}
.y17e{bottom:405.928400pt;}
.y10a{bottom:406.260800pt;}
.y129{bottom:407.600267pt;}
.yba{bottom:408.168133pt;}
.y31{bottom:410.509467pt;}
.y4f{bottom:410.512133pt;}
.y82{bottom:410.513467pt;}
.y1ea{bottom:410.517467pt;}
.y9c{bottom:410.518800pt;}
.y1ff{bottom:410.520133pt;}
.y67{bottom:410.522800pt;}
.y1ba{bottom:410.524133pt;}
.ycf{bottom:410.530800pt;}
.y1a2{bottom:411.798800pt;}
.yc{bottom:414.704933pt;}
.y14a{bottom:415.933067pt;}
.y14f{bottom:415.957067pt;}
.y154{bottom:415.981067pt;}
.y178{bottom:423.232400pt;}
.y17d{bottom:423.256400pt;}
.y109{bottom:423.592800pt;}
.y128{bottom:424.932267pt;}
.yb9{bottom:425.500133pt;}
.y1a1{bottom:427.134800pt;}
.y30{bottom:427.842800pt;}
.y4e{bottom:427.844133pt;}
.y81{bottom:427.845467pt;}
.y1e9{bottom:427.849467pt;}
.y9b{bottom:427.850800pt;}
.y1fe{bottom:427.852133pt;}
.y66{bottom:427.854800pt;}
.y1b9{bottom:427.856133pt;}
.y87{bottom:427.862800pt;}
.y147{bottom:433.273067pt;}
.y177{bottom:440.560400pt;}
.y17c{bottom:440.584400pt;}
.y182{bottom:440.608400pt;}
.y108{bottom:440.924800pt;}
.y127{bottom:442.264267pt;}
.y1a0{bottom:442.470800pt;}
.y4d{bottom:445.176133pt;}
.y2f{bottom:445.177467pt;}
.y1e8{bottom:445.181467pt;}
.y9a{bottom:445.182800pt;}
.y1fd{bottom:445.184133pt;}
.y65{bottom:445.186800pt;}
.y1b8{bottom:445.188133pt;}
.y86{bottom:445.194800pt;}
.y146{bottom:450.601067pt;}
.y149{bottom:450.613067pt;}
.y19f{bottom:457.806800pt;}
.y176{bottom:457.888400pt;}
.y17b{bottom:457.912400pt;}
.y181{bottom:457.936400pt;}
.y107{bottom:458.256800pt;}
.y126{bottom:459.596267pt;}
.y2e{bottom:462.509467pt;}
.y1e7{bottom:462.513467pt;}
.y99{bottom:462.514800pt;}
.y1fc{bottom:462.516133pt;}
.y64{bottom:462.518800pt;}
.y1b7{bottom:462.520133pt;}
.y4c{bottom:462.526800pt;}
.y145{bottom:467.929067pt;}
.y148{bottom:467.941067pt;}
.yb8{bottom:469.950000pt;}
.y19e{bottom:473.142800pt;}
.y175{bottom:475.216400pt;}
.y17a{bottom:475.240400pt;}
.y180{bottom:475.264400pt;}
.y106{bottom:475.588800pt;}
.y125{bottom:476.928267pt;}
.y1e6{bottom:479.845467pt;}
.y80{bottom:479.846800pt;}
.ya9{bottom:479.848133pt;}
.y63{bottom:479.850800pt;}
.y1b6{bottom:479.852133pt;}
.y2d{bottom:479.858800pt;}
.y142{bottom:485.269067pt;}
.y19d{bottom:488.478800pt;}
.yb7{bottom:491.262000pt;}
.yb{bottom:491.972267pt;}
.y174{bottom:492.544400pt;}
.y179{bottom:492.568400pt;}
.y17f{bottom:492.592400pt;}
.y105{bottom:492.920800pt;}
.y124{bottom:494.260267pt;}
.y1e5{bottom:497.177467pt;}
.y7f{bottom:497.178800pt;}
.ya8{bottom:497.180133pt;}
.y62{bottom:497.182800pt;}
.y1b5{bottom:497.184133pt;}
.y2c{bottom:497.190800pt;}
.yb6{bottom:501.918000pt;}
.y141{bottom:502.597067pt;}
.y144{bottom:502.609067pt;}
.y19c{bottom:503.814800pt;}
.ya{bottom:503.974933pt;}
.y16d{bottom:509.872400pt;}
.y171{bottom:509.884400pt;}
.y104{bottom:510.252800pt;}
.y123{bottom:511.592267pt;}
.y1e4{bottom:514.509467pt;}
.y7e{bottom:514.510800pt;}
.ya7{bottom:514.512133pt;}
.y61{bottom:514.514800pt;}
.y1b4{bottom:514.516133pt;}
.y2b{bottom:514.522800pt;}
.y9{bottom:515.977600pt;}
.y19b{bottom:519.150800pt;}
.y140{bottom:519.925067pt;}
.y143{bottom:519.937067pt;}
.y16c{bottom:527.200400pt;}
.y170{bottom:527.212400pt;}
.y103{bottom:527.584800pt;}
.y122{bottom:528.924267pt;}
.y7d{bottom:531.842800pt;}
.ya6{bottom:531.844133pt;}
.y60{bottom:531.846800pt;}
.y1b3{bottom:531.848133pt;}
.y1e3{bottom:531.852133pt;}
.y2a{bottom:531.854800pt;}
.yb5{bottom:533.886000pt;}
.y19a{bottom:534.486800pt;}
.y13f{bottom:541.381067pt;}
.y16b{bottom:544.528400pt;}
.y16f{bottom:544.540400pt;}
.yb4{bottom:544.542000pt;}
.y173{bottom:544.552400pt;}
.y102{bottom:544.916800pt;}
.ya5{bottom:549.176133pt;}
.y5f{bottom:549.178800pt;}
.y7c{bottom:549.180133pt;}
.y98{bottom:549.184133pt;}
.y29{bottom:549.186800pt;}
.y199{bottom:549.822800pt;}
.y8{bottom:552.132533pt;}
.y16a{bottom:561.856400pt;}
.y16e{bottom:561.868400pt;}
.y172{bottom:561.880400pt;}
.y101{bottom:562.248800pt;}
.y198{bottom:565.158800pt;}
.y7{bottom:565.465867pt;}
.y5e{bottom:566.510800pt;}
.y7b{bottom:566.512133pt;}
.y97{bottom:566.516133pt;}
.y28{bottom:566.518800pt;}
.y13e{bottom:568.508133pt;}
.y121{bottom:575.665067pt;}
.yb3{bottom:576.510000pt;}
.y6{bottom:578.799200pt;}
.y100{bottom:579.580800pt;}
.y197{bottom:580.494800pt;}
.y169{bottom:581.188400pt;}
.y5d{bottom:583.842800pt;}
.y7a{bottom:583.844133pt;}
.y96{bottom:583.848133pt;}
.y27{bottom:583.850800pt;}
.yb2{bottom:587.166000pt;}
.y5{bottom:592.132533pt;}
.y120{bottom:592.993067pt;}
.y196{bottom:595.830800pt;}
.yff{bottom:596.912800pt;}
.y79{bottom:601.176133pt;}
.y95{bottom:601.180133pt;}
.y26{bottom:601.182800pt;}
.y168{bottom:602.500400pt;}
.y11f{bottom:610.321067pt;}
.y195{bottom:611.166800pt;}
.y4{bottom:612.132933pt;}
.yfe{bottom:614.244800pt;}
.y78{bottom:618.510800pt;}
.y94{bottom:618.512133pt;}
.y25{bottom:618.514800pt;}
.yb1{bottom:619.134000pt;}
.y194{bottom:626.502800pt;}
.y167{bottom:627.496133pt;}
.y11e{bottom:627.661067pt;}
.yfd{bottom:631.576800pt;}
.y77{bottom:635.842800pt;}
.y93{bottom:635.844133pt;}
.y24{bottom:635.846800pt;}
.yaf{bottom:640.446000pt;}
.y193{bottom:641.838800pt;}
.y11d{bottom:644.989067pt;}
.yfc{bottom:648.908800pt;}
.y92{bottom:653.176133pt;}
.y23{bottom:653.178800pt;}
.y192{bottom:657.174800pt;}
.y3{bottom:658.792533pt;}
.yb0{bottom:661.758000pt;}
.y11c{bottom:662.317067pt;}
.yfb{bottom:666.240800pt;}
.ya4{bottom:670.509467pt;}
.y22{bottom:670.510800pt;}
.y2{bottom:680.128533pt;}
.y11b{bottom:681.649067pt;}
.yae{bottom:683.070000pt;}
.y4b{bottom:687.842800pt;}
.y1{bottom:701.464533pt;}
.y21{bottom:705.174800pt;}
.yad{bottom:706.644800pt;}
.y4a{bottom:747.562400pt;}
.y1f{bottom:747.564267pt;}
.y20{bottom:754.466133pt;}
.y49{bottom:763.562400pt;}
.y1e{bottom:763.564267pt;}
.h6{height:26.133333pt;}
.h5{height:26.917333pt;}
.h4{height:30.762667pt;}
.h1b{height:34.272000pt;}
.h1a{height:34.608000pt;}
.h21{height:35.613867pt;}
.h3{height:38.453333pt;}
.h1c{height:39.408000pt;}
.h10{height:39.984000pt;}
.h8{height:40.376000pt;}
.h7{height:44.800000pt;}
.h9{height:45.976000pt;}
.h1e{height:50.481867pt;}
.h1f{height:50.519200pt;}
.h12{height:50.556533pt;}
.h18{height:50.567200pt;}
.h15{height:50.577867pt;}
.he{height:50.588533pt;}
.ha{height:50.593867pt;}
.h22{height:50.609867pt;}
.h20{height:50.615200pt;}
.h16{height:50.620533pt;}
.h17{height:50.625867pt;}
.h11{height:50.631200pt;}
.h19{height:50.636533pt;}
.h14{height:50.641867pt;}
.h13{height:50.647200pt;}
.hb{height:50.652533pt;}
.hc{height:50.657867pt;}
.hf{height:50.663200pt;}
.h23{height:52.058667pt;}
.h2{height:53.834667pt;}
.hd{height:72.417600pt;}
.h1d{height:82.032000pt;}
.h1{height:831.333333pt;}
.h0{height:831.496000pt;}
.w0{width:585.826667pt;}
.w1{width:586.000000pt;}
.x0{left:0.000000pt;}
.x6{left:62.468800pt;}
.x2{left:66.141733pt;}
.xa{left:70.734933pt;}
.x7{left:85.039333pt;}
.x1{left:87.473333pt;}
.x11{left:89.305333pt;}
.x3{left:91.720400pt;}
.xc{left:96.246933pt;}
.x8{left:110.617333pt;}
.x1c{left:117.296933pt;}
.x14{left:121.226267pt;}
.x10{left:128.509333pt;}
.x9{left:131.452800pt;}
.x1d{left:136.190800pt;}
.x18{left:141.863733pt;}
.x1b{left:142.868933pt;}
.xb{left:148.998933pt;}
.xd{left:150.112000pt;}
.x17{left:161.755467pt;}
.x12{left:206.965333pt;}
.x15{left:215.060533pt;}
.xf{left:218.015867pt;}
.x19{left:237.935733pt;}
.x4{left:245.822267pt;}
.xe{left:269.056000pt;}
.x13{left:328.885333pt;}
.x16{left:363.980533pt;}
.x1a{left:382.307733pt;}
.x5{left:424.296267pt;}
}




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