
    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_175db9bb625a993cee775338.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.239000;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_dd5f1b0e4e643d7cf00cf20c.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.185000;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_175db9bb625a993cee775338.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.239000;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_3173e2bdc0c7664b0e7322e6.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.202000;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_b0e0331812d5e0c2ed11401c.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.203000;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_4492c797bc6442e444f34492.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.222000;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_8f4b19c189884857c0692c77.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.183000;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_d89fb12b156287a61726dc93.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.202000;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_b0e0331812d5e0c2ed11401c.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.203000;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_f6843110c0b0434ae30b7d4c.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.483000;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_d89fb12b156287a61726dc93.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.202000;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_b0e0331812d5e0c2ed11401c.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.203000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_d89fb12b156287a61726dc93.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.202000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_b0e0331812d5e0c2ed11401c.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.203000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_d35200586402b833cb17ae13.woff2')format("woff");}.fff{font-family:fff;line-height:1.483000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url('chunks/assets/font_800d4bc6c46b4d57c9417586.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11;src:url('chunks/assets/font_6aa6f886b6ed2b0508e166cf.woff2')format("woff");}.ff11{font-family:ff11;line-height:1.222000;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;}
.m3{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m1{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);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v3{vertical-align:-18.000000px;}
.v4{vertical-align:-15.000000px;}
.v9{vertical-align:-12.000000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:1.754517px;}
.v8{vertical-align:16.800110px;}
.v6{vertical-align:19.200806px;}
.v5{vertical-align:26.399780px;}
.v2{vertical-align:45.732422px;}
.v7{vertical-align:60.000000px;}
.ls2a{letter-spacing:-1.200000px;}
.ls5{letter-spacing:-1.050000px;}
.ls11{letter-spacing:-0.699720px;}
.ls1c{letter-spacing:-0.624000px;}
.ls7{letter-spacing:-0.540000px;}
.ls12{letter-spacing:-0.529200px;}
.ls24{letter-spacing:-0.504000px;}
.ls2c{letter-spacing:-0.462000px;}
.lsb{letter-spacing:-0.352800px;}
.ls27{letter-spacing:-0.210000px;}
.ls33{letter-spacing:-0.042000px;}
.ls4{letter-spacing:0.000000px;}
.ls31{letter-spacing:0.000003px;}
.ls8{letter-spacing:0.000005px;}
.ls26{letter-spacing:0.000007px;}
.ls9{letter-spacing:0.000009px;}
.ls1b{letter-spacing:0.000015px;}
.lsd{letter-spacing:0.000038px;}
.ls2e{letter-spacing:0.000067px;}
.lsc{letter-spacing:0.000097px;}
.lsa{letter-spacing:0.000100px;}
.ls22{letter-spacing:0.000115px;}
.ls29{letter-spacing:0.000146px;}
.ls30{letter-spacing:0.240000px;}
.ls2b{letter-spacing:0.294000px;}
.ls23{letter-spacing:0.378000px;}
.ls6{letter-spacing:0.420000px;}
.ls1d{letter-spacing:0.630000px;}
.ls14{letter-spacing:0.646800px;}
.ls13{letter-spacing:0.823200px;}
.ls10{letter-spacing:1.175392px;}
.lsf{letter-spacing:1.175499px;}
.ls1f{letter-spacing:1.175820px;}
.lse{letter-spacing:1.176000px;}
.ls15{letter-spacing:1.176004px;}
.ls2{letter-spacing:1.199436px;}
.ls3{letter-spacing:1.199987px;}
.ls1{letter-spacing:1.200000px;}
.ls0{letter-spacing:9.360000px;}
.ls1e{letter-spacing:13.488000px;}
.ls20{letter-spacing:15.174000px;}
.ls17{letter-spacing:47.990393px;}
.ls16{letter-spacing:80.699999px;}
.ls18{letter-spacing:155.021327px;}
.ls1a{letter-spacing:212.941697px;}
.ls19{letter-spacing:221.184088px;}
.ls25{letter-spacing:1412.956889px;}
.ls21{letter-spacing:1485.240611px;}
.ls2d{letter-spacing:1798.992022px;}
.ls28{letter-spacing:1815.658834px;}
.ls2f{letter-spacing:1841.170275px;}
.ls32{letter-spacing:1873.116045px;}
.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;}
}
.wsaa{word-spacing:-14.994000px;}
.wsac{word-spacing:-14.464800px;}
.ws8{word-spacing:-14.454000px;}
.ws14{word-spacing:-13.818000px;}
.wsa9{word-spacing:-13.288800px;}
.ws4{word-spacing:-12.483600px;}
.ws5{word-spacing:-12.420000px;}
.ws7{word-spacing:-11.880000px;}
.ws179{word-spacing:-11.426400px;}
.ws16a{word-spacing:-10.752000px;}
.ws127{word-spacing:-10.512000px;}
.wsab{word-spacing:-10.495800px;}
.wsa{word-spacing:-10.117800px;}
.wsde{word-spacing:-9.936000px;}
.ws2{word-spacing:-9.855000px;}
.wsdb{word-spacing:-9.720000px;}
.ws14f{word-spacing:-9.672600px;}
.ws19c{word-spacing:-9.315000px;}
.wsa8{word-spacing:-8.972880px;}
.ws167{word-spacing:-8.784000px;}
.wsf9{word-spacing:-8.640000px;}
.ws12{word-spacing:-8.148000px;}
.ws6{word-spacing:-7.980000px;}
.wse1{word-spacing:-7.644000px;}
.ws3{word-spacing:-6.898500px;}
.wsbb{word-spacing:-6.468000px;}
.wse2{word-spacing:-6.232800px;}
.ws128{word-spacing:-6.048000px;}
.ws13{word-spacing:-5.640000px;}
.wsf3{word-spacing:-5.076000px;}
.ws139{word-spacing:-3.654000px;}
.ws178{word-spacing:-3.612000px;}
.ws14e{word-spacing:-3.444000px;}
.ws166{word-spacing:-3.192000px;}
.ws13b{word-spacing:-3.150000px;}
.ws14c{word-spacing:-1.680000px;}
.wsf7{word-spacing:-1.596000px;}
.ws4e{word-spacing:-1.293600px;}
.wsa3{word-spacing:-1.234800px;}
.wse7{word-spacing:-1.176000px;}
.ws118{word-spacing:-1.117200px;}
.ws163{word-spacing:-1.058400px;}
.wsef{word-spacing:-0.999600px;}
.ws13e{word-spacing:-0.882000px;}
.wsc4{word-spacing:-0.764400px;}
.ws106{word-spacing:-0.705600px;}
.wsc2{word-spacing:-0.646800px;}
.wse3{word-spacing:-0.588000px;}
.ws14b{word-spacing:-0.576000px;}
.ws22{word-spacing:-0.529200px;}
.ws16c{word-spacing:-0.528000px;}
.ws41{word-spacing:-0.470400px;}
.ws47{word-spacing:-0.411600px;}
.ws13a{word-spacing:-0.378000px;}
.ws48{word-spacing:-0.352800px;}
.ws138{word-spacing:-0.336000px;}
.ws114{word-spacing:-0.294000px;}
.ws5f{word-spacing:-0.235200px;}
.ws7e{word-spacing:-0.176400px;}
.ws14a{word-spacing:-0.144000px;}
.ws95{word-spacing:-0.117600px;}
.ws1a0{word-spacing:-0.090000px;}
.ws151{word-spacing:-0.058800px;}
.ws1a1{word-spacing:-0.045000px;}
.wsb{word-spacing:0.000000px;}
.ws19b{word-spacing:0.058800px;}
.ws10{word-spacing:0.084000px;}
.ws16e{word-spacing:0.117600px;}
.ws105{word-spacing:0.176400px;}
.ws155{word-spacing:0.235200px;}
.wsc9{word-spacing:0.294000px;}
.wsf5{word-spacing:0.336000px;}
.ws69{word-spacing:0.352800px;}
.wsa2{word-spacing:0.411600px;}
.ws136{word-spacing:0.470400px;}
.ws62{word-spacing:0.529200px;}
.wsf4{word-spacing:0.588000px;}
.ws101{word-spacing:0.646800px;}
.ws49{word-spacing:0.705600px;}
.ws2c{word-spacing:0.764400px;}
.ws79{word-spacing:0.823200px;}
.ws11{word-spacing:0.882000px;}
.ws192{word-spacing:0.940800px;}
.wsf6{word-spacing:0.966000px;}
.ws75{word-spacing:0.999600px;}
.wsd{word-spacing:1.050000px;}
.wscf{word-spacing:1.058400px;}
.ws7a{word-spacing:1.117200px;}
.wsc{word-spacing:1.134000px;}
.ws164{word-spacing:1.176000px;}
.ws165{word-spacing:1.200000px;}
.ws4d{word-spacing:1.234800px;}
.ws116{word-spacing:1.293600px;}
.wse{word-spacing:1.302000px;}
.ws198{word-spacing:1.352400px;}
.ws96{word-spacing:1.411200px;}
.wsf{word-spacing:1.470000px;}
.ws177{word-spacing:1.512000px;}
.ws30{word-spacing:1.528800px;}
.ws18d{word-spacing:1.587600px;}
.wsf8{word-spacing:1.596000px;}
.wsc6{word-spacing:1.646400px;}
.ws56{word-spacing:1.705200px;}
.ws10b{word-spacing:1.764000px;}
.ws10f{word-spacing:1.822800px;}
.ws9e{word-spacing:1.881600px;}
.wsba{word-spacing:1.940400px;}
.ws82{word-spacing:1.999200px;}
.wse4{word-spacing:2.058000px;}
.wsa1{word-spacing:2.116800px;}
.wsbd{word-spacing:2.175600px;}
.ws18c{word-spacing:2.234400px;}
.ws2a{word-spacing:2.293200px;}
.ws43{word-spacing:2.352000px;}
.ws5c{word-spacing:2.410800px;}
.ws14d{word-spacing:2.436000px;}
.ws4b{word-spacing:2.469600px;}
.ws67{word-spacing:2.528400px;}
.ws59{word-spacing:2.587200px;}
.ws16{word-spacing:2.640000px;}
.ws9d{word-spacing:2.646000px;}
.ws5b{word-spacing:2.704800px;}
.wscc{word-spacing:2.763600px;}
.wsd0{word-spacing:2.822400px;}
.ws66{word-spacing:2.881200px;}
.ws19d{word-spacing:2.940000px;}
.ws199{word-spacing:2.998800px;}
.ws24{word-spacing:3.057600px;}
.ws15{word-spacing:3.072000px;}
.ws97{word-spacing:3.116400px;}
.ws3c{word-spacing:3.175200px;}
.ws64{word-spacing:3.234000px;}
.ws1d{word-spacing:3.292800px;}
.ws1b{word-spacing:3.351600px;}
.wsa5{word-spacing:3.410400px;}
.ws122{word-spacing:3.469200px;}
.ws104{word-spacing:3.528000px;}
.ws28{word-spacing:3.586800px;}
.ws8e{word-spacing:3.645600px;}
.ws57{word-spacing:3.763200px;}
.ws2b{word-spacing:3.822000px;}
.ws149{word-spacing:3.880800px;}
.ws6d{word-spacing:3.939600px;}
.ws170{word-spacing:3.998400px;}
.wsb9{word-spacing:4.057200px;}
.ws4c{word-spacing:4.116000px;}
.ws12b{word-spacing:4.174800px;}
.ws134{word-spacing:4.233600px;}
.ws72{word-spacing:4.292400px;}
.ws39{word-spacing:4.351200px;}
.ws9c{word-spacing:4.410000px;}
.ws55{word-spacing:4.468800px;}
.ws81{word-spacing:4.527600px;}
.ws44{word-spacing:4.586400px;}
.wse5{word-spacing:4.645200px;}
.ws115{word-spacing:4.704000px;}
.wsbc{word-spacing:4.762800px;}
.ws17e{word-spacing:4.821600px;}
.ws3d{word-spacing:4.939200px;}
.ws5d{word-spacing:5.056800px;}
.ws83{word-spacing:5.115600px;}
.ws27{word-spacing:5.174400px;}
.ws46{word-spacing:5.233200px;}
.wsd4{word-spacing:5.292000px;}
.wsc3{word-spacing:5.350800px;}
.ws91{word-spacing:5.468400px;}
.ws3b{word-spacing:5.527200px;}
.wsa7{word-spacing:5.586000px;}
.ws174{word-spacing:5.644800px;}
.ws146{word-spacing:5.703600px;}
.ws147{word-spacing:5.762400px;}
.ws186{word-spacing:5.821200px;}
.ws5a{word-spacing:5.880000px;}
.ws12e{word-spacing:5.938800px;}
.ws65{word-spacing:5.997600px;}
.wsc5{word-spacing:6.056400px;}
.wsee{word-spacing:6.115200px;}
.ws11f{word-spacing:6.174000px;}
.wsfa{word-spacing:6.232800px;}
.wsb6{word-spacing:6.291600px;}
.ws121{word-spacing:6.350400px;}
.ws1c{word-spacing:6.409200px;}
.ws17d{word-spacing:6.468000px;}
.ws70{word-spacing:6.526800px;}
.ws99{word-spacing:6.585600px;}
.wsce{word-spacing:6.644400px;}
.ws76{word-spacing:6.703200px;}
.ws20{word-spacing:6.762000px;}
.ws1f{word-spacing:6.820800px;}
.wsf1{word-spacing:6.879600px;}
.ws84{word-spacing:6.938400px;}
.ws32{word-spacing:6.997200px;}
.ws94{word-spacing:7.056000px;}
.wsfb{word-spacing:7.114800px;}
.ws4a{word-spacing:7.173600px;}
.ws6c{word-spacing:7.232400px;}
.ws125{word-spacing:7.291200px;}
.wsf0{word-spacing:7.350000px;}
.ws71{word-spacing:7.408800px;}
.ws190{word-spacing:7.467600px;}
.ws3a{word-spacing:7.526400px;}
.ws100{word-spacing:7.585200px;}
.ws15f{word-spacing:7.644000px;}
.wsad{word-spacing:7.702800px;}
.ws87{word-spacing:7.820400px;}
.wsd7{word-spacing:7.879200px;}
.wsd1{word-spacing:7.938000px;}
.ws63{word-spacing:7.996800px;}
.ws102{word-spacing:8.055600px;}
.ws195{word-spacing:8.114400px;}
.ws90{word-spacing:8.173200px;}
.ws38{word-spacing:8.232000px;}
.ws2f{word-spacing:8.290800px;}
.ws17b{word-spacing:8.349600px;}
.ws13c{word-spacing:8.408400px;}
.ws7c{word-spacing:8.467200px;}
.wsa4{word-spacing:8.526000px;}
.wsff{word-spacing:8.584800px;}
.ws8f{word-spacing:8.643600px;}
.ws60{word-spacing:8.702400px;}
.ws92{word-spacing:8.761200px;}
.ws93{word-spacing:8.820000px;}
.ws37{word-spacing:8.878800px;}
.ws188{word-spacing:8.937600px;}
.ws1a{word-spacing:8.996400px;}
.ws88{word-spacing:9.055200px;}
.wsb3{word-spacing:9.114000px;}
.ws6b{word-spacing:9.172800px;}
.ws35{word-spacing:9.231600px;}
.wsbf{word-spacing:9.290400px;}
.wscb{word-spacing:9.349200px;}
.ws86{word-spacing:9.408000px;}
.ws109{word-spacing:9.466800px;}
.ws10a{word-spacing:9.584400px;}
.ws184{word-spacing:9.643200px;}
.wsa0{word-spacing:9.702000px;}
.ws12d{word-spacing:9.760800px;}
.ws158{word-spacing:9.819600px;}
.ws162{word-spacing:9.878400px;}
.wsc7{word-spacing:9.937200px;}
.ws13d{word-spacing:9.996000px;}
.ws131{word-spacing:10.054800px;}
.ws34{word-spacing:10.113600px;}
.ws7f{word-spacing:10.172400px;}
.wsb7{word-spacing:10.231200px;}
.ws8a{word-spacing:10.290000px;}
.ws15d{word-spacing:10.348800px;}
.wsc1{word-spacing:10.407600px;}
.ws52{word-spacing:10.466400px;}
.wsb1{word-spacing:10.525200px;}
.ws26{word-spacing:10.584000px;}
.ws9a{word-spacing:10.642800px;}
.ws173{word-spacing:10.701600px;}
.wsed{word-spacing:10.760400px;}
.ws112{word-spacing:10.819200px;}
.wsfe{word-spacing:10.878000px;}
.ws160{word-spacing:10.936800px;}
.wsc0{word-spacing:10.995600px;}
.ws8d{word-spacing:11.054400px;}
.ws181{word-spacing:11.113200px;}
.ws103{word-spacing:11.172000px;}
.ws25{word-spacing:11.230800px;}
.ws19f{word-spacing:11.289600px;}
.ws36{word-spacing:11.348400px;}
.ws13f{word-spacing:11.407200px;}
.ws117{word-spacing:11.466000px;}
.ws73{word-spacing:11.524800px;}
.ws54{word-spacing:11.583600px;}
.ws17a{word-spacing:11.642400px;}
.ws31{word-spacing:11.701200px;}
.ws40{word-spacing:11.760000px;}
.ws185{word-spacing:11.877600px;}
.wsa6{word-spacing:11.936400px;}
.ws58{word-spacing:11.995200px;}
.ws18e{word-spacing:12.054000px;}
.ws21{word-spacing:12.112800px;}
.ws50{word-spacing:12.230400px;}
.ws33{word-spacing:12.289200px;}
.ws126{word-spacing:12.406800px;}
.ws16f{word-spacing:12.524400px;}
.ws19a{word-spacing:12.583200px;}
.ws12c{word-spacing:12.700800px;}
.ws17{word-spacing:12.759600px;}
.ws1e{word-spacing:12.818400px;}
.ws189{word-spacing:12.877200px;}
.wsc8{word-spacing:12.936000px;}
.ws85{word-spacing:12.994800px;}
.ws8c{word-spacing:13.053600px;}
.wsd5{word-spacing:13.112400px;}
.ws12f{word-spacing:13.171200px;}
.ws157{word-spacing:13.230000px;}
.wsfd{word-spacing:13.288800px;}
.ws80{word-spacing:13.347600px;}
.wsb5{word-spacing:13.406400px;}
.ws145{word-spacing:13.524000px;}
.ws10e{word-spacing:13.641600px;}
.ws68{word-spacing:13.700400px;}
.ws142{word-spacing:13.759200px;}
.ws113{word-spacing:13.818000px;}
.ws119{word-spacing:13.876800px;}
.ws140{word-spacing:13.935600px;}
.ws45{word-spacing:13.994400px;}
.wse8{word-spacing:14.053200px;}
.ws182{word-spacing:14.112000px;}
.ws53{word-spacing:14.170800px;}
.ws4f{word-spacing:14.229600px;}
.ws11b{word-spacing:14.288400px;}
.ws15a{word-spacing:14.347200px;}
.ws15c{word-spacing:14.406000px;}
.ws29{word-spacing:14.464800px;}
.ws3f{word-spacing:14.523600px;}
.ws161{word-spacing:14.582400px;}
.ws11a{word-spacing:14.641200px;}
.ws8b{word-spacing:14.700000px;}
.wsea{word-spacing:14.758800px;}
.ws108{word-spacing:14.817600px;}
.ws42{word-spacing:14.876400px;}
.ws18b{word-spacing:14.935200px;}
.ws9b{word-spacing:14.994000px;}
.ws7d{word-spacing:15.052800px;}
.ws51{word-spacing:15.111600px;}
.ws61{word-spacing:15.170400px;}
.wsb4{word-spacing:15.229200px;}
.ws141{word-spacing:15.288000px;}
.ws18{word-spacing:15.405600px;}
.wsca{word-spacing:15.464400px;}
.ws159{word-spacing:15.582000px;}
.ws148{word-spacing:15.699600px;}
.ws10c{word-spacing:15.817200px;}
.ws23{word-spacing:15.876000px;}
.ws133{word-spacing:15.934800px;}
.ws9f{word-spacing:16.111200px;}
.wsae{word-spacing:16.170000px;}
.ws3e{word-spacing:16.228800px;}
.wsf2{word-spacing:16.287600px;}
.ws5e{word-spacing:16.346400px;}
.ws124{word-spacing:16.405200px;}
.ws18f{word-spacing:16.464000px;}
.wsb2{word-spacing:16.522800px;}
.ws187{word-spacing:16.640400px;}
.wsd2{word-spacing:16.699200px;}
.ws77{word-spacing:16.934400px;}
.ws172{word-spacing:17.052000px;}
.ws194{word-spacing:17.110800px;}
.wse6{word-spacing:17.169600px;}
.ws132{word-spacing:17.287200px;}
.ws143{word-spacing:17.346000px;}
.ws6e{word-spacing:17.404800px;}
.ws137{word-spacing:17.463600px;}
.ws197{word-spacing:17.581200px;}
.ws17f{word-spacing:17.640000px;}
.wsd3{word-spacing:17.698800px;}
.wsd6{word-spacing:17.757600px;}
.ws154{word-spacing:17.875200px;}
.ws153{word-spacing:17.934000px;}
.wsaf{word-spacing:18.051600px;}
.ws2d{word-spacing:18.110400px;}
.ws144{word-spacing:18.286800px;}
.ws17c{word-spacing:18.345600px;}
.ws16b{word-spacing:18.580800px;}
.ws123{word-spacing:18.639600px;}
.wsbe{word-spacing:18.816000px;}
.wscd{word-spacing:18.874800px;}
.wse9{word-spacing:18.992400px;}
.ws15b{word-spacing:19.051200px;}
.ws6a{word-spacing:19.227600px;}
.ws120{word-spacing:19.286400px;}
.ws130{word-spacing:19.345200px;}
.ws150{word-spacing:19.580400px;}
.ws19{word-spacing:19.639200px;}
.ws156{word-spacing:19.815600px;}
.wsfc{word-spacing:19.933200px;}
.ws98{word-spacing:20.168400px;}
.ws7b{word-spacing:20.227200px;}
.ws16d{word-spacing:20.462400px;}
.ws193{word-spacing:20.756400px;}
.wsb8{word-spacing:20.815200px;}
.ws18a{word-spacing:20.932800px;}
.ws74{word-spacing:21.109200px;}
.ws176{word-spacing:21.226800px;}
.wsda{word-spacing:21.520800px;}
.ws107{word-spacing:21.873600px;}
.ws15e{word-spacing:22.108800px;}
.ws171{word-spacing:22.344000px;}
.ws183{word-spacing:22.638000px;}
.ws11d{word-spacing:22.932000px;}
.ws6f{word-spacing:23.049600px;}
.ws111{word-spacing:23.108400px;}
.ws11e{word-spacing:23.226000px;}
.ws89{word-spacing:23.284800px;}
.ws152{word-spacing:23.343600px;}
.wsb0{word-spacing:23.402400px;}
.wseb{word-spacing:23.755200px;}
.ws175{word-spacing:24.872400px;}
.wsec{word-spacing:24.931200px;}
.ws12a{word-spacing:24.990000px;}
.ws196{word-spacing:25.401600px;}
.wsd9{word-spacing:25.695600px;}
.wsdc{word-spacing:26.668217px;}
.ws2e{word-spacing:27.165600px;}
.ws78{word-spacing:28.518000px;}
.ws191{word-spacing:30.458400px;}
.ws19e{word-spacing:30.634800px;}
.ws110{word-spacing:30.987600px;}
.ws10d{word-spacing:31.810800px;}
.ws180{word-spacing:33.457200px;}
.ws11c{word-spacing:33.516000px;}
.ws135{word-spacing:33.986400px;}
.wsd8{word-spacing:36.397200px;}
.ws9{word-spacing:45.687354px;}
.wsdd{word-spacing:60.243559px;}
.ws129{word-spacing:101.640587px;}
.ws169{word-spacing:138.847175px;}
.wse0{word-spacing:216.067190px;}
.wsdf{word-spacing:222.307190px;}
.ws168{word-spacing:242.102381px;}
.ws1{word-spacing:1551.202790px;}
.ws0{word-spacing:1945.846745px;}
._9{margin-left:-2890.932630px;}
._47{margin-left:-40.456088px;}
._16{margin-left:-39.271291px;}
._13{margin-left:-37.220400px;}
._15{margin-left:-32.768462px;}
._17{margin-left:-29.169691px;}
._4e{margin-left:-26.690987px;}
._4c{margin-left:-24.613823px;}
._50{margin-left:-21.833402px;}
._51{margin-left:-20.728122px;}
._4a{margin-left:-19.618212px;}
._4f{margin-left:-18.185995px;}
._42{margin-left:-16.753705px;}
._43{margin-left:-15.705125px;}
._11{margin-left:-14.641200px;}
._40{margin-left:-12.156960px;}
._44{margin-left:-10.893871px;}
._3f{margin-left:-9.057360px;}
._14{margin-left:-7.232400px;}
._4{margin-left:-5.520000px;}
._41{margin-left:-4.401591px;}
._2{margin-left:-3.338400px;}
._0{margin-left:-1.716000px;}
._1{width:1.138800px;}
._6{width:2.425200px;}
._8{width:3.861600px;}
._a{width:5.264520px;}
._e{width:6.856289px;}
._b{width:8.337016px;}
._f{width:9.934290px;}
._d{width:11.383808px;}
._c{width:12.622156px;}
._5{width:14.515181px;}
._3{width:16.351798px;}
._7{width:17.821171px;}
._4b{width:20.363421px;}
._12{width:21.579600px;}
._46{width:22.841346px;}
._45{width:24.102604px;}
._53{width:26.115374px;}
._56{width:33.120000px;}
._1e{width:35.946024px;}
._25{width:37.384173px;}
._10{width:44.158800px;}
._18{width:46.844999px;}
._2c{width:49.622973px;}
._39{width:52.310973px;}
._55{width:55.080000px;}
._3e{width:58.483190px;}
._22{width:60.412217px;}
._27{width:64.170024px;}
._54{width:71.278769px;}
._2e{width:77.300906px;}
._1c{width:82.906201px;}
._35{width:88.262973px;}
._2a{width:91.286973px;}
._1a{width:96.268217px;}
._21{width:98.150973px;}
._2b{width:101.702973px;}
._1b{width:104.259559px;}
._36{width:105.272906px;}
._26{width:107.222973px;}
._23{width:110.794201px;}
._31{width:116.294973px;}
._2f{width:118.454973px;}
._3b{width:121.910973px;}
._38{width:124.070973px;}
._3a{width:126.998973px;}
._52{width:133.838990px;}
._19{width:137.366973px;}
._48{width:145.555787px;}
._29{width:147.734973px;}
._32{width:150.662973px;}
._28{width:156.129035px;}
._34{width:160.838973px;}
._2d{width:163.338024px;}
._37{width:165.494973px;}
._33{width:167.174973px;}
._24{width:185.745035px;}
._49{width:191.890767px;}
._3c{width:199.747190px;}
._30{width:210.417035px;}
._1f{width:229.329035px;}
._1d{width:246.229816px;}
._4d{width:255.302383px;}
._20{width:256.484906px;}
._3d{width:337.165760px;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs10{font-size:29.400000px;}
.fs5{font-size:31.500000px;}
.fsf{font-size:33.600000px;}
.fsd{font-size:41.160000px;}
.fs1{font-size:42.000000px;}
.fs4{font-size:45.000000px;}
.fsa{font-size:46.199999px;}
.fs2{font-size:48.000000px;}
.fse{font-size:54.000000px;}
.fsc{font-size:55.199999px;}
.fsb{font-size:58.800000px;}
.fs7{font-size:60.000000px;}
.fs6{font-size:61.800000px;}
.fs9{font-size:66.000000px;}
.fs11{font-size:72.000000px;}
.fs3{font-size:74.580000px;}
.fs0{font-size:78.000000px;}
.fs8{font-size:144.000000px;}
.y0{bottom:0.000000px;}
.y9f{bottom:90.000000px;}
.ya0{bottom:90.000149px;}
.y6a{bottom:92.551203px;}
.y5c{bottom:92.551352px;}
.y15e{bottom:97.105797px;}
.y199{bottom:97.613697px;}
.y123{bottom:101.267704px;}
.yc2{bottom:109.252052px;}
.y69{bottom:110.551197px;}
.y5b{bottom:110.551346px;}
.y15d{bottom:110.605797px;}
.y198{bottom:111.113697px;}
.y7{bottom:112.869152px;}
.y122{bottom:114.767704px;}
.yc1{bottom:122.002052px;}
.y15c{bottom:124.105797px;}
.y197{bottom:124.613697px;}
.y6{bottom:124.869152px;}
.y121{bottom:128.267704px;}
.y68{bottom:128.551197px;}
.y5a{bottom:128.551346px;}
.y5{bottom:136.869152px;}
.y15b{bottom:137.605797px;}
.y196{bottom:138.113697px;}
.yc0{bottom:138.380997px;}
.y67{bottom:146.551197px;}
.y59{bottom:146.551346px;}
.y4{bottom:148.869152px;}
.y15a{bottom:151.105797px;}
.y195{bottom:151.613697px;}
.ybf{bottom:153.380997px;}
.y120{bottom:155.267704px;}
.y3{bottom:160.869152px;}
.y66{bottom:164.551197px;}
.y58{bottom:164.551346px;}
.y159{bottom:164.605797px;}
.y194{bottom:165.113697px;}
.ybe{bottom:168.380997px;}
.y11f{bottom:168.767704px;}
.y2{bottom:172.869152px;}
.y158{bottom:178.105797px;}
.y193{bottom:178.613697px;}
.y11e{bottom:182.267704px;}
.y65{bottom:182.551197px;}
.y57{bottom:182.551346px;}
.ybd{bottom:183.380997px;}
.y157{bottom:191.605797px;}
.y192{bottom:192.113708px;}
.y11d{bottom:195.767693px;}
.ybc{bottom:198.380997px;}
.y64{bottom:200.551208px;}
.y56{bottom:200.551346px;}
.y156{bottom:205.105797px;}
.y191{bottom:205.613708px;}
.yd3{bottom:209.176208px;}
.y11c{bottom:209.267693px;}
.ye{bottom:213.424805px;}
.ybb{bottom:215.884804px;}
.ya3{bottom:216.151039px;}
.y63{bottom:218.551208px;}
.y55{bottom:218.551346px;}
.y155{bottom:218.605797px;}
.y190{bottom:219.113708px;}
.yd2{bottom:227.176208px;}
.yba{bottom:230.884804px;}
.ya2{bottom:231.151039px;}
.yd{bottom:231.424805px;}
.y154{bottom:232.105797px;}
.y18f{bottom:232.613708px;}
.y62{bottom:236.551208px;}
.y54{bottom:236.551346px;}
.yc{bottom:240.424805px;}
.yd1{bottom:245.176208px;}
.y153{bottom:245.605797px;}
.yb9{bottom:245.884804px;}
.y18e{bottom:246.113708px;}
.y11b{bottom:249.023552px;}
.yb{bottom:253.924805px;}
.y61{bottom:254.551208px;}
.y53{bottom:254.551346px;}
.y152{bottom:259.105797px;}
.y18d{bottom:259.613708px;}
.yb8{bottom:260.884804px;}
.yd0{bottom:263.176208px;}
.ya{bottom:267.424805px;}
.y11a{bottom:271.027657px;}
.y60{bottom:272.551208px;}
.y52{bottom:272.551346px;}
.y151{bottom:272.605797px;}
.y18c{bottom:273.113708px;}
.yb7{bottom:275.884804px;}
.ycf{bottom:281.176208px;}
.y150{bottom:286.105797px;}
.y18b{bottom:286.613708px;}
.ya5{bottom:286.711189px;}
.y5f{bottom:290.551208px;}
.y51{bottom:290.551346px;}
.yb6{bottom:290.884804px;}
.y119{bottom:293.031600px;}
.yce{bottom:299.176208px;}
.y14f{bottom:299.605797px;}
.y18a{bottom:300.113708px;}
.ya4{bottom:301.711189px;}
.yb5{bottom:305.884804px;}
.y111{bottom:307.418106px;}
.y50{bottom:308.551208px;}
.y14e{bottom:313.105797px;}
.y189{bottom:313.613708px;}
.y118{bottom:315.035545px;}
.y110{bottom:320.168106px;}
.yb4{bottom:323.388748px;}
.y4f{bottom:326.551208px;}
.y14d{bottom:326.605797px;}
.y188{bottom:327.113708px;}
.y10f{bottom:336.547050px;}
.y117{bottom:337.039352px;}
.yb3{bottom:338.388748px;}
.y14c{bottom:340.105797px;}
.y187{bottom:340.613708px;}
.y4e{bottom:344.551208px;}
.y10e{bottom:351.547050px;}
.yb2{bottom:353.388748px;}
.y14b{bottom:353.605797px;}
.y186{bottom:354.113708px;}
.y116{bottom:359.043297px;}
.y4d{bottom:362.551208px;}
.y10d{bottom:366.547050px;}
.y14a{bottom:367.105797px;}
.y185{bottom:367.613708px;}
.yb1{bottom:368.388748px;}
.y4c{bottom:380.551208px;}
.y149{bottom:380.605797px;}
.y184{bottom:381.113708px;}
.y10c{bottom:381.547050px;}
.yb0{bottom:383.388748px;}
.y115{bottom:389.551208px;}
.y148{bottom:394.105820px;}
.y183{bottom:394.613708px;}
.y10b{bottom:396.547028px;}
.y4b{bottom:398.551208px;}
.yaf{bottom:400.892715px;}
.y114{bottom:403.051208px;}
.y147{bottom:407.605820px;}
.y182{bottom:408.113708px;}
.y10a{bottom:411.547028px;}
.y4a{bottom:416.551208px;}
.yae{bottom:418.509155px;}
.y20{bottom:420.353989px;}
.y146{bottom:421.105820px;}
.y181{bottom:421.613708px;}
.ycd{bottom:425.176208px;}
.y9e{bottom:425.562744px;}
.y109{bottom:426.547028px;}
.y49{bottom:434.551208px;}
.y145{bottom:434.605820px;}
.y180{bottom:435.113708px;}
.y9d{bottom:438.312744px;}
.y1f{bottom:438.353989px;}
.yad{bottom:440.265015px;}
.ycc{bottom:443.176208px;}
.y108{bottom:444.050995px;}
.y144{bottom:448.105820px;}
.y17f{bottom:448.613708px;}
.y9c{bottom:451.062744px;}
.y48{bottom:452.551208px;}
.y107{bottom:459.050995px;}
.y1e{bottom:460.853989px;}
.ycb{bottom:461.176208px;}
.y143{bottom:461.605820px;}
.y17e{bottom:462.113708px;}
.y9b{bottom:463.812744px;}
.y47{bottom:470.551208px;}
.y106{bottom:474.050995px;}
.y142{bottom:475.105820px;}
.y17d{bottom:475.613708px;}
.y9a{bottom:476.562744px;}
.y1d{bottom:478.853989px;}
.yca{bottom:479.176208px;}
.y46{bottom:488.551208px;}
.y141{bottom:488.605820px;}
.y105{bottom:489.050995px;}
.y17c{bottom:489.113708px;}
.y99{bottom:489.312744px;}
.y1c{bottom:496.853989px;}
.yc9{bottom:497.176208px;}
.y140{bottom:502.105820px;}
.y17b{bottom:502.613708px;}
.y98{bottom:505.691711px;}
.y45{bottom:506.551208px;}
.y104{bottom:506.554962px;}
.y1b{bottom:514.853989px;}
.y17a{bottom:516.113708px;}
.y103{bottom:521.554962px;}
.y97{bottom:523.195633px;}
.y44{bottom:524.551208px;}
.y179{bottom:529.613708px;}
.yc8{bottom:533.176208px;}
.y102{bottom:536.554962px;}
.y1a{bottom:537.353989px;}
.y96{bottom:540.699600px;}
.y43{bottom:542.551208px;}
.y178{bottom:543.113708px;}
.yc7{bottom:551.176208px;}
.y101{bottom:551.554962px;}
.y19{bottom:555.353989px;}
.y177{bottom:556.613708px;}
.y95{bottom:558.203568px;}
.y42{bottom:560.551208px;}
.y100{bottom:566.554962px;}
.yc6{bottom:569.176208px;}
.y176{bottom:570.113708px;}
.y13f{bottom:571.105820px;}
.y18{bottom:573.353989px;}
.y94{bottom:575.707352px;}
.y41{bottom:578.551208px;}
.yff{bottom:581.554962px;}
.y175{bottom:583.613708px;}
.yc5{bottom:587.176208px;}
.y17{bottom:591.353989px;}
.y93{bottom:593.211319px;}
.y40{bottom:596.551208px;}
.y174{bottom:597.113708px;}
.yfe{bottom:599.058884px;}
.y13e{bottom:601.613708px;}
.yc4{bottom:605.176208px;}
.y19b{bottom:605.551208px;}
.y16{bottom:609.353989px;}
.y173{bottom:610.613708px;}
.y92{bottom:610.715240px;}
.yfd{bottom:614.058884px;}
.y3f{bottom:614.551208px;}
.y13d{bottom:615.113708px;}
.y19a{bottom:619.051208px;}
.y78{bottom:619.576218px;}
.yc3{bottom:623.176208px;}
.y172{bottom:624.113708px;}
.y91{bottom:628.219208px;}
.yfc{bottom:629.058884px;}
.y15{bottom:631.853989px;}
.y3e{bottom:632.551208px;}
.y77{bottom:637.576218px;}
.y171{bottom:637.613708px;}
.y13c{bottom:642.113708px;}
.yfb{bottom:644.058884px;}
.y90{bottom:645.723129px;}
.y14{bottom:649.853989px;}
.y3d{bottom:650.551208px;}
.y170{bottom:651.113708px;}
.y76{bottom:655.576218px;}
.y13b{bottom:655.613708px;}
.yfa{bottom:661.675369px;}
.y8f{bottom:663.227097px;}
.y16f{bottom:664.613708px;}
.y3c{bottom:668.551208px;}
.y13{bottom:672.353989px;}
.y75{bottom:673.576218px;}
.y16e{bottom:678.113708px;}
.y8e{bottom:680.731064px;}
.y13a{bottom:682.613708px;}
.yf9{bottom:683.431183px;}
.y3b{bottom:686.551208px;}
.y12{bottom:690.353989px;}
.y74{bottom:691.576218px;}
.y16d{bottom:691.613708px;}
.y139{bottom:696.113708px;}
.y8d{bottom:698.234985px;}
.ye7{bottom:704.161194px;}
.y3a{bottom:704.551208px;}
.y16c{bottom:705.113708px;}
.y11{bottom:708.353989px;}
.y73{bottom:709.576218px;}
.y8c{bottom:715.738953px;}
.ye6{bottom:716.911194px;}
.y16b{bottom:718.613708px;}
.y39{bottom:722.551208px;}
.y138{bottom:723.113708px;}
.y10{bottom:726.353989px;}
.y72{bottom:727.576218px;}
.y16a{bottom:732.113708px;}
.y8b{bottom:733.242920px;}
.ye5{bottom:733.289978px;}
.y137{bottom:736.613708px;}
.yf8{bottom:736.664978px;}
.y38{bottom:740.551208px;}
.y71{bottom:745.576218px;}
.y169{bottom:745.613708px;}
.ye4{bottom:748.289978px;}
.yf{bottom:748.853989px;}
.yf7{bottom:749.414978px;}
.y136{bottom:750.113708px;}
.y8a{bottom:750.746841px;}
.y37{bottom:758.551208px;}
.y168{bottom:759.113708px;}
.ye3{bottom:763.289978px;}
.y135{bottom:763.613708px;}
.yf6{bottom:765.794083px;}
.yf2{bottom:766.664978px;}
.y89{bottom:768.250671px;}
.y167{bottom:772.613708px;}
.y36{bottom:776.551208px;}
.y134{bottom:777.113708px;}
.ye2{bottom:778.289978px;}
.yf1{bottom:779.414978px;}
.yf5{bottom:780.794128px;}
.y113{bottom:781.664978px;}
.y70{bottom:785.176208px;}
.y88{bottom:785.754639px;}
.y166{bottom:786.113708px;}
.y133{bottom:790.613708px;}
.ye1{bottom:793.289978px;}
.y112{bottom:794.414978px;}
.y35{bottom:794.551208px;}
.yf0{bottom:795.794128px;}
.y165{bottom:799.613708px;}
.y6f{bottom:803.176208px;}
.y87{bottom:803.258514px;}
.y132{bottom:804.113708px;}
.y25{bottom:807.316681px;}
.ye0{bottom:808.289978px;}
.yef{bottom:810.794128px;}
.y34{bottom:812.551208px;}
.y164{bottom:813.113708px;}
.y86{bottom:820.762482px;}
.y6e{bottom:821.176208px;}
.ydf{bottom:825.794128px;}
.y163{bottom:826.613708px;}
.y33{bottom:830.551208px;}
.y131{bottom:831.113708px;}
.y85{bottom:838.266449px;}
.y6d{bottom:839.176208px;}
.y162{bottom:840.113708px;}
.yde{bottom:840.794128px;}
.yf4{bottom:843.297913px;}
.y32{bottom:848.551208px;}
.y161{bottom:853.613708px;}
.y84{bottom:855.770416px;}
.ydd{bottom:855.794128px;}
.y6c{bottom:857.176208px;}
.yee{bottom:858.297913px;}
.y24{bottom:858.316681px;}
.y31{bottom:866.551208px;}
.y130{bottom:867.113708px;}
.ydc{bottom:870.794128px;}
.y83{bottom:873.274384px;}
.yed{bottom:873.297913px;}
.y6b{bottom:875.176208px;}
.y12f{bottom:880.613708px;}
.y30{bottom:884.551208px;}
.ydb{bottom:885.794128px;}
.yec{bottom:888.297913px;}
.y82{bottom:890.778259px;}
.yac{bottom:893.176208px;}
.y12e{bottom:894.113708px;}
.y23{bottom:897.316681px;}
.y2f{bottom:902.551208px;}
.yda{bottom:903.297913px;}
.y160{bottom:907.613708px;}
.y81{bottom:908.282227px;}
.yab{bottom:911.176208px;}
.yd9{bottom:918.297913px;}
.y2e{bottom:920.551208px;}
.yf3{bottom:920.801880px;}
.y12d{bottom:921.113708px;}
.y80{bottom:925.786194px;}
.yaa{bottom:929.176208px;}
.yd8{bottom:933.297913px;}
.y12c{bottom:934.613708px;}
.yeb{bottom:935.801880px;}
.y22{bottom:936.316681px;}
.y2d{bottom:938.551208px;}
.y7f{bottom:943.289978px;}
.ya9{bottom:947.176208px;}
.y12b{bottom:948.113708px;}
.yd7{bottom:948.297913px;}
.yea{bottom:950.801880px;}
.y2c{bottom:956.551208px;}
.y7e{bottom:960.794128px;}
.y12a{bottom:961.613708px;}
.yd6{bottom:963.297913px;}
.ya8{bottom:965.176208px;}
.ye9{bottom:965.801880px;}
.y2b{bottom:974.551208px;}
.y129{bottom:975.113708px;}
.y21{bottom:975.316681px;}
.y7d{bottom:978.297913px;}
.ye8{bottom:980.801880px;}
.ya7{bottom:983.176208px;}
.y128{bottom:988.613708px;}
.y2a{bottom:992.551208px;}
.yd5{bottom:993.297913px;}
.y7c{bottom:995.801880px;}
.ya6{bottom:1001.176208px;}
.y15f{bottom:1002.113708px;}
.y29{bottom:1010.551208px;}
.yd4{bottom:1010.801880px;}
.y7b{bottom:1013.418274px;}
.y127{bottom:1015.613708px;}
.y7a{bottom:1028.418274px;}
.y5e{bottom:1028.551208px;}
.y28{bottom:1028.551392px;}
.y126{bottom:1029.113708px;}
.y1{bottom:1036.426208px;}
.y125{bottom:1042.613708px;}
.y5d{bottom:1046.551208px;}
.y27{bottom:1046.551392px;}
.y79{bottom:1050.174133px;}
.ya1{bottom:1052.070740px;}
.y124{bottom:1056.113708px;}
.y9{bottom:1114.051208px;}
.y8{bottom:1129.051208px;}
.y26{bottom:1129.426208px;}
.h8{height:29.452500px;}
.h4{height:39.270000px;}
.h16{height:39.984000px;}
.h1f{height:40.026000px;}
.h3{height:41.538000px;}
.h7{height:42.075000px;}
.h22{height:42.840000px;}
.h21{height:43.740000px;}
.h1b{height:44.784000px;}
.h1e{height:44.788727px;}
.h1c{height:44.788773px;}
.h20{height:44.788818px;}
.h15{height:44.788910px;}
.h14{height:44.880000px;}
.h5{height:45.744000px;}
.h17{height:47.472000px;}
.h18{height:47.988281px;}
.h1d{height:50.615707px;}
.h1a{height:50.615890px;}
.h19{height:51.859090px;}
.h11{height:51.860006px;}
.h10{height:53.406000px;}
.hf{height:53.654399px;}
.he{height:55.860000px;}
.hb{height:56.100000px;}
.ha{height:58.320000px;}
.h9{height:61.120200px;}
.hd{height:69.596779px;}
.h2{height:78.896517px;}
.h12{height:106.656000px;}
.h13{height:111.860006px;}
.h6{height:116.732582px;}
.hc{height:137.088000px;}
.h1{height:1190.250000px;}
.h0{height:1190.551500px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x3{left:85.039352px;}
.x1{left:91.234200px;}
.x1d{left:93.543303px;}
.x4{left:94.789352px;}
.x6{left:97.039500px;}
.x9{left:102.047253px;}
.x1f{left:107.539352px;}
.xa{left:116.747246px;}
.x1b{left:150.186745px;}
.x12{left:164.976299px;}
.x15{left:167.479500px;}
.x18{left:171.268948px;}
.xf{left:244.737007px;}
.x13{left:260.432991px;}
.x2{left:271.062904px;}
.x16{left:278.929047px;}
.x7{left:457.086731px;}
.x8{left:469.086594px;}
.x11{left:474.094482px;}
.xb{left:475.235550px;}
.x1e{left:479.586594px;}
.xc{left:554.875809px;}
.xd{left:633.176239px;}
.xe{left:648.176239px;}
.x1c{left:703.275467px;}
.x17{left:704.551208px;}
.x19{left:705.826630px;}
.x1a{left:709.228363px;}
.x14{left:711.354309px;}
.x10{left:738.661789px;}
.x5{left:744.817657px;}
@media print{
.v3{vertical-align:-16.000000pt;}
.v4{vertical-align:-13.333333pt;}
.v9{vertical-align:-10.666667pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:1.559570pt;}
.v8{vertical-align:14.933431pt;}
.v6{vertical-align:17.067383pt;}
.v5{vertical-align:23.466471pt;}
.v2{vertical-align:40.651042pt;}
.v7{vertical-align:53.333333pt;}
.ls2a{letter-spacing:-1.066667pt;}
.ls5{letter-spacing:-0.933333pt;}
.ls11{letter-spacing:-0.621973pt;}
.ls1c{letter-spacing:-0.554667pt;}
.ls7{letter-spacing:-0.480000pt;}
.ls12{letter-spacing:-0.470400pt;}
.ls24{letter-spacing:-0.448000pt;}
.ls2c{letter-spacing:-0.410667pt;}
.lsb{letter-spacing:-0.313600pt;}
.ls27{letter-spacing:-0.186667pt;}
.ls33{letter-spacing:-0.037333pt;}
.ls4{letter-spacing:0.000000pt;}
.ls31{letter-spacing:0.000003pt;}
.ls8{letter-spacing:0.000004pt;}
.ls26{letter-spacing:0.000006pt;}
.ls9{letter-spacing:0.000008pt;}
.ls1b{letter-spacing:0.000013pt;}
.lsd{letter-spacing:0.000034pt;}
.ls2e{letter-spacing:0.000060pt;}
.lsc{letter-spacing:0.000086pt;}
.lsa{letter-spacing:0.000089pt;}
.ls22{letter-spacing:0.000103pt;}
.ls29{letter-spacing:0.000130pt;}
.ls30{letter-spacing:0.213333pt;}
.ls2b{letter-spacing:0.261333pt;}
.ls23{letter-spacing:0.336000pt;}
.ls6{letter-spacing:0.373333pt;}
.ls1d{letter-spacing:0.560000pt;}
.ls14{letter-spacing:0.574933pt;}
.ls13{letter-spacing:0.731733pt;}
.ls10{letter-spacing:1.044793pt;}
.lsf{letter-spacing:1.044888pt;}
.ls1f{letter-spacing:1.045174pt;}
.lse{letter-spacing:1.045333pt;}
.ls15{letter-spacing:1.045336pt;}
.ls2{letter-spacing:1.066165pt;}
.ls3{letter-spacing:1.066655pt;}
.ls1{letter-spacing:1.066667pt;}
.ls0{letter-spacing:8.320000pt;}
.ls1e{letter-spacing:11.989333pt;}
.ls20{letter-spacing:13.488000pt;}
.ls17{letter-spacing:42.658127pt;}
.ls16{letter-spacing:71.733332pt;}
.ls18{letter-spacing:137.796735pt;}
.ls1a{letter-spacing:189.281508pt;}
.ls19{letter-spacing:196.608079pt;}
.ls25{letter-spacing:1255.961679pt;}
.ls21{letter-spacing:1320.213877pt;}
.ls2d{letter-spacing:1599.104019pt;}
.ls28{letter-spacing:1613.918964pt;}
.ls2f{letter-spacing:1636.595800pt;}
.ls32{letter-spacing:1664.992040pt;}
.wsaa{word-spacing:-13.328000pt;}
.wsac{word-spacing:-12.857600pt;}
.ws8{word-spacing:-12.848000pt;}
.ws14{word-spacing:-12.282667pt;}
.wsa9{word-spacing:-11.812267pt;}
.ws4{word-spacing:-11.096533pt;}
.ws5{word-spacing:-11.040000pt;}
.ws7{word-spacing:-10.560000pt;}
.ws179{word-spacing:-10.156800pt;}
.ws16a{word-spacing:-9.557333pt;}
.ws127{word-spacing:-9.344000pt;}
.wsab{word-spacing:-9.329600pt;}
.wsa{word-spacing:-8.993600pt;}
.wsde{word-spacing:-8.832000pt;}
.ws2{word-spacing:-8.760000pt;}
.wsdb{word-spacing:-8.640000pt;}
.ws14f{word-spacing:-8.597867pt;}
.ws19c{word-spacing:-8.280000pt;}
.wsa8{word-spacing:-7.975893pt;}
.ws167{word-spacing:-7.808000pt;}
.wsf9{word-spacing:-7.680000pt;}
.ws12{word-spacing:-7.242667pt;}
.ws6{word-spacing:-7.093333pt;}
.wse1{word-spacing:-6.794667pt;}
.ws3{word-spacing:-6.132000pt;}
.wsbb{word-spacing:-5.749333pt;}
.wse2{word-spacing:-5.540267pt;}
.ws128{word-spacing:-5.376000pt;}
.ws13{word-spacing:-5.013333pt;}
.wsf3{word-spacing:-4.512000pt;}
.ws139{word-spacing:-3.248000pt;}
.ws178{word-spacing:-3.210667pt;}
.ws14e{word-spacing:-3.061333pt;}
.ws166{word-spacing:-2.837333pt;}
.ws13b{word-spacing:-2.800000pt;}
.ws14c{word-spacing:-1.493333pt;}
.wsf7{word-spacing:-1.418667pt;}
.ws4e{word-spacing:-1.149867pt;}
.wsa3{word-spacing:-1.097600pt;}
.wse7{word-spacing:-1.045333pt;}
.ws118{word-spacing:-0.993067pt;}
.ws163{word-spacing:-0.940800pt;}
.wsef{word-spacing:-0.888533pt;}
.ws13e{word-spacing:-0.784000pt;}
.wsc4{word-spacing:-0.679467pt;}
.ws106{word-spacing:-0.627200pt;}
.wsc2{word-spacing:-0.574933pt;}
.wse3{word-spacing:-0.522667pt;}
.ws14b{word-spacing:-0.512000pt;}
.ws22{word-spacing:-0.470400pt;}
.ws16c{word-spacing:-0.469333pt;}
.ws41{word-spacing:-0.418133pt;}
.ws47{word-spacing:-0.365867pt;}
.ws13a{word-spacing:-0.336000pt;}
.ws48{word-spacing:-0.313600pt;}
.ws138{word-spacing:-0.298667pt;}
.ws114{word-spacing:-0.261333pt;}
.ws5f{word-spacing:-0.209067pt;}
.ws7e{word-spacing:-0.156800pt;}
.ws14a{word-spacing:-0.128000pt;}
.ws95{word-spacing:-0.104533pt;}
.ws1a0{word-spacing:-0.080000pt;}
.ws151{word-spacing:-0.052267pt;}
.ws1a1{word-spacing:-0.040000pt;}
.wsb{word-spacing:0.000000pt;}
.ws19b{word-spacing:0.052267pt;}
.ws10{word-spacing:0.074667pt;}
.ws16e{word-spacing:0.104533pt;}
.ws105{word-spacing:0.156800pt;}
.ws155{word-spacing:0.209067pt;}
.wsc9{word-spacing:0.261333pt;}
.wsf5{word-spacing:0.298667pt;}
.ws69{word-spacing:0.313600pt;}
.wsa2{word-spacing:0.365867pt;}
.ws136{word-spacing:0.418133pt;}
.ws62{word-spacing:0.470400pt;}
.wsf4{word-spacing:0.522667pt;}
.ws101{word-spacing:0.574933pt;}
.ws49{word-spacing:0.627200pt;}
.ws2c{word-spacing:0.679467pt;}
.ws79{word-spacing:0.731733pt;}
.ws11{word-spacing:0.784000pt;}
.ws192{word-spacing:0.836267pt;}
.wsf6{word-spacing:0.858667pt;}
.ws75{word-spacing:0.888533pt;}
.wsd{word-spacing:0.933333pt;}
.wscf{word-spacing:0.940800pt;}
.ws7a{word-spacing:0.993067pt;}
.wsc{word-spacing:1.008000pt;}
.ws164{word-spacing:1.045333pt;}
.ws165{word-spacing:1.066667pt;}
.ws4d{word-spacing:1.097600pt;}
.ws116{word-spacing:1.149867pt;}
.wse{word-spacing:1.157333pt;}
.ws198{word-spacing:1.202133pt;}
.ws96{word-spacing:1.254400pt;}
.wsf{word-spacing:1.306667pt;}
.ws177{word-spacing:1.344000pt;}
.ws30{word-spacing:1.358933pt;}
.ws18d{word-spacing:1.411200pt;}
.wsf8{word-spacing:1.418667pt;}
.wsc6{word-spacing:1.463467pt;}
.ws56{word-spacing:1.515733pt;}
.ws10b{word-spacing:1.568000pt;}
.ws10f{word-spacing:1.620267pt;}
.ws9e{word-spacing:1.672533pt;}
.wsba{word-spacing:1.724800pt;}
.ws82{word-spacing:1.777067pt;}
.wse4{word-spacing:1.829333pt;}
.wsa1{word-spacing:1.881600pt;}
.wsbd{word-spacing:1.933867pt;}
.ws18c{word-spacing:1.986133pt;}
.ws2a{word-spacing:2.038400pt;}
.ws43{word-spacing:2.090667pt;}
.ws5c{word-spacing:2.142933pt;}
.ws14d{word-spacing:2.165333pt;}
.ws4b{word-spacing:2.195200pt;}
.ws67{word-spacing:2.247467pt;}
.ws59{word-spacing:2.299733pt;}
.ws16{word-spacing:2.346667pt;}
.ws9d{word-spacing:2.352000pt;}
.ws5b{word-spacing:2.404267pt;}
.wscc{word-spacing:2.456533pt;}
.wsd0{word-spacing:2.508800pt;}
.ws66{word-spacing:2.561067pt;}
.ws19d{word-spacing:2.613333pt;}
.ws199{word-spacing:2.665600pt;}
.ws24{word-spacing:2.717867pt;}
.ws15{word-spacing:2.730667pt;}
.ws97{word-spacing:2.770133pt;}
.ws3c{word-spacing:2.822400pt;}
.ws64{word-spacing:2.874667pt;}
.ws1d{word-spacing:2.926933pt;}
.ws1b{word-spacing:2.979200pt;}
.wsa5{word-spacing:3.031467pt;}
.ws122{word-spacing:3.083733pt;}
.ws104{word-spacing:3.136000pt;}
.ws28{word-spacing:3.188267pt;}
.ws8e{word-spacing:3.240533pt;}
.ws57{word-spacing:3.345067pt;}
.ws2b{word-spacing:3.397333pt;}
.ws149{word-spacing:3.449600pt;}
.ws6d{word-spacing:3.501867pt;}
.ws170{word-spacing:3.554133pt;}
.wsb9{word-spacing:3.606400pt;}
.ws4c{word-spacing:3.658667pt;}
.ws12b{word-spacing:3.710933pt;}
.ws134{word-spacing:3.763200pt;}
.ws72{word-spacing:3.815467pt;}
.ws39{word-spacing:3.867733pt;}
.ws9c{word-spacing:3.920000pt;}
.ws55{word-spacing:3.972267pt;}
.ws81{word-spacing:4.024533pt;}
.ws44{word-spacing:4.076800pt;}
.wse5{word-spacing:4.129067pt;}
.ws115{word-spacing:4.181333pt;}
.wsbc{word-spacing:4.233600pt;}
.ws17e{word-spacing:4.285867pt;}
.ws3d{word-spacing:4.390400pt;}
.ws5d{word-spacing:4.494933pt;}
.ws83{word-spacing:4.547200pt;}
.ws27{word-spacing:4.599467pt;}
.ws46{word-spacing:4.651733pt;}
.wsd4{word-spacing:4.704000pt;}
.wsc3{word-spacing:4.756267pt;}
.ws91{word-spacing:4.860800pt;}
.ws3b{word-spacing:4.913067pt;}
.wsa7{word-spacing:4.965333pt;}
.ws174{word-spacing:5.017600pt;}
.ws146{word-spacing:5.069867pt;}
.ws147{word-spacing:5.122133pt;}
.ws186{word-spacing:5.174400pt;}
.ws5a{word-spacing:5.226667pt;}
.ws12e{word-spacing:5.278933pt;}
.ws65{word-spacing:5.331200pt;}
.wsc5{word-spacing:5.383467pt;}
.wsee{word-spacing:5.435733pt;}
.ws11f{word-spacing:5.488000pt;}
.wsfa{word-spacing:5.540267pt;}
.wsb6{word-spacing:5.592533pt;}
.ws121{word-spacing:5.644800pt;}
.ws1c{word-spacing:5.697067pt;}
.ws17d{word-spacing:5.749333pt;}
.ws70{word-spacing:5.801600pt;}
.ws99{word-spacing:5.853867pt;}
.wsce{word-spacing:5.906133pt;}
.ws76{word-spacing:5.958400pt;}
.ws20{word-spacing:6.010667pt;}
.ws1f{word-spacing:6.062933pt;}
.wsf1{word-spacing:6.115200pt;}
.ws84{word-spacing:6.167467pt;}
.ws32{word-spacing:6.219733pt;}
.ws94{word-spacing:6.272000pt;}
.wsfb{word-spacing:6.324267pt;}
.ws4a{word-spacing:6.376533pt;}
.ws6c{word-spacing:6.428800pt;}
.ws125{word-spacing:6.481067pt;}
.wsf0{word-spacing:6.533333pt;}
.ws71{word-spacing:6.585600pt;}
.ws190{word-spacing:6.637867pt;}
.ws3a{word-spacing:6.690133pt;}
.ws100{word-spacing:6.742400pt;}
.ws15f{word-spacing:6.794667pt;}
.wsad{word-spacing:6.846933pt;}
.ws87{word-spacing:6.951467pt;}
.wsd7{word-spacing:7.003733pt;}
.wsd1{word-spacing:7.056000pt;}
.ws63{word-spacing:7.108267pt;}
.ws102{word-spacing:7.160533pt;}
.ws195{word-spacing:7.212800pt;}
.ws90{word-spacing:7.265067pt;}
.ws38{word-spacing:7.317333pt;}
.ws2f{word-spacing:7.369600pt;}
.ws17b{word-spacing:7.421867pt;}
.ws13c{word-spacing:7.474133pt;}
.ws7c{word-spacing:7.526400pt;}
.wsa4{word-spacing:7.578667pt;}
.wsff{word-spacing:7.630933pt;}
.ws8f{word-spacing:7.683200pt;}
.ws60{word-spacing:7.735467pt;}
.ws92{word-spacing:7.787733pt;}
.ws93{word-spacing:7.840000pt;}
.ws37{word-spacing:7.892267pt;}
.ws188{word-spacing:7.944533pt;}
.ws1a{word-spacing:7.996800pt;}
.ws88{word-spacing:8.049067pt;}
.wsb3{word-spacing:8.101333pt;}
.ws6b{word-spacing:8.153600pt;}
.ws35{word-spacing:8.205867pt;}
.wsbf{word-spacing:8.258133pt;}
.wscb{word-spacing:8.310400pt;}
.ws86{word-spacing:8.362667pt;}
.ws109{word-spacing:8.414933pt;}
.ws10a{word-spacing:8.519467pt;}
.ws184{word-spacing:8.571733pt;}
.wsa0{word-spacing:8.624000pt;}
.ws12d{word-spacing:8.676267pt;}
.ws158{word-spacing:8.728533pt;}
.ws162{word-spacing:8.780800pt;}
.wsc7{word-spacing:8.833067pt;}
.ws13d{word-spacing:8.885333pt;}
.ws131{word-spacing:8.937600pt;}
.ws34{word-spacing:8.989867pt;}
.ws7f{word-spacing:9.042133pt;}
.wsb7{word-spacing:9.094400pt;}
.ws8a{word-spacing:9.146667pt;}
.ws15d{word-spacing:9.198933pt;}
.wsc1{word-spacing:9.251200pt;}
.ws52{word-spacing:9.303467pt;}
.wsb1{word-spacing:9.355733pt;}
.ws26{word-spacing:9.408000pt;}
.ws9a{word-spacing:9.460267pt;}
.ws173{word-spacing:9.512533pt;}
.wsed{word-spacing:9.564800pt;}
.ws112{word-spacing:9.617067pt;}
.wsfe{word-spacing:9.669333pt;}
.ws160{word-spacing:9.721600pt;}
.wsc0{word-spacing:9.773867pt;}
.ws8d{word-spacing:9.826133pt;}
.ws181{word-spacing:9.878400pt;}
.ws103{word-spacing:9.930667pt;}
.ws25{word-spacing:9.982933pt;}
.ws19f{word-spacing:10.035200pt;}
.ws36{word-spacing:10.087467pt;}
.ws13f{word-spacing:10.139733pt;}
.ws117{word-spacing:10.192000pt;}
.ws73{word-spacing:10.244267pt;}
.ws54{word-spacing:10.296533pt;}
.ws17a{word-spacing:10.348800pt;}
.ws31{word-spacing:10.401067pt;}
.ws40{word-spacing:10.453333pt;}
.ws185{word-spacing:10.557867pt;}
.wsa6{word-spacing:10.610133pt;}
.ws58{word-spacing:10.662400pt;}
.ws18e{word-spacing:10.714667pt;}
.ws21{word-spacing:10.766933pt;}
.ws50{word-spacing:10.871467pt;}
.ws33{word-spacing:10.923733pt;}
.ws126{word-spacing:11.028267pt;}
.ws16f{word-spacing:11.132800pt;}
.ws19a{word-spacing:11.185067pt;}
.ws12c{word-spacing:11.289600pt;}
.ws17{word-spacing:11.341867pt;}
.ws1e{word-spacing:11.394133pt;}
.ws189{word-spacing:11.446400pt;}
.wsc8{word-spacing:11.498667pt;}
.ws85{word-spacing:11.550933pt;}
.ws8c{word-spacing:11.603200pt;}
.wsd5{word-spacing:11.655467pt;}
.ws12f{word-spacing:11.707733pt;}
.ws157{word-spacing:11.760000pt;}
.wsfd{word-spacing:11.812267pt;}
.ws80{word-spacing:11.864533pt;}
.wsb5{word-spacing:11.916800pt;}
.ws145{word-spacing:12.021333pt;}
.ws10e{word-spacing:12.125867pt;}
.ws68{word-spacing:12.178133pt;}
.ws142{word-spacing:12.230400pt;}
.ws113{word-spacing:12.282667pt;}
.ws119{word-spacing:12.334933pt;}
.ws140{word-spacing:12.387200pt;}
.ws45{word-spacing:12.439467pt;}
.wse8{word-spacing:12.491733pt;}
.ws182{word-spacing:12.544000pt;}
.ws53{word-spacing:12.596267pt;}
.ws4f{word-spacing:12.648533pt;}
.ws11b{word-spacing:12.700800pt;}
.ws15a{word-spacing:12.753067pt;}
.ws15c{word-spacing:12.805333pt;}
.ws29{word-spacing:12.857600pt;}
.ws3f{word-spacing:12.909867pt;}
.ws161{word-spacing:12.962133pt;}
.ws11a{word-spacing:13.014400pt;}
.ws8b{word-spacing:13.066667pt;}
.wsea{word-spacing:13.118933pt;}
.ws108{word-spacing:13.171200pt;}
.ws42{word-spacing:13.223467pt;}
.ws18b{word-spacing:13.275733pt;}
.ws9b{word-spacing:13.328000pt;}
.ws7d{word-spacing:13.380267pt;}
.ws51{word-spacing:13.432533pt;}
.ws61{word-spacing:13.484800pt;}
.wsb4{word-spacing:13.537067pt;}
.ws141{word-spacing:13.589333pt;}
.ws18{word-spacing:13.693867pt;}
.wsca{word-spacing:13.746133pt;}
.ws159{word-spacing:13.850667pt;}
.ws148{word-spacing:13.955200pt;}
.ws10c{word-spacing:14.059733pt;}
.ws23{word-spacing:14.112000pt;}
.ws133{word-spacing:14.164267pt;}
.ws9f{word-spacing:14.321067pt;}
.wsae{word-spacing:14.373333pt;}
.ws3e{word-spacing:14.425600pt;}
.wsf2{word-spacing:14.477867pt;}
.ws5e{word-spacing:14.530133pt;}
.ws124{word-spacing:14.582400pt;}
.ws18f{word-spacing:14.634667pt;}
.wsb2{word-spacing:14.686933pt;}
.ws187{word-spacing:14.791467pt;}
.wsd2{word-spacing:14.843733pt;}
.ws77{word-spacing:15.052800pt;}
.ws172{word-spacing:15.157333pt;}
.ws194{word-spacing:15.209600pt;}
.wse6{word-spacing:15.261867pt;}
.ws132{word-spacing:15.366400pt;}
.ws143{word-spacing:15.418667pt;}
.ws6e{word-spacing:15.470933pt;}
.ws137{word-spacing:15.523200pt;}
.ws197{word-spacing:15.627733pt;}
.ws17f{word-spacing:15.680000pt;}
.wsd3{word-spacing:15.732267pt;}
.wsd6{word-spacing:15.784533pt;}
.ws154{word-spacing:15.889067pt;}
.ws153{word-spacing:15.941333pt;}
.wsaf{word-spacing:16.045867pt;}
.ws2d{word-spacing:16.098133pt;}
.ws144{word-spacing:16.254933pt;}
.ws17c{word-spacing:16.307200pt;}
.ws16b{word-spacing:16.516267pt;}
.ws123{word-spacing:16.568533pt;}
.wsbe{word-spacing:16.725333pt;}
.wscd{word-spacing:16.777600pt;}
.wse9{word-spacing:16.882133pt;}
.ws15b{word-spacing:16.934400pt;}
.ws6a{word-spacing:17.091200pt;}
.ws120{word-spacing:17.143467pt;}
.ws130{word-spacing:17.195733pt;}
.ws150{word-spacing:17.404800pt;}
.ws19{word-spacing:17.457067pt;}
.ws156{word-spacing:17.613867pt;}
.wsfc{word-spacing:17.718400pt;}
.ws98{word-spacing:17.927467pt;}
.ws7b{word-spacing:17.979733pt;}
.ws16d{word-spacing:18.188800pt;}
.ws193{word-spacing:18.450133pt;}
.wsb8{word-spacing:18.502400pt;}
.ws18a{word-spacing:18.606933pt;}
.ws74{word-spacing:18.763733pt;}
.ws176{word-spacing:18.868267pt;}
.wsda{word-spacing:19.129600pt;}
.ws107{word-spacing:19.443200pt;}
.ws15e{word-spacing:19.652267pt;}
.ws171{word-spacing:19.861333pt;}
.ws183{word-spacing:20.122667pt;}
.ws11d{word-spacing:20.384000pt;}
.ws6f{word-spacing:20.488533pt;}
.ws111{word-spacing:20.540800pt;}
.ws11e{word-spacing:20.645333pt;}
.ws89{word-spacing:20.697600pt;}
.ws152{word-spacing:20.749867pt;}
.wsb0{word-spacing:20.802133pt;}
.wseb{word-spacing:21.115733pt;}
.ws175{word-spacing:22.108800pt;}
.wsec{word-spacing:22.161067pt;}
.ws12a{word-spacing:22.213333pt;}
.ws196{word-spacing:22.579200pt;}
.wsd9{word-spacing:22.840533pt;}
.wsdc{word-spacing:23.705082pt;}
.ws2e{word-spacing:24.147200pt;}
.ws78{word-spacing:25.349333pt;}
.ws191{word-spacing:27.074133pt;}
.ws19e{word-spacing:27.230933pt;}
.ws110{word-spacing:27.544533pt;}
.ws10d{word-spacing:28.276267pt;}
.ws180{word-spacing:29.739733pt;}
.ws11c{word-spacing:29.792000pt;}
.ws135{word-spacing:30.210133pt;}
.wsd8{word-spacing:32.353067pt;}
.ws9{word-spacing:40.610982pt;}
.wsdd{word-spacing:53.549830pt;}
.ws129{word-spacing:90.347189pt;}
.ws169{word-spacing:123.419711pt;}
.wse0{word-spacing:192.059725pt;}
.wsdf{word-spacing:197.606391pt;}
.ws168{word-spacing:215.202116pt;}
.ws1{word-spacing:1378.846925pt;}
.ws0{word-spacing:1729.641551pt;}
._9{margin-left:-2569.717893pt;}
._47{margin-left:-35.960967pt;}
._16{margin-left:-34.907814pt;}
._13{margin-left:-33.084800pt;}
._15{margin-left:-29.127522pt;}
._17{margin-left:-25.928614pt;}
._4e{margin-left:-23.725322pt;}
._4c{margin-left:-21.878954pt;}
._50{margin-left:-19.407469pt;}
._51{margin-left:-18.424998pt;}
._4a{margin-left:-17.438411pt;}
._4f{margin-left:-16.165329pt;}
._42{margin-left:-14.892183pt;}
._43{margin-left:-13.960111pt;}
._11{margin-left:-13.014400pt;}
._40{margin-left:-10.806187pt;}
._44{margin-left:-9.683441pt;}
._3f{margin-left:-8.050987pt;}
._14{margin-left:-6.428800pt;}
._4{margin-left:-4.906667pt;}
._41{margin-left:-3.912525pt;}
._2{margin-left:-2.967467pt;}
._0{margin-left:-1.525333pt;}
._1{width:1.012267pt;}
._6{width:2.155733pt;}
._8{width:3.432533pt;}
._a{width:4.679573pt;}
._e{width:6.094479pt;}
._b{width:7.410681pt;}
._f{width:8.830480pt;}
._d{width:10.118940pt;}
._c{width:11.219694pt;}
._5{width:12.902383pt;}
._3{width:14.534931pt;}
._7{width:15.841041pt;}
._4b{width:18.100818pt;}
._12{width:19.181867pt;}
._46{width:20.303418pt;}
._45{width:21.424537pt;}
._53{width:23.213666pt;}
._56{width:29.440000pt;}
._1e{width:31.952021pt;}
._25{width:33.230376pt;}
._10{width:39.252267pt;}
._18{width:41.639999pt;}
._2c{width:44.109310pt;}
._39{width:46.498643pt;}
._55{width:48.960000pt;}
._3e{width:51.985058pt;}
._22{width:53.699749pt;}
._27{width:57.040021pt;}
._54{width:63.358906pt;}
._2e{width:68.711917pt;}
._1c{width:73.694401pt;}
._35{width:78.455976pt;}
._2a{width:81.143976pt;}
._1a{width:85.571749pt;}
._21{width:87.245310pt;}
._2b{width:90.402643pt;}
._1b{width:92.675163pt;}
._36{width:93.575917pt;}
._26{width:95.309310pt;}
._23{width:98.483734pt;}
._31{width:103.373310pt;}
._2f{width:105.293310pt;}
._3b{width:108.365310pt;}
._38{width:110.285310pt;}
._3a{width:112.887976pt;}
._52{width:118.967991pt;}
._19{width:122.103976pt;}
._48{width:129.382922pt;}
._29{width:131.319976pt;}
._32{width:133.922643pt;}
._28{width:138.781364pt;}
._34{width:142.967976pt;}
._2d{width:145.189354pt;}
._37{width:147.106643pt;}
._33{width:148.599976pt;}
._24{width:165.106698pt;}
._49{width:170.569571pt;}
._3c{width:177.553058pt;}
._30{width:187.037364pt;}
._1f{width:203.848031pt;}
._1d{width:218.870948pt;}
._4d{width:226.935451pt;}
._20{width:227.986583pt;}
._3d{width:299.702898pt;}
.fs10{font-size:26.133333pt;}
.fs5{font-size:28.000000pt;}
.fsf{font-size:29.866667pt;}
.fsd{font-size:36.586667pt;}
.fs1{font-size:37.333333pt;}
.fs4{font-size:40.000000pt;}
.fsa{font-size:41.066666pt;}
.fs2{font-size:42.666667pt;}
.fse{font-size:48.000000pt;}
.fsc{font-size:49.066666pt;}
.fsb{font-size:52.266667pt;}
.fs7{font-size:53.333333pt;}
.fs6{font-size:54.933333pt;}
.fs9{font-size:58.666667pt;}
.fs11{font-size:64.000000pt;}
.fs3{font-size:66.293333pt;}
.fs0{font-size:69.333333pt;}
.fs8{font-size:128.000000pt;}
.y0{bottom:0.000000pt;}
.y9f{bottom:80.000000pt;}
.ya0{bottom:80.000132pt;}
.y6a{bottom:82.267736pt;}
.y5c{bottom:82.267868pt;}
.y15e{bottom:86.316264pt;}
.y199{bottom:86.767731pt;}
.y123{bottom:90.015737pt;}
.yc2{bottom:97.112935pt;}
.y69{bottom:98.267731pt;}
.y5b{bottom:98.267863pt;}
.y15d{bottom:98.316264pt;}
.y198{bottom:98.767731pt;}
.y7{bottom:100.328135pt;}
.y122{bottom:102.015737pt;}
.yc1{bottom:108.446269pt;}
.y15c{bottom:110.316264pt;}
.y197{bottom:110.767731pt;}
.y6{bottom:110.994802pt;}
.y121{bottom:114.015737pt;}
.y68{bottom:114.267731pt;}
.y5a{bottom:114.267863pt;}
.y5{bottom:121.661469pt;}
.y15b{bottom:122.316264pt;}
.y196{bottom:122.767731pt;}
.yc0{bottom:123.005330pt;}
.y67{bottom:130.267731pt;}
.y59{bottom:130.267863pt;}
.y4{bottom:132.328135pt;}
.y15a{bottom:134.316264pt;}
.y195{bottom:134.767731pt;}
.ybf{bottom:136.338664pt;}
.y120{bottom:138.015737pt;}
.y3{bottom:142.994802pt;}
.y66{bottom:146.267731pt;}
.y58{bottom:146.267863pt;}
.y159{bottom:146.316264pt;}
.y194{bottom:146.767731pt;}
.ybe{bottom:149.671997pt;}
.y11f{bottom:150.015737pt;}
.y2{bottom:153.661469pt;}
.y158{bottom:158.316264pt;}
.y193{bottom:158.767731pt;}
.y11e{bottom:162.015737pt;}
.y65{bottom:162.267731pt;}
.y57{bottom:162.267863pt;}
.ybd{bottom:163.005330pt;}
.y157{bottom:170.316264pt;}
.y192{bottom:170.767741pt;}
.y11d{bottom:174.015727pt;}
.ybc{bottom:176.338664pt;}
.y64{bottom:178.267741pt;}
.y56{bottom:178.267863pt;}
.y156{bottom:182.316264pt;}
.y191{bottom:182.767741pt;}
.yd3{bottom:185.934408pt;}
.y11c{bottom:186.015727pt;}
.ye{bottom:189.710937pt;}
.ybb{bottom:191.897603pt;}
.ya3{bottom:192.134257pt;}
.y63{bottom:194.267741pt;}
.y55{bottom:194.267863pt;}
.y155{bottom:194.316264pt;}
.y190{bottom:194.767741pt;}
.yd2{bottom:201.934408pt;}
.yba{bottom:205.230937pt;}
.ya2{bottom:205.467590pt;}
.yd{bottom:205.710937pt;}
.y154{bottom:206.316264pt;}
.y18f{bottom:206.767741pt;}
.y62{bottom:210.267741pt;}
.y54{bottom:210.267863pt;}
.yc{bottom:213.710937pt;}
.yd1{bottom:217.934408pt;}
.y153{bottom:218.316264pt;}
.yb9{bottom:218.564270pt;}
.y18e{bottom:218.767741pt;}
.y11b{bottom:221.354268pt;}
.yb{bottom:225.710937pt;}
.y61{bottom:226.267741pt;}
.y53{bottom:226.267863pt;}
.y152{bottom:230.316264pt;}
.y18d{bottom:230.767741pt;}
.yb8{bottom:231.897603pt;}
.yd0{bottom:233.934408pt;}
.ya{bottom:237.710937pt;}
.y11a{bottom:240.913472pt;}
.y60{bottom:242.267741pt;}
.y52{bottom:242.267863pt;}
.y151{bottom:242.316264pt;}
.y18c{bottom:242.767741pt;}
.yb7{bottom:245.230937pt;}
.ycf{bottom:249.934408pt;}
.y150{bottom:254.316264pt;}
.y18b{bottom:254.767741pt;}
.ya5{bottom:254.854390pt;}
.y5f{bottom:258.267741pt;}
.y51{bottom:258.267863pt;}
.yb6{bottom:258.564270pt;}
.y119{bottom:260.472533pt;}
.yce{bottom:265.934408pt;}
.y14f{bottom:266.316264pt;}
.y18a{bottom:266.767741pt;}
.ya4{bottom:268.187724pt;}
.yb5{bottom:271.897603pt;}
.y111{bottom:273.260539pt;}
.y50{bottom:274.267741pt;}
.y14e{bottom:278.316264pt;}
.y189{bottom:278.767741pt;}
.y118{bottom:280.031596pt;}
.y110{bottom:284.593872pt;}
.yb4{bottom:287.456665pt;}
.y4f{bottom:290.267741pt;}
.y14d{bottom:290.316264pt;}
.y188{bottom:290.767741pt;}
.y10f{bottom:299.152933pt;}
.y117{bottom:299.590535pt;}
.yb3{bottom:300.789998pt;}
.y14c{bottom:302.316264pt;}
.y187{bottom:302.767741pt;}
.y4e{bottom:306.267741pt;}
.y10e{bottom:312.486267pt;}
.yb2{bottom:314.123332pt;}
.y14b{bottom:314.316264pt;}
.y186{bottom:314.767741pt;}
.y116{bottom:319.149597pt;}
.y4d{bottom:322.267741pt;}
.y10d{bottom:325.819600pt;}
.y14a{bottom:326.316264pt;}
.y185{bottom:326.767741pt;}
.yb1{bottom:327.456665pt;}
.y4c{bottom:338.267741pt;}
.y149{bottom:338.316264pt;}
.y184{bottom:338.767741pt;}
.y10c{bottom:339.152933pt;}
.yb0{bottom:340.789998pt;}
.y115{bottom:346.267741pt;}
.y148{bottom:350.316284pt;}
.y183{bottom:350.767741pt;}
.y10b{bottom:352.486247pt;}
.y4b{bottom:354.267741pt;}
.yaf{bottom:356.349080pt;}
.y114{bottom:358.267741pt;}
.y147{bottom:362.316284pt;}
.y182{bottom:362.767741pt;}
.y10a{bottom:365.819580pt;}
.y4a{bottom:370.267741pt;}
.yae{bottom:372.008138pt;}
.y20{bottom:373.647990pt;}
.y146{bottom:374.316284pt;}
.y181{bottom:374.767741pt;}
.ycd{bottom:377.934408pt;}
.y9e{bottom:378.277995pt;}
.y109{bottom:379.152913pt;}
.y49{bottom:386.267741pt;}
.y145{bottom:386.316284pt;}
.y180{bottom:386.767741pt;}
.y9d{bottom:389.611328pt;}
.y1f{bottom:389.647990pt;}
.yad{bottom:391.346680pt;}
.ycc{bottom:393.934408pt;}
.y108{bottom:394.711995pt;}
.y144{bottom:398.316284pt;}
.y17f{bottom:398.767741pt;}
.y9c{bottom:400.944661pt;}
.y48{bottom:402.267741pt;}
.y107{bottom:408.045329pt;}
.y1e{bottom:409.647990pt;}
.ycb{bottom:409.934408pt;}
.y143{bottom:410.316284pt;}
.y17e{bottom:410.767741pt;}
.y9b{bottom:412.277995pt;}
.y47{bottom:418.267741pt;}
.y106{bottom:421.378662pt;}
.y142{bottom:422.316284pt;}
.y17d{bottom:422.767741pt;}
.y9a{bottom:423.611328pt;}
.y1d{bottom:425.647990pt;}
.yca{bottom:425.934408pt;}
.y46{bottom:434.267741pt;}
.y141{bottom:434.316284pt;}
.y105{bottom:434.711995pt;}
.y17c{bottom:434.767741pt;}
.y99{bottom:434.944661pt;}
.y1c{bottom:441.647990pt;}
.yc9{bottom:441.934408pt;}
.y140{bottom:446.316284pt;}
.y17b{bottom:446.767741pt;}
.y98{bottom:449.503743pt;}
.y45{bottom:450.267741pt;}
.y104{bottom:450.271077pt;}
.y1b{bottom:457.647990pt;}
.y17a{bottom:458.767741pt;}
.y103{bottom:463.604411pt;}
.y97{bottom:465.062785pt;}
.y44{bottom:466.267741pt;}
.y179{bottom:470.767741pt;}
.yc8{bottom:473.934408pt;}
.y102{bottom:476.937744pt;}
.y1a{bottom:477.647990pt;}
.y96{bottom:480.621867pt;}
.y43{bottom:482.267741pt;}
.y178{bottom:482.767741pt;}
.yc7{bottom:489.934408pt;}
.y101{bottom:490.271077pt;}
.y19{bottom:493.647990pt;}
.y177{bottom:494.767741pt;}
.y95{bottom:496.180949pt;}
.y42{bottom:498.267741pt;}
.y100{bottom:503.604411pt;}
.yc6{bottom:505.934408pt;}
.y176{bottom:506.767741pt;}
.y13f{bottom:507.649618pt;}
.y18{bottom:509.647990pt;}
.y94{bottom:511.739868pt;}
.y41{bottom:514.267741pt;}
.yff{bottom:516.937744pt;}
.y175{bottom:518.767741pt;}
.yc5{bottom:521.934408pt;}
.y17{bottom:525.647990pt;}
.y93{bottom:527.298950pt;}
.y40{bottom:530.267741pt;}
.y174{bottom:530.767741pt;}
.yfe{bottom:532.496785pt;}
.y13e{bottom:534.767741pt;}
.yc4{bottom:537.934408pt;}
.y19b{bottom:538.267741pt;}
.y16{bottom:541.647990pt;}
.y173{bottom:542.767741pt;}
.y92{bottom:542.857992pt;}
.yfd{bottom:545.830119pt;}
.y3f{bottom:546.267741pt;}
.y13d{bottom:546.767741pt;}
.y19a{bottom:550.267741pt;}
.y78{bottom:550.734416pt;}
.yc3{bottom:553.934408pt;}
.y172{bottom:554.767741pt;}
.y91{bottom:558.417074pt;}
.yfc{bottom:559.163452pt;}
.y15{bottom:561.647990pt;}
.y3e{bottom:562.267741pt;}
.y77{bottom:566.734416pt;}
.y171{bottom:566.767741pt;}
.y13c{bottom:570.767741pt;}
.yfb{bottom:572.496785pt;}
.y90{bottom:573.976115pt;}
.y14{bottom:577.647990pt;}
.y3d{bottom:578.267741pt;}
.y170{bottom:578.767741pt;}
.y76{bottom:582.734416pt;}
.y13b{bottom:582.767741pt;}
.yfa{bottom:588.155884pt;}
.y8f{bottom:589.535197pt;}
.y16f{bottom:590.767741pt;}
.y3c{bottom:594.267741pt;}
.y13{bottom:597.647990pt;}
.y75{bottom:598.734416pt;}
.y16e{bottom:602.767741pt;}
.y8e{bottom:605.094279pt;}
.y13a{bottom:606.767741pt;}
.yf9{bottom:607.494385pt;}
.y3b{bottom:610.267741pt;}
.y12{bottom:613.647990pt;}
.y74{bottom:614.734416pt;}
.y16d{bottom:614.767741pt;}
.y139{bottom:618.767741pt;}
.y8d{bottom:620.653320pt;}
.ye7{bottom:625.921061pt;}
.y3a{bottom:626.267741pt;}
.y16c{bottom:626.767741pt;}
.y11{bottom:629.647990pt;}
.y73{bottom:630.734416pt;}
.y8c{bottom:636.212402pt;}
.ye6{bottom:637.254395pt;}
.y16b{bottom:638.767741pt;}
.y39{bottom:642.267741pt;}
.y138{bottom:642.767741pt;}
.y10{bottom:645.647990pt;}
.y72{bottom:646.734416pt;}
.y16a{bottom:650.767741pt;}
.y8b{bottom:651.771484pt;}
.ye5{bottom:651.813314pt;}
.y137{bottom:654.767741pt;}
.yf8{bottom:654.813314pt;}
.y38{bottom:658.267741pt;}
.y71{bottom:662.734416pt;}
.y169{bottom:662.767741pt;}
.ye4{bottom:665.146647pt;}
.yf{bottom:665.647990pt;}
.yf7{bottom:666.146647pt;}
.y136{bottom:666.767741pt;}
.y8a{bottom:667.330526pt;}
.y37{bottom:674.267741pt;}
.y168{bottom:674.767741pt;}
.ye3{bottom:678.479980pt;}
.y135{bottom:678.767741pt;}
.yf6{bottom:680.705851pt;}
.yf2{bottom:681.479980pt;}
.y89{bottom:682.889486pt;}
.y167{bottom:686.767741pt;}
.y36{bottom:690.267741pt;}
.y134{bottom:690.767741pt;}
.ye2{bottom:691.813314pt;}
.yf1{bottom:692.813314pt;}
.yf5{bottom:694.039225pt;}
.y113{bottom:694.813314pt;}
.y70{bottom:697.934408pt;}
.y88{bottom:698.448568pt;}
.y166{bottom:698.767741pt;}
.y133{bottom:702.767741pt;}
.ye1{bottom:705.146647pt;}
.y112{bottom:706.146647pt;}
.y35{bottom:706.267741pt;}
.yf0{bottom:707.372559pt;}
.y165{bottom:710.767741pt;}
.y6f{bottom:713.934408pt;}
.y87{bottom:714.007568pt;}
.y132{bottom:714.767741pt;}
.y25{bottom:717.614827pt;}
.ye0{bottom:718.479980pt;}
.yef{bottom:720.705892pt;}
.y34{bottom:722.267741pt;}
.y164{bottom:722.767741pt;}
.y86{bottom:729.566650pt;}
.y6e{bottom:729.934408pt;}
.ydf{bottom:734.039225pt;}
.y163{bottom:734.767741pt;}
.y33{bottom:738.267741pt;}
.y131{bottom:738.767741pt;}
.y85{bottom:745.125732pt;}
.y6d{bottom:745.934408pt;}
.y162{bottom:746.767741pt;}
.yde{bottom:747.372559pt;}
.yf4{bottom:749.598145pt;}
.y32{bottom:754.267741pt;}
.y161{bottom:758.767741pt;}
.y84{bottom:760.684814pt;}
.ydd{bottom:760.705892pt;}
.y6c{bottom:761.934408pt;}
.yee{bottom:762.931478pt;}
.y24{bottom:762.948161pt;}
.y31{bottom:770.267741pt;}
.y130{bottom:770.767741pt;}
.ydc{bottom:774.039225pt;}
.y83{bottom:776.243896pt;}
.yed{bottom:776.264811pt;}
.y6b{bottom:777.934408pt;}
.y12f{bottom:782.767741pt;}
.y30{bottom:786.267741pt;}
.ydb{bottom:787.372559pt;}
.yec{bottom:789.598145pt;}
.y82{bottom:791.802897pt;}
.yac{bottom:793.934408pt;}
.y12e{bottom:794.767741pt;}
.y23{bottom:797.614827pt;}
.y2f{bottom:802.267741pt;}
.yda{bottom:802.931478pt;}
.y160{bottom:806.767741pt;}
.y81{bottom:807.361979pt;}
.yab{bottom:809.934408pt;}
.yd9{bottom:816.264811pt;}
.y2e{bottom:818.267741pt;}
.yf3{bottom:818.490560pt;}
.y12d{bottom:818.767741pt;}
.y80{bottom:822.921061pt;}
.yaa{bottom:825.934408pt;}
.yd8{bottom:829.598145pt;}
.y12c{bottom:830.767741pt;}
.yeb{bottom:831.823893pt;}
.y22{bottom:832.281494pt;}
.y2d{bottom:834.267741pt;}
.y7f{bottom:838.479980pt;}
.ya9{bottom:841.934408pt;}
.y12b{bottom:842.767741pt;}
.yd7{bottom:842.931478pt;}
.yea{bottom:845.157227pt;}
.y2c{bottom:850.267741pt;}
.y7e{bottom:854.039225pt;}
.y12a{bottom:854.767741pt;}
.yd6{bottom:856.264811pt;}
.ya8{bottom:857.934408pt;}
.ye9{bottom:858.490560pt;}
.y2b{bottom:866.267741pt;}
.y129{bottom:866.767741pt;}
.y21{bottom:866.948161pt;}
.y7d{bottom:869.598145pt;}
.ye8{bottom:871.823893pt;}
.ya7{bottom:873.934408pt;}
.y128{bottom:878.767741pt;}
.y2a{bottom:882.267741pt;}
.yd5{bottom:882.931478pt;}
.y7c{bottom:885.157227pt;}
.ya6{bottom:889.934408pt;}
.y15f{bottom:890.767741pt;}
.y29{bottom:898.267741pt;}
.yd4{bottom:898.490560pt;}
.y7b{bottom:900.816243pt;}
.y127{bottom:902.767741pt;}
.y7a{bottom:914.149577pt;}
.y5e{bottom:914.267741pt;}
.y28{bottom:914.267904pt;}
.y126{bottom:914.767741pt;}
.y1{bottom:921.267741pt;}
.y125{bottom:926.767741pt;}
.y5d{bottom:930.267741pt;}
.y27{bottom:930.267904pt;}
.y79{bottom:933.488118pt;}
.ya1{bottom:935.173991pt;}
.y124{bottom:938.767741pt;}
.y9{bottom:990.267741pt;}
.y8{bottom:1003.601074pt;}
.y26{bottom:1003.934408pt;}
.h8{height:26.180000pt;}
.h4{height:34.906667pt;}
.h16{height:35.541333pt;}
.h1f{height:35.578667pt;}
.h3{height:36.922667pt;}
.h7{height:37.400000pt;}
.h22{height:38.080000pt;}
.h21{height:38.880000pt;}
.h1b{height:39.808000pt;}
.h1e{height:39.812202pt;}
.h1c{height:39.812242pt;}
.h20{height:39.812283pt;}
.h15{height:39.812364pt;}
.h14{height:39.893333pt;}
.h5{height:40.661333pt;}
.h17{height:42.197333pt;}
.h18{height:42.656250pt;}
.h1d{height:44.991739pt;}
.h1a{height:44.991902pt;}
.h19{height:46.096969pt;}
.h11{height:46.097783pt;}
.h10{height:47.472000pt;}
.hf{height:47.692799pt;}
.he{height:49.653333pt;}
.hb{height:49.866667pt;}
.ha{height:51.840000pt;}
.h9{height:54.329067pt;}
.hd{height:61.863804pt;}
.h2{height:70.130237pt;}
.h12{height:94.805333pt;}
.h13{height:99.431116pt;}
.h6{height:103.762295pt;}
.hc{height:121.856000pt;}
.h1{height:1058.000000pt;}
.h0{height:1058.268000pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x3{left:75.590535pt;}
.x1{left:81.097066pt;}
.x1d{left:83.149602pt;}
.x4{left:84.257202pt;}
.x6{left:86.257333pt;}
.x9{left:90.708669pt;}
.x1f{left:95.590535pt;}
.xa{left:103.775330pt;}
.x1b{left:133.499329pt;}
.x12{left:146.645599pt;}
.x15{left:148.870667pt;}
.x18{left:152.239065pt;}
.xf{left:217.544006pt;}
.x13{left:231.495992pt;}
.x2{left:240.944804pt;}
.x16{left:247.936930pt;}
.x7{left:406.299316pt;}
.x8{left:416.965861pt;}
.x11{left:421.417318pt;}
.xb{left:422.431600pt;}
.x1e{left:426.299194pt;}
.xc{left:493.222941pt;}
.xd{left:562.823324pt;}
.xe{left:576.156657pt;}
.x1c{left:625.133748pt;}
.x17{left:626.267741pt;}
.x19{left:627.401449pt;}
.x1a{left:630.425212pt;}
.x14{left:632.314941pt;}
.x10{left:656.588257pt;}
.x5{left:662.060140pt;}
}




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