
    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_6370f26c1aa228288b5dec11.woff')format("woff");}.ff1{font-family:ff1;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_8b86433264e7888955b80f0b.woff')format("woff");}.ff2{font-family:ff2;line-height:1.575000;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_fd776753a6a1656ea3eefbe6.woff')format("woff");}.ff3{font-family:ff3;line-height:1.592000;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_3038e39aeb75a8d358530cd9.woff')format("woff");}.ff4{font-family:ff4;line-height:1.575000;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_97007f2dadba1b5296af25b1.woff')format("woff");}.ff5{font-family:ff5;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_2bd411993fa66cfc6e164675.woff')format("woff");}.ff6{font-family:ff6;line-height:1.592000;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_edcf8d3ba116031f97868b94.woff')format("woff");}.ff7{font-family:ff7;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_4f695630aab5420f2e6df523.woff')format("woff");}.ff8{font-family:ff8;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-27.004320px;}
.v3{vertical-align:-18.000000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:18.000000px;}
.ls49{letter-spacing:-0.540000px;}
.ls16{letter-spacing:-0.486000px;}
.ls41{letter-spacing:-0.432000px;}
.ls4a{letter-spacing:-0.430920px;}
.ls39{letter-spacing:-0.378000px;}
.ls54{letter-spacing:-0.324000px;}
.lsf{letter-spacing:-0.300600px;}
.ls58{letter-spacing:-0.270000px;}
.lse{letter-spacing:-0.240480px;}
.ls55{letter-spacing:-0.216000px;}
.ls47{letter-spacing:-0.191520px;}
.lsd{letter-spacing:-0.180360px;}
.ls14{letter-spacing:-0.162000px;}
.ls2c{letter-spacing:-0.143640px;}
.lsc{letter-spacing:-0.120240px;}
.ls11{letter-spacing:-0.108000px;}
.ls22{letter-spacing:-0.095760px;}
.ls10{letter-spacing:-0.060120px;}
.ls13{letter-spacing:-0.054000px;}
.ls24{letter-spacing:-0.047880px;}
.lsb{letter-spacing:0.000000px;}
.ls4{letter-spacing:0.016200px;}
.ls56{letter-spacing:0.021600px;}
.ls8{letter-spacing:0.027000px;}
.ls53{letter-spacing:0.032400px;}
.ls45{letter-spacing:0.043200px;}
.ls1f{letter-spacing:0.047880px;}
.ls15{letter-spacing:0.054000px;}
.ls0{letter-spacing:0.060120px;}
.ls35{letter-spacing:0.064800px;}
.ls30{letter-spacing:0.076320px;}
.lsa{letter-spacing:0.086400px;}
.ls23{letter-spacing:0.095760px;}
.ls7{letter-spacing:0.102600px;}
.ls21{letter-spacing:0.108000px;}
.ls3{letter-spacing:0.118800px;}
.ls1{letter-spacing:0.120240px;}
.ls57{letter-spacing:0.124200px;}
.ls2{letter-spacing:0.124920px;}
.ls4f{letter-spacing:0.129600px;}
.ls52{letter-spacing:0.140400px;}
.ls27{letter-spacing:0.143640px;}
.ls19{letter-spacing:0.144000px;}
.ls12{letter-spacing:0.162000px;}
.ls1e{letter-spacing:0.191520px;}
.ls33{letter-spacing:0.216000px;}
.ls26{letter-spacing:0.239400px;}
.ls17{letter-spacing:0.324000px;}
.ls50{letter-spacing:0.378000px;}
.ls44{letter-spacing:0.430920px;}
.ls3d{letter-spacing:0.432000px;}
.ls51{letter-spacing:0.540000px;}
.ls34{letter-spacing:0.766080px;}
.ls42{letter-spacing:1.134000px;}
.ls43{letter-spacing:1.149120px;}
.ls48{letter-spacing:1.484280px;}
.ls38{letter-spacing:1.512000px;}
.ls46{letter-spacing:1.544400px;}
.ls1b{letter-spacing:1.890000px;}
.ls3b{letter-spacing:1.911600px;}
.ls2a{letter-spacing:2.214000px;}
.ls1d{letter-spacing:2.327400px;}
.ls28{letter-spacing:2.592000px;}
.ls4e{letter-spacing:2.629800px;}
.ls36{letter-spacing:2.970000px;}
.ls3a{letter-spacing:3.672000px;}
.ls20{letter-spacing:3.686760px;}
.ls3e{letter-spacing:4.050000px;}
.ls9{letter-spacing:4.433400px;}
.ls2b{letter-spacing:4.740120px;}
.ls1c{letter-spacing:4.752000px;}
.ls40{letter-spacing:4.973400px;}
.ls2e{letter-spacing:5.454000px;}
.ls3c{letter-spacing:5.832000px;}
.ls29{letter-spacing:6.210000px;}
.ls25{letter-spacing:9.066600px;}
.ls6{letter-spacing:9.774000px;}
.ls5{letter-spacing:9.795600px;}
.ls3f{letter-spacing:12.366000px;}
.ls37{letter-spacing:13.014000px;}
.ls31{letter-spacing:15.930000px;}
.ls4c{letter-spacing:16.632000px;}
.ls2d{letter-spacing:17.447400px;}
.ls4b{letter-spacing:17.712000px;}
.ls32{letter-spacing:21.654000px;}
.ls1a{letter-spacing:26.352000px;}
.ls4d{letter-spacing:26.730000px;}
.ls2f{letter-spacing:28.512000px;}
.ls18{letter-spacing:97.308000px;}
.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;}
}
.ws0{word-spacing:-21.282480px;}
.ws3{word-spacing:-21.102120px;}
.ws1{word-spacing:-21.042000px;}
.ws2{word-spacing:-20.681280px;}
.ws8{word-spacing:-19.332000px;}
.ws101{word-spacing:-19.170000px;}
.wsd6{word-spacing:-19.116000px;}
.ws85{word-spacing:-19.062000px;}
.ws4{word-spacing:-19.008000px;}
.ws5{word-spacing:-18.954000px;}
.ws27{word-spacing:-18.900000px;}
.wsbf{word-spacing:-18.846000px;}
.ws104{word-spacing:-18.738000px;}
.ws7{word-spacing:-18.630000px;}
.ws26{word-spacing:-18.576000px;}
.ws103{word-spacing:-18.522000px;}
.ws6{word-spacing:-18.360000px;}
.wsd8{word-spacing:-16.997400px;}
.ws28{word-spacing:-16.949520px;}
.wsd7{word-spacing:-16.901640px;}
.ws46{word-spacing:-16.853760px;}
.ws47{word-spacing:-16.805880px;}
.wsa0{word-spacing:-16.710120px;}
.ws50{word-spacing:-4.914000px;}
.ws4c{word-spacing:-4.536000px;}
.ws90{word-spacing:-4.158000px;}
.wsc9{word-spacing:-3.942000px;}
.wsd4{word-spacing:-3.888000px;}
.ws14{word-spacing:-3.834000px;}
.ws15{word-spacing:-3.780000px;}
.ws72{word-spacing:-3.591000px;}
.ws6b{word-spacing:-3.564000px;}
.ws4d{word-spacing:-3.456000px;}
.ws8f{word-spacing:-3.402000px;}
.ws35{word-spacing:-3.078000px;}
.wsef{word-spacing:-3.024000px;}
.ws3d{word-spacing:-2.754000px;}
.wsd9{word-spacing:-2.700000px;}
.wsb6{word-spacing:-2.484000px;}
.wsb7{word-spacing:-2.430000px;}
.ws67{word-spacing:-2.376000px;}
.ws81{word-spacing:-2.346120px;}
.wsb3{word-spacing:-2.322000px;}
.ws64{word-spacing:-2.154600px;}
.ws31{word-spacing:-2.106000px;}
.ws30{word-spacing:-1.998000px;}
.ws82{word-spacing:-1.963080px;}
.wse7{word-spacing:-1.819440px;}
.wsd3{word-spacing:-1.728000px;}
.ws25{word-spacing:-1.674000px;}
.wsa5{word-spacing:-1.627920px;}
.wsca{word-spacing:-1.620000px;}
.ws9c{word-spacing:-1.404000px;}
.ws45{word-spacing:-1.388520px;}
.ws49{word-spacing:-1.296000px;}
.ws44{word-spacing:-1.292760px;}
.ws41{word-spacing:-1.244880px;}
.ws9b{word-spacing:-1.242000px;}
.wse9{word-spacing:-1.053360px;}
.wsb1{word-spacing:-1.026000px;}
.wse8{word-spacing:-0.957600px;}
.ws1a{word-spacing:-0.918000px;}
.ws51{word-spacing:-0.864000px;}
.wsb0{word-spacing:-0.810000px;}
.ws73{word-spacing:-0.718200px;}
.ws34{word-spacing:-0.702000px;}
.ws57{word-spacing:-0.670320px;}
.ws9d{word-spacing:-0.648000px;}
.ws33{word-spacing:-0.594000px;}
.ws56{word-spacing:-0.574560px;}
.ws6d{word-spacing:-0.540000px;}
.ws58{word-spacing:-0.526680px;}
.wseb{word-spacing:-0.432000px;}
.ws69{word-spacing:-0.324000px;}
.ws2a{word-spacing:-0.270000px;}
.ws24{word-spacing:-0.216000px;}
.ws61{word-spacing:-0.191520px;}
.ws11{word-spacing:-0.162000px;}
.wsc7{word-spacing:-0.144000px;}
.wsa1{word-spacing:-0.143640px;}
.ws29{word-spacing:-0.108000px;}
.wsdf{word-spacing:-0.095760px;}
.wse{word-spacing:-0.060120px;}
.ws7e{word-spacing:-0.054000px;}
.ws60{word-spacing:-0.047880px;}
.ws9{word-spacing:0.000000px;}
.ws42{word-spacing:0.047880px;}
.ws16{word-spacing:0.054000px;}
.wsd{word-spacing:0.060120px;}
.ws83{word-spacing:0.095760px;}
.ws4a{word-spacing:0.108000px;}
.wsb{word-spacing:0.120240px;}
.ws84{word-spacing:0.143640px;}
.ws23{word-spacing:0.162000px;}
.ws3f{word-spacing:0.191520px;}
.ws95{word-spacing:0.216000px;}
.wsa9{word-spacing:0.239400px;}
.wsa{word-spacing:0.240480px;}
.ws17{word-spacing:0.270000px;}
.wsc{word-spacing:0.300600px;}
.ws102{word-spacing:0.324000px;}
.wse0{word-spacing:0.335160px;}
.ws9f{word-spacing:0.378000px;}
.wsf{word-spacing:0.420840px;}
.ws87{word-spacing:0.432000px;}
.ws1e{word-spacing:0.486000px;}
.ws65{word-spacing:0.526680px;}
.wsee{word-spacing:0.540000px;}
.wsa3{word-spacing:0.766080px;}
.wsa2{word-spacing:0.861840px;}
.ws20{word-spacing:0.864000px;}
.wsf3{word-spacing:0.957600px;}
.wsde{word-spacing:1.005480px;}
.wsdc{word-spacing:1.053360px;}
.wsfb{word-spacing:1.134000px;}
.wsbb{word-spacing:1.188000px;}
.ws21{word-spacing:1.242000px;}
.wsdd{word-spacing:1.244880px;}
.wsdb{word-spacing:1.292760px;}
.ws1f{word-spacing:1.296000px;}
.ws37{word-spacing:1.350000px;}
.ws5a{word-spacing:1.436400px;}
.wsec{word-spacing:1.458000px;}
.ws59{word-spacing:1.484280px;}
.wsbe{word-spacing:1.512000px;}
.ws2b{word-spacing:1.566000px;}
.wsf5{word-spacing:1.580040px;}
.ws48{word-spacing:1.620000px;}
.wsf2{word-spacing:1.627920px;}
.wsbc{word-spacing:1.836000px;}
.ws2d{word-spacing:1.944000px;}
.wse6{word-spacing:1.963080px;}
.ws43{word-spacing:2.154600px;}
.ws3a{word-spacing:2.322000px;}
.ws66{word-spacing:2.346120px;}
.ws97{word-spacing:2.376000px;}
.wse5{word-spacing:2.537640px;}
.ws22{word-spacing:2.646000px;}
.wsed{word-spacing:2.700000px;}
.wsea{word-spacing:2.729160px;}
.wse4{word-spacing:2.824920px;}
.ws68{word-spacing:2.916000px;}
.wsd0{word-spacing:2.970000px;}
.ws1b{word-spacing:3.024000px;}
.ws5c{word-spacing:3.064320px;}
.wsc1{word-spacing:3.078000px;}
.wse1{word-spacing:3.112200px;}
.wsb2{word-spacing:3.132000px;}
.wsf0{word-spacing:3.294000px;}
.ws55{word-spacing:3.402000px;}
.wsa4{word-spacing:3.591000px;}
.ws40{word-spacing:3.638880px;}
.ws6c{word-spacing:3.672000px;}
.ws54{word-spacing:3.726000px;}
.wsb8{word-spacing:3.780000px;}
.wsc4{word-spacing:3.834000px;}
.ws1d{word-spacing:3.996000px;}
.ws5b{word-spacing:4.021920px;}
.ws4b{word-spacing:4.104000px;}
.wse2{word-spacing:4.165560px;}
.wse3{word-spacing:4.213440px;}
.wsa8{word-spacing:4.309200px;}
.wsfc{word-spacing:4.428000px;}
.ws1c{word-spacing:4.482000px;}
.wscc{word-spacing:4.536000px;}
.ws5e{word-spacing:4.548600px;}
.ws8e{word-spacing:4.644000px;}
.ws8d{word-spacing:4.698000px;}
.ws94{word-spacing:4.752000px;}
.ws38{word-spacing:4.806000px;}
.wscd{word-spacing:4.860000px;}
.ws5d{word-spacing:4.883760px;}
.ws71{word-spacing:4.931640px;}
.ws96{word-spacing:5.076000px;}
.wsd1{word-spacing:5.130000px;}
.ws74{word-spacing:5.184000px;}
.wsc8{word-spacing:5.238000px;}
.wsad{word-spacing:5.562000px;}
.wsf4{word-spacing:5.601960px;}
.wsa7{word-spacing:5.745600px;}
.wsc5{word-spacing:5.778000px;}
.wsa6{word-spacing:5.793480px;}
.ws3e{word-spacing:5.886000px;}
.wsda{word-spacing:5.940000px;}
.ws13{word-spacing:6.264000px;}
.ws93{word-spacing:6.318000px;}
.ws63{word-spacing:6.320160px;}
.ws105{word-spacing:6.588000px;}
.ws62{word-spacing:6.607440px;}
.ws12{word-spacing:6.642000px;}
.ws10{word-spacing:6.696000px;}
.ws91{word-spacing:6.966000px;}
.wsc0{word-spacing:7.344000px;}
.wsaa{word-spacing:7.614000px;}
.ws9a{word-spacing:7.668000px;}
.ws76{word-spacing:7.722000px;}
.wsc3{word-spacing:8.046000px;}
.wsf8{word-spacing:8.370000px;}
.ws2f{word-spacing:8.424000px;}
.wsab{word-spacing:8.748000px;}
.ws2e{word-spacing:8.802000px;}
.ws7b{word-spacing:8.856000px;}
.wsce{word-spacing:9.018000px;}
.ws53{word-spacing:9.126000px;}
.ws7a{word-spacing:9.504000px;}
.ws6a{word-spacing:9.828000px;}
.ws18{word-spacing:9.882000px;}
.ws19{word-spacing:9.936000px;}
.ws36{word-spacing:10.206000px;}
.ws4e{word-spacing:10.260000px;}
.ws98{word-spacing:10.476000px;}
.ws7c{word-spacing:10.584000px;}
.ws99{word-spacing:10.638000px;}
.wscf{word-spacing:10.962000px;}
.ws75{word-spacing:11.286000px;}
.ws5f{word-spacing:11.347560px;}
.wsfe{word-spacing:11.556000px;}
.wsfd{word-spacing:11.664000px;}
.wsba{word-spacing:11.934000px;}
.wsb9{word-spacing:11.988000px;}
.ws39{word-spacing:12.042000px;}
.wsc6{word-spacing:12.096000px;}
.ws3b{word-spacing:12.366000px;}
.ws3c{word-spacing:12.420000px;}
.ws9e{word-spacing:12.744000px;}
.wsbd{word-spacing:13.122000px;}
.ws7d{word-spacing:13.446000px;}
.ws77{word-spacing:14.202000px;}
.ws52{word-spacing:14.526000px;}
.wsf1{word-spacing:14.634000px;}
.wsb4{word-spacing:15.174000px;}
.wsb5{word-spacing:15.282000px;}
.ws8c{word-spacing:15.984000px;}
.ws8a{word-spacing:16.254000px;}
.ws89{word-spacing:16.362000px;}
.wsf9{word-spacing:16.578000px;}
.wsfa{word-spacing:16.686000px;}
.ws4f{word-spacing:17.064000px;}
.ws6f{word-spacing:17.442000px;}
.ws70{word-spacing:17.766000px;}
.wsf6{word-spacing:17.820000px;}
.wsc2{word-spacing:18.522000px;}
.ws79{word-spacing:18.846000px;}
.ws86{word-spacing:19.224000px;}
.wsd2{word-spacing:19.818000px;}
.ws7f{word-spacing:19.926000px;}
.ws78{word-spacing:20.304000px;}
.ws8b{word-spacing:20.682000px;}
.wsf7{word-spacing:21.006000px;}
.ws92{word-spacing:21.762000px;}
.ws6e{word-spacing:21.816000px;}
.wscb{word-spacing:22.086000px;}
.ws88{word-spacing:23.544000px;}
.wsd5{word-spacing:23.814000px;}
.wsac{word-spacing:24.246000px;}
.ws2c{word-spacing:26.406000px;}
.wsff{word-spacing:26.784000px;}
.ws100{word-spacing:26.838000px;}
.wsaf{word-spacing:27.486000px;}
.wsae{word-spacing:27.540000px;}
.ws80{word-spacing:28.566000px;}
.ws32{word-spacing:30.402000px;}
._d{margin-left:-16.545564px;}
._a{margin-left:-5.983128px;}
._6{margin-left:-4.674816px;}
._3{margin-left:-3.402000px;}
._c{margin-left:-2.376000px;}
._1{margin-left:-1.220436px;}
._0{width:1.076148px;}
._7{width:2.570436px;}
._5{width:3.747852px;}
._4{width:4.771260px;}
._2{width:7.380000px;}
._8{width:9.774000px;}
._b{width:12.585852px;}
._9{width:14.094000px;}
.fc8{color:rgb(5,99,193);}
.fc6{color:rgb(17,85,204);}
.fc5{color:rgb(38,50,56);}
.fc4{color:rgb(0,0,255);}
.fc3{color:rgb(11,12,12);}
.fc2{color:rgb(255,0,0);}
.fc1{color:rgb(0,51,102);}
.fc7{color:rgb(34,34,34);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:29.880000px;}
.fs3{font-size:36.000000px;}
.fs6{font-size:42.120000px;}
.fs4{font-size:47.880000px;}
.fs1{font-size:54.000000px;}
.fs0{font-size:60.120000px;}
.fs2{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.y2c{bottom:57.150000px;}
.y2b{bottom:76.680000px;}
.y87{bottom:108.791280px;}
.y180{bottom:108.801360px;}
.y57{bottom:108.805230px;}
.y164{bottom:108.807840px;}
.yae{bottom:108.808380px;}
.y1ba{bottom:108.808920px;}
.yc9{bottom:108.811080px;}
.ye8{bottom:109.264500px;}
.y1bf{bottom:113.670810px;}
.y14f{bottom:117.090000px;}
.y1a6{bottom:123.331500px;}
.y86{bottom:123.370740px;}
.y17f{bottom:123.380820px;}
.y56{bottom:123.384690px;}
.y163{bottom:123.387300px;}
.yad{bottom:123.387840px;}
.y1b9{bottom:123.388380px;}
.yc8{bottom:123.390540px;}
.y21d{bottom:125.752500px;}
.y1e5{bottom:129.496500px;}
.y14e{bottom:131.040000px;}
.y28{bottom:132.714000px;}
.ye7{bottom:133.929000px;}
.y1be{bottom:135.540000px;}
.y85{bottom:137.950200px;}
.y17e{bottom:137.960280px;}
.y55{bottom:137.964150px;}
.yac{bottom:137.967300px;}
.y1b8{bottom:137.967840px;}
.y202{bottom:142.137000px;}
.yc7{bottom:142.470000px;}
.y162{bottom:146.250000px;}
.y1a5{bottom:147.901500px;}
.y1b7{bottom:152.547300px;}
.y1e4{bottom:154.066500px;}
.yc6{bottom:154.080000px;}
.y10e{bottom:155.821500px;}
.y27{bottom:157.378500px;}
.ye6{bottom:158.499000px;}
.y236{bottom:158.512500px;}
.y21c{bottom:158.517000px;}
.y1bd{bottom:158.575500px;}
.y161{bottom:158.667300px;}
.y84{bottom:160.812900px;}
.y17d{bottom:160.822980px;}
.y54{bottom:160.826850px;}
.yab{bottom:160.830000px;}
.y261{bottom:164.160000px;}
.y14d{bottom:170.455500px;}
.y1a4{bottom:172.566000px;}
.y83{bottom:173.237760px;}
.y17c{bottom:173.247840px;}
.y53{bottom:173.251710px;}
.yaa{bottom:174.780000px;}
.y201{bottom:174.901500px;}
.y1b6{bottom:175.410000px;}
.y1e3{bottom:178.731000px;}
.y10d{bottom:180.391500px;}
.y160{bottom:181.530000px;}
.y26{bottom:181.948500px;}
.ye5{bottom:183.163500px;}
.y126{bottom:183.217500px;}
.y174{bottom:183.235500px;}
.y1bc{bottom:183.240000px;}
.y82{bottom:187.817220px;}
.y17b{bottom:187.827300px;}
.y52{bottom:187.831170px;}
.y1b5{bottom:189.360000px;}
.y235{bottom:191.358000px;}
.y21b{bottom:191.362500px;}
.y14c{bottom:195.120000px;}
.y15f{bottom:195.480000px;}
.y260{bottom:196.920000px;}
.y1a3{bottom:197.136000px;}
.y25{bottom:200.754000px;}
.y1e2{bottom:203.301000px;}
.y10c{bottom:205.056000px;}
.ye4{bottom:207.733500px;}
.y200{bottom:207.747000px;}
.y125{bottom:207.787500px;}
.yc5{bottom:207.805500px;}
.y1bb{bottom:207.810000px;}
.y81{bottom:210.679920px;}
.y17a{bottom:210.690000px;}
.y51{bottom:210.693870px;}
.y14b{bottom:219.618000px;}
.ya9{bottom:219.685500px;}
.y1a2{bottom:221.800500px;}
.y80{bottom:223.104780px;}
.y234{bottom:224.122500px;}
.y21a{bottom:224.127000px;}
.y15e{bottom:224.140500px;}
.y179{bottom:224.640000px;}
.y24{bottom:225.418500px;}
.y1b4{bottom:226.971000px;}
.y1e1{bottom:227.965500px;}
.y10b{bottom:229.626000px;}
.y25f{bottom:229.770000px;}
.y50{bottom:231.390000px;}
.ye3{bottom:232.398000px;}
.y124{bottom:232.452000px;}
.yc4{bottom:232.470000px;}
.y7f{bottom:237.684240px;}
.y1ff{bottom:240.592500px;}
.y14a{bottom:244.282500px;}
.ya8{bottom:244.350000px;}
.y4f{bottom:245.340000px;}
.y1a1{bottom:246.370500px;}
.y15d{bottom:248.805000px;}
.y23{bottom:250.083000px;}
.y1b3{bottom:251.541000px;}
.y7e{bottom:252.263700px;}
.y1e0{bottom:252.535500px;}
.y10a{bottom:254.290500px;}
.ye2{bottom:256.968000px;}
.y219{bottom:256.972500px;}
.y123{bottom:257.022000px;}
.y178{bottom:257.035500px;}
.yc3{bottom:257.040000px;}
.y25e{bottom:262.498500px;}
.y7d{bottom:266.938920px;}
.y149{bottom:268.852500px;}
.ya7{bottom:268.920000px;}
.y1a0{bottom:271.035000px;}
.y1fe{bottom:273.357000px;}
.y15c{bottom:273.375000px;}
.y22{bottom:274.653000px;}
.y1b2{bottom:276.205500px;}
.y1df{bottom:277.105500px;}
.y109{bottom:278.860500px;}
.y7c{bottom:281.518380px;}
.ye1{bottom:281.538000px;}
.yc2{bottom:281.587500px;}
.y122{bottom:281.592000px;}
.y177{bottom:281.605500px;}
.y4e{bottom:285.385500px;}
.y25d{bottom:287.244000px;}
.y233{bottom:289.813500px;}
.y218{bottom:289.818000px;}
.y148{bottom:293.517000px;}
.ya6{bottom:293.571000px;}
.y19f{bottom:295.605000px;}
.y7b{bottom:296.097840px;}
.y15b{bottom:298.039500px;}
.y21{bottom:299.317500px;}
.y1b1{bottom:300.775500px;}
.y1de{bottom:301.770000px;}
.y108{bottom:303.430500px;}
.ye0{bottom:306.202500px;}
.yc1{bottom:306.252000px;}
.y121{bottom:306.256500px;}
.y176{bottom:306.265500px;}
.y4d{bottom:309.955500px;}
.y7a{bottom:310.677300px;}
.y25c{bottom:311.814000px;}
.y147{bottom:318.087000px;}
.ya5{bottom:318.141000px;}
.y19e{bottom:320.269500px;}
.y232{bottom:322.578000px;}
.y217{bottom:322.582500px;}
.y15a{bottom:322.609500px;}
.y20{bottom:323.887500px;}
.y1b0{bottom:325.440000px;}
.y1dd{bottom:326.326500px;}
.y107{bottom:328.095000px;}
.ydf{bottom:330.772500px;}
.yc0{bottom:330.822000px;}
.y120{bottom:330.826500px;}
.y175{bottom:330.835500px;}
.y79{bottom:333.540000px;}
.y4c{bottom:334.525500px;}
.y25b{bottom:336.478500px;}
.y1fd{bottom:338.967000px;}
.y146{bottom:342.751500px;}
.ya4{bottom:342.805500px;}
.y19d{bottom:344.839500px;}
.y159{bottom:347.274000px;}
.y78{bottom:347.490000px;}
.y1f{bottom:348.457500px;}
.y1af{bottom:350.010000px;}
.y1dc{bottom:350.991000px;}
.y106{bottom:352.665000px;}
.y231{bottom:355.423500px;}
.y216{bottom:355.428000px;}
.yde{bottom:355.437000px;}
.ybf{bottom:355.486500px;}
.y11f{bottom:355.491000px;}
.y4b{bottom:359.190000px;}
.y25a{bottom:361.048500px;}
.y145{bottom:367.321500px;}
.ya3{bottom:367.375500px;}
.y19c{bottom:369.504000px;}
.y1fc{bottom:371.812500px;}
.y1e{bottom:373.122000px;}
.y1ae{bottom:374.580000px;}
.y1db{bottom:375.561000px;}
.y105{bottom:377.329500px;}
.y158{bottom:379.944000px;}
.ydd{bottom:380.007000px;}
.ybe{bottom:380.056500px;}
.y77{bottom:380.061000px;}
.y4a{bottom:383.760000px;}
.y259{bottom:385.713000px;}
.y230{bottom:388.188000px;}
.y215{bottom:388.192500px;}
.y144{bottom:391.986000px;}
.ya2{bottom:392.040000px;}
.y19b{bottom:394.074000px;}
.y1d{bottom:397.692000px;}
.y1ad{bottom:398.074860px;}
.y1da{bottom:400.225500px;}
.y104{bottom:401.899500px;}
.y1fb{bottom:404.658000px;}
.ydc{bottom:404.671500px;}
.y157{bottom:404.689500px;}
.ybd{bottom:404.721000px;}
.y76{bottom:404.725500px;}
.y49{bottom:408.411000px;}
.y258{bottom:410.283000px;}
.y143{bottom:416.556000px;}
.ya1{bottom:416.610000px;}
.y1ac{bottom:419.944050px;}
.y22f{bottom:421.033500px;}
.y214{bottom:421.038000px;}
.y242{bottom:421.105500px;}
.y1c{bottom:422.356500px;}
.y1d9{bottom:424.795500px;}
.y103{bottom:426.564000px;}
.ydb{bottom:429.241500px;}
.y156{bottom:429.259500px;}
.ybc{bottom:429.291000px;}
.y75{bottom:429.295500px;}
.y48{bottom:432.981000px;}
.y257{bottom:434.947500px;}
.y19a{bottom:435.829500px;}
.y1fa{bottom:437.422500px;}
.y142{bottom:441.126000px;}
.ya0{bottom:441.180000px;}
.y1ab{bottom:441.813240px;}
.y1b{bottom:446.926500px;}
.y1d8{bottom:449.460000px;}
.y102{bottom:451.134000px;}
.y241{bottom:453.870000px;}
.y22e{bottom:453.879000px;}
.y213{bottom:453.883500px;}
.yda{bottom:453.906000px;}
.y155{bottom:453.924000px;}
.ybb{bottom:453.955500px;}
.y74{bottom:453.960000px;}
.y47{bottom:457.645500px;}
.y256{bottom:459.517500px;}
.y1aa{bottom:463.682430px;}
.y141{bottom:465.790500px;}
.y9f{bottom:465.840000px;}
.y1f9{bottom:470.268000px;}
.y1a{bottom:471.591000px;}
.y1d7{bottom:474.030000px;}
.y101{bottom:475.798500px;}
.yd9{bottom:478.476000px;}
.y199{bottom:478.489500px;}
.y154{bottom:478.494000px;}
.y73{bottom:478.498500px;}
.y173{bottom:478.521000px;}
.yba{bottom:478.525500px;}
.y11e{bottom:478.530000px;}
.y46{bottom:482.215500px;}
.y255{bottom:484.087500px;}
.y1a9{bottom:485.551620px;}
.y240{bottom:486.634500px;}
.y22d{bottom:486.643500px;}
.y212{bottom:486.648000px;}
.y140{bottom:490.360500px;}
.y9e{bottom:490.410000px;}
.y19{bottom:496.161000px;}
.y1d6{bottom:498.600000px;}
.y100{bottom:500.368500px;}
.y1f8{bottom:503.032500px;}
.yd8{bottom:503.046000px;}
.y198{bottom:503.059500px;}
.y153{bottom:503.064000px;}
.y72{bottom:503.068500px;}
.y172{bottom:503.091000px;}
.yb9{bottom:503.095500px;}
.y11d{bottom:503.100000px;}
.y45{bottom:506.880000px;}
.y1a8{bottom:507.420810px;}
.y254{bottom:508.752000px;}
.y13f{bottom:515.025000px;}
.y23f{bottom:519.480000px;}
.y22c{bottom:519.489000px;}
.y211{bottom:519.493500px;}
.y18{bottom:520.825500px;}
.y1d5{bottom:523.219500px;}
.yff{bottom:525.033000px;}
.y9d{bottom:527.634000px;}
.yd7{bottom:527.710500px;}
.y197{bottom:527.724000px;}
.y152{bottom:527.728500px;}
.y71{bottom:527.733000px;}
.y11c{bottom:527.755500px;}
.yb8{bottom:527.760000px;}
.y1a7{bottom:529.290000px;}
.y44{bottom:531.450000px;}
.y253{bottom:533.322000px;}
.y1f7{bottom:535.878000px;}
.y13e{bottom:539.595000px;}
.y17{bottom:545.395500px;}
.y1d4{bottom:547.789500px;}
.yfe{bottom:549.603000px;}
.y23e{bottom:552.244500px;}
.y22b{bottom:552.253500px;}
.y210{bottom:552.258000px;}
.yd6{bottom:552.280500px;}
.y196{bottom:552.294000px;}
.y9c{bottom:552.298500px;}
.y70{bottom:552.303000px;}
.yb7{bottom:552.316500px;}
.y11b{bottom:552.325500px;}
.y43{bottom:556.110000px;}
.y252{bottom:557.986500px;}
.y13d{bottom:564.259500px;}
.y1f6{bottom:568.723500px;}
.y16{bottom:569.965500px;}
.y1d3{bottom:572.454000px;}
.yfd{bottom:574.173000px;}
.yd5{bottom:576.945000px;}
.y195{bottom:576.958500px;}
.y9b{bottom:576.963000px;}
.y6f{bottom:576.967500px;}
.yb6{bottom:576.981000px;}
.y11a{bottom:576.990000px;}
.y42{bottom:580.671000px;}
.y251{bottom:582.556500px;}
.y15{bottom:583.560000px;}
.y23d{bottom:585.090000px;}
.y22a{bottom:585.099000px;}
.y20f{bottom:585.103500px;}
.y13c{bottom:588.829500px;}
.y1d2{bottom:597.024000px;}
.yfc{bottom:598.837500px;}
.y1f5{bottom:601.488000px;}
.yd4{bottom:601.515000px;}
.y194{bottom:601.528500px;}
.y9a{bottom:601.533000px;}
.y6e{bottom:601.537500px;}
.yb5{bottom:601.551000px;}
.y119{bottom:601.560000px;}
.y41{bottom:605.241000px;}
.y250{bottom:607.221000px;}
.y14{bottom:609.480000px;}
.y13b{bottom:613.494000px;}
.y23c{bottom:617.935500px;}
.y229{bottom:617.944500px;}
.y20e{bottom:617.949000px;}
.y1d1{bottom:621.688500px;}
.yfb{bottom:623.407500px;}
.yd3{bottom:626.179500px;}
.y171{bottom:626.188500px;}
.y193{bottom:626.193000px;}
.y99{bottom:626.197500px;}
.y6d{bottom:626.202000px;}
.yb4{bottom:626.215500px;}
.y13{bottom:628.380000px;}
.y40{bottom:629.905500px;}
.y24f{bottom:631.791000px;}
.y1f4{bottom:634.333500px;}
.y13a{bottom:638.064000px;}
.y1d0{bottom:646.258500px;}
.y12{bottom:647.185500px;}
.yfa{bottom:648.072000px;}
.y23b{bottom:650.700000px;}
.y228{bottom:650.709000px;}
.y20d{bottom:650.713500px;}
.yd2{bottom:650.749500px;}
.y170{bottom:650.758500px;}
.y192{bottom:650.763000px;}
.y98{bottom:650.767500px;}
.y6c{bottom:650.772000px;}
.yb3{bottom:650.785500px;}
.y3f{bottom:654.475500px;}
.y24e{bottom:656.455500px;}
.y139{bottom:662.634000px;}
.y11{bottom:666.720000px;}
.y1f3{bottom:667.098000px;}
.y1cf{bottom:670.923000px;}
.yf9{bottom:672.642000px;}
.yd1{bottom:675.414000px;}
.y16f{bottom:675.423000px;}
.y191{bottom:675.427500px;}
.y97{bottom:675.432000px;}
.y6b{bottom:675.436500px;}
.yb2{bottom:675.450000px;}
.y3e{bottom:679.131000px;}
.y24d{bottom:681.025500px;}
.y23a{bottom:683.545500px;}
.y227{bottom:683.554500px;}
.y20c{bottom:683.559000px;}
.y10{bottom:684.720000px;}
.y138{bottom:687.298500px;}
.y1ce{bottom:695.493000px;}
.yf8{bottom:697.306500px;}
.y1f2{bottom:699.943500px;}
.yd0{bottom:699.984000px;}
.y16e{bottom:699.993000px;}
.y190{bottom:699.997500px;}
.y96{bottom:700.002000px;}
.y6a{bottom:700.006500px;}
.yb1{bottom:700.020000px;}
.yf{bottom:701.095500px;}
.y3d{bottom:703.701000px;}
.y24c{bottom:705.595500px;}
.y137{bottom:711.868500px;}
.ye{bottom:714.690000px;}
.y239{bottom:716.310000px;}
.y226{bottom:716.319000px;}
.y20b{bottom:716.323500px;}
.y1cd{bottom:720.157500px;}
.yf7{bottom:721.876500px;}
.ycf{bottom:724.648500px;}
.y16d{bottom:724.657500px;}
.y18f{bottom:724.662000px;}
.y95{bottom:724.666500px;}
.y69{bottom:724.671000px;}
.y3c{bottom:728.365500px;}
.y24b{bottom:730.260000px;}
.y1f1{bottom:732.789000px;}
.y136{bottom:736.533000px;}
.yd{bottom:738.533700px;}
.y1cc{bottom:744.727500px;}
.yf6{bottom:746.541000px;}
.y238{bottom:749.160000px;}
.y225{bottom:749.164500px;}
.y20a{bottom:749.169000px;}
.yce{bottom:749.218500px;}
.y16c{bottom:749.227500px;}
.y18e{bottom:749.232000px;}
.y94{bottom:749.236500px;}
.y68{bottom:749.241000px;}
.y3b{bottom:752.935500px;}
.y24a{bottom:754.830000px;}
.yc{bottom:756.720000px;}
.y135{bottom:761.103000px;}
.y1f0{bottom:765.553500px;}
.y1cb{bottom:769.297500px;}
.yf5{bottom:771.111000px;}
.ycd{bottom:773.788500px;}
.y16b{bottom:773.797500px;}
.y18d{bottom:773.802000px;}
.y93{bottom:773.806500px;}
.y67{bottom:773.811000px;}
.yb{bottom:774.990000px;}
.y3a{bottom:777.600000px;}
.y249{bottom:779.485500px;}
.y224{bottom:782.010000px;}
.y209{bottom:782.014500px;}
.y134{bottom:785.767500px;}
.y1ca{bottom:793.962000px;}
.yf4{bottom:795.681000px;}
.y1ef{bottom:798.399000px;}
.ycc{bottom:798.453000px;}
.y16a{bottom:798.462000px;}
.y18c{bottom:798.466500px;}
.y92{bottom:798.471000px;}
.y66{bottom:798.475500px;}
.y39{bottom:802.170000px;}
.ya{bottom:802.260000px;}
.y248{bottom:804.055500px;}
.y133{bottom:810.337500px;}
.y237{bottom:814.770000px;}
.y223{bottom:814.774500px;}
.y208{bottom:814.779000px;}
.y9{bottom:817.380000px;}
.y1c9{bottom:818.532000px;}
.yf3{bottom:820.345500px;}
.ycb{bottom:823.023000px;}
.y169{bottom:823.032000px;}
.y18b{bottom:823.036500px;}
.y91{bottom:823.041000px;}
.y65{bottom:823.045500px;}
.y38{bottom:826.726500px;}
.y247{bottom:828.720000px;}
.y1ee{bottom:831.163500px;}
.y132{bottom:835.002000px;}
.y1c8{bottom:843.196500px;}
.yf2{bottom:844.915500px;}
.y222{bottom:847.615500px;}
.y207{bottom:847.624500px;}
.yca{bottom:847.687500px;}
.y168{bottom:847.696500px;}
.y18a{bottom:847.701000px;}
.y90{bottom:847.705500px;}
.y64{bottom:847.710000px;}
.y37{bottom:851.391000px;}
.y246{bottom:853.290000px;}
.y131{bottom:859.572000px;}
.y8{bottom:862.168050px;}
.y1ed{bottom:864.009000px;}
.y1c7{bottom:867.766500px;}
.yf1{bottom:869.580000px;}
.yb0{bottom:872.257500px;}
.y118{bottom:872.262000px;}
.y167{bottom:872.266500px;}
.y63{bottom:872.271000px;}
.y8f{bottom:872.275500px;}
.y36{bottom:875.961000px;}
.y221{bottom:880.380000px;}
.y206{bottom:880.389000px;}
.y7{bottom:880.444530px;}
.y245{bottom:883.260000px;}
.y130{bottom:884.236500px;}
.y1c6{bottom:892.431000px;}
.yf0{bottom:892.985670px;}
.y1ec{bottom:896.854500px;}
.yaf{bottom:896.922000px;}
.y117{bottom:896.926500px;}
.y166{bottom:896.931000px;}
.y62{bottom:896.935500px;}
.y8e{bottom:896.940000px;}
.y6{bottom:898.721010px;}
.y35{bottom:900.625500px;}
.y12f{bottom:908.806500px;}
.y220{bottom:913.230000px;}
.y205{bottom:913.234500px;}
.yef{bottom:914.854860px;}
.y5{bottom:916.907310px;}
.y1c5{bottom:917.001000px;}
.y8d{bottom:921.492000px;}
.y116{bottom:921.496500px;}
.y165{bottom:921.501000px;}
.y61{bottom:921.505500px;}
.y34{bottom:925.195500px;}
.y1eb{bottom:929.619000px;}
.y12e{bottom:933.376500px;}
.y4{bottom:935.183790px;}
.yee{bottom:936.724050px;}
.y1c4{bottom:941.665500px;}
.y21f{bottom:946.075500px;}
.y204{bottom:946.080000px;}
.y8c{bottom:946.156500px;}
.y115{bottom:946.161000px;}
.y151{bottom:946.165500px;}
.y60{bottom:946.170000px;}
.y33{bottom:949.860000px;}
.y3{bottom:953.370090px;}
.y12d{bottom:958.041000px;}
.yed{bottom:958.593240px;}
.y1ea{bottom:962.464500px;}
.y1c3{bottom:966.235500px;}
.y189{bottom:969.570000px;}
.y8b{bottom:970.726500px;}
.y114{bottom:970.731000px;}
.y150{bottom:970.735500px;}
.y5f{bottom:970.740000px;}
.y32{bottom:974.430000px;}
.y21e{bottom:978.840000px;}
.y203{bottom:978.844500px;}
.yec{bottom:980.462430px;}
.y12c{bottom:982.611000px;}
.y1c2{bottom:990.805500px;}
.y188{bottom:991.445670px;}
.y2{bottom:992.433060px;}
.y1e9{bottom:995.229000px;}
.y8a{bottom:995.296500px;}
.y113{bottom:995.301000px;}
.y5e{bottom:995.305500px;}
.yeb{bottom:1002.331620px;}
.y1{bottom:1005.930000px;}
.y12b{bottom:1007.275500px;}
.y31{bottom:1011.690000px;}
.y187{bottom:1013.314860px;}
.y1c1{bottom:1015.470000px;}
.y89{bottom:1019.961000px;}
.y112{bottom:1019.965500px;}
.y5d{bottom:1019.970000px;}
.yea{bottom:1024.200810px;}
.y1e8{bottom:1028.074500px;}
.y12a{bottom:1031.845500px;}
.y186{bottom:1035.184050px;}
.y1c0{bottom:1040.040000px;}
.y30{bottom:1044.454500px;}
.y88{bottom:1044.531000px;}
.y111{bottom:1044.535500px;}
.y5c{bottom:1044.540000px;}
.ye9{bottom:1046.070000px;}
.y129{bottom:1056.510000px;}
.y185{bottom:1057.053240px;}
.y1e7{bottom:1060.920000px;}
.y5b{bottom:1069.195500px;}
.y110{bottom:1069.200000px;}
.y2f{bottom:1077.300000px;}
.y184{bottom:1078.922430px;}
.y128{bottom:1081.080000px;}
.y1e6{bottom:1093.684500px;}
.y5a{bottom:1093.765500px;}
.y10f{bottom:1093.770000px;}
.y183{bottom:1100.791620px;}
.y127{bottom:1105.744500px;}
.y2e{bottom:1110.145500px;}
.y244{bottom:1110.150000px;}
.y59{bottom:1118.430000px;}
.y182{bottom:1122.660810px;}
.y243{bottom:1126.624500px;}
.y2d{bottom:1142.910000px;}
.y58{bottom:1143.000000px;}
.y181{bottom:1144.530000px;}
.y2a{bottom:1172.430000px;}
.y29{bottom:1193.130000px;}
.h10{height:33.087960px;}
.ha{height:46.991602px;}
.hb{height:51.087960px;}
.h14{height:51.901920px;}
.h5{height:57.618000px;}
.hc{height:57.636000px;}
.h9{height:57.654000px;}
.h8{height:57.672000px;}
.he{height:57.690000px;}
.hf{height:57.708000px;}
.hd{height:57.744000px;}
.h13{height:57.870000px;}
.h11{height:57.906000px;}
.h6{height:58.536000px;}
.h2{height:60.589687px;}
.h3{height:64.148040px;}
.h15{height:64.152360px;}
.h12{height:64.156680px;}
.h4{height:65.170080px;}
.h7{height:70.664062px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:127.617300px;}
.x6{left:129.496050px;}
.x1f{left:134.374500px;}
.x4{left:138.048120px;}
.x7{left:141.009030px;}
.x5{left:142.722450px;}
.xc{left:145.440000px;}
.x13{left:148.963500px;}
.x3{left:152.461890px;}
.x16{left:170.190000px;}
.x14{left:180.810000px;}
.x17{left:227.340000px;}
.x20{left:249.759000px;}
.x18{left:257.233500px;}
.xa{left:290.700000px;}
.x15{left:337.410000px;}
.xb{left:360.180000px;}
.x10{left:368.820000px;}
.x12{left:377.379000px;}
.x11{left:392.404500px;}
.xd{left:393.840810px;}
.x1c{left:403.020000px;}
.x1a{left:406.800000px;}
.x8{left:421.543980px;}
.x1d{left:446.490000px;}
.x1b{left:451.809000px;}
.x1e{left:598.410000px;}
.x1{left:670.050000px;}
.x9{left:738.000000px;}
.x19{left:748.260000px;}
.xf{left:756.900000px;}
.xe{left:765.450000px;}
@media print{
.v2{vertical-align:-24.003840pt;}
.v3{vertical-align:-16.000000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:16.000000pt;}
.ls49{letter-spacing:-0.480000pt;}
.ls16{letter-spacing:-0.432000pt;}
.ls41{letter-spacing:-0.384000pt;}
.ls4a{letter-spacing:-0.383040pt;}
.ls39{letter-spacing:-0.336000pt;}
.ls54{letter-spacing:-0.288000pt;}
.lsf{letter-spacing:-0.267200pt;}
.ls58{letter-spacing:-0.240000pt;}
.lse{letter-spacing:-0.213760pt;}
.ls55{letter-spacing:-0.192000pt;}
.ls47{letter-spacing:-0.170240pt;}
.lsd{letter-spacing:-0.160320pt;}
.ls14{letter-spacing:-0.144000pt;}
.ls2c{letter-spacing:-0.127680pt;}
.lsc{letter-spacing:-0.106880pt;}
.ls11{letter-spacing:-0.096000pt;}
.ls22{letter-spacing:-0.085120pt;}
.ls10{letter-spacing:-0.053440pt;}
.ls13{letter-spacing:-0.048000pt;}
.ls24{letter-spacing:-0.042560pt;}
.lsb{letter-spacing:0.000000pt;}
.ls4{letter-spacing:0.014400pt;}
.ls56{letter-spacing:0.019200pt;}
.ls8{letter-spacing:0.024000pt;}
.ls53{letter-spacing:0.028800pt;}
.ls45{letter-spacing:0.038400pt;}
.ls1f{letter-spacing:0.042560pt;}
.ls15{letter-spacing:0.048000pt;}
.ls0{letter-spacing:0.053440pt;}
.ls35{letter-spacing:0.057600pt;}
.ls30{letter-spacing:0.067840pt;}
.lsa{letter-spacing:0.076800pt;}
.ls23{letter-spacing:0.085120pt;}
.ls7{letter-spacing:0.091200pt;}
.ls21{letter-spacing:0.096000pt;}
.ls3{letter-spacing:0.105600pt;}
.ls1{letter-spacing:0.106880pt;}
.ls57{letter-spacing:0.110400pt;}
.ls2{letter-spacing:0.111040pt;}
.ls4f{letter-spacing:0.115200pt;}
.ls52{letter-spacing:0.124800pt;}
.ls27{letter-spacing:0.127680pt;}
.ls19{letter-spacing:0.128000pt;}
.ls12{letter-spacing:0.144000pt;}
.ls1e{letter-spacing:0.170240pt;}
.ls33{letter-spacing:0.192000pt;}
.ls26{letter-spacing:0.212800pt;}
.ls17{letter-spacing:0.288000pt;}
.ls50{letter-spacing:0.336000pt;}
.ls44{letter-spacing:0.383040pt;}
.ls3d{letter-spacing:0.384000pt;}
.ls51{letter-spacing:0.480000pt;}
.ls34{letter-spacing:0.680960pt;}
.ls42{letter-spacing:1.008000pt;}
.ls43{letter-spacing:1.021440pt;}
.ls48{letter-spacing:1.319360pt;}
.ls38{letter-spacing:1.344000pt;}
.ls46{letter-spacing:1.372800pt;}
.ls1b{letter-spacing:1.680000pt;}
.ls3b{letter-spacing:1.699200pt;}
.ls2a{letter-spacing:1.968000pt;}
.ls1d{letter-spacing:2.068800pt;}
.ls28{letter-spacing:2.304000pt;}
.ls4e{letter-spacing:2.337600pt;}
.ls36{letter-spacing:2.640000pt;}
.ls3a{letter-spacing:3.264000pt;}
.ls20{letter-spacing:3.277120pt;}
.ls3e{letter-spacing:3.600000pt;}
.ls9{letter-spacing:3.940800pt;}
.ls2b{letter-spacing:4.213440pt;}
.ls1c{letter-spacing:4.224000pt;}
.ls40{letter-spacing:4.420800pt;}
.ls2e{letter-spacing:4.848000pt;}
.ls3c{letter-spacing:5.184000pt;}
.ls29{letter-spacing:5.520000pt;}
.ls25{letter-spacing:8.059200pt;}
.ls6{letter-spacing:8.688000pt;}
.ls5{letter-spacing:8.707200pt;}
.ls3f{letter-spacing:10.992000pt;}
.ls37{letter-spacing:11.568000pt;}
.ls31{letter-spacing:14.160000pt;}
.ls4c{letter-spacing:14.784000pt;}
.ls2d{letter-spacing:15.508800pt;}
.ls4b{letter-spacing:15.744000pt;}
.ls32{letter-spacing:19.248000pt;}
.ls1a{letter-spacing:23.424000pt;}
.ls4d{letter-spacing:23.760000pt;}
.ls2f{letter-spacing:25.344000pt;}
.ls18{letter-spacing:86.496000pt;}
.ws0{word-spacing:-18.917760pt;}
.ws3{word-spacing:-18.757440pt;}
.ws1{word-spacing:-18.704000pt;}
.ws2{word-spacing:-18.383360pt;}
.ws8{word-spacing:-17.184000pt;}
.ws101{word-spacing:-17.040000pt;}
.wsd6{word-spacing:-16.992000pt;}
.ws85{word-spacing:-16.944000pt;}
.ws4{word-spacing:-16.896000pt;}
.ws5{word-spacing:-16.848000pt;}
.ws27{word-spacing:-16.800000pt;}
.wsbf{word-spacing:-16.752000pt;}
.ws104{word-spacing:-16.656000pt;}
.ws7{word-spacing:-16.560000pt;}
.ws26{word-spacing:-16.512000pt;}
.ws103{word-spacing:-16.464000pt;}
.ws6{word-spacing:-16.320000pt;}
.wsd8{word-spacing:-15.108800pt;}
.ws28{word-spacing:-15.066240pt;}
.wsd7{word-spacing:-15.023680pt;}
.ws46{word-spacing:-14.981120pt;}
.ws47{word-spacing:-14.938560pt;}
.wsa0{word-spacing:-14.853440pt;}
.ws50{word-spacing:-4.368000pt;}
.ws4c{word-spacing:-4.032000pt;}
.ws90{word-spacing:-3.696000pt;}
.wsc9{word-spacing:-3.504000pt;}
.wsd4{word-spacing:-3.456000pt;}
.ws14{word-spacing:-3.408000pt;}
.ws15{word-spacing:-3.360000pt;}
.ws72{word-spacing:-3.192000pt;}
.ws6b{word-spacing:-3.168000pt;}
.ws4d{word-spacing:-3.072000pt;}
.ws8f{word-spacing:-3.024000pt;}
.ws35{word-spacing:-2.736000pt;}
.wsef{word-spacing:-2.688000pt;}
.ws3d{word-spacing:-2.448000pt;}
.wsd9{word-spacing:-2.400000pt;}
.wsb6{word-spacing:-2.208000pt;}
.wsb7{word-spacing:-2.160000pt;}
.ws67{word-spacing:-2.112000pt;}
.ws81{word-spacing:-2.085440pt;}
.wsb3{word-spacing:-2.064000pt;}
.ws64{word-spacing:-1.915200pt;}
.ws31{word-spacing:-1.872000pt;}
.ws30{word-spacing:-1.776000pt;}
.ws82{word-spacing:-1.744960pt;}
.wse7{word-spacing:-1.617280pt;}
.wsd3{word-spacing:-1.536000pt;}
.ws25{word-spacing:-1.488000pt;}
.wsa5{word-spacing:-1.447040pt;}
.wsca{word-spacing:-1.440000pt;}
.ws9c{word-spacing:-1.248000pt;}
.ws45{word-spacing:-1.234240pt;}
.ws49{word-spacing:-1.152000pt;}
.ws44{word-spacing:-1.149120pt;}
.ws41{word-spacing:-1.106560pt;}
.ws9b{word-spacing:-1.104000pt;}
.wse9{word-spacing:-0.936320pt;}
.wsb1{word-spacing:-0.912000pt;}
.wse8{word-spacing:-0.851200pt;}
.ws1a{word-spacing:-0.816000pt;}
.ws51{word-spacing:-0.768000pt;}
.wsb0{word-spacing:-0.720000pt;}
.ws73{word-spacing:-0.638400pt;}
.ws34{word-spacing:-0.624000pt;}
.ws57{word-spacing:-0.595840pt;}
.ws9d{word-spacing:-0.576000pt;}
.ws33{word-spacing:-0.528000pt;}
.ws56{word-spacing:-0.510720pt;}
.ws6d{word-spacing:-0.480000pt;}
.ws58{word-spacing:-0.468160pt;}
.wseb{word-spacing:-0.384000pt;}
.ws69{word-spacing:-0.288000pt;}
.ws2a{word-spacing:-0.240000pt;}
.ws24{word-spacing:-0.192000pt;}
.ws61{word-spacing:-0.170240pt;}
.ws11{word-spacing:-0.144000pt;}
.wsc7{word-spacing:-0.128000pt;}
.wsa1{word-spacing:-0.127680pt;}
.ws29{word-spacing:-0.096000pt;}
.wsdf{word-spacing:-0.085120pt;}
.wse{word-spacing:-0.053440pt;}
.ws7e{word-spacing:-0.048000pt;}
.ws60{word-spacing:-0.042560pt;}
.ws9{word-spacing:0.000000pt;}
.ws42{word-spacing:0.042560pt;}
.ws16{word-spacing:0.048000pt;}
.wsd{word-spacing:0.053440pt;}
.ws83{word-spacing:0.085120pt;}
.ws4a{word-spacing:0.096000pt;}
.wsb{word-spacing:0.106880pt;}
.ws84{word-spacing:0.127680pt;}
.ws23{word-spacing:0.144000pt;}
.ws3f{word-spacing:0.170240pt;}
.ws95{word-spacing:0.192000pt;}
.wsa9{word-spacing:0.212800pt;}
.wsa{word-spacing:0.213760pt;}
.ws17{word-spacing:0.240000pt;}
.wsc{word-spacing:0.267200pt;}
.ws102{word-spacing:0.288000pt;}
.wse0{word-spacing:0.297920pt;}
.ws9f{word-spacing:0.336000pt;}
.wsf{word-spacing:0.374080pt;}
.ws87{word-spacing:0.384000pt;}
.ws1e{word-spacing:0.432000pt;}
.ws65{word-spacing:0.468160pt;}
.wsee{word-spacing:0.480000pt;}
.wsa3{word-spacing:0.680960pt;}
.wsa2{word-spacing:0.766080pt;}
.ws20{word-spacing:0.768000pt;}
.wsf3{word-spacing:0.851200pt;}
.wsde{word-spacing:0.893760pt;}
.wsdc{word-spacing:0.936320pt;}
.wsfb{word-spacing:1.008000pt;}
.wsbb{word-spacing:1.056000pt;}
.ws21{word-spacing:1.104000pt;}
.wsdd{word-spacing:1.106560pt;}
.wsdb{word-spacing:1.149120pt;}
.ws1f{word-spacing:1.152000pt;}
.ws37{word-spacing:1.200000pt;}
.ws5a{word-spacing:1.276800pt;}
.wsec{word-spacing:1.296000pt;}
.ws59{word-spacing:1.319360pt;}
.wsbe{word-spacing:1.344000pt;}
.ws2b{word-spacing:1.392000pt;}
.wsf5{word-spacing:1.404480pt;}
.ws48{word-spacing:1.440000pt;}
.wsf2{word-spacing:1.447040pt;}
.wsbc{word-spacing:1.632000pt;}
.ws2d{word-spacing:1.728000pt;}
.wse6{word-spacing:1.744960pt;}
.ws43{word-spacing:1.915200pt;}
.ws3a{word-spacing:2.064000pt;}
.ws66{word-spacing:2.085440pt;}
.ws97{word-spacing:2.112000pt;}
.wse5{word-spacing:2.255680pt;}
.ws22{word-spacing:2.352000pt;}
.wsed{word-spacing:2.400000pt;}
.wsea{word-spacing:2.425920pt;}
.wse4{word-spacing:2.511040pt;}
.ws68{word-spacing:2.592000pt;}
.wsd0{word-spacing:2.640000pt;}
.ws1b{word-spacing:2.688000pt;}
.ws5c{word-spacing:2.723840pt;}
.wsc1{word-spacing:2.736000pt;}
.wse1{word-spacing:2.766400pt;}
.wsb2{word-spacing:2.784000pt;}
.wsf0{word-spacing:2.928000pt;}
.ws55{word-spacing:3.024000pt;}
.wsa4{word-spacing:3.192000pt;}
.ws40{word-spacing:3.234560pt;}
.ws6c{word-spacing:3.264000pt;}
.ws54{word-spacing:3.312000pt;}
.wsb8{word-spacing:3.360000pt;}
.wsc4{word-spacing:3.408000pt;}
.ws1d{word-spacing:3.552000pt;}
.ws5b{word-spacing:3.575040pt;}
.ws4b{word-spacing:3.648000pt;}
.wse2{word-spacing:3.702720pt;}
.wse3{word-spacing:3.745280pt;}
.wsa8{word-spacing:3.830400pt;}
.wsfc{word-spacing:3.936000pt;}
.ws1c{word-spacing:3.984000pt;}
.wscc{word-spacing:4.032000pt;}
.ws5e{word-spacing:4.043200pt;}
.ws8e{word-spacing:4.128000pt;}
.ws8d{word-spacing:4.176000pt;}
.ws94{word-spacing:4.224000pt;}
.ws38{word-spacing:4.272000pt;}
.wscd{word-spacing:4.320000pt;}
.ws5d{word-spacing:4.341120pt;}
.ws71{word-spacing:4.383680pt;}
.ws96{word-spacing:4.512000pt;}
.wsd1{word-spacing:4.560000pt;}
.ws74{word-spacing:4.608000pt;}
.wsc8{word-spacing:4.656000pt;}
.wsad{word-spacing:4.944000pt;}
.wsf4{word-spacing:4.979520pt;}
.wsa7{word-spacing:5.107200pt;}
.wsc5{word-spacing:5.136000pt;}
.wsa6{word-spacing:5.149760pt;}
.ws3e{word-spacing:5.232000pt;}
.wsda{word-spacing:5.280000pt;}
.ws13{word-spacing:5.568000pt;}
.ws93{word-spacing:5.616000pt;}
.ws63{word-spacing:5.617920pt;}
.ws105{word-spacing:5.856000pt;}
.ws62{word-spacing:5.873280pt;}
.ws12{word-spacing:5.904000pt;}
.ws10{word-spacing:5.952000pt;}
.ws91{word-spacing:6.192000pt;}
.wsc0{word-spacing:6.528000pt;}
.wsaa{word-spacing:6.768000pt;}
.ws9a{word-spacing:6.816000pt;}
.ws76{word-spacing:6.864000pt;}
.wsc3{word-spacing:7.152000pt;}
.wsf8{word-spacing:7.440000pt;}
.ws2f{word-spacing:7.488000pt;}
.wsab{word-spacing:7.776000pt;}
.ws2e{word-spacing:7.824000pt;}
.ws7b{word-spacing:7.872000pt;}
.wsce{word-spacing:8.016000pt;}
.ws53{word-spacing:8.112000pt;}
.ws7a{word-spacing:8.448000pt;}
.ws6a{word-spacing:8.736000pt;}
.ws18{word-spacing:8.784000pt;}
.ws19{word-spacing:8.832000pt;}
.ws36{word-spacing:9.072000pt;}
.ws4e{word-spacing:9.120000pt;}
.ws98{word-spacing:9.312000pt;}
.ws7c{word-spacing:9.408000pt;}
.ws99{word-spacing:9.456000pt;}
.wscf{word-spacing:9.744000pt;}
.ws75{word-spacing:10.032000pt;}
.ws5f{word-spacing:10.086720pt;}
.wsfe{word-spacing:10.272000pt;}
.wsfd{word-spacing:10.368000pt;}
.wsba{word-spacing:10.608000pt;}
.wsb9{word-spacing:10.656000pt;}
.ws39{word-spacing:10.704000pt;}
.wsc6{word-spacing:10.752000pt;}
.ws3b{word-spacing:10.992000pt;}
.ws3c{word-spacing:11.040000pt;}
.ws9e{word-spacing:11.328000pt;}
.wsbd{word-spacing:11.664000pt;}
.ws7d{word-spacing:11.952000pt;}
.ws77{word-spacing:12.624000pt;}
.ws52{word-spacing:12.912000pt;}
.wsf1{word-spacing:13.008000pt;}
.wsb4{word-spacing:13.488000pt;}
.wsb5{word-spacing:13.584000pt;}
.ws8c{word-spacing:14.208000pt;}
.ws8a{word-spacing:14.448000pt;}
.ws89{word-spacing:14.544000pt;}
.wsf9{word-spacing:14.736000pt;}
.wsfa{word-spacing:14.832000pt;}
.ws4f{word-spacing:15.168000pt;}
.ws6f{word-spacing:15.504000pt;}
.ws70{word-spacing:15.792000pt;}
.wsf6{word-spacing:15.840000pt;}
.wsc2{word-spacing:16.464000pt;}
.ws79{word-spacing:16.752000pt;}
.ws86{word-spacing:17.088000pt;}
.wsd2{word-spacing:17.616000pt;}
.ws7f{word-spacing:17.712000pt;}
.ws78{word-spacing:18.048000pt;}
.ws8b{word-spacing:18.384000pt;}
.wsf7{word-spacing:18.672000pt;}
.ws92{word-spacing:19.344000pt;}
.ws6e{word-spacing:19.392000pt;}
.wscb{word-spacing:19.632000pt;}
.ws88{word-spacing:20.928000pt;}
.wsd5{word-spacing:21.168000pt;}
.wsac{word-spacing:21.552000pt;}
.ws2c{word-spacing:23.472000pt;}
.wsff{word-spacing:23.808000pt;}
.ws100{word-spacing:23.856000pt;}
.wsaf{word-spacing:24.432000pt;}
.wsae{word-spacing:24.480000pt;}
.ws80{word-spacing:25.392000pt;}
.ws32{word-spacing:27.024000pt;}
._d{margin-left:-14.707168pt;}
._a{margin-left:-5.318336pt;}
._6{margin-left:-4.155392pt;}
._3{margin-left:-3.024000pt;}
._c{margin-left:-2.112000pt;}
._1{margin-left:-1.084832pt;}
._0{width:0.956576pt;}
._7{width:2.284832pt;}
._5{width:3.331424pt;}
._4{width:4.241120pt;}
._2{width:6.560000pt;}
._8{width:8.688000pt;}
._b{width:11.187424pt;}
._9{width:12.528000pt;}
.fs5{font-size:26.560000pt;}
.fs3{font-size:32.000000pt;}
.fs6{font-size:37.440000pt;}
.fs4{font-size:42.560000pt;}
.fs1{font-size:48.000000pt;}
.fs0{font-size:53.440000pt;}
.fs2{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.y2c{bottom:50.800000pt;}
.y2b{bottom:68.160000pt;}
.y87{bottom:96.703360pt;}
.y180{bottom:96.712320pt;}
.y57{bottom:96.715760pt;}
.y164{bottom:96.718080pt;}
.yae{bottom:96.718560pt;}
.y1ba{bottom:96.719040pt;}
.yc9{bottom:96.720960pt;}
.ye8{bottom:97.124000pt;}
.y1bf{bottom:101.040720pt;}
.y14f{bottom:104.080000pt;}
.y1a6{bottom:109.628000pt;}
.y86{bottom:109.662880pt;}
.y17f{bottom:109.671840pt;}
.y56{bottom:109.675280pt;}
.y163{bottom:109.677600pt;}
.yad{bottom:109.678080pt;}
.y1b9{bottom:109.678560pt;}
.yc8{bottom:109.680480pt;}
.y21d{bottom:111.780000pt;}
.y1e5{bottom:115.108000pt;}
.y14e{bottom:116.480000pt;}
.y28{bottom:117.968000pt;}
.ye7{bottom:119.048000pt;}
.y1be{bottom:120.480000pt;}
.y85{bottom:122.622400pt;}
.y17e{bottom:122.631360pt;}
.y55{bottom:122.634800pt;}
.yac{bottom:122.637600pt;}
.y1b8{bottom:122.638080pt;}
.y202{bottom:126.344000pt;}
.yc7{bottom:126.640000pt;}
.y162{bottom:130.000000pt;}
.y1a5{bottom:131.468000pt;}
.y1b7{bottom:135.597600pt;}
.y1e4{bottom:136.948000pt;}
.yc6{bottom:136.960000pt;}
.y10e{bottom:138.508000pt;}
.y27{bottom:139.892000pt;}
.ye6{bottom:140.888000pt;}
.y236{bottom:140.900000pt;}
.y21c{bottom:140.904000pt;}
.y1bd{bottom:140.956000pt;}
.y161{bottom:141.037600pt;}
.y84{bottom:142.944800pt;}
.y17d{bottom:142.953760pt;}
.y54{bottom:142.957200pt;}
.yab{bottom:142.960000pt;}
.y261{bottom:145.920000pt;}
.y14d{bottom:151.516000pt;}
.y1a4{bottom:153.392000pt;}
.y83{bottom:153.989120pt;}
.y17c{bottom:153.998080pt;}
.y53{bottom:154.001520pt;}
.yaa{bottom:155.360000pt;}
.y201{bottom:155.468000pt;}
.y1b6{bottom:155.920000pt;}
.y1e3{bottom:158.872000pt;}
.y10d{bottom:160.348000pt;}
.y160{bottom:161.360000pt;}
.y26{bottom:161.732000pt;}
.ye5{bottom:162.812000pt;}
.y126{bottom:162.860000pt;}
.y174{bottom:162.876000pt;}
.y1bc{bottom:162.880000pt;}
.y82{bottom:166.948640pt;}
.y17b{bottom:166.957600pt;}
.y52{bottom:166.961040pt;}
.y1b5{bottom:168.320000pt;}
.y235{bottom:170.096000pt;}
.y21b{bottom:170.100000pt;}
.y14c{bottom:173.440000pt;}
.y15f{bottom:173.760000pt;}
.y260{bottom:175.040000pt;}
.y1a3{bottom:175.232000pt;}
.y25{bottom:178.448000pt;}
.y1e2{bottom:180.712000pt;}
.y10c{bottom:182.272000pt;}
.ye4{bottom:184.652000pt;}
.y200{bottom:184.664000pt;}
.y125{bottom:184.700000pt;}
.yc5{bottom:184.716000pt;}
.y1bb{bottom:184.720000pt;}
.y81{bottom:187.271040pt;}
.y17a{bottom:187.280000pt;}
.y51{bottom:187.283440pt;}
.y14b{bottom:195.216000pt;}
.ya9{bottom:195.276000pt;}
.y1a2{bottom:197.156000pt;}
.y80{bottom:198.315360pt;}
.y234{bottom:199.220000pt;}
.y21a{bottom:199.224000pt;}
.y15e{bottom:199.236000pt;}
.y179{bottom:199.680000pt;}
.y24{bottom:200.372000pt;}
.y1b4{bottom:201.752000pt;}
.y1e1{bottom:202.636000pt;}
.y10b{bottom:204.112000pt;}
.y25f{bottom:204.240000pt;}
.y50{bottom:205.680000pt;}
.ye3{bottom:206.576000pt;}
.y124{bottom:206.624000pt;}
.yc4{bottom:206.640000pt;}
.y7f{bottom:211.274880pt;}
.y1ff{bottom:213.860000pt;}
.y14a{bottom:217.140000pt;}
.ya8{bottom:217.200000pt;}
.y4f{bottom:218.080000pt;}
.y1a1{bottom:218.996000pt;}
.y15d{bottom:221.160000pt;}
.y23{bottom:222.296000pt;}
.y1b3{bottom:223.592000pt;}
.y7e{bottom:224.234400pt;}
.y1e0{bottom:224.476000pt;}
.y10a{bottom:226.036000pt;}
.ye2{bottom:228.416000pt;}
.y219{bottom:228.420000pt;}
.y123{bottom:228.464000pt;}
.y178{bottom:228.476000pt;}
.yc3{bottom:228.480000pt;}
.y25e{bottom:233.332000pt;}
.y7d{bottom:237.279040pt;}
.y149{bottom:238.980000pt;}
.ya7{bottom:239.040000pt;}
.y1a0{bottom:240.920000pt;}
.y1fe{bottom:242.984000pt;}
.y15c{bottom:243.000000pt;}
.y22{bottom:244.136000pt;}
.y1b2{bottom:245.516000pt;}
.y1df{bottom:246.316000pt;}
.y109{bottom:247.876000pt;}
.y7c{bottom:250.238560pt;}
.ye1{bottom:250.256000pt;}
.yc2{bottom:250.300000pt;}
.y122{bottom:250.304000pt;}
.y177{bottom:250.316000pt;}
.y4e{bottom:253.676000pt;}
.y25d{bottom:255.328000pt;}
.y233{bottom:257.612000pt;}
.y218{bottom:257.616000pt;}
.y148{bottom:260.904000pt;}
.ya6{bottom:260.952000pt;}
.y19f{bottom:262.760000pt;}
.y7b{bottom:263.198080pt;}
.y15b{bottom:264.924000pt;}
.y21{bottom:266.060000pt;}
.y1b1{bottom:267.356000pt;}
.y1de{bottom:268.240000pt;}
.y108{bottom:269.716000pt;}
.ye0{bottom:272.180000pt;}
.yc1{bottom:272.224000pt;}
.y121{bottom:272.228000pt;}
.y176{bottom:272.236000pt;}
.y4d{bottom:275.516000pt;}
.y7a{bottom:276.157600pt;}
.y25c{bottom:277.168000pt;}
.y147{bottom:282.744000pt;}
.ya5{bottom:282.792000pt;}
.y19e{bottom:284.684000pt;}
.y232{bottom:286.736000pt;}
.y217{bottom:286.740000pt;}
.y15a{bottom:286.764000pt;}
.y20{bottom:287.900000pt;}
.y1b0{bottom:289.280000pt;}
.y1dd{bottom:290.068000pt;}
.y107{bottom:291.640000pt;}
.ydf{bottom:294.020000pt;}
.yc0{bottom:294.064000pt;}
.y120{bottom:294.068000pt;}
.y175{bottom:294.076000pt;}
.y79{bottom:296.480000pt;}
.y4c{bottom:297.356000pt;}
.y25b{bottom:299.092000pt;}
.y1fd{bottom:301.304000pt;}
.y146{bottom:304.668000pt;}
.ya4{bottom:304.716000pt;}
.y19d{bottom:306.524000pt;}
.y159{bottom:308.688000pt;}
.y78{bottom:308.880000pt;}
.y1f{bottom:309.740000pt;}
.y1af{bottom:311.120000pt;}
.y1dc{bottom:311.992000pt;}
.y106{bottom:313.480000pt;}
.y231{bottom:315.932000pt;}
.y216{bottom:315.936000pt;}
.yde{bottom:315.944000pt;}
.ybf{bottom:315.988000pt;}
.y11f{bottom:315.992000pt;}
.y4b{bottom:319.280000pt;}
.y25a{bottom:320.932000pt;}
.y145{bottom:326.508000pt;}
.ya3{bottom:326.556000pt;}
.y19c{bottom:328.448000pt;}
.y1fc{bottom:330.500000pt;}
.y1e{bottom:331.664000pt;}
.y1ae{bottom:332.960000pt;}
.y1db{bottom:333.832000pt;}
.y105{bottom:335.404000pt;}
.y158{bottom:337.728000pt;}
.ydd{bottom:337.784000pt;}
.ybe{bottom:337.828000pt;}
.y77{bottom:337.832000pt;}
.y4a{bottom:341.120000pt;}
.y259{bottom:342.856000pt;}
.y230{bottom:345.056000pt;}
.y215{bottom:345.060000pt;}
.y144{bottom:348.432000pt;}
.ya2{bottom:348.480000pt;}
.y19b{bottom:350.288000pt;}
.y1d{bottom:353.504000pt;}
.y1ad{bottom:353.844320pt;}
.y1da{bottom:355.756000pt;}
.y104{bottom:357.244000pt;}
.y1fb{bottom:359.696000pt;}
.ydc{bottom:359.708000pt;}
.y157{bottom:359.724000pt;}
.ybd{bottom:359.752000pt;}
.y76{bottom:359.756000pt;}
.y49{bottom:363.032000pt;}
.y258{bottom:364.696000pt;}
.y143{bottom:370.272000pt;}
.ya1{bottom:370.320000pt;}
.y1ac{bottom:373.283600pt;}
.y22f{bottom:374.252000pt;}
.y214{bottom:374.256000pt;}
.y242{bottom:374.316000pt;}
.y1c{bottom:375.428000pt;}
.y1d9{bottom:377.596000pt;}
.y103{bottom:379.168000pt;}
.ydb{bottom:381.548000pt;}
.y156{bottom:381.564000pt;}
.ybc{bottom:381.592000pt;}
.y75{bottom:381.596000pt;}
.y48{bottom:384.872000pt;}
.y257{bottom:386.620000pt;}
.y19a{bottom:387.404000pt;}
.y1fa{bottom:388.820000pt;}
.y142{bottom:392.112000pt;}
.ya0{bottom:392.160000pt;}
.y1ab{bottom:392.722880pt;}
.y1b{bottom:397.268000pt;}
.y1d8{bottom:399.520000pt;}
.y102{bottom:401.008000pt;}
.y241{bottom:403.440000pt;}
.y22e{bottom:403.448000pt;}
.y213{bottom:403.452000pt;}
.yda{bottom:403.472000pt;}
.y155{bottom:403.488000pt;}
.ybb{bottom:403.516000pt;}
.y74{bottom:403.520000pt;}
.y47{bottom:406.796000pt;}
.y256{bottom:408.460000pt;}
.y1aa{bottom:412.162160pt;}
.y141{bottom:414.036000pt;}
.y9f{bottom:414.080000pt;}
.y1f9{bottom:418.016000pt;}
.y1a{bottom:419.192000pt;}
.y1d7{bottom:421.360000pt;}
.y101{bottom:422.932000pt;}
.yd9{bottom:425.312000pt;}
.y199{bottom:425.324000pt;}
.y154{bottom:425.328000pt;}
.y73{bottom:425.332000pt;}
.y173{bottom:425.352000pt;}
.yba{bottom:425.356000pt;}
.y11e{bottom:425.360000pt;}
.y46{bottom:428.636000pt;}
.y255{bottom:430.300000pt;}
.y1a9{bottom:431.601440pt;}
.y240{bottom:432.564000pt;}
.y22d{bottom:432.572000pt;}
.y212{bottom:432.576000pt;}
.y140{bottom:435.876000pt;}
.y9e{bottom:435.920000pt;}
.y19{bottom:441.032000pt;}
.y1d6{bottom:443.200000pt;}
.y100{bottom:444.772000pt;}
.y1f8{bottom:447.140000pt;}
.yd8{bottom:447.152000pt;}
.y198{bottom:447.164000pt;}
.y153{bottom:447.168000pt;}
.y72{bottom:447.172000pt;}
.y172{bottom:447.192000pt;}
.yb9{bottom:447.196000pt;}
.y11d{bottom:447.200000pt;}
.y45{bottom:450.560000pt;}
.y1a8{bottom:451.040720pt;}
.y254{bottom:452.224000pt;}
.y13f{bottom:457.800000pt;}
.y23f{bottom:461.760000pt;}
.y22c{bottom:461.768000pt;}
.y211{bottom:461.772000pt;}
.y18{bottom:462.956000pt;}
.y1d5{bottom:465.084000pt;}
.yff{bottom:466.696000pt;}
.y9d{bottom:469.008000pt;}
.yd7{bottom:469.076000pt;}
.y197{bottom:469.088000pt;}
.y152{bottom:469.092000pt;}
.y71{bottom:469.096000pt;}
.y11c{bottom:469.116000pt;}
.yb8{bottom:469.120000pt;}
.y1a7{bottom:470.480000pt;}
.y44{bottom:472.400000pt;}
.y253{bottom:474.064000pt;}
.y1f7{bottom:476.336000pt;}
.y13e{bottom:479.640000pt;}
.y17{bottom:484.796000pt;}
.y1d4{bottom:486.924000pt;}
.yfe{bottom:488.536000pt;}
.y23e{bottom:490.884000pt;}
.y22b{bottom:490.892000pt;}
.y210{bottom:490.896000pt;}
.yd6{bottom:490.916000pt;}
.y196{bottom:490.928000pt;}
.y9c{bottom:490.932000pt;}
.y70{bottom:490.936000pt;}
.yb7{bottom:490.948000pt;}
.y11b{bottom:490.956000pt;}
.y43{bottom:494.320000pt;}
.y252{bottom:495.988000pt;}
.y13d{bottom:501.564000pt;}
.y1f6{bottom:505.532000pt;}
.y16{bottom:506.636000pt;}
.y1d3{bottom:508.848000pt;}
.yfd{bottom:510.376000pt;}
.yd5{bottom:512.840000pt;}
.y195{bottom:512.852000pt;}
.y9b{bottom:512.856000pt;}
.y6f{bottom:512.860000pt;}
.yb6{bottom:512.872000pt;}
.y11a{bottom:512.880000pt;}
.y42{bottom:516.152000pt;}
.y251{bottom:517.828000pt;}
.y15{bottom:518.720000pt;}
.y23d{bottom:520.080000pt;}
.y22a{bottom:520.088000pt;}
.y20f{bottom:520.092000pt;}
.y13c{bottom:523.404000pt;}
.y1d2{bottom:530.688000pt;}
.yfc{bottom:532.300000pt;}
.y1f5{bottom:534.656000pt;}
.yd4{bottom:534.680000pt;}
.y194{bottom:534.692000pt;}
.y9a{bottom:534.696000pt;}
.y6e{bottom:534.700000pt;}
.yb5{bottom:534.712000pt;}
.y119{bottom:534.720000pt;}
.y41{bottom:537.992000pt;}
.y250{bottom:539.752000pt;}
.y14{bottom:541.760000pt;}
.y13b{bottom:545.328000pt;}
.y23c{bottom:549.276000pt;}
.y229{bottom:549.284000pt;}
.y20e{bottom:549.288000pt;}
.y1d1{bottom:552.612000pt;}
.yfb{bottom:554.140000pt;}
.yd3{bottom:556.604000pt;}
.y171{bottom:556.612000pt;}
.y193{bottom:556.616000pt;}
.y99{bottom:556.620000pt;}
.y6d{bottom:556.624000pt;}
.yb4{bottom:556.636000pt;}
.y13{bottom:558.560000pt;}
.y40{bottom:559.916000pt;}
.y24f{bottom:561.592000pt;}
.y1f4{bottom:563.852000pt;}
.y13a{bottom:567.168000pt;}
.y1d0{bottom:574.452000pt;}
.y12{bottom:575.276000pt;}
.yfa{bottom:576.064000pt;}
.y23b{bottom:578.400000pt;}
.y228{bottom:578.408000pt;}
.y20d{bottom:578.412000pt;}
.yd2{bottom:578.444000pt;}
.y170{bottom:578.452000pt;}
.y192{bottom:578.456000pt;}
.y98{bottom:578.460000pt;}
.y6c{bottom:578.464000pt;}
.yb3{bottom:578.476000pt;}
.y3f{bottom:581.756000pt;}
.y24e{bottom:583.516000pt;}
.y139{bottom:589.008000pt;}
.y11{bottom:592.640000pt;}
.y1f3{bottom:592.976000pt;}
.y1cf{bottom:596.376000pt;}
.yf9{bottom:597.904000pt;}
.yd1{bottom:600.368000pt;}
.y16f{bottom:600.376000pt;}
.y191{bottom:600.380000pt;}
.y97{bottom:600.384000pt;}
.y6b{bottom:600.388000pt;}
.yb2{bottom:600.400000pt;}
.y3e{bottom:603.672000pt;}
.y24d{bottom:605.356000pt;}
.y23a{bottom:607.596000pt;}
.y227{bottom:607.604000pt;}
.y20c{bottom:607.608000pt;}
.y10{bottom:608.640000pt;}
.y138{bottom:610.932000pt;}
.y1ce{bottom:618.216000pt;}
.yf8{bottom:619.828000pt;}
.y1f2{bottom:622.172000pt;}
.yd0{bottom:622.208000pt;}
.y16e{bottom:622.216000pt;}
.y190{bottom:622.220000pt;}
.y96{bottom:622.224000pt;}
.y6a{bottom:622.228000pt;}
.yb1{bottom:622.240000pt;}
.yf{bottom:623.196000pt;}
.y3d{bottom:625.512000pt;}
.y24c{bottom:627.196000pt;}
.y137{bottom:632.772000pt;}
.ye{bottom:635.280000pt;}
.y239{bottom:636.720000pt;}
.y226{bottom:636.728000pt;}
.y20b{bottom:636.732000pt;}
.y1cd{bottom:640.140000pt;}
.yf7{bottom:641.668000pt;}
.ycf{bottom:644.132000pt;}
.y16d{bottom:644.140000pt;}
.y18f{bottom:644.144000pt;}
.y95{bottom:644.148000pt;}
.y69{bottom:644.152000pt;}
.y3c{bottom:647.436000pt;}
.y24b{bottom:649.120000pt;}
.y1f1{bottom:651.368000pt;}
.y136{bottom:654.696000pt;}
.yd{bottom:656.474400pt;}
.y1cc{bottom:661.980000pt;}
.yf6{bottom:663.592000pt;}
.y238{bottom:665.920000pt;}
.y225{bottom:665.924000pt;}
.y20a{bottom:665.928000pt;}
.yce{bottom:665.972000pt;}
.y16c{bottom:665.980000pt;}
.y18e{bottom:665.984000pt;}
.y94{bottom:665.988000pt;}
.y68{bottom:665.992000pt;}
.y3b{bottom:669.276000pt;}
.y24a{bottom:670.960000pt;}
.yc{bottom:672.640000pt;}
.y135{bottom:676.536000pt;}
.y1f0{bottom:680.492000pt;}
.y1cb{bottom:683.820000pt;}
.yf5{bottom:685.432000pt;}
.ycd{bottom:687.812000pt;}
.y16b{bottom:687.820000pt;}
.y18d{bottom:687.824000pt;}
.y93{bottom:687.828000pt;}
.y67{bottom:687.832000pt;}
.yb{bottom:688.880000pt;}
.y3a{bottom:691.200000pt;}
.y249{bottom:692.876000pt;}
.y224{bottom:695.120000pt;}
.y209{bottom:695.124000pt;}
.y134{bottom:698.460000pt;}
.y1ca{bottom:705.744000pt;}
.yf4{bottom:707.272000pt;}
.y1ef{bottom:709.688000pt;}
.ycc{bottom:709.736000pt;}
.y16a{bottom:709.744000pt;}
.y18c{bottom:709.748000pt;}
.y92{bottom:709.752000pt;}
.y66{bottom:709.756000pt;}
.y39{bottom:713.040000pt;}
.ya{bottom:713.120000pt;}
.y248{bottom:714.716000pt;}
.y133{bottom:720.300000pt;}
.y237{bottom:724.240000pt;}
.y223{bottom:724.244000pt;}
.y208{bottom:724.248000pt;}
.y9{bottom:726.560000pt;}
.y1c9{bottom:727.584000pt;}
.yf3{bottom:729.196000pt;}
.ycb{bottom:731.576000pt;}
.y169{bottom:731.584000pt;}
.y18b{bottom:731.588000pt;}
.y91{bottom:731.592000pt;}
.y65{bottom:731.596000pt;}
.y38{bottom:734.868000pt;}
.y247{bottom:736.640000pt;}
.y1ee{bottom:738.812000pt;}
.y132{bottom:742.224000pt;}
.y1c8{bottom:749.508000pt;}
.yf2{bottom:751.036000pt;}
.y222{bottom:753.436000pt;}
.y207{bottom:753.444000pt;}
.yca{bottom:753.500000pt;}
.y168{bottom:753.508000pt;}
.y18a{bottom:753.512000pt;}
.y90{bottom:753.516000pt;}
.y64{bottom:753.520000pt;}
.y37{bottom:756.792000pt;}
.y246{bottom:758.480000pt;}
.y131{bottom:764.064000pt;}
.y8{bottom:766.371600pt;}
.y1ed{bottom:768.008000pt;}
.y1c7{bottom:771.348000pt;}
.yf1{bottom:772.960000pt;}
.yb0{bottom:775.340000pt;}
.y118{bottom:775.344000pt;}
.y167{bottom:775.348000pt;}
.y63{bottom:775.352000pt;}
.y8f{bottom:775.356000pt;}
.y36{bottom:778.632000pt;}
.y221{bottom:782.560000pt;}
.y206{bottom:782.568000pt;}
.y7{bottom:782.617360pt;}
.y245{bottom:785.120000pt;}
.y130{bottom:785.988000pt;}
.y1c6{bottom:793.272000pt;}
.yf0{bottom:793.765040pt;}
.y1ec{bottom:797.204000pt;}
.yaf{bottom:797.264000pt;}
.y117{bottom:797.268000pt;}
.y166{bottom:797.272000pt;}
.y62{bottom:797.276000pt;}
.y8e{bottom:797.280000pt;}
.y6{bottom:798.863120pt;}
.y35{bottom:800.556000pt;}
.y12f{bottom:807.828000pt;}
.y220{bottom:811.760000pt;}
.y205{bottom:811.764000pt;}
.yef{bottom:813.204320pt;}
.y5{bottom:815.028720pt;}
.y1c5{bottom:815.112000pt;}
.y8d{bottom:819.104000pt;}
.y116{bottom:819.108000pt;}
.y165{bottom:819.112000pt;}
.y61{bottom:819.116000pt;}
.y34{bottom:822.396000pt;}
.y1eb{bottom:826.328000pt;}
.y12e{bottom:829.668000pt;}
.y4{bottom:831.274480pt;}
.yee{bottom:832.643600pt;}
.y1c4{bottom:837.036000pt;}
.y21f{bottom:840.956000pt;}
.y204{bottom:840.960000pt;}
.y8c{bottom:841.028000pt;}
.y115{bottom:841.032000pt;}
.y151{bottom:841.036000pt;}
.y60{bottom:841.040000pt;}
.y33{bottom:844.320000pt;}
.y3{bottom:847.440080pt;}
.y12d{bottom:851.592000pt;}
.yed{bottom:852.082880pt;}
.y1ea{bottom:855.524000pt;}
.y1c3{bottom:858.876000pt;}
.y189{bottom:861.840000pt;}
.y8b{bottom:862.868000pt;}
.y114{bottom:862.872000pt;}
.y150{bottom:862.876000pt;}
.y5f{bottom:862.880000pt;}
.y32{bottom:866.160000pt;}
.y21e{bottom:870.080000pt;}
.y203{bottom:870.084000pt;}
.yec{bottom:871.522160pt;}
.y12c{bottom:873.432000pt;}
.y1c2{bottom:880.716000pt;}
.y188{bottom:881.285040pt;}
.y2{bottom:882.162720pt;}
.y1e9{bottom:884.648000pt;}
.y8a{bottom:884.708000pt;}
.y113{bottom:884.712000pt;}
.y5e{bottom:884.716000pt;}
.yeb{bottom:890.961440pt;}
.y1{bottom:894.160000pt;}
.y12b{bottom:895.356000pt;}
.y31{bottom:899.280000pt;}
.y187{bottom:900.724320pt;}
.y1c1{bottom:902.640000pt;}
.y89{bottom:906.632000pt;}
.y112{bottom:906.636000pt;}
.y5d{bottom:906.640000pt;}
.yea{bottom:910.400720pt;}
.y1e8{bottom:913.844000pt;}
.y12a{bottom:917.196000pt;}
.y186{bottom:920.163600pt;}
.y1c0{bottom:924.480000pt;}
.y30{bottom:928.404000pt;}
.y88{bottom:928.472000pt;}
.y111{bottom:928.476000pt;}
.y5c{bottom:928.480000pt;}
.ye9{bottom:929.840000pt;}
.y129{bottom:939.120000pt;}
.y185{bottom:939.602880pt;}
.y1e7{bottom:943.040000pt;}
.y5b{bottom:950.396000pt;}
.y110{bottom:950.400000pt;}
.y2f{bottom:957.600000pt;}
.y184{bottom:959.042160pt;}
.y128{bottom:960.960000pt;}
.y1e6{bottom:972.164000pt;}
.y5a{bottom:972.236000pt;}
.y10f{bottom:972.240000pt;}
.y183{bottom:978.481440pt;}
.y127{bottom:982.884000pt;}
.y2e{bottom:986.796000pt;}
.y244{bottom:986.800000pt;}
.y59{bottom:994.160000pt;}
.y182{bottom:997.920720pt;}
.y243{bottom:1001.444000pt;}
.y2d{bottom:1015.920000pt;}
.y58{bottom:1016.000000pt;}
.y181{bottom:1017.360000pt;}
.y2a{bottom:1042.160000pt;}
.y29{bottom:1060.560000pt;}
.h10{height:29.411520pt;}
.ha{height:41.770312pt;}
.hb{height:45.411520pt;}
.h14{height:46.135040pt;}
.h5{height:51.216000pt;}
.hc{height:51.232000pt;}
.h9{height:51.248000pt;}
.h8{height:51.264000pt;}
.he{height:51.280000pt;}
.hf{height:51.296000pt;}
.hd{height:51.328000pt;}
.h13{height:51.440000pt;}
.h11{height:51.472000pt;}
.h6{height:52.032000pt;}
.h2{height:53.857500pt;}
.h3{height:57.020480pt;}
.h15{height:57.024320pt;}
.h12{height:57.028160pt;}
.h4{height:57.928960pt;}
.h7{height:62.812500pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:113.437600pt;}
.x6{left:115.107600pt;}
.x1f{left:119.444000pt;}
.x4{left:122.709440pt;}
.x7{left:125.341360pt;}
.x5{left:126.864400pt;}
.xc{left:129.280000pt;}
.x13{left:132.412000pt;}
.x3{left:135.521680pt;}
.x16{left:151.280000pt;}
.x14{left:160.720000pt;}
.x17{left:202.080000pt;}
.x20{left:222.008000pt;}
.x18{left:228.652000pt;}
.xa{left:258.400000pt;}
.x15{left:299.920000pt;}
.xb{left:320.160000pt;}
.x10{left:327.840000pt;}
.x12{left:335.448000pt;}
.x11{left:348.804000pt;}
.xd{left:350.080720pt;}
.x1c{left:358.240000pt;}
.x1a{left:361.600000pt;}
.x8{left:374.705760pt;}
.x1d{left:396.880000pt;}
.x1b{left:401.608000pt;}
.x1e{left:531.920000pt;}
.x1{left:595.600000pt;}
.x9{left:656.000000pt;}
.x19{left:665.120000pt;}
.xf{left:672.800000pt;}
.xe{left:680.400000pt;}
}




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