
    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_b14e19695c319bfe659a1c3c.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.210000;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_e899e7f45eb97bc7bc3a659b.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.156000;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_a6623fd0b51696397dde9ce2.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.156000;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_65139131d23406b5f65a68dd.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.190000;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_eeeb8b6f7a4e07e3c13762bb.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.229000;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_c896496fabd013845d0887f0.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.210000;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_bc8154d5da0c8586ea98b3a1.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.722656;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_a6623fd0b51696397dde9ce2.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.156000;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_0b4e4f07cfc773557b497e7d.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.700000;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_024363c90506f568b57749e8.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.194000;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_b14e19695c319bfe659a1c3c.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.210000;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_a6623fd0b51696397dde9ce2.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.156000;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_a920db264522b499fd071318.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.700000;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_6cc07074c85d9c24d1b302f2.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.742000;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_1a27d42f6324dc2f15958e46.woff2')format("woff");}.fff{font-family:fff;line-height:0.929000;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_fcd76641386d99a87c30591d.woff2')format("woff");}.ff10{font-family:ff10;line-height:1.190000;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_69229e17351852187c886340.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.700000;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:ff12;src:url('chunks/assets/font_be2882a10745599b6c9823b9.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.722000;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:ff13;src:url('chunks/assets/font_1a1a539f222bd236916f36bc.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.929000;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:ff14;src:url('chunks/assets/font_439c29357df2fbe8f7756ab2.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.936000;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:ff15;src:url('chunks/assets/font_a48c25b71ba0c47a9f154a62.woff2')format("woff");}.ff15{font-family:ff15;line-height:0.909000;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);}
.vb{vertical-align:-31.583605px;}
.vd{vertical-align:-25.295684px;}
.v2{vertical-align:-13.986000px;}
.v6{vertical-align:-10.608000px;}
.ve{vertical-align:-5.615930px;}
.v8{vertical-align:-3.695954px;}
.v0{vertical-align:0.000000px;}
.vc{vertical-align:1.535981px;}
.v4{vertical-align:4.560000px;}
.v9{vertical-align:6.383920px;}
.vf{vertical-align:8.975888px;}
.v7{vertical-align:10.223872px;}
.v3{vertical-align:19.980000px;}
.v1{vertical-align:22.977000px;}
.v5{vertical-align:28.608000px;}
.va{vertical-align:29.615630px;}
.ls1e{letter-spacing:-6.378000px;}
.lsf{letter-spacing:-5.988000px;}
.ls10{letter-spacing:-5.964000px;}
.ls13{letter-spacing:-5.940000px;}
.ls11{letter-spacing:-4.968000px;}
.ls7{letter-spacing:-2.970000px;}
.ls1d{letter-spacing:-0.864000px;}
.ls9{letter-spacing:-0.756000px;}
.ls12{letter-spacing:-0.540000px;}
.ls34{letter-spacing:-0.480000px;}
.ls38{letter-spacing:-0.431995px;}
.ls3b{letter-spacing:-0.335996px;}
.ls8{letter-spacing:-0.252000px;}
.lsa{letter-spacing:-0.216000px;}
.ls37{letter-spacing:-0.191998px;}
.ls22{letter-spacing:-0.144000px;}
.ls14{letter-spacing:-0.108000px;}
.ls1f{letter-spacing:-0.096000px;}
.ls36{letter-spacing:-0.095999px;}
.lse{letter-spacing:-0.048000px;}
.ls6{letter-spacing:0.000000px;}
.ls1b{letter-spacing:0.048000px;}
.ls0{letter-spacing:0.050400px;}
.lsb{letter-spacing:0.050653px;}
.ls30{letter-spacing:0.095999px;}
.ls35{letter-spacing:0.096000px;}
.ls31{letter-spacing:0.143998px;}
.ls3d{letter-spacing:0.191998px;}
.ls1c{letter-spacing:0.192000px;}
.ls2f{letter-spacing:0.239997px;}
.ls1a{letter-spacing:0.240000px;}
.ls32{letter-spacing:0.287996px;}
.lsd{letter-spacing:0.324000px;}
.ls3f{letter-spacing:0.479994px;}
.ls5{letter-spacing:0.540000px;}
.ls3e{letter-spacing:0.575993px;}
.ls33{letter-spacing:0.623992px;}
.ls15{letter-spacing:0.648000px;}
.ls2{letter-spacing:0.672000px;}
.ls42{letter-spacing:0.768000px;}
.ls1{letter-spacing:0.960000px;}
.ls43{letter-spacing:1.632000px;}
.ls40{letter-spacing:11.135861px;}
.ls3a{letter-spacing:11.423857px;}
.ls39{letter-spacing:11.711854px;}
.ls3c{letter-spacing:11.999850px;}
.ls2b{letter-spacing:68.255147px;}
.ls29{letter-spacing:69.791128px;}
.ls27{letter-spacing:70.175123px;}
.ls2d{letter-spacing:70.319121px;}
.ls28{letter-spacing:71.615105px;}
.ls25{letter-spacing:73.103086px;}
.ls2c{letter-spacing:73.391083px;}
.ls24{letter-spacing:73.439082px;}
.ls2e{letter-spacing:76.223047px;}
.ls2a{letter-spacing:76.943038px;}
.ls26{letter-spacing:82.318971px;}
.ls23{letter-spacing:85.150936px;}
.ls44{letter-spacing:158.868000px;}
.ls3{letter-spacing:181.494000px;}
.ls45{letter-spacing:214.488000px;}
.ls21{letter-spacing:267.696000px;}
.ls20{letter-spacing:273.456000px;}
.ls17{letter-spacing:328.320000px;}
.ls19{letter-spacing:328.368000px;}
.ls18{letter-spacing:341.856000px;}
.ls16{letter-spacing:341.952000px;}
.ls4{letter-spacing:451.494000px;}
.lsc{letter-spacing:943.034274px;}
.ls41{letter-spacing:943.034400px;}
.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;}
}
.wsb8{word-spacing:-284.976000px;}
.wsd3{word-spacing:-267.696000px;}
.ws3{word-spacing:-41.748000px;}
.wse7{word-spacing:-23.519706px;}
.wse2{word-spacing:-23.231710px;}
.wse3{word-spacing:-22.943713px;}
.wsed{word-spacing:-22.655717px;}
.ws82{word-spacing:-16.680000px;}
.ws29{word-spacing:-16.140000px;}
.ws4{word-spacing:-15.012000px;}
.ws6{word-spacing:-14.796000px;}
.wsf7{word-spacing:-14.472000px;}
.ws5{word-spacing:-14.256000px;}
.ws1{word-spacing:-14.016000px;}
.ws2b{word-spacing:-13.824000px;}
.ws2c{word-spacing:-13.500000px;}
.wsea{word-spacing:-12.095849px;}
.ws120{word-spacing:-12.000000px;}
.wsec{word-spacing:-11.999850px;}
.wsdc{word-spacing:-11.759853px;}
.wsb9{word-spacing:-11.712000px;}
.wse8{word-spacing:-11.711854px;}
.wsdf{word-spacing:-11.663854px;}
.wse6{word-spacing:-11.615855px;}
.wsd8{word-spacing:-11.567855px;}
.wsb7{word-spacing:-11.520000px;}
.wsde{word-spacing:-11.519856px;}
.wse1{word-spacing:-11.471857px;}
.wsd9{word-spacing:-11.423857px;}
.wsdb{word-spacing:-11.327858px;}
.wse5{word-spacing:-11.183860px;}
.ws0{word-spacing:-11.183106px;}
.wse0{word-spacing:-11.087861px;}
.ws2a{word-spacing:-10.740000px;}
.wsba{word-spacing:-9.174000px;}
.ws28{word-spacing:-7.512000px;}
.ws57{word-spacing:-7.200000px;}
.ws2{word-spacing:-6.121500px;}
.ws13d{word-spacing:-4.032000px;}
.ws97{word-spacing:-3.834000px;}
.ws8e{word-spacing:-3.780000px;}
.ws9a{word-spacing:-3.456000px;}
.wsa{word-spacing:-3.450000px;}
.ws145{word-spacing:-3.264000px;}
.wsfb{word-spacing:-3.078000px;}
.wsc1{word-spacing:-3.024000px;}
.ws8a{word-spacing:-2.808000px;}
.ws18{word-spacing:-2.754000px;}
.wsc7{word-spacing:-2.646000px;}
.ws1e{word-spacing:-2.592000px;}
.ws70{word-spacing:-2.538000px;}
.ws134{word-spacing:-2.448000px;}
.ws113{word-spacing:-2.430000px;}
.ws87{word-spacing:-2.376000px;}
.ws14{word-spacing:-2.322000px;}
.ws63{word-spacing:-2.268000px;}
.ws153{word-spacing:-2.214000px;}
.ws127{word-spacing:-2.112000px;}
.ws1a{word-spacing:-2.106000px;}
.ws37{word-spacing:-2.052000px;}
.ws151{word-spacing:-1.944000px;}
.ws8b{word-spacing:-1.836000px;}
.ws124{word-spacing:-1.824000px;}
.ws36{word-spacing:-1.782000px;}
.wsfc{word-spacing:-1.728000px;}
.wsf0{word-spacing:-1.632000px;}
.ws19{word-spacing:-1.620000px;}
.ws1f{word-spacing:-1.566000px;}
.ws92{word-spacing:-1.404000px;}
.ws109{word-spacing:-1.350000px;}
.ws15{word-spacing:-1.296000px;}
.ws118{word-spacing:-1.248000px;}
.wsfa{word-spacing:-1.242000px;}
.ws112{word-spacing:-1.188000px;}
.ws72{word-spacing:-1.134000px;}
.wsd{word-spacing:-1.110000px;}
.ws101{word-spacing:-1.080000px;}
.wsf2{word-spacing:-1.071000px;}
.ws154{word-spacing:-1.026000px;}
.ws12c{word-spacing:-1.008000px;}
.ws5a{word-spacing:-0.972000px;}
.ws12{word-spacing:-0.918000px;}
.wse9{word-spacing:-0.911989px;}
.ws88{word-spacing:-0.864000px;}
.ws12f{word-spacing:-0.816000px;}
.wsff{word-spacing:-0.810000px;}
.ws11b{word-spacing:-0.768000px;}
.ws122{word-spacing:-0.720000px;}
.wsbf{word-spacing:-0.702000px;}
.wsaf{word-spacing:-0.648000px;}
.wsfe{word-spacing:-0.594000px;}
.ws96{word-spacing:-0.486000px;}
.ws61{word-spacing:-0.432000px;}
.ws89{word-spacing:-0.378000px;}
.ws21{word-spacing:-0.324000px;}
.wsa2{word-spacing:-0.270000px;}
.wsd5{word-spacing:-0.240000px;}
.wsf6{word-spacing:-0.239997px;}
.ws74{word-spacing:-0.216000px;}
.ws14b{word-spacing:-0.192000px;}
.wsee{word-spacing:-0.191998px;}
.ws9b{word-spacing:-0.162000px;}
.wsd1{word-spacing:-0.150000px;}
.ws135{word-spacing:-0.144000px;}
.ws103{word-spacing:-0.108000px;}
.ws13c{word-spacing:-0.096000px;}
.wsf3{word-spacing:-0.095999px;}
.wsc8{word-spacing:-0.054000px;}
.wsf5{word-spacing:-0.047999px;}
.ws7{word-spacing:0.000000px;}
.wsf4{word-spacing:0.047999px;}
.wsac{word-spacing:0.054000px;}
.wsd2{word-spacing:0.096000px;}
.ws11{word-spacing:0.108000px;}
.wsdd{word-spacing:0.143998px;}
.wsd4{word-spacing:0.144000px;}
.ws7f{word-spacing:0.162000px;}
.ws125{word-spacing:0.192000px;}
.ws11e{word-spacing:0.336000px;}
.ws17{word-spacing:0.378000px;}
.wsef{word-spacing:0.408000px;}
.ws10d{word-spacing:0.432000px;}
.wsf1{word-spacing:0.480000px;}
.ws99{word-spacing:0.486000px;}
.wsa0{word-spacing:0.540000px;}
.ws4b{word-spacing:0.594000px;}
.wseb{word-spacing:0.623992px;}
.ws104{word-spacing:0.648000px;}
.ws45{word-spacing:0.702000px;}
.ws69{word-spacing:0.756000px;}
.ws6c{word-spacing:0.810000px;}
.wse4{word-spacing:0.863989px;}
.wsa1{word-spacing:0.918000px;}
.ws138{word-spacing:0.960000px;}
.ws26{word-spacing:0.972000px;}
.ws56{word-spacing:1.026000px;}
.ws12a{word-spacing:1.104000px;}
.wsfd{word-spacing:1.134000px;}
.ws10{word-spacing:1.188000px;}
.ws1c{word-spacing:1.242000px;}
.ws133{word-spacing:1.248000px;}
.ws152{word-spacing:1.296000px;}
.wsa8{word-spacing:1.350000px;}
.ws13{word-spacing:1.404000px;}
.wsa3{word-spacing:1.458000px;}
.ws111{word-spacing:1.512000px;}
.ws148{word-spacing:1.536000px;}
.ws58{word-spacing:1.620000px;}
.ws86{word-spacing:1.674000px;}
.ws93{word-spacing:1.728000px;}
.ws116{word-spacing:1.782000px;}
.ws59{word-spacing:1.806000px;}
.ws114{word-spacing:1.836000px;}
.ws13a{word-spacing:1.872000px;}
.wsd0{word-spacing:1.890000px;}
.wscb{word-spacing:1.944000px;}
.wse{word-spacing:2.016000px;}
.wsaa{word-spacing:2.052000px;}
.ws13e{word-spacing:2.064000px;}
.ws16{word-spacing:2.106000px;}
.ws65{word-spacing:2.160000px;}
.ws131{word-spacing:2.208000px;}
.ws107{word-spacing:2.214000px;}
.ws95{word-spacing:2.268000px;}
.ws4e{word-spacing:2.322000px;}
.ws60{word-spacing:2.430000px;}
.ws23{word-spacing:2.484000px;}
.ws80{word-spacing:2.538000px;}
.ws98{word-spacing:2.646000px;}
.ws83{word-spacing:2.700000px;}
.ws8d{word-spacing:2.754000px;}
.ws84{word-spacing:2.808000px;}
.ws48{word-spacing:2.862000px;}
.ws10c{word-spacing:2.916000px;}
.ws8{word-spacing:2.970000px;}
.ws49{word-spacing:3.024000px;}
.ws77{word-spacing:3.078000px;}
.ws30{word-spacing:3.132000px;}
.ws117{word-spacing:3.168000px;}
.ws4f{word-spacing:3.186000px;}
.ws13f{word-spacing:3.216000px;}
.ws1b{word-spacing:3.294000px;}
.ws13b{word-spacing:3.312000px;}
.wsb0{word-spacing:3.348000px;}
.ws34{word-spacing:3.510000px;}
.ws6b{word-spacing:3.564000px;}
.wsc0{word-spacing:3.618000px;}
.ws75{word-spacing:3.672000px;}
.ws150{word-spacing:3.726000px;}
.ws81{word-spacing:3.780000px;}
.ws25{word-spacing:3.888000px;}
.wsab{word-spacing:3.942000px;}
.wsc5{word-spacing:3.996000px;}
.ws5f{word-spacing:4.050000px;}
.ws44{word-spacing:4.212000px;}
.ws14e{word-spacing:4.266000px;}
.ws7d{word-spacing:4.320000px;}
.ws64{word-spacing:4.374000px;}
.ws24{word-spacing:4.428000px;}
.wsb{word-spacing:4.464000px;}
.ws20{word-spacing:4.482000px;}
.ws8f{word-spacing:4.536000px;}
.ws32{word-spacing:4.590000px;}
.ws51{word-spacing:4.644000px;}
.ws126{word-spacing:4.656000px;}
.ws108{word-spacing:4.698000px;}
.ws143{word-spacing:4.704000px;}
.ws121{word-spacing:4.800000px;}
.ws62{word-spacing:4.860000px;}
.ws3a{word-spacing:4.914000px;}
.ws115{word-spacing:4.968000px;}
.ws94{word-spacing:5.022000px;}
.ws55{word-spacing:5.076000px;}
.ws4a{word-spacing:5.130000px;}
.ws141{word-spacing:5.232000px;}
.wscc{word-spacing:5.238000px;}
.ws27{word-spacing:5.292000px;}
.ws85{word-spacing:5.400000px;}
.wsca{word-spacing:5.454000px;}
.wsad{word-spacing:5.508000px;}
.ws140{word-spacing:5.568000px;}
.ws6d{word-spacing:5.616000px;}
.ws8c{word-spacing:5.670000px;}
.ws73{word-spacing:5.724000px;}
.ws3b{word-spacing:5.778000px;}
.ws38{word-spacing:5.940000px;}
.ws52{word-spacing:5.994000px;}
.wsb5{word-spacing:6.048000px;}
.ws39{word-spacing:6.102000px;}
.ws10e{word-spacing:6.156000px;}
.ws9d{word-spacing:6.210000px;}
.ws79{word-spacing:6.264000px;}
.ws7e{word-spacing:6.318000px;}
.ws78{word-spacing:6.372000px;}
.wsc9{word-spacing:6.480000px;}
.ws102{word-spacing:6.534000px;}
.ws14d{word-spacing:6.552000px;}
.wsbe{word-spacing:6.642000px;}
.ws3f{word-spacing:6.696000px;}
.wsb4{word-spacing:6.750000px;}
.ws22{word-spacing:6.858000px;}
.wsf8{word-spacing:6.912000px;}
.ws14c{word-spacing:6.960000px;}
.ws3e{word-spacing:6.966000px;}
.wsf{word-spacing:6.972000px;}
.ws129{word-spacing:7.008000px;}
.ws100{word-spacing:7.020000px;}
.ws7c{word-spacing:7.074000px;}
.ws132{word-spacing:7.104000px;}
.ws33{word-spacing:7.128000px;}
.ws4d{word-spacing:7.182000px;}
.ws5d{word-spacing:7.236000px;}
.wsa4{word-spacing:7.290000px;}
.ws7a{word-spacing:7.506000px;}
.ws5e{word-spacing:7.560000px;}
.ws31{word-spacing:7.614000px;}
.wsbc{word-spacing:7.668000px;}
.ws46{word-spacing:7.722000px;}
.ws68{word-spacing:7.830000px;}
.ws3d{word-spacing:7.884000px;}
.ws6f{word-spacing:7.992000px;}
.ws42{word-spacing:8.046000px;}
.ws146{word-spacing:8.064000px;}
.ws2d{word-spacing:8.100000px;}
.ws5b{word-spacing:8.262000px;}
.ws14f{word-spacing:8.316000px;}
.ws10b{word-spacing:8.370000px;}
.wsc2{word-spacing:8.532000px;}
.wsf9{word-spacing:8.586000px;}
.ws9c{word-spacing:8.640000px;}
.wsce{word-spacing:8.694000px;}
.wscf{word-spacing:8.748000px;}
.wsa7{word-spacing:8.802000px;}
.ws53{word-spacing:8.856000px;}
.ws12d{word-spacing:8.880000px;}
.ws91{word-spacing:8.964000px;}
.wsa9{word-spacing:9.072000px;}
.ws47{word-spacing:9.126000px;}
.ws128{word-spacing:9.168000px;}
.ws4c{word-spacing:9.234000px;}
.ws41{word-spacing:9.396000px;}
.ws144{word-spacing:9.408000px;}
.ws2f{word-spacing:9.504000px;}
.ws11a{word-spacing:9.600000px;}
.ws76{word-spacing:9.612000px;}
.wsae{word-spacing:9.720000px;}
.ws11d{word-spacing:9.984000px;}
.ws7b{word-spacing:9.990000px;}
.ws40{word-spacing:10.044000px;}
.ws12b{word-spacing:10.128000px;}
.ws149{word-spacing:10.224000px;}
.ws43{word-spacing:10.314000px;}
.wsc{word-spacing:10.320000px;}
.ws35{word-spacing:10.422000px;}
.ws11f{word-spacing:10.464000px;}
.ws110{word-spacing:10.638000px;}
.wsbb{word-spacing:10.692000px;}
.wsc6{word-spacing:10.746000px;}
.ws5c{word-spacing:10.908000px;}
.ws139{word-spacing:10.944000px;}
.ws71{word-spacing:11.124000px;}
.ws142{word-spacing:11.184000px;}
.ws9{word-spacing:11.188800px;}
.ws90{word-spacing:11.340000px;}
.wsc4{word-spacing:11.556000px;}
.ws6a{word-spacing:11.610000px;}
.ws50{word-spacing:11.718000px;}
.ws67{word-spacing:11.772000px;}
.ws54{word-spacing:11.826000px;}
.wsc3{word-spacing:12.096000px;}
.ws105{word-spacing:12.150000px;}
.ws66{word-spacing:12.798000px;}
.ws9f{word-spacing:13.122000px;}
.wsb3{word-spacing:13.446000px;}
.ws10f{word-spacing:13.500000px;}
.ws2e{word-spacing:14.472000px;}
.ws106{word-spacing:14.580000px;}
.ws119{word-spacing:15.072000px;}
.wsb6{word-spacing:15.336000px;}
.ws130{word-spacing:15.408000px;}
.ws3c{word-spacing:15.552000px;}
.wsbd{word-spacing:15.714000px;}
.wsb2{word-spacing:16.308000px;}
.ws11c{word-spacing:16.320000px;}
.ws1d{word-spacing:16.632000px;}
.ws137{word-spacing:17.040000px;}
.wsb1{word-spacing:17.118000px;}
.ws6e{word-spacing:17.874000px;}
.ws9e{word-spacing:17.982000px;}
.wscd{word-spacing:18.198000px;}
.ws147{word-spacing:18.240000px;}
.ws10a{word-spacing:19.548000px;}
.ws12e{word-spacing:20.064000px;}
.ws136{word-spacing:21.168000px;}
.ws14a{word-spacing:22.080000px;}
.wsa6{word-spacing:22.788000px;}
.wsa5{word-spacing:24.462000px;}
.ws123{word-spacing:28.032000px;}
.wsda{word-spacing:61.631230px;}
.wsd7{word-spacing:418.032000px;}
.wsd6{word-spacing:431.376000px;}
._18{margin-left:-273.552000px;}
._14{margin-left:-40.500000px;}
._d{margin-left:-36.750000px;}
._16{margin-left:-26.493300px;}
._b{margin-left:-25.281000px;}
._17{margin-left:-18.540000px;}
._20{margin-left:-16.080000px;}
._11{margin-left:-14.490000px;}
._2{margin-left:-11.198880px;}
._4{margin-left:-9.833040px;}
._f{margin-left:-7.938000px;}
._7{margin-left:-6.068700px;}
._8{margin-left:-4.095000px;}
._1{margin-left:-2.520000px;}
._0{margin-left:-1.008000px;}
._3{width:1.265040px;}
._6{width:2.340000px;}
._9{width:3.463764px;}
._13{width:4.666188px;}
._1e{width:7.632000px;}
._1f{width:10.032000px;}
._1d{width:13.632000px;}
._c{width:29.232000px;}
._e{width:31.248000px;}
._15{width:38.988000px;}
._22{width:63.306000px;}
._10{width:81.792000px;}
._a{width:118.992000px;}
._1b{width:166.794960px;}
._21{width:196.956000px;}
._1a{width:228.432000px;}
._19{width:239.760000px;}
._1c{width:446.928000px;}
._5{width:931.815360px;}
._12{width:954.504000px;}
.fc3{color:transparent;}
.fc2{color:rgb(35,31,32);}
.fc1{color:rgb(48,156,221);}
.fc0{color:rgb(112,109,110);}
.fs8{font-size:24.486000px;}
.fs7{font-size:30.000000px;}
.fsd{font-size:33.000000px;}
.fsb{font-size:34.980000px;}
.fs5{font-size:40.227000px;}
.fs9{font-size:42.000000px;}
.fse{font-size:47.999400px;}
.fs6{font-size:48.000000px;}
.fs1{font-size:50.400000px;}
.fsc{font-size:51.000000px;}
.fs0{font-size:54.000000px;}
.fsa{font-size:60.000000px;}
.fs4{font-size:69.000000px;}
.fs2{font-size:84.000000px;}
.fs3{font-size:117.000000px;}
.y0{bottom:0.000000px;}
.y150{bottom:0.000150px;}
.y119{bottom:2.544150px;}
.y12b{bottom:2.688900px;}
.y148{bottom:9.538650px;}
.y14e{bottom:13.500150px;}
.y3e{bottom:44.992500px;}
.y116{bottom:47.419800px;}
.y14b{bottom:52.908150px;}
.y4b{bottom:88.657500px;}
.y4a{bottom:97.657500px;}
.y75{bottom:99.148650px;}
.y154{bottom:99.149400px;}
.y11c{bottom:99.150150px;}
.ya6{bottom:99.222000px;}
.ydf{bottom:99.234000px;}
.y3d{bottom:99.390000px;}
.y182{bottom:100.391100px;}
.y49{bottom:106.657500px;}
.y153{bottom:108.150150px;}
.y181{bottom:113.891100px;}
.y74{bottom:114.646650px;}
.y113{bottom:115.650000px;}
.y48{bottom:115.657500px;}
.ya5{bottom:115.719000px;}
.yde{bottom:115.731000px;}
.y3c{bottom:115.887000px;}
.y13b{bottom:124.650000px;}
.y180{bottom:127.391100px;}
.ya4{bottom:132.216000px;}
.ydd{bottom:132.228000px;}
.y3b{bottom:132.384000px;}
.y17f{bottom:140.891100px;}
.y118{bottom:142.687650px;}
.y151{bottom:147.664650px;}
.ya3{bottom:148.713000px;}
.ydc{bottom:148.725000px;}
.y3a{bottom:148.881000px;}
.y4e{bottom:150.642000px;}
.y12a{bottom:153.620400px;}
.y17e{bottom:154.391100px;}
.y117{bottom:155.119650px;}
.y144{bottom:162.207889px;}
.y4d{bottom:162.643500px;}
.y115{bottom:163.069800px;}
.ya2{bottom:165.210000px;}
.y73{bottom:165.213000px;}
.ydb{bottom:165.222000px;}
.y39{bottom:165.378000px;}
.y4f{bottom:166.141500px;}
.y17d{bottom:167.891100px;}
.y14a{bottom:167.958291px;}
.y146{bottom:177.639696px;}
.y13e{bottom:178.023691px;}
.y4c{bottom:178.141500px;}
.y149{bottom:179.238150px;}
.y10d{bottom:180.448650px;}
.y17c{bottom:181.391100px;}
.y72{bottom:181.710000px;}
.yda{bottom:181.719000px;}
.y142{bottom:181.743645px;}
.y38{bottom:181.875000px;}
.y143{bottom:185.595596px;}
.y13f{bottom:188.223564px;}
.y109{bottom:189.172650px;}
.y107{bottom:189.412650px;}
.y141{bottom:189.699545px;}
.y17b{bottom:194.891100px;}
.y14f{bottom:195.591150px;}
.y14d{bottom:197.619503px;}
.ya1{bottom:198.210000px;}
.yd9{bottom:198.216000px;}
.y37{bottom:198.372000px;}
.y140{bottom:199.611421px;}
.y152{bottom:200.725650px;}
.y147{bottom:207.603321px;}
.y145{bottom:212.403261px;}
.y69{bottom:213.763500px;}
.y6f{bottom:213.777000px;}
.y71{bottom:214.710000px;}
.yd8{bottom:214.713000px;}
.y36{bottom:214.869000px;}
.y10a{bottom:215.488650px;}
.y1d7{bottom:218.544000px;}
.y13d{bottom:221.307150px;}
.y11a{bottom:223.090650px;}
.y10e{bottom:226.624650px;}
.y68{bottom:230.260500px;}
.y6e{bottom:230.274000px;}
.yd7{bottom:231.210000px;}
.ya0{bottom:231.249000px;}
.y35{bottom:231.366000px;}
.y17a{bottom:233.726100px;}
.y67{bottom:246.757500px;}
.y6d{bottom:246.771000px;}
.y9f{bottom:247.746000px;}
.y34{bottom:247.863000px;}
.y14c{bottom:249.866850px;}
.y1d6{bottom:250.039500px;}
.y133{bottom:254.393023px;}
.y66{bottom:263.254500px;}
.y6c{bottom:263.268000px;}
.yd6{bottom:264.210000px;}
.y9e{bottom:264.243000px;}
.y33{bottom:264.360000px;}
.y1d5{bottom:265.794000px;}
.y130{bottom:265.816880px;}
.y10f{bottom:272.800650px;}
.y65{bottom:279.751500px;}
.y6b{bottom:279.765000px;}
.y9d{bottom:280.740000px;}
.y32{bottom:280.857000px;}
.y1d4{bottom:281.548500px;}
.y131{bottom:282.016678px;}
.y12f{bottom:284.248650px;}
.y134{bottom:288.496597px;}
.y10c{bottom:290.920650px;}
.y64{bottom:296.248500px;}
.y6a{bottom:296.262000px;}
.y9c{bottom:297.237000px;}
.y179{bottom:297.297000px;}
.y1d3{bottom:297.303000px;}
.y31{bottom:297.354000px;}
.yd5{bottom:297.361500px;}
.y11b{bottom:312.898650px;}
.y1d2{bottom:313.057500px;}
.y9b{bottom:313.734000px;}
.y178{bottom:313.794000px;}
.y30{bottom:313.851000px;}
.yd4{bottom:313.858500px;}
.y110{bottom:318.976650px;}
.y135{bottom:322.600171px;}
.y1d1{bottom:328.812000px;}
.y9a{bottom:330.231000px;}
.y177{bottom:330.291000px;}
.y2f{bottom:330.348000px;}
.yd3{bottom:330.355500px;}
.y114{bottom:341.829000px;}
.y1d0{bottom:344.566500px;}
.y99{bottom:346.728000px;}
.y2e{bottom:346.845000px;}
.yd2{bottom:346.852500px;}
.y136{bottom:356.703744px;}
.y1cf{bottom:360.321000px;}
.y63{bottom:361.723500px;}
.y98{bottom:363.225000px;}
.y176{bottom:363.285000px;}
.y2d{bottom:363.342000px;}
.yd1{bottom:363.349500px;}
.y111{bottom:365.140650px;}
.y128{bottom:366.225600px;}
.y1ce{bottom:376.075500px;}
.y97{bottom:379.722000px;}
.y2c{bottom:379.839000px;}
.yd0{bottom:379.846500px;}
.y137{bottom:390.819318px;}
.y1cd{bottom:391.830000px;}
.y96{bottom:396.219000px;}
.y175{bottom:396.279000px;}
.y2b{bottom:396.336000px;}
.ycf{bottom:396.343500px;}
.y13c{bottom:402.638250px;}
.y62{bottom:405.841500px;}
.y1cc{bottom:407.584500px;}
.y112{bottom:411.316650px;}
.y95{bottom:412.716000px;}
.y174{bottom:412.776000px;}
.y2a{bottom:412.833000px;}
.yce{bottom:412.840500px;}
.y61{bottom:421.596000px;}
.y1cb{bottom:423.339000px;}
.y138{bottom:424.922892px;}
.y94{bottom:429.213000px;}
.y173{bottom:429.273000px;}
.y29{bottom:429.330000px;}
.ycd{bottom:429.337500px;}
.y10b{bottom:435.328650px;}
.y60{bottom:437.350500px;}
.y1ca{bottom:439.093500px;}
.y93{bottom:445.710000px;}
.y172{bottom:445.770000px;}
.y28{bottom:445.827000px;}
.ycc{bottom:445.834500px;}
.y108{bottom:448.972650px;}
.y5f{bottom:453.105000px;}
.y1c9{bottom:454.848000px;}
.y139{bottom:459.026465px;}
.y171{bottom:462.267000px;}
.y27{bottom:462.324000px;}
.ycb{bottom:462.331500px;}
.y5e{bottom:468.859500px;}
.y1c8{bottom:470.602500px;}
.y92{bottom:478.710000px;}
.y170{bottom:478.764000px;}
.y26{bottom:478.821000px;}
.yca{bottom:478.828500px;}
.y5d{bottom:484.614000px;}
.y106{bottom:485.895000px;}
.y1c7{bottom:486.357000px;}
.y13a{bottom:493.130039px;}
.y16f{bottom:495.261000px;}
.y25{bottom:495.318000px;}
.yc9{bottom:495.325500px;}
.y5c{bottom:500.368500px;}
.y105{bottom:500.889000px;}
.y1c6{bottom:502.111500px;}
.y132{bottom:508.465847px;}
.y91{bottom:511.734000px;}
.y24{bottom:511.815000px;}
.yc8{bottom:511.822500px;}
.y5b{bottom:516.123000px;}
.y1c5{bottom:517.866000px;}
.y1ab{bottom:522.207000px;}
.y1aa{bottom:522.210000px;}
.y90{bottom:528.231000px;}
.y16e{bottom:528.255000px;}
.y23{bottom:528.312000px;}
.yc7{bottom:528.319500px;}
.y5a{bottom:531.877500px;}
.y1c4{bottom:533.620500px;}
.y1a9{bottom:535.710000px;}
.y8f{bottom:544.728000px;}
.y16d{bottom:544.752000px;}
.y22{bottom:544.809000px;}
.yc6{bottom:544.816500px;}
.y59{bottom:547.632000px;}
.y1a8{bottom:549.210000px;}
.y1c3{bottom:549.375000px;}
.y12e{bottom:555.703650px;}
.ye5{bottom:561.222000px;}
.y8e{bottom:561.225000px;}
.y16c{bottom:561.249000px;}
.y104{bottom:561.273000px;}
.y21{bottom:561.306000px;}
.yc5{bottom:561.313500px;}
.y1a7{bottom:562.710000px;}
.y58{bottom:563.386500px;}
.y12d{bottom:570.697650px;}
.y1a6{bottom:576.210000px;}
.ye4{bottom:577.719000px;}
.y8d{bottom:577.722000px;}
.y16b{bottom:577.746000px;}
.y103{bottom:577.770000px;}
.y20{bottom:577.803000px;}
.yc4{bottom:577.810500px;}
.y57{bottom:579.141000px;}
.y1c2{bottom:585.372000px;}
.y1a5{bottom:589.710000px;}
.ye3{bottom:594.216000px;}
.y8c{bottom:594.219000px;}
.y16a{bottom:594.243000px;}
.y102{bottom:594.267000px;}
.y1f{bottom:594.300000px;}
.yc3{bottom:594.307500px;}
.y56{bottom:594.895500px;}
.y1a4{bottom:603.210000px;}
.y1c1{bottom:609.375000px;}
.y55{bottom:610.650000px;}
.ye2{bottom:610.713000px;}
.y8b{bottom:610.716000px;}
.y169{bottom:610.740000px;}
.y101{bottom:610.764000px;}
.y1e{bottom:610.797000px;}
.yc2{bottom:610.804500px;}
.y1a3{bottom:616.710000px;}
.y54{bottom:626.404500px;}
.ye1{bottom:627.210000px;}
.y8a{bottom:627.213000px;}
.y100{bottom:627.261000px;}
.y1d{bottom:627.294000px;}
.yc1{bottom:627.301500px;}
.y1a2{bottom:630.210000px;}
.y53{bottom:642.159000px;}
.y89{bottom:643.710000px;}
.y168{bottom:643.734000px;}
.yff{bottom:643.758000px;}
.y1c{bottom:643.791000px;}
.yc0{bottom:643.798500px;}
.y1a1{bottom:657.210000px;}
.y52{bottom:657.913500px;}
.ye0{bottom:660.210000px;}
.y167{bottom:660.231000px;}
.yfe{bottom:660.255000px;}
.y1b{bottom:660.288000px;}
.ybf{bottom:660.295500px;}
.y12c{bottom:663.075750px;}
.y1a0{bottom:670.710000px;}
.y51{bottom:673.668000px;}
.y88{bottom:676.710000px;}
.y166{bottom:676.728000px;}
.yfd{bottom:676.752000px;}
.y1a{bottom:676.785000px;}
.ybe{bottom:676.792500px;}
.y127{bottom:679.575000px;}
.y19f{bottom:684.210000px;}
.y50{bottom:689.422500px;}
.y165{bottom:693.225000px;}
.yfc{bottom:693.249000px;}
.y19{bottom:693.282000px;}
.ybd{bottom:693.289500px;}
.y19e{bottom:697.710000px;}
.y129{bottom:704.325900px;}
.y87{bottom:709.722000px;}
.yfb{bottom:709.746000px;}
.y18{bottom:709.779000px;}
.ybc{bottom:709.786500px;}
.y19d{bottom:711.210000px;}
.y122{bottom:713.876100px;}
.y1c0{bottom:718.263000px;}
.y19c{bottom:724.710000px;}
.y86{bottom:726.219000px;}
.yfa{bottom:726.243000px;}
.y17{bottom:726.276000px;}
.ybb{bottom:726.283500px;}
.y19b{bottom:738.210000px;}
.y85{bottom:742.716000px;}
.yf9{bottom:742.740000px;}
.y16{bottom:742.773000px;}
.yba{bottom:742.780500px;}
.y121{bottom:749.228100px;}
.y1bf{bottom:749.758500px;}
.y19a{bottom:751.710000px;}
.y47{bottom:755.442150px;}
.y84{bottom:759.213000px;}
.yf8{bottom:759.237000px;}
.y15{bottom:759.270000px;}
.yb9{bottom:759.277500px;}
.y199{bottom:765.210000px;}
.y1be{bottom:765.513000px;}
.y46{bottom:771.186150px;}
.y83{bottom:775.710000px;}
.yf7{bottom:775.734000px;}
.y14{bottom:775.767000px;}
.yb8{bottom:775.774500px;}
.y198{bottom:778.710000px;}
.y123{bottom:780.260100px;}
.y1bd{bottom:781.267500px;}
.y45{bottom:786.930150px;}
.y120{bottom:788.204100px;}
.y197{bottom:792.210000px;}
.yf6{bottom:792.231000px;}
.y13{bottom:792.264000px;}
.yb7{bottom:792.271500px;}
.y1bc{bottom:797.022000px;}
.y196{bottom:805.710000px;}
.y82{bottom:808.710000px;}
.yf5{bottom:808.728000px;}
.y12{bottom:808.761000px;}
.yb6{bottom:808.768500px;}
.y1bb{bottom:812.776500px;}
.y195{bottom:819.210000px;}
.yf4{bottom:825.225000px;}
.y11{bottom:825.258000px;}
.yb5{bottom:825.265500px;}
.y11f{bottom:827.156100px;}
.y1ba{bottom:828.531000px;}
.y194{bottom:832.710000px;}
.yf3{bottom:841.722000px;}
.y81{bottom:841.731000px;}
.y10{bottom:841.755000px;}
.yb4{bottom:841.762500px;}
.y164{bottom:841.903500px;}
.y1b9{bottom:844.285500px;}
.y193{bottom:846.210000px;}
.y124{bottom:846.644100px;}
.y44{bottom:849.410250px;}
.yf2{bottom:858.219000px;}
.y80{bottom:858.228000px;}
.yf{bottom:858.252000px;}
.yb3{bottom:858.259500px;}
.y163{bottom:858.400500px;}
.y192{bottom:859.710000px;}
.y1b8{bottom:860.040000px;}
.y191{bottom:873.210000px;}
.y43{bottom:873.405000px;}
.yf1{bottom:874.716000px;}
.y7f{bottom:874.725000px;}
.ye{bottom:874.749000px;}
.yb2{bottom:874.756500px;}
.y162{bottom:874.897500px;}
.y1b7{bottom:875.794500px;}
.y190{bottom:886.710000px;}
.yf0{bottom:891.213000px;}
.y7e{bottom:891.222000px;}
.yd{bottom:891.246000px;}
.yb1{bottom:891.253500px;}
.y161{bottom:891.394500px;}
.y1b6{bottom:891.549000px;}
.y18f{bottom:900.210000px;}
.y1b5{bottom:907.303500px;}
.yef{bottom:907.710000px;}
.y7d{bottom:907.719000px;}
.yc{bottom:907.743000px;}
.yb0{bottom:907.750500px;}
.y160{bottom:907.891500px;}
.y125{bottom:913.028100px;}
.y18e{bottom:913.710000px;}
.y1b4{bottom:923.058000px;}
.y7c{bottom:924.216000px;}
.yb{bottom:924.240000px;}
.yaf{bottom:924.247500px;}
.y15f{bottom:924.388500px;}
.y18d{bottom:927.210000px;}
.y42{bottom:927.391500px;}
.y1b3{bottom:938.812500px;}
.yee{bottom:940.710000px;}
.y7b{bottom:940.713000px;}
.ya{bottom:940.737000px;}
.yae{bottom:940.744500px;}
.y15e{bottom:940.885500px;}
.y18c{bottom:954.210000px;}
.y1b2{bottom:954.567000px;}
.y7a{bottom:957.210000px;}
.y9{bottom:957.234000px;}
.yad{bottom:957.241500px;}
.y15d{bottom:957.382500px;}
.y41{bottom:963.398250px;}
.y18b{bottom:967.710000px;}
.y1b1{bottom:970.321500px;}
.y8{bottom:973.731000px;}
.yac{bottom:973.738500px;}
.yed{bottom:973.741500px;}
.y15c{bottom:973.879500px;}
.y126{bottom:979.412100px;}
.y18a{bottom:981.210000px;}
.y1b0{bottom:986.076000px;}
.y79{bottom:990.210000px;}
.y7{bottom:990.228000px;}
.yab{bottom:990.235500px;}
.yec{bottom:990.238500px;}
.y15b{bottom:990.376500px;}
.y189{bottom:994.710000px;}
.y40{bottom:999.405000px;}
.y11e{bottom:999.992100px;}
.y1af{bottom:1001.830500px;}
.y78{bottom:1006.710000px;}
.y6{bottom:1006.725000px;}
.yeb{bottom:1006.735500px;}
.y15a{bottom:1006.873500px;}
.y188{bottom:1008.210000px;}
.y1ae{bottom:1017.585000px;}
.y187{bottom:1021.710000px;}
.y5{bottom:1023.222000px;}
.yaa{bottom:1023.229500px;}
.yea{bottom:1023.232500px;}
.y159{bottom:1023.370500px;}
.y186{bottom:1035.210000px;}
.y77{bottom:1039.713000px;}
.y4{bottom:1039.719000px;}
.ya9{bottom:1039.726500px;}
.ye9{bottom:1039.729500px;}
.y158{bottom:1039.867500px;}
.y185{bottom:1048.710000px;}
.y1ad{bottom:1053.582000px;}
.y76{bottom:1056.210000px;}
.y3{bottom:1056.216000px;}
.ye8{bottom:1056.226500px;}
.y157{bottom:1056.364500px;}
.y184{bottom:1062.210000px;}
.y3f{bottom:1070.880000px;}
.y2{bottom:1072.713000px;}
.ya8{bottom:1072.720500px;}
.ye7{bottom:1072.723500px;}
.y156{bottom:1072.861500px;}
.y11d{bottom:1074.216000px;}
.y183{bottom:1075.710000px;}
.y1ac{bottom:1077.585000px;}
.y1{bottom:1089.210000px;}
.ya7{bottom:1089.217500px;}
.ye6{bottom:1089.220500px;}
.y155{bottom:1089.358500px;}
.y70{bottom:1134.249150px;}
.h8{height:24.948000px;}
.h7{height:27.810000px;}
.h1b{height:30.723000px;}
.h13{height:31.746000px;}
.h14{height:33.984000px;}
.h1a{height:34.799565px;}
.hf{height:34.944000px;}
.h12{height:35.760000px;}
.h18{height:36.095549px;}
.h9{height:38.934000px;}
.h1d{height:44.496000px;}
.hb{height:44.688000px;}
.h16{height:46.319421px;}
.h6{height:46.992000px;}
.h2{height:48.484800px;}
.hd{height:49.062000px;}
.h1{height:50.058000px;}
.h1c{height:51.948000px;}
.ha{height:52.866000px;}
.h10{height:57.024000px;}
.hc{height:57.720000px;}
.h17{height:62.015225px;}
.he{height:63.552000px;}
.h5{height:64.239000px;}
.h3{height:80.808000px;}
.h4{height:112.554000px;}
.h11{height:351.789000px;}
.h15{height:376.185000px;}
.h19{height:412.597500px;}
.h0{height:1188.000000px;}
.w2{width:594.003000px;}
.w3{width:594.055500px;}
.w1{width:594.370500px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x20{left:9.960900px;}
.x1c{left:11.840400px;}
.x2b{left:18.818250px;}
.x3{left:63.000000px;}
.x4{left:67.500000px;}
.x11{left:69.750000px;}
.x7{left:76.497750px;}
.x10{left:79.497000px;}
.x9{left:81.000000px;}
.x46{left:82.500000px;}
.x6{left:88.687500px;}
.xa{left:94.500000px;}
.x44{left:100.500000px;}
.x2a{left:152.998500px;}
.x1b{left:170.814000px;}
.x29{left:171.821400px;}
.x30{left:178.461236px;}
.x5{left:179.628000px;}
.x1a{left:182.649450px;}
.x19{left:191.289450px;}
.x2d{left:197.373000px;}
.x31{left:201.509700px;}
.x18{left:202.929450px;}
.x32{left:234.209291px;}
.x22{left:235.967250px;}
.x12{left:246.669450px;}
.x1d{left:249.089400px;}
.x2e{left:256.184265px;}
.x25{left:258.185400px;}
.x2c{left:263.089650px;}
.x33{left:266.908883px;}
.x14{left:272.733450px;}
.x34{left:299.608474px;}
.x35{left:332.308065px;}
.x36{left:365.007656px;}
.x37{left:397.707247px;}
.x26{left:399.305400px;}
.x3a{left:408.216450px;}
.x43{left:415.110750px;}
.x21{left:431.001750px;}
.x8{left:461.250000px;}
.x38{left:463.106430px;}
.x1e{left:465.591750px;}
.x3d{left:473.612100px;}
.xf{left:474.750000px;}
.xb{left:479.250000px;}
.x47{left:480.750000px;}
.xd{left:486.000000px;}
.xc{left:492.750000px;}
.xe{left:495.747000px;}
.x45{left:498.744000px;}
.x23{left:513.627750px;}
.x39{left:528.505613px;}
.x27{left:534.161400px;}
.x15{left:539.673450px;}
.x3b{left:561.189450px;}
.x41{left:571.707600px;}
.x3c{left:593.889041px;}
.x13{left:601.953450px;}
.x3e{left:626.585100px;}
.x16{left:629.625450px;}
.x3f{left:659.284691px;}
.x28{left:672.653400px;}
.x2f{left:681.842944px;}
.x40{left:691.982100px;}
.x24{left:696.567750px;}
.x1f{left:711.972750px;}
.x17{left:722.145450px;}
.x42{left:724.680600px;}
.x2{left:940.606500px;}
.x1{left:951.825000px;}
@media print{
.vb{vertical-align:-28.074316pt;}
.vd{vertical-align:-22.485052pt;}
.v2{vertical-align:-12.432000pt;}
.v6{vertical-align:-9.429333pt;}
.ve{vertical-align:-4.991938pt;}
.v8{vertical-align:-3.285292pt;}
.v0{vertical-align:0.000000pt;}
.vc{vertical-align:1.365316pt;}
.v4{vertical-align:4.053333pt;}
.v9{vertical-align:5.674596pt;}
.vf{vertical-align:7.978567pt;}
.v7{vertical-align:9.087886pt;}
.v3{vertical-align:17.760000pt;}
.v1{vertical-align:20.424000pt;}
.v5{vertical-align:25.429333pt;}
.va{vertical-align:26.325004pt;}
.ls1e{letter-spacing:-5.669333pt;}
.lsf{letter-spacing:-5.322667pt;}
.ls10{letter-spacing:-5.301333pt;}
.ls13{letter-spacing:-5.280000pt;}
.ls11{letter-spacing:-4.416000pt;}
.ls7{letter-spacing:-2.640000pt;}
.ls1d{letter-spacing:-0.768000pt;}
.ls9{letter-spacing:-0.672000pt;}
.ls12{letter-spacing:-0.480000pt;}
.ls34{letter-spacing:-0.426667pt;}
.ls38{letter-spacing:-0.383995pt;}
.ls3b{letter-spacing:-0.298663pt;}
.ls8{letter-spacing:-0.224000pt;}
.lsa{letter-spacing:-0.192000pt;}
.ls37{letter-spacing:-0.170665pt;}
.ls22{letter-spacing:-0.128000pt;}
.ls14{letter-spacing:-0.096000pt;}
.ls1f{letter-spacing:-0.085333pt;}
.ls36{letter-spacing:-0.085332pt;}
.lse{letter-spacing:-0.042667pt;}
.ls6{letter-spacing:0.000000pt;}
.ls1b{letter-spacing:0.042667pt;}
.ls0{letter-spacing:0.044800pt;}
.lsb{letter-spacing:0.045025pt;}
.ls30{letter-spacing:0.085332pt;}
.ls35{letter-spacing:0.085333pt;}
.ls31{letter-spacing:0.127998pt;}
.ls3d{letter-spacing:0.170665pt;}
.ls1c{letter-spacing:0.170667pt;}
.ls2f{letter-spacing:0.213331pt;}
.ls1a{letter-spacing:0.213333pt;}
.ls32{letter-spacing:0.255997pt;}
.lsd{letter-spacing:0.288000pt;}
.ls3f{letter-spacing:0.426661pt;}
.ls5{letter-spacing:0.480000pt;}
.ls3e{letter-spacing:0.511994pt;}
.ls33{letter-spacing:0.554660pt;}
.ls15{letter-spacing:0.576000pt;}
.ls2{letter-spacing:0.597333pt;}
.ls42{letter-spacing:0.682667pt;}
.ls1{letter-spacing:0.853333pt;}
.ls43{letter-spacing:1.450667pt;}
.ls40{letter-spacing:9.898543pt;}
.ls3a{letter-spacing:10.154540pt;}
.ls39{letter-spacing:10.410537pt;}
.ls3c{letter-spacing:10.666533pt;}
.ls2b{letter-spacing:60.671242pt;}
.ls29{letter-spacing:62.036558pt;}
.ls27{letter-spacing:62.377887pt;}
.ls2d{letter-spacing:62.505885pt;}
.ls28{letter-spacing:63.657871pt;}
.ls25{letter-spacing:64.980521pt;}
.ls2c{letter-spacing:65.236518pt;}
.ls24{letter-spacing:65.279184pt;}
.ls2e{letter-spacing:67.753820pt;}
.ls2a{letter-spacing:68.393812pt;}
.ls26{letter-spacing:73.172419pt;}
.ls23{letter-spacing:75.689721pt;}
.ls44{letter-spacing:141.216000pt;}
.ls3{letter-spacing:161.328000pt;}
.ls45{letter-spacing:190.656000pt;}
.ls21{letter-spacing:237.952000pt;}
.ls20{letter-spacing:243.072000pt;}
.ls17{letter-spacing:291.840000pt;}
.ls19{letter-spacing:291.882667pt;}
.ls18{letter-spacing:303.872000pt;}
.ls16{letter-spacing:303.957333pt;}
.ls4{letter-spacing:401.328000pt;}
.lsc{letter-spacing:838.252688pt;}
.ls41{letter-spacing:838.252800pt;}
.wsb8{word-spacing:-253.312000pt;}
.wsd3{word-spacing:-237.952000pt;}
.ws3{word-spacing:-37.109333pt;}
.wse7{word-spacing:-20.906405pt;}
.wse2{word-spacing:-20.650409pt;}
.wse3{word-spacing:-20.394412pt;}
.wsed{word-spacing:-20.138415pt;}
.ws82{word-spacing:-14.826667pt;}
.ws29{word-spacing:-14.346667pt;}
.ws4{word-spacing:-13.344000pt;}
.ws6{word-spacing:-13.152000pt;}
.wsf7{word-spacing:-12.864000pt;}
.ws5{word-spacing:-12.672000pt;}
.ws1{word-spacing:-12.458667pt;}
.ws2b{word-spacing:-12.288000pt;}
.ws2c{word-spacing:-12.000000pt;}
.wsea{word-spacing:-10.751866pt;}
.ws120{word-spacing:-10.666667pt;}
.wsec{word-spacing:-10.666533pt;}
.wsdc{word-spacing:-10.453203pt;}
.wsb9{word-spacing:-10.410667pt;}
.wse8{word-spacing:-10.410537pt;}
.wsdf{word-spacing:-10.367870pt;}
.wse6{word-spacing:-10.325204pt;}
.wsd8{word-spacing:-10.282538pt;}
.wsb7{word-spacing:-10.240000pt;}
.wsde{word-spacing:-10.239872pt;}
.wse1{word-spacing:-10.197206pt;}
.wsd9{word-spacing:-10.154540pt;}
.wsdb{word-spacing:-10.069207pt;}
.wse5{word-spacing:-9.941209pt;}
.ws0{word-spacing:-9.940539pt;}
.wse0{word-spacing:-9.855877pt;}
.ws2a{word-spacing:-9.546667pt;}
.wsba{word-spacing:-8.154667pt;}
.ws28{word-spacing:-6.677333pt;}
.ws57{word-spacing:-6.400000pt;}
.ws2{word-spacing:-5.441333pt;}
.ws13d{word-spacing:-3.584000pt;}
.ws97{word-spacing:-3.408000pt;}
.ws8e{word-spacing:-3.360000pt;}
.ws9a{word-spacing:-3.072000pt;}
.wsa{word-spacing:-3.066667pt;}
.ws145{word-spacing:-2.901333pt;}
.wsfb{word-spacing:-2.736000pt;}
.wsc1{word-spacing:-2.688000pt;}
.ws8a{word-spacing:-2.496000pt;}
.ws18{word-spacing:-2.448000pt;}
.wsc7{word-spacing:-2.352000pt;}
.ws1e{word-spacing:-2.304000pt;}
.ws70{word-spacing:-2.256000pt;}
.ws134{word-spacing:-2.176000pt;}
.ws113{word-spacing:-2.160000pt;}
.ws87{word-spacing:-2.112000pt;}
.ws14{word-spacing:-2.064000pt;}
.ws63{word-spacing:-2.016000pt;}
.ws153{word-spacing:-1.968000pt;}
.ws127{word-spacing:-1.877333pt;}
.ws1a{word-spacing:-1.872000pt;}
.ws37{word-spacing:-1.824000pt;}
.ws151{word-spacing:-1.728000pt;}
.ws8b{word-spacing:-1.632000pt;}
.ws124{word-spacing:-1.621333pt;}
.ws36{word-spacing:-1.584000pt;}
.wsfc{word-spacing:-1.536000pt;}
.wsf0{word-spacing:-1.450667pt;}
.ws19{word-spacing:-1.440000pt;}
.ws1f{word-spacing:-1.392000pt;}
.ws92{word-spacing:-1.248000pt;}
.ws109{word-spacing:-1.200000pt;}
.ws15{word-spacing:-1.152000pt;}
.ws118{word-spacing:-1.109333pt;}
.wsfa{word-spacing:-1.104000pt;}
.ws112{word-spacing:-1.056000pt;}
.ws72{word-spacing:-1.008000pt;}
.wsd{word-spacing:-0.986667pt;}
.ws101{word-spacing:-0.960000pt;}
.wsf2{word-spacing:-0.952000pt;}
.ws154{word-spacing:-0.912000pt;}
.ws12c{word-spacing:-0.896000pt;}
.ws5a{word-spacing:-0.864000pt;}
.ws12{word-spacing:-0.816000pt;}
.wse9{word-spacing:-0.810657pt;}
.ws88{word-spacing:-0.768000pt;}
.ws12f{word-spacing:-0.725333pt;}
.wsff{word-spacing:-0.720000pt;}
.ws11b{word-spacing:-0.682667pt;}
.ws122{word-spacing:-0.640000pt;}
.wsbf{word-spacing:-0.624000pt;}
.wsaf{word-spacing:-0.576000pt;}
.wsfe{word-spacing:-0.528000pt;}
.ws96{word-spacing:-0.432000pt;}
.ws61{word-spacing:-0.384000pt;}
.ws89{word-spacing:-0.336000pt;}
.ws21{word-spacing:-0.288000pt;}
.wsa2{word-spacing:-0.240000pt;}
.wsd5{word-spacing:-0.213333pt;}
.wsf6{word-spacing:-0.213331pt;}
.ws74{word-spacing:-0.192000pt;}
.ws14b{word-spacing:-0.170667pt;}
.wsee{word-spacing:-0.170665pt;}
.ws9b{word-spacing:-0.144000pt;}
.wsd1{word-spacing:-0.133333pt;}
.ws135{word-spacing:-0.128000pt;}
.ws103{word-spacing:-0.096000pt;}
.ws13c{word-spacing:-0.085333pt;}
.wsf3{word-spacing:-0.085332pt;}
.wsc8{word-spacing:-0.048000pt;}
.wsf5{word-spacing:-0.042666pt;}
.ws7{word-spacing:0.000000pt;}
.wsf4{word-spacing:0.042666pt;}
.wsac{word-spacing:0.048000pt;}
.wsd2{word-spacing:0.085333pt;}
.ws11{word-spacing:0.096000pt;}
.wsdd{word-spacing:0.127998pt;}
.wsd4{word-spacing:0.128000pt;}
.ws7f{word-spacing:0.144000pt;}
.ws125{word-spacing:0.170667pt;}
.ws11e{word-spacing:0.298667pt;}
.ws17{word-spacing:0.336000pt;}
.wsef{word-spacing:0.362667pt;}
.ws10d{word-spacing:0.384000pt;}
.wsf1{word-spacing:0.426667pt;}
.ws99{word-spacing:0.432000pt;}
.wsa0{word-spacing:0.480000pt;}
.ws4b{word-spacing:0.528000pt;}
.wseb{word-spacing:0.554660pt;}
.ws104{word-spacing:0.576000pt;}
.ws45{word-spacing:0.624000pt;}
.ws69{word-spacing:0.672000pt;}
.ws6c{word-spacing:0.720000pt;}
.wse4{word-spacing:0.767990pt;}
.wsa1{word-spacing:0.816000pt;}
.ws138{word-spacing:0.853333pt;}
.ws26{word-spacing:0.864000pt;}
.ws56{word-spacing:0.912000pt;}
.ws12a{word-spacing:0.981333pt;}
.wsfd{word-spacing:1.008000pt;}
.ws10{word-spacing:1.056000pt;}
.ws1c{word-spacing:1.104000pt;}
.ws133{word-spacing:1.109333pt;}
.ws152{word-spacing:1.152000pt;}
.wsa8{word-spacing:1.200000pt;}
.ws13{word-spacing:1.248000pt;}
.wsa3{word-spacing:1.296000pt;}
.ws111{word-spacing:1.344000pt;}
.ws148{word-spacing:1.365333pt;}
.ws58{word-spacing:1.440000pt;}
.ws86{word-spacing:1.488000pt;}
.ws93{word-spacing:1.536000pt;}
.ws116{word-spacing:1.584000pt;}
.ws59{word-spacing:1.605333pt;}
.ws114{word-spacing:1.632000pt;}
.ws13a{word-spacing:1.664000pt;}
.wsd0{word-spacing:1.680000pt;}
.wscb{word-spacing:1.728000pt;}
.wse{word-spacing:1.792000pt;}
.wsaa{word-spacing:1.824000pt;}
.ws13e{word-spacing:1.834667pt;}
.ws16{word-spacing:1.872000pt;}
.ws65{word-spacing:1.920000pt;}
.ws131{word-spacing:1.962667pt;}
.ws107{word-spacing:1.968000pt;}
.ws95{word-spacing:2.016000pt;}
.ws4e{word-spacing:2.064000pt;}
.ws60{word-spacing:2.160000pt;}
.ws23{word-spacing:2.208000pt;}
.ws80{word-spacing:2.256000pt;}
.ws98{word-spacing:2.352000pt;}
.ws83{word-spacing:2.400000pt;}
.ws8d{word-spacing:2.448000pt;}
.ws84{word-spacing:2.496000pt;}
.ws48{word-spacing:2.544000pt;}
.ws10c{word-spacing:2.592000pt;}
.ws8{word-spacing:2.640000pt;}
.ws49{word-spacing:2.688000pt;}
.ws77{word-spacing:2.736000pt;}
.ws30{word-spacing:2.784000pt;}
.ws117{word-spacing:2.816000pt;}
.ws4f{word-spacing:2.832000pt;}
.ws13f{word-spacing:2.858667pt;}
.ws1b{word-spacing:2.928000pt;}
.ws13b{word-spacing:2.944000pt;}
.wsb0{word-spacing:2.976000pt;}
.ws34{word-spacing:3.120000pt;}
.ws6b{word-spacing:3.168000pt;}
.wsc0{word-spacing:3.216000pt;}
.ws75{word-spacing:3.264000pt;}
.ws150{word-spacing:3.312000pt;}
.ws81{word-spacing:3.360000pt;}
.ws25{word-spacing:3.456000pt;}
.wsab{word-spacing:3.504000pt;}
.wsc5{word-spacing:3.552000pt;}
.ws5f{word-spacing:3.600000pt;}
.ws44{word-spacing:3.744000pt;}
.ws14e{word-spacing:3.792000pt;}
.ws7d{word-spacing:3.840000pt;}
.ws64{word-spacing:3.888000pt;}
.ws24{word-spacing:3.936000pt;}
.wsb{word-spacing:3.968000pt;}
.ws20{word-spacing:3.984000pt;}
.ws8f{word-spacing:4.032000pt;}
.ws32{word-spacing:4.080000pt;}
.ws51{word-spacing:4.128000pt;}
.ws126{word-spacing:4.138667pt;}
.ws108{word-spacing:4.176000pt;}
.ws143{word-spacing:4.181333pt;}
.ws121{word-spacing:4.266667pt;}
.ws62{word-spacing:4.320000pt;}
.ws3a{word-spacing:4.368000pt;}
.ws115{word-spacing:4.416000pt;}
.ws94{word-spacing:4.464000pt;}
.ws55{word-spacing:4.512000pt;}
.ws4a{word-spacing:4.560000pt;}
.ws141{word-spacing:4.650667pt;}
.wscc{word-spacing:4.656000pt;}
.ws27{word-spacing:4.704000pt;}
.ws85{word-spacing:4.800000pt;}
.wsca{word-spacing:4.848000pt;}
.wsad{word-spacing:4.896000pt;}
.ws140{word-spacing:4.949333pt;}
.ws6d{word-spacing:4.992000pt;}
.ws8c{word-spacing:5.040000pt;}
.ws73{word-spacing:5.088000pt;}
.ws3b{word-spacing:5.136000pt;}
.ws38{word-spacing:5.280000pt;}
.ws52{word-spacing:5.328000pt;}
.wsb5{word-spacing:5.376000pt;}
.ws39{word-spacing:5.424000pt;}
.ws10e{word-spacing:5.472000pt;}
.ws9d{word-spacing:5.520000pt;}
.ws79{word-spacing:5.568000pt;}
.ws7e{word-spacing:5.616000pt;}
.ws78{word-spacing:5.664000pt;}
.wsc9{word-spacing:5.760000pt;}
.ws102{word-spacing:5.808000pt;}
.ws14d{word-spacing:5.824000pt;}
.wsbe{word-spacing:5.904000pt;}
.ws3f{word-spacing:5.952000pt;}
.wsb4{word-spacing:6.000000pt;}
.ws22{word-spacing:6.096000pt;}
.wsf8{word-spacing:6.144000pt;}
.ws14c{word-spacing:6.186667pt;}
.ws3e{word-spacing:6.192000pt;}
.wsf{word-spacing:6.197333pt;}
.ws129{word-spacing:6.229333pt;}
.ws100{word-spacing:6.240000pt;}
.ws7c{word-spacing:6.288000pt;}
.ws132{word-spacing:6.314667pt;}
.ws33{word-spacing:6.336000pt;}
.ws4d{word-spacing:6.384000pt;}
.ws5d{word-spacing:6.432000pt;}
.wsa4{word-spacing:6.480000pt;}
.ws7a{word-spacing:6.672000pt;}
.ws5e{word-spacing:6.720000pt;}
.ws31{word-spacing:6.768000pt;}
.wsbc{word-spacing:6.816000pt;}
.ws46{word-spacing:6.864000pt;}
.ws68{word-spacing:6.960000pt;}
.ws3d{word-spacing:7.008000pt;}
.ws6f{word-spacing:7.104000pt;}
.ws42{word-spacing:7.152000pt;}
.ws146{word-spacing:7.168000pt;}
.ws2d{word-spacing:7.200000pt;}
.ws5b{word-spacing:7.344000pt;}
.ws14f{word-spacing:7.392000pt;}
.ws10b{word-spacing:7.440000pt;}
.wsc2{word-spacing:7.584000pt;}
.wsf9{word-spacing:7.632000pt;}
.ws9c{word-spacing:7.680000pt;}
.wsce{word-spacing:7.728000pt;}
.wscf{word-spacing:7.776000pt;}
.wsa7{word-spacing:7.824000pt;}
.ws53{word-spacing:7.872000pt;}
.ws12d{word-spacing:7.893333pt;}
.ws91{word-spacing:7.968000pt;}
.wsa9{word-spacing:8.064000pt;}
.ws47{word-spacing:8.112000pt;}
.ws128{word-spacing:8.149333pt;}
.ws4c{word-spacing:8.208000pt;}
.ws41{word-spacing:8.352000pt;}
.ws144{word-spacing:8.362667pt;}
.ws2f{word-spacing:8.448000pt;}
.ws11a{word-spacing:8.533333pt;}
.ws76{word-spacing:8.544000pt;}
.wsae{word-spacing:8.640000pt;}
.ws11d{word-spacing:8.874667pt;}
.ws7b{word-spacing:8.880000pt;}
.ws40{word-spacing:8.928000pt;}
.ws12b{word-spacing:9.002667pt;}
.ws149{word-spacing:9.088000pt;}
.ws43{word-spacing:9.168000pt;}
.wsc{word-spacing:9.173333pt;}
.ws35{word-spacing:9.264000pt;}
.ws11f{word-spacing:9.301333pt;}
.ws110{word-spacing:9.456000pt;}
.wsbb{word-spacing:9.504000pt;}
.wsc6{word-spacing:9.552000pt;}
.ws5c{word-spacing:9.696000pt;}
.ws139{word-spacing:9.728000pt;}
.ws71{word-spacing:9.888000pt;}
.ws142{word-spacing:9.941333pt;}
.ws9{word-spacing:9.945600pt;}
.ws90{word-spacing:10.080000pt;}
.wsc4{word-spacing:10.272000pt;}
.ws6a{word-spacing:10.320000pt;}
.ws50{word-spacing:10.416000pt;}
.ws67{word-spacing:10.464000pt;}
.ws54{word-spacing:10.512000pt;}
.wsc3{word-spacing:10.752000pt;}
.ws105{word-spacing:10.800000pt;}
.ws66{word-spacing:11.376000pt;}
.ws9f{word-spacing:11.664000pt;}
.wsb3{word-spacing:11.952000pt;}
.ws10f{word-spacing:12.000000pt;}
.ws2e{word-spacing:12.864000pt;}
.ws106{word-spacing:12.960000pt;}
.ws119{word-spacing:13.397333pt;}
.wsb6{word-spacing:13.632000pt;}
.ws130{word-spacing:13.696000pt;}
.ws3c{word-spacing:13.824000pt;}
.wsbd{word-spacing:13.968000pt;}
.wsb2{word-spacing:14.496000pt;}
.ws11c{word-spacing:14.506667pt;}
.ws1d{word-spacing:14.784000pt;}
.ws137{word-spacing:15.146667pt;}
.wsb1{word-spacing:15.216000pt;}
.ws6e{word-spacing:15.888000pt;}
.ws9e{word-spacing:15.984000pt;}
.wscd{word-spacing:16.176000pt;}
.ws147{word-spacing:16.213333pt;}
.ws10a{word-spacing:17.376000pt;}
.ws12e{word-spacing:17.834667pt;}
.ws136{word-spacing:18.816000pt;}
.ws14a{word-spacing:19.626667pt;}
.wsa6{word-spacing:20.256000pt;}
.wsa5{word-spacing:21.744000pt;}
.ws123{word-spacing:24.917333pt;}
.wsda{word-spacing:54.783315pt;}
.wsd7{word-spacing:371.584000pt;}
.wsd6{word-spacing:383.445333pt;}
._18{margin-left:-243.157333pt;}
._14{margin-left:-36.000000pt;}
._d{margin-left:-32.666667pt;}
._16{margin-left:-23.549600pt;}
._b{margin-left:-22.472000pt;}
._17{margin-left:-16.480000pt;}
._20{margin-left:-14.293333pt;}
._11{margin-left:-12.880000pt;}
._2{margin-left:-9.954560pt;}
._4{margin-left:-8.740480pt;}
._f{margin-left:-7.056000pt;}
._7{margin-left:-5.394400pt;}
._8{margin-left:-3.640000pt;}
._1{margin-left:-2.240000pt;}
._0{margin-left:-0.896000pt;}
._3{width:1.124480pt;}
._6{width:2.080000pt;}
._9{width:3.078901pt;}
._13{width:4.147723pt;}
._1e{width:6.784000pt;}
._1f{width:8.917333pt;}
._1d{width:12.117333pt;}
._c{width:25.984000pt;}
._e{width:27.776000pt;}
._15{width:34.656000pt;}
._22{width:56.272000pt;}
._10{width:72.704000pt;}
._a{width:105.770667pt;}
._1b{width:148.262187pt;}
._21{width:175.072000pt;}
._1a{width:203.050667pt;}
._19{width:213.120000pt;}
._1c{width:397.269333pt;}
._5{width:828.280320pt;}
._12{width:848.448000pt;}
.fs8{font-size:21.765333pt;}
.fs7{font-size:26.666667pt;}
.fsd{font-size:29.333333pt;}
.fsb{font-size:31.093333pt;}
.fs5{font-size:35.757333pt;}
.fs9{font-size:37.333333pt;}
.fse{font-size:42.666133pt;}
.fs6{font-size:42.666667pt;}
.fs1{font-size:44.800000pt;}
.fsc{font-size:45.333333pt;}
.fs0{font-size:48.000000pt;}
.fsa{font-size:53.333333pt;}
.fs4{font-size:61.333333pt;}
.fs2{font-size:74.666667pt;}
.fs3{font-size:104.000000pt;}
.y0{bottom:0.000000pt;}
.y150{bottom:0.000133pt;}
.y119{bottom:2.261467pt;}
.y12b{bottom:2.390133pt;}
.y148{bottom:8.478800pt;}
.y14e{bottom:12.000133pt;}
.y3e{bottom:39.993333pt;}
.y116{bottom:42.150933pt;}
.y14b{bottom:47.029467pt;}
.y4b{bottom:78.806667pt;}
.y4a{bottom:86.806667pt;}
.y75{bottom:88.132133pt;}
.y154{bottom:88.132800pt;}
.y11c{bottom:88.133467pt;}
.ya6{bottom:88.197333pt;}
.ydf{bottom:88.208000pt;}
.y3d{bottom:88.346667pt;}
.y182{bottom:89.236533pt;}
.y49{bottom:94.806667pt;}
.y153{bottom:96.133467pt;}
.y181{bottom:101.236533pt;}
.y74{bottom:101.908133pt;}
.y113{bottom:102.800000pt;}
.y48{bottom:102.806667pt;}
.ya5{bottom:102.861333pt;}
.yde{bottom:102.872000pt;}
.y3c{bottom:103.010667pt;}
.y13b{bottom:110.800000pt;}
.y180{bottom:113.236533pt;}
.ya4{bottom:117.525333pt;}
.ydd{bottom:117.536000pt;}
.y3b{bottom:117.674667pt;}
.y17f{bottom:125.236533pt;}
.y118{bottom:126.833467pt;}
.y151{bottom:131.257467pt;}
.ya3{bottom:132.189333pt;}
.ydc{bottom:132.200000pt;}
.y3a{bottom:132.338667pt;}
.y4e{bottom:133.904000pt;}
.y12a{bottom:136.551467pt;}
.y17e{bottom:137.236533pt;}
.y117{bottom:137.884133pt;}
.y144{bottom:144.184790pt;}
.y4d{bottom:144.572000pt;}
.y115{bottom:144.950933pt;}
.ya2{bottom:146.853333pt;}
.y73{bottom:146.856000pt;}
.ydb{bottom:146.864000pt;}
.y39{bottom:147.002667pt;}
.y4f{bottom:147.681333pt;}
.y17d{bottom:149.236533pt;}
.y14a{bottom:149.296259pt;}
.y146{bottom:157.901952pt;}
.y13e{bottom:158.243281pt;}
.y4c{bottom:158.348000pt;}
.y149{bottom:159.322800pt;}
.y10d{bottom:160.398800pt;}
.y17c{bottom:161.236533pt;}
.y72{bottom:161.520000pt;}
.yda{bottom:161.528000pt;}
.y142{bottom:161.549906pt;}
.y38{bottom:161.666667pt;}
.y143{bottom:164.973863pt;}
.y13f{bottom:167.309834pt;}
.y109{bottom:168.153467pt;}
.y107{bottom:168.366800pt;}
.y141{bottom:168.621818pt;}
.y17b{bottom:173.236533pt;}
.y14f{bottom:173.858800pt;}
.y14d{bottom:175.661781pt;}
.ya1{bottom:176.186667pt;}
.yd9{bottom:176.192000pt;}
.y37{bottom:176.330667pt;}
.y140{bottom:177.432374pt;}
.y152{bottom:178.422800pt;}
.y147{bottom:184.536286pt;}
.y145{bottom:188.802899pt;}
.y69{bottom:190.012000pt;}
.y6f{bottom:190.024000pt;}
.y71{bottom:190.853333pt;}
.yd8{bottom:190.856000pt;}
.y36{bottom:190.994667pt;}
.y10a{bottom:191.545467pt;}
.y1d7{bottom:194.261333pt;}
.y13d{bottom:196.717467pt;}
.y11a{bottom:198.302800pt;}
.y10e{bottom:201.444133pt;}
.y68{bottom:204.676000pt;}
.y6e{bottom:204.688000pt;}
.yd7{bottom:205.520000pt;}
.ya0{bottom:205.554667pt;}
.y35{bottom:205.658667pt;}
.y17a{bottom:207.756533pt;}
.y67{bottom:219.340000pt;}
.y6d{bottom:219.352000pt;}
.y9f{bottom:220.218667pt;}
.y34{bottom:220.322667pt;}
.y14c{bottom:222.103867pt;}
.y1d6{bottom:222.257333pt;}
.y133{bottom:226.127132pt;}
.y66{bottom:234.004000pt;}
.y6c{bottom:234.016000pt;}
.yd6{bottom:234.853333pt;}
.y9e{bottom:234.882667pt;}
.y33{bottom:234.986667pt;}
.y1d5{bottom:236.261333pt;}
.y130{bottom:236.281671pt;}
.y10f{bottom:242.489467pt;}
.y65{bottom:248.668000pt;}
.y6b{bottom:248.680000pt;}
.y9d{bottom:249.546667pt;}
.y32{bottom:249.650667pt;}
.y1d4{bottom:250.265333pt;}
.y131{bottom:250.681491pt;}
.y12f{bottom:252.665467pt;}
.y134{bottom:256.441419pt;}
.y10c{bottom:258.596133pt;}
.y64{bottom:263.332000pt;}
.y6a{bottom:263.344000pt;}
.y9c{bottom:264.210667pt;}
.y179{bottom:264.264000pt;}
.y1d3{bottom:264.269333pt;}
.y31{bottom:264.314667pt;}
.yd5{bottom:264.321333pt;}
.y11b{bottom:278.132133pt;}
.y1d2{bottom:278.273333pt;}
.y9b{bottom:278.874667pt;}
.y178{bottom:278.928000pt;}
.y30{bottom:278.978667pt;}
.yd4{bottom:278.985333pt;}
.y110{bottom:283.534800pt;}
.y135{bottom:286.755707pt;}
.y1d1{bottom:292.277333pt;}
.y9a{bottom:293.538667pt;}
.y177{bottom:293.592000pt;}
.y2f{bottom:293.642667pt;}
.yd3{bottom:293.649333pt;}
.y114{bottom:303.848000pt;}
.y1d0{bottom:306.281333pt;}
.y99{bottom:308.202667pt;}
.y2e{bottom:308.306667pt;}
.yd2{bottom:308.313333pt;}
.y136{bottom:317.069995pt;}
.y1cf{bottom:320.285333pt;}
.y63{bottom:321.532000pt;}
.y98{bottom:322.866667pt;}
.y176{bottom:322.920000pt;}
.y2d{bottom:322.970667pt;}
.yd1{bottom:322.977333pt;}
.y111{bottom:324.569467pt;}
.y128{bottom:325.533867pt;}
.y1ce{bottom:334.289333pt;}
.y97{bottom:337.530667pt;}
.y2c{bottom:337.634667pt;}
.yd0{bottom:337.641333pt;}
.y137{bottom:347.394949pt;}
.y1cd{bottom:348.293333pt;}
.y96{bottom:352.194667pt;}
.y175{bottom:352.248000pt;}
.y2b{bottom:352.298667pt;}
.ycf{bottom:352.305333pt;}
.y13c{bottom:357.900667pt;}
.y62{bottom:360.748000pt;}
.y1cc{bottom:362.297333pt;}
.y112{bottom:365.614800pt;}
.y95{bottom:366.858667pt;}
.y174{bottom:366.912000pt;}
.y2a{bottom:366.962667pt;}
.yce{bottom:366.969333pt;}
.y61{bottom:374.752000pt;}
.y1cb{bottom:376.301333pt;}
.y138{bottom:377.709237pt;}
.y94{bottom:381.522667pt;}
.y173{bottom:381.576000pt;}
.y29{bottom:381.626667pt;}
.ycd{bottom:381.633333pt;}
.y10b{bottom:386.958800pt;}
.y60{bottom:388.756000pt;}
.y1ca{bottom:390.305333pt;}
.y93{bottom:396.186667pt;}
.y172{bottom:396.240000pt;}
.y28{bottom:396.290667pt;}
.ycc{bottom:396.297333pt;}
.y108{bottom:399.086800pt;}
.y5f{bottom:402.760000pt;}
.y1c9{bottom:404.309333pt;}
.y139{bottom:408.023525pt;}
.y171{bottom:410.904000pt;}
.y27{bottom:410.954667pt;}
.ycb{bottom:410.961333pt;}
.y5e{bottom:416.764000pt;}
.y1c8{bottom:418.313333pt;}
.y92{bottom:425.520000pt;}
.y170{bottom:425.568000pt;}
.y26{bottom:425.618667pt;}
.yca{bottom:425.625333pt;}
.y5d{bottom:430.768000pt;}
.y106{bottom:431.906667pt;}
.y1c7{bottom:432.317333pt;}
.y13a{bottom:438.337812pt;}
.y16f{bottom:440.232000pt;}
.y25{bottom:440.282667pt;}
.yc9{bottom:440.289333pt;}
.y5c{bottom:444.772000pt;}
.y105{bottom:445.234667pt;}
.y1c6{bottom:446.321333pt;}
.y132{bottom:451.969642pt;}
.y91{bottom:454.874667pt;}
.y24{bottom:454.946667pt;}
.yc8{bottom:454.953333pt;}
.y5b{bottom:458.776000pt;}
.y1c5{bottom:460.325333pt;}
.y1ab{bottom:464.184000pt;}
.y1aa{bottom:464.186667pt;}
.y90{bottom:469.538667pt;}
.y16e{bottom:469.560000pt;}
.y23{bottom:469.610667pt;}
.yc7{bottom:469.617333pt;}
.y5a{bottom:472.780000pt;}
.y1c4{bottom:474.329333pt;}
.y1a9{bottom:476.186667pt;}
.y8f{bottom:484.202667pt;}
.y16d{bottom:484.224000pt;}
.y22{bottom:484.274667pt;}
.yc6{bottom:484.281333pt;}
.y59{bottom:486.784000pt;}
.y1a8{bottom:488.186667pt;}
.y1c3{bottom:488.333333pt;}
.y12e{bottom:493.958800pt;}
.ye5{bottom:498.864000pt;}
.y8e{bottom:498.866667pt;}
.y16c{bottom:498.888000pt;}
.y104{bottom:498.909333pt;}
.y21{bottom:498.938667pt;}
.yc5{bottom:498.945333pt;}
.y1a7{bottom:500.186667pt;}
.y58{bottom:500.788000pt;}
.y12d{bottom:507.286800pt;}
.y1a6{bottom:512.186667pt;}
.ye4{bottom:513.528000pt;}
.y8d{bottom:513.530667pt;}
.y16b{bottom:513.552000pt;}
.y103{bottom:513.573333pt;}
.y20{bottom:513.602667pt;}
.yc4{bottom:513.609333pt;}
.y57{bottom:514.792000pt;}
.y1c2{bottom:520.330667pt;}
.y1a5{bottom:524.186667pt;}
.ye3{bottom:528.192000pt;}
.y8c{bottom:528.194667pt;}
.y16a{bottom:528.216000pt;}
.y102{bottom:528.237333pt;}
.y1f{bottom:528.266667pt;}
.yc3{bottom:528.273333pt;}
.y56{bottom:528.796000pt;}
.y1a4{bottom:536.186667pt;}
.y1c1{bottom:541.666667pt;}
.y55{bottom:542.800000pt;}
.ye2{bottom:542.856000pt;}
.y8b{bottom:542.858667pt;}
.y169{bottom:542.880000pt;}
.y101{bottom:542.901333pt;}
.y1e{bottom:542.930667pt;}
.yc2{bottom:542.937333pt;}
.y1a3{bottom:548.186667pt;}
.y54{bottom:556.804000pt;}
.ye1{bottom:557.520000pt;}
.y8a{bottom:557.522667pt;}
.y100{bottom:557.565333pt;}
.y1d{bottom:557.594667pt;}
.yc1{bottom:557.601333pt;}
.y1a2{bottom:560.186667pt;}
.y53{bottom:570.808000pt;}
.y89{bottom:572.186667pt;}
.y168{bottom:572.208000pt;}
.yff{bottom:572.229333pt;}
.y1c{bottom:572.258667pt;}
.yc0{bottom:572.265333pt;}
.y1a1{bottom:584.186667pt;}
.y52{bottom:584.812000pt;}
.ye0{bottom:586.853333pt;}
.y167{bottom:586.872000pt;}
.yfe{bottom:586.893333pt;}
.y1b{bottom:586.922667pt;}
.ybf{bottom:586.929333pt;}
.y12c{bottom:589.400667pt;}
.y1a0{bottom:596.186667pt;}
.y51{bottom:598.816000pt;}
.y88{bottom:601.520000pt;}
.y166{bottom:601.536000pt;}
.yfd{bottom:601.557333pt;}
.y1a{bottom:601.586667pt;}
.ybe{bottom:601.593333pt;}
.y127{bottom:604.066667pt;}
.y19f{bottom:608.186667pt;}
.y50{bottom:612.820000pt;}
.y165{bottom:616.200000pt;}
.yfc{bottom:616.221333pt;}
.y19{bottom:616.250667pt;}
.ybd{bottom:616.257333pt;}
.y19e{bottom:620.186667pt;}
.y129{bottom:626.067467pt;}
.y87{bottom:630.864000pt;}
.yfb{bottom:630.885333pt;}
.y18{bottom:630.914667pt;}
.ybc{bottom:630.921333pt;}
.y19d{bottom:632.186667pt;}
.y122{bottom:634.556533pt;}
.y1c0{bottom:638.456000pt;}
.y19c{bottom:644.186667pt;}
.y86{bottom:645.528000pt;}
.yfa{bottom:645.549333pt;}
.y17{bottom:645.578667pt;}
.ybb{bottom:645.585333pt;}
.y19b{bottom:656.186667pt;}
.y85{bottom:660.192000pt;}
.yf9{bottom:660.213333pt;}
.y16{bottom:660.242667pt;}
.yba{bottom:660.249333pt;}
.y121{bottom:665.980533pt;}
.y1bf{bottom:666.452000pt;}
.y19a{bottom:668.186667pt;}
.y47{bottom:671.504133pt;}
.y84{bottom:674.856000pt;}
.yf8{bottom:674.877333pt;}
.y15{bottom:674.906667pt;}
.yb9{bottom:674.913333pt;}
.y199{bottom:680.186667pt;}
.y1be{bottom:680.456000pt;}
.y46{bottom:685.498800pt;}
.y83{bottom:689.520000pt;}
.yf7{bottom:689.541333pt;}
.y14{bottom:689.570667pt;}
.yb8{bottom:689.577333pt;}
.y198{bottom:692.186667pt;}
.y123{bottom:693.564533pt;}
.y1bd{bottom:694.460000pt;}
.y45{bottom:699.493467pt;}
.y120{bottom:700.625867pt;}
.y197{bottom:704.186667pt;}
.yf6{bottom:704.205333pt;}
.y13{bottom:704.234667pt;}
.yb7{bottom:704.241333pt;}
.y1bc{bottom:708.464000pt;}
.y196{bottom:716.186667pt;}
.y82{bottom:718.853333pt;}
.yf5{bottom:718.869333pt;}
.y12{bottom:718.898667pt;}
.yb6{bottom:718.905333pt;}
.y1bb{bottom:722.468000pt;}
.y195{bottom:728.186667pt;}
.yf4{bottom:733.533333pt;}
.y11{bottom:733.562667pt;}
.yb5{bottom:733.569333pt;}
.y11f{bottom:735.249867pt;}
.y1ba{bottom:736.472000pt;}
.y194{bottom:740.186667pt;}
.yf3{bottom:748.197333pt;}
.y81{bottom:748.205333pt;}
.y10{bottom:748.226667pt;}
.yb4{bottom:748.233333pt;}
.y164{bottom:748.358667pt;}
.y1b9{bottom:750.476000pt;}
.y193{bottom:752.186667pt;}
.y124{bottom:752.572533pt;}
.y44{bottom:755.031333pt;}
.yf2{bottom:762.861333pt;}
.y80{bottom:762.869333pt;}
.yf{bottom:762.890667pt;}
.yb3{bottom:762.897333pt;}
.y163{bottom:763.022667pt;}
.y192{bottom:764.186667pt;}
.y1b8{bottom:764.480000pt;}
.y191{bottom:776.186667pt;}
.y43{bottom:776.360000pt;}
.yf1{bottom:777.525333pt;}
.y7f{bottom:777.533333pt;}
.ye{bottom:777.554667pt;}
.yb2{bottom:777.561333pt;}
.y162{bottom:777.686667pt;}
.y1b7{bottom:778.484000pt;}
.y190{bottom:788.186667pt;}
.yf0{bottom:792.189333pt;}
.y7e{bottom:792.197333pt;}
.yd{bottom:792.218667pt;}
.yb1{bottom:792.225333pt;}
.y161{bottom:792.350667pt;}
.y1b6{bottom:792.488000pt;}
.y18f{bottom:800.186667pt;}
.y1b5{bottom:806.492000pt;}
.yef{bottom:806.853333pt;}
.y7d{bottom:806.861333pt;}
.yc{bottom:806.882667pt;}
.yb0{bottom:806.889333pt;}
.y160{bottom:807.014667pt;}
.y125{bottom:811.580533pt;}
.y18e{bottom:812.186667pt;}
.y1b4{bottom:820.496000pt;}
.y7c{bottom:821.525333pt;}
.yb{bottom:821.546667pt;}
.yaf{bottom:821.553333pt;}
.y15f{bottom:821.678667pt;}
.y18d{bottom:824.186667pt;}
.y42{bottom:824.348000pt;}
.y1b3{bottom:834.500000pt;}
.yee{bottom:836.186667pt;}
.y7b{bottom:836.189333pt;}
.ya{bottom:836.210667pt;}
.yae{bottom:836.217333pt;}
.y15e{bottom:836.342667pt;}
.y18c{bottom:848.186667pt;}
.y1b2{bottom:848.504000pt;}
.y7a{bottom:850.853333pt;}
.y9{bottom:850.874667pt;}
.yad{bottom:850.881333pt;}
.y15d{bottom:851.006667pt;}
.y41{bottom:856.354000pt;}
.y18b{bottom:860.186667pt;}
.y1b1{bottom:862.508000pt;}
.y8{bottom:865.538667pt;}
.yac{bottom:865.545333pt;}
.yed{bottom:865.548000pt;}
.y15c{bottom:865.670667pt;}
.y126{bottom:870.588533pt;}
.y18a{bottom:872.186667pt;}
.y1b0{bottom:876.512000pt;}
.y79{bottom:880.186667pt;}
.y7{bottom:880.202667pt;}
.yab{bottom:880.209333pt;}
.yec{bottom:880.212000pt;}
.y15b{bottom:880.334667pt;}
.y189{bottom:884.186667pt;}
.y40{bottom:888.360000pt;}
.y11e{bottom:888.881867pt;}
.y1af{bottom:890.516000pt;}
.y78{bottom:894.853333pt;}
.y6{bottom:894.866667pt;}
.yeb{bottom:894.876000pt;}
.y15a{bottom:894.998667pt;}
.y188{bottom:896.186667pt;}
.y1ae{bottom:904.520000pt;}
.y187{bottom:908.186667pt;}
.y5{bottom:909.530667pt;}
.yaa{bottom:909.537333pt;}
.yea{bottom:909.540000pt;}
.y159{bottom:909.662667pt;}
.y186{bottom:920.186667pt;}
.y77{bottom:924.189333pt;}
.y4{bottom:924.194667pt;}
.ya9{bottom:924.201333pt;}
.ye9{bottom:924.204000pt;}
.y158{bottom:924.326667pt;}
.y185{bottom:932.186667pt;}
.y1ad{bottom:936.517333pt;}
.y76{bottom:938.853333pt;}
.y3{bottom:938.858667pt;}
.ye8{bottom:938.868000pt;}
.y157{bottom:938.990667pt;}
.y184{bottom:944.186667pt;}
.y3f{bottom:951.893333pt;}
.y2{bottom:953.522667pt;}
.ya8{bottom:953.529333pt;}
.ye7{bottom:953.532000pt;}
.y156{bottom:953.654667pt;}
.y11d{bottom:954.858667pt;}
.y183{bottom:956.186667pt;}
.y1ac{bottom:957.853333pt;}
.y1{bottom:968.186667pt;}
.ya7{bottom:968.193333pt;}
.ye6{bottom:968.196000pt;}
.y155{bottom:968.318667pt;}
.y70{bottom:1008.221467pt;}
.h8{height:22.176000pt;}
.h7{height:24.720000pt;}
.h1b{height:27.309333pt;}
.h13{height:28.218667pt;}
.h14{height:30.208000pt;}
.h1a{height:30.932947pt;}
.hf{height:31.061333pt;}
.h12{height:31.786667pt;}
.h18{height:32.084932pt;}
.h9{height:34.608000pt;}
.h1d{height:39.552000pt;}
.hb{height:39.722667pt;}
.h16{height:41.172819pt;}
.h6{height:41.770667pt;}
.h2{height:43.097600pt;}
.hd{height:43.610667pt;}
.h1{height:44.496000pt;}
.h1c{height:46.176000pt;}
.ha{height:46.992000pt;}
.h10{height:50.688000pt;}
.hc{height:51.306667pt;}
.h17{height:55.124644pt;}
.he{height:56.490667pt;}
.h5{height:57.101333pt;}
.h3{height:71.829333pt;}
.h4{height:100.048000pt;}
.h11{height:312.701333pt;}
.h15{height:334.386667pt;}
.h19{height:366.753333pt;}
.h0{height:1056.000000pt;}
.w2{width:528.002667pt;}
.w3{width:528.049333pt;}
.w1{width:528.329333pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x20{left:8.854133pt;}
.x1c{left:10.524800pt;}
.x2b{left:16.727333pt;}
.x3{left:56.000000pt;}
.x4{left:60.000000pt;}
.x11{left:62.000000pt;}
.x7{left:67.998000pt;}
.x10{left:70.664000pt;}
.x9{left:72.000000pt;}
.x46{left:73.333333pt;}
.x6{left:78.833333pt;}
.xa{left:84.000000pt;}
.x44{left:89.333333pt;}
.x2a{left:135.998667pt;}
.x1b{left:151.834667pt;}
.x29{left:152.730133pt;}
.x30{left:158.632210pt;}
.x5{left:159.669333pt;}
.x1a{left:162.355067pt;}
.x19{left:170.035067pt;}
.x2d{left:175.442667pt;}
.x31{left:179.119733pt;}
.x18{left:180.381733pt;}
.x32{left:208.186037pt;}
.x22{left:209.748667pt;}
.x12{left:219.261733pt;}
.x1d{left:221.412800pt;}
.x2e{left:227.719347pt;}
.x25{left:229.498133pt;}
.x2c{left:233.857467pt;}
.x33{left:237.252340pt;}
.x14{left:242.429733pt;}
.x34{left:266.318643pt;}
.x35{left:295.384947pt;}
.x36{left:324.451250pt;}
.x37{left:353.517553pt;}
.x26{left:354.938133pt;}
.x3a{left:362.859067pt;}
.x43{left:368.987333pt;}
.x21{left:383.112667pt;}
.x8{left:410.000000pt;}
.x38{left:411.650160pt;}
.x1e{left:413.859333pt;}
.x3d{left:420.988533pt;}
.xf{left:422.000000pt;}
.xb{left:426.000000pt;}
.x47{left:427.333333pt;}
.xd{left:432.000000pt;}
.xc{left:438.000000pt;}
.xe{left:440.664000pt;}
.x45{left:443.328000pt;}
.x23{left:456.558000pt;}
.x39{left:469.782767pt;}
.x27{left:474.810133pt;}
.x15{left:479.709733pt;}
.x3b{left:498.835067pt;}
.x41{left:508.184533pt;}
.x3c{left:527.901370pt;}
.x13{left:535.069733pt;}
.x3e{left:556.964533pt;}
.x16{left:559.667067pt;}
.x3f{left:586.030837pt;}
.x28{left:597.914133pt;}
.x2f{left:606.082617pt;}
.x40{left:615.095200pt;}
.x24{left:619.171333pt;}
.x1f{left:632.864667pt;}
.x17{left:641.907067pt;}
.x42{left:644.160533pt;}
.x2{left:836.094667pt;}
.x1{left:846.066667pt;}
}




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