
    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_2177f8dd72b8c8599a67666c.woff')format("woff");}.ff1{font-family:ff1;line-height:0.940000;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_b7193ad756af80acd3b5b7ea.woff')format("woff");}.ff2{font-family:ff2;line-height:0.952000;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_ad2b758ea847e892e72d8257.woff')format("woff");}.ff3{font-family:ff3;line-height:1.100000;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_f478af96917c9ed5ddd93b37.woff')format("woff");}.ff4{font-family:ff4;line-height:1.284668;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_b8c846ad18a45656cc3c0515.woff')format("woff");}.ff5{font-family:ff5;line-height:1.311035;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_7ae6d78147a7084c612de61f.woff')format("woff");}.ff6{font-family:ff6;line-height:1.115000;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_3a91c0deb6300e4295aff2b3.woff')format("woff");}.ff7{font-family:ff7;line-height:1.115000;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_d65edb7b2d416beb05107af7.woff')format("woff");}.ff8{font-family:ff8;line-height:0.952000;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_50aac309d7f8e2cf5b558972.woff')format("woff");}.ff9{font-family:ff9;line-height:0.882324;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_edcf8d3ba116031f97868b94.woff')format("woff");}.ffa{font-family:ffa;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_c9e00de4ebdf2c701446a81c.woff')format("woff");}.ffb{font-family:ffb;line-height:1.284180;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_8ef8f146b64b4dfc84871096.woff')format("woff");}.ffc{font-family:ffc;line-height:0.722656;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;}
