
    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_2b0bb5c96b1be7ab6b91e95e.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.973145;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_cd8738ad8e5728871d608b79.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.974609;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_27187f55e843d32853b606da.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.128906;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_977f8062fc8002b91186b350.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.973145;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_fa199f8f38ba6cb65ecdeaf3.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.973633;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_b35bc9b3f4b6fba0063e5756.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.973145;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_6dd08daf8a531b1681237e13.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.758789;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_46a295ada8266c46777de1e3.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.928223;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_0a50782bcbd6175fc2e498f7.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.128906;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_1407d2429909b96ddc96277f.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.128906;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_50591f88d45116c4d9655c3d.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.973145;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_b61d391302b30fda5ffff936.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.700000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_c703b8049db86e925625cae0.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.774414;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_78196ec007b83b6e93283799.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.758789;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:-17.982000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:15.984000px;}
.v1{vertical-align:17.896800px;}
.v5{vertical-align:26.976000px;}
.v4{vertical-align:54.000000px;}
.v6{vertical-align:80.976000px;}
.ls6{letter-spacing:-1.350000px;}
.lsc{letter-spacing:-1.080000px;}
.ls7{letter-spacing:-0.810000px;}
.ls5{letter-spacing:-0.720000px;}
.ls8{letter-spacing:-0.540000px;}
.lsd{letter-spacing:-0.314820px;}
.lsb{letter-spacing:-0.270000px;}
.ls4{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.000450px;}
.lsf{letter-spacing:0.003366px;}
.ls3{letter-spacing:0.008400px;}
.ls1{letter-spacing:0.009000px;}
.lse{letter-spacing:0.540000px;}
.lsa{letter-spacing:0.960000px;}
.ls2{letter-spacing:1.080000px;}
.ls9{letter-spacing:7.290000px;}
.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;}
}
.ws2{word-spacing:-13.014000px;}
.ws3{word-spacing:-11.568000px;}
.ws0{word-spacing:-7.587162px;}
.ws8a{word-spacing:-7.272342px;}
.ws4{word-spacing:-6.744144px;}
.ws9e{word-spacing:-3.294000px;}
.wsdd{word-spacing:-3.024000px;}
.wsd5{word-spacing:-2.916000px;}
.ws27{word-spacing:-2.754000px;}
.ws9{word-spacing:-2.736000px;}
.wsa{word-spacing:-2.592000px;}
.ws49{word-spacing:-2.538000px;}
.wse1{word-spacing:-2.430000px;}
.ws2c{word-spacing:-2.376000px;}
.wsbb{word-spacing:-2.322000px;}
.ws4f{word-spacing:-2.268000px;}
.ws99{word-spacing:-2.214000px;}
.ws8d{word-spacing:-2.160000px;}
.wsaa{word-spacing:-2.106000px;}
.ws12{word-spacing:-2.052000px;}
.ws36{word-spacing:-1.998000px;}
.ws86{word-spacing:-1.944000px;}
.wse0{word-spacing:-1.890000px;}
.ws29{word-spacing:-1.836000px;}
.ws78{word-spacing:-1.728000px;}
.ws28{word-spacing:-1.620000px;}
.ws52{word-spacing:-1.566000px;}
.wse2{word-spacing:-1.512000px;}
.ws6b{word-spacing:-1.458000px;}
.wsc9{word-spacing:-1.404000px;}
.ws25{word-spacing:-1.350000px;}
.ws65{word-spacing:-1.296000px;}
.ws24{word-spacing:-1.242000px;}
.wsc4{word-spacing:-1.188000px;}
.ws4a{word-spacing:-1.134000px;}
.ws13{word-spacing:-1.080000px;}
.wsc8{word-spacing:-1.026000px;}
.wsb{word-spacing:-0.972000px;}
.ws70{word-spacing:-0.918000px;}
.ws16{word-spacing:-0.864000px;}
.ws19{word-spacing:-0.810000px;}
.ws79{word-spacing:-0.756000px;}
.wsa2{word-spacing:-0.648000px;}
.wsac{word-spacing:-0.594000px;}
.ws95{word-spacing:-0.540000px;}
.ws8e{word-spacing:-0.486000px;}
.ws93{word-spacing:-0.432000px;}
.wsce{word-spacing:-0.324000px;}
.ws5a{word-spacing:-0.270000px;}
.wsf{word-spacing:-0.216000px;}
.ws83{word-spacing:-0.108000px;}
.wsd0{word-spacing:-0.054000px;}
.ws1{word-spacing:-0.037800px;}
.ws6{word-spacing:0.000000px;}
.ws32{word-spacing:0.054000px;}
.ws6a{word-spacing:0.108000px;}
.ws47{word-spacing:0.162000px;}
.ws23{word-spacing:0.216000px;}
.ws68{word-spacing:0.270000px;}
.ws4c{word-spacing:0.324000px;}
.ws76{word-spacing:0.432000px;}
.ws6d{word-spacing:0.486000px;}
.ws3f{word-spacing:0.540000px;}
.ws11{word-spacing:0.594000px;}
.wsa8{word-spacing:0.648000px;}
.wsa5{word-spacing:0.756000px;}
.ws26{word-spacing:0.810000px;}
.ws84{word-spacing:0.864000px;}
.ws8c{word-spacing:0.972000px;}
.ws10{word-spacing:1.026000px;}
.ws8b{word-spacing:1.080000px;}
.wsd{word-spacing:1.134000px;}
.wsb5{word-spacing:1.188000px;}
.ws54{word-spacing:1.242000px;}
.ws81{word-spacing:1.296000px;}
.ws21{word-spacing:1.350000px;}
.wsa7{word-spacing:1.404000px;}
.ws1b{word-spacing:1.458000px;}
.ws22{word-spacing:1.566000px;}
.ws38{word-spacing:1.620000px;}
.ws35{word-spacing:1.674000px;}
.ws73{word-spacing:1.728000px;}
.wsb3{word-spacing:1.782000px;}
.wsa9{word-spacing:1.836000px;}
.ws8{word-spacing:1.872000px;}
.ws37{word-spacing:1.890000px;}
.ws6f{word-spacing:1.944000px;}
.wscb{word-spacing:1.998000px;}
.wsa6{word-spacing:2.052000px;}
.ws57{word-spacing:2.106000px;}
.ws2f{word-spacing:2.160000px;}
.ws6c{word-spacing:2.214000px;}
.ws15{word-spacing:2.268000px;}
.ws97{word-spacing:2.322000px;}
.wse{word-spacing:2.376000px;}
.ws7c{word-spacing:2.430000px;}
.ws6e{word-spacing:2.484000px;}
.wsde{word-spacing:2.538000px;}
.ws42{word-spacing:2.646000px;}
.ws96{word-spacing:2.700000px;}
.wsc{word-spacing:2.754000px;}
.ws4d{word-spacing:2.808000px;}
.ws17{word-spacing:2.862000px;}
.ws67{word-spacing:2.916000px;}
.ws41{word-spacing:2.970000px;}
.wsd2{word-spacing:3.024000px;}
.ws51{word-spacing:3.132000px;}
.ws46{word-spacing:3.186000px;}
.ws71{word-spacing:3.240000px;}
.ws82{word-spacing:3.294000px;}
.ws7a{word-spacing:3.348000px;}
.ws2d{word-spacing:3.402000px;}
.ws1e{word-spacing:3.456000px;}
.ws85{word-spacing:3.510000px;}
.ws33{word-spacing:3.564000px;}
.wsb4{word-spacing:3.672000px;}
.wse3{word-spacing:3.726000px;}
.wsc0{word-spacing:3.780000px;}
.wsbd{word-spacing:3.834000px;}
.ws74{word-spacing:3.888000px;}
.ws2b{word-spacing:3.996000px;}
.wsa1{word-spacing:4.050000px;}
.ws7b{word-spacing:4.104000px;}
.ws9b{word-spacing:4.158000px;}
.ws75{word-spacing:4.266000px;}
.ws20{word-spacing:4.320000px;}
.wsad{word-spacing:4.374000px;}
.ws77{word-spacing:4.536000px;}
.ws94{word-spacing:4.590000px;}
.ws7{word-spacing:4.608000px;}
.wsbe{word-spacing:4.644000px;}
.ws4e{word-spacing:4.698000px;}
.ws88{word-spacing:4.752000px;}
.wsb1{word-spacing:4.806000px;}
.ws5{word-spacing:4.848000px;}
.ws58{word-spacing:4.860000px;}
.ws40{word-spacing:4.914000px;}
.wsc2{word-spacing:5.022000px;}
.ws66{word-spacing:5.130000px;}
.ws2e{word-spacing:5.184000px;}
.ws7e{word-spacing:5.292000px;}
.wsa4{word-spacing:5.346000px;}
.wsdf{word-spacing:5.454000px;}
.ws80{word-spacing:5.508000px;}
.ws9f{word-spacing:5.562000px;}
.wsd7{word-spacing:5.616000px;}
.ws45{word-spacing:5.724000px;}
.wsba{word-spacing:5.778000px;}
.wsc1{word-spacing:5.832000px;}
.ws2a{word-spacing:5.886000px;}
.ws98{word-spacing:5.940000px;}
.ws50{word-spacing:5.994000px;}
.wsd1{word-spacing:6.048000px;}
.wsa0{word-spacing:6.102000px;}
.ws53{word-spacing:6.156000px;}
.ws4b{word-spacing:6.318000px;}
.wsc3{word-spacing:6.480000px;}
.wsaf{word-spacing:6.534000px;}
.ws87{word-spacing:6.588000px;}
.ws31{word-spacing:6.696000px;}
.wsbc{word-spacing:6.804000px;}
.wsc5{word-spacing:6.858000px;}
.ws34{word-spacing:6.966000px;}
.ws1d{word-spacing:7.074000px;}
.wsb2{word-spacing:7.128000px;}
.ws9a{word-spacing:7.182000px;}
.ws44{word-spacing:7.236000px;}
.ws9c{word-spacing:7.290000px;}
.wsb6{word-spacing:7.344000px;}
.ws7d{word-spacing:7.398000px;}
.wscd{word-spacing:7.668000px;}
.wscc{word-spacing:7.776000px;}
.ws18{word-spacing:7.884000px;}
.ws43{word-spacing:7.938000px;}
.ws90{word-spacing:8.046000px;}
.wsb9{word-spacing:8.100000px;}
.ws39{word-spacing:8.154000px;}
.ws92{word-spacing:8.262000px;}
.ws30{word-spacing:8.370000px;}
.wsb7{word-spacing:8.532000px;}
.ws89{word-spacing:8.640000px;}
.ws91{word-spacing:8.910000px;}
.ws3d{word-spacing:9.018000px;}
.ws56{word-spacing:9.126000px;}
.wsab{word-spacing:9.234000px;}
.wsc7{word-spacing:9.288000px;}
.ws59{word-spacing:9.342000px;}
.wsd3{word-spacing:9.612000px;}
.ws55{word-spacing:9.666000px;}
.ws5b{word-spacing:9.774000px;}
.wsbf{word-spacing:10.098000px;}
.wsdb{word-spacing:10.476000px;}
.wsa3{word-spacing:10.692000px;}
.wsae{word-spacing:10.854000px;}
.ws48{word-spacing:11.070000px;}
.ws1f{word-spacing:11.556000px;}
.ws69{word-spacing:11.772000px;}
.wsca{word-spacing:11.934000px;}
.wsd4{word-spacing:12.042000px;}
.ws9d{word-spacing:12.204000px;}
.wsb0{word-spacing:12.744000px;}
.wsd6{word-spacing:12.960000px;}
.ws1c{word-spacing:13.068000px;}
.ws14{word-spacing:13.284000px;}
.wsc6{word-spacing:13.392000px;}
.wsda{word-spacing:13.500000px;}
.wsb8{word-spacing:13.662000px;}
.ws3e{word-spacing:13.770000px;}
.ws7f{word-spacing:14.364000px;}
.ws72{word-spacing:14.634000px;}
.wscf{word-spacing:14.796000px;}
.wsd8{word-spacing:15.012000px;}
.ws1a{word-spacing:18.414000px;}
.wsdc{word-spacing:19.548000px;}
.ws8f{word-spacing:24.894000px;}
.wsd9{word-spacing:103.968000px;}
.ws5e{word-spacing:105.984000px;}
.ws5c{word-spacing:110.784000px;}
.ws5d{word-spacing:121.728000px;}
.ws64{word-spacing:138.816000px;}
.ws60{word-spacing:166.560000px;}
.ws63{word-spacing:169.824000px;}
.ws61{word-spacing:185.040000px;}
.ws62{word-spacing:324.096000px;}
.ws5f{word-spacing:324.192000px;}
.ws3a{word-spacing:417.120000px;}
.ws3b{word-spacing:479.280000px;}
.ws3c{word-spacing:510.960000px;}
._a{margin-left:-26.568000px;}
._29{margin-left:-14.148000px;}
._9{margin-left:-12.042000px;}
._42{margin-left:-4.512000px;}
._1{margin-left:-2.976000px;}
._3{margin-left:-1.582200px;}
._2{width:1.884600px;}
._8{width:3.299400px;}
._0{width:4.752000px;}
._4{width:6.442200px;}
._b{width:7.630200px;}
._11{width:8.726400px;}
._c{width:10.184400px;}
._d{width:11.760000px;}
._2b{width:13.176000px;}
._2c{width:14.202000px;}
._38{width:17.328000px;}
._6{width:18.738000px;}
._7{width:20.412000px;}
._47{width:21.816000px;}
._46{width:23.166000px;}
._49{width:24.300000px;}
._5{width:25.704000px;}
._48{width:27.276000px;}
._2a{width:28.944000px;}
._4f{width:30.510000px;}
._45{width:31.860000px;}
._4e{width:33.102000px;}
._4b{width:35.100000px;}
._4c{width:37.152000px;}
._4d{width:40.176000px;}
._4a{width:41.634000px;}
._1a{width:129.840000px;}
._2f{width:138.318000px;}
._35{width:139.470000px;}
._31{width:141.294000px;}
._3a{width:142.512000px;}
._3f{width:144.288000px;}
._41{width:145.440000px;}
._23{width:150.384000px;}
._3d{width:152.208000px;}
._44{width:153.744000px;}
._1f{width:155.760000px;}
._e{width:166.224000px;}
._18{width:178.128000px;}
._27{width:191.328000px;}
._1b{width:193.248000px;}
._15{width:195.264000px;}
._19{width:197.520000px;}
._28{width:203.232000px;}
._2d{width:218.256000px;}
._1e{width:224.400000px;}
._14{width:226.464000px;}
._12{width:230.064000px;}
._21{width:252.144000px;}
._26{width:262.560000px;}
._20{width:272.112000px;}
._22{width:277.728000px;}
._1c{width:283.584000px;}
._16{width:288.192000px;}
._1d{width:293.568000px;}
._24{width:297.888000px;}
._3c{width:299.568000px;}
._34{width:300.672000px;}
._32{width:303.120000px;}
._17{width:305.184000px;}
._2e{width:307.152000px;}
._3e{width:312.288000px;}
._43{width:314.448000px;}
._3b{width:317.424000px;}
._36{width:318.720000px;}
._33{width:319.824000px;}
._37{width:321.120000px;}
._39{width:323.280000px;}
._40{width:325.488000px;}
._30{width:326.544000px;}
._f{width:479.280000px;}
._10{width:518.736000px;}
._13{width:619.440000px;}
._25{width:1021.248000px;}
.fc1{color:rgb(101,98,99);}
.fc0{color:rgb(35,31,32);}
.fs6{font-size:27.984000px;}
.fs2{font-size:31.482000px;}
.fs3{font-size:37.800000px;}
.fs7{font-size:42.000000px;}
.fs0{font-size:48.000000px;}
.fs1{font-size:54.000000px;}
.fs5{font-size:84.000000px;}
.fs4{font-size:102.000000px;}
.y0{bottom:0.000000px;}
.y75{bottom:34.081350px;}
.y29{bottom:35.569500px;}
.y23b{bottom:85.033500px;}
.y74{bottom:85.039350px;}
.y16a{bottom:85.054350px;}
.y16f{bottom:85.067850px;}
.y28f{bottom:85.072350px;}
.yd2{bottom:85.084350px;}
.y88{bottom:85.099350px;}
.ybd{bottom:85.108350px;}
.y192{bottom:85.147350px;}
.y9b{bottom:85.153350px;}
.y198{bottom:85.160850px;}
.y1c5{bottom:85.177350px;}
.y1f0{bottom:85.312350px;}
.y165{bottom:85.342350px;}
.y130{bottom:85.414350px;}
.y1d{bottom:85.690500px;}
.y11d{bottom:89.377650px;}
.y11b{bottom:96.133650px;}
.y23a{bottom:98.533500px;}
.y1c{bottom:100.690500px;}
.y169{bottom:101.551350px;}
.y16e{bottom:101.564850px;}
.y28e{bottom:101.569350px;}
.yd1{bottom:101.581350px;}
.y87{bottom:101.596350px;}
.ybc{bottom:101.605350px;}
.y191{bottom:101.644350px;}
.y9a{bottom:101.650350px;}
.y197{bottom:101.657850px;}
.y1c4{bottom:101.674350px;}
.y1ef{bottom:101.809350px;}
.y164{bottom:101.839350px;}
.y12f{bottom:101.911350px;}
.y11c{bottom:102.877650px;}
.y11a{bottom:102.889650px;}
.y1b{bottom:115.690500px;}
.y168{bottom:118.048350px;}
.y16d{bottom:118.061850px;}
.y28d{bottom:118.066350px;}
.yd0{bottom:118.078350px;}
.ybb{bottom:118.102350px;}
.y190{bottom:118.141350px;}
.y196{bottom:118.154850px;}
.y163{bottom:118.336350px;}
.y12e{bottom:118.408350px;}
.y119{bottom:133.969650px;}
.y28c{bottom:134.563350px;}
.ycf{bottom:134.575350px;}
.y86{bottom:134.590350px;}
.yba{bottom:134.599350px;}
.y18f{bottom:134.638350px;}
.y99{bottom:134.644350px;}
.y1c3{bottom:134.668350px;}
.y1ee{bottom:134.803350px;}
.y12d{bottom:134.905350px;}
.y118{bottom:140.725650px;}
.y167{bottom:151.042350px;}
.y16c{bottom:151.055850px;}
.y28b{bottom:151.060350px;}
.yce{bottom:151.072350px;}
.yb9{bottom:151.096350px;}
.y18e{bottom:151.135350px;}
.y98{bottom:151.141350px;}
.y195{bottom:151.148850px;}
.y1c2{bottom:151.165350px;}
.y1ed{bottom:151.300350px;}
.y162{bottom:151.330350px;}
.y12c{bottom:151.402350px;}
.y117{bottom:165.061650px;}
.y166{bottom:167.539350px;}
.y16b{bottom:167.552850px;}
.y28a{bottom:167.557350px;}
.ycd{bottom:167.569350px;}
.y85{bottom:167.584350px;}
.yb8{bottom:167.593350px;}
.y18d{bottom:167.632350px;}
.y97{bottom:167.638350px;}
.y194{bottom:167.645850px;}
.y1c1{bottom:167.662350px;}
.y1ec{bottom:167.797350px;}
.y161{bottom:167.827350px;}
.y12b{bottom:167.899350px;}
.y116{bottom:171.817650px;}
.y5{bottom:177.085950px;}
.y289{bottom:184.054350px;}
.ycc{bottom:184.066350px;}
.y84{bottom:184.081350px;}
.yb7{bottom:184.090350px;}
.y18c{bottom:184.129350px;}
.y96{bottom:184.135350px;}
.y193{bottom:184.142850px;}
.y1c0{bottom:184.159350px;}
.y1eb{bottom:184.294350px;}
.y160{bottom:184.324350px;}
.y12a{bottom:184.396350px;}
.y4{bottom:192.085950px;}
.y115{bottom:196.153650px;}
.y288{bottom:200.551350px;}
.yb6{bottom:200.587350px;}
.y18b{bottom:200.626350px;}
.y95{bottom:200.632350px;}
.y1bf{bottom:200.656350px;}
.y1ea{bottom:200.791350px;}
.y15f{bottom:200.821350px;}
.y129{bottom:200.893350px;}
.y114{bottom:209.653650px;}
.y111{bottom:209.665650px;}
.y3{bottom:211.789950px;}
.y287{bottom:217.048350px;}
.ycb{bottom:217.060350px;}
.y83{bottom:217.075350px;}
.y18a{bottom:217.123350px;}
.y1be{bottom:217.153350px;}
.y1e9{bottom:217.288350px;}
.y15e{bottom:217.318350px;}
.y128{bottom:217.390350px;}
.y170{bottom:222.597450px;}
.y113{bottom:223.153650px;}
.y110{bottom:223.165650px;}
.y2{bottom:226.789950px;}
.y286{bottom:233.545350px;}
.yca{bottom:233.557350px;}
.y82{bottom:233.572350px;}
.yb5{bottom:233.581350px;}
.y189{bottom:233.620350px;}
.y94{bottom:233.626350px;}
.y1bd{bottom:233.650350px;}
.y1e8{bottom:233.785350px;}
.y127{bottom:233.887350px;}
.y112{bottom:236.653650px;}
.y1{bottom:241.789950px;}
.y19c{bottom:243.168150px;}
.y285{bottom:250.042350px;}
.yc9{bottom:250.054350px;}
.y81{bottom:250.069350px;}
.yb4{bottom:250.078350px;}
.y188{bottom:250.117350px;}
.y93{bottom:250.123350px;}
.y1bc{bottom:250.147350px;}
.y1e7{bottom:250.282350px;}
.y15d{bottom:250.312350px;}
.y10f{bottom:254.257650px;}
.y19b{bottom:256.668150px;}
.yc8{bottom:266.551350px;}
.y80{bottom:266.566350px;}
.yb3{bottom:266.575350px;}
.y284{bottom:266.596350px;}
.y92{bottom:266.620350px;}
.y1e6{bottom:266.779350px;}
.y15c{bottom:266.809350px;}
.y126{bottom:266.881350px;}
.y10e{bottom:267.757650px;}
.y19a{bottom:270.168150px;}
.yc7{bottom:283.048350px;}
.y7f{bottom:283.063350px;}
.yb2{bottom:283.072350px;}
.y283{bottom:283.093350px;}
.y187{bottom:283.111350px;}
.y91{bottom:283.117350px;}
.y1bb{bottom:283.141350px;}
.y15b{bottom:283.306350px;}
.y125{bottom:283.378350px;}
.y10d{bottom:285.337650px;}
.yc6{bottom:299.545350px;}
.y7e{bottom:299.560350px;}
.yb1{bottom:299.569350px;}
.y282{bottom:299.590350px;}
.y186{bottom:299.608350px;}
.y90{bottom:299.614350px;}
.y1ba{bottom:299.638350px;}
.y1e5{bottom:299.773350px;}
.y15a{bottom:299.803350px;}
.y124{bottom:299.875350px;}
.y10c{bottom:302.917650px;}
.y10b{bottom:302.929650px;}
.yc5{bottom:316.042350px;}
.y7d{bottom:316.057350px;}
.yb0{bottom:316.066350px;}
.y281{bottom:316.087350px;}
.y185{bottom:316.105350px;}
.y8f{bottom:316.111350px;}
.y1b9{bottom:316.135350px;}
.y1e4{bottom:316.270350px;}
.y159{bottom:316.300350px;}
.y123{bottom:316.372350px;}
.y10a{bottom:316.429650px;}
.y1a{bottom:328.627500px;}
.y7c{bottom:332.554350px;}
.yaf{bottom:332.563350px;}
.y280{bottom:332.584350px;}
.y184{bottom:332.602350px;}
.y8e{bottom:332.608350px;}
.yc4{bottom:332.630850px;}
.y1b8{bottom:332.632350px;}
.y1e3{bottom:332.767350px;}
.y109{bottom:334.009650px;}
.y19{bottom:345.124500px;}
.y7b{bottom:349.051350px;}
.y27f{bottom:349.081350px;}
.y183{bottom:349.099350px;}
.y8d{bottom:349.105350px;}
.yc3{bottom:349.127850px;}
.y1b7{bottom:349.129350px;}
.y1e2{bottom:349.264350px;}
.y158{bottom:349.294350px;}
.y122{bottom:349.366350px;}
.y108{bottom:351.601650px;}
.y107{bottom:351.613650px;}
.y106{bottom:358.369650px;}
.y18{bottom:361.621500px;}
.yae{bottom:365.557350px;}
.y27e{bottom:365.578350px;}
.y182{bottom:365.596350px;}
.y8c{bottom:365.602350px;}
.y1b6{bottom:365.626350px;}
.y1e1{bottom:365.761350px;}
.y215{bottom:375.765450px;}
.y238{bottom:375.886950px;}
.y7a{bottom:382.045350px;}
.yad{bottom:382.054350px;}
.y27d{bottom:382.075350px;}
.y181{bottom:382.093350px;}
.y8b{bottom:382.099350px;}
.yc2{bottom:382.121850px;}
.y1b5{bottom:382.123350px;}
.y1e0{bottom:382.258350px;}
.y157{bottom:382.288350px;}
.y121{bottom:382.360350px;}
.y17{bottom:382.614000px;}
.y105{bottom:388.887300px;}
.y214{bottom:392.262450px;}
.y237{bottom:392.383950px;}
.y79{bottom:398.542350px;}
.yac{bottom:398.551350px;}
.y27c{bottom:398.572350px;}
.y180{bottom:398.590350px;}
.y8a{bottom:398.596350px;}
.y1b4{bottom:398.620350px;}
.y1df{bottom:398.755350px;}
.y156{bottom:398.785350px;}
.y120{bottom:398.857350px;}
.y16{bottom:399.114000px;}
.y213{bottom:408.759450px;}
.y78{bottom:415.039350px;}
.yab{bottom:415.048350px;}
.y27b{bottom:415.069350px;}
.y17f{bottom:415.087350px;}
.y89{bottom:415.093350px;}
.yc1{bottom:415.115850px;}
.y1b3{bottom:415.117350px;}
.y1de{bottom:415.252350px;}
.y155{bottom:415.282350px;}
.y11f{bottom:415.354350px;}
.y212{bottom:425.256450px;}
.y236{bottom:425.377950px;}
.yaa{bottom:431.545350px;}
.y27a{bottom:431.566350px;}
.y17e{bottom:431.584350px;}
.yc0{bottom:431.612850px;}
.y1b2{bottom:431.614350px;}
.y1dd{bottom:431.749350px;}
.y2a7{bottom:431.773350px;}
.ydc{bottom:431.851350px;}
.y104{bottom:431.986350px;}
.y15{bottom:432.487050px;}
.y211{bottom:441.753450px;}
.y235{bottom:441.874950px;}
.ya9{bottom:448.042350px;}
.y279{bottom:448.063350px;}
.y17d{bottom:448.081350px;}
.ybf{bottom:448.109850px;}
.y154{bottom:448.276350px;}
.y4d{bottom:448.348350px;}
.y73{bottom:448.469850px;}
.y103{bottom:448.483350px;}
.y210{bottom:458.250450px;}
.y234{bottom:458.371950px;}
.ya7{bottom:464.007300px;}
.ya8{bottom:464.539350px;}
.y278{bottom:464.560350px;}
.ybe{bottom:464.606850px;}
.y1b1{bottom:464.608350px;}
.y1dc{bottom:464.743350px;}
.y2a6{bottom:464.767350px;}
.y153{bottom:464.773350px;}
.y4c{bottom:464.845350px;}
.y72{bottom:464.966850px;}
.y102{bottom:464.980350px;}
.y14{bottom:470.246550px;}
.y20f{bottom:474.747450px;}
.y277{bottom:481.057350px;}
.y17c{bottom:481.075350px;}
.y1b0{bottom:481.105350px;}
.y1db{bottom:481.240350px;}
.y2a5{bottom:481.264350px;}
.y152{bottom:481.270350px;}
.y4b{bottom:481.342350px;}
.y71{bottom:481.463850px;}
.y101{bottom:481.477350px;}
.y13{bottom:486.743550px;}
.y20e{bottom:491.244450px;}
.y233{bottom:491.365950px;}
.y276{bottom:497.554350px;}
.y17b{bottom:497.572350px;}
.y1da{bottom:497.737350px;}
.y2a4{bottom:497.761350px;}
.y151{bottom:497.767350px;}
.ydb{bottom:497.839350px;}
.y70{bottom:497.960850px;}
.y100{bottom:497.974350px;}
.y12{bottom:503.240550px;}
.y20d{bottom:507.741450px;}
.y232{bottom:507.862950px;}
.yd4{bottom:512.764800px;}
.y275{bottom:514.051350px;}
.y17a{bottom:514.069350px;}
.y1af{bottom:514.099350px;}
.y1d9{bottom:514.234350px;}
.y2a3{bottom:514.258350px;}
.y150{bottom:514.264350px;}
.y4a{bottom:514.336350px;}
.y6f{bottom:514.457850px;}
.yff{bottom:514.471350px;}
.y11{bottom:519.737550px;}
.y20c{bottom:524.238450px;}
.y231{bottom:524.359950px;}
.yd3{bottom:526.264800px;}
.y274{bottom:530.548350px;}
.y179{bottom:530.566350px;}
.y1ae{bottom:530.596350px;}
.y1d8{bottom:530.731350px;}
.y2a2{bottom:530.755350px;}
.y14f{bottom:530.761350px;}
.y11e{bottom:530.833350px;}
.yfe{bottom:530.968350px;}
.y10{bottom:536.234550px;}
.y20b{bottom:540.735450px;}
.y230{bottom:540.856950px;}
.y273{bottom:547.045350px;}
.y178{bottom:547.063350px;}
.y1ad{bottom:547.093350px;}
.y1d7{bottom:547.228350px;}
.y2a1{bottom:547.252350px;}
.y14e{bottom:547.258350px;}
.y49{bottom:547.330350px;}
.y6e{bottom:547.451850px;}
.yfd{bottom:547.465350px;}
.yf{bottom:552.731550px;}
.y20a{bottom:557.232450px;}
.y22f{bottom:557.353950px;}
.y1ac{bottom:563.590350px;}
.y1d6{bottom:563.725350px;}
.y2a0{bottom:563.749350px;}
.y14d{bottom:563.755350px;}
.y48{bottom:563.827350px;}
.ya6{bottom:563.925900px;}
.y6d{bottom:563.948850px;}
.yfc{bottom:563.962350px;}
.y209{bottom:573.729450px;}
.y22e{bottom:573.850950px;}
.y272{bottom:580.039350px;}
.y177{bottom:580.057350px;}
.y1ab{bottom:580.087350px;}
.y1d5{bottom:580.222350px;}
.y29f{bottom:580.246350px;}
.y14c{bottom:580.252350px;}
.y47{bottom:580.324350px;}
.y6c{bottom:580.445850px;}
.yfb{bottom:580.459350px;}
.ye{bottom:585.725550px;}
.y208{bottom:590.226450px;}
.y22d{bottom:590.347950px;}
.y176{bottom:596.554350px;}
.y1aa{bottom:596.584350px;}
.y1d4{bottom:596.719350px;}
.y29e{bottom:596.743350px;}
.y14b{bottom:596.749350px;}
.y46{bottom:596.821350px;}
.y6b{bottom:596.942850px;}
.y207{bottom:606.723450px;}
.y22c{bottom:606.844950px;}
.y175{bottom:613.051350px;}
.y1a9{bottom:613.081350px;}
.y1d3{bottom:613.216350px;}
.y29d{bottom:613.240350px;}
.y14a{bottom:613.246350px;}
.y45{bottom:613.318350px;}
.y6a{bottom:613.439850px;}
.yfa{bottom:613.453350px;}
.y206{bottom:623.220450px;}
.y22b{bottom:623.341950px;}
.y25b{bottom:625.370700px;}
.y271{bottom:626.390700px;}
.y174{bottom:629.548350px;}
.y1d2{bottom:629.713350px;}
.y29c{bottom:629.737350px;}
.y149{bottom:629.743350px;}
.y44{bottom:629.815350px;}
.y69{bottom:629.936850px;}
.yf9{bottom:629.950350px;}
.yd{bottom:636.264000px;}
.y25a{bottom:638.870700px;}
.y205{bottom:639.717450px;}
.y22a{bottom:639.838950px;}
.y270{bottom:639.890700px;}
.y173{bottom:646.045350px;}
.y1a8{bottom:646.075350px;}
.y1d1{bottom:646.210350px;}
.y29b{bottom:646.234350px;}
.y43{bottom:646.312350px;}
.y68{bottom:646.433850px;}
.yf8{bottom:646.447350px;}
.y204{bottom:656.214450px;}
.y229{bottom:656.335950px;}
.y259{bottom:656.450700px;}
.y26f{bottom:657.470700px;}
.y172{bottom:662.542350px;}
.y1a7{bottom:662.572350px;}
.y1d0{bottom:662.707350px;}
.y29a{bottom:662.731350px;}
.y148{bottom:662.737350px;}
.y42{bottom:662.809350px;}
.y67{bottom:662.930850px;}
.yf7{bottom:662.944350px;}
.y258{bottom:663.206700px;}
.y228{bottom:672.832950px;}
.yc{bottom:674.023500px;}
.y26e{bottom:675.050700px;}
.y171{bottom:679.039350px;}
.y1a6{bottom:679.069350px;}
.y1cf{bottom:679.204350px;}
.y299{bottom:679.228350px;}
.y147{bottom:679.234350px;}
.y41{bottom:679.306350px;}
.ya5{bottom:681.429900px;}
.y257{bottom:687.542700px;}
.y203{bottom:689.208450px;}
.y227{bottom:689.329950px;}
.yb{bottom:690.520500px;}
.y26d{bottom:692.630700px;}
.y256{bottom:694.298700px;}
.ya4{bottom:694.929900px;}
.y1a5{bottom:695.566350px;}
.y1ce{bottom:695.701350px;}
.y298{bottom:695.725350px;}
.y146{bottom:695.731350px;}
.yda{bottom:695.803350px;}
.y66{bottom:695.924850px;}
.yf6{bottom:695.938350px;}
.y202{bottom:705.705450px;}
.ya{bottom:707.017500px;}
.y26c{bottom:710.210700px;}
.y1a4{bottom:712.063350px;}
.y1cd{bottom:712.198350px;}
.y145{bottom:712.228350px;}
.y297{bottom:712.240350px;}
.y40{bottom:712.300350px;}
.y65{bottom:712.421850px;}
.yf5{bottom:712.435350px;}
.y255{bottom:718.634700px;}
.y201{bottom:722.202450px;}
.y226{bottom:722.323950px;}
.y199{bottom:723.386850px;}
.y9{bottom:723.514500px;}
.y254{bottom:725.390700px;}
.y26b{bottom:727.790700px;}
.y1a3{bottom:728.560350px;}
.y1cc{bottom:728.695350px;}
.y144{bottom:728.725350px;}
.y296{bottom:728.737350px;}
.y3f{bottom:728.797350px;}
.yf4{bottom:728.932350px;}
.y200{bottom:738.699450px;}
.y225{bottom:738.820950px;}
.y8{bottom:740.011500px;}
.y1a2{bottom:745.057350px;}
.y1cb{bottom:745.192350px;}
.y143{bottom:745.225350px;}
.y295{bottom:745.234350px;}
.y3e{bottom:745.294350px;}
.y26a{bottom:745.370700px;}
.y64{bottom:745.415850px;}
.yf3{bottom:745.429350px;}
.y253{bottom:749.726700px;}
.y269{bottom:752.126700px;}
.y1ff{bottom:755.196450px;}
.y224{bottom:755.317950px;}
.y252{bottom:756.482700px;}
.y7{bottom:756.508500px;}
.y1a1{bottom:761.554350px;}
.y142{bottom:761.731350px;}
.y3d{bottom:761.791350px;}
.y63{bottom:761.912850px;}
.yf2{bottom:761.926350px;}
.y1fe{bottom:771.693450px;}
.y223{bottom:771.814950px;}
.y268{bottom:776.462700px;}
.y1a0{bottom:778.051350px;}
.y1ca{bottom:778.186350px;}
.y141{bottom:778.228350px;}
.yd9{bottom:778.288350px;}
.y62{bottom:778.409850px;}
.yf1{bottom:778.423350px;}
.y251{bottom:780.818700px;}
.y250{bottom:787.574700px;}
.y1fd{bottom:788.190450px;}
.y222{bottom:788.311950px;}
.y6{bottom:789.502500px;}
.y267{bottom:794.042700px;}
.y19f{bottom:794.548350px;}
.y1c9{bottom:794.683350px;}
.y140{bottom:794.725350px;}
.y3c{bottom:794.785350px;}
.y61{bottom:794.906850px;}
.yf0{bottom:794.920350px;}
.y1fc{bottom:804.687450px;}
.ya3{bottom:807.232200px;}
.y266{bottom:807.542700px;}
.y1c8{bottom:811.180350px;}
.y13f{bottom:811.234350px;}
.y294{bottom:811.237350px;}
.y3b{bottom:811.282350px;}
.y60{bottom:811.403850px;}
.yef{bottom:811.417350px;}
.y24f{bottom:811.910700px;}
.y262{bottom:814.298700px;}
.y24e{bottom:818.666700px;}
.y265{bottom:821.042700px;}
.y221{bottom:821.305950px;}
.y23{bottom:827.350800px;}
.y19e{bottom:827.542350px;}
.y1c7{bottom:827.677350px;}
.y293{bottom:827.734350px;}
.y3a{bottom:827.779350px;}
.y261{bottom:827.798700px;}
.y5f{bottom:827.900850px;}
.yee{bottom:827.914350px;}
.y264{bottom:834.542700px;}
.y1fb{bottom:837.681450px;}
.y220{bottom:837.802950px;}
.y24d{bottom:843.002700px;}
.y19d{bottom:844.039350px;}
.y1c6{bottom:844.174350px;}
.y13e{bottom:844.228350px;}
.y292{bottom:844.231350px;}
.y39{bottom:844.276350px;}
.y5e{bottom:844.397850px;}
.yed{bottom:844.411350px;}
.y263{bottom:848.042700px;}
.y24c{bottom:849.758700px;}
.y21f{bottom:854.299950px;}
.y13d{bottom:860.725350px;}
.y291{bottom:860.728350px;}
.y38{bottom:860.773350px;}
.y5d{bottom:860.894850px;}
.yec{bottom:860.908350px;}
.y22{bottom:863.616750px;}
.y260{bottom:865.634700px;}
.y1fa{bottom:870.675450px;}
.y21e{bottom:870.796950px;}
.y24b{bottom:874.094700px;}
.y290{bottom:877.225350px;}
.y37{bottom:877.270350px;}
.yeb{bottom:877.405350px;}
.y13c{bottom:877.459350px;}
.y24a{bottom:880.850700px;}
.y1f1{bottom:882.921150px;}
.y25f{bottom:883.214700px;}
.y1f9{bottom:887.172450px;}
.y21d{bottom:887.293950px;}
.y21{bottom:889.110750px;}
.y36{bottom:893.767350px;}
.y5c{bottom:893.888850px;}
.y25e{bottom:900.794700px;}
.y1f8{bottom:903.669450px;}
.y21c{bottom:903.790950px;}
.y249{bottom:905.186700px;}
.yd8{bottom:910.264350px;}
.y5b{bottom:910.385850px;}
.yea{bottom:910.399350px;}
.y13b{bottom:910.453350px;}
.y25d{bottom:918.374700px;}
.y1f7{bottom:920.166450px;}
.y21b{bottom:920.287950px;}
.y248{bottom:922.766700px;}
.y35{bottom:926.761350px;}
.y5a{bottom:926.882850px;}
.ye9{bottom:926.896350px;}
.y20{bottom:927.390600px;}
.y247{bottom:929.522700px;}
.y25c{bottom:935.954700px;}
.y1f6{bottom:936.663450px;}
.y21a{bottom:936.784950px;}
.yd7{bottom:943.258350px;}
.y59{bottom:943.379850px;}
.ye8{bottom:943.393350px;}
.y13a{bottom:943.447350px;}
.ya0{bottom:950.620200px;}
.y219{bottom:953.281950px;}
.y246{bottom:953.858700px;}
.ya2{bottom:957.364200px;}
.y1f{bottom:957.378600px;}
.y34{bottom:959.755350px;}
.y58{bottom:959.876850px;}
.ye7{bottom:959.890350px;}
.y139{bottom:959.944350px;}
.y9f{bottom:964.120200px;}
.y1f5{bottom:969.657450px;}
.ya1{bottom:970.864200px;}
.y245{bottom:971.438700px;}
.yd6{bottom:976.252350px;}
.ye6{bottom:976.387350px;}
.y138{bottom:976.441350px;}
.y9e{bottom:977.620200px;}
.y244{bottom:978.194700px;}
.y1f4{bottom:986.154450px;}
.y218{bottom:986.275950px;}
.y1e{bottom:987.366600px;}
.y33{bottom:992.749350px;}
.y57{bottom:992.870850px;}
.ye5{bottom:992.884350px;}
.y243{bottom:1002.530700px;}
.y1f3{bottom:1002.651450px;}
.y217{bottom:1002.772950px;}
.y32{bottom:1009.246350px;}
.y56{bottom:1009.367850px;}
.ye4{bottom:1009.381350px;}
.y137{bottom:1009.435350px;}
.y1f2{bottom:1019.148450px;}
.y216{bottom:1019.269950px;}
.y242{bottom:1020.110700px;}
.y31{bottom:1025.743350px;}
.y55{bottom:1025.864850px;}
.ye3{bottom:1025.878350px;}
.y136{bottom:1025.932350px;}
.y241{bottom:1026.866700px;}
.y9d{bottom:1034.604750px;}
.y30{bottom:1042.240350px;}
.y54{bottom:1042.361850px;}
.ye2{bottom:1042.375350px;}
.y240{bottom:1051.202700px;}
.y2f{bottom:1058.737350px;}
.y53{bottom:1058.858850px;}
.y135{bottom:1058.926350px;}
.y239{bottom:1061.569500px;}
.y23f{bottom:1068.782700px;}
.y2e{bottom:1075.234350px;}
.y52{bottom:1075.355850px;}
.ye1{bottom:1075.369350px;}
.y134{bottom:1075.423350px;}
.y23e{bottom:1075.538700px;}
.y2d{bottom:1091.731350px;}
.y51{bottom:1091.852850px;}
.ye0{bottom:1091.866350px;}
.y23d{bottom:1099.874700px;}
.y2c{bottom:1108.228350px;}
.y50{bottom:1108.349850px;}
.ydf{bottom:1108.363350px;}
.y133{bottom:1108.417350px;}
.y28{bottom:1108.719150px;}
.y23c{bottom:1117.454700px;}
.y27{bottom:1123.719150px;}
.yd5{bottom:1124.725350px;}
.y4f{bottom:1124.846850px;}
.yde{bottom:1124.860350px;}
.y132{bottom:1124.914350px;}
.y26{bottom:1138.719150px;}
.y2b{bottom:1141.222350px;}
.y4e{bottom:1141.343850px;}
.ydd{bottom:1141.357350px;}
.y131{bottom:1141.411350px;}
.y9c{bottom:1142.356950px;}
.y25{bottom:1153.719150px;}
.y24{bottom:1168.719150px;}
.y77{bottom:1190.580900px;}
.y2a{bottom:1199.617350px;}
.y76{bottom:1210.247400px;}
.h8{height:31.271906px;}
.hd{height:31.766602px;}
.he{height:36.304688px;}
.h10{height:36.328125px;}
.h3{height:36.375000px;}
.hc{height:38.308594px;}
.h6{height:40.842773px;}
.h5{height:40.869141px;}
.h7{height:40.921875px;}
.h2{height:43.781250px;}
.h9{height:43.783050px;}
.h18{height:48.305906px;}
.h19{height:49.073906px;}
.h1a{height:49.193906px;}
.h4{height:49.253906px;}
.h12{height:63.280688px;}
.h16{height:63.304125px;}
.hb{height:63.533203px;}
.h15{height:70.757250px;}
.h13{height:90.256687px;}
.h11{height:90.328125px;}
.ha{height:93.035156px;}
.h14{height:97.733250px;}
.hf{height:97.781250px;}
.h17{height:124.757250px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x12{left:63.779550px;}
.x15{left:68.031450px;}
.x1c{left:76.543200px;}
.x31{left:82.740600px;}
.x1{left:85.039350px;}
.x2b{left:91.228950px;}
.x1a{left:92.847300px;}
.x24{left:97.292700px;}
.x33{left:99.284550px;}
.x27{left:102.371100px;}
.xb{left:104.168850px;}
.x23{left:105.363000px;}
.x1e{left:110.491650px;}
.x29{left:117.015300px;}
.x34{left:120.544350px;}
.x26{left:124.854150px;}
.x28{left:133.379100px;}
.x16{left:165.826800px;}
.xa{left:167.124000px;}
.x10{left:210.589050px;}
.x11{left:217.130550px;}
.x1d{left:246.898950px;}
.x32{left:263.808600px;}
.x1f{left:267.883650px;}
.x2a{left:277.156950px;}
.x17{left:327.406800px;}
.x14{left:329.433450px;}
.x25{left:334.544550px;}
.x22{left:338.851650px;}
.xe{left:362.929350px;}
.x1b{left:375.591300px;}
.x2c{left:417.028950px;}
.x20{left:420.547650px;}
.x35{left:443.902350px;}
.x13{left:446.450550px;}
.x2f{left:450.897900px;}
.x2e{left:465.417900px;}
.xc{left:467.710350px;}
.xd{left:479.765850px;}
.x18{left:488.986800px;}
.x21{left:493.435650px;}
.x4{left:544.818000px;}
.x9{left:595.134450px;}
.x3{left:635.316000px;}
.x2{left:636.733500px;}
.x30{left:646.497900px;}
.x19{left:650.566800px;}
.x5{left:658.026450px;}
.x8{left:700.578450px;}
.x7{left:711.834450px;}
.x6{left:713.814450px;}
.x2d{left:797.561400px;}
.xf{left:801.252900px;}
@media print{
.v2{vertical-align:-15.984000pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:14.208000pt;}
.v1{vertical-align:15.908267pt;}
.v5{vertical-align:23.978667pt;}
.v4{vertical-align:48.000000pt;}
.v6{vertical-align:71.978667pt;}
.ls6{letter-spacing:-1.200000pt;}
.lsc{letter-spacing:-0.960000pt;}
.ls7{letter-spacing:-0.720000pt;}
.ls5{letter-spacing:-0.640000pt;}
.ls8{letter-spacing:-0.480000pt;}
.lsd{letter-spacing:-0.279840pt;}
.lsb{letter-spacing:-0.240000pt;}
.ls4{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.000400pt;}
.lsf{letter-spacing:0.002992pt;}
.ls3{letter-spacing:0.007467pt;}
.ls1{letter-spacing:0.008000pt;}
.lse{letter-spacing:0.480000pt;}
.lsa{letter-spacing:0.853333pt;}
.ls2{letter-spacing:0.960000pt;}
.ls9{letter-spacing:6.480000pt;}
.ws2{word-spacing:-11.568000pt;}
.ws3{word-spacing:-10.282667pt;}
.ws0{word-spacing:-6.744144pt;}
.ws8a{word-spacing:-6.464304pt;}
.ws4{word-spacing:-5.994795pt;}
.ws9e{word-spacing:-2.928000pt;}
.wsdd{word-spacing:-2.688000pt;}
.wsd5{word-spacing:-2.592000pt;}
.ws27{word-spacing:-2.448000pt;}
.ws9{word-spacing:-2.432000pt;}
.wsa{word-spacing:-2.304000pt;}
.ws49{word-spacing:-2.256000pt;}
.wse1{word-spacing:-2.160000pt;}
.ws2c{word-spacing:-2.112000pt;}
.wsbb{word-spacing:-2.064000pt;}
.ws4f{word-spacing:-2.016000pt;}
.ws99{word-spacing:-1.968000pt;}
.ws8d{word-spacing:-1.920000pt;}
.wsaa{word-spacing:-1.872000pt;}
.ws12{word-spacing:-1.824000pt;}
.ws36{word-spacing:-1.776000pt;}
.ws86{word-spacing:-1.728000pt;}
.wse0{word-spacing:-1.680000pt;}
.ws29{word-spacing:-1.632000pt;}
.ws78{word-spacing:-1.536000pt;}
.ws28{word-spacing:-1.440000pt;}
.ws52{word-spacing:-1.392000pt;}
.wse2{word-spacing:-1.344000pt;}
.ws6b{word-spacing:-1.296000pt;}
.wsc9{word-spacing:-1.248000pt;}
.ws25{word-spacing:-1.200000pt;}
.ws65{word-spacing:-1.152000pt;}
.ws24{word-spacing:-1.104000pt;}
.wsc4{word-spacing:-1.056000pt;}
.ws4a{word-spacing:-1.008000pt;}
.ws13{word-spacing:-0.960000pt;}
.wsc8{word-spacing:-0.912000pt;}
.wsb{word-spacing:-0.864000pt;}
.ws70{word-spacing:-0.816000pt;}
.ws16{word-spacing:-0.768000pt;}
.ws19{word-spacing:-0.720000pt;}
.ws79{word-spacing:-0.672000pt;}
.wsa2{word-spacing:-0.576000pt;}
.wsac{word-spacing:-0.528000pt;}
.ws95{word-spacing:-0.480000pt;}
.ws8e{word-spacing:-0.432000pt;}
.ws93{word-spacing:-0.384000pt;}
.wsce{word-spacing:-0.288000pt;}
.ws5a{word-spacing:-0.240000pt;}
.wsf{word-spacing:-0.192000pt;}
.ws83{word-spacing:-0.096000pt;}
.wsd0{word-spacing:-0.048000pt;}
.ws1{word-spacing:-0.033600pt;}
.ws6{word-spacing:0.000000pt;}
.ws32{word-spacing:0.048000pt;}
.ws6a{word-spacing:0.096000pt;}
.ws47{word-spacing:0.144000pt;}
.ws23{word-spacing:0.192000pt;}
.ws68{word-spacing:0.240000pt;}
.ws4c{word-spacing:0.288000pt;}
.ws76{word-spacing:0.384000pt;}
.ws6d{word-spacing:0.432000pt;}
.ws3f{word-spacing:0.480000pt;}
.ws11{word-spacing:0.528000pt;}
.wsa8{word-spacing:0.576000pt;}
.wsa5{word-spacing:0.672000pt;}
.ws26{word-spacing:0.720000pt;}
.ws84{word-spacing:0.768000pt;}
.ws8c{word-spacing:0.864000pt;}
.ws10{word-spacing:0.912000pt;}
.ws8b{word-spacing:0.960000pt;}
.wsd{word-spacing:1.008000pt;}
.wsb5{word-spacing:1.056000pt;}
.ws54{word-spacing:1.104000pt;}
.ws81{word-spacing:1.152000pt;}
.ws21{word-spacing:1.200000pt;}
.wsa7{word-spacing:1.248000pt;}
.ws1b{word-spacing:1.296000pt;}
.ws22{word-spacing:1.392000pt;}
.ws38{word-spacing:1.440000pt;}
.ws35{word-spacing:1.488000pt;}
.ws73{word-spacing:1.536000pt;}
.wsb3{word-spacing:1.584000pt;}
.wsa9{word-spacing:1.632000pt;}
.ws8{word-spacing:1.664000pt;}
.ws37{word-spacing:1.680000pt;}
.ws6f{word-spacing:1.728000pt;}
.wscb{word-spacing:1.776000pt;}
.wsa6{word-spacing:1.824000pt;}
.ws57{word-spacing:1.872000pt;}
.ws2f{word-spacing:1.920000pt;}
.ws6c{word-spacing:1.968000pt;}
.ws15{word-spacing:2.016000pt;}
.ws97{word-spacing:2.064000pt;}
.wse{word-spacing:2.112000pt;}
.ws7c{word-spacing:2.160000pt;}
.ws6e{word-spacing:2.208000pt;}
.wsde{word-spacing:2.256000pt;}
.ws42{word-spacing:2.352000pt;}
.ws96{word-spacing:2.400000pt;}
.wsc{word-spacing:2.448000pt;}
.ws4d{word-spacing:2.496000pt;}
.ws17{word-spacing:2.544000pt;}
.ws67{word-spacing:2.592000pt;}
.ws41{word-spacing:2.640000pt;}
.wsd2{word-spacing:2.688000pt;}
.ws51{word-spacing:2.784000pt;}
.ws46{word-spacing:2.832000pt;}
.ws71{word-spacing:2.880000pt;}
.ws82{word-spacing:2.928000pt;}
.ws7a{word-spacing:2.976000pt;}
.ws2d{word-spacing:3.024000pt;}
.ws1e{word-spacing:3.072000pt;}
.ws85{word-spacing:3.120000pt;}
.ws33{word-spacing:3.168000pt;}
.wsb4{word-spacing:3.264000pt;}
.wse3{word-spacing:3.312000pt;}
.wsc0{word-spacing:3.360000pt;}
.wsbd{word-spacing:3.408000pt;}
.ws74{word-spacing:3.456000pt;}
.ws2b{word-spacing:3.552000pt;}
.wsa1{word-spacing:3.600000pt;}
.ws7b{word-spacing:3.648000pt;}
.ws9b{word-spacing:3.696000pt;}
.ws75{word-spacing:3.792000pt;}
.ws20{word-spacing:3.840000pt;}
.wsad{word-spacing:3.888000pt;}
.ws77{word-spacing:4.032000pt;}
.ws94{word-spacing:4.080000pt;}
.ws7{word-spacing:4.096000pt;}
.wsbe{word-spacing:4.128000pt;}
.ws4e{word-spacing:4.176000pt;}
.ws88{word-spacing:4.224000pt;}
.wsb1{word-spacing:4.272000pt;}
.ws5{word-spacing:4.309333pt;}
.ws58{word-spacing:4.320000pt;}
.ws40{word-spacing:4.368000pt;}
.wsc2{word-spacing:4.464000pt;}
.ws66{word-spacing:4.560000pt;}
.ws2e{word-spacing:4.608000pt;}
.ws7e{word-spacing:4.704000pt;}
.wsa4{word-spacing:4.752000pt;}
.wsdf{word-spacing:4.848000pt;}
.ws80{word-spacing:4.896000pt;}
.ws9f{word-spacing:4.944000pt;}
.wsd7{word-spacing:4.992000pt;}
.ws45{word-spacing:5.088000pt;}
.wsba{word-spacing:5.136000pt;}
.wsc1{word-spacing:5.184000pt;}
.ws2a{word-spacing:5.232000pt;}
.ws98{word-spacing:5.280000pt;}
.ws50{word-spacing:5.328000pt;}
.wsd1{word-spacing:5.376000pt;}
.wsa0{word-spacing:5.424000pt;}
.ws53{word-spacing:5.472000pt;}
.ws4b{word-spacing:5.616000pt;}
.wsc3{word-spacing:5.760000pt;}
.wsaf{word-spacing:5.808000pt;}
.ws87{word-spacing:5.856000pt;}
.ws31{word-spacing:5.952000pt;}
.wsbc{word-spacing:6.048000pt;}
.wsc5{word-spacing:6.096000pt;}
.ws34{word-spacing:6.192000pt;}
.ws1d{word-spacing:6.288000pt;}
.wsb2{word-spacing:6.336000pt;}
.ws9a{word-spacing:6.384000pt;}
.ws44{word-spacing:6.432000pt;}
.ws9c{word-spacing:6.480000pt;}
.wsb6{word-spacing:6.528000pt;}
.ws7d{word-spacing:6.576000pt;}
.wscd{word-spacing:6.816000pt;}
.wscc{word-spacing:6.912000pt;}
.ws18{word-spacing:7.008000pt;}
.ws43{word-spacing:7.056000pt;}
.ws90{word-spacing:7.152000pt;}
.wsb9{word-spacing:7.200000pt;}
.ws39{word-spacing:7.248000pt;}
.ws92{word-spacing:7.344000pt;}
.ws30{word-spacing:7.440000pt;}
.wsb7{word-spacing:7.584000pt;}
.ws89{word-spacing:7.680000pt;}
.ws91{word-spacing:7.920000pt;}
.ws3d{word-spacing:8.016000pt;}
.ws56{word-spacing:8.112000pt;}
.wsab{word-spacing:8.208000pt;}
.wsc7{word-spacing:8.256000pt;}
.ws59{word-spacing:8.304000pt;}
.wsd3{word-spacing:8.544000pt;}
.ws55{word-spacing:8.592000pt;}
.ws5b{word-spacing:8.688000pt;}
.wsbf{word-spacing:8.976000pt;}
.wsdb{word-spacing:9.312000pt;}
.wsa3{word-spacing:9.504000pt;}
.wsae{word-spacing:9.648000pt;}
.ws48{word-spacing:9.840000pt;}
.ws1f{word-spacing:10.272000pt;}
.ws69{word-spacing:10.464000pt;}
.wsca{word-spacing:10.608000pt;}
.wsd4{word-spacing:10.704000pt;}
.ws9d{word-spacing:10.848000pt;}
.wsb0{word-spacing:11.328000pt;}
.wsd6{word-spacing:11.520000pt;}
.ws1c{word-spacing:11.616000pt;}
.ws14{word-spacing:11.808000pt;}
.wsc6{word-spacing:11.904000pt;}
.wsda{word-spacing:12.000000pt;}
.wsb8{word-spacing:12.144000pt;}
.ws3e{word-spacing:12.240000pt;}
.ws7f{word-spacing:12.768000pt;}
.ws72{word-spacing:13.008000pt;}
.wscf{word-spacing:13.152000pt;}
.wsd8{word-spacing:13.344000pt;}
.ws1a{word-spacing:16.368000pt;}
.wsdc{word-spacing:17.376000pt;}
.ws8f{word-spacing:22.128000pt;}
.wsd9{word-spacing:92.416000pt;}
.ws5e{word-spacing:94.208000pt;}
.ws5c{word-spacing:98.474667pt;}
.ws5d{word-spacing:108.202667pt;}
.ws64{word-spacing:123.392000pt;}
.ws60{word-spacing:148.053333pt;}
.ws63{word-spacing:150.954667pt;}
.ws61{word-spacing:164.480000pt;}
.ws62{word-spacing:288.085333pt;}
.ws5f{word-spacing:288.170667pt;}
.ws3a{word-spacing:370.773333pt;}
.ws3b{word-spacing:426.026667pt;}
.ws3c{word-spacing:454.186667pt;}
._a{margin-left:-23.616000pt;}
._29{margin-left:-12.576000pt;}
._9{margin-left:-10.704000pt;}
._42{margin-left:-4.010667pt;}
._1{margin-left:-2.645333pt;}
._3{margin-left:-1.406400pt;}
._2{width:1.675200pt;}
._8{width:2.932800pt;}
._0{width:4.224000pt;}
._4{width:5.726400pt;}
._b{width:6.782400pt;}
._11{width:7.756800pt;}
._c{width:9.052800pt;}
._d{width:10.453333pt;}
._2b{width:11.712000pt;}
._2c{width:12.624000pt;}
._38{width:15.402667pt;}
._6{width:16.656000pt;}
._7{width:18.144000pt;}
._47{width:19.392000pt;}
._46{width:20.592000pt;}
._49{width:21.600000pt;}
._5{width:22.848000pt;}
._48{width:24.245333pt;}
._2a{width:25.728000pt;}
._4f{width:27.120000pt;}
._45{width:28.320000pt;}
._4e{width:29.424000pt;}
._4b{width:31.200000pt;}
._4c{width:33.024000pt;}
._4d{width:35.712000pt;}
._4a{width:37.008000pt;}
._1a{width:115.413333pt;}
._2f{width:122.949333pt;}
._35{width:123.973333pt;}
._31{width:125.594667pt;}
._3a{width:126.677333pt;}
._3f{width:128.256000pt;}
._41{width:129.280000pt;}
._23{width:133.674667pt;}
._3d{width:135.296000pt;}
._44{width:136.661333pt;}
._1f{width:138.453333pt;}
._e{width:147.754667pt;}
._18{width:158.336000pt;}
._27{width:170.069333pt;}
._1b{width:171.776000pt;}
._15{width:173.568000pt;}
._19{width:175.573333pt;}
._28{width:180.650667pt;}
._2d{width:194.005333pt;}
._1e{width:199.466667pt;}
._14{width:201.301333pt;}
._12{width:204.501333pt;}
._21{width:224.128000pt;}
._26{width:233.386667pt;}
._20{width:241.877333pt;}
._22{width:246.869333pt;}
._1c{width:252.074667pt;}
._16{width:256.170667pt;}
._1d{width:260.949333pt;}
._24{width:264.789333pt;}
._3c{width:266.282667pt;}
._34{width:267.264000pt;}
._32{width:269.440000pt;}
._17{width:271.274667pt;}
._2e{width:273.024000pt;}
._3e{width:277.589333pt;}
._43{width:279.509333pt;}
._3b{width:282.154667pt;}
._36{width:283.306667pt;}
._33{width:284.288000pt;}
._37{width:285.440000pt;}
._39{width:287.360000pt;}
._40{width:289.322667pt;}
._30{width:290.261333pt;}
._f{width:426.026667pt;}
._10{width:461.098667pt;}
._13{width:550.613333pt;}
._25{width:907.776000pt;}
.fs6{font-size:24.874667pt;}
.fs2{font-size:27.984000pt;}
.fs3{font-size:33.600000pt;}
.fs7{font-size:37.333333pt;}
.fs0{font-size:42.666667pt;}
.fs1{font-size:48.000000pt;}
.fs5{font-size:74.666667pt;}
.fs4{font-size:90.666667pt;}
.y0{bottom:0.000000pt;}
.y75{bottom:30.294533pt;}
.y29{bottom:31.617333pt;}
.y23b{bottom:75.585333pt;}
.y74{bottom:75.590533pt;}
.y16a{bottom:75.603867pt;}
.y16f{bottom:75.615867pt;}
.y28f{bottom:75.619867pt;}
.yd2{bottom:75.630533pt;}
.y88{bottom:75.643867pt;}
.ybd{bottom:75.651867pt;}
.y192{bottom:75.686533pt;}
.y9b{bottom:75.691867pt;}
.y198{bottom:75.698533pt;}
.y1c5{bottom:75.713200pt;}
.y1f0{bottom:75.833200pt;}
.y165{bottom:75.859867pt;}
.y130{bottom:75.923867pt;}
.y1d{bottom:76.169333pt;}
.y11d{bottom:79.446800pt;}
.y11b{bottom:85.452133pt;}
.y23a{bottom:87.585333pt;}
.y1c{bottom:89.502667pt;}
.y169{bottom:90.267867pt;}
.y16e{bottom:90.279867pt;}
.y28e{bottom:90.283867pt;}
.yd1{bottom:90.294533pt;}
.y87{bottom:90.307867pt;}
.ybc{bottom:90.315867pt;}
.y191{bottom:90.350533pt;}
.y9a{bottom:90.355867pt;}
.y197{bottom:90.362533pt;}
.y1c4{bottom:90.377200pt;}
.y1ef{bottom:90.497200pt;}
.y164{bottom:90.523867pt;}
.y12f{bottom:90.587867pt;}
.y11c{bottom:91.446800pt;}
.y11a{bottom:91.457467pt;}
.y1b{bottom:102.836000pt;}
.y168{bottom:104.931867pt;}
.y16d{bottom:104.943867pt;}
.y28d{bottom:104.947867pt;}
.yd0{bottom:104.958533pt;}
.ybb{bottom:104.979867pt;}
.y190{bottom:105.014533pt;}
.y196{bottom:105.026533pt;}
.y163{bottom:105.187867pt;}
.y12e{bottom:105.251867pt;}
.y119{bottom:119.084133pt;}
.y28c{bottom:119.611867pt;}
.ycf{bottom:119.622533pt;}
.y86{bottom:119.635867pt;}
.yba{bottom:119.643867pt;}
.y18f{bottom:119.678533pt;}
.y99{bottom:119.683867pt;}
.y1c3{bottom:119.705200pt;}
.y1ee{bottom:119.825200pt;}
.y12d{bottom:119.915867pt;}
.y118{bottom:125.089467pt;}
.y167{bottom:134.259867pt;}
.y16c{bottom:134.271867pt;}
.y28b{bottom:134.275867pt;}
.yce{bottom:134.286533pt;}
.yb9{bottom:134.307867pt;}
.y18e{bottom:134.342533pt;}
.y98{bottom:134.347867pt;}
.y195{bottom:134.354533pt;}
.y1c2{bottom:134.369200pt;}
.y1ed{bottom:134.489200pt;}
.y162{bottom:134.515867pt;}
.y12c{bottom:134.579867pt;}
.y117{bottom:146.721467pt;}
.y166{bottom:148.923867pt;}
.y16b{bottom:148.935867pt;}
.y28a{bottom:148.939867pt;}
.ycd{bottom:148.950533pt;}
.y85{bottom:148.963867pt;}
.yb8{bottom:148.971867pt;}
.y18d{bottom:149.006533pt;}
.y97{bottom:149.011867pt;}
.y194{bottom:149.018533pt;}
.y1c1{bottom:149.033200pt;}
.y1ec{bottom:149.153200pt;}
.y161{bottom:149.179867pt;}
.y12b{bottom:149.243867pt;}
.y116{bottom:152.726800pt;}
.y5{bottom:157.409733pt;}
.y289{bottom:163.603867pt;}
.ycc{bottom:163.614533pt;}
.y84{bottom:163.627867pt;}
.yb7{bottom:163.635867pt;}
.y18c{bottom:163.670533pt;}
.y96{bottom:163.675867pt;}
.y193{bottom:163.682533pt;}
.y1c0{bottom:163.697200pt;}
.y1eb{bottom:163.817200pt;}
.y160{bottom:163.843867pt;}
.y12a{bottom:163.907867pt;}
.y4{bottom:170.743067pt;}
.y115{bottom:174.358800pt;}
.y288{bottom:178.267867pt;}
.yb6{bottom:178.299867pt;}
.y18b{bottom:178.334533pt;}
.y95{bottom:178.339867pt;}
.y1bf{bottom:178.361200pt;}
.y1ea{bottom:178.481200pt;}
.y15f{bottom:178.507867pt;}
.y129{bottom:178.571867pt;}
.y114{bottom:186.358800pt;}
.y111{bottom:186.369467pt;}
.y3{bottom:188.257733pt;}
.y287{bottom:192.931867pt;}
.ycb{bottom:192.942533pt;}
.y83{bottom:192.955867pt;}
.y18a{bottom:192.998533pt;}
.y1be{bottom:193.025200pt;}
.y1e9{bottom:193.145200pt;}
.y15e{bottom:193.171867pt;}
.y128{bottom:193.235867pt;}
.y170{bottom:197.864400pt;}
.y113{bottom:198.358800pt;}
.y110{bottom:198.369467pt;}
.y2{bottom:201.591067pt;}
.y286{bottom:207.595867pt;}
.yca{bottom:207.606533pt;}
.y82{bottom:207.619867pt;}
.yb5{bottom:207.627867pt;}
.y189{bottom:207.662533pt;}
.y94{bottom:207.667867pt;}
.y1bd{bottom:207.689200pt;}
.y1e8{bottom:207.809200pt;}
.y127{bottom:207.899867pt;}
.y112{bottom:210.358800pt;}
.y1{bottom:214.924400pt;}
.y19c{bottom:216.149467pt;}
.y285{bottom:222.259867pt;}
.yc9{bottom:222.270533pt;}
.y81{bottom:222.283867pt;}
.yb4{bottom:222.291867pt;}
.y188{bottom:222.326533pt;}
.y93{bottom:222.331867pt;}
.y1bc{bottom:222.353200pt;}
.y1e7{bottom:222.473200pt;}
.y15d{bottom:222.499867pt;}
.y10f{bottom:226.006800pt;}
.y19b{bottom:228.149467pt;}
.yc8{bottom:236.934533pt;}
.y80{bottom:236.947867pt;}
.yb3{bottom:236.955867pt;}
.y284{bottom:236.974533pt;}
.y92{bottom:236.995867pt;}
.y1e6{bottom:237.137200pt;}
.y15c{bottom:237.163867pt;}
.y126{bottom:237.227867pt;}
.y10e{bottom:238.006800pt;}
.y19a{bottom:240.149467pt;}
.yc7{bottom:251.598533pt;}
.y7f{bottom:251.611867pt;}
.yb2{bottom:251.619867pt;}
.y283{bottom:251.638533pt;}
.y187{bottom:251.654533pt;}
.y91{bottom:251.659867pt;}
.y1bb{bottom:251.681200pt;}
.y15b{bottom:251.827867pt;}
.y125{bottom:251.891867pt;}
.y10d{bottom:253.633467pt;}
.yc6{bottom:266.262533pt;}
.y7e{bottom:266.275867pt;}
.yb1{bottom:266.283867pt;}
.y282{bottom:266.302533pt;}
.y186{bottom:266.318533pt;}
.y90{bottom:266.323867pt;}
.y1ba{bottom:266.345200pt;}
.y1e5{bottom:266.465200pt;}
.y15a{bottom:266.491867pt;}
.y124{bottom:266.555867pt;}
.y10c{bottom:269.260133pt;}
.y10b{bottom:269.270800pt;}
.yc5{bottom:280.926533pt;}
.y7d{bottom:280.939867pt;}
.yb0{bottom:280.947867pt;}
.y281{bottom:280.966533pt;}
.y185{bottom:280.982533pt;}
.y8f{bottom:280.987867pt;}
.y1b9{bottom:281.009200pt;}
.y1e4{bottom:281.129200pt;}
.y159{bottom:281.155867pt;}
.y123{bottom:281.219867pt;}
.y10a{bottom:281.270800pt;}
.y1a{bottom:292.113333pt;}
.y7c{bottom:295.603867pt;}
.yaf{bottom:295.611867pt;}
.y280{bottom:295.630533pt;}
.y184{bottom:295.646533pt;}
.y8e{bottom:295.651867pt;}
.yc4{bottom:295.671867pt;}
.y1b8{bottom:295.673200pt;}
.y1e3{bottom:295.793200pt;}
.y109{bottom:296.897467pt;}
.y19{bottom:306.777333pt;}
.y7b{bottom:310.267867pt;}
.y27f{bottom:310.294533pt;}
.y183{bottom:310.310533pt;}
.y8d{bottom:310.315867pt;}
.yc3{bottom:310.335867pt;}
.y1b7{bottom:310.337200pt;}
.y1e2{bottom:310.457200pt;}
.y158{bottom:310.483867pt;}
.y122{bottom:310.547867pt;}
.y108{bottom:312.534800pt;}
.y107{bottom:312.545467pt;}
.y106{bottom:318.550800pt;}
.y18{bottom:321.441333pt;}
.yae{bottom:324.939867pt;}
.y27e{bottom:324.958533pt;}
.y182{bottom:324.974533pt;}
.y8c{bottom:324.979867pt;}
.y1b6{bottom:325.001200pt;}
.y1e1{bottom:325.121200pt;}
.y215{bottom:334.013733pt;}
.y238{bottom:334.121733pt;}
.y7a{bottom:339.595867pt;}
.yad{bottom:339.603867pt;}
.y27d{bottom:339.622533pt;}
.y181{bottom:339.638533pt;}
.y8b{bottom:339.643867pt;}
.yc2{bottom:339.663867pt;}
.y1b5{bottom:339.665200pt;}
.y1e0{bottom:339.785200pt;}
.y157{bottom:339.811867pt;}
.y121{bottom:339.875867pt;}
.y17{bottom:340.101333pt;}
.y105{bottom:345.677600pt;}
.y214{bottom:348.677733pt;}
.y237{bottom:348.785733pt;}
.y79{bottom:354.259867pt;}
.yac{bottom:354.267867pt;}
.y27c{bottom:354.286533pt;}
.y180{bottom:354.302533pt;}
.y8a{bottom:354.307867pt;}
.y1b4{bottom:354.329200pt;}
.y1df{bottom:354.449200pt;}
.y156{bottom:354.475867pt;}
.y120{bottom:354.539867pt;}
.y16{bottom:354.768000pt;}
.y213{bottom:363.341733pt;}
.y78{bottom:368.923867pt;}
.yab{bottom:368.931867pt;}
.y27b{bottom:368.950533pt;}
.y17f{bottom:368.966533pt;}
.y89{bottom:368.971867pt;}
.yc1{bottom:368.991867pt;}
.y1b3{bottom:368.993200pt;}
.y1de{bottom:369.113200pt;}
.y155{bottom:369.139867pt;}
.y11f{bottom:369.203867pt;}
.y212{bottom:378.005733pt;}
.y236{bottom:378.113733pt;}
.yaa{bottom:383.595867pt;}
.y27a{bottom:383.614533pt;}
.y17e{bottom:383.630533pt;}
.yc0{bottom:383.655867pt;}
.y1b2{bottom:383.657200pt;}
.y1dd{bottom:383.777200pt;}
.y2a7{bottom:383.798533pt;}
.ydc{bottom:383.867867pt;}
.y104{bottom:383.987867pt;}
.y15{bottom:384.432933pt;}
.y211{bottom:392.669733pt;}
.y235{bottom:392.777733pt;}
.ya9{bottom:398.259867pt;}
.y279{bottom:398.278533pt;}
.y17d{bottom:398.294533pt;}
.ybf{bottom:398.319867pt;}
.y154{bottom:398.467867pt;}
.y4d{bottom:398.531867pt;}
.y73{bottom:398.639867pt;}
.y103{bottom:398.651867pt;}
.y210{bottom:407.333733pt;}
.y234{bottom:407.441733pt;}
.ya7{bottom:412.450933pt;}
.ya8{bottom:412.923867pt;}
.y278{bottom:412.942533pt;}
.ybe{bottom:412.983867pt;}
.y1b1{bottom:412.985200pt;}
.y1dc{bottom:413.105200pt;}
.y2a6{bottom:413.126533pt;}
.y153{bottom:413.131867pt;}
.y4c{bottom:413.195867pt;}
.y72{bottom:413.303867pt;}
.y102{bottom:413.315867pt;}
.y14{bottom:417.996933pt;}
.y20f{bottom:421.997733pt;}
.y277{bottom:427.606533pt;}
.y17c{bottom:427.622533pt;}
.y1b0{bottom:427.649200pt;}
.y1db{bottom:427.769200pt;}
.y2a5{bottom:427.790533pt;}
.y152{bottom:427.795867pt;}
.y4b{bottom:427.859867pt;}
.y71{bottom:427.967867pt;}
.y101{bottom:427.979867pt;}
.y13{bottom:432.660933pt;}
.y20e{bottom:436.661733pt;}
.y233{bottom:436.769733pt;}
.y276{bottom:442.270533pt;}
.y17b{bottom:442.286533pt;}
.y1da{bottom:442.433200pt;}
.y2a4{bottom:442.454533pt;}
.y151{bottom:442.459867pt;}
.ydb{bottom:442.523867pt;}
.y70{bottom:442.631867pt;}
.y100{bottom:442.643867pt;}
.y12{bottom:447.324933pt;}
.y20d{bottom:451.325733pt;}
.y232{bottom:451.433733pt;}
.yd4{bottom:455.790933pt;}
.y275{bottom:456.934533pt;}
.y17a{bottom:456.950533pt;}
.y1af{bottom:456.977200pt;}
.y1d9{bottom:457.097200pt;}
.y2a3{bottom:457.118533pt;}
.y150{bottom:457.123867pt;}
.y4a{bottom:457.187867pt;}
.y6f{bottom:457.295867pt;}
.yff{bottom:457.307867pt;}
.y11{bottom:461.988933pt;}
.y20c{bottom:465.989733pt;}
.y231{bottom:466.097733pt;}
.yd3{bottom:467.790933pt;}
.y274{bottom:471.598533pt;}
.y179{bottom:471.614533pt;}
.y1ae{bottom:471.641200pt;}
.y1d8{bottom:471.761200pt;}
.y2a2{bottom:471.782533pt;}
.y14f{bottom:471.787867pt;}
.y11e{bottom:471.851867pt;}
.yfe{bottom:471.971867pt;}
.y10{bottom:476.652933pt;}
.y20b{bottom:480.653733pt;}
.y230{bottom:480.761733pt;}
.y273{bottom:486.262533pt;}
.y178{bottom:486.278533pt;}
.y1ad{bottom:486.305200pt;}
.y1d7{bottom:486.425200pt;}
.y2a1{bottom:486.446533pt;}
.y14e{bottom:486.451867pt;}
.y49{bottom:486.515867pt;}
.y6e{bottom:486.623867pt;}
.yfd{bottom:486.635867pt;}
.yf{bottom:491.316933pt;}
.y20a{bottom:495.317733pt;}
.y22f{bottom:495.425733pt;}
.y1ac{bottom:500.969200pt;}
.y1d6{bottom:501.089200pt;}
.y2a0{bottom:501.110533pt;}
.y14d{bottom:501.115867pt;}
.y48{bottom:501.179867pt;}
.ya6{bottom:501.267467pt;}
.y6d{bottom:501.287867pt;}
.yfc{bottom:501.299867pt;}
.y209{bottom:509.981733pt;}
.y22e{bottom:510.089733pt;}
.y272{bottom:515.590533pt;}
.y177{bottom:515.606533pt;}
.y1ab{bottom:515.633200pt;}
.y1d5{bottom:515.753200pt;}
.y29f{bottom:515.774533pt;}
.y14c{bottom:515.779867pt;}
.y47{bottom:515.843867pt;}
.y6c{bottom:515.951867pt;}
.yfb{bottom:515.963867pt;}
.ye{bottom:520.644933pt;}
.y208{bottom:524.645733pt;}
.y22d{bottom:524.753733pt;}
.y176{bottom:530.270533pt;}
.y1aa{bottom:530.297200pt;}
.y1d4{bottom:530.417200pt;}
.y29e{bottom:530.438533pt;}
.y14b{bottom:530.443867pt;}
.y46{bottom:530.507867pt;}
.y6b{bottom:530.615867pt;}
.y207{bottom:539.309733pt;}
.y22c{bottom:539.417733pt;}
.y175{bottom:544.934533pt;}
.y1a9{bottom:544.961200pt;}
.y1d3{bottom:545.081200pt;}
.y29d{bottom:545.102533pt;}
.y14a{bottom:545.107867pt;}
.y45{bottom:545.171867pt;}
.y6a{bottom:545.279867pt;}
.yfa{bottom:545.291867pt;}
.y206{bottom:553.973733pt;}
.y22b{bottom:554.081733pt;}
.y25b{bottom:555.885067pt;}
.y271{bottom:556.791733pt;}
.y174{bottom:559.598533pt;}
.y1d2{bottom:559.745200pt;}
.y29c{bottom:559.766533pt;}
.y149{bottom:559.771867pt;}
.y44{bottom:559.835867pt;}
.y69{bottom:559.943867pt;}
.yf9{bottom:559.955867pt;}
.yd{bottom:565.568000pt;}
.y25a{bottom:567.885067pt;}
.y205{bottom:568.637733pt;}
.y22a{bottom:568.745733pt;}
.y270{bottom:568.791733pt;}
.y173{bottom:574.262533pt;}
.y1a8{bottom:574.289200pt;}
.y1d1{bottom:574.409200pt;}
.y29b{bottom:574.430533pt;}
.y43{bottom:574.499867pt;}
.y68{bottom:574.607867pt;}
.yf8{bottom:574.619867pt;}
.y204{bottom:583.301733pt;}
.y229{bottom:583.409733pt;}
.y259{bottom:583.511733pt;}
.y26f{bottom:584.418400pt;}
.y172{bottom:588.926533pt;}
.y1a7{bottom:588.953200pt;}
.y1d0{bottom:589.073200pt;}
.y29a{bottom:589.094533pt;}
.y148{bottom:589.099867pt;}
.y42{bottom:589.163867pt;}
.y67{bottom:589.271867pt;}
.yf7{bottom:589.283867pt;}
.y258{bottom:589.517067pt;}
.y228{bottom:598.073733pt;}
.yc{bottom:599.132000pt;}
.y26e{bottom:600.045067pt;}
.y171{bottom:603.590533pt;}
.y1a6{bottom:603.617200pt;}
.y1cf{bottom:603.737200pt;}
.y299{bottom:603.758533pt;}
.y147{bottom:603.763867pt;}
.y41{bottom:603.827867pt;}
.ya5{bottom:605.715467pt;}
.y257{bottom:611.149067pt;}
.y203{bottom:612.629733pt;}
.y227{bottom:612.737733pt;}
.yb{bottom:613.796000pt;}
.y26d{bottom:615.671733pt;}
.y256{bottom:617.154400pt;}
.ya4{bottom:617.715467pt;}
.y1a5{bottom:618.281200pt;}
.y1ce{bottom:618.401200pt;}
.y298{bottom:618.422533pt;}
.y146{bottom:618.427867pt;}
.yda{bottom:618.491867pt;}
.y66{bottom:618.599867pt;}
.yf6{bottom:618.611867pt;}
.y202{bottom:627.293733pt;}
.ya{bottom:628.460000pt;}
.y26c{bottom:631.298400pt;}
.y1a4{bottom:632.945200pt;}
.y1cd{bottom:633.065200pt;}
.y145{bottom:633.091867pt;}
.y297{bottom:633.102533pt;}
.y40{bottom:633.155867pt;}
.y65{bottom:633.263867pt;}
.yf5{bottom:633.275867pt;}
.y255{bottom:638.786400pt;}
.y201{bottom:641.957733pt;}
.y226{bottom:642.065733pt;}
.y199{bottom:643.010533pt;}
.y9{bottom:643.124000pt;}
.y254{bottom:644.791733pt;}
.y26b{bottom:646.925067pt;}
.y1a3{bottom:647.609200pt;}
.y1cc{bottom:647.729200pt;}
.y144{bottom:647.755867pt;}
.y296{bottom:647.766533pt;}
.y3f{bottom:647.819867pt;}
.yf4{bottom:647.939867pt;}
.y200{bottom:656.621733pt;}
.y225{bottom:656.729733pt;}
.y8{bottom:657.788000pt;}
.y1a2{bottom:662.273200pt;}
.y1cb{bottom:662.393200pt;}
.y143{bottom:662.422533pt;}
.y295{bottom:662.430533pt;}
.y3e{bottom:662.483867pt;}
.y26a{bottom:662.551733pt;}
.y64{bottom:662.591867pt;}
.yf3{bottom:662.603867pt;}
.y253{bottom:666.423733pt;}
.y269{bottom:668.557067pt;}
.y1ff{bottom:671.285733pt;}
.y224{bottom:671.393733pt;}
.y252{bottom:672.429067pt;}
.y7{bottom:672.452000pt;}
.y1a1{bottom:676.937200pt;}
.y142{bottom:677.094533pt;}
.y3d{bottom:677.147867pt;}
.y63{bottom:677.255867pt;}
.yf2{bottom:677.267867pt;}
.y1fe{bottom:685.949733pt;}
.y223{bottom:686.057733pt;}
.y268{bottom:690.189067pt;}
.y1a0{bottom:691.601200pt;}
.y1ca{bottom:691.721200pt;}
.y141{bottom:691.758533pt;}
.yd9{bottom:691.811867pt;}
.y62{bottom:691.919867pt;}
.yf1{bottom:691.931867pt;}
.y251{bottom:694.061067pt;}
.y250{bottom:700.066400pt;}
.y1fd{bottom:700.613733pt;}
.y222{bottom:700.721733pt;}
.y6{bottom:701.780000pt;}
.y267{bottom:705.815733pt;}
.y19f{bottom:706.265200pt;}
.y1c9{bottom:706.385200pt;}
.y140{bottom:706.422533pt;}
.y3c{bottom:706.475867pt;}
.y61{bottom:706.583867pt;}
.yf0{bottom:706.595867pt;}
.y1fc{bottom:715.277733pt;}
.ya3{bottom:717.539733pt;}
.y266{bottom:717.815733pt;}
.y1c8{bottom:721.049200pt;}
.y13f{bottom:721.097200pt;}
.y294{bottom:721.099867pt;}
.y3b{bottom:721.139867pt;}
.y60{bottom:721.247867pt;}
.yef{bottom:721.259867pt;}
.y24f{bottom:721.698400pt;}
.y262{bottom:723.821067pt;}
.y24e{bottom:727.703733pt;}
.y265{bottom:729.815733pt;}
.y221{bottom:730.049733pt;}
.y23{bottom:735.422933pt;}
.y19e{bottom:735.593200pt;}
.y1c7{bottom:735.713200pt;}
.y293{bottom:735.763867pt;}
.y3a{bottom:735.803867pt;}
.y261{bottom:735.821067pt;}
.y5f{bottom:735.911867pt;}
.yee{bottom:735.923867pt;}
.y264{bottom:741.815733pt;}
.y1fb{bottom:744.605733pt;}
.y220{bottom:744.713733pt;}
.y24d{bottom:749.335733pt;}
.y19d{bottom:750.257200pt;}
.y1c6{bottom:750.377200pt;}
.y13e{bottom:750.425200pt;}
.y292{bottom:750.427867pt;}
.y39{bottom:750.467867pt;}
.y5e{bottom:750.575867pt;}
.yed{bottom:750.587867pt;}
.y263{bottom:753.815733pt;}
.y24c{bottom:755.341067pt;}
.y21f{bottom:759.377733pt;}
.y13d{bottom:765.089200pt;}
.y291{bottom:765.091867pt;}
.y38{bottom:765.131867pt;}
.y5d{bottom:765.239867pt;}
.yec{bottom:765.251867pt;}
.y22{bottom:767.659333pt;}
.y260{bottom:769.453067pt;}
.y1fa{bottom:773.933733pt;}
.y21e{bottom:774.041733pt;}
.y24b{bottom:776.973067pt;}
.y290{bottom:779.755867pt;}
.y37{bottom:779.795867pt;}
.yeb{bottom:779.915867pt;}
.y13c{bottom:779.963867pt;}
.y24a{bottom:782.978400pt;}
.y1f1{bottom:784.818800pt;}
.y25f{bottom:785.079733pt;}
.y1f9{bottom:788.597733pt;}
.y21d{bottom:788.705733pt;}
.y21{bottom:790.320667pt;}
.y36{bottom:794.459867pt;}
.y5c{bottom:794.567867pt;}
.y25e{bottom:800.706400pt;}
.y1f8{bottom:803.261733pt;}
.y21c{bottom:803.369733pt;}
.y249{bottom:804.610400pt;}
.yd8{bottom:809.123867pt;}
.y5b{bottom:809.231867pt;}
.yea{bottom:809.243867pt;}
.y13b{bottom:809.291867pt;}
.y25d{bottom:816.333067pt;}
.y1f7{bottom:817.925733pt;}
.y21b{bottom:818.033733pt;}
.y248{bottom:820.237067pt;}
.y35{bottom:823.787867pt;}
.y5a{bottom:823.895867pt;}
.ye9{bottom:823.907867pt;}
.y20{bottom:824.347200pt;}
.y247{bottom:826.242400pt;}
.y25c{bottom:831.959733pt;}
.y1f6{bottom:832.589733pt;}
.y21a{bottom:832.697733pt;}
.yd7{bottom:838.451867pt;}
.y59{bottom:838.559867pt;}
.ye8{bottom:838.571867pt;}
.y13a{bottom:838.619867pt;}
.ya0{bottom:844.995733pt;}
.y219{bottom:847.361733pt;}
.y246{bottom:847.874400pt;}
.ya2{bottom:850.990400pt;}
.y1f{bottom:851.003200pt;}
.y34{bottom:853.115867pt;}
.y58{bottom:853.223867pt;}
.ye7{bottom:853.235867pt;}
.y139{bottom:853.283867pt;}
.y9f{bottom:856.995733pt;}
.y1f5{bottom:861.917733pt;}
.ya1{bottom:862.990400pt;}
.y245{bottom:863.501067pt;}
.yd6{bottom:867.779867pt;}
.ye6{bottom:867.899867pt;}
.y138{bottom:867.947867pt;}
.y9e{bottom:868.995733pt;}
.y244{bottom:869.506400pt;}
.y1f4{bottom:876.581733pt;}
.y218{bottom:876.689733pt;}
.y1e{bottom:877.659200pt;}
.y33{bottom:882.443867pt;}
.y57{bottom:882.551867pt;}
.ye5{bottom:882.563867pt;}
.y243{bottom:891.138400pt;}
.y1f3{bottom:891.245733pt;}
.y217{bottom:891.353733pt;}
.y32{bottom:897.107867pt;}
.y56{bottom:897.215867pt;}
.ye4{bottom:897.227867pt;}
.y137{bottom:897.275867pt;}
.y1f2{bottom:905.909733pt;}
.y216{bottom:906.017733pt;}
.y242{bottom:906.765067pt;}
.y31{bottom:911.771867pt;}
.y55{bottom:911.879867pt;}
.ye3{bottom:911.891867pt;}
.y136{bottom:911.939867pt;}
.y241{bottom:912.770400pt;}
.y9d{bottom:919.648667pt;}
.y30{bottom:926.435867pt;}
.y54{bottom:926.543867pt;}
.ye2{bottom:926.555867pt;}
.y240{bottom:934.402400pt;}
.y2f{bottom:941.099867pt;}
.y53{bottom:941.207867pt;}
.y135{bottom:941.267867pt;}
.y239{bottom:943.617333pt;}
.y23f{bottom:950.029067pt;}
.y2e{bottom:955.763867pt;}
.y52{bottom:955.871867pt;}
.ye1{bottom:955.883867pt;}
.y134{bottom:955.931867pt;}
.y23e{bottom:956.034400pt;}
.y2d{bottom:970.427867pt;}
.y51{bottom:970.535867pt;}
.ye0{bottom:970.547867pt;}
.y23d{bottom:977.666400pt;}
.y2c{bottom:985.091867pt;}
.y50{bottom:985.199867pt;}
.ydf{bottom:985.211867pt;}
.y133{bottom:985.259867pt;}
.y28{bottom:985.528133pt;}
.y23c{bottom:993.293067pt;}
.y27{bottom:998.861467pt;}
.yd5{bottom:999.755867pt;}
.y4f{bottom:999.863867pt;}
.yde{bottom:999.875867pt;}
.y132{bottom:999.923867pt;}
.y26{bottom:1012.194800pt;}
.y2b{bottom:1014.419867pt;}
.y4e{bottom:1014.527867pt;}
.ydd{bottom:1014.539867pt;}
.y131{bottom:1014.587867pt;}
.y9c{bottom:1015.428400pt;}
.y25{bottom:1025.528133pt;}
.y24{bottom:1038.861467pt;}
.y77{bottom:1058.294133pt;}
.y2a{bottom:1066.326533pt;}
.y76{bottom:1075.775467pt;}
.h8{height:27.797250pt;}
.hd{height:28.236979pt;}
.he{height:32.270833pt;}
.h10{height:32.291667pt;}
.h3{height:32.333333pt;}
.hc{height:34.052083pt;}
.h6{height:36.304688pt;}
.h5{height:36.328125pt;}
.h7{height:36.375000pt;}
.h2{height:38.916667pt;}
.h9{height:38.918267pt;}
.h18{height:42.938583pt;}
.h19{height:43.621250pt;}
.h1a{height:43.727917pt;}
.h4{height:43.781250pt;}
.h12{height:56.249500pt;}
.h16{height:56.270333pt;}
.hb{height:56.473958pt;}
.h15{height:62.895333pt;}
.h13{height:80.228167pt;}
.h11{height:80.291667pt;}
.ha{height:82.697917pt;}
.h14{height:86.874000pt;}
.hf{height:86.916667pt;}
.h17{height:110.895333pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x12{left:56.692933pt;}
.x15{left:60.472400pt;}
.x1c{left:68.038400pt;}
.x31{left:73.547200pt;}
.x1{left:75.590533pt;}
.x2b{left:81.092400pt;}
.x1a{left:82.530933pt;}
.x24{left:86.482400pt;}
.x33{left:88.252933pt;}
.x27{left:90.996533pt;}
.xb{left:92.594533pt;}
.x23{left:93.656000pt;}
.x1e{left:98.214800pt;}
.x29{left:104.013600pt;}
.x34{left:107.150533pt;}
.x26{left:110.981467pt;}
.x28{left:118.559200pt;}
.x16{left:147.401600pt;}
.xa{left:148.554667pt;}
.x10{left:187.190267pt;}
.x11{left:193.004933pt;}
.x1d{left:219.465733pt;}
.x32{left:234.496533pt;}
.x1f{left:238.118800pt;}
.x2a{left:246.361733pt;}
.x17{left:291.028267pt;}
.x14{left:292.829733pt;}
.x25{left:297.372933pt;}
.x22{left:301.201467pt;}
.xe{left:322.603867pt;}
.x1b{left:333.858933pt;}
.x2c{left:370.692400pt;}
.x20{left:373.820133pt;}
.x35{left:394.579867pt;}
.x13{left:396.844933pt;}
.x2f{left:400.798133pt;}
.x2e{left:413.704800pt;}
.xc{left:415.742533pt;}
.xd{left:426.458533pt;}
.x18{left:434.654933pt;}
.x21{left:438.609467pt;}
.x4{left:484.282667pt;}
.x9{left:529.008400pt;}
.x3{left:564.725333pt;}
.x2{left:565.985333pt;}
.x30{left:574.664800pt;}
.x19{left:578.281600pt;}
.x5{left:584.912400pt;}
.x8{left:622.736400pt;}
.x7{left:632.741733pt;}
.x6{left:634.501733pt;}
.x2d{left:708.943467pt;}
.xf{left:712.224800pt;}
}




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