
    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_b0b59fbbd325584a94239b4f.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.715000;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_9f7c972096912955e21b2f89.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.919000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_bfe97a7bbd12c21066d7fa31.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.000000;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_385d0bf896d4a7dba86dbde7.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.000000;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_9f4e7b680098ead6543c0178.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.000000;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_e8967ebc9c460f906161751a.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.738000;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_a259c558c454c6199977a590.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.000000;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_58304303abce6d70284c2f8d.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.921000;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_7437de7cade3dba8c52d45a5.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.665000;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_cfa600cff20112557ff3ab66.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.000000;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_215ce2395d973889f11965df.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.958008;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_de6c8010e6f7373a99eca67a.woff2')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_5d20eb73d2cdf29f07e2c90d.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.723000;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_411b69c2afff6a2409b7f245.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.904000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.fff{font-family:sans-serif;visibility:hidden;}
.ff10{font-family:sans-serif;visibility:hidden;}
.ff11{font-family:sans-serif;visibility:hidden;}
.m1{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v5{vertical-align:-16.872000px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:4.980000px;}
.v3{vertical-align:11.556000px;}
.v1{vertical-align:18.132000px;}
.v2{vertical-align:26.028000px;}
.ls6{letter-spacing:-0.008598px;}
.ls2{letter-spacing:0.000000px;}
.ls7{letter-spacing:0.000538px;}
.ls12{letter-spacing:0.000993px;}
.ls5{letter-spacing:0.006878px;}
.ls4{letter-spacing:0.008598px;}
.ls0{letter-spacing:2.988532px;}
.ls10{letter-spacing:4.276583px;}
.ls13{letter-spacing:6.516305px;}
.lsf{letter-spacing:7.332538px;}
.lse{letter-spacing:11.602583px;}
.ls11{letter-spacing:14.242583px;}
.ls1{letter-spacing:18.772438px;}
.lsd{letter-spacing:21.220583px;}
.ls8{letter-spacing:22.248538px;}
.ls14{letter-spacing:24.108305px;}
.ls9{letter-spacing:24.156538px;}
.ls3{letter-spacing:28.486438px;}
.lsb{letter-spacing:31.314305px;}
.lsa{letter-spacing:31.980305px;}
.lsc{letter-spacing:34.452305px;}
.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;}
}
.ws15b{word-spacing:-19.092327px;}
.wsdc{word-spacing:-16.605662px;}
.ws33{word-spacing:-15.278643px;}
.ws40{word-spacing:-14.111859px;}
.ws2{word-spacing:-13.117191px;}
.wsdd{word-spacing:-9.560976px;}
.ws131{word-spacing:-5.156487px;}
.ws9b{word-spacing:-3.275703px;}
.ws9a{word-spacing:-3.215927px;}
.ws23{word-spacing:-3.156152px;}
.wsf6{word-spacing:-3.096376px;}
.ws109{word-spacing:-2.976825px;}
.wsed{word-spacing:-2.917049px;}
.ws111{word-spacing:-2.857274px;}
.wsee{word-spacing:-2.797498px;}
.ws132{word-spacing:-2.737722px;}
.ws54{word-spacing:-2.558396px;}
.ws16{word-spacing:-2.548838px;}
.wsaa{word-spacing:-2.498620px;}
.ws9c{word-spacing:-2.438844px;}
.wsc{word-spacing:-2.405376px;}
.ws2b{word-spacing:-2.319293px;}
.ws5{word-spacing:-2.309735px;}
.ws5a{word-spacing:-2.259518px;}
.ws9{word-spacing:-2.070632px;}
.ws3a{word-spacing:-2.020415px;}
.wse0{word-spacing:-1.960640px;}
.ws24{word-spacing:-1.841088px;}
.ws17{word-spacing:-1.831529px;}
.ws171{word-spacing:-1.821965px;}
.ws15a{word-spacing:-1.781313px;}
.ws136{word-spacing:-1.721537px;}
.ws5c{word-spacing:-1.661762px;}
.wsc1{word-spacing:-1.601986px;}
.ws64{word-spacing:-1.542210px;}
.wsae{word-spacing:-1.422659px;}
.ws104{word-spacing:-1.362884px;}
.ws78{word-spacing:-1.303108px;}
.ws70{word-spacing:-1.243332px;}
.ws8{word-spacing:-1.209861px;}
.ws48{word-spacing:-1.183557px;}
.ws61{word-spacing:-1.123781px;}
.ws77{word-spacing:-1.064006px;}
.ws13f{word-spacing:-1.004230px;}
.ws43{word-spacing:-0.944454px;}
.ws37{word-spacing:-0.884679px;}
.ws67{word-spacing:-0.824903px;}
.ws52{word-spacing:-0.765128px;}
.wsd9{word-spacing:-0.705352px;}
.ws7{word-spacing:-0.683835px;}
.ws182{word-spacing:-0.674270px;}
.ws108{word-spacing:-0.645576px;}
.ws13e{word-spacing:-0.585801px;}
.wsab{word-spacing:-0.526025px;}
.wsb4{word-spacing:-0.466250px;}
.ws25{word-spacing:-0.346698px;}
.wsa8{word-spacing:-0.227147px;}
.ws14f{word-spacing:-0.167372px;}
.ws4a{word-spacing:-0.107596px;}
.ws3f{word-spacing:-0.047821px;}
.ws146{word-spacing:-0.000112px;}
.ws6e{word-spacing:0.000000px;}
.ws11c{word-spacing:0.011955px;}
.ws1f{word-spacing:0.081295px;}
.wse8{word-spacing:0.131506px;}
.ws162{word-spacing:0.180206px;}
.ws175{word-spacing:0.186500px;}
.ws127{word-spacing:0.251058px;}
.ws16f{word-spacing:0.282142px;}
.ws88{word-spacing:0.310833px;}
.ws11b{word-spacing:0.332578px;}
.wsa3{word-spacing:0.370609px;}
.ws8f{word-spacing:0.430384px;}
.ws112{word-spacing:0.442339px;}
.ws15{word-spacing:0.463860px;}
.ws5b{word-spacing:0.490160px;}
.ws7b{word-spacing:0.549936px;}
.ws47{word-spacing:0.609711px;}
.ws154{word-spacing:0.642251px;}
.ws123{word-spacing:0.669487px;}
.ws159{word-spacing:0.729262px;}
.ws15c{word-spacing:0.789038px;}
.ws9d{word-spacing:0.848814px;}
.ws18b{word-spacing:0.855989px;}
.wsb8{word-spacing:0.908589px;}
.wsf4{word-spacing:0.968365px;}
.ws13d{word-spacing:0.992457px;}
.ws11a{word-spacing:1.028140px;}
.ws49{word-spacing:1.087916px;}
.wse{word-spacing:1.133348px;}
.ws10a{word-spacing:1.147692px;}
.wsa4{word-spacing:1.207467px;}
.ws12e{word-spacing:1.267243px;}
.ws147{word-spacing:1.294888px;}
.ws145{word-spacing:1.318228px;}
.wsbf{word-spacing:1.327018px;}
.ws17e{word-spacing:1.382015px;}
.ws90{word-spacing:1.386794px;}
.ws170{word-spacing:1.420272px;}
.wsb5{word-spacing:1.446570px;}
.wsf{word-spacing:1.468092px;}
.ws12d{word-spacing:1.470480px;}
.wse3{word-spacing:1.506345px;}
.ws9f{word-spacing:1.566121px;}
.ws167{word-spacing:1.573298px;}
.ws1e{word-spacing:1.611554px;}
.wsb0{word-spacing:1.625896px;}
.ws82{word-spacing:1.685672px;}
.wseb{word-spacing:1.745448px;}
.ws44{word-spacing:1.805223px;}
.ws165{word-spacing:1.812401px;}
.ws3{word-spacing:1.850657px;}
.ws8c{word-spacing:1.864999px;}
.ws10c{word-spacing:1.924774px;}
.ws96{word-spacing:1.984550px;}
.ws65{word-spacing:2.044326px;}
.wsda{word-spacing:2.104101px;}
.ws6b{word-spacing:2.163877px;}
.ws19{word-spacing:2.185401px;}
.ws176{word-spacing:2.194966px;}
.ws101{word-spacing:2.223652px;}
.ws103{word-spacing:2.283428px;}
.wsd6{word-spacing:2.343204px;}
.ws4{word-spacing:2.376684px;}
.ws29{word-spacing:2.402979px;}
.ws2e{word-spacing:2.462755px;}
.ws76{word-spacing:2.522530px;}
.ws8b{word-spacing:2.642082px;}
.ws188{word-spacing:2.673172px;}
.wsec{word-spacing:2.701857px;}
.wse7{word-spacing:2.761633px;}
.ws163{word-spacing:2.807069px;}
.ws164{word-spacing:2.816633px;}
.ws5f{word-spacing:2.821408px;}
.ws18{word-spacing:2.854890px;}
.ws31{word-spacing:2.881184px;}
.ws1d{word-spacing:2.902710px;}
.ws26{word-spacing:2.940960px;}
.ws1b{word-spacing:2.950531px;}
.ws187{word-spacing:2.960095px;}
.ws157{word-spacing:3.000735px;}
.ws12a{word-spacing:3.060511px;}
.wsea{word-spacing:3.079693px;}
.wsd8{word-spacing:3.120286px;}
.ws51{word-spacing:3.180062px;}
.ws18a{word-spacing:3.199198px;}
.ws13{word-spacing:3.237455px;}
.wsb6{word-spacing:3.239838px;}
.ws59{word-spacing:3.299613px;}
.wsfc{word-spacing:3.359389px;}
.wsd0{word-spacing:3.419164px;}
.wscf{word-spacing:3.434369px;}
.ws158{word-spacing:3.443075px;}
.ws4f{word-spacing:3.478940px;}
.ws6c{word-spacing:3.483461px;}
.wsb7{word-spacing:3.502850px;}
.ws93{word-spacing:3.538716px;}
.wsc2{word-spacing:3.598491px;}
.ws58{word-spacing:3.658267px;}
.wsbb{word-spacing:3.718042px;}
.ws28{word-spacing:3.742974px;}
.ws149{word-spacing:3.754228px;}
.wsd4{word-spacing:3.777818px;}
.ws2f{word-spacing:3.789150px;}
.ws140{word-spacing:3.806091px;}
.wsde{word-spacing:3.837594px;}
.ws1{word-spacing:3.873485px;}
.ws94{word-spacing:3.897369px;}
.ws17f{word-spacing:3.906943px;}
.ws137{word-spacing:3.957145px;}
.ws45{word-spacing:4.016920px;}
.ws166{word-spacing:4.050405px;}
.ws55{word-spacing:4.076696px;}
.ws83{word-spacing:4.136472px;}
.wsb{word-spacing:4.193867px;}
.ws75{word-spacing:4.196247px;}
.ws30{word-spacing:4.247147px;}
.ws4c{word-spacing:4.256023px;}
.wsa{word-spacing:4.289508px;}
.ws2a{word-spacing:4.315798px;}
.ws14{word-spacing:4.337328px;}
.ws53{word-spacing:4.375574px;}
.ws4b{word-spacing:4.435350px;}
.ws183{word-spacing:4.490354px;}
.ws106{word-spacing:4.495125px;}
.ws2c{word-spacing:4.554901px;}
.wsba{word-spacing:4.614676px;}
.ws177{word-spacing:4.672073px;}
.ws69{word-spacing:4.674452px;}
.ws60{word-spacing:4.734228px;}
.ws184{word-spacing:4.800399px;}
.ws10b{word-spacing:4.805958px;}
.wsa1{word-spacing:4.853779px;}
.ws80{word-spacing:4.913554px;}
.wsfe{word-spacing:4.925509px;}
.ws3c{word-spacing:4.973330px;}
.ws86{word-spacing:5.033106px;}
.ws180{word-spacing:5.054637px;}
.ws14b{word-spacing:5.075466px;}
.wsad{word-spacing:5.092881px;}
.ws16e{word-spacing:5.112022px;}
.wsd7{word-spacing:5.152657px;}
.wsd2{word-spacing:5.212432px;}
.ws116{word-spacing:5.244905px;}
.ws15e{word-spacing:5.245920px;}
.wsaf{word-spacing:5.272208px;}
.wse2{word-spacing:5.331984px;}
.ws6{word-spacing:5.341561px;}
.ws36{word-spacing:5.391759px;}
.wsac{word-spacing:5.440918px;}
.ws174{word-spacing:5.446766px;}
.ws6a{word-spacing:5.451535px;}
.ws113{word-spacing:5.511310px;}
.ws4d{word-spacing:5.571086px;}
.ws12{word-spacing:5.580664px;}
.ws6d{word-spacing:5.630862px;}
.ws114{word-spacing:5.642463px;}
.ws2d{word-spacing:5.690637px;}
.ws27{word-spacing:5.762368px;}
.wse4{word-spacing:5.810188px;}
.ws13a{word-spacing:5.869964px;}
.wsf5{word-spacing:5.929740px;}
.ws161{word-spacing:5.972793px;}
.ws66{word-spacing:5.989515px;}
.ws32{word-spacing:6.049291px;}
.ws11f{word-spacing:6.061246px;}
.wsdf{word-spacing:6.121021px;}
.ws5d{word-spacing:6.168842px;}
.ws110{word-spacing:6.228618px;}
.wsa2{word-spacing:6.288393px;}
.wsef{word-spacing:6.348169px;}
.ws14c{word-spacing:6.394391px;}
.ws102{word-spacing:6.407944px;}
.wsb2{word-spacing:6.467720px;}
.ws18c{word-spacing:6.498820px;}
.wsbc{word-spacing:6.527496px;}
.ws1a{word-spacing:6.537076px;}
.ws3b{word-spacing:6.587271px;}
.wscb{word-spacing:6.647047px;}
.ws122{word-spacing:6.670957px;}
.ws134{word-spacing:6.706822px;}
.wsc6{word-spacing:6.714734px;}
.wsc7{word-spacing:6.720734px;}
.ws129{word-spacing:6.760425px;}
.wsa0{word-spacing:6.766598px;}
.ws128{word-spacing:6.826374px;}
.ws10d{word-spacing:6.886149px;}
.wsc8{word-spacing:6.945925px;}
.ws105{word-spacing:6.957880px;}
.wsd{word-spacing:6.967461px;}
.ws41{word-spacing:7.005700px;}
.ws12b{word-spacing:7.065476px;}
.ws185{word-spacing:7.110923px;}
.ws4e{word-spacing:7.125252px;}
.wse5{word-spacing:7.143912px;}
.wsfd{word-spacing:7.185027px;}
.ws12f{word-spacing:7.244803px;}
.wsf2{word-spacing:7.304578px;}
.wse9{word-spacing:7.316533px;}
.ws14a{word-spacing:7.364354px;}
.wsc0{word-spacing:7.424130px;}
.ws99{word-spacing:7.483905px;}
.ws74{word-spacing:7.543681px;}
.ws126{word-spacing:7.603456px;}
.ws138{word-spacing:7.663232px;}
.ws95{word-spacing:7.782783px;}
.ws133{word-spacing:7.842559px;}
.ws68{word-spacing:7.902334px;}
.ws17b{word-spacing:7.933438px;}
.wsdb{word-spacing:7.962110px;}
.ws39{word-spacing:8.021886px;}
.ws16a{word-spacing:8.029079px;}
.ws181{word-spacing:8.076899px;}
.wsa9{word-spacing:8.081661px;}
.ws97{word-spacing:8.141437px;}
.ws118{word-spacing:8.201212px;}
.ws87{word-spacing:8.260988px;}
.ws115{word-spacing:8.272943px;}
.ws42{word-spacing:8.340747px;}
.ws10{word-spacing:8.354259px;}
.ws17c{word-spacing:8.356508px;}
.ws10e{word-spacing:8.380539px;}
.ws15d{word-spacing:8.394533px;}
.ws15f{word-spacing:8.420448px;}
.ws11d{word-spacing:8.440315px;}
.ws1c{word-spacing:8.497721px;}
.ws38{word-spacing:8.500090px;}
.ws3e{word-spacing:8.555105px;}
.ws9e{word-spacing:8.559866px;}
.ws72{word-spacing:8.619642px;}
.ws18d{word-spacing:8.641182px;}
.ws17a{word-spacing:8.650747px;}
.ws5e{word-spacing:8.679417px;}
.ws8d{word-spacing:8.739193px;}
.ws160{word-spacing:8.794208px;}
.wsb3{word-spacing:8.798968px;}
.ws8e{word-spacing:8.858744px;}
.ws153{word-spacing:8.944130px;}
.ws139{word-spacing:8.965302px;}
.wsff{word-spacing:8.978295px;}
.ws7a{word-spacing:9.038071px;}
.ws7d{word-spacing:9.097846px;}
.ws172{word-spacing:9.128953px;}
.ws73{word-spacing:9.157622px;}
.wsb1{word-spacing:9.217398px;}
.ws10f{word-spacing:9.277173px;}
.ws11{word-spacing:9.310671px;}
.ws107{word-spacing:9.336949px;}
.ws91{word-spacing:9.396724px;}
.wsa7{word-spacing:9.456500px;}
.ws98{word-spacing:9.468059px;}
.wsf0{word-spacing:9.576051px;}
.wsb9{word-spacing:9.635827px;}
.ws71{word-spacing:9.695602px;}
.wsbe{word-spacing:9.755378px;}
.ws14d{word-spacing:9.799649px;}
.ws14e{word-spacing:9.815154px;}
.ws85{word-spacing:9.934705px;}
.wsa6{word-spacing:9.994480px;}
.ws117{word-spacing:10.006435px;}
.ws46{word-spacing:10.054256px;}
.ws16b{word-spacing:10.075800px;}
.ws169{word-spacing:10.085365px;}
.wsfb{word-spacing:10.114032px;}
.wsbd{word-spacing:10.173807px;}
.wsf3{word-spacing:10.233583px;}
.ws155{word-spacing:10.293358px;}
.ws125{word-spacing:10.353134px;}
.ws17d{word-spacing:10.410545px;}
.ws12c{word-spacing:10.412910px;}
.ws148{word-spacing:10.421279px;}
.ws8a{word-spacing:10.472685px;}
.wsa5{word-spacing:10.532461px;}
.wsd5{word-spacing:10.592236px;}
.ws11e{word-spacing:10.652012px;}
.wsf1{word-spacing:10.711788px;}
.ws100{word-spacing:10.771563px;}
.ws6f{word-spacing:10.831339px;}
.ws3d{word-spacing:10.850494px;}
.wse1{word-spacing:10.891114px;}
.wsc9{word-spacing:10.950890px;}
.ws143{word-spacing:10.988324px;}
.ws63{word-spacing:11.010666px;}
.ws7e{word-spacing:11.070441px;}
.ws173{word-spacing:11.127854px;}
.ws62{word-spacing:11.130217px;}
.wsf8{word-spacing:11.309544px;}
.ws119{word-spacing:11.311915px;}
.ws81{word-spacing:11.429095px;}
.ws135{word-spacing:11.488870px;}
.wse6{word-spacing:11.548646px;}
.ws16c{word-spacing:11.558239px;}
.ws13c{word-spacing:11.594155px;}
.ws7f{word-spacing:11.608422px;}
.ws156{word-spacing:11.610905px;}
.ws35{word-spacing:11.668197px;}
.ws34{word-spacing:11.675422px;}
.ws152{word-spacing:11.712225px;}
.ws79{word-spacing:11.727973px;}
.ws89{word-spacing:11.787748px;}
.ws84{word-spacing:11.847524px;}
.wscc{word-spacing:11.907300px;}
.wsf9{word-spacing:11.967075px;}
.ws50{word-spacing:12.026851px;}
.ws57{word-spacing:12.086626px;}
.ws56{word-spacing:12.206178px;}
.wsfa{word-spacing:12.265953px;}
.wsc4{word-spacing:12.385504px;}
.wsca{word-spacing:12.445280px;}
.ws7c{word-spacing:12.505056px;}
.ws186{word-spacing:12.524215px;}
.ws150{word-spacing:12.527755px;}
.wsd3{word-spacing:12.564831px;}
.ws144{word-spacing:12.653715px;}
.wsf7{word-spacing:12.744158px;}
.wsd1{word-spacing:12.803934px;}
.wsce{word-spacing:12.983260px;}
.ws130{word-spacing:13.043036px;}
.ws124{word-spacing:13.102812px;}
.ws13b{word-spacing:13.162587px;}
.ws121{word-spacing:13.280877px;}
.ws189{word-spacing:13.662345px;}
.ws92{word-spacing:13.783932px;}
.ws151{word-spacing:13.866197px;}
.ws120{word-spacing:13.939670px;}
.ws22{word-spacing:13.963580px;}
.ws179{word-spacing:14.006654px;}
.wsc3{word-spacing:14.656977px;}
.ws142{word-spacing:14.716753px;}
.ws178{word-spacing:15.622990px;}
.wscd{word-spacing:16.510021px;}
.ws16d{word-spacing:17.067172px;}
.ws141{word-spacing:18.064186px;}
.wsc5{word-spacing:22.188703px;}
.ws21{word-spacing:31.164685px;}
.ws168{word-spacing:33.134894px;}
.ws20{word-spacing:34.607768px;}
.ws0{word-spacing:44.765503px;}
._20{margin-left:-34.370970px;}
._b{margin-left:-31.824634px;}
._a{margin-left:-30.605216px;}
._6{margin-left:-29.266207px;}
._15{margin-left:-27.544392px;}
._12{margin-left:-24.842794px;}
._9{margin-left:-22.810426px;}
._13{margin-left:-18.841316px;}
._0{margin-left:-11.600363px;}
._f{margin-left:-7.580956px;}
._8{margin-left:-6.503602px;}
._21{margin-left:-5.320028px;}
._1{margin-left:-4.015510px;}
._11{margin-left:-3.012507px;}
._4{margin-left:-1.936742px;}
._c{width:1.052037px;}
._7{width:2.247584px;}
._2{width:3.866788px;}
._d{width:7.415786px;}
._5{width:9.042254px;}
._1d{width:13.389734px;}
._1e{width:15.183002px;}
._22{width:16.557676px;}
._1f{width:17.801113px;}
._1a{width:19.056653px;}
._10{width:20.303308px;}
._17{width:22.380277px;}
._26{width:23.526244px;}
._14{width:24.735261px;}
._16{width:26.289335px;}
._23{width:27.341482px;}
._18{width:29.397667px;}
._19{width:30.794979px;}
._3{width:32.187226px;}
._1b{width:33.223270px;}
._1c{width:39.345714px;}
._25{width:40.486927px;}
._28{width:44.852899px;}
._24{width:48.164077px;}
._27{width:55.280614px;}
._e{width:56.578377px;}
.fc1{color:transparent;}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:28.346400px;}
.fs6{font-size:34.392000px;}
.fs4{font-size:35.865600px;}
.fs8{font-size:37.795200px;}
.fs5{font-size:42.990000px;}
.fs2{font-size:47.820600px;}
.fs3{font-size:59.775600px;}
.fs1{font-size:71.731200px;}
.fs0{font-size:148.722600px;}
.y0{bottom:0.000000px;}
.y178{bottom:2.117122px;}
.y113{bottom:5.242577px;}
.y177{bottom:13.138261px;}
.y100{bottom:14.128303px;}
.y179{bottom:17.799915px;}
.yfe{bottom:19.205863px;}
.y180{bottom:29.110424px;}
.y111{bottom:39.665814px;}
.y17a{bottom:45.012459px;}
.y185{bottom:50.454968px;}
.y189{bottom:51.647288px;}
.y101{bottom:52.922947px;}
.yfc{bottom:55.123557px;}
.yfd{bottom:56.462475px;}
.y190{bottom:57.331332px;}
.y3e{bottom:64.129500px;}
.y18d{bottom:71.696461px;}
.y17b{bottom:72.225003px;}
.y102{bottom:75.947585px;}
.y3d{bottom:77.280000px;}
.y110{bottom:79.016910px;}
.y71{bottom:82.062000px;}
.yfa{bottom:82.063500px;}
.y186{bottom:83.110021px;}
.y18c{bottom:85.567004px;}
.y1c6{bottom:90.774000px;}
.y10b{bottom:91.912298px;}
.y106{bottom:92.204630px;}
.y3c{bottom:94.650000px;}
.y10a{bottom:96.008170px;}
.y17c{bottom:99.437547px;}
.yd3{bottom:99.994500px;}
.yab{bottom:99.996000px;}
.y10d{bottom:100.762756px;}
.y175{bottom:101.317500px;}
.y1c5{bottom:104.268000px;}
.y70{bottom:105.199500px;}
.y109{bottom:105.680920px;}
.y18b{bottom:113.308090px;}
.y10c{bottom:113.491880px;}
.y105{bottom:113.784266px;}
.y187{bottom:115.765074px;}
.yd2{bottom:117.927000px;}
.yaa{bottom:117.928500px;}
.y10e{bottom:118.367967px;}
.y174{bottom:119.250000px;}
.y3b{bottom:121.534500px;}
.y6f{bottom:123.133500px;}
.y1c4{bottom:124.443000px;}
.y17d{bottom:126.650091px;}
.y18a{bottom:127.178633px;}
.ya9{bottom:135.861000px;}
.y3a{bottom:139.467000px;}
.y6e{bottom:141.066000px;}
.y104{bottom:143.957281px;}
.y112{bottom:144.685048px;}
.y173{bottom:146.076000px;}
.y188{bottom:148.420126px;}
.ya8{bottom:153.793500px;}
.y17e{bottom:153.862635px;}
.y182{bottom:154.127644px;}
.y39{bottom:157.399500px;}
.y1c3{bottom:157.407000px;}
.y10f{bottom:157.719079px;}
.y6d{bottom:158.998500px;}
.y103{bottom:166.074239px;}
.y181{bottom:167.998188px;}
.ya7{bottom:171.726000px;}
.y11c{bottom:171.727500px;}
.y38{bottom:175.332000px;}
.y1c2{bottom:175.339500px;}
.yff{bottom:176.229391px;}
.y6c{bottom:176.931000px;}
.y108{bottom:177.249113px;}
.y172{bottom:181.044000px;}
.y17f{bottom:181.075179px;}
.y107{bottom:186.921863px;}
.ya6{bottom:189.658500px;}
.yf9{bottom:189.660000px;}
.y37{bottom:193.264500px;}
.y1c1{bottom:193.272000px;}
.y6b{bottom:194.863500px;}
.y171{bottom:198.976500px;}
.yd1{bottom:207.591000px;}
.ya5{bottom:207.592500px;}
.y36{bottom:211.198500px;}
.y1c0{bottom:211.204500px;}
.y6a{bottom:212.796000px;}
.y170{bottom:216.909000px;}
.yd0{bottom:225.523500px;}
.ya4{bottom:225.525000px;}
.y35{bottom:229.131000px;}
.y1bf{bottom:229.138500px;}
.y69{bottom:230.730000px;}
.y16f{bottom:234.841500px;}
.ya3{bottom:243.457500px;}
.y34{bottom:247.063500px;}
.y1be{bottom:247.071000px;}
.y68{bottom:248.662500px;}
.y16e{bottom:252.774000px;}
.ycf{bottom:261.390000px;}
.y33{bottom:264.996000px;}
.y1bd{bottom:265.003500px;}
.y67{bottom:266.595000px;}
.y16d{bottom:270.706500px;}
.ya2{bottom:271.335000px;}
.yce{bottom:279.322500px;}
.y32{bottom:282.928500px;}
.y66{bottom:284.527500px;}
.y16c{bottom:289.962000px;}
.y1bc{bottom:290.647500px;}
.ycd{bottom:297.255000px;}
.yf8{bottom:297.256500px;}
.y31{bottom:300.862500px;}
.y65{bottom:302.460000px;}
.y16b{bottom:307.894500px;}
.ya1{bottom:308.085000px;}
.ycc{bottom:315.187500px;}
.yf7{bottom:315.189000px;}
.y30{bottom:318.795000px;}
.y64{bottom:320.392500px;}
.y1bb{bottom:323.610000px;}
.y16a{bottom:325.827000px;}
.ya0{bottom:326.017500px;}
.y145{bottom:333.120000px;}
.ycb{bottom:333.121500px;}
.y2f{bottom:336.727500px;}
.y63{bottom:338.326500px;}
.y1ba{bottom:341.544000px;}
.y169{bottom:343.759500px;}
.y9f{bottom:343.950000px;}
.yca{bottom:351.054000px;}
.y2e{bottom:354.660000px;}
.y62{bottom:356.259000px;}
.y1b9{bottom:359.476500px;}
.y168{bottom:361.692000px;}
.y9e{bottom:361.884000px;}
.yc9{bottom:368.986500px;}
.y2d{bottom:372.592500px;}
.y61{bottom:374.191500px;}
.y1b8{bottom:377.409000px;}
.y167{bottom:379.624500px;}
.y9d{bottom:379.816500px;}
.yc8{bottom:386.919000px;}
.y2c{bottom:390.525000px;}
.y60{bottom:392.124000px;}
.y1b7{bottom:395.341500px;}
.y166{bottom:397.558500px;}
.y9c{bottom:399.636000px;}
.yc7{bottom:404.851500px;}
.yf6{bottom:404.853000px;}
.y2b{bottom:408.459000px;}
.y5f{bottom:410.056500px;}
.y1b6{bottom:413.274000px;}
.y165{bottom:415.491000px;}
.y9b{bottom:417.568500px;}
.yc6{bottom:422.784000px;}
.yf5{bottom:422.785500px;}
.y2a{bottom:426.391500px;}
.y5e{bottom:427.990500px;}
.y1b5{bottom:431.893500px;}
.y164{bottom:433.423500px;}
.y9a{bottom:435.501000px;}
.yc5{bottom:440.718000px;}
.y193{bottom:443.943000px;}
.y29{bottom:444.324000px;}
.y5d{bottom:445.923000px;}
.y1b4{bottom:449.826000px;}
.y163{bottom:452.677500px;}
.y99{bottom:453.433500px;}
.yc4{bottom:458.650500px;}
.y192{bottom:461.875500px;}
.y28{bottom:462.256500px;}
.y5c{bottom:463.855500px;}
.y1b3{bottom:467.758500px;}
.y162{bottom:470.610000px;}
.y98{bottom:471.366000px;}
.yc3{bottom:476.583000px;}
.y27{bottom:480.189000px;}
.y5b{bottom:481.788000px;}
.y1b2{bottom:485.691000px;}
.y161{bottom:488.542500px;}
.y97{bottom:489.300000px;}
.y191{bottom:493.108500px;}
.y11b{bottom:494.515500px;}
.yf4{bottom:494.517000px;}
.y5a{bottom:499.720500px;}
.y144{bottom:502.456500px;}
.y1b1{bottom:503.623500px;}
.y26{bottom:505.855500px;}
.y160{bottom:506.476500px;}
.y96{bottom:507.232500px;}
.y18f{bottom:511.041000px;}
.y12e{bottom:512.448000px;}
.yf3{bottom:512.449500px;}
.y59{bottom:517.653000px;}
.yc2{bottom:519.750000px;}
.y1b0{bottom:521.557500px;}
.y15f{bottom:524.409000px;}
.y95{bottom:525.165000px;}
.yf2{bottom:530.382000px;}
.y58{bottom:535.587000px;}
.y143{bottom:535.809000px;}
.yc1{bottom:537.682500px;}
.y1af{bottom:539.490000px;}
.y15e{bottom:542.341500px;}
.y94{bottom:543.097500px;}
.y25{bottom:547.645500px;}
.yf1{bottom:548.314500px;}
.y57{bottom:553.519500px;}
.y142{bottom:553.743000px;}
.yc0{bottom:555.615000px;}
.y1ae{bottom:557.422500px;}
.y15d{bottom:560.274000px;}
.y93{bottom:561.030000px;}
.y24{bottom:561.393000px;}
.yf0{bottom:566.247000px;}
.y141{bottom:571.675500px;}
.ybf{bottom:573.547500px;}
.y1ad{bottom:575.355000px;}
.y1f0{bottom:576.067500px;}
.y56{bottom:576.657000px;}
.y15c{bottom:578.206500px;}
.y92{bottom:578.962500px;}
.y23{bottom:580.144500px;}
.yef{bottom:584.179500px;}
.y1ef{bottom:589.218000px;}
.y140{bottom:589.608000px;}
.ybe{bottom:591.480000px;}
.y1ac{bottom:593.287500px;}
.y22{bottom:593.892000px;}
.y55{bottom:594.589500px;}
.y91{bottom:596.896500px;}
.y15b{bottom:597.462000px;}
.y11a{bottom:602.112000px;}
.yee{bottom:602.113500px;}
.y1ee{bottom:602.368500px;}
.y13f{bottom:607.540500px;}
.y21{bottom:607.641000px;}
.ybd{bottom:609.414000px;}
.y1ab{bottom:611.220000px;}
.y54{bottom:612.522000px;}
.y90{bottom:614.829000px;}
.y15a{bottom:615.394500px;}
.y1ed{bottom:615.519000px;}
.yed{bottom:620.046000px;}
.y20{bottom:621.388500px;}
.y13e{bottom:625.473000px;}
.ybc{bottom:627.346500px;}
.y1ec{bottom:628.669500px;}
.y1aa{bottom:629.154000px;}
.y53{bottom:630.456000px;}
.y8f{bottom:632.761500px;}
.y159{bottom:633.327000px;}
.y1f{bottom:635.137500px;}
.yec{bottom:637.978500px;}
.y1eb{bottom:641.820000px;}
.y13d{bottom:643.407000px;}
.ybb{bottom:645.279000px;}
.y1a9{bottom:647.086500px;}
.y52{bottom:648.388500px;}
.y1e{bottom:648.886500px;}
.y8e{bottom:650.694000px;}
.y158{bottom:651.259500px;}
.y1ea{bottom:654.972000px;}
.yeb{bottom:655.911000px;}
.y1d{bottom:662.634000px;}
.yba{bottom:663.211500px;}
.y51{bottom:666.321000px;}
.y1e9{bottom:668.122500px;}
.y8d{bottom:668.626500px;}
.y157{bottom:669.192000px;}
.y13c{bottom:670.513500px;}
.y1a8{bottom:672.729000px;}
.yea{bottom:673.843500px;}
.y1c{bottom:676.383000px;}
.yb9{bottom:681.144000px;}
.y1e8{bottom:681.273000px;}
.y50{bottom:684.253500px;}
.y8c{bottom:686.559000px;}
.y156{bottom:687.124500px;}
.y13b{bottom:688.446000px;}
.y1b{bottom:690.132000px;}
.ye9{bottom:691.776000px;}
.y1e7{bottom:694.423500px;}
.yb8{bottom:699.078000px;}
.y4f{bottom:702.186000px;}
.y1a{bottom:703.879500px;}
.y8b{bottom:704.493000px;}
.y155{bottom:705.057000px;}
.y1a7{bottom:705.693000px;}
.y13a{bottom:706.378500px;}
.y1e6{bottom:707.574000px;}
.y11f{bottom:709.708500px;}
.ye8{bottom:709.710000px;}
.yb7{bottom:717.010500px;}
.y19{bottom:717.628500px;}
.y4e{bottom:720.118500px;}
.y18e{bottom:720.363000px;}
.y1e5{bottom:720.724500px;}
.y8a{bottom:722.425500px;}
.y154{bottom:722.991000px;}
.y1a6{bottom:723.625500px;}
.y139{bottom:724.311000px;}
.ye7{bottom:727.642500px;}
.y18{bottom:731.376000px;}
.y1e4{bottom:733.875000px;}
.yb6{bottom:734.943000px;}
.y4d{bottom:738.052500px;}
.y184{bottom:738.295500px;}
.y89{bottom:740.358000px;}
.y153{bottom:740.923500px;}
.y1a5{bottom:741.559500px;}
.y138{bottom:742.243500px;}
.y17{bottom:745.125000px;}
.ye6{bottom:745.575000px;}
.y1e3{bottom:747.025500px;}
.y4c{bottom:755.985000px;}
.y88{bottom:758.290500px;}
.y152{bottom:758.856000px;}
.y16{bottom:758.874000px;}
.y1a4{bottom:759.492000px;}
.y11e{bottom:760.177500px;}
.ye5{bottom:763.507500px;}
.y15{bottom:773.320500px;}
.y1e2{bottom:773.328000px;}
.y4b{bottom:773.917500px;}
.y87{bottom:776.223000px;}
.y151{bottom:776.788500px;}
.y1a3{bottom:777.424500px;}
.yb5{bottom:778.110000px;}
.ye4{bottom:781.440000px;}
.y1e1{bottom:786.478500px;}
.y14{bottom:787.068000px;}
.y4a{bottom:791.850000px;}
.y86{bottom:794.155500px;}
.y150{bottom:794.721000px;}
.y1a2{bottom:795.357000px;}
.yb4{bottom:796.042500px;}
.y119{bottom:799.372500px;}
.y1e0{bottom:799.629000px;}
.y13{bottom:800.817000px;}
.y136{bottom:808.546500px;}
.y49{bottom:809.782500px;}
.y85{bottom:812.089500px;}
.y14f{bottom:812.653500px;}
.y1df{bottom:812.779500px;}
.y1a1{bottom:813.289500px;}
.yb3{bottom:813.975000px;}
.y12{bottom:814.566000px;}
.y118{bottom:817.306500px;}
.y12d{bottom:819.505500px;}
.ye3{bottom:821.031000px;}
.y1de{bottom:825.930000px;}
.y135{bottom:826.479000px;}
.y48{bottom:827.715000px;}
.y11{bottom:828.313500px;}
.y84{bottom:830.022000px;}
.y14e{bottom:830.587500px;}
.y1a0{bottom:831.222000px;}
.yb2{bottom:831.907500px;}
.y11d{bottom:831.909000px;}
.y12c{bottom:837.439500px;}
.ye2{bottom:838.963500px;}
.y1dd{bottom:839.080500px;}
.y10{bottom:842.062500px;}
.y134{bottom:844.413000px;}
.y47{bottom:845.649000px;}
.y14d{bottom:848.520000px;}
.y19f{bottom:849.156000px;}
.y117{bottom:849.696000px;}
.yb1{bottom:849.840000px;}
.y83{bottom:849.841500px;}
.y1dc{bottom:852.231000px;}
.y12b{bottom:855.372000px;}
.yf{bottom:855.810000px;}
.ye1{bottom:856.897500px;}
.y133{bottom:862.345500px;}
.y46{bottom:863.581500px;}
.y1db{bottom:865.383000px;}
.y14c{bottom:866.452500px;}
.y19e{bottom:867.088500px;}
.y82{bottom:867.774000px;}
.ye{bottom:869.559000px;}
.y12a{bottom:873.304500px;}
.ye0{bottom:874.830000px;}
.y1da{bottom:878.533500px;}
.y132{bottom:880.278000px;}
.y45{bottom:881.514000px;}
.yd{bottom:883.308000px;}
.y14b{bottom:884.385000px;}
.y19d{bottom:885.021000px;}
.y81{bottom:885.706500px;}
.y129{bottom:891.237000px;}
.y1d9{bottom:891.684000px;}
.ydf{bottom:892.762500px;}
.yc{bottom:897.055500px;}
.y131{bottom:898.210500px;}
.y44{bottom:899.446500px;}
.y14a{bottom:902.317500px;}
.y19c{bottom:902.953500px;}
.y80{bottom:903.639000px;}
.y1d8{bottom:904.834500px;}
.y116{bottom:908.529000px;}
.y128{bottom:909.169500px;}
.yde{bottom:910.695000px;}
.yb{bottom:910.804500px;}
.y130{bottom:916.143000px;}
.y43{bottom:917.379000px;}
.y1d7{bottom:917.985000px;}
.y149{bottom:920.250000px;}
.y19b{bottom:920.886000px;}
.y7f{bottom:921.571500px;}
.ya{bottom:924.553500px;}
.y115{bottom:926.461500px;}
.y127{bottom:927.102000px;}
.ydd{bottom:928.627500px;}
.y1d6{bottom:931.135500px;}
.y42{bottom:935.311500px;}
.y148{bottom:938.184000px;}
.y9{bottom:938.301000px;}
.y19a{bottom:938.818500px;}
.yb0{bottom:939.504000px;}
.y7e{bottom:939.505500px;}
.y12f{bottom:942.016500px;}
.y1d5{bottom:944.286000px;}
.y114{bottom:944.394000px;}
.y126{bottom:945.036000px;}
.ydc{bottom:946.561500px;}
.y183{bottom:947.617500px;}
.y8{bottom:952.050000px;}
.y41{bottom:953.245500px;}
.y147{bottom:956.116500px;}
.y199{bottom:956.752500px;}
.y137{bottom:957.436500px;}
.y7d{bottom:957.438000px;}
.y125{bottom:962.968500px;}
.ydb{bottom:964.494000px;}
.y176{bottom:965.550000px;}
.y7{bottom:965.799000px;}
.y1d4{bottom:970.588500px;}
.y40{bottom:971.178000px;}
.yfb{bottom:971.890500px;}
.y146{bottom:974.049000px;}
.y198{bottom:974.685000px;}
.y7c{bottom:975.370500px;}
.y6{bottom:979.546500px;}
.y124{bottom:980.901000px;}
.yda{bottom:982.426500px;}
.y1d3{bottom:983.739000px;}
.y3f{bottom:989.110500px;}
.y197{bottom:992.617500px;}
.y5{bottom:993.295500px;}
.y7b{bottom:993.303000px;}
.y1d2{bottom:996.889500px;}
.y123{bottom:998.833500px;}
.yd9{bottom:1000.359000px;}
.y4{bottom:1007.043000px;}
.y1d1{bottom:1010.040000px;}
.y196{bottom:1010.550000px;}
.y7a{bottom:1011.235500px;}
.y122{bottom:1016.766000px;}
.yd8{bottom:1018.291500px;}
.y1d0{bottom:1023.190500px;}
.y195{bottom:1028.482500px;}
.yaf{bottom:1029.168000px;}
.y79{bottom:1029.169500px;}
.y121{bottom:1034.698500px;}
.yd7{bottom:1036.224000px;}
.y1cf{bottom:1036.341000px;}
.y194{bottom:1046.415000px;}
.yae{bottom:1047.100500px;}
.y78{bottom:1047.102000px;}
.y1ce{bottom:1049.491500px;}
.yd6{bottom:1054.158000px;}
.y3{bottom:1054.761000px;}
.y1cd{bottom:1062.643500px;}
.y120{bottom:1063.161000px;}
.y77{bottom:1065.034500px;}
.yd5{bottom:1072.090500px;}
.y1cc{bottom:1075.794000px;}
.y76{bottom:1082.967000px;}
.y1cb{bottom:1088.944500px;}
.yd4{bottom:1090.023000px;}
.y2{bottom:1090.626000px;}
.y75{bottom:1100.899500px;}
.y1ca{bottom:1102.095000px;}
.y1c9{bottom:1115.245500px;}
.y74{bottom:1118.832000px;}
.y1c8{bottom:1128.396000px;}
.y1{bottom:1132.468500px;}
.yad{bottom:1136.764500px;}
.y73{bottom:1136.766000px;}
.y1c7{bottom:1141.546500px;}
.yac{bottom:1154.697000px;}
.y72{bottom:1154.698500px;}
.ha{height:23.850624px;}
.he{height:25.140552px;}
.hf{height:25.340590px;}
.h11{height:26.333806px;}
.hd{height:31.675737px;}
.h12{height:35.111741px;}
.h5{height:35.865450px;}
.h8{height:42.799330px;}
.h9{height:44.831700px;}
.hb{height:44.837700px;}
.h6{height:47.421450px;}
.h7{height:47.779330px;}
.h4{height:61.893450px;}
.h3{height:69.348077px;}
.h2{height:103.957097px;}
.hc{height:197.754000px;}
.h10{height:204.094080px;}
.h1{height:1254.000000px;}
.h0{height:1254.330000px;}
.w3{width:272.125440px;}
.w2{width:340.158375px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2d{left:11.441906px;}
.x31{left:13.922216px;}
.x2c{left:15.767685px;}
.x30{left:18.351341px;}
.x2b{left:21.429583px;}
.x2a{left:27.364611px;}
.x20{left:35.784097px;}
.x14{left:38.428654px;}
.x28{left:39.497017px;}
.x1c{left:42.012461px;}
.x32{left:68.976240px;}
.xd{left:73.984500px;}
.xe{left:88.929000px;}
.x13{left:96.490571px;}
.x6{left:116.503500px;}
.x29{left:117.983032px;}
.x1{left:122.028000px;}
.x33{left:125.363430px;}
.xa{left:126.666000px;}
.x5{left:131.448000px;}
.x16{left:136.220371px;}
.x1f{left:139.126065px;}
.x18{left:141.222902px;}
.x12{left:144.325500px;}
.x22{left:146.392500px;}
.x26{left:148.447500px;}
.x19{left:150.013551px;}
.x17{left:151.415401px;}
.x2e{left:174.379080px;}
.xf{left:178.014000px;}
.x1d{left:180.974143px;}
.x1e{left:187.977214px;}
.x3{left:215.545500px;}
.x34{left:222.163500px;}
.x8{left:226.251000px;}
.x7{left:239.002500px;}
.x35{left:240.339000px;}
.x1b{left:248.026775px;}
.x1a{left:249.476290px;}
.x21{left:290.994259px;}
.x15{left:301.074124px;}
.x9{left:328.251000px;}
.x2{left:360.505500px;}
.x4{left:367.320000px;}
.x10{left:435.402000px;}
.x11{left:450.345000px;}
.x27{left:471.907500px;}
.xb{left:477.921000px;}
.xc{left:492.865500px;}
.x36{left:505.152000px;}
.x23{left:507.808500px;}
.x24{left:589.486500px;}
.x2f{left:595.933500px;}
.x25{left:687.850500px;}
@media print{
.v5{vertical-align:-14.997333pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:4.426667pt;}
.v3{vertical-align:10.272000pt;}
.v1{vertical-align:16.117333pt;}
.v2{vertical-align:23.136000pt;}
.ls6{letter-spacing:-0.007643pt;}
.ls2{letter-spacing:0.000000pt;}
.ls7{letter-spacing:0.000479pt;}
.ls12{letter-spacing:0.000882pt;}
.ls5{letter-spacing:0.006114pt;}
.ls4{letter-spacing:0.007643pt;}
.ls0{letter-spacing:2.656473pt;}
.ls10{letter-spacing:3.801407pt;}
.ls13{letter-spacing:5.792271pt;}
.lsf{letter-spacing:6.517812pt;}
.lse{letter-spacing:10.313407pt;}
.ls11{letter-spacing:12.660074pt;}
.ls1{letter-spacing:16.686612pt;}
.lsd{letter-spacing:18.862740pt;}
.ls8{letter-spacing:19.776479pt;}
.ls14{letter-spacing:21.429605pt;}
.ls9{letter-spacing:21.472479pt;}
.ls3{letter-spacing:25.321279pt;}
.lsb{letter-spacing:27.834938pt;}
.lsa{letter-spacing:28.426938pt;}
.lsc{letter-spacing:30.624271pt;}
.ws15b{word-spacing:-16.970957pt;}
.wsdc{word-spacing:-14.760588pt;}
.ws33{word-spacing:-13.581016pt;}
.ws40{word-spacing:-12.543875pt;}
.ws2{word-spacing:-11.659725pt;}
.wsdd{word-spacing:-8.498645pt;}
.ws131{word-spacing:-4.583544pt;}
.ws9b{word-spacing:-2.911736pt;}
.ws9a{word-spacing:-2.858602pt;}
.ws23{word-spacing:-2.805468pt;}
.wsf6{word-spacing:-2.752334pt;}
.ws109{word-spacing:-2.646067pt;}
.wsed{word-spacing:-2.592933pt;}
.ws111{word-spacing:-2.539799pt;}
.wsee{word-spacing:-2.486665pt;}
.ws132{word-spacing:-2.433531pt;}
.ws54{word-spacing:-2.274129pt;}
.ws16{word-spacing:-2.265634pt;}
.wsaa{word-spacing:-2.220996pt;}
.ws9c{word-spacing:-2.167862pt;}
.wsc{word-spacing:-2.138112pt;}
.ws2b{word-spacing:-2.061594pt;}
.ws5{word-spacing:-2.053098pt;}
.ws5a{word-spacing:-2.008460pt;}
.ws9{word-spacing:-1.840562pt;}
.ws3a{word-spacing:-1.795925pt;}
.wse0{word-spacing:-1.742791pt;}
.ws24{word-spacing:-1.636523pt;}
.ws17{word-spacing:-1.628026pt;}
.ws171{word-spacing:-1.619524pt;}
.ws15a{word-spacing:-1.583389pt;}
.ws136{word-spacing:-1.530255pt;}
.ws5c{word-spacing:-1.477121pt;}
.wsc1{word-spacing:-1.423988pt;}
.ws64{word-spacing:-1.370854pt;}
.wsae{word-spacing:-1.264586pt;}
.ws104{word-spacing:-1.211452pt;}
.ws78{word-spacing:-1.158318pt;}
.ws70{word-spacing:-1.105184pt;}
.ws8{word-spacing:-1.075432pt;}
.ws48{word-spacing:-1.052051pt;}
.ws61{word-spacing:-0.998917pt;}
.ws77{word-spacing:-0.945783pt;}
.ws13f{word-spacing:-0.892649pt;}
.ws43{word-spacing:-0.839515pt;}
.ws37{word-spacing:-0.786381pt;}
.ws67{word-spacing:-0.733247pt;}
.ws52{word-spacing:-0.680113pt;}
.wsd9{word-spacing:-0.626980pt;}
.ws7{word-spacing:-0.607853pt;}
.ws182{word-spacing:-0.599352pt;}
.ws108{word-spacing:-0.573846pt;}
.ws13e{word-spacing:-0.520712pt;}
.wsab{word-spacing:-0.467578pt;}
.wsb4{word-spacing:-0.414444pt;}
.ws25{word-spacing:-0.308176pt;}
.wsa8{word-spacing:-0.201909pt;}
.ws14f{word-spacing:-0.148775pt;}
.ws4a{word-spacing:-0.095641pt;}
.ws3f{word-spacing:-0.042507pt;}
.ws146{word-spacing:-0.000099pt;}
.ws6e{word-spacing:0.000000pt;}
.ws11c{word-spacing:0.010627pt;}
.ws1f{word-spacing:0.072262pt;}
.wse8{word-spacing:0.116895pt;}
.ws162{word-spacing:0.160183pt;}
.ws175{word-spacing:0.165778pt;}
.ws127{word-spacing:0.223162pt;}
.ws16f{word-spacing:0.250792pt;}
.ws88{word-spacing:0.276296pt;}
.ws11b{word-spacing:0.295625pt;}
.wsa3{word-spacing:0.329430pt;}
.ws8f{word-spacing:0.382564pt;}
.ws112{word-spacing:0.393191pt;}
.ws15{word-spacing:0.412320pt;}
.ws5b{word-spacing:0.435698pt;}
.ws7b{word-spacing:0.488832pt;}
.ws47{word-spacing:0.541965pt;}
.ws154{word-spacing:0.570890pt;}
.ws123{word-spacing:0.595099pt;}
.ws159{word-spacing:0.648233pt;}
.ws15c{word-spacing:0.701367pt;}
.ws9d{word-spacing:0.754501pt;}
.ws18b{word-spacing:0.760879pt;}
.wsb8{word-spacing:0.807635pt;}
.wsf4{word-spacing:0.860769pt;}
.ws13d{word-spacing:0.882184pt;}
.ws11a{word-spacing:0.913903pt;}
.ws49{word-spacing:0.967036pt;}
.wse{word-spacing:1.007421pt;}
.ws10a{word-spacing:1.020170pt;}
.wsa4{word-spacing:1.073304pt;}
.ws12e{word-spacing:1.126438pt;}
.ws147{word-spacing:1.151012pt;}
.ws145{word-spacing:1.171758pt;}
.wsbf{word-spacing:1.179572pt;}
.ws17e{word-spacing:1.228458pt;}
.ws90{word-spacing:1.232706pt;}
.ws170{word-spacing:1.262464pt;}
.wsb5{word-spacing:1.285840pt;}
.wsf{word-spacing:1.304971pt;}
.ws12d{word-spacing:1.307093pt;}
.wse3{word-spacing:1.338973pt;}
.ws9f{word-spacing:1.392107pt;}
.ws167{word-spacing:1.398487pt;}
.ws1e{word-spacing:1.432493pt;}
.wsb0{word-spacing:1.445241pt;}
.ws82{word-spacing:1.498375pt;}
.wseb{word-spacing:1.551509pt;}
.ws44{word-spacing:1.604643pt;}
.ws165{word-spacing:1.611023pt;}
.ws3{word-spacing:1.645029pt;}
.ws8c{word-spacing:1.657777pt;}
.ws10c{word-spacing:1.710911pt;}
.ws96{word-spacing:1.764044pt;}
.ws65{word-spacing:1.817178pt;}
.wsda{word-spacing:1.870312pt;}
.ws6b{word-spacing:1.923446pt;}
.ws19{word-spacing:1.942579pt;}
.ws176{word-spacing:1.951080pt;}
.ws101{word-spacing:1.976580pt;}
.ws103{word-spacing:2.029714pt;}
.wsd6{word-spacing:2.082848pt;}
.ws4{word-spacing:2.112608pt;}
.ws29{word-spacing:2.135981pt;}
.ws2e{word-spacing:2.189115pt;}
.ws76{word-spacing:2.242249pt;}
.ws8b{word-spacing:2.348517pt;}
.ws188{word-spacing:2.376152pt;}
.wsec{word-spacing:2.401651pt;}
.wse7{word-spacing:2.454785pt;}
.ws163{word-spacing:2.495173pt;}
.ws164{word-spacing:2.503674pt;}
.ws5f{word-spacing:2.507919pt;}
.ws18{word-spacing:2.537680pt;}
.ws31{word-spacing:2.561052pt;}
.ws1d{word-spacing:2.580187pt;}
.ws26{word-spacing:2.614186pt;}
.ws1b{word-spacing:2.622694pt;}
.ws187{word-spacing:2.631196pt;}
.ws157{word-spacing:2.667320pt;}
.ws12a{word-spacing:2.720454pt;}
.wsea{word-spacing:2.737505pt;}
.wsd8{word-spacing:2.773588pt;}
.ws51{word-spacing:2.826722pt;}
.ws18a{word-spacing:2.843732pt;}
.ws13{word-spacing:2.877737pt;}
.wsb6{word-spacing:2.879856pt;}
.ws59{word-spacing:2.932989pt;}
.wsfc{word-spacing:2.986123pt;}
.wsd0{word-spacing:3.039257pt;}
.wscf{word-spacing:3.052773pt;}
.ws158{word-spacing:3.060511pt;}
.ws4f{word-spacing:3.092391pt;}
.ws6c{word-spacing:3.096410pt;}
.wsb7{word-spacing:3.113645pt;}
.ws93{word-spacing:3.145525pt;}
.wsc2{word-spacing:3.198659pt;}
.ws58{word-spacing:3.251793pt;}
.wsbb{word-spacing:3.304927pt;}
.ws28{word-spacing:3.327088pt;}
.ws149{word-spacing:3.337091pt;}
.wsd4{word-spacing:3.358060pt;}
.ws2f{word-spacing:3.368134pt;}
.ws140{word-spacing:3.383192pt;}
.wsde{word-spacing:3.411194pt;}
.ws1{word-spacing:3.443098pt;}
.ws94{word-spacing:3.464328pt;}
.ws17f{word-spacing:3.472838pt;}
.ws137{word-spacing:3.517462pt;}
.ws45{word-spacing:3.570596pt;}
.ws166{word-spacing:3.600360pt;}
.ws55{word-spacing:3.623730pt;}
.ws83{word-spacing:3.676864pt;}
.wsb{word-spacing:3.727881pt;}
.ws75{word-spacing:3.729997pt;}
.ws30{word-spacing:3.775242pt;}
.ws4c{word-spacing:3.783131pt;}
.wsa{word-spacing:3.812896pt;}
.ws2a{word-spacing:3.836265pt;}
.ws14{word-spacing:3.855403pt;}
.ws53{word-spacing:3.889399pt;}
.ws4b{word-spacing:3.942533pt;}
.ws183{word-spacing:3.991426pt;}
.ws106{word-spacing:3.995667pt;}
.ws2c{word-spacing:4.048801pt;}
.wsba{word-spacing:4.101935pt;}
.ws177{word-spacing:4.152953pt;}
.ws69{word-spacing:4.155068pt;}
.ws60{word-spacing:4.208202pt;}
.ws184{word-spacing:4.267021pt;}
.ws10b{word-spacing:4.271963pt;}
.wsa1{word-spacing:4.314470pt;}
.ws80{word-spacing:4.367604pt;}
.wsfe{word-spacing:4.378231pt;}
.ws3c{word-spacing:4.420738pt;}
.ws86{word-spacing:4.473872pt;}
.ws180{word-spacing:4.493011pt;}
.ws14b{word-spacing:4.511525pt;}
.wsad{word-spacing:4.527005pt;}
.ws16e{word-spacing:4.544020pt;}
.wsd7{word-spacing:4.580139pt;}
.wsd2{word-spacing:4.633273pt;}
.ws116{word-spacing:4.662137pt;}
.ws15e{word-spacing:4.663040pt;}
.wsaf{word-spacing:4.686407pt;}
.wse2{word-spacing:4.739541pt;}
.ws6{word-spacing:4.748054pt;}
.ws36{word-spacing:4.792675pt;}
.wsac{word-spacing:4.836372pt;}
.ws174{word-spacing:4.841570pt;}
.ws6a{word-spacing:4.845809pt;}
.ws113{word-spacing:4.898943pt;}
.ws4d{word-spacing:4.952076pt;}
.ws12{word-spacing:4.960590pt;}
.ws6d{word-spacing:5.005210pt;}
.ws114{word-spacing:5.015522pt;}
.ws2d{word-spacing:5.058344pt;}
.ws27{word-spacing:5.122105pt;}
.wse4{word-spacing:5.164612pt;}
.ws13a{word-spacing:5.217746pt;}
.wsf5{word-spacing:5.270880pt;}
.ws161{word-spacing:5.309149pt;}
.ws66{word-spacing:5.324013pt;}
.ws32{word-spacing:5.377147pt;}
.ws11f{word-spacing:5.387774pt;}
.wsdf{word-spacing:5.440908pt;}
.ws5d{word-spacing:5.483415pt;}
.ws110{word-spacing:5.536549pt;}
.wsa2{word-spacing:5.589683pt;}
.wsef{word-spacing:5.642817pt;}
.ws14c{word-spacing:5.683903pt;}
.ws102{word-spacing:5.695951pt;}
.wsb2{word-spacing:5.749084pt;}
.ws18c{word-spacing:5.776728pt;}
.wsbc{word-spacing:5.802218pt;}
.ws1a{word-spacing:5.810734pt;}
.ws3b{word-spacing:5.855352pt;}
.wscb{word-spacing:5.908486pt;}
.ws122{word-spacing:5.929740pt;}
.ws134{word-spacing:5.961620pt;}
.wsc6{word-spacing:5.968652pt;}
.wsc7{word-spacing:5.973986pt;}
.ws129{word-spacing:6.009266pt;}
.wsa0{word-spacing:6.014754pt;}
.ws128{word-spacing:6.067888pt;}
.ws10d{word-spacing:6.121021pt;}
.wsc8{word-spacing:6.174155pt;}
.ws105{word-spacing:6.184782pt;}
.wsd{word-spacing:6.193299pt;}
.ws41{word-spacing:6.227289pt;}
.ws12b{word-spacing:6.280423pt;}
.ws185{word-spacing:6.320821pt;}
.ws4e{word-spacing:6.333557pt;}
.wse5{word-spacing:6.350144pt;}
.wsfd{word-spacing:6.386691pt;}
.ws12f{word-spacing:6.439825pt;}
.wsf2{word-spacing:6.492959pt;}
.wse9{word-spacing:6.503585pt;}
.ws14a{word-spacing:6.546092pt;}
.wsc0{word-spacing:6.599226pt;}
.ws99{word-spacing:6.652360pt;}
.ws74{word-spacing:6.705494pt;}
.ws126{word-spacing:6.758628pt;}
.ws138{word-spacing:6.811762pt;}
.ws95{word-spacing:6.918029pt;}
.ws133{word-spacing:6.971163pt;}
.ws68{word-spacing:7.024297pt;}
.ws17b{word-spacing:7.051944pt;}
.wsdb{word-spacing:7.077431pt;}
.ws39{word-spacing:7.130565pt;}
.ws16a{word-spacing:7.136959pt;}
.ws181{word-spacing:7.179466pt;}
.wsa9{word-spacing:7.183699pt;}
.ws97{word-spacing:7.236833pt;}
.ws118{word-spacing:7.289967pt;}
.ws87{word-spacing:7.343100pt;}
.ws115{word-spacing:7.353727pt;}
.ws42{word-spacing:7.413997pt;}
.ws10{word-spacing:7.426008pt;}
.ws17c{word-spacing:7.428008pt;}
.ws10e{word-spacing:7.449368pt;}
.ws15d{word-spacing:7.461807pt;}
.ws15f{word-spacing:7.484843pt;}
.ws11d{word-spacing:7.502502pt;}
.ws1c{word-spacing:7.553529pt;}
.ws38{word-spacing:7.555636pt;}
.ws3e{word-spacing:7.604538pt;}
.ws9e{word-spacing:7.608770pt;}
.ws72{word-spacing:7.661904pt;}
.ws18d{word-spacing:7.681051pt;}
.ws17a{word-spacing:7.689552pt;}
.ws5e{word-spacing:7.715037pt;}
.ws8d{word-spacing:7.768171pt;}
.ws160{word-spacing:7.817074pt;}
.wsb3{word-spacing:7.821305pt;}
.ws8e{word-spacing:7.874439pt;}
.ws153{word-spacing:7.950338pt;}
.ws139{word-spacing:7.969158pt;}
.wsff{word-spacing:7.980707pt;}
.ws7a{word-spacing:8.033841pt;}
.ws7d{word-spacing:8.086975pt;}
.ws172{word-spacing:8.114624pt;}
.ws73{word-spacing:8.140108pt;}
.wsb1{word-spacing:8.193242pt;}
.ws10f{word-spacing:8.246376pt;}
.ws11{word-spacing:8.276152pt;}
.ws107{word-spacing:8.299510pt;}
.ws91{word-spacing:8.352644pt;}
.wsa7{word-spacing:8.405778pt;}
.ws98{word-spacing:8.416052pt;}
.wsf0{word-spacing:8.512045pt;}
.wsb9{word-spacing:8.565179pt;}
.ws71{word-spacing:8.618313pt;}
.wsbe{word-spacing:8.671447pt;}
.ws14d{word-spacing:8.710799pt;}
.ws14e{word-spacing:8.724581pt;}
.ws85{word-spacing:8.830849pt;}
.wsa6{word-spacing:8.883983pt;}
.ws117{word-spacing:8.894609pt;}
.ws46{word-spacing:8.937116pt;}
.ws16b{word-spacing:8.956267pt;}
.ws169{word-spacing:8.964768pt;}
.wsfb{word-spacing:8.990250pt;}
.wsbd{word-spacing:9.043384pt;}
.wsf3{word-spacing:9.096518pt;}
.ws155{word-spacing:9.149652pt;}
.ws125{word-spacing:9.202786pt;}
.ws17d{word-spacing:9.253817pt;}
.ws12c{word-spacing:9.255920pt;}
.ws148{word-spacing:9.263359pt;}
.ws8a{word-spacing:9.309053pt;}
.wsa5{word-spacing:9.362187pt;}
.wsd5{word-spacing:9.415321pt;}
.ws11e{word-spacing:9.468455pt;}
.wsf1{word-spacing:9.521589pt;}
.ws100{word-spacing:9.574723pt;}
.ws6f{word-spacing:9.627857pt;}
.ws3d{word-spacing:9.644884pt;}
.wse1{word-spacing:9.680991pt;}
.wsc9{word-spacing:9.734124pt;}
.ws143{word-spacing:9.767399pt;}
.ws63{word-spacing:9.787258pt;}
.ws7e{word-spacing:9.840392pt;}
.ws173{word-spacing:9.891425pt;}
.ws62{word-spacing:9.893526pt;}
.wsf8{word-spacing:10.052928pt;}
.ws119{word-spacing:10.055036pt;}
.ws81{word-spacing:10.159195pt;}
.ws135{word-spacing:10.212329pt;}
.wse6{word-spacing:10.265463pt;}
.ws16c{word-spacing:10.273990pt;}
.ws13c{word-spacing:10.305915pt;}
.ws7f{word-spacing:10.318597pt;}
.ws156{word-spacing:10.320804pt;}
.ws35{word-spacing:10.371731pt;}
.ws34{word-spacing:10.378153pt;}
.ws152{word-spacing:10.410867pt;}
.ws79{word-spacing:10.424865pt;}
.ws89{word-spacing:10.477999pt;}
.ws84{word-spacing:10.531132pt;}
.wscc{word-spacing:10.584266pt;}
.wsf9{word-spacing:10.637400pt;}
.ws50{word-spacing:10.690534pt;}
.ws57{word-spacing:10.743668pt;}
.ws56{word-spacing:10.849936pt;}
.wsfa{word-spacing:10.903069pt;}
.wsc4{word-spacing:11.009337pt;}
.wsca{word-spacing:11.062471pt;}
.ws7c{word-spacing:11.115605pt;}
.ws186{word-spacing:11.132636pt;}
.ws150{word-spacing:11.135782pt;}
.wsd3{word-spacing:11.168739pt;}
.ws144{word-spacing:11.247747pt;}
.wsf7{word-spacing:11.328140pt;}
.wsd1{word-spacing:11.381274pt;}
.wsce{word-spacing:11.540676pt;}
.ws130{word-spacing:11.593810pt;}
.ws124{word-spacing:11.646944pt;}
.ws13b{word-spacing:11.700077pt;}
.ws121{word-spacing:11.805224pt;}
.ws189{word-spacing:12.144307pt;}
.ws92{word-spacing:12.252384pt;}
.ws151{word-spacing:12.325509pt;}
.ws120{word-spacing:12.390818pt;}
.ws22{word-spacing:12.412071pt;}
.ws179{word-spacing:12.450359pt;}
.wsc3{word-spacing:13.028424pt;}
.ws142{word-spacing:13.081558pt;}
.ws178{word-spacing:13.887102pt;}
.wscd{word-spacing:14.675574pt;}
.ws16d{word-spacing:15.170820pt;}
.ws141{word-spacing:16.057055pt;}
.wsc5{word-spacing:19.723291pt;}
.ws21{word-spacing:27.701942pt;}
.ws168{word-spacing:29.453239pt;}
.ws20{word-spacing:30.762461pt;}
.ws0{word-spacing:39.791558pt;}
._20{margin-left:-30.551973pt;}
._b{margin-left:-28.288563pt;}
._a{margin-left:-27.204637pt;}
._6{margin-left:-26.014406pt;}
._15{margin-left:-24.483904pt;}
._12{margin-left:-22.082483pt;}
._9{margin-left:-20.275934pt;}
._13{margin-left:-16.747837pt;}
._0{margin-left:-10.311434pt;}
._f{margin-left:-6.738628pt;}
._8{margin-left:-5.780979pt;}
._21{margin-left:-4.728914pt;}
._1{margin-left:-3.569342pt;}
._11{margin-left:-2.677784pt;}
._4{margin-left:-1.721549pt;}
._c{width:0.935144pt;}
._7{width:1.997853pt;}
._2{width:3.437145pt;}
._d{width:6.591810pt;}
._5{width:8.037559pt;}
._1d{width:11.901986pt;}
._1e{width:13.496002pt;}
._22{width:14.717934pt;}
._1f{width:15.823211pt;}
._1a{width:16.939247pt;}
._10{width:18.047385pt;}
._17{width:19.893579pt;}
._26{width:20.912217pt;}
._14{width:21.986899pt;}
._16{width:23.368298pt;}
._23{width:24.303539pt;}
._18{width:26.131259pt;}
._19{width:27.373315pt;}
._3{width:28.610867pt;}
._1b{width:29.531796pt;}
._1c{width:34.973968pt;}
._25{width:35.988379pt;}
._28{width:39.869243pt;}
._24{width:42.812513pt;}
._27{width:49.138323pt;}
._e{width:50.291891pt;}
.fs7{font-size:25.196800pt;}
.fs6{font-size:30.570667pt;}
.fs4{font-size:31.880533pt;}
.fs8{font-size:33.595733pt;}
.fs5{font-size:38.213333pt;}
.fs2{font-size:42.507200pt;}
.fs3{font-size:53.133867pt;}
.fs1{font-size:63.761067pt;}
.fs0{font-size:132.197867pt;}
.y0{bottom:0.000000pt;}
.y178{bottom:1.881886pt;}
.y113{bottom:4.660068pt;}
.y177{bottom:11.678454pt;}
.y100{bottom:12.558492pt;}
.y179{bottom:15.822147pt;}
.yfe{bottom:17.071878pt;}
.y180{bottom:25.875932pt;}
.y111{bottom:35.258502pt;}
.y17a{bottom:40.011075pt;}
.y185{bottom:44.848860pt;}
.y189{bottom:45.908701pt;}
.y101{bottom:47.042620pt;}
.yfc{bottom:48.998717pt;}
.yfd{bottom:50.188867pt;}
.y190{bottom:50.961184pt;}
.y3e{bottom:57.004000pt;}
.y18d{bottom:63.730187pt;}
.y17b{bottom:64.200003pt;}
.y102{bottom:67.508964pt;}
.y3d{bottom:68.693333pt;}
.y110{bottom:70.237253pt;}
.y71{bottom:72.944000pt;}
.yfa{bottom:72.945333pt;}
.y186{bottom:73.875574pt;}
.y18c{bottom:76.059559pt;}
.y1c6{bottom:80.688000pt;}
.y10b{bottom:81.699820pt;}
.y106{bottom:81.959671pt;}
.y3c{bottom:84.133333pt;}
.y10a{bottom:85.340595pt;}
.y17c{bottom:88.388931pt;}
.yd3{bottom:88.884000pt;}
.yab{bottom:88.885333pt;}
.y10d{bottom:89.566895pt;}
.y175{bottom:90.060000pt;}
.y1c5{bottom:92.682667pt;}
.y70{bottom:93.510667pt;}
.y109{bottom:93.938595pt;}
.y18b{bottom:100.718302pt;}
.y10c{bottom:100.881671pt;}
.y105{bottom:101.141570pt;}
.y187{bottom:102.902288pt;}
.yd2{bottom:104.824000pt;}
.yaa{bottom:104.825333pt;}
.y10e{bottom:105.215971pt;}
.y174{bottom:106.000000pt;}
.y3b{bottom:108.030667pt;}
.y6f{bottom:109.452000pt;}
.y1c4{bottom:110.616000pt;}
.y17d{bottom:112.577859pt;}
.y18a{bottom:113.047674pt;}
.ya9{bottom:120.765333pt;}
.y3a{bottom:123.970667pt;}
.y6e{bottom:125.392000pt;}
.y104{bottom:127.962028pt;}
.y112{bottom:128.608932pt;}
.y173{bottom:129.845333pt;}
.y188{bottom:131.929001pt;}
.ya8{bottom:136.705333pt;}
.y17e{bottom:136.766787pt;}
.y182{bottom:137.002351pt;}
.y39{bottom:139.910667pt;}
.y1c3{bottom:139.917333pt;}
.y10f{bottom:140.194737pt;}
.y6d{bottom:141.332000pt;}
.y103{bottom:147.621546pt;}
.y181{bottom:149.331722pt;}
.ya7{bottom:152.645333pt;}
.y11c{bottom:152.646667pt;}
.y38{bottom:155.850667pt;}
.y1c2{bottom:155.857333pt;}
.yff{bottom:156.648347pt;}
.y6c{bottom:157.272000pt;}
.y108{bottom:157.554767pt;}
.y172{bottom:160.928000pt;}
.y17f{bottom:160.955715pt;}
.y107{bottom:166.152768pt;}
.ya6{bottom:168.585333pt;}
.yf9{bottom:168.586667pt;}
.y37{bottom:171.790667pt;}
.y1c1{bottom:171.797333pt;}
.y6b{bottom:173.212000pt;}
.y171{bottom:176.868000pt;}
.yd1{bottom:184.525333pt;}
.ya5{bottom:184.526667pt;}
.y36{bottom:187.732000pt;}
.y1c0{bottom:187.737333pt;}
.y6a{bottom:189.152000pt;}
.y170{bottom:192.808000pt;}
.yd0{bottom:200.465333pt;}
.ya4{bottom:200.466667pt;}
.y35{bottom:203.672000pt;}
.y1bf{bottom:203.678667pt;}
.y69{bottom:205.093333pt;}
.y16f{bottom:208.748000pt;}
.ya3{bottom:216.406667pt;}
.y34{bottom:219.612000pt;}
.y1be{bottom:219.618667pt;}
.y68{bottom:221.033333pt;}
.y16e{bottom:224.688000pt;}
.ycf{bottom:232.346667pt;}
.y33{bottom:235.552000pt;}
.y1bd{bottom:235.558667pt;}
.y67{bottom:236.973333pt;}
.y16d{bottom:240.628000pt;}
.ya2{bottom:241.186667pt;}
.yce{bottom:248.286667pt;}
.y32{bottom:251.492000pt;}
.y66{bottom:252.913333pt;}
.y16c{bottom:257.744000pt;}
.y1bc{bottom:258.353333pt;}
.ycd{bottom:264.226667pt;}
.yf8{bottom:264.228000pt;}
.y31{bottom:267.433333pt;}
.y65{bottom:268.853333pt;}
.y16b{bottom:273.684000pt;}
.ya1{bottom:273.853333pt;}
.ycc{bottom:280.166667pt;}
.yf7{bottom:280.168000pt;}
.y30{bottom:283.373333pt;}
.y64{bottom:284.793333pt;}
.y1bb{bottom:287.653333pt;}
.y16a{bottom:289.624000pt;}
.ya0{bottom:289.793333pt;}
.y145{bottom:296.106667pt;}
.ycb{bottom:296.108000pt;}
.y2f{bottom:299.313333pt;}
.y63{bottom:300.734667pt;}
.y1ba{bottom:303.594667pt;}
.y169{bottom:305.564000pt;}
.y9f{bottom:305.733333pt;}
.yca{bottom:312.048000pt;}
.y2e{bottom:315.253333pt;}
.y62{bottom:316.674667pt;}
.y1b9{bottom:319.534667pt;}
.y168{bottom:321.504000pt;}
.y9e{bottom:321.674667pt;}
.yc9{bottom:327.988000pt;}
.y2d{bottom:331.193333pt;}
.y61{bottom:332.614667pt;}
.y1b8{bottom:335.474667pt;}
.y167{bottom:337.444000pt;}
.y9d{bottom:337.614667pt;}
.yc8{bottom:343.928000pt;}
.y2c{bottom:347.133333pt;}
.y60{bottom:348.554667pt;}
.y1b7{bottom:351.414667pt;}
.y166{bottom:353.385333pt;}
.y9c{bottom:355.232000pt;}
.yc7{bottom:359.868000pt;}
.yf6{bottom:359.869333pt;}
.y2b{bottom:363.074667pt;}
.y5f{bottom:364.494667pt;}
.y1b6{bottom:367.354667pt;}
.y165{bottom:369.325333pt;}
.y9b{bottom:371.172000pt;}
.yc6{bottom:375.808000pt;}
.yf5{bottom:375.809333pt;}
.y2a{bottom:379.014667pt;}
.y5e{bottom:380.436000pt;}
.y1b5{bottom:383.905333pt;}
.y164{bottom:385.265333pt;}
.y9a{bottom:387.112000pt;}
.yc5{bottom:391.749333pt;}
.y193{bottom:394.616000pt;}
.y29{bottom:394.954667pt;}
.y5d{bottom:396.376000pt;}
.y1b4{bottom:399.845333pt;}
.y163{bottom:402.380000pt;}
.y99{bottom:403.052000pt;}
.yc4{bottom:407.689333pt;}
.y192{bottom:410.556000pt;}
.y28{bottom:410.894667pt;}
.y5c{bottom:412.316000pt;}
.y1b3{bottom:415.785333pt;}
.y162{bottom:418.320000pt;}
.y98{bottom:418.992000pt;}
.yc3{bottom:423.629333pt;}
.y27{bottom:426.834667pt;}
.y5b{bottom:428.256000pt;}
.y1b2{bottom:431.725333pt;}
.y161{bottom:434.260000pt;}
.y97{bottom:434.933333pt;}
.y191{bottom:438.318667pt;}
.y11b{bottom:439.569333pt;}
.yf4{bottom:439.570667pt;}
.y5a{bottom:444.196000pt;}
.y144{bottom:446.628000pt;}
.y1b1{bottom:447.665333pt;}
.y26{bottom:449.649333pt;}
.y160{bottom:450.201333pt;}
.y96{bottom:450.873333pt;}
.y18f{bottom:454.258667pt;}
.y12e{bottom:455.509333pt;}
.yf3{bottom:455.510667pt;}
.y59{bottom:460.136000pt;}
.yc2{bottom:462.000000pt;}
.y1b0{bottom:463.606667pt;}
.y15f{bottom:466.141333pt;}
.y95{bottom:466.813333pt;}
.yf2{bottom:471.450667pt;}
.y58{bottom:476.077333pt;}
.y143{bottom:476.274667pt;}
.yc1{bottom:477.940000pt;}
.y1af{bottom:479.546667pt;}
.y15e{bottom:482.081333pt;}
.y94{bottom:482.753333pt;}
.y25{bottom:486.796000pt;}
.yf1{bottom:487.390667pt;}
.y57{bottom:492.017333pt;}
.y142{bottom:492.216000pt;}
.yc0{bottom:493.880000pt;}
.y1ae{bottom:495.486667pt;}
.y15d{bottom:498.021333pt;}
.y93{bottom:498.693333pt;}
.y24{bottom:499.016000pt;}
.yf0{bottom:503.330667pt;}
.y141{bottom:508.156000pt;}
.ybf{bottom:509.820000pt;}
.y1ad{bottom:511.426667pt;}
.y1f0{bottom:512.060000pt;}
.y56{bottom:512.584000pt;}
.y15c{bottom:513.961333pt;}
.y92{bottom:514.633333pt;}
.y23{bottom:515.684000pt;}
.yef{bottom:519.270667pt;}
.y1ef{bottom:523.749333pt;}
.y140{bottom:524.096000pt;}
.ybe{bottom:525.760000pt;}
.y1ac{bottom:527.366667pt;}
.y22{bottom:527.904000pt;}
.y55{bottom:528.524000pt;}
.y91{bottom:530.574667pt;}
.y15b{bottom:531.077333pt;}
.y11a{bottom:535.210667pt;}
.yee{bottom:535.212000pt;}
.y1ee{bottom:535.438667pt;}
.y13f{bottom:540.036000pt;}
.y21{bottom:540.125333pt;}
.ybd{bottom:541.701333pt;}
.y1ab{bottom:543.306667pt;}
.y54{bottom:544.464000pt;}
.y90{bottom:546.514667pt;}
.y15a{bottom:547.017333pt;}
.y1ed{bottom:547.128000pt;}
.yed{bottom:551.152000pt;}
.y20{bottom:552.345333pt;}
.y13e{bottom:555.976000pt;}
.ybc{bottom:557.641333pt;}
.y1ec{bottom:558.817333pt;}
.y1aa{bottom:559.248000pt;}
.y53{bottom:560.405333pt;}
.y8f{bottom:562.454667pt;}
.y159{bottom:562.957333pt;}
.y1f{bottom:564.566667pt;}
.yec{bottom:567.092000pt;}
.y1eb{bottom:570.506667pt;}
.y13d{bottom:571.917333pt;}
.ybb{bottom:573.581333pt;}
.y1a9{bottom:575.188000pt;}
.y52{bottom:576.345333pt;}
.y1e{bottom:576.788000pt;}
.y8e{bottom:578.394667pt;}
.y158{bottom:578.897333pt;}
.y1ea{bottom:582.197333pt;}
.yeb{bottom:583.032000pt;}
.y1d{bottom:589.008000pt;}
.yba{bottom:589.521333pt;}
.y51{bottom:592.285333pt;}
.y1e9{bottom:593.886667pt;}
.y8d{bottom:594.334667pt;}
.y157{bottom:594.837333pt;}
.y13c{bottom:596.012000pt;}
.y1a8{bottom:597.981333pt;}
.yea{bottom:598.972000pt;}
.y1c{bottom:601.229333pt;}
.yb9{bottom:605.461333pt;}
.y1e8{bottom:605.576000pt;}
.y50{bottom:608.225333pt;}
.y8c{bottom:610.274667pt;}
.y156{bottom:610.777333pt;}
.y13b{bottom:611.952000pt;}
.y1b{bottom:613.450667pt;}
.ye9{bottom:614.912000pt;}
.y1e7{bottom:617.265333pt;}
.yb8{bottom:621.402667pt;}
.y4f{bottom:624.165333pt;}
.y1a{bottom:625.670667pt;}
.y8b{bottom:626.216000pt;}
.y155{bottom:626.717333pt;}
.y1a7{bottom:627.282667pt;}
.y13a{bottom:627.892000pt;}
.y1e6{bottom:628.954667pt;}
.y11f{bottom:630.852000pt;}
.ye8{bottom:630.853333pt;}
.yb7{bottom:637.342667pt;}
.y19{bottom:637.892000pt;}
.y4e{bottom:640.105333pt;}
.y18e{bottom:640.322667pt;}
.y1e5{bottom:640.644000pt;}
.y8a{bottom:642.156000pt;}
.y154{bottom:642.658667pt;}
.y1a6{bottom:643.222667pt;}
.y139{bottom:643.832000pt;}
.ye7{bottom:646.793333pt;}
.y18{bottom:650.112000pt;}
.y1e4{bottom:652.333333pt;}
.yb6{bottom:653.282667pt;}
.y4d{bottom:656.046667pt;}
.y184{bottom:656.262667pt;}
.y89{bottom:658.096000pt;}
.y153{bottom:658.598667pt;}
.y1a5{bottom:659.164000pt;}
.y138{bottom:659.772000pt;}
.y17{bottom:662.333333pt;}
.ye6{bottom:662.733333pt;}
.y1e3{bottom:664.022667pt;}
.y4c{bottom:671.986667pt;}
.y88{bottom:674.036000pt;}
.y152{bottom:674.538667pt;}
.y16{bottom:674.554667pt;}
.y1a4{bottom:675.104000pt;}
.y11e{bottom:675.713333pt;}
.ye5{bottom:678.673333pt;}
.y15{bottom:687.396000pt;}
.y1e2{bottom:687.402667pt;}
.y4b{bottom:687.926667pt;}
.y87{bottom:689.976000pt;}
.y151{bottom:690.478667pt;}
.y1a3{bottom:691.044000pt;}
.yb5{bottom:691.653333pt;}
.ye4{bottom:694.613333pt;}
.y1e1{bottom:699.092000pt;}
.y14{bottom:699.616000pt;}
.y4a{bottom:703.866667pt;}
.y86{bottom:705.916000pt;}
.y150{bottom:706.418667pt;}
.y1a2{bottom:706.984000pt;}
.yb4{bottom:707.593333pt;}
.y119{bottom:710.553333pt;}
.y1e0{bottom:710.781333pt;}
.y13{bottom:711.837333pt;}
.y136{bottom:718.708000pt;}
.y49{bottom:719.806667pt;}
.y85{bottom:721.857333pt;}
.y14f{bottom:722.358667pt;}
.y1df{bottom:722.470667pt;}
.y1a1{bottom:722.924000pt;}
.yb3{bottom:723.533333pt;}
.y12{bottom:724.058667pt;}
.y118{bottom:726.494667pt;}
.y12d{bottom:728.449333pt;}
.ye3{bottom:729.805333pt;}
.y1de{bottom:734.160000pt;}
.y135{bottom:734.648000pt;}
.y48{bottom:735.746667pt;}
.y11{bottom:736.278667pt;}
.y84{bottom:737.797333pt;}
.y14e{bottom:738.300000pt;}
.y1a0{bottom:738.864000pt;}
.yb2{bottom:739.473333pt;}
.y11d{bottom:739.474667pt;}
.y12c{bottom:744.390667pt;}
.ye2{bottom:745.745333pt;}
.y1dd{bottom:745.849333pt;}
.y10{bottom:748.500000pt;}
.y134{bottom:750.589333pt;}
.y47{bottom:751.688000pt;}
.y14d{bottom:754.240000pt;}
.y19f{bottom:754.805333pt;}
.y117{bottom:755.285333pt;}
.yb1{bottom:755.413333pt;}
.y83{bottom:755.414667pt;}
.y1dc{bottom:757.538667pt;}
.y12b{bottom:760.330667pt;}
.yf{bottom:760.720000pt;}
.ye1{bottom:761.686667pt;}
.y133{bottom:766.529333pt;}
.y46{bottom:767.628000pt;}
.y1db{bottom:769.229333pt;}
.y14c{bottom:770.180000pt;}
.y19e{bottom:770.745333pt;}
.y82{bottom:771.354667pt;}
.ye{bottom:772.941333pt;}
.y12a{bottom:776.270667pt;}
.ye0{bottom:777.626667pt;}
.y1da{bottom:780.918667pt;}
.y132{bottom:782.469333pt;}
.y45{bottom:783.568000pt;}
.yd{bottom:785.162667pt;}
.y14b{bottom:786.120000pt;}
.y19d{bottom:786.685333pt;}
.y81{bottom:787.294667pt;}
.y129{bottom:792.210667pt;}
.y1d9{bottom:792.608000pt;}
.ydf{bottom:793.566667pt;}
.yc{bottom:797.382667pt;}
.y131{bottom:798.409333pt;}
.y44{bottom:799.508000pt;}
.y14a{bottom:802.060000pt;}
.y19c{bottom:802.625333pt;}
.y80{bottom:803.234667pt;}
.y1d8{bottom:804.297333pt;}
.y116{bottom:807.581333pt;}
.y128{bottom:808.150667pt;}
.yde{bottom:809.506667pt;}
.yb{bottom:809.604000pt;}
.y130{bottom:814.349333pt;}
.y43{bottom:815.448000pt;}
.y1d7{bottom:815.986667pt;}
.y149{bottom:818.000000pt;}
.y19b{bottom:818.565333pt;}
.y7f{bottom:819.174667pt;}
.ya{bottom:821.825333pt;}
.y115{bottom:823.521333pt;}
.y127{bottom:824.090667pt;}
.ydd{bottom:825.446667pt;}
.y1d6{bottom:827.676000pt;}
.y42{bottom:831.388000pt;}
.y148{bottom:833.941333pt;}
.y9{bottom:834.045333pt;}
.y19a{bottom:834.505333pt;}
.yb0{bottom:835.114667pt;}
.y7e{bottom:835.116000pt;}
.y12f{bottom:837.348000pt;}
.y1d5{bottom:839.365333pt;}
.y114{bottom:839.461333pt;}
.y126{bottom:840.032000pt;}
.ydc{bottom:841.388000pt;}
.y183{bottom:842.326667pt;}
.y8{bottom:846.266667pt;}
.y41{bottom:847.329333pt;}
.y147{bottom:849.881333pt;}
.y199{bottom:850.446667pt;}
.y137{bottom:851.054667pt;}
.y7d{bottom:851.056000pt;}
.y125{bottom:855.972000pt;}
.ydb{bottom:857.328000pt;}
.y176{bottom:858.266667pt;}
.y7{bottom:858.488000pt;}
.y1d4{bottom:862.745333pt;}
.y40{bottom:863.269333pt;}
.yfb{bottom:863.902667pt;}
.y146{bottom:865.821333pt;}
.y198{bottom:866.386667pt;}
.y7c{bottom:866.996000pt;}
.y6{bottom:870.708000pt;}
.y124{bottom:871.912000pt;}
.yda{bottom:873.268000pt;}
.y1d3{bottom:874.434667pt;}
.y3f{bottom:879.209333pt;}
.y197{bottom:882.326667pt;}
.y5{bottom:882.929333pt;}
.y7b{bottom:882.936000pt;}
.y1d2{bottom:886.124000pt;}
.y123{bottom:887.852000pt;}
.yd9{bottom:889.208000pt;}
.y4{bottom:895.149333pt;}
.y1d1{bottom:897.813333pt;}
.y196{bottom:898.266667pt;}
.y7a{bottom:898.876000pt;}
.y122{bottom:903.792000pt;}
.yd8{bottom:905.148000pt;}
.y1d0{bottom:909.502667pt;}
.y195{bottom:914.206667pt;}
.yaf{bottom:914.816000pt;}
.y79{bottom:914.817333pt;}
.y121{bottom:919.732000pt;}
.yd7{bottom:921.088000pt;}
.y1cf{bottom:921.192000pt;}
.y194{bottom:930.146667pt;}
.yae{bottom:930.756000pt;}
.y78{bottom:930.757333pt;}
.y1ce{bottom:932.881333pt;}
.yd6{bottom:937.029333pt;}
.y3{bottom:937.565333pt;}
.y1cd{bottom:944.572000pt;}
.y120{bottom:945.032000pt;}
.y77{bottom:946.697333pt;}
.yd5{bottom:952.969333pt;}
.y1cc{bottom:956.261333pt;}
.y76{bottom:962.637333pt;}
.y1cb{bottom:967.950667pt;}
.yd4{bottom:968.909333pt;}
.y2{bottom:969.445333pt;}
.y75{bottom:978.577333pt;}
.y1ca{bottom:979.640000pt;}
.y1c9{bottom:991.329333pt;}
.y74{bottom:994.517333pt;}
.y1c8{bottom:1003.018667pt;}
.y1{bottom:1006.638667pt;}
.yad{bottom:1010.457333pt;}
.y73{bottom:1010.458667pt;}
.y1c7{bottom:1014.708000pt;}
.yac{bottom:1026.397333pt;}
.y72{bottom:1026.398667pt;}
.ha{height:21.200555pt;}
.he{height:22.347157pt;}
.hf{height:22.524969pt;}
.h11{height:23.407827pt;}
.hd{height:28.156211pt;}
.h12{height:31.210436pt;}
.h5{height:31.880400pt;}
.h8{height:38.043849pt;}
.h9{height:39.850400pt;}
.hb{height:39.855733pt;}
.h6{height:42.152400pt;}
.h7{height:42.470515pt;}
.h4{height:55.016400pt;}
.h3{height:61.642735pt;}
.h2{height:92.406309pt;}
.hc{height:175.781333pt;}
.h10{height:181.416960pt;}
.h1{height:1114.666667pt;}
.h0{height:1114.960000pt;}
.w3{width:241.889280pt;}
.w2{width:302.363000pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2d{left:10.170583pt;}
.x31{left:12.375303pt;}
.x2c{left:14.015720pt;}
.x30{left:16.312303pt;}
.x2b{left:19.048518pt;}
.x2a{left:24.324098pt;}
.x20{left:31.808086pt;}
.x14{left:34.158803pt;}
.x28{left:35.108460pt;}
.x1c{left:37.344410pt;}
.x32{left:61.312213pt;}
.xd{left:65.764000pt;}
.xe{left:79.048000pt;}
.x13{left:85.769397pt;}
.x6{left:103.558667pt;}
.x29{left:104.873806pt;}
.x1{left:108.469333pt;}
.x33{left:111.434160pt;}
.xa{left:112.592000pt;}
.x5{left:116.842667pt;}
.x16{left:121.084774pt;}
.x1f{left:123.667613pt;}
.x18{left:125.531469pt;}
.x12{left:128.289333pt;}
.x22{left:130.126667pt;}
.x26{left:131.953333pt;}
.x19{left:133.345379pt;}
.x17{left:134.591468pt;}
.x2e{left:155.003627pt;}
.xf{left:158.234667pt;}
.x1d{left:160.865905pt;}
.x1e{left:167.090857pt;}
.x3{left:191.596000pt;}
.x34{left:197.478667pt;}
.x8{left:201.112000pt;}
.x7{left:212.446667pt;}
.x35{left:213.634667pt;}
.x1b{left:220.468244pt;}
.x1a{left:221.756702pt;}
.x21{left:258.661563pt;}
.x15{left:267.621444pt;}
.x9{left:291.778667pt;}
.x2{left:320.449333pt;}
.x4{left:326.506667pt;}
.x10{left:387.024000pt;}
.x11{left:400.306667pt;}
.x27{left:419.473333pt;}
.xb{left:424.818667pt;}
.xc{left:438.102667pt;}
.x36{left:449.024000pt;}
.x23{left:451.385333pt;}
.x24{left:523.988000pt;}
.x2f{left:529.718667pt;}
.x25{left:611.422667pt;}
}




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