.m5{transform:matrix(0.000000,-0.230927,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.230927,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.230927,0.250000,0.000000,0,0);}
.m3{transform:matrix(0.000000,-0.273179,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.273179,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.273179,0.250000,0.000000,0,0);}
.m2{transform:matrix(0.228788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228788,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.250699,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250699,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250699,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.270648,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270648,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270648,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v6{vertical-align:-33.948000px;}
.v7{vertical-align:-22.631400px;}
.v2{vertical-align:-11.316000px;}
.v8{vertical-align:-2.449200px;}
.v0{vertical-align:0.000000px;}
.vd{vertical-align:9.276000px;}
.v4{vertical-align:11.316000px;}
.v3{vertical-align:22.632000px;}
.v1{vertical-align:24.000000px;}
.v9{vertical-align:27.405000px;}
.v5{vertical-align:33.948600px;}
.va{vertical-align:120.582600px;}
.vb{vertical-align:169.912200px;}
.vc{vertical-align:228.095400px;}
.ls51{letter-spacing:-2.820000px;}
.ls22{letter-spacing:-1.008000px;}
.ls32{letter-spacing:-0.771354px;}
.ls40{letter-spacing:-0.753598px;}
.ls18{letter-spacing:-0.576000px;}
.ls36{letter-spacing:-0.540000px;}
.ls57{letter-spacing:-0.528000px;}
.ls24{letter-spacing:-0.504000px;}
.lse{letter-spacing:-0.480000px;}
.ls12{letter-spacing:-0.432000px;}
.ls13{letter-spacing:-0.420000px;}
.ls38{letter-spacing:-0.378000px;}
.ls16{letter-spacing:-0.360000px;}
.ls52{letter-spacing:-0.330000px;}
.ls37{letter-spacing:-0.324000px;}
.ls15{letter-spacing:-0.300000px;}
.ls19{letter-spacing:-0.288000px;}
.ls59{letter-spacing:-0.264000px;}
.ls21{letter-spacing:-0.216000px;}
.lsf{letter-spacing:-0.180000px;}
.ls39{letter-spacing:-0.162000px;}
.ls29{letter-spacing:-0.144000px;}
.ls56{letter-spacing:-0.132000px;}
.ls4b{letter-spacing:-0.120000px;}
.ls17{letter-spacing:-0.072000px;}
.ls58{letter-spacing:-0.066000px;}
.ls4c{letter-spacing:-0.060000px;}
.lsd{letter-spacing:0.000000px;}
.ls4a{letter-spacing:0.060000px;}
.ls31{letter-spacing:0.066116px;}
.ls11{letter-spacing:0.084000px;}
.lsc{letter-spacing:0.120000px;}
.ls3a{letter-spacing:0.162000px;}
.ls10{letter-spacing:0.216000px;}
.ls14{letter-spacing:0.240000px;}
.ls1a{letter-spacing:0.288000px;}
.ls50{letter-spacing:0.300000px;}
.ls54{letter-spacing:0.330000px;}
.ls5{letter-spacing:0.360000px;}
.ls55{letter-spacing:0.396000px;}
.ls6{letter-spacing:0.403200px;}
.ls1b{letter-spacing:0.432000px;}
.ls8{letter-spacing:0.446400px;}
.ls4{letter-spacing:0.456000px;}
.ls53{letter-spacing:0.462000px;}
.ls7{letter-spacing:0.482400px;}
.ls3c{letter-spacing:0.486000px;}
.ls1c{letter-spacing:0.496800px;}
.ls9{letter-spacing:0.504000px;}
.ls35{letter-spacing:0.518400px;}
.ls20{letter-spacing:0.540000px;}
.ls1f{letter-spacing:0.576000px;}
.ls3b{letter-spacing:0.604800px;}
.lsb{letter-spacing:0.648000px;}
.ls3e{letter-spacing:0.749700px;}
.ls3f{letter-spacing:0.753598px;}
.ls46{letter-spacing:0.780000px;}
.ls3d{letter-spacing:1.110000px;}
.ls30{letter-spacing:1.149622px;}
.ls2a{letter-spacing:1.152000px;}
.ls49{letter-spacing:1.194000px;}
.ls44{letter-spacing:1.200000px;}
.ls2e{letter-spacing:1.234166px;}
.ls2b{letter-spacing:1.368000px;}
.ls1e{letter-spacing:1.656000px;}
.ls33{letter-spacing:2.376000px;}
.ls48{letter-spacing:3.180000px;}
.ls2c{letter-spacing:3.600000px;}
.ls45{letter-spacing:5.580000px;}
.ls28{letter-spacing:5.752800px;}
.ls41{letter-spacing:5.976000px;}
.ls43{letter-spacing:7.980000px;}
.ls42{letter-spacing:8.352000px;}
.ls2d{letter-spacing:9.576000px;}
.ls4e{letter-spacing:10.380000px;}
.ls25{letter-spacing:10.800000px;}
.ls4f{letter-spacing:11.220000px;}
.ls2f{letter-spacing:13.468585px;}
.ls26{letter-spacing:14.400000px;}
.ls23{letter-spacing:15.552000px;}
.ls4d{letter-spacing:17.580000px;}
.lsa{letter-spacing:18.000000px;}
.ls1d{letter-spacing:19.008000px;}
.ls34{letter-spacing:55.584000px;}
.ls27{letter-spacing:63.720000px;}
.ls47{letter-spacing:101.580000px;}
.ls3{letter-spacing:642.780000px;}
.ls1{letter-spacing:846.780000px;}
.ls2{letter-spacing:905.580000px;}
.ls0{letter-spacing:1397.580000px;}
.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;}
}
.wsa0{word-spacing:-72.000000px;}
.ws4e{word-spacing:-19.800000px;}
.ws3{word-spacing:-19.584000px;}
.wsdb{word-spacing:-19.440000px;}
.ws4{word-spacing:-19.224000px;}
.ws34{word-spacing:-19.152000px;}
.ws68{word-spacing:-19.080000px;}
.ws33{word-spacing:-19.008000px;}
.ws32{word-spacing:-18.936000px;}
.wsa1{word-spacing:-18.792000px;}
.ws8{word-spacing:-18.648000px;}
.ws2{word-spacing:-18.432000px;}
.ws1{word-spacing:-18.216000px;}
.ws9{word-spacing:-17.928000px;}
.ws7{word-spacing:-17.856000px;}
.ws31{word-spacing:-17.640000px;}
.ws118{word-spacing:-17.358000px;}
.ws117{word-spacing:-17.094000px;}
.ws93{word-spacing:-16.595216px;}
.ws116{word-spacing:-16.368000px;}
.wse6{word-spacing:-16.260000px;}
.wse7{word-spacing:-16.080000px;}
.wscd{word-spacing:-16.020000px;}
.ws5{word-spacing:-15.840000px;}
.ws6{word-spacing:-15.720000px;}
.ws0{word-spacing:-15.540000px;}
.wse8{word-spacing:-15.480000px;}
.wsb0{word-spacing:-14.904000px;}
.wsa4{word-spacing:-14.850000px;}
.wsa2{word-spacing:-14.760000px;}
.wse5{word-spacing:-14.700000px;}
.ws115{word-spacing:-14.640000px;}
.wsa7{word-spacing:-14.580000px;}
.wsa6{word-spacing:-14.256000px;}
.wsa3{word-spacing:-14.094000px;}
.wsa5{word-spacing:-14.040000px;}
.wsa8{word-spacing:-13.986000px;}
.wsc2{word-spacing:-13.244700px;}
.wscc{word-spacing:-12.703502px;}
.ws8e{word-spacing:-11.214000px;}
.ws9a{word-spacing:-7.321274px;}
.wsbb{word-spacing:-5.040000px;}
.ws59{word-spacing:-4.752000px;}
.ws4b{word-spacing:-4.536000px;}
.ws53{word-spacing:-4.392000px;}
.ws9d{word-spacing:-4.268159px;}
.ws52{word-spacing:-4.248000px;}
.wsf3{word-spacing:-4.020000px;}
.ws65{word-spacing:-3.816000px;}
.wsf5{word-spacing:-3.720000px;}
.wsf4{word-spacing:-3.600000px;}
.ws2a{word-spacing:-3.528000px;}
.ws5f{word-spacing:-3.384000px;}
.ws89{word-spacing:-3.168000px;}
.ws28{word-spacing:-3.024000px;}
.ws10a{word-spacing:-2.940000px;}
.ws9b{word-spacing:-2.843801px;}
.ws7a{word-spacing:-2.664000px;}
.ws112{word-spacing:-2.400000px;}
.ws5d{word-spacing:-2.376000px;}
.ws108{word-spacing:-2.340000px;}
.wsaa{word-spacing:-2.232000px;}
.ws82{word-spacing:-2.160000px;}
.ws7b{word-spacing:-2.016000px;}
.ws5c{word-spacing:-1.944000px;}
.ws83{word-spacing:-1.872000px;}
.ws101{word-spacing:-1.860000px;}
.ws99{word-spacing:-1.851250px;}
.ws102{word-spacing:-1.740000px;}
.wsd6{word-spacing:-1.507195px;}
.ws41{word-spacing:-1.440000px;}
.ws8a{word-spacing:-1.368000px;}
.ws103{word-spacing:-1.320000px;}
.ws109{word-spacing:-1.200000px;}
.ws3e{word-spacing:-1.152000px;}
.ws35{word-spacing:-0.960000px;}
.wscb{word-spacing:-0.936000px;}
.ws64{word-spacing:-0.792000px;}
.wsd5{word-spacing:-0.753598px;}
.ws13{word-spacing:-0.660000px;}
.ws3f{word-spacing:-0.648000px;}
.ws48{word-spacing:-0.576000px;}
.wsa{word-spacing:-0.540000px;}
.ws62{word-spacing:-0.504000px;}
.wsff{word-spacing:-0.480000px;}
.ws2d{word-spacing:-0.432000px;}
.wsc{word-spacing:-0.420000px;}
.ws11{word-spacing:-0.360000px;}
.wsfc{word-spacing:-0.300000px;}
.ws37{word-spacing:-0.288000px;}
.wsd{word-spacing:-0.240000px;}
.ws16{word-spacing:-0.216000px;}
.wse9{word-spacing:-0.120000px;}
.ws11a{word-spacing:-0.060000px;}
.wsb{word-spacing:0.000000px;}
.ws14{word-spacing:0.060000px;}
.ws120{word-spacing:0.066000px;}
.ws17{word-spacing:0.072000px;}
.ws114{word-spacing:0.120000px;}
.ws6e{word-spacing:0.144000px;}
.ws9c{word-spacing:0.154271px;}
.ws10b{word-spacing:0.180000px;}
.ws72{word-spacing:0.216000px;}
.wse{word-spacing:0.252000px;}
.ws3a{word-spacing:0.288000px;}
.ws15{word-spacing:0.300000px;}
.wsf{word-spacing:0.336000px;}
.ws9e{word-spacing:0.360000px;}
.ws12{word-spacing:0.420000px;}
.ws10{word-spacing:0.432000px;}
.ws124{word-spacing:0.462000px;}
.wsea{word-spacing:0.480000px;}
.ws51{word-spacing:0.504000px;}
.ws123{word-spacing:0.528000px;}
.ws2e{word-spacing:0.576000px;}
.ws113{word-spacing:0.720000px;}
.wsd4{word-spacing:0.753598px;}
.wsbc{word-spacing:0.792000px;}
.ws85{word-spacing:0.936000px;}
.wsaf{word-spacing:0.960000px;}
.ws44{word-spacing:1.008000px;}
.ws100{word-spacing:1.080000px;}
.wsf1{word-spacing:1.200000px;}
.ws4d{word-spacing:1.224000px;}
.wsf2{word-spacing:1.260000px;}
.ws6f{word-spacing:1.368000px;}
.ws8d{word-spacing:1.584000px;}
.wsd8{word-spacing:1.656000px;}
.ws50{word-spacing:1.728000px;}
.ws111{word-spacing:1.740000px;}
.ws9f{word-spacing:2.016000px;}
.ws86{word-spacing:2.160000px;}
.ws22{word-spacing:2.448000px;}
.ws119{word-spacing:2.460000px;}
.ws8c{word-spacing:2.592000px;}
.ws7e{word-spacing:2.664000px;}
.ws42{word-spacing:2.808000px;}
.ws11b{word-spacing:2.820000px;}
.wsd9{word-spacing:2.880000px;}
.wseb{word-spacing:2.940000px;}
.ws27{word-spacing:2.952000px;}
.ws107{word-spacing:3.120000px;}
.ws23{word-spacing:3.312000px;}
.ws8b{word-spacing:3.384000px;}
.ws106{word-spacing:3.480000px;}
.ws122{word-spacing:3.564000px;}
.wsef{word-spacing:3.660000px;}
.ws74{word-spacing:3.672000px;}
.ws6b{word-spacing:3.888000px;}
.ws121{word-spacing:3.960000px;}
.ws5b{word-spacing:4.032000px;}
.ws105{word-spacing:4.140000px;}
.ws24{word-spacing:4.176000px;}
.wsf6{word-spacing:4.260000px;}
.wsad{word-spacing:4.464000px;}
.ws39{word-spacing:4.536000px;}
.wsf0{word-spacing:4.800000px;}
.ws7c{word-spacing:4.824000px;}
.wse4{word-spacing:4.968000px;}
.ws19{word-spacing:5.184000px;}
.ws61{word-spacing:5.328000px;}
.wsd7{word-spacing:5.400000px;}
.wsed{word-spacing:5.520000px;}
.wsc9{word-spacing:5.616000px;}
.wsc6{word-spacing:5.688000px;}
.ws67{word-spacing:5.760000px;}
.ws7d{word-spacing:6.048000px;}
.wsec{word-spacing:6.060000px;}
.wsee{word-spacing:6.120000px;}
.wsb1{word-spacing:6.264000px;}
.ws43{word-spacing:6.408000px;}
.wsa9{word-spacing:6.480000px;}
.ws10e{word-spacing:6.540000px;}
.ws3b{word-spacing:6.552000px;}
.ws10c{word-spacing:6.660000px;}
.wsf7{word-spacing:6.720000px;}
.wsca{word-spacing:6.840000px;}
.wsc4{word-spacing:6.984000px;}
.wsfa{word-spacing:7.080000px;}
.ws60{word-spacing:7.272000px;}
.ws95{word-spacing:7.416000px;}
.wse1{word-spacing:7.632000px;}
.ws21{word-spacing:7.776000px;}
.ws63{word-spacing:8.136000px;}
.ws10d{word-spacing:8.160000px;}
.ws5a{word-spacing:8.424000px;}
.ws1f{word-spacing:8.784000px;}
.ws1e{word-spacing:8.928000px;}
.wsb5{word-spacing:9.360000px;}
.ws79{word-spacing:9.648000px;}
.ws11c{word-spacing:9.840000px;}
.ws97{word-spacing:9.864000px;}
.ws2f{word-spacing:10.008000px;}
.ws98{word-spacing:10.080000px;}
.ws11d{word-spacing:10.140000px;}
.ws30{word-spacing:10.152000px;}
.ws1c{word-spacing:10.584000px;}
.ws29{word-spacing:10.872000px;}
.ws96{word-spacing:11.016000px;}
.wse2{word-spacing:11.088000px;}
.ws66{word-spacing:11.232000px;}
.ws104{word-spacing:11.340000px;}
.ws6a{word-spacing:11.376000px;}
.wsdc{word-spacing:11.664000px;}
.ws54{word-spacing:11.736000px;}
.ws69{word-spacing:12.024000px;}
.ws55{word-spacing:12.384000px;}
.ws36{word-spacing:12.528000px;}
.wsb9{word-spacing:12.816000px;}
.wsba{word-spacing:12.888000px;}
.wsbe{word-spacing:12.960000px;}
.wsc8{word-spacing:13.248000px;}
.wsdd{word-spacing:13.392000px;}
.ws75{word-spacing:13.536000px;}
.wsc7{word-spacing:13.608000px;}
.ws73{word-spacing:13.752000px;}
.ws1b{word-spacing:14.184000px;}
.ws11f{word-spacing:14.322000px;}
.ws2b{word-spacing:14.472000px;}
.ws1a{word-spacing:14.688000px;}
.ws11e{word-spacing:14.850000px;}
.wsce{word-spacing:14.904000px;}
.ws71{word-spacing:14.976000px;}
.ws56{word-spacing:15.336000px;}
.ws26{word-spacing:15.624000px;}
.ws4c{word-spacing:15.840000px;}
.wsac{word-spacing:15.984000px;}
.ws25{word-spacing:16.128000px;}
.wsfb{word-spacing:16.320000px;}
.ws5e{word-spacing:16.560000px;}
.ws7f{word-spacing:16.848000px;}
.wsab{word-spacing:16.992000px;}
.ws77{word-spacing:17.208000px;}
.ws45{word-spacing:17.352000px;}
.ws2c{word-spacing:17.712000px;}
.ws70{word-spacing:17.784000px;}
.ws46{word-spacing:18.072000px;}
.wsda{word-spacing:18.288000px;}
.wsb7{word-spacing:18.432000px;}
.ws38{word-spacing:18.576000px;}
.ws88{word-spacing:18.936000px;}
.ws57{word-spacing:19.224000px;}
.ws87{word-spacing:19.584000px;}
.ws78{word-spacing:19.728000px;}
.wsc5{word-spacing:20.448000px;}
.wsd1{word-spacing:20.808000px;}
.ws10f{word-spacing:21.120000px;}
.wsb4{word-spacing:21.384000px;}
.ws110{word-spacing:21.660000px;}
.ws49{word-spacing:21.672000px;}
.ws4a{word-spacing:22.176000px;}
.ws47{word-spacing:22.824000px;}
.wsc3{word-spacing:23.040000px;}
.wsd0{word-spacing:23.184000px;}
.wsb6{word-spacing:23.328000px;}
.ws58{word-spacing:23.760000px;}
.wsb2{word-spacing:24.048000px;}
.ws84{word-spacing:24.408000px;}
.wsde{word-spacing:24.480000px;}
.wsb3{word-spacing:24.552000px;}
.ws3c{word-spacing:25.272000px;}
.ws3d{word-spacing:25.488000px;}
.wsfe{word-spacing:25.740000px;}
.wsbd{word-spacing:25.776000px;}
.wsd3{word-spacing:26.424000px;}
.wsfd{word-spacing:26.460000px;}
.wsd2{word-spacing:26.928000px;}
.ws4f{word-spacing:28.584000px;}
.wscf{word-spacing:28.872000px;}
.ws40{word-spacing:29.016000px;}
.ws18{word-spacing:29.376000px;}
.ws80{word-spacing:30.528000px;}
.ws94{word-spacing:31.608000px;}
.wse3{word-spacing:31.752000px;}
.ws76{word-spacing:32.472000px;}
.ws1d{word-spacing:33.624000px;}
.ws81{word-spacing:34.560000px;}
.ws6d{word-spacing:34.848000px;}
.ws6c{word-spacing:35.352000px;}
.wsb8{word-spacing:36.576000px;}
.wsdf{word-spacing:37.584000px;}
.wse0{word-spacing:39.672000px;}
.ws20{word-spacing:43.272000px;}
.wsae{word-spacing:44.424000px;}
.wsf9{word-spacing:73.740000px;}
.wsf8{word-spacing:74.460000px;}
.wsc0{word-spacing:107.317890px;}
.wsbf{word-spacing:107.318444px;}
.wsc1{word-spacing:107.318998px;}
.ws92{word-spacing:128.757334px;}
.ws91{word-spacing:172.834179px;}
.ws8f{word-spacing:172.834834px;}
.ws90{word-spacing:172.835490px;}
._1f{margin-left:-73.620000px;}
._12{margin-left:-3.657600px;}
._6{margin-left:-2.529600px;}
._0{margin-left:-1.020000px;}
._1{width:1.260000px;}
._3{width:2.640000px;}
._14{width:3.933600px;}
._b{width:5.148000px;}
._a{width:6.559200px;}
._c{width:7.780800px;}
._d{width:9.684000px;}
._10{width:11.664000px;}
._15{width:12.780000px;}
._17{width:15.633600px;}
._8{width:16.956000px;}
._9{width:17.956800px;}
._7{width:19.692000px;}
._18{width:21.535200px;}
._13{width:24.465600px;}
._e{width:26.294400px;}
._f{width:28.000800px;}
._16{width:33.861600px;}
._1e{width:74.160000px;}
._1d{width:249.407511px;}
._1a{width:260.889600px;}
._19{width:322.380000px;}
._1b{width:433.294572px;}
._4{width:765.780000px;}
._1c{width:898.713744px;}
._5{width:918.780000px;}
._2{width:1005.420000px;}
._11{width:1138.380000px;}
.fc6{color:rgb(0,0,255);}
.fc4{color:transparent;}
.fc1{color:rgb(255,0,0);}
.fc5{color:rgb(34,34,34);}
.fc3{color:rgb(89,89,89);}
.fc2{color:rgb(64,64,64);}
.fc0{color:rgb(0,0,0);}
.fsa{font-size:24.000000px;}
.fs1{font-size:36.000000px;}
.fs4{font-size:42.000000px;}
.fs5{font-size:48.000000px;}
.fsc{font-size:49.980000px;}
.fs7{font-size:51.423600px;}
.fse{font-size:53.828400px;}
.fsb{font-size:54.000000px;}
.fsd{font-size:54.108000px;}
.fs6{font-size:58.770000px;}
.fs0{font-size:60.000000px;}
.fs8{font-size:60.506400px;}
.fsf{font-size:66.000000px;}
.fs9{font-size:66.116400px;}
.fs2{font-size:72.000000px;}
.fs3{font-size:84.000000px;}
.y0{bottom:0.000000px;}
.y9{bottom:3.300000px;}
.yf6{bottom:3.600000px;}
.y103{bottom:3.601500px;}
.yfa{bottom:3.900000px;}
.yf4{bottom:4.200000px;}
.ybc{bottom:4.878450px;}
.y7{bottom:5.100000px;}
.ya{bottom:6.000000px;}
.ycf{bottom:10.713000px;}
.y146{bottom:15.803700px;}
.y15a{bottom:18.694950px;}
.yce{bottom:24.868950px;}
.yd2{bottom:28.500000px;}
.y159{bottom:34.394850px;}
.y145{bottom:37.873350px;}
.y144{bottom:38.518350px;}
.ycd{bottom:39.024750px;}
.y158{bottom:50.094750px;}
.ycc{bottom:53.180550px;}
.y139{bottom:53.193600px;}
.y149{bottom:67.200000px;}
.y4{bottom:67.800000px;}
.ycb{bottom:70.847100px;}
.yc8{bottom:71.372100px;}
.y13a{bottom:74.274600px;}
.yc1{bottom:88.628400px;}
.y13b{bottom:95.355450px;}
.yd6{bottom:97.200000px;}
.yff{bottom:100.200000px;}
.y16e{bottom:105.096000px;}
.y16d{bottom:109.518000px;}
.y153{bottom:112.506000px;}
.y85{bottom:112.824000px;}
.ya3{bottom:112.836000px;}
.y194{bottom:112.878000px;}
.y35{bottom:114.012000px;}
.y13c{bottom:116.436300px;}
.yfe{bottom:117.600000px;}
.y134{bottom:118.830750px;}
.yd5{bottom:120.600000px;}
.y64{bottom:120.666000px;}
.yc9{bottom:121.720200px;}
.y1c7{bottom:123.600000px;}
.y131{bottom:127.560000px;}
.yad{bottom:128.190000px;}
.y16c{bottom:132.918000px;}
.yfd{bottom:135.300000px;}
.y152{bottom:135.906000px;}
.y84{bottom:135.918000px;}
.ya2{bottom:135.930000px;}
.y193{bottom:135.972000px;}
.y34{bottom:137.412000px;}
.y13d{bottom:137.517300px;}
.yd4{bottom:141.900000px;}
.y1c6{bottom:142.800000px;}
.y138{bottom:143.168550px;}
.y63{bottom:143.760000px;}
.yc2{bottom:145.208400px;}
.y130{bottom:150.960000px;}
.yac{bottom:151.590000px;}
.yfc{bottom:152.700000px;}
.yd1{bottom:154.200000px;}
.y16b{bottom:156.318000px;}
.y137{bottom:157.746000px;}
.y13e{bottom:158.598300px;}
.yd3{bottom:159.300000px;}
.y151{bottom:159.306000px;}
.y83{bottom:159.318000px;}
.ya1{bottom:159.330000px;}
.y192{bottom:159.372000px;}
.y33{bottom:160.812000px;}
.y1c5{bottom:162.300000px;}
.y62{bottom:167.160000px;}
.yfb{bottom:170.100000px;}
.y12f{bottom:174.054000px;}
.yab{bottom:174.990000px;}
.y16a{bottom:179.412000px;}
.y13f{bottom:179.679150px;}
.y1c4{bottom:181.800000px;}
.y150{bottom:182.400000px;}
.y82{bottom:182.718000px;}
.ya0{bottom:182.730000px;}
.y191{bottom:182.772000px;}
.y32{bottom:183.906000px;}
.yf9{bottom:187.500000px;}
.y61{bottom:190.254000px;}
.y12e{bottom:197.454000px;}
.yaa{bottom:198.084000px;}
.y135{bottom:198.727500px;}
.yd0{bottom:200.700000px;}
.y140{bottom:200.760000px;}
.y1c3{bottom:201.000000px;}
.yc3{bottom:201.788400px;}
.y169{bottom:202.812000px;}
.yf8{bottom:205.200000px;}
.y14f{bottom:205.800000px;}
.y81{bottom:205.812000px;}
.y9f{bottom:205.824000px;}
.y190{bottom:205.866000px;}
.y31{bottom:207.306000px;}
.yca{bottom:207.426300px;}
.yb5{bottom:207.921000px;}
.y60{bottom:213.654000px;}
.y136{bottom:215.170500px;}
.y15d{bottom:216.797850px;}
.y1c2{bottom:220.500000px;}
.y12d{bottom:220.854000px;}
.ya9{bottom:221.484000px;}
.y141{bottom:221.841000px;}
.yf7{bottom:222.600000px;}
.y168{bottom:226.212000px;}
.y80{bottom:229.212000px;}
.y9e{bottom:229.224000px;}
.y18f{bottom:229.266000px;}
.y30{bottom:230.706000px;}
.y15c{bottom:232.497750px;}
.y5f{bottom:237.054000px;}
.yb6{bottom:239.514900px;}
.yf5{bottom:240.000000px;}
.y142{bottom:242.921850px;}
.y157{bottom:243.357150px;}
.y12c{bottom:243.948000px;}
.ya8{bottom:244.884000px;}
.y15b{bottom:248.197650px;}
.y167{bottom:249.306000px;}
.y14e{bottom:252.306000px;}
.y7f{bottom:252.612000px;}
.y9d{bottom:252.624000px;}
.y18e{bottom:252.666000px;}
.y2f{bottom:253.800000px;}
.yf3{bottom:258.300000px;}
.yc4{bottom:258.368400px;}
.y156{bottom:259.057200px;}
.y1c1{bottom:259.200000px;}
.y5e{bottom:260.148000px;}
.y143{bottom:264.002850px;}
.y12b{bottom:267.348000px;}
.ya7{bottom:267.978000px;}
.y166{bottom:272.706000px;}
.y2e{bottom:275.400000px;}
.y7e{bottom:275.706000px;}
.y9c{bottom:275.718000px;}
.y18d{bottom:275.760000px;}
.y1c0{bottom:278.700000px;}
.yf2{bottom:283.506000px;}
.y5d{bottom:283.548000px;}
.y12a{bottom:290.442000px;}
.ya6{bottom:291.378000px;}
.y2d{bottom:292.806000px;}
.y165{bottom:296.106000px;}
.y1bf{bottom:298.200000px;}
.y14d{bottom:298.800000px;}
.y7d{bottom:299.106000px;}
.y9b{bottom:299.118000px;}
.y18c{bottom:299.160000px;}
.ybe{bottom:299.661450px;}
.yf1{bottom:306.906000px;}
.y5c{bottom:306.948000px;}
.y129{bottom:313.842000px;}
.ybd{bottom:314.353950px;}
.ya5{bottom:314.778000px;}
.yc5{bottom:314.948400px;}
.y2c{bottom:315.900000px;}
.y1be{bottom:317.700000px;}
.y164{bottom:319.200000px;}
.y7c{bottom:322.200000px;}
.y9a{bottom:322.212000px;}
.y18b{bottom:322.254000px;}
.yb7{bottom:324.384900px;}
.yf0{bottom:330.000000px;}
.y5b{bottom:330.042000px;}
.yba{bottom:330.042900px;}
.y1bd{bottom:336.900000px;}
.y128{bottom:337.242000px;}
.y2b{bottom:337.500000px;}
.ya4{bottom:337.872000px;}
.y163{bottom:342.600000px;}
.y7b{bottom:343.800000px;}
.y99{bottom:345.612000px;}
.y18a{bottom:345.654000px;}
.yb8{bottom:347.016900px;}
.yef{bottom:350.100000px;}
.yc0{bottom:350.593350px;}
.y5a{bottom:353.442000px;}
.y2a{bottom:354.942000px;}
.y148{bottom:356.100000px;}
.y1bc{bottom:356.400000px;}
.y14c{bottom:360.300000px;}
.y127{bottom:360.336000px;}
.yee{bottom:361.254000px;}
.y7a{bottom:361.272000px;}
.y162{bottom:363.900000px;}
.ybf{bottom:365.285850px;}
.y98{bottom:369.012000px;}
.y189{bottom:369.054000px;}
.yc6{bottom:371.528400px;}
.y1bb{bottom:375.900000px;}
.y15f{bottom:376.200000px;}
.y59{bottom:376.842000px;}
.y29{bottom:378.036000px;}
.y14b{bottom:379.500000px;}
.y161{bottom:380.400000px;}
.y126{bottom:383.736000px;}
.yed{bottom:384.348000px;}
.y79{bottom:384.366000px;}
.yb9{bottom:386.622900px;}
.y97{bottom:392.106000px;}
.y188{bottom:392.148000px;}
.y1ba{bottom:395.100000px;}
.y14a{bottom:399.900000px;}
.y58{bottom:399.936000px;}
.y28{bottom:401.436000px;}
.y125{bottom:407.136000px;}
.yec{bottom:407.748000px;}
.y78{bottom:407.766000px;}
.y1b9{bottom:414.600000px;}
.y96{bottom:415.506000px;}
.y187{bottom:415.548000px;}
.y160{bottom:420.300000px;}
.y57{bottom:423.336000px;}
.y27{bottom:424.836000px;}
.yc7{bottom:428.108400px;}
.y124{bottom:430.230000px;}
.yeb{bottom:431.148000px;}
.y77{bottom:431.166000px;}
.y1b8{bottom:434.100000px;}
.y95{bottom:438.906000px;}
.y186{bottom:438.948000px;}
.y147{bottom:441.300000px;}
.y56{bottom:446.736000px;}
.y133{bottom:447.403500px;}
.y26{bottom:447.930000px;}
.y1b7{bottom:453.300000px;}
.y123{bottom:453.630000px;}
.yea{bottom:454.242000px;}
.y76{bottom:454.260000px;}
.y15e{bottom:461.700000px;}
.y94{bottom:462.000000px;}
.y185{bottom:462.042000px;}
.y155{bottom:468.291000px;}
.y55{bottom:469.830000px;}
.y25{bottom:471.330000px;}
.y1b6{bottom:472.800000px;}
.y122{bottom:477.030000px;}
.ye9{bottom:477.642000px;}
.y75{bottom:477.660000px;}
.y93{bottom:485.400000px;}
.y184{bottom:485.442000px;}
.y1b5{bottom:492.300000px;}
.y54{bottom:493.230000px;}
.y24{bottom:494.424000px;}
.y121{bottom:500.124000px;}
.ybb{bottom:500.547000px;}
.ye8{bottom:501.042000px;}
.y74{bottom:501.060000px;}
.y92{bottom:508.800000px;}
.y183{bottom:508.842000px;}
.y1b4{bottom:511.800000px;}
.y53{bottom:516.324000px;}
.y23{bottom:517.824000px;}
.y120{bottom:523.524000px;}
.ye7{bottom:524.136000px;}
.y73{bottom:524.154000px;}
.y1b3{bottom:531.000000px;}
.y91{bottom:531.906000px;}
.y182{bottom:531.936000px;}
.y52{bottom:539.724000px;}
.y22{bottom:541.224000px;}
.y11f{bottom:546.618000px;}
.ye6{bottom:547.536000px;}
.y72{bottom:547.554000px;}
.y1b2{bottom:550.500000px;}
.y90{bottom:555.306000px;}
.y181{bottom:555.336000px;}
.y51{bottom:563.124000px;}
.y21{bottom:564.318000px;}
.y1b1{bottom:570.000000px;}
.y11e{bottom:570.018000px;}
.ye5{bottom:570.936000px;}
.y71{bottom:570.954000px;}
.y8f{bottom:578.400000px;}
.y180{bottom:578.430000px;}
.y50{bottom:586.218000px;}
.y20{bottom:587.718000px;}
.y1b0{bottom:589.200000px;}
.y11d{bottom:593.418000px;}
.ye4{bottom:594.030000px;}
.y70{bottom:594.048000px;}
.y8e{bottom:601.800000px;}
.y17f{bottom:601.830000px;}
.y1af{bottom:608.700000px;}
.y4f{bottom:609.618000px;}
.y1f{bottom:611.118000px;}
.y11c{bottom:616.512000px;}
.ye3{bottom:617.430000px;}
.y6f{bottom:617.448000px;}
.y8d{bottom:625.212000px;}
.y17e{bottom:625.230000px;}
.y1ae{bottom:628.200000px;}
.y4e{bottom:633.018000px;}
.y1e{bottom:634.212000px;}
.y11b{bottom:639.912000px;}
.ye2{bottom:640.830000px;}
.y6e{bottom:640.848000px;}
.y1ad{bottom:647.400000px;}
.y8c{bottom:648.306000px;}
.y17d{bottom:648.324000px;}
.y4d{bottom:656.112000px;}
.y1d{bottom:657.612000px;}
.y11a{bottom:663.312000px;}
.ye1{bottom:663.924000px;}
.y6d{bottom:663.942000px;}
.y1ac{bottom:666.900000px;}
.yb4{bottom:669.900000px;}
.y8b{bottom:671.706000px;}
.y17c{bottom:671.724000px;}
.y1de{bottom:676.200000px;}
.y4c{bottom:679.512000px;}
.y1c{bottom:681.012000px;}
.y1ab{bottom:686.400000px;}
.y119{bottom:686.406000px;}
.yb3{bottom:687.312000px;}
.ye0{bottom:687.324000px;}
.y6c{bottom:687.342000px;}
.y8a{bottom:695.106000px;}
.y17b{bottom:695.124000px;}
.y1dd{bottom:697.500000px;}
.y4b{bottom:702.912000px;}
.y1b{bottom:704.106000px;}
.y1aa{bottom:705.900000px;}
.y118{bottom:709.806000px;}
.yb2{bottom:710.406000px;}
.ydf{bottom:710.418000px;}
.y6b{bottom:710.436000px;}
.y89{bottom:718.200000px;}
.y17a{bottom:718.218000px;}
.y1dc{bottom:718.800000px;}
.y1a9{bottom:725.100000px;}
.y4a{bottom:726.006000px;}
.y1a{bottom:727.506000px;}
.y117{bottom:733.206000px;}
.yb1{bottom:733.806000px;}
.yde{bottom:733.818000px;}
.y6a{bottom:733.836000px;}
.y132{bottom:739.800000px;}
.y1db{bottom:740.100000px;}
.y88{bottom:741.606000px;}
.y179{bottom:741.618000px;}
.y1a8{bottom:744.600000px;}
.y49{bottom:749.406000px;}
.y19{bottom:750.600000px;}
.y116{bottom:756.300000px;}
.yb0{bottom:757.206000px;}
.ydd{bottom:757.218000px;}
.y69{bottom:757.236000px;}
.y1da{bottom:761.400000px;}
.y1a7{bottom:764.100000px;}
.y87{bottom:765.006000px;}
.y178{bottom:765.018000px;}
.y48{bottom:772.500000px;}
.y18{bottom:774.000000px;}
.y115{bottom:779.700000px;}
.yaf{bottom:780.300000px;}
.ydc{bottom:780.312000px;}
.y68{bottom:780.330000px;}
.y1d9{bottom:783.000000px;}
.y1a6{bottom:783.300000px;}
.y154{bottom:786.300000px;}
.y86{bottom:788.100000px;}
.y177{bottom:788.112000px;}
.y47{bottom:794.100000px;}
.y17{bottom:795.600000px;}
.y114{bottom:801.300000px;}
.y1a5{bottom:802.800000px;}
.yae{bottom:803.700000px;}
.ydb{bottom:803.712000px;}
.y67{bottom:803.730000px;}
.y1d8{bottom:804.300000px;}
.y46{bottom:811.500000px;}
.y176{bottom:811.512000px;}
.y16{bottom:812.100000px;}
.y113{bottom:817.500000px;}
.y1a4{bottom:822.300000px;}
.y1d7{bottom:825.600000px;}
.yda{bottom:827.112000px;}
.y66{bottom:827.130000px;}
.y15{bottom:831.300000px;}
.y112{bottom:833.400000px;}
.y45{bottom:834.900000px;}
.y175{bottom:834.912000px;}
.y1a3{bottom:841.500000px;}
.y1d6{bottom:846.600000px;}
.y14{bottom:849.900000px;}
.yd9{bottom:850.206000px;}
.y65{bottom:850.224000px;}
.y111{bottom:851.100000px;}
.y44{bottom:856.200000px;}
.y174{bottom:858.006000px;}
.y1a2{bottom:861.000000px;}
.y1d5{bottom:866.397000px;}
.y13{bottom:866.400000px;}
.y110{bottom:868.500000px;}
.yd8{bottom:873.606000px;}
.y43{bottom:873.624000px;}
.y1a1{bottom:880.500000px;}
.y173{bottom:881.406000px;}
.y12{bottom:885.600000px;}
.y10f{bottom:885.900000px;}
.y1d4{bottom:887.698500px;}
.yd7{bottom:897.006000px;}
.y42{bottom:897.024000px;}
.y1a0{bottom:900.000000px;}
.y10e{bottom:903.300000px;}
.y172{bottom:904.500000px;}
.y11{bottom:906.006000px;}
.y1d3{bottom:909.000000px;}
.y19f{bottom:919.200000px;}
.y41{bottom:920.118000px;}
.y10d{bottom:921.000000px;}
.y171{bottom:927.900000px;}
.y10{bottom:929.406000px;}
.y1d2{bottom:934.800000px;}
.y10c{bottom:938.400000px;}
.y19e{bottom:938.700000px;}
.y40{bottom:943.518000px;}
.y170{bottom:951.300000px;}
.yf{bottom:952.500000px;}
.y10b{bottom:955.800000px;}
.y19d{bottom:958.200000px;}
.y3f{bottom:966.612000px;}
.y16f{bottom:972.600000px;}
.y10a{bottom:973.200000px;}
.ye{bottom:976.494000px;}
.y19c{bottom:977.400000px;}
.y1d1{bottom:977.701500px;}
.y3e{bottom:990.012000px;}
.y109{bottom:990.900000px;}
.y19b{bottom:996.900000px;}
.y1d0{bottom:999.300000px;}
.yd{bottom:1003.794000px;}
.y108{bottom:1008.300000px;}
.y3d{bottom:1013.412000px;}
.y19a{bottom:1016.400000px;}
.y1cf{bottom:1020.300000px;}
.y107{bottom:1025.700000px;}
.yc{bottom:1030.800000px;}
.y199{bottom:1035.600000px;}
.y3c{bottom:1036.506000px;}
.y1ce{bottom:1039.500000px;}
.y106{bottom:1043.100000px;}
.y198{bottom:1055.100000px;}
.yb{bottom:1058.100000px;}
.y1cd{bottom:1059.000000px;}
.y3b{bottom:1059.906000px;}
.y105{bottom:1060.500000px;}
.y197{bottom:1073.700000px;}
.y104{bottom:1078.200000px;}
.y1cc{bottom:1078.500000px;}
.y8{bottom:1079.400000px;}
.y3a{bottom:1083.306000px;}
.y196{bottom:1091.100000px;}
.y102{bottom:1095.598500px;}
.y1cb{bottom:1097.700000px;}
.y6{bottom:1103.400000px;}
.y39{bottom:1106.400000px;}
.y195{bottom:1112.400000px;}
.y101{bottom:1113.000000px;}
.y1ca{bottom:1117.200000px;}
.y5{bottom:1129.200000px;}
.y38{bottom:1129.800000px;}
.y100{bottom:1130.400000px;}
.y1c9{bottom:1136.700000px;}
.y3{bottom:1144.800000px;}
.y37{bottom:1153.200000px;}
.y1c8{bottom:1156.200000px;}
.y2{bottom:1164.300000px;}
.y36{bottom:1183.500000px;}
.y1{bottom:1183.800000px;}
.h21{height:17.398500px;}
.h1f{height:17.400000px;}
.h20{height:17.700000px;}
.h1e{height:19.501500px;}
.h15{height:20.202000px;}
.h1d{height:20.880000px;}
.h5{height:23.401500px;}
.h9{height:23.998500px;}
.h4{height:31.320000px;}
.hf{height:41.760000px;}
.h3{height:43.200000px;}
.h2{height:43.920000px;}
.h1b{height:46.501500px;}
.h22{height:46.980000px;}
.h7{height:47.400000px;}
.h30{height:47.520000px;}
.h27{height:49.028232px;}
.h25{height:49.052637px;}
.h16{height:50.444342px;}
.h19{height:50.469451px;}
.h10{height:51.840000px;}
.he{height:52.200000px;}
.h8{height:52.704000px;}
.h28{height:53.104043px;}
.h2c{height:54.248934px;}
.h2f{height:57.420000px;}
.h13{height:57.679541px;}
.h26{height:58.328637px;}
.h17{height:59.383723px;}
.hc{height:61.488000px;}
.hd{height:62.640000px;}
.h18{height:64.889631px;}
.h6{height:70.664062px;}
.ha{height:72.562500px;}
.hb{height:73.080000px;}
.h1c{height:75.093750px;}
.h14{height:80.311541px;}
.h2a{height:85.200000px;}
.h2e{height:85.500000px;}
.h12{height:193.471541px;}
.h24{height:277.148037px;}
.h23{height:282.699000px;}
.h29{height:295.200000px;}
.h2b{height:307.831500px;}
.h2d{height:321.300000px;}
.h11{height:451.182000px;}
.h1a{height:465.900000px;}
.h0{height:1262.700000px;}
.h1{height:1263.000000px;}
.wf{width:52.800000px;}
.wa{width:53.101500px;}
.we{width:59.100000px;}
.w9{width:62.100000px;}
.wb{width:63.900000px;}
.wd{width:63.901500px;}
.wc{width:64.200000px;}
.w8{width:98.098500px;}
.w6{width:117.651000px;}
.w4{width:127.500000px;}
.w3{width:127.800000px;}
.w2{width:478.200000px;}
.w10{width:688.188000px;}
.w5{width:688.539000px;}
.w11{width:695.103000px;}
.w7{width:710.100000px;}
.w0{width:893.100000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x4{left:8.100000px;}
.x31{left:9.600000px;}
.x50{left:11.100000px;}
.x39{left:12.600000px;}
.x2f{left:14.100000px;}
.x3b{left:17.700000px;}
.x3d{left:20.700000px;}
.x24{left:21.813900px;}
.x3c{left:23.100000px;}
.x28{left:34.800000px;}
.x23{left:39.343800px;}
.x4d{left:42.997500px;}
.x22{left:46.066650px;}
.x1d{left:49.975350px;}
.x18{left:72.414900px;}
.x3{left:79.800000px;}
.x4e{left:84.043950px;}
.x1{left:91.500000px;}
.x40{left:93.229950px;}
.x15{left:95.700000px;}
.x11{left:98.400000px;}
.x2c{left:102.894000px;}
.x17{left:106.473000px;}
.x9{left:108.006000px;}
.x47{left:109.200000px;}
.x26{left:113.043000px;}
.x16{left:118.500000px;}
.x8{left:123.000000px;}
.x6{left:125.100000px;}
.x14{left:144.600000px;}
.xd{left:171.000000px;}
.x53{left:173.100000px;}
.x12{left:179.400000px;}
.x2e{left:189.600000px;}
.x13{left:208.518000px;}
.x30{left:251.700000px;}
.xe{left:263.700000px;}
.xb{left:274.500000px;}
.xc{left:278.406000px;}
.x3f{left:298.200000px;}
.x32{left:304.800000px;}
.xa{left:311.097000px;}
.x46{left:315.000000px;}
.x29{left:330.900000px;}
.x19{left:337.728750px;}
.x45{left:345.873000px;}
.x2d{left:351.600000px;}
.x33{left:368.700000px;}
.xf{left:374.100000px;}
.x51{left:379.800000px;}
.x52{left:406.800000px;}
.x34{left:432.900000px;}
.x2{left:446.400000px;}
.x10{left:449.400000px;}
.x1a{left:453.789750px;}
.x2a{left:473.100000px;}
.x48{left:486.300000px;}
.x35{left:496.800000px;}
.x4a{left:505.077750px;}
.x41{left:509.598750px;}
.x43{left:513.813450px;}
.x1b{left:516.862650px;}
.x49{left:518.301900px;}
.x4c{left:532.067100px;}
.x4b{left:537.127650px;}
.x44{left:539.740200px;}
.x20{left:541.043100px;}
.x5{left:558.000000px;}
.x36{left:560.700000px;}
.x21{left:563.452800px;}
.x42{left:569.080050px;}
.x1e{left:577.701600px;}
.x1f{left:600.111300px;}
.x1c{left:617.974500px;}
.x37{left:624.900000px;}
.x3e{left:647.400000px;}
.x25{left:649.586850px;}
.x7{left:685.800000px;}
.x38{left:688.800000px;}
.x27{left:710.100000px;}
.x4f{left:718.800000px;}
.x2b{left:746.700000px;}
.x3a{left:747.900000px;}
@media print{
.v6{vertical-align:-30.176000pt;}
.v7{vertical-align:-20.116800pt;}
.v2{vertical-align:-10.058667pt;}
.v8{vertical-align:-2.177067pt;}
.v0{vertical-align:0.000000pt;}
.vd{vertical-align:8.245333pt;}
.v4{vertical-align:10.058667pt;}
.v3{vertical-align:20.117333pt;}
.v1{vertical-align:21.333333pt;}
.v9{vertical-align:24.360000pt;}
.v5{vertical-align:30.176533pt;}
.va{vertical-align:107.184533pt;}
.vb{vertical-align:151.033067pt;}
.vc{vertical-align:202.751467pt;}
.ls51{letter-spacing:-2.506667pt;}
.ls22{letter-spacing:-0.896000pt;}
.ls32{letter-spacing:-0.685648pt;}
.ls40{letter-spacing:-0.669865pt;}
.ls18{letter-spacing:-0.512000pt;}
.ls36{letter-spacing:-0.480000pt;}
.ls57{letter-spacing:-0.469333pt;}
.ls24{letter-spacing:-0.448000pt;}
.lse{letter-spacing:-0.426667pt;}
.ls12{letter-spacing:-0.384000pt;}
.ls13{letter-spacing:-0.373333pt;}
.ls38{letter-spacing:-0.336000pt;}
.ls16{letter-spacing:-0.320000pt;}
.ls52{letter-spacing:-0.293333pt;}
.ls37{letter-spacing:-0.288000pt;}
.ls15{letter-spacing:-0.266667pt;}
.ls19{letter-spacing:-0.256000pt;}
.ls59{letter-spacing:-0.234667pt;}
.ls21{letter-spacing:-0.192000pt;}
.lsf{letter-spacing:-0.160000pt;}
.ls39{letter-spacing:-0.144000pt;}
.ls29{letter-spacing:-0.128000pt;}
.ls56{letter-spacing:-0.117333pt;}
.ls4b{letter-spacing:-0.106667pt;}
.ls17{letter-spacing:-0.064000pt;}
.ls58{letter-spacing:-0.058667pt;}
.ls4c{letter-spacing:-0.053333pt;}
.lsd{letter-spacing:0.000000pt;}
.ls4a{letter-spacing:0.053333pt;}
.ls31{letter-spacing:0.058770pt;}
.ls11{letter-spacing:0.074667pt;}
.lsc{letter-spacing:0.106667pt;}
.ls3a{letter-spacing:0.144000pt;}
.ls10{letter-spacing:0.192000pt;}
.ls14{letter-spacing:0.213333pt;}
.ls1a{letter-spacing:0.256000pt;}
.ls50{letter-spacing:0.266667pt;}
.ls54{letter-spacing:0.293333pt;}
.ls5{letter-spacing:0.320000pt;}
.ls55{letter-spacing:0.352000pt;}
.ls6{letter-spacing:0.358400pt;}
.ls1b{letter-spacing:0.384000pt;}
.ls8{letter-spacing:0.396800pt;}
.ls4{letter-spacing:0.405333pt;}
.ls53{letter-spacing:0.410667pt;}
.ls7{letter-spacing:0.428800pt;}
.ls3c{letter-spacing:0.432000pt;}
.ls1c{letter-spacing:0.441600pt;}
.ls9{letter-spacing:0.448000pt;}
.ls35{letter-spacing:0.460800pt;}
.ls20{letter-spacing:0.480000pt;}
.ls1f{letter-spacing:0.512000pt;}
.ls3b{letter-spacing:0.537600pt;}
.lsb{letter-spacing:0.576000pt;}
.ls3e{letter-spacing:0.666400pt;}
.ls3f{letter-spacing:0.669865pt;}
.ls46{letter-spacing:0.693333pt;}
.ls3d{letter-spacing:0.986667pt;}
.ls30{letter-spacing:1.021886pt;}
.ls2a{letter-spacing:1.024000pt;}
.ls49{letter-spacing:1.061333pt;}
.ls44{letter-spacing:1.066667pt;}
.ls2e{letter-spacing:1.097037pt;}
.ls2b{letter-spacing:1.216000pt;}
.ls1e{letter-spacing:1.472000pt;}
.ls33{letter-spacing:2.112000pt;}
.ls48{letter-spacing:2.826667pt;}
.ls2c{letter-spacing:3.200000pt;}
.ls45{letter-spacing:4.960000pt;}
.ls28{letter-spacing:5.113600pt;}
.ls41{letter-spacing:5.312000pt;}
.ls43{letter-spacing:7.093333pt;}
.ls42{letter-spacing:7.424000pt;}
.ls2d{letter-spacing:8.512000pt;}
.ls4e{letter-spacing:9.226667pt;}
.ls25{letter-spacing:9.600000pt;}
.ls4f{letter-spacing:9.973333pt;}
.ls2f{letter-spacing:11.972076pt;}
.ls26{letter-spacing:12.800000pt;}
.ls23{letter-spacing:13.824000pt;}
.ls4d{letter-spacing:15.626667pt;}
.lsa{letter-spacing:16.000000pt;}
.ls1d{letter-spacing:16.896000pt;}
.ls34{letter-spacing:49.408000pt;}
.ls27{letter-spacing:56.640000pt;}
.ls47{letter-spacing:90.293333pt;}
.ls3{letter-spacing:571.360000pt;}
.ls1{letter-spacing:752.693333pt;}
.ls2{letter-spacing:804.960000pt;}
.ls0{letter-spacing:1242.293333pt;}
.wsa0{word-spacing:-64.000000pt;}
.ws4e{word-spacing:-17.600000pt;}
.ws3{word-spacing:-17.408000pt;}
.wsdb{word-spacing:-17.280000pt;}
.ws4{word-spacing:-17.088000pt;}
.ws34{word-spacing:-17.024000pt;}
.ws68{word-spacing:-16.960000pt;}
.ws33{word-spacing:-16.896000pt;}
.ws32{word-spacing:-16.832000pt;}
.wsa1{word-spacing:-16.704000pt;}
.ws8{word-spacing:-16.576000pt;}
.ws2{word-spacing:-16.384000pt;}
.ws1{word-spacing:-16.192000pt;}
.ws9{word-spacing:-15.936000pt;}
.ws7{word-spacing:-15.872000pt;}
.ws31{word-spacing:-15.680000pt;}
.ws118{word-spacing:-15.429333pt;}
.ws117{word-spacing:-15.194667pt;}
.ws93{word-spacing:-14.751303pt;}
.ws116{word-spacing:-14.549333pt;}
.wse6{word-spacing:-14.453333pt;}
.wse7{word-spacing:-14.293333pt;}
.wscd{word-spacing:-14.240000pt;}
.ws5{word-spacing:-14.080000pt;}
.ws6{word-spacing:-13.973333pt;}
.ws0{word-spacing:-13.813333pt;}
.wse8{word-spacing:-13.760000pt;}
.wsb0{word-spacing:-13.248000pt;}
.wsa4{word-spacing:-13.200000pt;}
.wsa2{word-spacing:-13.120000pt;}
.wse5{word-spacing:-13.066667pt;}
.ws115{word-spacing:-13.013333pt;}
.wsa7{word-spacing:-12.960000pt;}
.wsa6{word-spacing:-12.672000pt;}
.wsa3{word-spacing:-12.528000pt;}
.wsa5{word-spacing:-12.480000pt;}
.wsa8{word-spacing:-12.432000pt;}
.wsc2{word-spacing:-11.773067pt;}
.wscc{word-spacing:-11.292002pt;}
.ws8e{word-spacing:-9.968000pt;}
.ws9a{word-spacing:-6.507799pt;}
.wsbb{word-spacing:-4.480000pt;}
.ws59{word-spacing:-4.224000pt;}
.ws4b{word-spacing:-4.032000pt;}
.ws53{word-spacing:-3.904000pt;}
.ws9d{word-spacing:-3.793919pt;}
.ws52{word-spacing:-3.776000pt;}
.wsf3{word-spacing:-3.573333pt;}
.ws65{word-spacing:-3.392000pt;}
.wsf5{word-spacing:-3.306667pt;}
.wsf4{word-spacing:-3.200000pt;}
.ws2a{word-spacing:-3.136000pt;}
.ws5f{word-spacing:-3.008000pt;}
.ws89{word-spacing:-2.816000pt;}
.ws28{word-spacing:-2.688000pt;}
.ws10a{word-spacing:-2.613333pt;}
.ws9b{word-spacing:-2.527823pt;}
.ws7a{word-spacing:-2.368000pt;}
.ws112{word-spacing:-2.133333pt;}
.ws5d{word-spacing:-2.112000pt;}
.ws108{word-spacing:-2.080000pt;}
.wsaa{word-spacing:-1.984000pt;}
.ws82{word-spacing:-1.920000pt;}
.ws7b{word-spacing:-1.792000pt;}
.ws5c{word-spacing:-1.728000pt;}
.ws83{word-spacing:-1.664000pt;}
.ws101{word-spacing:-1.653333pt;}
.ws99{word-spacing:-1.645555pt;}
.ws102{word-spacing:-1.546667pt;}
.wsd6{word-spacing:-1.339729pt;}
.ws41{word-spacing:-1.280000pt;}
.ws8a{word-spacing:-1.216000pt;}
.ws103{word-spacing:-1.173333pt;}
.ws109{word-spacing:-1.066667pt;}
.ws3e{word-spacing:-1.024000pt;}
.ws35{word-spacing:-0.853333pt;}
.wscb{word-spacing:-0.832000pt;}
.ws64{word-spacing:-0.704000pt;}
.wsd5{word-spacing:-0.669865pt;}
.ws13{word-spacing:-0.586667pt;}
.ws3f{word-spacing:-0.576000pt;}
.ws48{word-spacing:-0.512000pt;}
.wsa{word-spacing:-0.480000pt;}
.ws62{word-spacing:-0.448000pt;}
.wsff{word-spacing:-0.426667pt;}
.ws2d{word-spacing:-0.384000pt;}
.wsc{word-spacing:-0.373333pt;}
.ws11{word-spacing:-0.320000pt;}
.wsfc{word-spacing:-0.266667pt;}
.ws37{word-spacing:-0.256000pt;}
.wsd{word-spacing:-0.213333pt;}
.ws16{word-spacing:-0.192000pt;}
.wse9{word-spacing:-0.106667pt;}
.ws11a{word-spacing:-0.053333pt;}
.wsb{word-spacing:0.000000pt;}
.ws14{word-spacing:0.053333pt;}
.ws120{word-spacing:0.058667pt;}
.ws17{word-spacing:0.064000pt;}
.ws114{word-spacing:0.106667pt;}
.ws6e{word-spacing:0.128000pt;}
.ws9c{word-spacing:0.137130pt;}
.ws10b{word-spacing:0.160000pt;}
.ws72{word-spacing:0.192000pt;}
.wse{word-spacing:0.224000pt;}
.ws3a{word-spacing:0.256000pt;}
.ws15{word-spacing:0.266667pt;}
.wsf{word-spacing:0.298667pt;}
.ws9e{word-spacing:0.320000pt;}
.ws12{word-spacing:0.373333pt;}
.ws10{word-spacing:0.384000pt;}
.ws124{word-spacing:0.410667pt;}
.wsea{word-spacing:0.426667pt;}
.ws51{word-spacing:0.448000pt;}
.ws123{word-spacing:0.469333pt;}
.ws2e{word-spacing:0.512000pt;}
.ws113{word-spacing:0.640000pt;}
.wsd4{word-spacing:0.669865pt;}
.wsbc{word-spacing:0.704000pt;}
.ws85{word-spacing:0.832000pt;}
.wsaf{word-spacing:0.853333pt;}
.ws44{word-spacing:0.896000pt;}
.ws100{word-spacing:0.960000pt;}
.wsf1{word-spacing:1.066667pt;}
.ws4d{word-spacing:1.088000pt;}
.wsf2{word-spacing:1.120000pt;}
.ws6f{word-spacing:1.216000pt;}
.ws8d{word-spacing:1.408000pt;}
.wsd8{word-spacing:1.472000pt;}
.ws50{word-spacing:1.536000pt;}
.ws111{word-spacing:1.546667pt;}
.ws9f{word-spacing:1.792000pt;}
.ws86{word-spacing:1.920000pt;}
.ws22{word-spacing:2.176000pt;}
.ws119{word-spacing:2.186667pt;}
.ws8c{word-spacing:2.304000pt;}
.ws7e{word-spacing:2.368000pt;}
.ws42{word-spacing:2.496000pt;}
.ws11b{word-spacing:2.506667pt;}
.wsd9{word-spacing:2.560000pt;}
.wseb{word-spacing:2.613333pt;}
.ws27{word-spacing:2.624000pt;}
.ws107{word-spacing:2.773333pt;}
.ws23{word-spacing:2.944000pt;}
.ws8b{word-spacing:3.008000pt;}
.ws106{word-spacing:3.093333pt;}
.ws122{word-spacing:3.168000pt;}
.wsef{word-spacing:3.253333pt;}
.ws74{word-spacing:3.264000pt;}
.ws6b{word-spacing:3.456000pt;}
.ws121{word-spacing:3.520000pt;}
.ws5b{word-spacing:3.584000pt;}
.ws105{word-spacing:3.680000pt;}
.ws24{word-spacing:3.712000pt;}
.wsf6{word-spacing:3.786667pt;}
.wsad{word-spacing:3.968000pt;}
.ws39{word-spacing:4.032000pt;}
.wsf0{word-spacing:4.266667pt;}
.ws7c{word-spacing:4.288000pt;}
.wse4{word-spacing:4.416000pt;}
.ws19{word-spacing:4.608000pt;}
.ws61{word-spacing:4.736000pt;}
.wsd7{word-spacing:4.800000pt;}
.wsed{word-spacing:4.906667pt;}
.wsc9{word-spacing:4.992000pt;}
.wsc6{word-spacing:5.056000pt;}
.ws67{word-spacing:5.120000pt;}
.ws7d{word-spacing:5.376000pt;}
.wsec{word-spacing:5.386667pt;}
.wsee{word-spacing:5.440000pt;}
.wsb1{word-spacing:5.568000pt;}
.ws43{word-spacing:5.696000pt;}
.wsa9{word-spacing:5.760000pt;}
.ws10e{word-spacing:5.813333pt;}
.ws3b{word-spacing:5.824000pt;}
.ws10c{word-spacing:5.920000pt;}
.wsf7{word-spacing:5.973333pt;}
.wsca{word-spacing:6.080000pt;}
.wsc4{word-spacing:6.208000pt;}
.wsfa{word-spacing:6.293333pt;}
.ws60{word-spacing:6.464000pt;}
.ws95{word-spacing:6.592000pt;}
.wse1{word-spacing:6.784000pt;}
.ws21{word-spacing:6.912000pt;}
.ws63{word-spacing:7.232000pt;}
.ws10d{word-spacing:7.253333pt;}
.ws5a{word-spacing:7.488000pt;}
.ws1f{word-spacing:7.808000pt;}
.ws1e{word-spacing:7.936000pt;}
.wsb5{word-spacing:8.320000pt;}
.ws79{word-spacing:8.576000pt;}
.ws11c{word-spacing:8.746667pt;}
.ws97{word-spacing:8.768000pt;}
.ws2f{word-spacing:8.896000pt;}
.ws98{word-spacing:8.960000pt;}
.ws11d{word-spacing:9.013333pt;}
.ws30{word-spacing:9.024000pt;}
.ws1c{word-spacing:9.408000pt;}
.ws29{word-spacing:9.664000pt;}
.ws96{word-spacing:9.792000pt;}
.wse2{word-spacing:9.856000pt;}
.ws66{word-spacing:9.984000pt;}
.ws104{word-spacing:10.080000pt;}
.ws6a{word-spacing:10.112000pt;}
.wsdc{word-spacing:10.368000pt;}
.ws54{word-spacing:10.432000pt;}
.ws69{word-spacing:10.688000pt;}
.ws55{word-spacing:11.008000pt;}
.ws36{word-spacing:11.136000pt;}
.wsb9{word-spacing:11.392000pt;}
.wsba{word-spacing:11.456000pt;}
.wsbe{word-spacing:11.520000pt;}
.wsc8{word-spacing:11.776000pt;}
.wsdd{word-spacing:11.904000pt;}
.ws75{word-spacing:12.032000pt;}
.wsc7{word-spacing:12.096000pt;}
.ws73{word-spacing:12.224000pt;}
.ws1b{word-spacing:12.608000pt;}
.ws11f{word-spacing:12.730667pt;}
.ws2b{word-spacing:12.864000pt;}
.ws1a{word-spacing:13.056000pt;}
.ws11e{word-spacing:13.200000pt;}
.wsce{word-spacing:13.248000pt;}
.ws71{word-spacing:13.312000pt;}
.ws56{word-spacing:13.632000pt;}
.ws26{word-spacing:13.888000pt;}
.ws4c{word-spacing:14.080000pt;}
.wsac{word-spacing:14.208000pt;}
.ws25{word-spacing:14.336000pt;}
.wsfb{word-spacing:14.506667pt;}
.ws5e{word-spacing:14.720000pt;}
.ws7f{word-spacing:14.976000pt;}
.wsab{word-spacing:15.104000pt;}
.ws77{word-spacing:15.296000pt;}
.ws45{word-spacing:15.424000pt;}
.ws2c{word-spacing:15.744000pt;}
.ws70{word-spacing:15.808000pt;}
.ws46{word-spacing:16.064000pt;}
.wsda{word-spacing:16.256000pt;}
.wsb7{word-spacing:16.384000pt;}
.ws38{word-spacing:16.512000pt;}
.ws88{word-spacing:16.832000pt;}
.ws57{word-spacing:17.088000pt;}
.ws87{word-spacing:17.408000pt;}
.ws78{word-spacing:17.536000pt;}
.wsc5{word-spacing:18.176000pt;}
.wsd1{word-spacing:18.496000pt;}
.ws10f{word-spacing:18.773333pt;}
.wsb4{word-spacing:19.008000pt;}
.ws110{word-spacing:19.253333pt;}
.ws49{word-spacing:19.264000pt;}
.ws4a{word-spacing:19.712000pt;}
.ws47{word-spacing:20.288000pt;}
.wsc3{word-spacing:20.480000pt;}
.wsd0{word-spacing:20.608000pt;}
.wsb6{word-spacing:20.736000pt;}
.ws58{word-spacing:21.120000pt;}
.wsb2{word-spacing:21.376000pt;}
.ws84{word-spacing:21.696000pt;}
.wsde{word-spacing:21.760000pt;}
.wsb3{word-spacing:21.824000pt;}
.ws3c{word-spacing:22.464000pt;}
.ws3d{word-spacing:22.656000pt;}
.wsfe{word-spacing:22.880000pt;}
.wsbd{word-spacing:22.912000pt;}
.wsd3{word-spacing:23.488000pt;}
.wsfd{word-spacing:23.520000pt;}
.wsd2{word-spacing:23.936000pt;}
.ws4f{word-spacing:25.408000pt;}
.wscf{word-spacing:25.664000pt;}
.ws40{word-spacing:25.792000pt;}
.ws18{word-spacing:26.112000pt;}
.ws80{word-spacing:27.136000pt;}
.ws94{word-spacing:28.096000pt;}
.wse3{word-spacing:28.224000pt;}
.ws76{word-spacing:28.864000pt;}
.ws1d{word-spacing:29.888000pt;}
.ws81{word-spacing:30.720000pt;}
.ws6d{word-spacing:30.976000pt;}
.ws6c{word-spacing:31.424000pt;}
.wsb8{word-spacing:32.512000pt;}
.wsdf{word-spacing:33.408000pt;}
.wse0{word-spacing:35.264000pt;}
.ws20{word-spacing:38.464000pt;}
.wsae{word-spacing:39.488000pt;}
.wsf9{word-spacing:65.546667pt;}
.wsf8{word-spacing:66.186667pt;}
.wsc0{word-spacing:95.393680pt;}
.wsbf{word-spacing:95.394172pt;}
.wsc1{word-spacing:95.394665pt;}
.ws92{word-spacing:114.450964pt;}
.ws91{word-spacing:153.630381pt;}
.ws8f{word-spacing:153.630964pt;}
.ws90{word-spacing:153.631547pt;}
._1f{margin-left:-65.440000pt;}
._12{margin-left:-3.251200pt;}
._6{margin-left:-2.248533pt;}
._0{margin-left:-0.906667pt;}
._1{width:1.120000pt;}
._3{width:2.346667pt;}
._14{width:3.496533pt;}
._b{width:4.576000pt;}
._a{width:5.830400pt;}
._c{width:6.916267pt;}
._d{width:8.608000pt;}
._10{width:10.368000pt;}
._15{width:11.360000pt;}
._17{width:13.896533pt;}
._8{width:15.072000pt;}
._9{width:15.961600pt;}
._7{width:17.504000pt;}
._18{width:19.142400pt;}
._13{width:21.747200pt;}
._e{width:23.372800pt;}
._f{width:24.889600pt;}
._16{width:30.099200pt;}
._1e{width:65.920000pt;}
._1d{width:221.695565pt;}
._1a{width:231.901867pt;}
._19{width:286.560000pt;}
._1b{width:385.150731pt;}
._4{width:680.693333pt;}
._1c{width:798.856662pt;}
._5{width:816.693333pt;}
._2{width:893.706667pt;}
._11{width:1011.893333pt;}
.fsa{font-size:21.333333pt;}
.fs1{font-size:32.000000pt;}
.fs4{font-size:37.333333pt;}
.fs5{font-size:42.666667pt;}
.fsc{font-size:44.426667pt;}
.fs7{font-size:45.709867pt;}
.fse{font-size:47.847467pt;}
.fsb{font-size:48.000000pt;}
.fsd{font-size:48.096000pt;}
.fs6{font-size:52.240000pt;}
.fs0{font-size:53.333333pt;}
.fs8{font-size:53.783467pt;}
.fsf{font-size:58.666667pt;}
.fs9{font-size:58.770133pt;}
.fs2{font-size:64.000000pt;}
.fs3{font-size:74.666667pt;}
.y0{bottom:0.000000pt;}
.y9{bottom:2.933333pt;}
.yf6{bottom:3.200000pt;}
.y103{bottom:3.201333pt;}
.yfa{bottom:3.466667pt;}
.yf4{bottom:3.733333pt;}
.ybc{bottom:4.336400pt;}
.y7{bottom:4.533333pt;}
.ya{bottom:5.333333pt;}
.ycf{bottom:9.522667pt;}
.y146{bottom:14.047733pt;}
.y15a{bottom:16.617733pt;}
.yce{bottom:22.105733pt;}
.yd2{bottom:25.333333pt;}
.y159{bottom:30.573200pt;}
.y145{bottom:33.665200pt;}
.y144{bottom:34.238533pt;}
.ycd{bottom:34.688667pt;}
.y158{bottom:44.528667pt;}
.ycc{bottom:47.271600pt;}
.y139{bottom:47.283200pt;}
.y149{bottom:59.733333pt;}
.y4{bottom:60.266667pt;}
.ycb{bottom:62.975200pt;}
.yc8{bottom:63.441867pt;}
.y13a{bottom:66.021867pt;}
.yc1{bottom:78.780800pt;}
.y13b{bottom:84.760400pt;}
.yd6{bottom:86.400000pt;}
.yff{bottom:89.066667pt;}
.y16e{bottom:93.418667pt;}
.y16d{bottom:97.349333pt;}
.y153{bottom:100.005333pt;}
.y85{bottom:100.288000pt;}
.ya3{bottom:100.298667pt;}
.y194{bottom:100.336000pt;}
.y35{bottom:101.344000pt;}
.y13c{bottom:103.498933pt;}
.yfe{bottom:104.533333pt;}
.y134{bottom:105.627333pt;}
.yd5{bottom:107.200000pt;}
.y64{bottom:107.258667pt;}
.yc9{bottom:108.195733pt;}
.y1c7{bottom:109.866667pt;}
.y131{bottom:113.386667pt;}
.yad{bottom:113.946667pt;}
.y16c{bottom:118.149333pt;}
.yfd{bottom:120.266667pt;}
.y152{bottom:120.805333pt;}
.y84{bottom:120.816000pt;}
.ya2{bottom:120.826667pt;}
.y193{bottom:120.864000pt;}
.y34{bottom:122.144000pt;}
.y13d{bottom:122.237600pt;}
.yd4{bottom:126.133333pt;}
.y1c6{bottom:126.933333pt;}
.y138{bottom:127.260933pt;}
.y63{bottom:127.786667pt;}
.yc2{bottom:129.074133pt;}
.y130{bottom:134.186667pt;}
.yac{bottom:134.746667pt;}
.yfc{bottom:135.733333pt;}
.yd1{bottom:137.066667pt;}
.y16b{bottom:138.949333pt;}
.y137{bottom:140.218667pt;}
.y13e{bottom:140.976267pt;}
.yd3{bottom:141.600000pt;}
.y151{bottom:141.605333pt;}
.y83{bottom:141.616000pt;}
.ya1{bottom:141.626667pt;}
.y192{bottom:141.664000pt;}
.y33{bottom:142.944000pt;}
.y1c5{bottom:144.266667pt;}
.y62{bottom:148.586667pt;}
.yfb{bottom:151.200000pt;}
.y12f{bottom:154.714667pt;}
.yab{bottom:155.546667pt;}
.y16a{bottom:159.477333pt;}
.y13f{bottom:159.714800pt;}
.y1c4{bottom:161.600000pt;}
.y150{bottom:162.133333pt;}
.y82{bottom:162.416000pt;}
.ya0{bottom:162.426667pt;}
.y191{bottom:162.464000pt;}
.y32{bottom:163.472000pt;}
.yf9{bottom:166.666667pt;}
.y61{bottom:169.114667pt;}
.y12e{bottom:175.514667pt;}
.yaa{bottom:176.074667pt;}
.y135{bottom:176.646667pt;}
.yd0{bottom:178.400000pt;}
.y140{bottom:178.453333pt;}
.y1c3{bottom:178.666667pt;}
.yc3{bottom:179.367467pt;}
.y169{bottom:180.277333pt;}
.yf8{bottom:182.400000pt;}
.y14f{bottom:182.933333pt;}
.y81{bottom:182.944000pt;}
.y9f{bottom:182.954667pt;}
.y190{bottom:182.992000pt;}
.y31{bottom:184.272000pt;}
.yca{bottom:184.378933pt;}
.yb5{bottom:184.818667pt;}
.y60{bottom:189.914667pt;}
.y136{bottom:191.262667pt;}
.y15d{bottom:192.709200pt;}
.y1c2{bottom:196.000000pt;}
.y12d{bottom:196.314667pt;}
.ya9{bottom:196.874667pt;}
.y141{bottom:197.192000pt;}
.yf7{bottom:197.866667pt;}
.y168{bottom:201.077333pt;}
.y80{bottom:203.744000pt;}
.y9e{bottom:203.754667pt;}
.y18f{bottom:203.792000pt;}
.y30{bottom:205.072000pt;}
.y15c{bottom:206.664667pt;}
.y5f{bottom:210.714667pt;}
.yb6{bottom:212.902133pt;}
.yf5{bottom:213.333333pt;}
.y142{bottom:215.930533pt;}
.y157{bottom:216.317467pt;}
.y12c{bottom:216.842667pt;}
.ya8{bottom:217.674667pt;}
.y15b{bottom:220.620133pt;}
.y167{bottom:221.605333pt;}
.y14e{bottom:224.272000pt;}
.y7f{bottom:224.544000pt;}
.y9d{bottom:224.554667pt;}
.y18e{bottom:224.592000pt;}
.y2f{bottom:225.600000pt;}
.yf3{bottom:229.600000pt;}
.yc4{bottom:229.660800pt;}
.y156{bottom:230.273067pt;}
.y1c1{bottom:230.400000pt;}
.y5e{bottom:231.242667pt;}
.y143{bottom:234.669200pt;}
.y12b{bottom:237.642667pt;}
.ya7{bottom:238.202667pt;}
.y166{bottom:242.405333pt;}
.y2e{bottom:244.800000pt;}
.y7e{bottom:245.072000pt;}
.y9c{bottom:245.082667pt;}
.y18d{bottom:245.120000pt;}
.y1c0{bottom:247.733333pt;}
.yf2{bottom:252.005333pt;}
.y5d{bottom:252.042667pt;}
.y12a{bottom:258.170667pt;}
.ya6{bottom:259.002667pt;}
.y2d{bottom:260.272000pt;}
.y165{bottom:263.205333pt;}
.y1bf{bottom:265.066667pt;}
.y14d{bottom:265.600000pt;}
.y7d{bottom:265.872000pt;}
.y9b{bottom:265.882667pt;}
.y18c{bottom:265.920000pt;}
.ybe{bottom:266.365733pt;}
.yf1{bottom:272.805333pt;}
.y5c{bottom:272.842667pt;}
.y129{bottom:278.970667pt;}
.ybd{bottom:279.425733pt;}
.ya5{bottom:279.802667pt;}
.yc5{bottom:279.954133pt;}
.y2c{bottom:280.800000pt;}
.y1be{bottom:282.400000pt;}
.y164{bottom:283.733333pt;}
.y7c{bottom:286.400000pt;}
.y9a{bottom:286.410667pt;}
.y18b{bottom:286.448000pt;}
.yb7{bottom:288.342133pt;}
.yf0{bottom:293.333333pt;}
.y5b{bottom:293.370667pt;}
.yba{bottom:293.371467pt;}
.y1bd{bottom:299.466667pt;}
.y128{bottom:299.770667pt;}
.y2b{bottom:300.000000pt;}
.ya4{bottom:300.330667pt;}
.y163{bottom:304.533333pt;}
.y7b{bottom:305.600000pt;}
.y99{bottom:307.210667pt;}
.y18a{bottom:307.248000pt;}
.yb8{bottom:308.459467pt;}
.yef{bottom:311.200000pt;}
.yc0{bottom:311.638533pt;}
.y5a{bottom:314.170667pt;}
.y2a{bottom:315.504000pt;}
.y148{bottom:316.533333pt;}
.y1bc{bottom:316.800000pt;}
.y14c{bottom:320.266667pt;}
.y127{bottom:320.298667pt;}
.yee{bottom:321.114667pt;}
.y7a{bottom:321.130667pt;}
.y162{bottom:323.466667pt;}
.ybf{bottom:324.698533pt;}
.y98{bottom:328.010667pt;}
.y189{bottom:328.048000pt;}
.yc6{bottom:330.247467pt;}
.y1bb{bottom:334.133333pt;}
.y15f{bottom:334.400000pt;}
.y59{bottom:334.970667pt;}
.y29{bottom:336.032000pt;}
.y14b{bottom:337.333333pt;}
.y161{bottom:338.133333pt;}
.y126{bottom:341.098667pt;}
.yed{bottom:341.642667pt;}
.y79{bottom:341.658667pt;}
.yb9{bottom:343.664800pt;}
.y97{bottom:348.538667pt;}
.y188{bottom:348.576000pt;}
.y1ba{bottom:351.200000pt;}
.y14a{bottom:355.466667pt;}
.y58{bottom:355.498667pt;}
.y28{bottom:356.832000pt;}
.y125{bottom:361.898667pt;}
.yec{bottom:362.442667pt;}
.y78{bottom:362.458667pt;}
.y1b9{bottom:368.533333pt;}
.y96{bottom:369.338667pt;}
.y187{bottom:369.376000pt;}
.y160{bottom:373.600000pt;}
.y57{bottom:376.298667pt;}
.y27{bottom:377.632000pt;}
.yc7{bottom:380.540800pt;}
.y124{bottom:382.426667pt;}
.yeb{bottom:383.242667pt;}
.y77{bottom:383.258667pt;}
.y1b8{bottom:385.866667pt;}
.y95{bottom:390.138667pt;}
.y186{bottom:390.176000pt;}
.y147{bottom:392.266667pt;}
.y56{bottom:397.098667pt;}
.y133{bottom:397.692000pt;}
.y26{bottom:398.160000pt;}
.y1b7{bottom:402.933333pt;}
.y123{bottom:403.226667pt;}
.yea{bottom:403.770667pt;}
.y76{bottom:403.786667pt;}
.y15e{bottom:410.400000pt;}
.y94{bottom:410.666667pt;}
.y185{bottom:410.704000pt;}
.y155{bottom:416.258667pt;}
.y55{bottom:417.626667pt;}
.y25{bottom:418.960000pt;}
.y1b6{bottom:420.266667pt;}
.y122{bottom:424.026667pt;}
.ye9{bottom:424.570667pt;}
.y75{bottom:424.586667pt;}
.y93{bottom:431.466667pt;}
.y184{bottom:431.504000pt;}
.y1b5{bottom:437.600000pt;}
.y54{bottom:438.426667pt;}
.y24{bottom:439.488000pt;}
.y121{bottom:444.554667pt;}
.ybb{bottom:444.930667pt;}
.ye8{bottom:445.370667pt;}
.y74{bottom:445.386667pt;}
.y92{bottom:452.266667pt;}
.y183{bottom:452.304000pt;}
.y1b4{bottom:454.933333pt;}
.y53{bottom:458.954667pt;}
.y23{bottom:460.288000pt;}
.y120{bottom:465.354667pt;}
.ye7{bottom:465.898667pt;}
.y73{bottom:465.914667pt;}
.y1b3{bottom:472.000000pt;}
.y91{bottom:472.805333pt;}
.y182{bottom:472.832000pt;}
.y52{bottom:479.754667pt;}
.y22{bottom:481.088000pt;}
.y11f{bottom:485.882667pt;}
.ye6{bottom:486.698667pt;}
.y72{bottom:486.714667pt;}
.y1b2{bottom:489.333333pt;}
.y90{bottom:493.605333pt;}
.y181{bottom:493.632000pt;}
.y51{bottom:500.554667pt;}
.y21{bottom:501.616000pt;}
.y1b1{bottom:506.666667pt;}
.y11e{bottom:506.682667pt;}
.ye5{bottom:507.498667pt;}
.y71{bottom:507.514667pt;}
.y8f{bottom:514.133333pt;}
.y180{bottom:514.160000pt;}
.y50{bottom:521.082667pt;}
.y20{bottom:522.416000pt;}
.y1b0{bottom:523.733333pt;}
.y11d{bottom:527.482667pt;}
.ye4{bottom:528.026667pt;}
.y70{bottom:528.042667pt;}
.y8e{bottom:534.933333pt;}
.y17f{bottom:534.960000pt;}
.y1af{bottom:541.066667pt;}
.y4f{bottom:541.882667pt;}
.y1f{bottom:543.216000pt;}
.y11c{bottom:548.010667pt;}
.ye3{bottom:548.826667pt;}
.y6f{bottom:548.842667pt;}
.y8d{bottom:555.744000pt;}
.y17e{bottom:555.760000pt;}
.y1ae{bottom:558.400000pt;}
.y4e{bottom:562.682667pt;}
.y1e{bottom:563.744000pt;}
.y11b{bottom:568.810667pt;}
.ye2{bottom:569.626667pt;}
.y6e{bottom:569.642667pt;}
.y1ad{bottom:575.466667pt;}
.y8c{bottom:576.272000pt;}
.y17d{bottom:576.288000pt;}
.y4d{bottom:583.210667pt;}
.y1d{bottom:584.544000pt;}
.y11a{bottom:589.610667pt;}
.ye1{bottom:590.154667pt;}
.y6d{bottom:590.170667pt;}
.y1ac{bottom:592.800000pt;}
.yb4{bottom:595.466667pt;}
.y8b{bottom:597.072000pt;}
.y17c{bottom:597.088000pt;}
.y1de{bottom:601.066667pt;}
.y4c{bottom:604.010667pt;}
.y1c{bottom:605.344000pt;}
.y1ab{bottom:610.133333pt;}
.y119{bottom:610.138667pt;}
.yb3{bottom:610.944000pt;}
.ye0{bottom:610.954667pt;}
.y6c{bottom:610.970667pt;}
.y8a{bottom:617.872000pt;}
.y17b{bottom:617.888000pt;}
.y1dd{bottom:620.000000pt;}
.y4b{bottom:624.810667pt;}
.y1b{bottom:625.872000pt;}
.y1aa{bottom:627.466667pt;}
.y118{bottom:630.938667pt;}
.yb2{bottom:631.472000pt;}
.ydf{bottom:631.482667pt;}
.y6b{bottom:631.498667pt;}
.y89{bottom:638.400000pt;}
.y17a{bottom:638.416000pt;}
.y1dc{bottom:638.933333pt;}
.y1a9{bottom:644.533333pt;}
.y4a{bottom:645.338667pt;}
.y1a{bottom:646.672000pt;}
.y117{bottom:651.738667pt;}
.yb1{bottom:652.272000pt;}
.yde{bottom:652.282667pt;}
.y6a{bottom:652.298667pt;}
.y132{bottom:657.600000pt;}
.y1db{bottom:657.866667pt;}
.y88{bottom:659.205333pt;}
.y179{bottom:659.216000pt;}
.y1a8{bottom:661.866667pt;}
.y49{bottom:666.138667pt;}
.y19{bottom:667.200000pt;}
.y116{bottom:672.266667pt;}
.yb0{bottom:673.072000pt;}
.ydd{bottom:673.082667pt;}
.y69{bottom:673.098667pt;}
.y1da{bottom:676.800000pt;}
.y1a7{bottom:679.200000pt;}
.y87{bottom:680.005333pt;}
.y178{bottom:680.016000pt;}
.y48{bottom:686.666667pt;}
.y18{bottom:688.000000pt;}
.y115{bottom:693.066667pt;}
.yaf{bottom:693.600000pt;}
.ydc{bottom:693.610667pt;}
.y68{bottom:693.626667pt;}
.y1d9{bottom:696.000000pt;}
.y1a6{bottom:696.266667pt;}
.y154{bottom:698.933333pt;}
.y86{bottom:700.533333pt;}
.y177{bottom:700.544000pt;}
.y47{bottom:705.866667pt;}
.y17{bottom:707.200000pt;}
.y114{bottom:712.266667pt;}
.y1a5{bottom:713.600000pt;}
.yae{bottom:714.400000pt;}
.ydb{bottom:714.410667pt;}
.y67{bottom:714.426667pt;}
.y1d8{bottom:714.933333pt;}
.y46{bottom:721.333333pt;}
.y176{bottom:721.344000pt;}
.y16{bottom:721.866667pt;}
.y113{bottom:726.666667pt;}
.y1a4{bottom:730.933333pt;}
.y1d7{bottom:733.866667pt;}
.yda{bottom:735.210667pt;}
.y66{bottom:735.226667pt;}
.y15{bottom:738.933333pt;}
.y112{bottom:740.800000pt;}
.y45{bottom:742.133333pt;}
.y175{bottom:742.144000pt;}
.y1a3{bottom:748.000000pt;}
.y1d6{bottom:752.533333pt;}
.y14{bottom:755.466667pt;}
.yd9{bottom:755.738667pt;}
.y65{bottom:755.754667pt;}
.y111{bottom:756.533333pt;}
.y44{bottom:761.066667pt;}
.y174{bottom:762.672000pt;}
.y1a2{bottom:765.333333pt;}
.y1d5{bottom:770.130667pt;}
.y13{bottom:770.133333pt;}
.y110{bottom:772.000000pt;}
.yd8{bottom:776.538667pt;}
.y43{bottom:776.554667pt;}
.y1a1{bottom:782.666667pt;}
.y173{bottom:783.472000pt;}
.y12{bottom:787.200000pt;}
.y10f{bottom:787.466667pt;}
.y1d4{bottom:789.065333pt;}
.yd7{bottom:797.338667pt;}
.y42{bottom:797.354667pt;}
.y1a0{bottom:800.000000pt;}
.y10e{bottom:802.933333pt;}
.y172{bottom:804.000000pt;}
.y11{bottom:805.338667pt;}
.y1d3{bottom:808.000000pt;}
.y19f{bottom:817.066667pt;}
.y41{bottom:817.882667pt;}
.y10d{bottom:818.666667pt;}
.y171{bottom:824.800000pt;}
.y10{bottom:826.138667pt;}
.y1d2{bottom:830.933333pt;}
.y10c{bottom:834.133333pt;}
.y19e{bottom:834.400000pt;}
.y40{bottom:838.682667pt;}
.y170{bottom:845.600000pt;}
.yf{bottom:846.666667pt;}
.y10b{bottom:849.600000pt;}
.y19d{bottom:851.733333pt;}
.y3f{bottom:859.210667pt;}
.y16f{bottom:864.533333pt;}
.y10a{bottom:865.066667pt;}
.ye{bottom:867.994667pt;}
.y19c{bottom:868.800000pt;}
.y1d1{bottom:869.068000pt;}
.y3e{bottom:880.010667pt;}
.y109{bottom:880.800000pt;}
.y19b{bottom:886.133333pt;}
.y1d0{bottom:888.266667pt;}
.yd{bottom:892.261333pt;}
.y108{bottom:896.266667pt;}
.y3d{bottom:900.810667pt;}
.y19a{bottom:903.466667pt;}
.y1cf{bottom:906.933333pt;}
.y107{bottom:911.733333pt;}
.yc{bottom:916.266667pt;}
.y199{bottom:920.533333pt;}
.y3c{bottom:921.338667pt;}
.y1ce{bottom:924.000000pt;}
.y106{bottom:927.200000pt;}
.y198{bottom:937.866667pt;}
.yb{bottom:940.533333pt;}
.y1cd{bottom:941.333333pt;}
.y3b{bottom:942.138667pt;}
.y105{bottom:942.666667pt;}
.y197{bottom:954.400000pt;}
.y104{bottom:958.400000pt;}
.y1cc{bottom:958.666667pt;}
.y8{bottom:959.466667pt;}
.y3a{bottom:962.938667pt;}
.y196{bottom:969.866667pt;}
.y102{bottom:973.865333pt;}
.y1cb{bottom:975.733333pt;}
.y6{bottom:980.800000pt;}
.y39{bottom:983.466667pt;}
.y195{bottom:988.800000pt;}
.y101{bottom:989.333333pt;}
.y1ca{bottom:993.066667pt;}
.y5{bottom:1003.733333pt;}
.y38{bottom:1004.266667pt;}
.y100{bottom:1004.800000pt;}
.y1c9{bottom:1010.400000pt;}
.y3{bottom:1017.600000pt;}
.y37{bottom:1025.066667pt;}
.y1c8{bottom:1027.733333pt;}
.y2{bottom:1034.933333pt;}
.y36{bottom:1052.000000pt;}
.y1{bottom:1052.266667pt;}
.h21{height:15.465333pt;}
.h1f{height:15.466667pt;}
.h20{height:15.733333pt;}
.h1e{height:17.334667pt;}
.h15{height:17.957333pt;}
.h1d{height:18.560000pt;}
.h5{height:20.801333pt;}
.h9{height:21.332000pt;}
.h4{height:27.840000pt;}
.hf{height:37.120000pt;}
.h3{height:38.400000pt;}
.h2{height:39.040000pt;}
.h1b{height:41.334667pt;}
.h22{height:41.760000pt;}
.h7{height:42.133333pt;}
.h30{height:42.240000pt;}
.h27{height:43.580651pt;}
.h25{height:43.602344pt;}
.h16{height:44.839415pt;}
.h19{height:44.861734pt;}
.h10{height:46.080000pt;}
.he{height:46.400000pt;}
.h8{height:46.848000pt;}
.h28{height:47.203594pt;}
.h2c{height:48.221275pt;}
.h2f{height:51.040000pt;}
.h13{height:51.270703pt;}
.h26{height:51.847677pt;}
.h17{height:52.785531pt;}
.hc{height:54.656000pt;}
.hd{height:55.680000pt;}
.h18{height:57.679672pt;}
.h6{height:62.812500pt;}
.ha{height:64.500000pt;}
.hb{height:64.960000pt;}
.h1c{height:66.750000pt;}
.h14{height:71.388036pt;}
.h2a{height:75.733333pt;}
.h2e{height:76.000000pt;}
.h12{height:171.974703pt;}
.h24{height:246.353810pt;}
.h23{height:251.288000pt;}
.h29{height:262.400000pt;}
.h2b{height:273.628000pt;}
.h2d{height:285.600000pt;}
.h11{height:401.050667pt;}
.h1a{height:414.133333pt;}
.h0{height:1122.400000pt;}
.h1{height:1122.666667pt;}
.wf{width:46.933333pt;}
.wa{width:47.201333pt;}
.we{width:52.533333pt;}
.w9{width:55.200000pt;}
.wb{width:56.800000pt;}
.wd{width:56.801333pt;}
.wc{width:57.066667pt;}
.w8{width:87.198667pt;}
.w6{width:104.578667pt;}
.w4{width:113.333333pt;}
.w3{width:113.600000pt;}
.w2{width:425.066667pt;}
.w10{width:611.722667pt;}
.w5{width:612.034667pt;}
.w11{width:617.869333pt;}
.w7{width:631.200000pt;}
.w0{width:793.866667pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x4{left:7.200000pt;}
.x31{left:8.533333pt;}
.x50{left:9.866667pt;}
.x39{left:11.200000pt;}
.x2f{left:12.533333pt;}
.x3b{left:15.733333pt;}
.x3d{left:18.400000pt;}
.x24{left:19.390133pt;}
.x3c{left:20.533333pt;}
.x28{left:30.933333pt;}
.x23{left:34.972267pt;}
.x4d{left:38.220000pt;}
.x22{left:40.948133pt;}
.x1d{left:44.422533pt;}
.x18{left:64.368800pt;}
.x3{left:70.933333pt;}
.x4e{left:74.705733pt;}
.x1{left:81.333333pt;}
.x40{left:82.871067pt;}
.x15{left:85.066667pt;}
.x11{left:87.466667pt;}
.x2c{left:91.461333pt;}
.x17{left:94.642667pt;}
.x9{left:96.005333pt;}
.x47{left:97.066667pt;}
.x26{left:100.482667pt;}
.x16{left:105.333333pt;}
.x8{left:109.333333pt;}
.x6{left:111.200000pt;}
.x14{left:128.533333pt;}
.xd{left:152.000000pt;}
.x53{left:153.866667pt;}
.x12{left:159.466667pt;}
.x2e{left:168.533333pt;}
.x13{left:185.349333pt;}
.x30{left:223.733333pt;}
.xe{left:234.400000pt;}
.xb{left:244.000000pt;}
.xc{left:247.472000pt;}
.x3f{left:265.066667pt;}
.x32{left:270.933333pt;}
.xa{left:276.530667pt;}
.x46{left:280.000000pt;}
.x29{left:294.133333pt;}
.x19{left:300.203333pt;}
.x45{left:307.442667pt;}
.x2d{left:312.533333pt;}
.x33{left:327.733333pt;}
.xf{left:332.533333pt;}
.x51{left:337.600000pt;}
.x52{left:361.600000pt;}
.x34{left:384.800000pt;}
.x2{left:396.800000pt;}
.x10{left:399.466667pt;}
.x1a{left:403.368667pt;}
.x2a{left:420.533333pt;}
.x48{left:432.266667pt;}
.x35{left:441.600000pt;}
.x4a{left:448.958000pt;}
.x41{left:452.976667pt;}
.x43{left:456.723067pt;}
.x1b{left:459.433467pt;}
.x49{left:460.712800pt;}
.x4c{left:472.948533pt;}
.x4b{left:477.446800pt;}
.x44{left:479.769067pt;}
.x20{left:480.927200pt;}
.x5{left:496.000000pt;}
.x36{left:498.400000pt;}
.x21{left:500.846933pt;}
.x42{left:505.848933pt;}
.x1e{left:513.512533pt;}
.x1f{left:533.432267pt;}
.x1c{left:549.310667pt;}
.x37{left:555.466667pt;}
.x3e{left:575.466667pt;}
.x25{left:577.410533pt;}
.x7{left:609.600000pt;}
.x38{left:612.266667pt;}
.x27{left:631.200000pt;}
.x4f{left:638.933333pt;}
.x2b{left:663.733333pt;}
.x3a{left:664.800000pt;}
}




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