
    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_02c290b2fd079fe85cedf4dd.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.093262;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_3d2be8a836a586f8049ba10f.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.900391;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_19d49f80d8148f549963fc30.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.095703;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);}
.v1{vertical-align:-19.800000px;}
.v3{vertical-align:-13.350000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:19.800000px;}
.ls1f{letter-spacing:-2.226000px;}
.lsc{letter-spacing:-0.750000px;}
.ls52{letter-spacing:-0.582000px;}
.ls60{letter-spacing:-0.564000px;}
.ls33{letter-spacing:-0.546000px;}
.lsb{letter-spacing:-0.528000px;}
.ls18{letter-spacing:-0.492000px;}
.ls5c{letter-spacing:-0.486000px;}
.ls9{letter-spacing:-0.480000px;}
.ls12{letter-spacing:-0.474000px;}
.ls19{letter-spacing:-0.456000px;}
.ls5f{letter-spacing:-0.450000px;}
.ls2c{letter-spacing:-0.444000px;}
.ls35{letter-spacing:-0.426000px;}
.ls48{letter-spacing:-0.390000px;}
.ls4e{letter-spacing:-0.372000px;}
.ls56{letter-spacing:-0.360000px;}
.ls17{letter-spacing:-0.354000px;}
.ls8{letter-spacing:-0.348000px;}
.ls32{letter-spacing:-0.342000px;}
.ls36{letter-spacing:-0.336000px;}
.ls3f{letter-spacing:-0.330000px;}
.ls55{letter-spacing:-0.312000px;}
.ls53{letter-spacing:-0.300000px;}
.ls4f{letter-spacing:-0.294000px;}
.ls2e{letter-spacing:-0.276000px;}
.ls23{letter-spacing:-0.252000px;}
.ls45{letter-spacing:-0.234000px;}
.ls30{letter-spacing:-0.228000px;}
.ls16{letter-spacing:-0.216000px;}
.ls13{letter-spacing:-0.210000px;}
.ls51{letter-spacing:-0.192000px;}
.ls47{letter-spacing:-0.186000px;}
.ls5d{letter-spacing:-0.156000px;}
.ls5b{letter-spacing:-0.150000px;}
.ls2d{letter-spacing:-0.144000px;}
.ls63{letter-spacing:-0.138000px;}
.ls11{letter-spacing:-0.132000px;}
.ls21{letter-spacing:-0.120000px;}
.lsa{letter-spacing:-0.114000px;}
.ls3d{letter-spacing:-0.102000px;}
.ls22{letter-spacing:-0.090000px;}
.ls57{letter-spacing:-0.084000px;}
.ls49{letter-spacing:-0.078000px;}
.ls20{letter-spacing:-0.060000px;}
.ls31{letter-spacing:-0.030000px;}
.ls15{letter-spacing:-0.024000px;}
.ls54{letter-spacing:-0.018000px;}
.ls64{letter-spacing:-0.012000px;}
.ls5e{letter-spacing:-0.006000px;}
.ls6{letter-spacing:0.000000px;}
.ls2a{letter-spacing:0.000600px;}
.ls62{letter-spacing:0.006000px;}
.ls29{letter-spacing:0.009600px;}
.ls14{letter-spacing:0.018000px;}
.ls4c{letter-spacing:0.024000px;}
.ls4d{letter-spacing:0.030000px;}
.lsf{letter-spacing:0.036000px;}
.ls27{letter-spacing:0.042000px;}
.ls2f{letter-spacing:0.043200px;}
.ls37{letter-spacing:0.048000px;}
.ls42{letter-spacing:0.060000px;}
.ls28{letter-spacing:0.072000px;}
.ls1a{letter-spacing:0.078000px;}
.ls4a{letter-spacing:0.096000px;}
.ls7{letter-spacing:0.108000px;}
.ls3a{letter-spacing:0.114000px;}
.ls58{letter-spacing:0.126000px;}
.ls41{letter-spacing:0.132000px;}
.ls4{letter-spacing:0.138000px;}
.ls5{letter-spacing:0.150000px;}
.ls50{letter-spacing:0.156000px;}
.ls46{letter-spacing:0.180000px;}
.ls3e{letter-spacing:0.204000px;}
.ls5a{letter-spacing:0.234000px;}
.ls43{letter-spacing:0.240000px;}
.ls59{letter-spacing:0.258000px;}
.ls3b{letter-spacing:0.282000px;}
.ls1b{letter-spacing:0.300000px;}
.ls40{letter-spacing:0.307800px;}
.lsd{letter-spacing:0.312000px;}
.ls34{letter-spacing:0.360000px;}
.ls24{letter-spacing:0.378000px;}
.ls3c{letter-spacing:0.384000px;}
.ls10{letter-spacing:0.396000px;}
.ls61{letter-spacing:0.444000px;}
.ls2b{letter-spacing:0.450000px;}
.ls1e{letter-spacing:0.491400px;}
.ls44{letter-spacing:0.498000px;}
.ls4b{letter-spacing:0.534000px;}
.ls39{letter-spacing:0.582000px;}
.lse{letter-spacing:0.600000px;}
.ls1c{letter-spacing:0.708000px;}
.ls26{letter-spacing:0.810000px;}
.ls1d{letter-spacing:0.900000px;}
.ls38{letter-spacing:1.050000px;}
.ls25{letter-spacing:1.301400px;}
.ls1{letter-spacing:2.500200px;}
.ls2{letter-spacing:2.501400px;}
.ls0{letter-spacing:2.502000px;}
.ls3{letter-spacing:12.000000px;}
.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;}
}
.ws76{word-spacing:-15.600000px;}
.ws75{word-spacing:-15.384000px;}
.ws73{word-spacing:-15.282000px;}
.ws72{word-spacing:-15.114000px;}
.wsc4{word-spacing:-15.096000px;}
.ws12{word-spacing:-15.036000px;}
.ws36{word-spacing:-15.000000px;}
.ws35{word-spacing:-14.910000px;}
.ws10b{word-spacing:-14.862000px;}
.ws44{word-spacing:-9.043200px;}
.ws0{word-spacing:-9.000000px;}
.ws2{word-spacing:-3.974400px;}
.wsf0{word-spacing:-2.244000px;}
.wsa8{word-spacing:-2.238000px;}
.wsd6{word-spacing:-2.232000px;}
.ws27{word-spacing:-2.226000px;}
.ws61{word-spacing:-2.220000px;}
.ws110{word-spacing:-2.208000px;}
.ws6d{word-spacing:-2.202000px;}
.ws38{word-spacing:-2.190000px;}
.wsc2{word-spacing:-2.172000px;}
.wsdf{word-spacing:-2.166000px;}
.ws88{word-spacing:-2.160000px;}
.ws84{word-spacing:-2.148000px;}
.wsc{word-spacing:-2.136000px;}
.wsd1{word-spacing:-2.124000px;}
.ws16{word-spacing:-2.118000px;}
.ws10e{word-spacing:-2.112000px;}
.wsa{word-spacing:-2.106000px;}
.wsc5{word-spacing:-2.094000px;}
.wsaf{word-spacing:-2.064000px;}
.ws97{word-spacing:-2.058000px;}
.ws24{word-spacing:-2.040000px;}
.ws2a{word-spacing:-2.034000px;}
.wsd8{word-spacing:-2.028000px;}
.ws5d{word-spacing:-2.022000px;}
.wsa0{word-spacing:-2.016000px;}
.ws66{word-spacing:-1.998000px;}
.ws52{word-spacing:-1.974000px;}
.wscf{word-spacing:-1.956000px;}
.wsd5{word-spacing:-1.950000px;}
.wsdc{word-spacing:-1.938000px;}
.ws23{word-spacing:-1.926000px;}
.ws86{word-spacing:-1.920000px;}
.ws6f{word-spacing:-1.914000px;}
.ws64{word-spacing:-1.908000px;}
.ws8{word-spacing:-1.902000px;}
.ws2b{word-spacing:-1.896000px;}
.wsdd{word-spacing:-1.890000px;}
.wsc8{word-spacing:-1.878000px;}
.ws3e{word-spacing:-1.860000px;}
.ws78{word-spacing:-1.848000px;}
.ws3a{word-spacing:-1.830000px;}
.ws6c{word-spacing:-1.824000px;}
.ws100{word-spacing:-1.818000px;}
.ws115{word-spacing:-1.809000px;}
.ws4f{word-spacing:-1.806000px;}
.wsfa{word-spacing:-1.800000px;}
.ws34{word-spacing:-1.794000px;}
.ws19{word-spacing:-1.776000px;}
.wsb{word-spacing:-1.770000px;}
.ws5b{word-spacing:-1.764000px;}
.ws2c{word-spacing:-1.758000px;}
.ws10{word-spacing:-1.734000px;}
.wse{word-spacing:-1.722000px;}
.ws80{word-spacing:-1.716000px;}
.ws67{word-spacing:-1.704000px;}
.ws40{word-spacing:-1.698000px;}
.ws108{word-spacing:-1.686000px;}
.ws28{word-spacing:-1.668000px;}
.ws6a{word-spacing:-1.662000px;}
.ws4e{word-spacing:-1.656000px;}
.ws58{word-spacing:-1.650000px;}
.ws4c{word-spacing:-1.644000px;}
.wsfc{word-spacing:-1.638000px;}
.wsf6{word-spacing:-1.584000px;}
.wsca{word-spacing:-1.494000px;}
.ws93{word-spacing:-1.464000px;}
.wsce{word-spacing:-1.458000px;}
.wsec{word-spacing:-1.440000px;}
.ws112{word-spacing:-1.380000px;}
.wsb1{word-spacing:-1.332000px;}
.ws9b{word-spacing:-1.306800px;}
.ws5e{word-spacing:-1.248000px;}
.ws101{word-spacing:-1.242000px;}
.ws8b{word-spacing:-1.206000px;}
.wsb9{word-spacing:-1.164000px;}
.wse2{word-spacing:-1.128000px;}
.ws6e{word-spacing:-1.122000px;}
.ws77{word-spacing:-1.098000px;}
.wse4{word-spacing:-1.086000px;}
.wsf5{word-spacing:-1.026000px;}
.wsac{word-spacing:-1.020000px;}
.ws98{word-spacing:-1.008000px;}
.wsad{word-spacing:-0.996000px;}
.ws8c{word-spacing:-0.972000px;}
.ws13{word-spacing:-0.948000px;}
.ws32{word-spacing:-0.936000px;}
.wsb8{word-spacing:-0.900000px;}
.wsc0{word-spacing:-0.852000px;}
.wsa2{word-spacing:-0.840000px;}
.ws5c{word-spacing:-0.810000px;}
.ws70{word-spacing:-0.804000px;}
.ws4d{word-spacing:-0.738000px;}
.ws51{word-spacing:-0.672000px;}
.ws68{word-spacing:-0.636000px;}
.wsd4{word-spacing:-0.600000px;}
.ws109{word-spacing:-0.522000px;}
.wsfe{word-spacing:-0.486000px;}
.ws10f{word-spacing:-0.474000px;}
.ws79{word-spacing:-0.468000px;}
.ws42{word-spacing:-0.456000px;}
.ws56{word-spacing:-0.426000px;}
.ws92{word-spacing:-0.378000px;}
.wsc1{word-spacing:-0.330000px;}
.ws5a{word-spacing:-0.306000px;}
.ws90{word-spacing:-0.288000px;}
.ws99{word-spacing:-0.186000px;}
.ws104{word-spacing:-0.156000px;}
.wsa3{word-spacing:-0.126000px;}
.wsee{word-spacing:-0.108000px;}
.ws3b{word-spacing:-0.072000px;}
.ws10a{word-spacing:-0.066000px;}
.ws89{word-spacing:-0.060000px;}
.wse8{word-spacing:-0.036000px;}
.ws1{word-spacing:0.000000px;}
.wsc7{word-spacing:0.006000px;}
.wseb{word-spacing:0.024000px;}
.wsf4{word-spacing:0.054000px;}
.ws103{word-spacing:0.078000px;}
.wsff{word-spacing:0.090000px;}
.wsed{word-spacing:0.126000px;}
.ws1e{word-spacing:0.144000px;}
.ws10c{word-spacing:0.168000px;}
.ws20{word-spacing:0.210000px;}
.ws8d{word-spacing:0.216000px;}
.ws113{word-spacing:0.240000px;}
.wsf2{word-spacing:0.246000px;}
.wsab{word-spacing:0.258000px;}
.ws102{word-spacing:0.366000px;}
.ws50{word-spacing:0.414000px;}
.ws105{word-spacing:0.468000px;}
.ws5f{word-spacing:0.480000px;}
.ws1a{word-spacing:0.516000px;}
.wsa7{word-spacing:0.558000px;}
.wsc3{word-spacing:0.564000px;}
.ws21{word-spacing:0.582000px;}
.ws2d{word-spacing:0.618000px;}
.wse1{word-spacing:0.624000px;}
.wse7{word-spacing:0.642000px;}
.wsbe{word-spacing:0.654000px;}
.wsbd{word-spacing:0.660000px;}
.ws7a{word-spacing:0.672000px;}
.ws81{word-spacing:0.684000px;}
.wsf8{word-spacing:0.708000px;}
.ws82{word-spacing:0.744000px;}
.ws25{word-spacing:0.846000px;}
.wsde{word-spacing:0.912000px;}
.ws7d{word-spacing:0.924000px;}
.wsd3{word-spacing:0.936000px;}
.wsa1{word-spacing:0.972000px;}
.wsb7{word-spacing:1.026000px;}
.wsb2{word-spacing:1.038000px;}
.ws106{word-spacing:1.044000px;}
.ws7{word-spacing:1.068000px;}
.ws15{word-spacing:1.080000px;}
.ws2e{word-spacing:1.098000px;}
.wse6{word-spacing:1.140000px;}
.wsdb{word-spacing:1.236000px;}
.ws1c{word-spacing:1.248000px;}
.ws71{word-spacing:1.404000px;}
.wsb4{word-spacing:1.416000px;}
.ws1b{word-spacing:1.422000px;}
.wsda{word-spacing:1.440000px;}
.wse5{word-spacing:1.464000px;}
.ws107{word-spacing:1.470000px;}
.ws9d{word-spacing:1.512000px;}
.ws1f{word-spacing:1.536000px;}
.ws87{word-spacing:1.614000px;}
.ws31{word-spacing:1.704000px;}
.ws63{word-spacing:1.722000px;}
.wsa9{word-spacing:1.734000px;}
.wsef{word-spacing:1.758000px;}
.wscd{word-spacing:1.770000px;}
.ws11{word-spacing:1.776000px;}
.wsa5{word-spacing:1.788000px;}
.ws7f{word-spacing:1.890000px;}
.ws10d{word-spacing:1.902000px;}
.ws17{word-spacing:1.914000px;}
.ws59{word-spacing:1.926000px;}
.ws22{word-spacing:2.064000px;}
.ws65{word-spacing:2.106000px;}
.ws39{word-spacing:2.124000px;}
.wsbb{word-spacing:2.154000px;}
.ws6b{word-spacing:2.196000px;}
.wscc{word-spacing:2.202000px;}
.wsaa{word-spacing:2.220000px;}
.wsfb{word-spacing:2.256000px;}
.ws9{word-spacing:2.274000px;}
.wsf1{word-spacing:2.388000px;}
.ws8e{word-spacing:2.478000px;}
.ws55{word-spacing:2.622000px;}
.ws7e{word-spacing:2.688000px;}
.ws111{word-spacing:2.700000px;}
.ws1d{word-spacing:2.832000px;}
.ws43{word-spacing:2.883600px;}
.ws8f{word-spacing:2.886000px;}
.wse0{word-spacing:2.916000px;}
.wsf{word-spacing:3.042000px;}
.ws9a{word-spacing:3.067200px;}
.wsc9{word-spacing:3.084000px;}
.ws4{word-spacing:3.168000px;}
.wsd0{word-spacing:3.192000px;}
.wsc6{word-spacing:3.216000px;}
.wsb6{word-spacing:3.234000px;}
.ws9e{word-spacing:3.246000px;}
.wsba{word-spacing:3.252000px;}
.wsb3{word-spacing:3.264000px;}
.wsbc{word-spacing:3.300000px;}
.ws5{word-spacing:3.336000px;}
.ws3c{word-spacing:3.342000px;}
.ws30{word-spacing:3.354000px;}
.ws95{word-spacing:3.366000px;}
.ws96{word-spacing:3.372000px;}
.ws69{word-spacing:3.390000px;}
.ws74{word-spacing:3.414000px;}
.ws18{word-spacing:3.438000px;}
.ws94{word-spacing:3.468000px;}
.ws14{word-spacing:3.474000px;}
.ws33{word-spacing:3.480000px;}
.wsea{word-spacing:3.492000px;}
.wsb0{word-spacing:3.510000px;}
.wsf7{word-spacing:3.516000px;}
.ws85{word-spacing:3.546000px;}
.wsa4{word-spacing:3.570000px;}
.ws4a{word-spacing:3.582000px;}
.wsd2{word-spacing:3.594000px;}
.wsd{word-spacing:3.600000px;}
.wsf9{word-spacing:3.606000px;}
.ws3{word-spacing:3.612000px;}
.ws8a{word-spacing:3.618000px;}
.wse9{word-spacing:3.624000px;}
.ws9c{word-spacing:3.630000px;}
.ws91{word-spacing:3.636000px;}
.ws6{word-spacing:3.642000px;}
.wscb{word-spacing:3.654000px;}
.ws37{word-spacing:3.672000px;}
.ws57{word-spacing:3.678000px;}
.wsd7{word-spacing:3.684000px;}
.wsa6{word-spacing:3.690000px;}
.wsfd{word-spacing:3.696000px;}
.wsae{word-spacing:3.702000px;}
.ws54{word-spacing:3.708000px;}
.ws2f{word-spacing:3.714000px;}
.wsd9{word-spacing:3.720000px;}
.ws26{word-spacing:3.732000px;}
.ws62{word-spacing:3.750000px;}
.ws49{word-spacing:4.234200px;}
.ws48{word-spacing:4.235400px;}
.ws45{word-spacing:4.350000px;}
.wse3{word-spacing:4.548000px;}
.ws53{word-spacing:4.890000px;}
.ws7c{word-spacing:5.004000px;}
.ws60{word-spacing:5.250000px;}
.ws46{word-spacing:5.697000px;}
.ws47{word-spacing:5.697600px;}
.wsb5{word-spacing:6.474000px;}
.ws29{word-spacing:6.666000px;}
.ws3d{word-spacing:7.254000px;}
.ws41{word-spacing:7.296000px;}
.wsf3{word-spacing:8.850000px;}
.ws4b{word-spacing:10.134000px;}
.ws9f{word-spacing:10.482000px;}
.wsbf{word-spacing:10.548000px;}
.ws3f{word-spacing:11.730000px;}
.ws83{word-spacing:12.336000px;}
.ws7b{word-spacing:26.346000px;}
.ws118{word-spacing:1064.652000px;}
.ws114{word-spacing:1115.448000px;}
.ws117{word-spacing:1132.458000px;}
.ws116{word-spacing:1148.604000px;}
.ws119{word-spacing:1159.008000px;}
.ws11a{word-spacing:1175.688000px;}
._a{margin-left:-18.750000px;}
._8{margin-left:-13.440000px;}
._5{margin-left:-8.724000px;}
._6{margin-left:-6.648000px;}
._4{margin-left:-5.508000px;}
._1{margin-left:-3.974400px;}
._0{margin-left:-2.671200px;}
._3{margin-left:-1.303200px;}
._9{width:1.067400px;}
._2{width:2.671200px;}
._b{width:3.733200px;}
._d{width:8.974800px;}
._7{width:10.134000px;}
._e{width:12.025800px;}
._3f{width:13.932000px;}
._c{width:15.897600px;}
._6d{width:55.473600px;}
._58{width:68.245200px;}
._77{width:177.192000px;}
._23{width:235.003200px;}
._53{width:283.848000px;}
._47{width:302.708400px;}
._15{width:319.777200px;}
._68{width:327.432000px;}
._59{width:333.535200px;}
._50{width:336.649200px;}
._1e{width:345.703200px;}
._4c{width:359.989200px;}
._66{width:394.218000px;}
._6a{width:400.884000px;}
._65{width:404.178000px;}
._3d{width:420.528000px;}
._40{width:439.879200px;}
._75{width:449.875200px;}
._64{width:451.466400px;}
._6e{width:464.106000px;}
._5d{width:467.142000px;}
._61{width:470.892000px;}
._39{width:483.828000px;}
._43{width:489.925200px;}
._49{width:493.908000px;}
._14{width:497.109600px;}
._46{width:500.508000px;}
._28{width:509.899200px;}
._25{width:513.954000px;}
._56{width:515.550000px;}
._2b{width:525.812400px;}
._2d{width:533.808000px;}
._79{width:537.102000px;}
._29{width:540.594000px;}
._41{width:543.828000px;}
._7c{width:547.122000px;}
._42{width:557.196000px;}
._6f{width:559.807200px;}
._69{width:560.832000px;}
._2c{width:561.841200px;}
._7b{width:569.821200px;}
._48{width:573.199200px;}
._11{width:581.749200px;}
._72{width:586.531200px;}
._52{width:587.684400px;}
._4a{width:589.801200px;}
._32{width:593.724000px;}
._67{width:596.737200px;}
._7a{width:600.384000px;}
._4d{width:603.768000px;}
._33{width:606.343200px;}
._35{width:609.787200px;}
._5a{width:617.148000px;}
._2e{width:623.122800px;}
._24{width:624.392400px;}
._1d{width:630.468000px;}
._57{width:632.628000px;}
._27{width:633.888000px;}
._20{width:637.194000px;}
._2f{width:639.152400px;}
._21{width:640.374000px;}
._3e{width:643.093200px;}
._62{width:644.232000px;}
._13{width:647.142000px;}
._12{width:650.508000px;}
._18{width:653.748000px;}
._1c{width:656.437200px;}
._4e{width:660.528000px;}
._22{width:663.768000px;}
._4b{width:667.128000px;}
._4f{width:670.488000px;}
._3a{width:672.150000px;}
._17{width:677.208000px;}
._31{width:680.508000px;}
._5e{width:683.748000px;}
._5b{width:684.876000px;}
._16{width:690.528000px;}
._6c{width:694.092000px;}
._44{width:696.499200px;}
._1b{width:699.883200px;}
._1f{width:707.091600px;}
._45{width:709.819200px;}
._30{width:713.808000px;}
._5f{width:716.407200px;}
._78{width:718.728000px;}
._3b{width:721.226400px;}
._2a{width:727.188000px;}
._19{width:732.474000px;}
._26{width:733.848000px;}
._74{width:737.214000px;}
._38{width:739.124400px;}
._55{width:747.288000px;}
._63{width:751.412400px;}
._73{width:753.708000px;}
._34{width:760.548000px;}
._10{width:766.357200px;}
._54{width:780.468000px;}
._36{width:782.983200px;}
._71{width:785.448000px;}
._51{width:787.062000px;}
._76{width:793.686000px;}
._5c{width:800.448000px;}
._f{width:803.682000px;}
._1a{width:813.115200px;}
._7d{width:827.142000px;}
._6b{width:830.778000px;}
._60{width:854.052000px;}
._3c{width:873.768000px;}
._70{width:875.744400px;}
._37{width:896.946000px;}
.fc0{color:rgb(35,31,32);}
.fs3{font-size:28.800000px;}
.fs2{font-size:36.000000px;}
.fs4{font-size:48.000000px;}
.fs5{font-size:54.000000px;}
.fs0{font-size:60.000000px;}
.fs1{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:49.127250px;}
.y114{bottom:92.508750px;}
.y50{bottom:92.516250px;}
.y16a{bottom:92.519250px;}
.y5e{bottom:92.528250px;}
.y1ad{bottom:92.528700px;}
.y207{bottom:92.530350px;}
.y8d{bottom:92.531400px;}
.y13f{bottom:92.538750px;}
.y231{bottom:92.544300px;}
.yb8{bottom:92.549250px;}
.y1da{bottom:92.549700px;}
.ybb{bottom:94.592250px;}
.y25d{bottom:109.518150px;}
.y113{bottom:110.220750px;}
.ye8{bottom:110.246250px;}
.y206{bottom:110.507850px;}
.y1ac{bottom:110.561700px;}
.y5d{bottom:110.565750px;}
.y4f{bottom:110.619750px;}
.y8c{bottom:110.628900px;}
.y13e{bottom:110.787750px;}
.y230{bottom:110.929800px;}
.y1d9{bottom:110.935200px;}
.yb7{bottom:111.048750px;}
.yba{bottom:111.091950px;}
.y169{bottom:111.188250px;}
.y25c{bottom:127.518150px;}
.yb9{bottom:127.591650px;}
.y112{bottom:127.932750px;}
.ye7{bottom:127.964250px;}
.y205{bottom:128.485350px;}
.y5c{bottom:128.603250px;}
.y4e{bottom:128.723250px;}
.y8b{bottom:128.726400px;}
.y22f{bottom:129.315300px;}
.y1d8{bottom:129.320700px;}
.yb6{bottom:129.548250px;}
.y13d{bottom:131.163750px;}
.y168{bottom:131.982750px;}
.y1ab{bottom:139.649700px;}
.y25b{bottom:145.518150px;}
.y111{bottom:145.644750px;}
.ye6{bottom:145.682250px;}
.y204{bottom:146.462850px;}
.y5b{bottom:146.640750px;}
.y8a{bottom:146.823900px;}
.y4d{bottom:146.826750px;}
.y24{bottom:147.302250px;}
.y22e{bottom:147.700800px;}
.y1d7{bottom:147.706200px;}
.yb5{bottom:148.049250px;}
.y13c{bottom:149.412750px;}
.y167{bottom:150.651750px;}
.ye5{bottom:163.400250px;}
.y25a{bottom:163.518150px;}
.y203{bottom:164.440350px;}
.y5a{bottom:164.678250px;}
.y89{bottom:164.921400px;}
.y4c{bottom:164.930250px;}
.y23{bottom:165.555750px;}
.y22d{bottom:166.086300px;}
.y1d6{bottom:166.091700px;}
.yb4{bottom:166.548750px;}
.y13b{bottom:167.661750px;}
.y1aa{bottom:168.168000px;}
.y166{bottom:169.319250px;}
.y110{bottom:181.070250px;}
.ye4{bottom:181.118250px;}
.y259{bottom:181.518150px;}
.y202{bottom:182.417850px;}
.y59{bottom:182.715750px;}
.y88{bottom:183.018900px;}
.y4b{bottom:183.033750px;}
.y22{bottom:183.810750px;}
.y22c{bottom:184.473300px;}
.y1d5{bottom:184.477200px;}
.yb3{bottom:185.048250px;}
.y13a{bottom:188.037750px;}
.y165{bottom:190.113750px;}
.ye3{bottom:198.836250px;}
.y258{bottom:199.518150px;}
.y201{bottom:200.395350px;}
.y58{bottom:200.753250px;}
.y87{bottom:201.116400px;}
.y4a{bottom:201.137250px;}
.y21{bottom:202.064250px;}
.y22b{bottom:202.860300px;}
.y1d4{bottom:202.862700px;}
.yb2{bottom:203.547750px;}
.y1a9{bottom:204.232500px;}
.y139{bottom:206.286750px;}
.y164{bottom:208.782750px;}
.ye2{bottom:216.554250px;}
.y257{bottom:217.518150px;}
.y200{bottom:218.372850px;}
.y57{bottom:218.790750px;}
.y86{bottom:219.213900px;}
.y49{bottom:219.240750px;}
.y20{bottom:220.317750px;}
.y22a{bottom:221.245800px;}
.y1d3{bottom:221.248200px;}
.yb1{bottom:222.047250px;}
.y1a8{bottom:222.265500px;}
.y138{bottom:226.662750px;}
.y163{bottom:227.451750px;}
.y10f{bottom:234.209250px;}
.ye1{bottom:234.272250px;}
.y256{bottom:235.518150px;}
.y1ff{bottom:236.350350px;}
.y56{bottom:236.828250px;}
.y85{bottom:237.311400px;}
.y48{bottom:237.344250px;}
.y1f{bottom:238.571250px;}
.y229{bottom:239.631300px;}
.y1d2{bottom:239.635200px;}
.y1a7{bottom:240.298500px;}
.yb0{bottom:240.546750px;}
.y137{bottom:244.911750px;}
.y162{bottom:248.246250px;}
.y10e{bottom:251.922750px;}
.ye0{bottom:251.990250px;}
.y255{bottom:253.518150px;}
.y1fe{bottom:254.327850px;}
.y55{bottom:254.865750px;}
.y84{bottom:255.408900px;}
.y47{bottom:255.447750px;}
.y1e{bottom:256.824750px;}
.y228{bottom:258.016800px;}
.y1d1{bottom:258.022200px;}
.y1a6{bottom:258.331500px;}
.yaf{bottom:259.046250px;}
.y136{bottom:263.160750px;}
.y161{bottom:266.913750px;}
.y10d{bottom:269.636250px;}
.ydf{bottom:269.708250px;}
.y254{bottom:271.518150px;}
.y1fd{bottom:272.305350px;}
.y54{bottom:272.903250px;}
.y83{bottom:273.506400px;}
.y46{bottom:273.551250px;}
.y1d{bottom:275.078250px;}
.y1a5{bottom:276.364500px;}
.y227{bottom:276.402300px;}
.y1d0{bottom:276.407700px;}
.yae{bottom:277.545750px;}
.y135{bottom:281.409750px;}
.y27f{bottom:286.642650px;}
.y10c{bottom:287.349750px;}
.yde{bottom:287.426250px;}
.y160{bottom:287.708250px;}
.y253{bottom:289.518150px;}
.y1fc{bottom:290.282850px;}
.y53{bottom:290.940750px;}
.y82{bottom:291.603900px;}
.y45{bottom:291.654750px;}
.y1c{bottom:293.331750px;}
.y1a4{bottom:294.397500px;}
.y226{bottom:294.787800px;}
.y1cf{bottom:294.793200px;}
.yad{bottom:296.046750px;}
.y134{bottom:299.658750px;}
.y27e{bottom:304.726650px;}
.y10b{bottom:305.063250px;}
.ydd{bottom:305.144250px;}
.y15f{bottom:306.377250px;}
.y252{bottom:307.518150px;}
.y1fb{bottom:308.260350px;}
.y52{bottom:308.978250px;}
.y44{bottom:309.758250px;}
.y1b{bottom:311.585250px;}
.y1a3{bottom:312.430500px;}
.y225{bottom:313.173300px;}
.y1ce{bottom:313.178700px;}
.yac{bottom:314.546250px;}
.y133{bottom:320.034750px;}
.y10a{bottom:322.776750px;}
.y27d{bottom:322.810650px;}
.ydc{bottom:322.862250px;}
.y251{bottom:325.518150px;}
.y1fa{bottom:326.237850px;}
.y51{bottom:327.015750px;}
.y15e{bottom:327.171750px;}
.y81{bottom:327.798900px;}
.y43{bottom:327.861750px;}
.y1a{bottom:329.838750px;}
.y1a2{bottom:330.463500px;}
.y224{bottom:331.558800px;}
.y1cd{bottom:331.564200px;}
.yab{bottom:333.045750px;}
.y132{bottom:338.283750px;}
.y109{bottom:340.490250px;}
.ydb{bottom:340.580250px;}
.y27c{bottom:340.894650px;}
.y250{bottom:343.518150px;}
.y1f9{bottom:344.215350px;}
.y15d{bottom:345.840750px;}
.y42{bottom:345.965250px;}
.y19{bottom:348.092250px;}
.y1a1{bottom:348.496500px;}
.y223{bottom:349.944300px;}
.y1cc{bottom:349.949700px;}
.yaa{bottom:351.545250px;}
.y108{bottom:358.203750px;}
.yda{bottom:358.298250px;}
.y131{bottom:358.659750px;}
.y27b{bottom:358.978650px;}
.y24f{bottom:361.518150px;}
.y1f8{bottom:362.192850px;}
.y80{bottom:363.993900px;}
.y41{bottom:364.068750px;}
.y15c{bottom:364.509750px;}
.y18{bottom:366.345750px;}
.y1a0{bottom:366.529500px;}
.y222{bottom:368.329800px;}
.y1cb{bottom:368.335200px;}
.ya9{bottom:370.044750px;}
.y107{bottom:375.917250px;}
.yd9{bottom:376.016250px;}
.y130{bottom:376.908750px;}
.y27a{bottom:377.062650px;}
.y24e{bottom:379.518150px;}
.y1f7{bottom:380.170350px;}
.y7f{bottom:382.091400px;}
.y40{bottom:382.172250px;}
.y15b{bottom:383.178750px;}
.y19f{bottom:384.562500px;}
.y17{bottom:384.599250px;}
.y221{bottom:386.715300px;}
.y1ca{bottom:386.720700px;}
.y60{bottom:387.455400px;}
.ya8{bottom:388.544250px;}
.y106{bottom:393.630750px;}
.yd8{bottom:393.734250px;}
.y279{bottom:395.146650px;}
.y12f{bottom:395.157750px;}
.y24d{bottom:397.518150px;}
.y1f6{bottom:398.147850px;}
.y7e{bottom:400.188900px;}
.y3f{bottom:400.275750px;}
.y19e{bottom:402.595500px;}
.y16{bottom:402.852750px;}
.y5f{bottom:403.955100px;}
.y15a{bottom:403.973250px;}
.y220{bottom:405.100800px;}
.y1c9{bottom:405.106200px;}
.ya7{bottom:407.043750px;}
.y105{bottom:411.344250px;}
.yd7{bottom:411.452250px;}
.y278{bottom:413.230650px;}
.y24c{bottom:415.518150px;}
.y12e{bottom:415.533750px;}
.y1f5{bottom:416.125350px;}
.y7d{bottom:418.286400px;}
.y3e{bottom:418.379250px;}
.y19d{bottom:420.628500px;}
.y15{bottom:421.106250px;}
.y159{bottom:422.642250px;}
.y21f{bottom:423.486300px;}
.y1c8{bottom:423.491700px;}
.ya6{bottom:425.543250px;}
.y104{bottom:429.057750px;}
.yd6{bottom:429.170250px;}
.y277{bottom:431.314650px;}
.y24b{bottom:433.518150px;}
.y12d{bottom:433.782750px;}
.y1f4{bottom:434.102850px;}
.y7c{bottom:436.383900px;}
.y3d{bottom:436.482750px;}
.y19c{bottom:438.661500px;}
.y158{bottom:441.311250px;}
.y21e{bottom:441.871800px;}
.y1c7{bottom:441.877200px;}
.ya5{bottom:444.042750px;}
.y103{bottom:446.771250px;}
.yd5{bottom:446.888250px;}
.y276{bottom:449.398650px;}
.y24a{bottom:451.518150px;}
.y12c{bottom:452.031750px;}
.y1f3{bottom:452.080350px;}
.y7b{bottom:454.481400px;}
.y3c{bottom:454.586250px;}
.y19b{bottom:456.694500px;}
.y14{bottom:457.614750px;}
.y21d{bottom:460.257300px;}
.y1c6{bottom:460.262700px;}
.y157{bottom:462.105750px;}
.ya4{bottom:462.542250px;}
.y102{bottom:464.483250px;}
.yd4{bottom:464.606250px;}
.y275{bottom:467.482650px;}
.y249{bottom:469.518150px;}
.y1f2{bottom:470.057850px;}
.y12b{bottom:472.407750px;}
.y7a{bottom:472.578900px;}
.y3b{bottom:472.689750px;}
.y182{bottom:473.114250px;}
.y19a{bottom:474.727500px;}
.y21c{bottom:478.642800px;}
.y1c5{bottom:478.648200px;}
.y156{bottom:480.774750px;}
.ya3{bottom:481.041750px;}
.y101{bottom:482.196750px;}
.yd3{bottom:482.324250px;}
.y274{bottom:485.568150px;}
.y248{bottom:487.518150px;}
.y1f1{bottom:488.035350px;}
.y12a{bottom:490.656750px;}
.y79{bottom:490.676400px;}
.y3a{bottom:490.793250px;}
.y181{bottom:491.324250px;}
.y199{bottom:492.760500px;}
.y21b{bottom:497.028300px;}
.y1c4{bottom:497.033700px;}
.y155{bottom:499.443750px;}
.ya2{bottom:499.541250px;}
.y100{bottom:499.910250px;}
.yd2{bottom:500.042250px;}
.y273{bottom:503.653650px;}
.y247{bottom:505.518150px;}
.y1f0{bottom:506.012850px;}
.y78{bottom:508.773900px;}
.y39{bottom:508.896750px;}
.y180{bottom:509.534250px;}
.y198{bottom:510.793500px;}
.y129{bottom:511.032750px;}
.y21a{bottom:515.413800px;}
.y1c3{bottom:515.419200px;}
.yff{bottom:517.623750px;}
.yd1{bottom:517.760250px;}
.ya1{bottom:518.040750px;}
.y154{bottom:518.112750px;}
.y246{bottom:523.518150px;}
.y1ef{bottom:523.990350px;}
.y272{bottom:525.565650px;}
.y77{bottom:526.871400px;}
.y38{bottom:527.000250px;}
.y197{bottom:528.826500px;}
.y128{bottom:529.281750px;}
.y17f{bottom:529.869750px;}
.y13{bottom:530.631450px;}
.y219{bottom:533.799300px;}
.y1c2{bottom:533.804700px;}
.yfe{bottom:535.337250px;}
.yd0{bottom:535.478250px;}
.ya0{bottom:536.540250px;}
.y153{bottom:536.781750px;}
.y245{bottom:541.518150px;}
.y1ee{bottom:541.967850px;}
.y271{bottom:543.655650px;}
.y76{bottom:544.968900px;}
.y12{bottom:545.885850px;}
.y196{bottom:546.859500px;}
.y127{bottom:547.530750px;}
.y17e{bottom:548.079750px;}
.y218{bottom:552.184800px;}
.y1c1{bottom:552.190200px;}
.yfd{bottom:553.050750px;}
.ycf{bottom:553.196250px;}
.y9f{bottom:555.039750px;}
.y152{bottom:557.576250px;}
.y244{bottom:559.518150px;}
.y1ed{bottom:559.945350px;}
.y270{bottom:561.741150px;}
.y75{bottom:563.066400px;}
.y37{bottom:563.205750px;}
.y11{bottom:564.140250px;}
.y195{bottom:564.892500px;}
.y126{bottom:567.906750px;}
.y17d{bottom:568.415250px;}
.y217{bottom:570.570300px;}
.y1c0{bottom:570.575700px;}
.yfc{bottom:570.764250px;}
.yce{bottom:570.914250px;}
.y9e{bottom:573.539250px;}
.y151{bottom:576.245250px;}
.y243{bottom:577.518150px;}
.y1ec{bottom:577.922850px;}
.y10{bottom:579.394650px;}
.y26f{bottom:579.825150px;}
.y74{bottom:581.163900px;}
.y194{bottom:582.925500px;}
.y125{bottom:586.155750px;}
.y17c{bottom:586.625250px;}
.yfb{bottom:588.477750px;}
.ycd{bottom:588.632250px;}
.y216{bottom:588.955800px;}
.y1bf{bottom:588.961200px;}
.y9d{bottom:592.038750px;}
.y150{bottom:594.914250px;}
.y1eb{bottom:595.900350px;}
.y26e{bottom:597.909150px;}
.yf{bottom:597.986550px;}
.y73{bottom:599.261400px;}
.y242{bottom:599.344650px;}
.y193{bottom:600.958500px;}
.y124{bottom:604.404750px;}
.y17b{bottom:604.835250px;}
.yfa{bottom:606.189750px;}
.ycc{bottom:606.350250px;}
.y215{bottom:607.341300px;}
.y1be{bottom:607.346700px;}
.y9c{bottom:610.538250px;}
.ye{bottom:612.903300px;}
.y1ea{bottom:613.877850px;}
.y14f{bottom:615.708750px;}
.y26d{bottom:615.993150px;}
.y241{bottom:617.344650px;}
.y72{bottom:617.359200px;}
.y36{bottom:617.514750px;}
.y192{bottom:618.991500px;}
.y123{bottom:622.653750px;}
.yf9{bottom:623.903250px;}
.ycb{bottom:624.068250px;}
.y17a{bottom:625.170750px;}
.y214{bottom:625.726800px;}
.y1bd{bottom:625.732200px;}
.yd{bottom:631.495200px;}
.y1e9{bottom:631.855350px;}
.y26c{bottom:634.077150px;}
.y14e{bottom:634.377750px;}
.y240{bottom:635.344650px;}
.y71{bottom:635.456700px;}
.y35{bottom:635.618250px;}
.y191{bottom:637.024500px;}
.yf8{bottom:641.616750px;}
.yca{bottom:641.786250px;}
.y122{bottom:643.029750px;}
.y179{bottom:643.380750px;}
.y213{bottom:644.112300px;}
.y1bc{bottom:644.117700px;}
.yc{bottom:646.411800px;}
.y9b{bottom:647.538750px;}
.y1e8{bottom:649.832850px;}
.y26b{bottom:652.161150px;}
.y14d{bottom:653.045250px;}
.y23f{bottom:653.344650px;}
.y70{bottom:653.554500px;}
.y34{bottom:653.721750px;}
.y190{bottom:655.057500px;}
.yf7{bottom:659.330250px;}
.yc9{bottom:659.504250px;}
.y121{bottom:661.278750px;}
.y178{bottom:661.590750px;}
.yb{bottom:661.666200px;}
.y212{bottom:662.497800px;}
.y1bb{bottom:662.503200px;}
.y1e7{bottom:667.810350px;}
.y26a{bottom:670.245150px;}
.y23e{bottom:671.344650px;}
.y6f{bottom:671.652000px;}
.y33{bottom:671.825250px;}
.y18f{bottom:673.090500px;}
.y14c{bottom:673.839750px;}
.yf6{bottom:677.043750px;}
.yc8{bottom:677.222250px;}
.y120{bottom:679.527750px;}
.ya{bottom:680.257950px;}
.y1ba{bottom:680.888700px;}
.y177{bottom:681.926250px;}
.y211{bottom:684.711300px;}
.y1e6{bottom:685.787850px;}
.y269{bottom:688.329150px;}
.y23d{bottom:689.344650px;}
.y6e{bottom:689.749500px;}
.y32{bottom:689.928750px;}
.y18e{bottom:691.123500px;}
.y14b{bottom:692.508750px;}
.yf5{bottom:694.757250px;}
.yc7{bottom:694.940250px;}
.y9{bottom:695.174550px;}
.y1b9{bottom:699.275700px;}
.y11f{bottom:699.903750px;}
.y176{bottom:700.136250px;}
.y9a{bottom:703.038750px;}
.y210{bottom:703.104150px;}
.y1e5{bottom:703.765350px;}
.y268{bottom:706.413150px;}
.y23c{bottom:707.344650px;}
.y6d{bottom:707.847300px;}
.y31{bottom:708.032250px;}
.y18d{bottom:709.156500px;}
.y8{bottom:710.428950px;}
.y14a{bottom:711.177750px;}
.yf4{bottom:712.470750px;}
.yc6{bottom:712.658250px;}
.y1b8{bottom:717.661200px;}
.y11e{bottom:718.152750px;}
.y175{bottom:718.346250px;}
.y20f{bottom:721.489650px;}
.y99{bottom:721.538250px;}
.y1e4{bottom:721.742850px;}
.y267{bottom:724.498650px;}
.y23b{bottom:725.344650px;}
.y6c{bottom:725.944800px;}
.y30{bottom:726.135750px;}
.y18c{bottom:727.189500px;}
.y7{bottom:729.020850px;}
.yf3{bottom:730.184250px;}
.yc5{bottom:730.376250px;}
.y149{bottom:731.972250px;}
.y1b7{bottom:736.046700px;}
.y11d{bottom:736.401750px;}
.y174{bottom:736.556250px;}
.y1e3{bottom:739.720350px;}
.y20e{bottom:739.875150px;}
.y98{bottom:740.037750px;}
.y266{bottom:742.584150px;}
.y23a{bottom:743.344650px;}
.y6b{bottom:744.042300px;}
.y2f{bottom:744.239250px;}
.y18b{bottom:745.222500px;}
.yf2{bottom:747.897750px;}
.yc4{bottom:748.094250px;}
.y6{bottom:748.887750px;}
.y148{bottom:750.641250px;}
.y1b6{bottom:754.432200px;}
.y11c{bottom:756.777750px;}
.y173{bottom:756.891750px;}
.y20d{bottom:758.260650px;}
.y97{bottom:758.537250px;}
.y265{bottom:760.668150px;}
.y239{bottom:761.344650px;}
.y1e2{bottom:761.524350px;}
.y6a{bottom:762.139800px;}
.y2e{bottom:762.342750px;}
.y18a{bottom:763.255500px;}
.yf1{bottom:765.611250px;}
.yc3{bottom:765.812250px;}
.y5{bottom:767.142000px;}
.y147{bottom:769.308750px;}
.y1b5{bottom:772.817700px;}
.y11b{bottom:775.026750px;}
.y172{bottom:775.101750px;}
.y20c{bottom:776.646150px;}
.y96{bottom:777.036750px;}
.y264{bottom:778.752150px;}
.y238{bottom:779.344650px;}
.y1e1{bottom:779.502150px;}
.y69{bottom:780.237750px;}
.y2d{bottom:780.446250px;}
.y189{bottom:781.288500px;}
.yf0{bottom:783.324750px;}
.yc2{bottom:783.530250px;}
.y146{bottom:790.103250px;}
.y1b4{bottom:791.203200px;}
.y171{bottom:793.311750px;}
.y20b{bottom:795.031650px;}
.y11a{bottom:795.402750px;}
.y95{bottom:795.536250px;}
.y263{bottom:796.836150px;}
.y237{bottom:797.344650px;}
.y1e0{bottom:797.479650px;}
.y68{bottom:798.335250px;}
.y2c{bottom:798.549750px;}
.y188{bottom:799.321500px;}
.yef{bottom:801.038250px;}
.yc1{bottom:801.248250px;}
.y145{bottom:808.772250px;}
.y1b3{bottom:809.588700px;}
.y20a{bottom:813.417150px;}
.y170{bottom:813.647250px;}
.y119{bottom:813.651750px;}
.y94{bottom:814.035750px;}
.y262{bottom:814.921650px;}
.y236{bottom:815.344650px;}
.y1df{bottom:815.457150px;}
.y67{bottom:816.432750px;}
.y2b{bottom:816.653250px;}
.y4{bottom:816.954600px;}
.y187{bottom:817.354500px;}
.yee{bottom:818.751750px;}
.yc0{bottom:818.966250px;}
.y1b2{bottom:827.974200px;}
.y144{bottom:829.566750px;}
.y209{bottom:831.802650px;}
.y16f{bottom:831.857250px;}
.y118{bottom:831.900750px;}
.y93{bottom:832.535250px;}
.y261{bottom:833.005650px;}
.y235{bottom:833.344650px;}
.y1de{bottom:833.434650px;}
.y66{bottom:834.530250px;}
.y2a{bottom:834.756750px;}
.yed{bottom:836.465250px;}
.ybf{bottom:836.684250px;}
.y3{bottom:838.209000px;}
.y186{bottom:846.442500px;}
.y143{bottom:848.234250px;}
.y16e{bottom:850.067250px;}
.y1b1{bottom:850.186200px;}
.y208{bottom:850.188150px;}
.y92{bottom:851.034750px;}
.y260{bottom:851.091150px;}
.y234{bottom:851.344650px;}
.y1dd{bottom:851.412150px;}
.y117{bottom:852.276750px;}
.y65{bottom:852.627750px;}
.y29{bottom:852.860250px;}
.yec{bottom:854.178750px;}
.ybe{bottom:854.402250px;}
.y2{bottom:859.463400px;}
.y142{bottom:866.901750px;}
.y16d{bottom:868.277250px;}
.y1b0{bottom:868.573650px;}
.y25f{bottom:869.175150px;}
.y233{bottom:869.344650px;}
.y1dc{bottom:869.389650px;}
.y91{bottom:869.534250px;}
.y116{bottom:870.525750px;}
.y64{bottom:870.725250px;}
.y28{bottom:870.963750px;}
.yeb{bottom:871.892250px;}
.ybd{bottom:872.120250px;}
.y185{bottom:874.975050px;}
.y141{bottom:885.569250px;}
.y16c{bottom:886.487250px;}
.y1af{bottom:886.959150px;}
.y25e{bottom:887.260650px;}
.y232{bottom:887.344650px;}
.y1db{bottom:887.367150px;}
.y90{bottom:888.033750px;}
.y115{bottom:888.774750px;}
.y63{bottom:888.822750px;}
.y27{bottom:889.067250px;}
.yea{bottom:889.605750px;}
.ybc{bottom:889.838250px;}
.y140{bottom:906.363750px;}
.y8f{bottom:906.533250px;}
.y16b{bottom:906.822750px;}
.y62{bottom:906.920250px;}
.ye9{bottom:907.319250px;}
.y184{bottom:909.539550px;}
.y1ae{bottom:916.399650px;}
.y61{bottom:925.017750px;}
.y8e{bottom:925.032750px;}
.y25{bottom:925.043250px;}
.y26{bottom:925.274250px;}
.y183{bottom:926.073000px;}
.h6{height:28.767187px;}
.h8{height:28.767787px;}
.h5{height:31.587891px;}
.h4{height:32.846484px;}
.h9{height:41.074219px;}
.h7{height:42.117188px;}
.hb{height:47.381836px;}
.h3{height:49.289062px;}
.h2{height:52.646484px;}
.ha{height:52.792969px;}
.h0{height:1020.472500px;}
.h1{height:1020.750000px;}
.w1{width:701.250000px;}
.w2{width:701.529093px;}
.w3{width:701.530455px;}
.w0{width:701.575500px;}
.x0{left:0.000000px;}
.x13{left:72.237901px;}
.x16{left:76.491901px;}
.x1c{left:93.497401px;}
.x1d{left:97.749901px;}
.xd{left:99.021001px;}
.x7{left:102.934951px;}
.x12{left:114.756901px;}
.x4{left:116.902051px;}
.xa{left:118.877402px;}
.xc{left:136.027802px;}
.x2{left:151.582651px;}
.x14{left:162.546901px;}
.x5{left:166.349252px;}
.x9{left:185.565302px;}
.x8{left:200.847752px;}
.x3{left:206.765252px;}
.xe{left:225.191402px;}
.xb{left:230.175001px;}
.xf{left:247.630201px;}
.x10{left:252.569401px;}
.x1a{left:257.021402px;}
.x6{left:280.286402px;}
.x1b{left:290.688901px;}
.x19{left:295.266901px;}
.x17{left:306.621901px;}
.x11{left:307.772401px;}
.x15{left:336.624901px;}
.x18{left:341.394152px;}
.x1{left:344.865751px;}
@media print{
.v1{vertical-align:-17.600000pt;}
.v3{vertical-align:-11.866667pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:17.600000pt;}
.ls1f{letter-spacing:-1.978667pt;}
.lsc{letter-spacing:-0.666667pt;}
.ls52{letter-spacing:-0.517333pt;}
.ls60{letter-spacing:-0.501333pt;}
.ls33{letter-spacing:-0.485333pt;}
.lsb{letter-spacing:-0.469333pt;}
.ls18{letter-spacing:-0.437333pt;}
.ls5c{letter-spacing:-0.432000pt;}
.ls9{letter-spacing:-0.426667pt;}
.ls12{letter-spacing:-0.421333pt;}
.ls19{letter-spacing:-0.405333pt;}
.ls5f{letter-spacing:-0.400000pt;}
.ls2c{letter-spacing:-0.394667pt;}
.ls35{letter-spacing:-0.378667pt;}
.ls48{letter-spacing:-0.346667pt;}
.ls4e{letter-spacing:-0.330667pt;}
.ls56{letter-spacing:-0.320000pt;}
.ls17{letter-spacing:-0.314667pt;}
.ls8{letter-spacing:-0.309333pt;}
.ls32{letter-spacing:-0.304000pt;}
.ls36{letter-spacing:-0.298667pt;}
.ls3f{letter-spacing:-0.293333pt;}
.ls55{letter-spacing:-0.277333pt;}
.ls53{letter-spacing:-0.266667pt;}
.ls4f{letter-spacing:-0.261333pt;}
.ls2e{letter-spacing:-0.245333pt;}
.ls23{letter-spacing:-0.224000pt;}
.ls45{letter-spacing:-0.208000pt;}
.ls30{letter-spacing:-0.202667pt;}
.ls16{letter-spacing:-0.192000pt;}
.ls13{letter-spacing:-0.186667pt;}
.ls51{letter-spacing:-0.170667pt;}
.ls47{letter-spacing:-0.165333pt;}
.ls5d{letter-spacing:-0.138667pt;}
.ls5b{letter-spacing:-0.133333pt;}
.ls2d{letter-spacing:-0.128000pt;}
.ls63{letter-spacing:-0.122667pt;}
.ls11{letter-spacing:-0.117333pt;}
.ls21{letter-spacing:-0.106667pt;}
.lsa{letter-spacing:-0.101333pt;}
.ls3d{letter-spacing:-0.090667pt;}
.ls22{letter-spacing:-0.080000pt;}
.ls57{letter-spacing:-0.074667pt;}
.ls49{letter-spacing:-0.069333pt;}
.ls20{letter-spacing:-0.053333pt;}
.ls31{letter-spacing:-0.026667pt;}
.ls15{letter-spacing:-0.021333pt;}
.ls54{letter-spacing:-0.016000pt;}
.ls64{letter-spacing:-0.010667pt;}
.ls5e{letter-spacing:-0.005333pt;}
.ls6{letter-spacing:0.000000pt;}
.ls2a{letter-spacing:0.000533pt;}
.ls62{letter-spacing:0.005333pt;}
.ls29{letter-spacing:0.008533pt;}
.ls14{letter-spacing:0.016000pt;}
.ls4c{letter-spacing:0.021333pt;}
.ls4d{letter-spacing:0.026667pt;}
.lsf{letter-spacing:0.032000pt;}
.ls27{letter-spacing:0.037333pt;}
.ls2f{letter-spacing:0.038400pt;}
.ls37{letter-spacing:0.042667pt;}
.ls42{letter-spacing:0.053333pt;}
.ls28{letter-spacing:0.064000pt;}
.ls1a{letter-spacing:0.069333pt;}
.ls4a{letter-spacing:0.085333pt;}
.ls7{letter-spacing:0.096000pt;}
.ls3a{letter-spacing:0.101333pt;}
.ls58{letter-spacing:0.112000pt;}
.ls41{letter-spacing:0.117333pt;}
.ls4{letter-spacing:0.122667pt;}
.ls5{letter-spacing:0.133333pt;}
.ls50{letter-spacing:0.138667pt;}
.ls46{letter-spacing:0.160000pt;}
.ls3e{letter-spacing:0.181333pt;}
.ls5a{letter-spacing:0.208000pt;}
.ls43{letter-spacing:0.213333pt;}
.ls59{letter-spacing:0.229333pt;}
.ls3b{letter-spacing:0.250667pt;}
.ls1b{letter-spacing:0.266667pt;}
.ls40{letter-spacing:0.273600pt;}
.lsd{letter-spacing:0.277333pt;}
.ls34{letter-spacing:0.320000pt;}
.ls24{letter-spacing:0.336000pt;}
.ls3c{letter-spacing:0.341333pt;}
.ls10{letter-spacing:0.352000pt;}
.ls61{letter-spacing:0.394667pt;}
.ls2b{letter-spacing:0.400000pt;}
.ls1e{letter-spacing:0.436800pt;}
.ls44{letter-spacing:0.442667pt;}
.ls4b{letter-spacing:0.474667pt;}
.ls39{letter-spacing:0.517333pt;}
.lse{letter-spacing:0.533333pt;}
.ls1c{letter-spacing:0.629333pt;}
.ls26{letter-spacing:0.720000pt;}
.ls1d{letter-spacing:0.800000pt;}
.ls38{letter-spacing:0.933333pt;}
.ls25{letter-spacing:1.156800pt;}
.ls1{letter-spacing:2.222400pt;}
.ls2{letter-spacing:2.223467pt;}
.ls0{letter-spacing:2.224000pt;}
.ls3{letter-spacing:10.666667pt;}
.ws76{word-spacing:-13.866667pt;}
.ws75{word-spacing:-13.674667pt;}
.ws73{word-spacing:-13.584000pt;}
.ws72{word-spacing:-13.434667pt;}
.wsc4{word-spacing:-13.418667pt;}
.ws12{word-spacing:-13.365333pt;}
.ws36{word-spacing:-13.333333pt;}
.ws35{word-spacing:-13.253333pt;}
.ws10b{word-spacing:-13.210667pt;}
.ws44{word-spacing:-8.038400pt;}
.ws0{word-spacing:-8.000000pt;}
.ws2{word-spacing:-3.532800pt;}
.wsf0{word-spacing:-1.994667pt;}
.wsa8{word-spacing:-1.989333pt;}
.wsd6{word-spacing:-1.984000pt;}
.ws27{word-spacing:-1.978667pt;}
.ws61{word-spacing:-1.973333pt;}
.ws110{word-spacing:-1.962667pt;}
.ws6d{word-spacing:-1.957333pt;}
.ws38{word-spacing:-1.946667pt;}
.wsc2{word-spacing:-1.930667pt;}
.wsdf{word-spacing:-1.925333pt;}
.ws88{word-spacing:-1.920000pt;}
.ws84{word-spacing:-1.909333pt;}
.wsc{word-spacing:-1.898667pt;}
.wsd1{word-spacing:-1.888000pt;}
.ws16{word-spacing:-1.882667pt;}
.ws10e{word-spacing:-1.877333pt;}
.wsa{word-spacing:-1.872000pt;}
.wsc5{word-spacing:-1.861333pt;}
.wsaf{word-spacing:-1.834667pt;}
.ws97{word-spacing:-1.829333pt;}
.ws24{word-spacing:-1.813333pt;}
.ws2a{word-spacing:-1.808000pt;}
.wsd8{word-spacing:-1.802667pt;}
.ws5d{word-spacing:-1.797333pt;}
.wsa0{word-spacing:-1.792000pt;}
.ws66{word-spacing:-1.776000pt;}
.ws52{word-spacing:-1.754667pt;}
.wscf{word-spacing:-1.738667pt;}
.wsd5{word-spacing:-1.733333pt;}
.wsdc{word-spacing:-1.722667pt;}
.ws23{word-spacing:-1.712000pt;}
.ws86{word-spacing:-1.706667pt;}
.ws6f{word-spacing:-1.701333pt;}
.ws64{word-spacing:-1.696000pt;}
.ws8{word-spacing:-1.690667pt;}
.ws2b{word-spacing:-1.685333pt;}
.wsdd{word-spacing:-1.680000pt;}
.wsc8{word-spacing:-1.669333pt;}
.ws3e{word-spacing:-1.653333pt;}
.ws78{word-spacing:-1.642667pt;}
.ws3a{word-spacing:-1.626667pt;}
.ws6c{word-spacing:-1.621333pt;}
.ws100{word-spacing:-1.616000pt;}
.ws115{word-spacing:-1.608000pt;}
.ws4f{word-spacing:-1.605333pt;}
.wsfa{word-spacing:-1.600000pt;}
.ws34{word-spacing:-1.594667pt;}
.ws19{word-spacing:-1.578667pt;}
.wsb{word-spacing:-1.573333pt;}
.ws5b{word-spacing:-1.568000pt;}
.ws2c{word-spacing:-1.562667pt;}
.ws10{word-spacing:-1.541333pt;}
.wse{word-spacing:-1.530667pt;}
.ws80{word-spacing:-1.525333pt;}
.ws67{word-spacing:-1.514667pt;}
.ws40{word-spacing:-1.509333pt;}
.ws108{word-spacing:-1.498667pt;}
.ws28{word-spacing:-1.482667pt;}
.ws6a{word-spacing:-1.477333pt;}
.ws4e{word-spacing:-1.472000pt;}
.ws58{word-spacing:-1.466667pt;}
.ws4c{word-spacing:-1.461333pt;}
.wsfc{word-spacing:-1.456000pt;}
.wsf6{word-spacing:-1.408000pt;}
.wsca{word-spacing:-1.328000pt;}
.ws93{word-spacing:-1.301333pt;}
.wsce{word-spacing:-1.296000pt;}
.wsec{word-spacing:-1.280000pt;}
.ws112{word-spacing:-1.226667pt;}
.wsb1{word-spacing:-1.184000pt;}
.ws9b{word-spacing:-1.161600pt;}
.ws5e{word-spacing:-1.109333pt;}
.ws101{word-spacing:-1.104000pt;}
.ws8b{word-spacing:-1.072000pt;}
.wsb9{word-spacing:-1.034667pt;}
.wse2{word-spacing:-1.002667pt;}
.ws6e{word-spacing:-0.997333pt;}
.ws77{word-spacing:-0.976000pt;}
.wse4{word-spacing:-0.965333pt;}
.wsf5{word-spacing:-0.912000pt;}
.wsac{word-spacing:-0.906667pt;}
.ws98{word-spacing:-0.896000pt;}
.wsad{word-spacing:-0.885333pt;}
.ws8c{word-spacing:-0.864000pt;}
.ws13{word-spacing:-0.842667pt;}
.ws32{word-spacing:-0.832000pt;}
.wsb8{word-spacing:-0.800000pt;}
.wsc0{word-spacing:-0.757333pt;}
.wsa2{word-spacing:-0.746667pt;}
.ws5c{word-spacing:-0.720000pt;}
.ws70{word-spacing:-0.714667pt;}
.ws4d{word-spacing:-0.656000pt;}
.ws51{word-spacing:-0.597333pt;}
.ws68{word-spacing:-0.565333pt;}
.wsd4{word-spacing:-0.533333pt;}
.ws109{word-spacing:-0.464000pt;}
.wsfe{word-spacing:-0.432000pt;}
.ws10f{word-spacing:-0.421333pt;}
.ws79{word-spacing:-0.416000pt;}
.ws42{word-spacing:-0.405333pt;}
.ws56{word-spacing:-0.378667pt;}
.ws92{word-spacing:-0.336000pt;}
.wsc1{word-spacing:-0.293333pt;}
.ws5a{word-spacing:-0.272000pt;}
.ws90{word-spacing:-0.256000pt;}
.ws99{word-spacing:-0.165333pt;}
.ws104{word-spacing:-0.138667pt;}
.wsa3{word-spacing:-0.112000pt;}
.wsee{word-spacing:-0.096000pt;}
.ws3b{word-spacing:-0.064000pt;}
.ws10a{word-spacing:-0.058667pt;}
.ws89{word-spacing:-0.053333pt;}
.wse8{word-spacing:-0.032000pt;}
.ws1{word-spacing:0.000000pt;}
.wsc7{word-spacing:0.005333pt;}
.wseb{word-spacing:0.021333pt;}
.wsf4{word-spacing:0.048000pt;}
.ws103{word-spacing:0.069333pt;}
.wsff{word-spacing:0.080000pt;}
.wsed{word-spacing:0.112000pt;}
.ws1e{word-spacing:0.128000pt;}
.ws10c{word-spacing:0.149333pt;}
.ws20{word-spacing:0.186667pt;}
.ws8d{word-spacing:0.192000pt;}
.ws113{word-spacing:0.213333pt;}
.wsf2{word-spacing:0.218667pt;}
.wsab{word-spacing:0.229333pt;}
.ws102{word-spacing:0.325333pt;}
.ws50{word-spacing:0.368000pt;}
.ws105{word-spacing:0.416000pt;}
.ws5f{word-spacing:0.426667pt;}
.ws1a{word-spacing:0.458667pt;}
.wsa7{word-spacing:0.496000pt;}
.wsc3{word-spacing:0.501333pt;}
.ws21{word-spacing:0.517333pt;}
.ws2d{word-spacing:0.549333pt;}
.wse1{word-spacing:0.554667pt;}
.wse7{word-spacing:0.570667pt;}
.wsbe{word-spacing:0.581333pt;}
.wsbd{word-spacing:0.586667pt;}
.ws7a{word-spacing:0.597333pt;}
.ws81{word-spacing:0.608000pt;}
.wsf8{word-spacing:0.629333pt;}
.ws82{word-spacing:0.661333pt;}
.ws25{word-spacing:0.752000pt;}
.wsde{word-spacing:0.810667pt;}
.ws7d{word-spacing:0.821333pt;}
.wsd3{word-spacing:0.832000pt;}
.wsa1{word-spacing:0.864000pt;}
.wsb7{word-spacing:0.912000pt;}
.wsb2{word-spacing:0.922667pt;}
.ws106{word-spacing:0.928000pt;}
.ws7{word-spacing:0.949333pt;}
.ws15{word-spacing:0.960000pt;}
.ws2e{word-spacing:0.976000pt;}
.wse6{word-spacing:1.013333pt;}
.wsdb{word-spacing:1.098667pt;}
.ws1c{word-spacing:1.109333pt;}
.ws71{word-spacing:1.248000pt;}
.wsb4{word-spacing:1.258667pt;}
.ws1b{word-spacing:1.264000pt;}
.wsda{word-spacing:1.280000pt;}
.wse5{word-spacing:1.301333pt;}
.ws107{word-spacing:1.306667pt;}
.ws9d{word-spacing:1.344000pt;}
.ws1f{word-spacing:1.365333pt;}
.ws87{word-spacing:1.434667pt;}
.ws31{word-spacing:1.514667pt;}
.ws63{word-spacing:1.530667pt;}
.wsa9{word-spacing:1.541333pt;}
.wsef{word-spacing:1.562667pt;}
.wscd{word-spacing:1.573333pt;}
.ws11{word-spacing:1.578667pt;}
.wsa5{word-spacing:1.589333pt;}
.ws7f{word-spacing:1.680000pt;}
.ws10d{word-spacing:1.690667pt;}
.ws17{word-spacing:1.701333pt;}
.ws59{word-spacing:1.712000pt;}
.ws22{word-spacing:1.834667pt;}
.ws65{word-spacing:1.872000pt;}
.ws39{word-spacing:1.888000pt;}
.wsbb{word-spacing:1.914667pt;}
.ws6b{word-spacing:1.952000pt;}
.wscc{word-spacing:1.957333pt;}
.wsaa{word-spacing:1.973333pt;}
.wsfb{word-spacing:2.005333pt;}
.ws9{word-spacing:2.021333pt;}
.wsf1{word-spacing:2.122667pt;}
.ws8e{word-spacing:2.202667pt;}
.ws55{word-spacing:2.330667pt;}
.ws7e{word-spacing:2.389333pt;}
.ws111{word-spacing:2.400000pt;}
.ws1d{word-spacing:2.517333pt;}
.ws43{word-spacing:2.563200pt;}
.ws8f{word-spacing:2.565333pt;}
.wse0{word-spacing:2.592000pt;}
.wsf{word-spacing:2.704000pt;}
.ws9a{word-spacing:2.726400pt;}
.wsc9{word-spacing:2.741333pt;}
.ws4{word-spacing:2.816000pt;}
.wsd0{word-spacing:2.837333pt;}
.wsc6{word-spacing:2.858667pt;}
.wsb6{word-spacing:2.874667pt;}
.ws9e{word-spacing:2.885333pt;}
.wsba{word-spacing:2.890667pt;}
.wsb3{word-spacing:2.901333pt;}
.wsbc{word-spacing:2.933333pt;}
.ws5{word-spacing:2.965333pt;}
.ws3c{word-spacing:2.970667pt;}
.ws30{word-spacing:2.981333pt;}
.ws95{word-spacing:2.992000pt;}
.ws96{word-spacing:2.997333pt;}
.ws69{word-spacing:3.013333pt;}
.ws74{word-spacing:3.034667pt;}
.ws18{word-spacing:3.056000pt;}
.ws94{word-spacing:3.082667pt;}
.ws14{word-spacing:3.088000pt;}
.ws33{word-spacing:3.093333pt;}
.wsea{word-spacing:3.104000pt;}
.wsb0{word-spacing:3.120000pt;}
.wsf7{word-spacing:3.125333pt;}
.ws85{word-spacing:3.152000pt;}
.wsa4{word-spacing:3.173333pt;}
.ws4a{word-spacing:3.184000pt;}
.wsd2{word-spacing:3.194667pt;}
.wsd{word-spacing:3.200000pt;}
.wsf9{word-spacing:3.205333pt;}
.ws3{word-spacing:3.210667pt;}
.ws8a{word-spacing:3.216000pt;}
.wse9{word-spacing:3.221333pt;}
.ws9c{word-spacing:3.226667pt;}
.ws91{word-spacing:3.232000pt;}
.ws6{word-spacing:3.237333pt;}
.wscb{word-spacing:3.248000pt;}
.ws37{word-spacing:3.264000pt;}
.ws57{word-spacing:3.269333pt;}
.wsd7{word-spacing:3.274667pt;}
.wsa6{word-spacing:3.280000pt;}
.wsfd{word-spacing:3.285333pt;}
.wsae{word-spacing:3.290667pt;}
.ws54{word-spacing:3.296000pt;}
.ws2f{word-spacing:3.301333pt;}
.wsd9{word-spacing:3.306667pt;}
.ws26{word-spacing:3.317333pt;}
.ws62{word-spacing:3.333333pt;}
.ws49{word-spacing:3.763733pt;}
.ws48{word-spacing:3.764800pt;}
.ws45{word-spacing:3.866667pt;}
.wse3{word-spacing:4.042667pt;}
.ws53{word-spacing:4.346667pt;}
.ws7c{word-spacing:4.448000pt;}
.ws60{word-spacing:4.666667pt;}
.ws46{word-spacing:5.064000pt;}
.ws47{word-spacing:5.064533pt;}
.wsb5{word-spacing:5.754667pt;}
.ws29{word-spacing:5.925333pt;}
.ws3d{word-spacing:6.448000pt;}
.ws41{word-spacing:6.485333pt;}
.wsf3{word-spacing:7.866667pt;}
.ws4b{word-spacing:9.008000pt;}
.ws9f{word-spacing:9.317333pt;}
.wsbf{word-spacing:9.376000pt;}
.ws3f{word-spacing:10.426667pt;}
.ws83{word-spacing:10.965333pt;}
.ws7b{word-spacing:23.418667pt;}
.ws118{word-spacing:946.357333pt;}
.ws114{word-spacing:991.509333pt;}
.ws117{word-spacing:1006.629333pt;}
.ws116{word-spacing:1020.981333pt;}
.ws119{word-spacing:1030.229333pt;}
.ws11a{word-spacing:1045.056000pt;}
._a{margin-left:-16.666667pt;}
._8{margin-left:-11.946667pt;}
._5{margin-left:-7.754667pt;}
._6{margin-left:-5.909333pt;}
._4{margin-left:-4.896000pt;}
._1{margin-left:-3.532800pt;}
._0{margin-left:-2.374400pt;}
._3{margin-left:-1.158400pt;}
._9{width:0.948800pt;}
._2{width:2.374400pt;}
._b{width:3.318400pt;}
._d{width:7.977600pt;}
._7{width:9.008000pt;}
._e{width:10.689600pt;}
._3f{width:12.384000pt;}
._c{width:14.131200pt;}
._6d{width:49.309867pt;}
._58{width:60.662400pt;}
._77{width:157.504000pt;}
._23{width:208.891733pt;}
._53{width:252.309333pt;}
._47{width:269.074133pt;}
._15{width:284.246400pt;}
._68{width:291.050667pt;}
._59{width:296.475733pt;}
._50{width:299.243733pt;}
._1e{width:307.291733pt;}
._4c{width:319.990400pt;}
._66{width:350.416000pt;}
._6a{width:356.341333pt;}
._65{width:359.269333pt;}
._3d{width:373.802667pt;}
._40{width:391.003733pt;}
._75{width:399.889067pt;}
._64{width:401.303467pt;}
._6e{width:412.538667pt;}
._5d{width:415.237333pt;}
._61{width:418.570667pt;}
._39{width:430.069333pt;}
._43{width:435.489067pt;}
._49{width:439.029333pt;}
._14{width:441.875200pt;}
._46{width:444.896000pt;}
._28{width:453.243733pt;}
._25{width:456.848000pt;}
._56{width:458.266667pt;}
._2b{width:467.388800pt;}
._2d{width:474.496000pt;}
._79{width:477.424000pt;}
._29{width:480.528000pt;}
._41{width:483.402667pt;}
._7c{width:486.330667pt;}
._42{width:495.285333pt;}
._6f{width:497.606400pt;}
._69{width:498.517333pt;}
._2c{width:499.414400pt;}
._7b{width:506.507733pt;}
._48{width:509.510400pt;}
._11{width:517.110400pt;}
._72{width:521.361067pt;}
._52{width:522.386133pt;}
._4a{width:524.267733pt;}
._32{width:527.754667pt;}
._67{width:530.433067pt;}
._7a{width:533.674667pt;}
._4d{width:536.682667pt;}
._33{width:538.971733pt;}
._35{width:542.033067pt;}
._5a{width:548.576000pt;}
._2e{width:553.886933pt;}
._24{width:555.015467pt;}
._1d{width:560.416000pt;}
._57{width:562.336000pt;}
._27{width:563.456000pt;}
._20{width:566.394667pt;}
._2f{width:568.135467pt;}
._21{width:569.221333pt;}
._3e{width:571.638400pt;}
._62{width:572.650667pt;}
._13{width:575.237333pt;}
._12{width:578.229333pt;}
._18{width:581.109333pt;}
._1c{width:583.499733pt;}
._4e{width:587.136000pt;}
._22{width:590.016000pt;}
._4b{width:593.002667pt;}
._4f{width:595.989333pt;}
._3a{width:597.466667pt;}
._17{width:601.962667pt;}
._31{width:604.896000pt;}
._5e{width:607.776000pt;}
._5b{width:608.778667pt;}
._16{width:613.802667pt;}
._6c{width:616.970667pt;}
._44{width:619.110400pt;}
._1b{width:622.118400pt;}
._1f{width:628.525867pt;}
._45{width:630.950400pt;}
._30{width:634.496000pt;}
._5f{width:636.806400pt;}
._78{width:638.869333pt;}
._3b{width:641.090133pt;}
._2a{width:646.389333pt;}
._19{width:651.088000pt;}
._26{width:652.309333pt;}
._74{width:655.301333pt;}
._38{width:656.999467pt;}
._55{width:664.256000pt;}
._63{width:667.922133pt;}
._73{width:669.962667pt;}
._34{width:676.042667pt;}
._10{width:681.206400pt;}
._54{width:693.749333pt;}
._36{width:695.985067pt;}
._71{width:698.176000pt;}
._51{width:699.610667pt;}
._76{width:705.498667pt;}
._5c{width:711.509333pt;}
._f{width:714.384000pt;}
._1a{width:722.769067pt;}
._7d{width:735.237333pt;}
._6b{width:738.469333pt;}
._60{width:759.157333pt;}
._3c{width:776.682667pt;}
._70{width:778.439467pt;}
._37{width:797.285333pt;}
.fs3{font-size:25.600000pt;}
.fs2{font-size:32.000000pt;}
.fs4{font-size:42.666667pt;}
.fs5{font-size:48.000000pt;}
.fs0{font-size:53.333333pt;}
.fs1{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:43.668667pt;}
.y114{bottom:82.230000pt;}
.y50{bottom:82.236667pt;}
.y16a{bottom:82.239333pt;}
.y5e{bottom:82.247333pt;}
.y1ad{bottom:82.247733pt;}
.y207{bottom:82.249200pt;}
.y8d{bottom:82.250133pt;}
.y13f{bottom:82.256667pt;}
.y231{bottom:82.261600pt;}
.yb8{bottom:82.266000pt;}
.y1da{bottom:82.266400pt;}
.ybb{bottom:84.082000pt;}
.y25d{bottom:97.349467pt;}
.y113{bottom:97.974000pt;}
.ye8{bottom:97.996667pt;}
.y206{bottom:98.229200pt;}
.y1ac{bottom:98.277067pt;}
.y5d{bottom:98.280667pt;}
.y4f{bottom:98.328667pt;}
.y8c{bottom:98.336800pt;}
.y13e{bottom:98.478000pt;}
.y230{bottom:98.604267pt;}
.y1d9{bottom:98.609067pt;}
.yb7{bottom:98.710000pt;}
.yba{bottom:98.748400pt;}
.y169{bottom:98.834000pt;}
.y25c{bottom:113.349467pt;}
.yb9{bottom:113.414800pt;}
.y112{bottom:113.718000pt;}
.ye7{bottom:113.746000pt;}
.y205{bottom:114.209200pt;}
.y5c{bottom:114.314000pt;}
.y4e{bottom:114.420667pt;}
.y8b{bottom:114.423467pt;}
.y22f{bottom:114.946933pt;}
.y1d8{bottom:114.951733pt;}
.yb6{bottom:115.154000pt;}
.y13d{bottom:116.590000pt;}
.y168{bottom:117.318000pt;}
.y1ab{bottom:124.133067pt;}
.y25b{bottom:129.349467pt;}
.y111{bottom:129.462000pt;}
.ye6{bottom:129.495333pt;}
.y204{bottom:130.189200pt;}
.y5b{bottom:130.347333pt;}
.y8a{bottom:130.510133pt;}
.y4d{bottom:130.512667pt;}
.y24{bottom:130.935333pt;}
.y22e{bottom:131.289600pt;}
.y1d7{bottom:131.294400pt;}
.yb5{bottom:131.599333pt;}
.y13c{bottom:132.811333pt;}
.y167{bottom:133.912667pt;}
.ye5{bottom:145.244667pt;}
.y25a{bottom:145.349467pt;}
.y203{bottom:146.169200pt;}
.y5a{bottom:146.380667pt;}
.y89{bottom:146.596800pt;}
.y4c{bottom:146.604667pt;}
.y23{bottom:147.160667pt;}
.y22d{bottom:147.632267pt;}
.y1d6{bottom:147.637067pt;}
.yb4{bottom:148.043333pt;}
.y13b{bottom:149.032667pt;}
.y1aa{bottom:149.482667pt;}
.y166{bottom:150.506000pt;}
.y110{bottom:160.951333pt;}
.ye4{bottom:160.994000pt;}
.y259{bottom:161.349467pt;}
.y202{bottom:162.149200pt;}
.y59{bottom:162.414000pt;}
.y88{bottom:162.683467pt;}
.y4b{bottom:162.696667pt;}
.y22{bottom:163.387333pt;}
.y22c{bottom:163.976267pt;}
.y1d5{bottom:163.979733pt;}
.yb3{bottom:164.487333pt;}
.y13a{bottom:167.144667pt;}
.y165{bottom:168.990000pt;}
.ye3{bottom:176.743333pt;}
.y258{bottom:177.349467pt;}
.y201{bottom:178.129200pt;}
.y58{bottom:178.447333pt;}
.y87{bottom:178.770133pt;}
.y4a{bottom:178.788667pt;}
.y21{bottom:179.612667pt;}
.y22b{bottom:180.320267pt;}
.y1d4{bottom:180.322400pt;}
.yb2{bottom:180.931333pt;}
.y1a9{bottom:181.540000pt;}
.y139{bottom:183.366000pt;}
.y164{bottom:185.584667pt;}
.ye2{bottom:192.492667pt;}
.y257{bottom:193.349467pt;}
.y200{bottom:194.109200pt;}
.y57{bottom:194.480667pt;}
.y86{bottom:194.856800pt;}
.y49{bottom:194.880667pt;}
.y20{bottom:195.838000pt;}
.y22a{bottom:196.662933pt;}
.y1d3{bottom:196.665067pt;}
.yb1{bottom:197.375333pt;}
.y1a8{bottom:197.569333pt;}
.y138{bottom:201.478000pt;}
.y163{bottom:202.179333pt;}
.y10f{bottom:208.186000pt;}
.ye1{bottom:208.242000pt;}
.y256{bottom:209.349467pt;}
.y1ff{bottom:210.089200pt;}
.y56{bottom:210.514000pt;}
.y85{bottom:210.943467pt;}
.y48{bottom:210.972667pt;}
.y1f{bottom:212.063333pt;}
.y229{bottom:213.005600pt;}
.y1d2{bottom:213.009067pt;}
.y1a7{bottom:213.598667pt;}
.yb0{bottom:213.819333pt;}
.y137{bottom:217.699333pt;}
.y162{bottom:220.663333pt;}
.y10e{bottom:223.931333pt;}
.ye0{bottom:223.991333pt;}
.y255{bottom:225.349467pt;}
.y1fe{bottom:226.069200pt;}
.y55{bottom:226.547333pt;}
.y84{bottom:227.030133pt;}
.y47{bottom:227.064667pt;}
.y1e{bottom:228.288667pt;}
.y228{bottom:229.348267pt;}
.y1d1{bottom:229.353067pt;}
.y1a6{bottom:229.628000pt;}
.yaf{bottom:230.263333pt;}
.y136{bottom:233.920667pt;}
.y161{bottom:237.256667pt;}
.y10d{bottom:239.676667pt;}
.ydf{bottom:239.740667pt;}
.y254{bottom:241.349467pt;}
.y1fd{bottom:242.049200pt;}
.y54{bottom:242.580667pt;}
.y83{bottom:243.116800pt;}
.y46{bottom:243.156667pt;}
.y1d{bottom:244.514000pt;}
.y1a5{bottom:245.657333pt;}
.y227{bottom:245.690933pt;}
.y1d0{bottom:245.695733pt;}
.yae{bottom:246.707333pt;}
.y135{bottom:250.142000pt;}
.y27f{bottom:254.793467pt;}
.y10c{bottom:255.422000pt;}
.yde{bottom:255.490000pt;}
.y160{bottom:255.740667pt;}
.y253{bottom:257.349467pt;}
.y1fc{bottom:258.029200pt;}
.y53{bottom:258.614000pt;}
.y82{bottom:259.203467pt;}
.y45{bottom:259.248667pt;}
.y1c{bottom:260.739333pt;}
.y1a4{bottom:261.686667pt;}
.y226{bottom:262.033600pt;}
.y1cf{bottom:262.038400pt;}
.yad{bottom:263.152667pt;}
.y134{bottom:266.363333pt;}
.y27e{bottom:270.868133pt;}
.y10b{bottom:271.167333pt;}
.ydd{bottom:271.239333pt;}
.y15f{bottom:272.335333pt;}
.y252{bottom:273.349467pt;}
.y1fb{bottom:274.009200pt;}
.y52{bottom:274.647333pt;}
.y44{bottom:275.340667pt;}
.y1b{bottom:276.964667pt;}
.y1a3{bottom:277.716000pt;}
.y225{bottom:278.376267pt;}
.y1ce{bottom:278.381067pt;}
.yac{bottom:279.596667pt;}
.y133{bottom:284.475333pt;}
.y10a{bottom:286.912667pt;}
.y27d{bottom:286.942800pt;}
.ydc{bottom:286.988667pt;}
.y251{bottom:289.349467pt;}
.y1fa{bottom:289.989200pt;}
.y51{bottom:290.680667pt;}
.y15e{bottom:290.819333pt;}
.y81{bottom:291.376800pt;}
.y43{bottom:291.432667pt;}
.y1a{bottom:293.190000pt;}
.y1a2{bottom:293.745333pt;}
.y224{bottom:294.718933pt;}
.y1cd{bottom:294.723733pt;}
.yab{bottom:296.040667pt;}
.y132{bottom:300.696667pt;}
.y109{bottom:302.658000pt;}
.ydb{bottom:302.738000pt;}
.y27c{bottom:303.017467pt;}
.y250{bottom:305.349467pt;}
.y1f9{bottom:305.969200pt;}
.y15d{bottom:307.414000pt;}
.y42{bottom:307.524667pt;}
.y19{bottom:309.415333pt;}
.y1a1{bottom:309.774667pt;}
.y223{bottom:311.061600pt;}
.y1cc{bottom:311.066400pt;}
.yaa{bottom:312.484667pt;}
.y108{bottom:318.403333pt;}
.yda{bottom:318.487333pt;}
.y131{bottom:318.808667pt;}
.y27b{bottom:319.092133pt;}
.y24f{bottom:321.349467pt;}
.y1f8{bottom:321.949200pt;}
.y80{bottom:323.550133pt;}
.y41{bottom:323.616667pt;}
.y15c{bottom:324.008667pt;}
.y18{bottom:325.640667pt;}
.y1a0{bottom:325.804000pt;}
.y222{bottom:327.404267pt;}
.y1cb{bottom:327.409067pt;}
.ya9{bottom:328.928667pt;}
.y107{bottom:334.148667pt;}
.yd9{bottom:334.236667pt;}
.y130{bottom:335.030000pt;}
.y27a{bottom:335.166800pt;}
.y24e{bottom:337.349467pt;}
.y1f7{bottom:337.929200pt;}
.y7f{bottom:339.636800pt;}
.y40{bottom:339.708667pt;}
.y15b{bottom:340.603333pt;}
.y19f{bottom:341.833333pt;}
.y17{bottom:341.866000pt;}
.y221{bottom:343.746933pt;}
.y1ca{bottom:343.751733pt;}
.y60{bottom:344.404800pt;}
.ya8{bottom:345.372667pt;}
.y106{bottom:349.894000pt;}
.yd8{bottom:349.986000pt;}
.y279{bottom:351.241467pt;}
.y12f{bottom:351.251333pt;}
.y24d{bottom:353.349467pt;}
.y1f6{bottom:353.909200pt;}
.y7e{bottom:355.723467pt;}
.y3f{bottom:355.800667pt;}
.y19e{bottom:357.862667pt;}
.y16{bottom:358.091333pt;}
.y5f{bottom:359.071200pt;}
.y15a{bottom:359.087333pt;}
.y220{bottom:360.089600pt;}
.y1c9{bottom:360.094400pt;}
.ya7{bottom:361.816667pt;}
.y105{bottom:365.639333pt;}
.yd7{bottom:365.735333pt;}
.y278{bottom:367.316133pt;}
.y24c{bottom:369.349467pt;}
.y12e{bottom:369.363333pt;}
.y1f5{bottom:369.889200pt;}
.y7d{bottom:371.810133pt;}
.y3e{bottom:371.892667pt;}
.y19d{bottom:373.892000pt;}
.y15{bottom:374.316667pt;}
.y159{bottom:375.682000pt;}
.y21f{bottom:376.432267pt;}
.y1c8{bottom:376.437067pt;}
.ya6{bottom:378.260667pt;}
.y104{bottom:381.384667pt;}
.yd6{bottom:381.484667pt;}
.y277{bottom:383.390800pt;}
.y24b{bottom:385.349467pt;}
.y12d{bottom:385.584667pt;}
.y1f4{bottom:385.869200pt;}
.y7c{bottom:387.896800pt;}
.y3d{bottom:387.984667pt;}
.y19c{bottom:389.921333pt;}
.y158{bottom:392.276667pt;}
.y21e{bottom:392.774933pt;}
.y1c7{bottom:392.779733pt;}
.ya5{bottom:394.704667pt;}
.y103{bottom:397.130000pt;}
.yd5{bottom:397.234000pt;}
.y276{bottom:399.465467pt;}
.y24a{bottom:401.349467pt;}
.y12c{bottom:401.806000pt;}
.y1f3{bottom:401.849200pt;}
.y7b{bottom:403.983467pt;}
.y3c{bottom:404.076667pt;}
.y19b{bottom:405.950667pt;}
.y14{bottom:406.768667pt;}
.y21d{bottom:409.117600pt;}
.y1c6{bottom:409.122400pt;}
.y157{bottom:410.760667pt;}
.ya4{bottom:411.148667pt;}
.y102{bottom:412.874000pt;}
.yd4{bottom:412.983333pt;}
.y275{bottom:415.540133pt;}
.y249{bottom:417.349467pt;}
.y1f2{bottom:417.829200pt;}
.y12b{bottom:419.918000pt;}
.y7a{bottom:420.070133pt;}
.y3b{bottom:420.168667pt;}
.y182{bottom:420.546000pt;}
.y19a{bottom:421.980000pt;}
.y21c{bottom:425.460267pt;}
.y1c5{bottom:425.465067pt;}
.y156{bottom:427.355333pt;}
.ya3{bottom:427.592667pt;}
.y101{bottom:428.619333pt;}
.yd3{bottom:428.732667pt;}
.y274{bottom:431.616133pt;}
.y248{bottom:433.349467pt;}
.y1f1{bottom:433.809200pt;}
.y12a{bottom:436.139333pt;}
.y79{bottom:436.156800pt;}
.y3a{bottom:436.260667pt;}
.y181{bottom:436.732667pt;}
.y199{bottom:438.009333pt;}
.y21b{bottom:441.802933pt;}
.y1c4{bottom:441.807733pt;}
.y155{bottom:443.950000pt;}
.ya2{bottom:444.036667pt;}
.y100{bottom:444.364667pt;}
.yd2{bottom:444.482000pt;}
.y273{bottom:447.692133pt;}
.y247{bottom:449.349467pt;}
.y1f0{bottom:449.789200pt;}
.y78{bottom:452.243467pt;}
.y39{bottom:452.352667pt;}
.y180{bottom:452.919333pt;}
.y198{bottom:454.038667pt;}
.y129{bottom:454.251333pt;}
.y21a{bottom:458.145600pt;}
.y1c3{bottom:458.150400pt;}
.yff{bottom:460.110000pt;}
.yd1{bottom:460.231333pt;}
.ya1{bottom:460.480667pt;}
.y154{bottom:460.544667pt;}
.y246{bottom:465.349467pt;}
.y1ef{bottom:465.769200pt;}
.y272{bottom:467.169467pt;}
.y77{bottom:468.330133pt;}
.y38{bottom:468.444667pt;}
.y197{bottom:470.068000pt;}
.y128{bottom:470.472667pt;}
.y17f{bottom:470.995333pt;}
.y13{bottom:471.672400pt;}
.y219{bottom:474.488267pt;}
.y1c2{bottom:474.493067pt;}
.yfe{bottom:475.855333pt;}
.yd0{bottom:475.980667pt;}
.ya0{bottom:476.924667pt;}
.y153{bottom:477.139333pt;}
.y245{bottom:481.349467pt;}
.y1ee{bottom:481.749200pt;}
.y271{bottom:483.249467pt;}
.y76{bottom:484.416800pt;}
.y12{bottom:485.231867pt;}
.y196{bottom:486.097333pt;}
.y127{bottom:486.694000pt;}
.y17e{bottom:487.182000pt;}
.y218{bottom:490.830933pt;}
.y1c1{bottom:490.835733pt;}
.yfd{bottom:491.600667pt;}
.ycf{bottom:491.730000pt;}
.y9f{bottom:493.368667pt;}
.y152{bottom:495.623333pt;}
.y244{bottom:497.349467pt;}
.y1ed{bottom:497.729200pt;}
.y270{bottom:499.325467pt;}
.y75{bottom:500.503467pt;}
.y37{bottom:500.627333pt;}
.y11{bottom:501.458000pt;}
.y195{bottom:502.126667pt;}
.y126{bottom:504.806000pt;}
.y17d{bottom:505.258000pt;}
.y217{bottom:507.173600pt;}
.y1c0{bottom:507.178400pt;}
.yfc{bottom:507.346000pt;}
.yce{bottom:507.479333pt;}
.y9e{bottom:509.812667pt;}
.y151{bottom:512.218000pt;}
.y243{bottom:513.349467pt;}
.y1ec{bottom:513.709200pt;}
.y10{bottom:515.017467pt;}
.y26f{bottom:515.400133pt;}
.y74{bottom:516.590133pt;}
.y194{bottom:518.156000pt;}
.y125{bottom:521.027333pt;}
.y17c{bottom:521.444667pt;}
.yfb{bottom:523.091333pt;}
.ycd{bottom:523.228667pt;}
.y216{bottom:523.516267pt;}
.y1bf{bottom:523.521067pt;}
.y9d{bottom:526.256667pt;}
.y150{bottom:528.812667pt;}
.y1eb{bottom:529.689200pt;}
.y26e{bottom:531.474800pt;}
.yf{bottom:531.543600pt;}
.y73{bottom:532.676800pt;}
.y242{bottom:532.750800pt;}
.y193{bottom:534.185333pt;}
.y124{bottom:537.248667pt;}
.y17b{bottom:537.631333pt;}
.yfa{bottom:538.835333pt;}
.ycc{bottom:538.978000pt;}
.y215{bottom:539.858933pt;}
.y1be{bottom:539.863733pt;}
.y9c{bottom:542.700667pt;}
.ye{bottom:544.802933pt;}
.y1ea{bottom:545.669200pt;}
.y14f{bottom:547.296667pt;}
.y26d{bottom:547.549467pt;}
.y241{bottom:548.750800pt;}
.y72{bottom:548.763733pt;}
.y36{bottom:548.902000pt;}
.y192{bottom:550.214667pt;}
.y123{bottom:553.470000pt;}
.yf9{bottom:554.580667pt;}
.ycb{bottom:554.727333pt;}
.y17a{bottom:555.707333pt;}
.y214{bottom:556.201600pt;}
.y1bd{bottom:556.206400pt;}
.yd{bottom:561.329067pt;}
.y1e9{bottom:561.649200pt;}
.y26c{bottom:563.624133pt;}
.y14e{bottom:563.891333pt;}
.y240{bottom:564.750800pt;}
.y71{bottom:564.850400pt;}
.y35{bottom:564.994000pt;}
.y191{bottom:566.244000pt;}
.yf8{bottom:570.326000pt;}
.yca{bottom:570.476667pt;}
.y122{bottom:571.582000pt;}
.y179{bottom:571.894000pt;}
.y213{bottom:572.544267pt;}
.y1bc{bottom:572.549067pt;}
.yc{bottom:574.588267pt;}
.y9b{bottom:575.590000pt;}
.y1e8{bottom:577.629200pt;}
.y26b{bottom:579.698800pt;}
.y14d{bottom:580.484667pt;}
.y23f{bottom:580.750800pt;}
.y70{bottom:580.937333pt;}
.y34{bottom:581.086000pt;}
.y190{bottom:582.273333pt;}
.yf7{bottom:586.071333pt;}
.yc9{bottom:586.226000pt;}
.y121{bottom:587.803333pt;}
.y178{bottom:588.080667pt;}
.yb{bottom:588.147733pt;}
.y212{bottom:588.886933pt;}
.y1bb{bottom:588.891733pt;}
.y1e7{bottom:593.609200pt;}
.y26a{bottom:595.773467pt;}
.y23e{bottom:596.750800pt;}
.y6f{bottom:597.024000pt;}
.y33{bottom:597.178000pt;}
.y18f{bottom:598.302667pt;}
.y14c{bottom:598.968667pt;}
.yf6{bottom:601.816667pt;}
.yc8{bottom:601.975333pt;}
.y120{bottom:604.024667pt;}
.ya{bottom:604.673733pt;}
.y1ba{bottom:605.234400pt;}
.y177{bottom:606.156667pt;}
.y211{bottom:608.632267pt;}
.y1e6{bottom:609.589200pt;}
.y269{bottom:611.848133pt;}
.y23d{bottom:612.750800pt;}
.y6e{bottom:613.110667pt;}
.y32{bottom:613.270000pt;}
.y18e{bottom:614.332000pt;}
.y14b{bottom:615.563333pt;}
.yf5{bottom:617.562000pt;}
.yc7{bottom:617.724667pt;}
.y9{bottom:617.932933pt;}
.y1b9{bottom:621.578400pt;}
.y11f{bottom:622.136667pt;}
.y176{bottom:622.343333pt;}
.y9a{bottom:624.923333pt;}
.y210{bottom:624.981467pt;}
.y1e5{bottom:625.569200pt;}
.y268{bottom:627.922800pt;}
.y23c{bottom:628.750800pt;}
.y6d{bottom:629.197600pt;}
.y31{bottom:629.362000pt;}
.y18d{bottom:630.361333pt;}
.y8{bottom:631.492400pt;}
.y14a{bottom:632.158000pt;}
.yf4{bottom:633.307333pt;}
.yc6{bottom:633.474000pt;}
.y1b8{bottom:637.921067pt;}
.y11e{bottom:638.358000pt;}
.y175{bottom:638.530000pt;}
.y20f{bottom:641.324133pt;}
.y99{bottom:641.367333pt;}
.y1e4{bottom:641.549200pt;}
.y267{bottom:643.998800pt;}
.y23b{bottom:644.750800pt;}
.y6c{bottom:645.284267pt;}
.y30{bottom:645.454000pt;}
.y18c{bottom:646.390667pt;}
.y7{bottom:648.018533pt;}
.yf3{bottom:649.052667pt;}
.yc5{bottom:649.223333pt;}
.y149{bottom:650.642000pt;}
.y1b7{bottom:654.263733pt;}
.y11d{bottom:654.579333pt;}
.y174{bottom:654.716667pt;}
.y1e3{bottom:657.529200pt;}
.y20e{bottom:657.666800pt;}
.y98{bottom:657.811333pt;}
.y266{bottom:660.074800pt;}
.y23a{bottom:660.750800pt;}
.y6b{bottom:661.370933pt;}
.y2f{bottom:661.546000pt;}
.y18b{bottom:662.420000pt;}
.yf2{bottom:664.798000pt;}
.yc4{bottom:664.972667pt;}
.y6{bottom:665.678000pt;}
.y148{bottom:667.236667pt;}
.y1b6{bottom:670.606400pt;}
.y11c{bottom:672.691333pt;}
.y173{bottom:672.792667pt;}
.y20d{bottom:674.009467pt;}
.y97{bottom:674.255333pt;}
.y265{bottom:676.149467pt;}
.y239{bottom:676.750800pt;}
.y1e2{bottom:676.910533pt;}
.y6a{bottom:677.457600pt;}
.y2e{bottom:677.638000pt;}
.y18a{bottom:678.449333pt;}
.yf1{bottom:680.543333pt;}
.yc3{bottom:680.722000pt;}
.y5{bottom:681.904000pt;}
.y147{bottom:683.830000pt;}
.y1b5{bottom:686.949067pt;}
.y11b{bottom:688.912667pt;}
.y172{bottom:688.979333pt;}
.y20c{bottom:690.352133pt;}
.y96{bottom:690.699333pt;}
.y264{bottom:692.224133pt;}
.y238{bottom:692.750800pt;}
.y1e1{bottom:692.890800pt;}
.y69{bottom:693.544667pt;}
.y2d{bottom:693.730000pt;}
.y189{bottom:694.478667pt;}
.yf0{bottom:696.288667pt;}
.yc2{bottom:696.471333pt;}
.y146{bottom:702.314000pt;}
.y1b4{bottom:703.291733pt;}
.y171{bottom:705.166000pt;}
.y20b{bottom:706.694800pt;}
.y11a{bottom:707.024667pt;}
.y95{bottom:707.143333pt;}
.y263{bottom:708.298800pt;}
.y237{bottom:708.750800pt;}
.y1e0{bottom:708.870800pt;}
.y68{bottom:709.631333pt;}
.y2c{bottom:709.822000pt;}
.y188{bottom:710.508000pt;}
.yef{bottom:712.034000pt;}
.yc1{bottom:712.220667pt;}
.y145{bottom:718.908667pt;}
.y1b3{bottom:719.634400pt;}
.y20a{bottom:723.037467pt;}
.y170{bottom:723.242000pt;}
.y119{bottom:723.246000pt;}
.y94{bottom:723.587333pt;}
.y262{bottom:724.374800pt;}
.y236{bottom:724.750800pt;}
.y1df{bottom:724.850800pt;}
.y67{bottom:725.718000pt;}
.y2b{bottom:725.914000pt;}
.y4{bottom:726.181867pt;}
.y187{bottom:726.537333pt;}
.yee{bottom:727.779333pt;}
.yc0{bottom:727.970000pt;}
.y1b2{bottom:735.977067pt;}
.y144{bottom:737.392667pt;}
.y209{bottom:739.380133pt;}
.y16f{bottom:739.428667pt;}
.y118{bottom:739.467333pt;}
.y93{bottom:740.031333pt;}
.y261{bottom:740.449467pt;}
.y235{bottom:740.750800pt;}
.y1de{bottom:740.830800pt;}
.y66{bottom:741.804667pt;}
.y2a{bottom:742.006000pt;}
.yed{bottom:743.524667pt;}
.ybf{bottom:743.719333pt;}
.y3{bottom:745.074667pt;}
.y186{bottom:752.393333pt;}
.y143{bottom:753.986000pt;}
.y16e{bottom:755.615333pt;}
.y1b1{bottom:755.721067pt;}
.y208{bottom:755.722800pt;}
.y92{bottom:756.475333pt;}
.y260{bottom:756.525467pt;}
.y234{bottom:756.750800pt;}
.y1dd{bottom:756.810800pt;}
.y117{bottom:757.579333pt;}
.y65{bottom:757.891333pt;}
.y29{bottom:758.098000pt;}
.yec{bottom:759.270000pt;}
.ybe{bottom:759.468667pt;}
.y2{bottom:763.967467pt;}
.y142{bottom:770.579333pt;}
.y16d{bottom:771.802000pt;}
.y1b0{bottom:772.065467pt;}
.y25f{bottom:772.600133pt;}
.y233{bottom:772.750800pt;}
.y1dc{bottom:772.790800pt;}
.y91{bottom:772.919333pt;}
.y116{bottom:773.800667pt;}
.y64{bottom:773.978000pt;}
.y28{bottom:774.190000pt;}
.yeb{bottom:775.015333pt;}
.ybd{bottom:775.218000pt;}
.y185{bottom:777.755600pt;}
.y141{bottom:787.172667pt;}
.y16c{bottom:787.988667pt;}
.y1af{bottom:788.408133pt;}
.y25e{bottom:788.676133pt;}
.y232{bottom:788.750800pt;}
.y1db{bottom:788.770800pt;}
.y90{bottom:789.363333pt;}
.y115{bottom:790.022000pt;}
.y63{bottom:790.064667pt;}
.y27{bottom:790.282000pt;}
.yea{bottom:790.760667pt;}
.ybc{bottom:790.967333pt;}
.y140{bottom:805.656667pt;}
.y8f{bottom:805.807333pt;}
.y16b{bottom:806.064667pt;}
.y62{bottom:806.151333pt;}
.ye9{bottom:806.506000pt;}
.y184{bottom:808.479600pt;}
.y1ae{bottom:814.577467pt;}
.y61{bottom:822.238000pt;}
.y8e{bottom:822.251333pt;}
.y25{bottom:822.260667pt;}
.y26{bottom:822.466000pt;}
.y183{bottom:823.176000pt;}
.h6{height:25.570833pt;}
.h8{height:25.571367pt;}
.h5{height:28.078125pt;}
.h4{height:29.196875pt;}
.h9{height:36.510417pt;}
.h7{height:37.437500pt;}
.hb{height:42.117188pt;}
.h3{height:43.812500pt;}
.h2{height:46.796875pt;}
.ha{height:46.927083pt;}
.h0{height:907.086667pt;}
.h1{height:907.333333pt;}
.w1{width:623.333333pt;}
.w2{width:623.581416pt;}
.w3{width:623.582627pt;}
.w0{width:623.622667pt;}
.x0{left:0.000000pt;}
.x13{left:64.211468pt;}
.x16{left:67.992801pt;}
.x1c{left:83.108801pt;}
.x1d{left:86.888801pt;}
.xd{left:88.018668pt;}
.x7{left:91.497735pt;}
.x12{left:102.006135pt;}
.x4{left:103.912935pt;}
.xa{left:105.668801pt;}
.xc{left:120.913601pt;}
.x2{left:134.740135pt;}
.x14{left:144.486135pt;}
.x5{left:147.866001pt;}
.x9{left:164.946935pt;}
.x8{left:178.531335pt;}
.x3{left:183.791335pt;}
.xe{left:200.170135pt;}
.xb{left:204.600001pt;}
.xf{left:220.115735pt;}
.x10{left:224.506135pt;}
.x1a{left:228.463468pt;}
.x6{left:249.143468pt;}
.x1b{left:258.390135pt;}
.x19{left:262.459468pt;}
.x17{left:272.552801pt;}
.x11{left:273.575468pt;}
.x15{left:299.222135pt;}
.x18{left:303.461468pt;}
.x1{left:306.547335pt;}
}




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