
    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_7e0136a937b6fb103a048cf7.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.132000;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_4dfb742017bb24d8191430e1.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.132000;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_5e16f4267b7270f8de0db76d.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.916000;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_86a1f8707120a07f2aa54bd9.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.913000;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_ef5c4f8c030d5f2ee8c86d5e.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.106934;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_22c8fa8389ad87c702f135ad.woff2')format("woff");}.ff6{font-family:ff6;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;}
@font-face{font-family:ff7;src:url('chunks/assets/font_20ac02f8e19b4033dc916c7b.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_9af3088efc4a61a52a1d75ef.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.104004;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_cdc689adf722118ddec4115e.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.945312;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_b1183c2f3b88589ee40532d2.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_bfa02a866a40a768ac100afe.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.106934;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_6217ed46539b565ba5a8bb70.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.088379;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_f2057d0387deaf7757d9de9a.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.893066;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;}
.m2{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.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);}
.v6{vertical-align:-72.000000px;}
.v7{vertical-align:-19.980000px;}
.v3{vertical-align:-15.984000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:19.980000px;}
.v4{vertical-align:21.978000px;}
.v1{vertical-align:25.974000px;}
.v5{vertical-align:33.000000px;}
.lsa{letter-spacing:-2.220000px;}
.ls2{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.000600px;}
.lsc{letter-spacing:0.005400px;}
.lse{letter-spacing:0.006000px;}
.ls12{letter-spacing:0.010200px;}
.ls5{letter-spacing:0.660000px;}
.ls4{letter-spacing:2.639400px;}
.ls6{letter-spacing:5.125800px;}
.ls0{letter-spacing:5.289000px;}
.ls1{letter-spacing:78.043200px;}
.ls11{letter-spacing:94.527000px;}
.ls8{letter-spacing:99.009000px;}
.lsf{letter-spacing:121.935600px;}
.ls7{letter-spacing:158.413800px;}
.ls9{letter-spacing:158.414400px;}
.lsd{letter-spacing:181.340400px;}
.ls10{letter-spacing:181.341000px;}
.lsb{letter-spacing:196.975200px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 rgb(255,255,255),0 0.015em rgb(255,255,255),0.015em 0 rgb(255,255,255),0 -0.015em  rgb(255,255,255);}
.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;}
.sc1{-webkit-text-stroke:0.015em rgb(255,255,255);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0{word-spacing:-19.500000px;}
.ws1f{word-spacing:-16.500000px;}
.ws55{word-spacing:-15.000000px;}
.ws2{word-spacing:-13.500000px;}
.ws8c{word-spacing:-12.780000px;}
.ws3{word-spacing:-12.000000px;}
.ws3d{word-spacing:-9.619500px;}
.ws1{word-spacing:-8.745000px;}
.ws44{word-spacing:-5.610000px;}
.wsb5{word-spacing:-5.280000px;}
.ws2b{word-spacing:-5.082000px;}
.ws78{word-spacing:-4.950000px;}
.wsad{word-spacing:-4.356000px;}
.wsc5{word-spacing:-4.200000px;}
.ws7e{word-spacing:-3.828000px;}
.ws4e{word-spacing:-3.564000px;}
.ws6{word-spacing:-3.300000px;}
.ws24{word-spacing:-3.168000px;}
.ws34{word-spacing:-3.102000px;}
.ws7b{word-spacing:-3.036000px;}
.wsae{word-spacing:-2.970000px;}
.ws79{word-spacing:-2.938800px;}
.ws81{word-spacing:-2.706000px;}
.ws11{word-spacing:-2.700000px;}
.wsd1{word-spacing:-2.640000px;}
.ws4f{word-spacing:-2.574000px;}
.ws35{word-spacing:-2.508000px;}
.wscd{word-spacing:-2.460000px;}
.ws32{word-spacing:-2.442000px;}
.ws47{word-spacing:-2.376000px;}
.ws7f{word-spacing:-2.244000px;}
.wsc0{word-spacing:-2.160000px;}
.wsb8{word-spacing:-2.046000px;}
.ws52{word-spacing:-1.980000px;}
.ws99{word-spacing:-1.782000px;}
.ws19{word-spacing:-1.728000px;}
.ws5b{word-spacing:-1.650000px;}
.ws3e{word-spacing:-1.584000px;}
.ws76{word-spacing:-1.386000px;}
.ws4c{word-spacing:-1.320000px;}
.ws49{word-spacing:-1.254000px;}
.ws7{word-spacing:-1.188000px;}
.ws45{word-spacing:-1.122000px;}
.wsd7{word-spacing:-1.080000px;}
.wsc1{word-spacing:-1.020000px;}
.ws2a{word-spacing:-0.990000px;}
.wsa{word-spacing:-0.864000px;}
.ws82{word-spacing:-0.858000px;}
.wse{word-spacing:-0.810000px;}
.ws68{word-spacing:-0.792000px;}
.wscb{word-spacing:-0.660000px;}
.ws25{word-spacing:-0.594000px;}
.ws1c{word-spacing:-0.540000px;}
.wsc4{word-spacing:-0.420000px;}
.ws4a{word-spacing:-0.396000px;}
.ws12{word-spacing:-0.360000px;}
.ws67{word-spacing:-0.330000px;}
.ws9e{word-spacing:-0.264000px;}
.wsd0{word-spacing:-0.180000px;}
.ws13{word-spacing:-0.162000px;}
.ws39{word-spacing:-0.132000px;}
.ws50{word-spacing:-0.066000px;}
.wsdf{word-spacing:-0.060000px;}
.ws4{word-spacing:0.000000px;}
.wsb2{word-spacing:0.066000px;}
.ws5a{word-spacing:0.132000px;}
.ws1a{word-spacing:0.216000px;}
.wsca{word-spacing:0.240000px;}
.ws17{word-spacing:0.270000px;}
.ws37{word-spacing:0.330000px;}
.ws15{word-spacing:0.432000px;}
.ws80{word-spacing:0.462000px;}
.wsba{word-spacing:0.594000px;}
.wsd3{word-spacing:0.600000px;}
.ws1d{word-spacing:0.648000px;}
.ws7d{word-spacing:0.660000px;}
.ws2d{word-spacing:0.726000px;}
.ws10{word-spacing:0.756000px;}
.wsdc{word-spacing:0.780000px;}
.wsb1{word-spacing:0.792000px;}
.ws51{word-spacing:0.858000px;}
.ws6d{word-spacing:0.990000px;}
.ws59{word-spacing:1.122000px;}
.ws1e{word-spacing:1.134000px;}
.ws9{word-spacing:1.188000px;}
.wsbf{word-spacing:1.380000px;}
.ws77{word-spacing:1.452000px;}
.wsde{word-spacing:1.500000px;}
.ws58{word-spacing:1.584000px;}
.wsc9{word-spacing:1.620000px;}
.ws41{word-spacing:1.650000px;}
.ws26{word-spacing:1.782000px;}
.ws65{word-spacing:1.848000px;}
.ws57{word-spacing:1.914000px;}
.ws53{word-spacing:1.980000px;}
.ws75{word-spacing:2.112000px;}
.ws64{word-spacing:2.178000px;}
.ws23{word-spacing:2.244000px;}
.ws5d{word-spacing:2.310000px;}
.wsd2{word-spacing:2.400000px;}
.ws16{word-spacing:2.430000px;}
.ws36{word-spacing:2.574000px;}
.ws31{word-spacing:2.640000px;}
.ws42{word-spacing:2.706000px;}
.ws33{word-spacing:2.772000px;}
.ws43{word-spacing:2.838000px;}
.ws14{word-spacing:2.862000px;}
.wsb7{word-spacing:2.904000px;}
.wsbe{word-spacing:3.036000px;}
.ws48{word-spacing:3.102000px;}
.wsd5{word-spacing:3.120000px;}
.ws2e{word-spacing:3.168000px;}
.ws2f{word-spacing:3.300000px;}
.ws4d{word-spacing:3.432000px;}
.wsaa{word-spacing:3.630000px;}
.ws8{word-spacing:3.726000px;}
.ws40{word-spacing:3.828000px;}
.wsc3{word-spacing:3.840000px;}
.ws66{word-spacing:3.894000px;}
.wsb{word-spacing:3.942000px;}
.ws9a{word-spacing:3.960000px;}
.ws38{word-spacing:4.092000px;}
.wsc{word-spacing:4.158000px;}
.wsb3{word-spacing:4.224000px;}
.ws1b{word-spacing:4.266000px;}
.wsbb{word-spacing:4.290000px;}
.wsf{word-spacing:4.320000px;}
.wsb0{word-spacing:4.488000px;}
.ws7c{word-spacing:4.884000px;}
.ws3f{word-spacing:5.016000px;}
.ws3c{word-spacing:5.148000px;}
.wsc7{word-spacing:5.280000px;}
.wsd{word-spacing:5.292000px;}
.wscf{word-spacing:5.340000px;}
.wsd6{word-spacing:5.400000px;}
.ws21{word-spacing:5.478000px;}
.ws63{word-spacing:5.544000px;}
.ws20{word-spacing:5.724000px;}
.ws9d{word-spacing:5.742000px;}
.ws30{word-spacing:5.808000px;}
.ws18{word-spacing:5.886000px;}
.ws6c{word-spacing:6.006000px;}
.ws3b{word-spacing:6.138000px;}
.ws97{word-spacing:6.336000px;}
.wsaf{word-spacing:6.402000px;}
.ws46{word-spacing:6.468000px;}
.wsd4{word-spacing:6.480000px;}
.ws98{word-spacing:6.534000px;}
.ws5c{word-spacing:6.720000px;}
.ws5e{word-spacing:6.930000px;}
.ws28{word-spacing:6.996000px;}
.wsbc{word-spacing:7.128000px;}
.ws29{word-spacing:7.260000px;}
.ws27{word-spacing:7.326000px;}
.ws22{word-spacing:7.458000px;}
.wsdd{word-spacing:7.500000px;}
.ws7a{word-spacing:7.524000px;}
.ws5{word-spacing:7.566000px;}
.ws74{word-spacing:7.590000px;}
.ws4b{word-spacing:7.656000px;}
.wsab{word-spacing:7.920000px;}
.wsb6{word-spacing:8.118000px;}
.wsc8{word-spacing:8.460000px;}
.wsc6{word-spacing:8.580000px;}
.ws61{word-spacing:8.712000px;}
.ws6a{word-spacing:8.844000px;}
.ws2c{word-spacing:8.910000px;}
.wsc2{word-spacing:9.060000px;}
.wsbd{word-spacing:9.372000px;}
.wsb9{word-spacing:9.438000px;}
.wsac{word-spacing:9.570000px;}
.ws62{word-spacing:9.636000px;}
.ws3a{word-spacing:9.900000px;}
.ws60{word-spacing:10.692000px;}
.ws6b{word-spacing:10.890000px;}
.ws9b{word-spacing:11.022000px;}
.wsb4{word-spacing:11.154000px;}
.wsce{word-spacing:11.520000px;}
.ws9c{word-spacing:13.860000px;}
.ws5f{word-spacing:13.926000px;}
.ws69{word-spacing:14.190000px;}
.wscc{word-spacing:17.160000px;}
.wsdb{word-spacing:40.088400px;}
.wsda{word-spacing:42.402000px;}
.ws84{word-spacing:42.767400px;}
.wsd9{word-spacing:44.600400px;}
.ws83{word-spacing:46.329120px;}
.wsd8{word-spacing:54.214800px;}
.ws8d{word-spacing:57.867600px;}
.wsa0{word-spacing:64.888800px;}
.wsa1{word-spacing:68.449320px;}
.ws9f{word-spacing:68.449920px;}
.ws54{word-spacing:69.983400px;}
.ws88{word-spacing:74.007000px;}
.ws8a{word-spacing:74.007600px;}
.ws8b{word-spacing:77.847600px;}
.ws70{word-spacing:87.066000px;}
.ws89{word-spacing:87.867000px;}
.ws86{word-spacing:87.867600px;}
.wsa8{word-spacing:94.988400px;}
.ws72{word-spacing:102.066000px;}
.wsa7{word-spacing:103.057200px;}
.wsa6{word-spacing:105.547200px;}
.ws85{word-spacing:107.847600px;}
.wsa2{word-spacing:109.988400px;}
.ws56{word-spacing:110.004000px;}
.wsa3{word-spacing:113.047200px;}
.wsa5{word-spacing:113.049600px;}
.ws6f{word-spacing:114.268800px;}
.ws87{word-spacing:114.507600px;}
.ws92{word-spacing:118.691400px;}
.wsa4{word-spacing:119.978400px;}
.wsa9{word-spacing:121.091400px;}
.ws6e{word-spacing:121.616400px;}
.ws91{word-spacing:124.291200px;}
.ws90{word-spacing:128.681400px;}
.ws96{word-spacing:129.795000px;}
.ws8f{word-spacing:134.281200px;}
.ws8e{word-spacing:135.612600px;}
.ws95{word-spacing:139.827600px;}
.ws93{word-spacing:145.602600px;}
.ws94{word-spacing:151.473600px;}
.ws71{word-spacing:325.008600px;}
.ws73{word-spacing:340.008600px;}
._f{margin-left:-2891.338800px;}
._b{margin-left:-1100.448000px;}
._d{margin-left:-260.208000px;}
._12{margin-left:-8.461200px;}
._5{margin-left:-6.971400px;}
._a{margin-left:-5.764800px;}
._7{margin-left:-4.397400px;}
._1{margin-left:-2.893800px;}
._3{margin-left:-1.155000px;}
._6{width:1.414800px;}
._2{width:3.132000px;}
._4{width:4.276800px;}
._8{width:5.848200px;}
._0{width:7.542600px;}
._5a{width:8.652600px;}
._5c{width:9.935400px;}
._5b{width:13.417800px;}
._10{width:19.039800px;}
._6d{width:54.709800px;}
._74{width:55.933200px;}
._6e{width:57.402000px;}
._63{width:59.600400px;}
._64{width:62.244000px;}
._9{width:64.051200px;}
._7f{width:69.709800px;}
._2d{width:70.758000px;}
._67{width:72.402000px;}
._35{width:73.669200px;}
._69{width:75.098400px;}
._65{width:76.865400px;}
._5e{width:78.924000px;}
._66{width:85.088400px;}
._43{width:86.666400px;}
._31{width:92.847600px;}
._5f{width:94.919400px;}
._37{width:96.370200px;}
._5d{width:97.935600px;}
._61{width:99.398400px;}
._20{width:102.066000px;}
._32{width:103.668600px;}
._60{width:105.069000px;}
._45{width:106.706400px;}
._25{width:111.141600px;}
._48{width:115.046400px;}
._56{width:118.059600px;}
._29{width:122.085600px;}
._13{width:123.101400px;}
._14{width:128.203200px;}
._33{width:130.159200px;}
._4e{width:133.262400px;}
._51{width:134.978400px;}
._4a{width:140.370000px;}
._2e{width:143.359200px;}
._53{width:144.814800px;}
._39{width:146.726400px;}
._11{width:149.994000px;}
._38{width:153.632400px;}
._3f{width:155.370000px;}
._49{width:158.893200px;}
._42{width:160.103400px;}
._3c{width:166.200000px;}
._1b{width:170.469000px;}
._34{width:171.739200px;}
._3e{width:173.893200px;}
._3b{width:175.349400px;}
._2f{width:178.399200px;}
._58{width:181.234200px;}
._44{width:183.507600px;}
._21{width:185.469000px;}
._2b{width:189.198000px;}
._3a{width:193.498200px;}
._27{width:202.398000px;}
._26{width:203.419200px;}
._4f{width:206.254200px;}
._28{width:222.438000px;}
._2c{width:230.778000px;}
._62{width:245.893200px;}
._55{width:253.693200px;}
._50{width:266.893200px;}
._41{width:278.543400px;}
._47{width:288.533400px;}
._57{width:295.273200px;}
._16{width:302.109000px;}
._52{width:311.923200px;}
._1d{width:317.109000px;}
._78{width:321.119400px;}
._17{width:322.149000px;}
._3d{width:326.783400px;}
._1a{width:330.489000px;}
._24{width:337.730400px;}
._19{width:339.933000px;}
._1e{width:352.149000px;}
._6c{width:357.719400px;}
._36{width:359.296200px;}
._4d{width:361.791000px;}
._46{width:380.006400px;}
._15{width:398.193000px;}
._1c{width:413.193000px;}
._68{width:421.888200px;}
._7c{width:426.119400px;}
._30{width:436.699200px;}
._59{width:439.534200px;}
._7b{width:462.899400px;}
._2a{width:495.738000px;}
._6f{width:501.928200px;}
._79{width:519.539400px;}
._76{width:542.699400px;}
._54{width:560.233200px;}
._22{width:572.142600px;}
._73{width:581.159400px;}
._40{width:585.083400px;}
._23{width:598.285200px;}
._4c{width:612.703200px;}
._6a{width:636.868200px;}
._18{width:646.473000px;}
._1f{width:661.473000px;}
._77{width:664.439400px;}
._4b{width:682.748400px;}
._75{width:761.099400px;}
._70{width:932.819400px;}
._71{width:986.159400px;}
._72{width:1031.039400px;}
._6b{width:1194.299400px;}
._7d{width:1264.319400px;}
._80{width:1365.959400px;}
._7a{width:1462.619400px;}
._7e{width:1482.659400px;}
._e{width:1778.688600px;}
._c{width:2123.205600px;}
.fc3{color:transparent;}
.fc2{color:rgb(0,0,255);}
.fc4{color:rgb(0,0,0);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(35,31,32);}
.fs8{font-size:27.984000px;}
.fs5{font-size:34.980000px;}
.fs9{font-size:36.000000px;}
.fsb{font-size:38.478000px;}
.fs0{font-size:42.000000px;}
.fs4{font-size:45.474000px;}
.fs2{font-size:48.000000px;}
.fs6{font-size:54.000000px;}
.fs1{font-size:60.000000px;}
.fsa{font-size:66.000000px;}
.fs7{font-size:72.000000px;}
.fs3{font-size:78.000000px;}
.y3a{bottom:-25.015800px;}
.y0{bottom:0.000000px;}
.y1{bottom:64.396800px;}
.y146{bottom:72.196500px;}
.ya1{bottom:74.851800px;}
.y173{bottom:85.606350px;}
.y39{bottom:86.549700px;}
.yd1{bottom:87.025500px;}
.y145{bottom:90.196500px;}
.y72{bottom:90.416400px;}
.ya0{bottom:92.851800px;}
.y1ac{bottom:97.323000px;}
.y38{bottom:101.549700px;}
.y172{bottom:103.606350px;}
.yd0{bottom:105.025500px;}
.y144{bottom:108.196500px;}
.y71{bottom:108.416400px;}
.y1ab{bottom:115.323000px;}
.y37{bottom:116.549700px;}
.y171{bottom:121.606350px;}
.ycf{bottom:123.025500px;}
.y143{bottom:126.196500px;}
.y70{bottom:126.416400px;}
.y9f{bottom:128.850450px;}
.y36{bottom:131.549850px;}
.y1aa{bottom:133.323000px;}
.yf8{bottom:138.332700px;}
.y170{bottom:139.606350px;}
.yce{bottom:141.025500px;}
.y14b{bottom:142.381800px;}
.y142{bottom:144.196500px;}
.y6f{bottom:144.416400px;}
.y35{bottom:146.549850px;}
.y1a9{bottom:151.323000px;}
.y16f{bottom:157.606350px;}
.ycd{bottom:159.025500px;}
.yf7{bottom:160.747800px;}
.y34{bottom:161.549850px;}
.y141{bottom:162.196500px;}
.y6e{bottom:162.416400px;}
.y1a8{bottom:169.323000px;}
.y9e{bottom:169.348950px;}
.y113{bottom:173.637600px;}
.y16e{bottom:175.606350px;}
.y33{bottom:176.550000px;}
.ycc{bottom:177.025500px;}
.y140{bottom:180.196500px;}
.y6d{bottom:180.416400px;}
.yf6{bottom:183.162900px;}
.y1a7{bottom:187.323000px;}
.y9d{bottom:187.348950px;}
.y110{bottom:188.348550px;}
.y32{bottom:191.550000px;}
.y16d{bottom:193.606350px;}
.ycb{bottom:195.025500px;}
.y13f{bottom:198.196500px;}
.y6c{bottom:198.416400px;}
.y1a6{bottom:205.323000px;}
.yf5{bottom:205.577850px;}
.y31{bottom:206.550000px;}
.y14a{bottom:208.007100px;}
.y16c{bottom:211.606350px;}
.yca{bottom:213.025500px;}
.y13e{bottom:216.196500px;}
.y6b{bottom:216.416400px;}
.y30{bottom:221.550150px;}
.y1a5{bottom:223.323000px;}
.y9c{bottom:223.347600px;}
.yf4{bottom:227.992950px;}
.y16b{bottom:229.606350px;}
.yc9{bottom:231.025500px;}
.y13d{bottom:234.196500px;}
.y6a{bottom:234.416400px;}
.y2f{bottom:236.550150px;}
.y112{bottom:238.908450px;}
.y1a4{bottom:241.323000px;}
.y16a{bottom:247.606350px;}
.yc8{bottom:249.025500px;}
.yf3{bottom:250.407900px;}
.y2e{bottom:251.550150px;}
.y10f{bottom:252.106350px;}
.y13c{bottom:252.196500px;}
.y69{bottom:252.416400px;}
.y1a3{bottom:259.323000px;}
.y2d{bottom:262.554300px;}
.y9b{bottom:263.846100px;}
.y169{bottom:265.606350px;}
.yc7{bottom:267.025500px;}
.y10e{bottom:270.106350px;}
.y13b{bottom:270.196500px;}
.y68{bottom:270.416400px;}
.yf2{bottom:272.823000px;}
.y1a2{bottom:277.323000px;}
.y2c{bottom:277.554300px;}
.y9a{bottom:281.846100px;}
.y168{bottom:283.606350px;}
.yc6{bottom:285.025500px;}
.y147{bottom:287.040600px;}
.y10d{bottom:288.106350px;}
.y13a{bottom:288.196500px;}
.y67{bottom:288.416400px;}
.y1a1{bottom:295.323000px;}
.yf1{bottom:295.358850px;}
.y2b{bottom:296.550300px;}
.y201{bottom:297.781950px;}
.y99{bottom:299.846100px;}
.y167{bottom:301.606350px;}
.yc5{bottom:303.025500px;}
.y10c{bottom:306.106350px;}
.y139{bottom:306.196500px;}
.y66{bottom:306.416400px;}
.y1a0{bottom:313.323000px;}
.y200{bottom:315.781950px;}
.yf0{bottom:317.638500px;}
.y98{bottom:317.846100px;}
.y166{bottom:319.606350px;}
.yc4{bottom:321.025500px;}
.y138{bottom:324.196500px;}
.y65{bottom:324.416400px;}
.y19f{bottom:331.323000px;}
.y97{bottom:335.846100px;}
.y165{bottom:337.606350px;}
.yc3{bottom:339.025500px;}
.yef{bottom:340.053450px;}
.y1ff{bottom:340.156950px;}
.y10b{bottom:342.106350px;}
.y137{bottom:342.196500px;}
.y64{bottom:342.416400px;}
.y2a{bottom:344.300100px;}
.y14c{bottom:344.350350px;}
.y19e{bottom:349.323000px;}
.y96{bottom:353.846100px;}
.y164{bottom:355.606350px;}
.y1fe{bottom:356.656950px;}
.yc2{bottom:357.025500px;}
.y29{bottom:359.300100px;}
.y10a{bottom:360.106350px;}
.y136{bottom:360.196500px;}
.y63{bottom:360.416400px;}
.yee{bottom:362.468550px;}
.y19d{bottom:367.323000px;}
.y95{bottom:371.846100px;}
.y163{bottom:373.606350px;}
.y28{bottom:374.300100px;}
.y114{bottom:374.897400px;}
.yc1{bottom:375.025500px;}
.y109{bottom:378.106350px;}
.y62{bottom:378.416400px;}
.y1fd{bottom:379.057350px;}
.y148{bottom:384.751500px;}
.yed{bottom:384.883500px;}
.y19c{bottom:385.323000px;}
.y27{bottom:389.300100px;}
.y94{bottom:389.846100px;}
.y1d8{bottom:390.879150px;}
.y135{bottom:390.952500px;}
.y162{bottom:391.606350px;}
.yc0{bottom:393.025500px;}
.y1fc{bottom:395.557350px;}
.y108{bottom:396.106350px;}
.y61{bottom:396.416400px;}
.y19b{bottom:403.323000px;}
.y26{bottom:404.300100px;}
.yec{bottom:407.298600px;}
.y93{bottom:407.846250px;}
.y1d7{bottom:408.879150px;}
.y161{bottom:409.606350px;}
.ybf{bottom:411.025500px;}
.y107{bottom:414.106350px;}
.y60{bottom:414.416400px;}
.y1fb{bottom:417.957750px;}
.y25{bottom:419.300100px;}
.y19a{bottom:421.323000px;}
.y92{bottom:425.846250px;}
.y1d6{bottom:426.879150px;}
.y160{bottom:427.606350px;}
.ybe{bottom:429.025500px;}
.yeb{bottom:429.713700px;}
.y106{bottom:432.106350px;}
.y5f{bottom:432.416400px;}
.y24{bottom:434.300100px;}
.y1fa{bottom:434.457750px;}
.y199{bottom:439.323000px;}
.y134{bottom:441.087300px;}
.y91{bottom:443.846250px;}
.y1d5{bottom:444.879150px;}
.y15f{bottom:445.606350px;}
.ybd{bottom:447.025500px;}
.y23{bottom:449.300100px;}
.y105{bottom:450.106350px;}
.y5e{bottom:450.416400px;}
.yea{bottom:452.128650px;}
.y1f9{bottom:456.858150px;}
.y198{bottom:457.323000px;}
.y90{bottom:461.846250px;}
.y1d4{bottom:462.879150px;}
.y133{bottom:463.502400px;}
.y15e{bottom:463.606350px;}
.y22{bottom:464.300100px;}
.ybc{bottom:465.025500px;}
.y104{bottom:468.106350px;}
.y5d{bottom:468.416400px;}
.ye9{bottom:474.664500px;}
.y197{bottom:475.323000px;}
.y21{bottom:479.300100px;}
.y1f8{bottom:479.379450px;}
.y8f{bottom:479.846250px;}
.y1d3{bottom:480.879150px;}
.y15d{bottom:481.606350px;}
.ybb{bottom:483.025500px;}
.y132{bottom:485.917350px;}
.y103{bottom:486.106350px;}
.y5c{bottom:486.416400px;}
.y196{bottom:493.323000px;}
.y20{bottom:494.300100px;}
.ye8{bottom:496.944150px;}
.y8e{bottom:497.846250px;}
.y1d2{bottom:498.879150px;}
.y15c{bottom:499.606350px;}
.y1f7{bottom:501.658950px;}
.y102{bottom:504.106350px;}
.y5b{bottom:504.416400px;}
.y131{bottom:508.332450px;}
.y1f{bottom:509.300100px;}
.y195{bottom:511.323000px;}
.y8d{bottom:515.846250px;}
.y1d1{bottom:516.879150px;}
.y15b{bottom:517.606350px;}
.yba{bottom:519.024000px;}
.ye7{bottom:519.359100px;}
.y101{bottom:522.106350px;}
.y5a{bottom:522.416400px;}
.y1f6{bottom:524.059350px;}
.y1e{bottom:524.300100px;}
.y194{bottom:529.323000px;}
.y130{bottom:530.747550px;}
.y8c{bottom:533.846250px;}
.y1d0{bottom:534.879150px;}
.y15a{bottom:535.606350px;}
.y1d{bottom:539.300100px;}
.y59{bottom:540.416400px;}
.ye6{bottom:541.774200px;}
.y1f5{bottom:546.459750px;}
.y193{bottom:547.323000px;}
.y8b{bottom:551.846250px;}
.y1cf{bottom:552.879150px;}
.y12f{bottom:553.162500px;}
.y159{bottom:553.606350px;}
.y1c{bottom:554.300100px;}
.y58{bottom:558.416400px;}
.yb9{bottom:559.522650px;}
.y1f4{bottom:562.959750px;}
.ye5{bottom:564.189150px;}
.y192{bottom:565.323000px;}
.y8a{bottom:569.846250px;}
.y100{bottom:570.106350px;}
.y1ce{bottom:570.879150px;}
.y158{bottom:571.606350px;}
.y12e{bottom:575.577600px;}
.y57{bottom:576.416400px;}
.yb8{bottom:577.522650px;}
.y1b{bottom:584.301000px;}
.y1f3{bottom:585.360150px;}
.ye4{bottom:586.604250px;}
.y89{bottom:587.846250px;}
.yff{bottom:588.106350px;}
.y1cd{bottom:588.879150px;}
.y157{bottom:589.606350px;}
.y56{bottom:594.416400px;}
.yb7{bottom:595.522650px;}
.y12d{bottom:597.992550px;}
.y191{bottom:601.321650px;}
.y1a{bottom:605.301000px;}
.y88{bottom:605.846250px;}
.y1cc{bottom:606.879150px;}
.y156{bottom:607.606350px;}
.y1f2{bottom:607.760550px;}
.ye3{bottom:609.019350px;}
.y55{bottom:612.416400px;}
.yb6{bottom:613.522650px;}
.y12c{bottom:620.407650px;}
.y87{bottom:623.846250px;}
.y1cb{bottom:624.879150px;}
.y155{bottom:625.606350px;}
.y1f1{bottom:630.160950px;}
.y54{bottom:630.416400px;}
.ye2{bottom:631.434300px;}
.yb5{bottom:631.522650px;}
.y86{bottom:641.846250px;}
.y12b{bottom:642.822600px;}
.y1ca{bottom:642.879150px;}
.y154{bottom:643.606350px;}
.y149{bottom:647.674050px;}
.y53{bottom:648.416400px;}
.yb4{bottom:649.522650px;}
.y1f0{bottom:652.682100px;}
.ye1{bottom:653.970150px;}
.y19{bottom:656.301000px;}
.y111{bottom:657.895350px;}
.y190{bottom:659.823000px;}
.y1c9{bottom:660.879150px;}
.y12a{bottom:665.237700px;}
.y52{bottom:666.416400px;}
.yb3{bottom:667.522650px;}
.y18{bottom:671.301000px;}
.y1ef{bottom:675.082500px;}
.ye0{bottom:676.249800px;}
.y18f{bottom:677.823000px;}
.y85{bottom:677.846250px;}
.y1c8{bottom:678.879150px;}
.y153{bottom:679.605000px;}
.y51{bottom:684.416400px;}
.yb2{bottom:685.522650px;}
.y17{bottom:686.301000px;}
.y129{bottom:687.652800px;}
.y18e{bottom:695.823000px;}
.y84{bottom:695.846250px;}
.y1c7{bottom:696.879150px;}
.y1ee{bottom:697.362150px;}
.ydf{bottom:698.664750px;}
.y16{bottom:701.301000px;}
.y50{bottom:702.416400px;}
.yb1{bottom:703.522650px;}
.yde{bottom:706.914750px;}
.y128{bottom:710.067750px;}
.y18d{bottom:713.823000px;}
.y83{bottom:713.846250px;}
.y1c6{bottom:714.879150px;}
.y15{bottom:716.301000px;}
.y1ed{bottom:719.762550px;}
.y4f{bottom:720.416400px;}
.yb0{bottom:721.522650px;}
.y14{bottom:731.301000px;}
.y18c{bottom:731.823000px;}
.y127{bottom:732.482850px;}
.y1c5{bottom:732.879150px;}
.ydd{bottom:737.565150px;}
.y152{bottom:738.106500px;}
.y4e{bottom:738.416400px;}
.y1ec{bottom:742.162950px;}
.y13{bottom:746.301000px;}
.y18b{bottom:749.823000px;}
.y82{bottom:749.844750px;}
.y1c4{bottom:750.879150px;}
.y126{bottom:754.897800px;}
.y151{bottom:756.106500px;}
.y4d{bottom:756.416400px;}
.ydc{bottom:760.340550px;}
.y12{bottom:761.301000px;}
.y1eb{bottom:764.563200px;}
.yaf{bottom:767.157450px;}
.y18a{bottom:767.823000px;}
.y1c3{bottom:768.879150px;}
.y4c{bottom:774.416400px;}
.yae{bottom:775.407450px;}
.y11{bottom:776.301000px;}
.y125{bottom:777.312900px;}
.y189{bottom:785.823000px;}
.y1c2{bottom:786.879150px;}
.y1ea{bottom:786.963600px;}
.y81{bottom:790.343400px;}
.y10{bottom:791.301000px;}
.y4b{bottom:792.416400px;}
.y124{bottom:799.728000px;}
.y188{bottom:803.823000px;}
.y1c1{bottom:804.879150px;}
.yad{bottom:806.057850px;}
.yf{bottom:806.301000px;}
.ydb{bottom:808.340550px;}
.y80{bottom:808.343400px;}
.y1e9{bottom:809.484900px;}
.y4a{bottom:810.416400px;}
.yac{bottom:814.307850px;}
.ye{bottom:821.301000px;}
.y187{bottom:821.823000px;}
.y123{bottom:822.142950px;}
.y1c0{bottom:822.879150px;}
.yda{bottom:826.340550px;}
.y7f{bottom:826.343400px;}
.y49{bottom:828.416400px;}
.y1e8{bottom:831.764400px;}
.yd{bottom:836.301000px;}
.y186{bottom:839.823000px;}
.y1bf{bottom:840.879150px;}
.yd9{bottom:844.340550px;}
.y7e{bottom:844.343400px;}
.y122{bottom:844.558050px;}
.yab{bottom:844.958250px;}
.y48{bottom:846.416400px;}
.y1e7{bottom:848.264400px;}
.yc{bottom:851.301000px;}
.y185{bottom:857.823000px;}
.y1be{bottom:858.879150px;}
.ya9{bottom:861.458250px;}
.yd8{bottom:862.340550px;}
.y47{bottom:864.416400px;}
.yb{bottom:866.301000px;}
.y121{bottom:866.973000px;}
.y1e6{bottom:870.664800px;}
.y184{bottom:875.823000px;}
.y1bd{bottom:876.879150px;}
.yaa{bottom:877.958250px;}
.yd7{bottom:880.340550px;}
.y7d{bottom:880.341900px;}
.ya{bottom:881.301000px;}
.y46{bottom:882.416400px;}
.y1e5{bottom:887.164800px;}
.y120{bottom:889.388100px;}
.y183{bottom:893.823000px;}
.y1bc{bottom:894.879150px;}
.ya8{bottom:900.358650px;}
.y45{bottom:900.416400px;}
.y1e4{bottom:909.565200px;}
.y9{bottom:911.302050px;}
.y11f{bottom:911.803200px;}
.y182{bottom:911.823000px;}
.y1bb{bottom:912.879150px;}
.yd6{bottom:916.339050px;}
.y44{bottom:918.416400px;}
.y7c{bottom:920.840550px;}
.ya7{bottom:922.759050px;}
.y181{bottom:929.823000px;}
.y1ba{bottom:930.879150px;}
.y1e3{bottom:931.965600px;}
.y43{bottom:936.416400px;}
.y11e{bottom:937.097100px;}
.yd5{bottom:938.839050px;}
.y7b{bottom:938.840550px;}
.ya6{bottom:945.159300px;}
.y180{bottom:947.823000px;}
.y1b9{bottom:948.879150px;}
.y1e2{bottom:954.366000px;}
.y42{bottom:954.416400px;}
.y11d{bottom:955.097100px;}
.y8{bottom:957.172050px;}
.ya4{bottom:961.659300px;}
.y17f{bottom:965.823000px;}
.y1b8{bottom:966.879150px;}
.y1e1{bottom:970.866000px;}
.y41{bottom:972.416400px;}
.y7a{bottom:974.839050px;}
.ya5{bottom:978.159300px;}
.yd4{bottom:979.337700px;}
.y17e{bottom:983.823000px;}
.y150{bottom:984.106500px;}
.y1b7{bottom:984.879150px;}
.y1e0{bottom:993.266400px;}
.y7{bottom:994.672950px;}
.ya3{bottom:1000.559700px;}
.y17d{bottom:1001.823000px;}
.y14f{bottom:1002.106500px;}
.y1b6{bottom:1002.879150px;}
.y11c{bottom:1003.097100px;}
.y40{bottom:1008.415050px;}
.y79{bottom:1015.337700px;}
.y1df{bottom:1015.802250px;}
.y6{bottom:1017.172950px;}
.y17c{bottom:1019.823000px;}
.y14e{bottom:1020.106500px;}
.y1b5{bottom:1020.879150px;}
.y11b{bottom:1021.097100px;}
.ya2{bottom:1025.839050px;}
.y17b{bottom:1037.823000px;}
.yd3{bottom:1037.839050px;}
.y1de{bottom:1038.081900px;}
.y14d{bottom:1038.106500px;}
.y1b4{bottom:1038.879150px;}
.y11a{bottom:1039.097100px;}
.y17a{bottom:1055.823000px;}
.yd2{bottom:1055.839050px;}
.yfe{bottom:1056.106500px;}
.y1b3{bottom:1056.879150px;}
.y119{bottom:1057.097100px;}
.y1dd{bottom:1060.482150px;}
.y5{bottom:1061.601150px;}
.y179{bottom:1073.823000px;}
.y78{bottom:1073.839050px;}
.yfd{bottom:1074.106500px;}
.y1b2{bottom:1074.879150px;}
.y118{bottom:1075.097100px;}
.y3f{bottom:1081.917300px;}
.y1dc{bottom:1083.003450px;}
.y178{bottom:1091.823000px;}
.y77{bottom:1091.839050px;}
.yfc{bottom:1092.106500px;}
.y1b1{bottom:1092.879150px;}
.y117{bottom:1093.097100px;}
.y3e{bottom:1099.917300px;}
.y4{bottom:1105.112850px;}
.y1db{bottom:1105.403850px;}
.y177{bottom:1109.823000px;}
.y76{bottom:1109.839050px;}
.yfb{bottom:1110.106500px;}
.y1b0{bottom:1110.879150px;}
.y116{bottom:1111.097100px;}
.y3d{bottom:1117.917300px;}
.y3{bottom:1123.112850px;}
.y1da{bottom:1127.683350px;}
.y176{bottom:1127.823000px;}
.y75{bottom:1127.839050px;}
.yfa{bottom:1128.106350px;}
.y1af{bottom:1128.879150px;}
.y115{bottom:1129.097100px;}
.y175{bottom:1145.823000px;}
.y74{bottom:1145.839050px;}
.y1ae{bottom:1146.879150px;}
.y1d9{bottom:1154.609700px;}
.y2{bottom:1161.964050px;}
.y174{bottom:1163.823000px;}
.y73{bottom:1163.839050px;}
.yf9{bottom:1164.105000px;}
.y1ad{bottom:1164.879150px;}
.y3c{bottom:1165.919250px;}
.y3b{bottom:1203.807600px;}
.h11{height:26.133187px;}
.h12{height:26.525391px;}
.hf{height:26.789437px;}
.h8{height:36.852539px;}
.h2{height:38.724000px;}
.h22{height:40.634766px;}
.h10{height:42.773438px;}
.h4{height:44.256000px;}
.h17{height:45.181641px;}
.ha{height:47.381836px;}
.hb{height:47.513672px;}
.h9{height:47.961914px;}
.hc{height:48.120117px;}
.h21{height:52.353516px;}
.h7{height:52.646484px;}
.h19{height:52.792969px;}
.h18{height:53.291016px;}
.h1c{height:53.437397px;}
.h1b{height:53.466797px;}
.h1e{height:53.495597px;}
.h1d{height:53.496197px;}
.h1f{height:53.524997px;}
.h20{height:53.525597px;}
.h3{height:55.320000px;}
.h14{height:57.911133px;}
.h16{height:58.072266px;}
.h13{height:58.620117px;}
.h15{height:58.813477px;}
.he{height:63.175781px;}
.hd{height:63.351562px;}
.h6{height:68.630859px;}
.h5{height:69.506836px;}
.h1a{height:85.646484px;}
.h1{height:1257.750000px;}
.h0{height:1257.803700px;}
.w0{width:887.882700px;}
.w1{width:888.000000px;}
.x0{left:0.000000px;}
.x6{left:12.484200px;}
.x3{left:82.523550px;}
.x2d{left:88.523550px;}
.x4a{left:91.543500px;}
.x4{left:93.173550px;}
.x5{left:103.783500px;}
.x13{left:109.484100px;}
.x2c{left:146.279250px;}
.x2e{left:158.027250px;}
.x2f{left:176.027250px;}
.x11{left:181.481250px;}
.x15{left:186.755850px;}
.x12{left:194.237250px;}
.x2a{left:197.693250px;}
.x30{left:201.306600px;}
.x16{left:212.035050px;}
.x8{left:217.292250px;}
.x31{left:223.714350px;}
.xb{left:227.297100px;}
.x9{left:233.544750px;}
.x32{left:246.136650px;}
.x17{left:256.865250px;}
.x7{left:264.581700px;}
.x33{left:268.551750px;}
.x2b{left:274.806300px;}
.x47{left:276.783900px;}
.xa{left:278.543100px;}
.x34{left:290.966700px;}
.x18{left:301.695300px;}
.x35{left:313.381800px;}
.x19{left:324.110250px;}
.x36{left:335.796750px;}
.xc{left:342.126900px;}
.x1a{left:346.525350px;}
.x37{left:358.211850px;}
.x1b{left:368.940450px;}
.x38{left:380.626950px;}
.x1c{left:391.355400px;}
.x39{left:403.041900px;}
.x14{left:406.455450px;}
.x48{left:408.227100px;}
.x1d{left:413.770500px;}
.x3a{left:425.457000px;}
.xe{left:431.639100px;}
.x1e{left:436.185450px;}
.x10{left:442.062000px;}
.x3b{left:447.871950px;}
.x1f{left:458.600550px;}
.x3c{left:470.287050px;}
.x20{left:481.015500px;}
.x3d{left:492.702150px;}
.x21{left:503.430600px;}
.x49{left:505.636050px;}
.x3e{left:515.117100px;}
.x22{left:525.845700px;}
.x3f{left:537.532200px;}
.xf{left:547.875900px;}
.xd{left:553.350900px;}
.x40{left:559.947150px;}
.x23{left:570.675750px;}
.x41{left:582.362250px;}
.x24{left:593.090700px;}
.x42{left:604.777350px;}
.x25{left:615.505800px;}
.x43{left:627.192300px;}
.x26{left:637.920900px;}
.x44{left:649.607400px;}
.x27{left:660.335850px;}
.x45{left:672.022350px;}
.x28{left:682.750950px;}
.x46{left:694.437450px;}
.x29{left:705.165900px;}
.x2{left:723.826050px;}
.x1{left:787.844250px;}
@media print{
.v6{vertical-align:-64.000000pt;}
.v7{vertical-align:-17.760000pt;}
.v3{vertical-align:-14.208000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:17.760000pt;}
.v4{vertical-align:19.536000pt;}
.v1{vertical-align:23.088000pt;}
.v5{vertical-align:29.333333pt;}
.lsa{letter-spacing:-1.973333pt;}
.ls2{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.000533pt;}
.lsc{letter-spacing:0.004800pt;}
.lse{letter-spacing:0.005333pt;}
.ls12{letter-spacing:0.009067pt;}
.ls5{letter-spacing:0.586667pt;}
.ls4{letter-spacing:2.346133pt;}
.ls6{letter-spacing:4.556267pt;}
.ls0{letter-spacing:4.701333pt;}
.ls1{letter-spacing:69.371733pt;}
.ls11{letter-spacing:84.024000pt;}
.ls8{letter-spacing:88.008000pt;}
.lsf{letter-spacing:108.387200pt;}
.ls7{letter-spacing:140.812267pt;}
.ls9{letter-spacing:140.812800pt;}
.lsd{letter-spacing:161.191467pt;}
.ls10{letter-spacing:161.192000pt;}
.lsb{letter-spacing:175.089067pt;}
.ws0{word-spacing:-17.333333pt;}
.ws1f{word-spacing:-14.666667pt;}
.ws55{word-spacing:-13.333333pt;}
.ws2{word-spacing:-12.000000pt;}
.ws8c{word-spacing:-11.360000pt;}
.ws3{word-spacing:-10.666667pt;}
.ws3d{word-spacing:-8.550667pt;}
.ws1{word-spacing:-7.773333pt;}
.ws44{word-spacing:-4.986667pt;}
.wsb5{word-spacing:-4.693333pt;}
.ws2b{word-spacing:-4.517333pt;}
.ws78{word-spacing:-4.400000pt;}
.wsad{word-spacing:-3.872000pt;}
.wsc5{word-spacing:-3.733333pt;}
.ws7e{word-spacing:-3.402667pt;}
.ws4e{word-spacing:-3.168000pt;}
.ws6{word-spacing:-2.933333pt;}
.ws24{word-spacing:-2.816000pt;}
.ws34{word-spacing:-2.757333pt;}
.ws7b{word-spacing:-2.698667pt;}
.wsae{word-spacing:-2.640000pt;}
.ws79{word-spacing:-2.612267pt;}
.ws81{word-spacing:-2.405333pt;}
.ws11{word-spacing:-2.400000pt;}
.wsd1{word-spacing:-2.346667pt;}
.ws4f{word-spacing:-2.288000pt;}
.ws35{word-spacing:-2.229333pt;}
.wscd{word-spacing:-2.186667pt;}
.ws32{word-spacing:-2.170667pt;}
.ws47{word-spacing:-2.112000pt;}
.ws7f{word-spacing:-1.994667pt;}
.wsc0{word-spacing:-1.920000pt;}
.wsb8{word-spacing:-1.818667pt;}
.ws52{word-spacing:-1.760000pt;}
.ws99{word-spacing:-1.584000pt;}
.ws19{word-spacing:-1.536000pt;}
.ws5b{word-spacing:-1.466667pt;}
.ws3e{word-spacing:-1.408000pt;}
.ws76{word-spacing:-1.232000pt;}
.ws4c{word-spacing:-1.173333pt;}
.ws49{word-spacing:-1.114667pt;}
.ws7{word-spacing:-1.056000pt;}
.ws45{word-spacing:-0.997333pt;}
.wsd7{word-spacing:-0.960000pt;}
.wsc1{word-spacing:-0.906667pt;}
.ws2a{word-spacing:-0.880000pt;}
.wsa{word-spacing:-0.768000pt;}
.ws82{word-spacing:-0.762667pt;}
.wse{word-spacing:-0.720000pt;}
.ws68{word-spacing:-0.704000pt;}
.wscb{word-spacing:-0.586667pt;}
.ws25{word-spacing:-0.528000pt;}
.ws1c{word-spacing:-0.480000pt;}
.wsc4{word-spacing:-0.373333pt;}
.ws4a{word-spacing:-0.352000pt;}
.ws12{word-spacing:-0.320000pt;}
.ws67{word-spacing:-0.293333pt;}
.ws9e{word-spacing:-0.234667pt;}
.wsd0{word-spacing:-0.160000pt;}
.ws13{word-spacing:-0.144000pt;}
.ws39{word-spacing:-0.117333pt;}
.ws50{word-spacing:-0.058667pt;}
.wsdf{word-spacing:-0.053333pt;}
.ws4{word-spacing:0.000000pt;}
.wsb2{word-spacing:0.058667pt;}
.ws5a{word-spacing:0.117333pt;}
.ws1a{word-spacing:0.192000pt;}
.wsca{word-spacing:0.213333pt;}
.ws17{word-spacing:0.240000pt;}
.ws37{word-spacing:0.293333pt;}
.ws15{word-spacing:0.384000pt;}
.ws80{word-spacing:0.410667pt;}
.wsba{word-spacing:0.528000pt;}
.wsd3{word-spacing:0.533333pt;}
.ws1d{word-spacing:0.576000pt;}
.ws7d{word-spacing:0.586667pt;}
.ws2d{word-spacing:0.645333pt;}
.ws10{word-spacing:0.672000pt;}
.wsdc{word-spacing:0.693333pt;}
.wsb1{word-spacing:0.704000pt;}
.ws51{word-spacing:0.762667pt;}
.ws6d{word-spacing:0.880000pt;}
.ws59{word-spacing:0.997333pt;}
.ws1e{word-spacing:1.008000pt;}
.ws9{word-spacing:1.056000pt;}
.wsbf{word-spacing:1.226667pt;}
.ws77{word-spacing:1.290667pt;}
.wsde{word-spacing:1.333333pt;}
.ws58{word-spacing:1.408000pt;}
.wsc9{word-spacing:1.440000pt;}
.ws41{word-spacing:1.466667pt;}
.ws26{word-spacing:1.584000pt;}
.ws65{word-spacing:1.642667pt;}
.ws57{word-spacing:1.701333pt;}
.ws53{word-spacing:1.760000pt;}
.ws75{word-spacing:1.877333pt;}
.ws64{word-spacing:1.936000pt;}
.ws23{word-spacing:1.994667pt;}
.ws5d{word-spacing:2.053333pt;}
.wsd2{word-spacing:2.133333pt;}
.ws16{word-spacing:2.160000pt;}
.ws36{word-spacing:2.288000pt;}
.ws31{word-spacing:2.346667pt;}
.ws42{word-spacing:2.405333pt;}
.ws33{word-spacing:2.464000pt;}
.ws43{word-spacing:2.522667pt;}
.ws14{word-spacing:2.544000pt;}
.wsb7{word-spacing:2.581333pt;}
.wsbe{word-spacing:2.698667pt;}
.ws48{word-spacing:2.757333pt;}
.wsd5{word-spacing:2.773333pt;}
.ws2e{word-spacing:2.816000pt;}
.ws2f{word-spacing:2.933333pt;}
.ws4d{word-spacing:3.050667pt;}
.wsaa{word-spacing:3.226667pt;}
.ws8{word-spacing:3.312000pt;}
.ws40{word-spacing:3.402667pt;}
.wsc3{word-spacing:3.413333pt;}
.ws66{word-spacing:3.461333pt;}
.wsb{word-spacing:3.504000pt;}
.ws9a{word-spacing:3.520000pt;}
.ws38{word-spacing:3.637333pt;}
.wsc{word-spacing:3.696000pt;}
.wsb3{word-spacing:3.754667pt;}
.ws1b{word-spacing:3.792000pt;}
.wsbb{word-spacing:3.813333pt;}
.wsf{word-spacing:3.840000pt;}
.wsb0{word-spacing:3.989333pt;}
.ws7c{word-spacing:4.341333pt;}
.ws3f{word-spacing:4.458667pt;}
.ws3c{word-spacing:4.576000pt;}
.wsc7{word-spacing:4.693333pt;}
.wsd{word-spacing:4.704000pt;}
.wscf{word-spacing:4.746667pt;}
.wsd6{word-spacing:4.800000pt;}
.ws21{word-spacing:4.869333pt;}
.ws63{word-spacing:4.928000pt;}
.ws20{word-spacing:5.088000pt;}
.ws9d{word-spacing:5.104000pt;}
.ws30{word-spacing:5.162667pt;}
.ws18{word-spacing:5.232000pt;}
.ws6c{word-spacing:5.338667pt;}
.ws3b{word-spacing:5.456000pt;}
.ws97{word-spacing:5.632000pt;}
.wsaf{word-spacing:5.690667pt;}
.ws46{word-spacing:5.749333pt;}
.wsd4{word-spacing:5.760000pt;}
.ws98{word-spacing:5.808000pt;}
.ws5c{word-spacing:5.973333pt;}
.ws5e{word-spacing:6.160000pt;}
.ws28{word-spacing:6.218667pt;}
.wsbc{word-spacing:6.336000pt;}
.ws29{word-spacing:6.453333pt;}
.ws27{word-spacing:6.512000pt;}
.ws22{word-spacing:6.629333pt;}
.wsdd{word-spacing:6.666667pt;}
.ws7a{word-spacing:6.688000pt;}
.ws5{word-spacing:6.725333pt;}
.ws74{word-spacing:6.746667pt;}
.ws4b{word-spacing:6.805333pt;}
.wsab{word-spacing:7.040000pt;}
.wsb6{word-spacing:7.216000pt;}
.wsc8{word-spacing:7.520000pt;}
.wsc6{word-spacing:7.626667pt;}
.ws61{word-spacing:7.744000pt;}
.ws6a{word-spacing:7.861333pt;}
.ws2c{word-spacing:7.920000pt;}
.wsc2{word-spacing:8.053333pt;}
.wsbd{word-spacing:8.330667pt;}
.wsb9{word-spacing:8.389333pt;}
.wsac{word-spacing:8.506667pt;}
.ws62{word-spacing:8.565333pt;}
.ws3a{word-spacing:8.800000pt;}
.ws60{word-spacing:9.504000pt;}
.ws6b{word-spacing:9.680000pt;}
.ws9b{word-spacing:9.797333pt;}
.wsb4{word-spacing:9.914667pt;}
.wsce{word-spacing:10.240000pt;}
.ws9c{word-spacing:12.320000pt;}
.ws5f{word-spacing:12.378667pt;}
.ws69{word-spacing:12.613333pt;}
.wscc{word-spacing:15.253333pt;}
.wsdb{word-spacing:35.634133pt;}
.wsda{word-spacing:37.690667pt;}
.ws84{word-spacing:38.015467pt;}
.wsd9{word-spacing:39.644800pt;}
.ws83{word-spacing:41.181440pt;}
.wsd8{word-spacing:48.190933pt;}
.ws8d{word-spacing:51.437867pt;}
.wsa0{word-spacing:57.678933pt;}
.wsa1{word-spacing:60.843840pt;}
.ws9f{word-spacing:60.844373pt;}
.ws54{word-spacing:62.207467pt;}
.ws88{word-spacing:65.784000pt;}
.ws8a{word-spacing:65.784533pt;}
.ws8b{word-spacing:69.197867pt;}
.ws70{word-spacing:77.392000pt;}
.ws89{word-spacing:78.104000pt;}
.ws86{word-spacing:78.104533pt;}
.wsa8{word-spacing:84.434133pt;}
.ws72{word-spacing:90.725333pt;}
.wsa7{word-spacing:91.606400pt;}
.wsa6{word-spacing:93.819733pt;}
.ws85{word-spacing:95.864533pt;}
.wsa2{word-spacing:97.767467pt;}
.ws56{word-spacing:97.781333pt;}
.wsa3{word-spacing:100.486400pt;}
.wsa5{word-spacing:100.488533pt;}
.ws6f{word-spacing:101.572267pt;}
.ws87{word-spacing:101.784533pt;}
.ws92{word-spacing:105.503467pt;}
.wsa4{word-spacing:106.647467pt;}
.wsa9{word-spacing:107.636800pt;}
.ws6e{word-spacing:108.103467pt;}
.ws91{word-spacing:110.481067pt;}
.ws90{word-spacing:114.383467pt;}
.ws96{word-spacing:115.373333pt;}
.ws8f{word-spacing:119.361067pt;}
.ws8e{word-spacing:120.544533pt;}
.ws95{word-spacing:124.291200pt;}
.ws93{word-spacing:129.424533pt;}
.ws94{word-spacing:134.643200pt;}
.ws71{word-spacing:288.896533pt;}
.ws73{word-spacing:302.229867pt;}
._f{margin-left:-2570.078933pt;}
._b{margin-left:-978.176000pt;}
._d{margin-left:-231.296000pt;}
._12{margin-left:-7.521067pt;}
._5{margin-left:-6.196800pt;}
._a{margin-left:-5.124267pt;}
._7{margin-left:-3.908800pt;}
._1{margin-left:-2.572267pt;}
._3{margin-left:-1.026667pt;}
._6{width:1.257600pt;}
._2{width:2.784000pt;}
._4{width:3.801600pt;}
._8{width:5.198400pt;}
._0{width:6.704533pt;}
._5a{width:7.691200pt;}
._5c{width:8.831467pt;}
._5b{width:11.926933pt;}
._10{width:16.924267pt;}
._6d{width:48.630933pt;}
._74{width:49.718400pt;}
._6e{width:51.024000pt;}
._63{width:52.978133pt;}
._64{width:55.328000pt;}
._9{width:56.934400pt;}
._7f{width:61.964267pt;}
._2d{width:62.896000pt;}
._67{width:64.357333pt;}
._35{width:65.483733pt;}
._69{width:66.754133pt;}
._65{width:68.324800pt;}
._5e{width:70.154667pt;}
._66{width:75.634133pt;}
._43{width:77.036800pt;}
._31{width:82.531200pt;}
._5f{width:84.372800pt;}
._37{width:85.662400pt;}
._5d{width:87.053867pt;}
._61{width:88.354133pt;}
._20{width:90.725333pt;}
._32{width:92.149867pt;}
._60{width:93.394667pt;}
._45{width:94.850133pt;}
._25{width:98.792533pt;}
._48{width:102.263467pt;}
._56{width:104.941867pt;}
._29{width:108.520533pt;}
._13{width:109.423467pt;}
._14{width:113.958400pt;}
._33{width:115.697067pt;}
._4e{width:118.455467pt;}
._51{width:119.980800pt;}
._4a{width:124.773333pt;}
._2e{width:127.430400pt;}
._53{width:128.724267pt;}
._39{width:130.423467pt;}
._11{width:133.328000pt;}
._38{width:136.562133pt;}
._3f{width:138.106667pt;}
._49{width:141.238400pt;}
._42{width:142.314133pt;}
._3c{width:147.733333pt;}
._1b{width:151.528000pt;}
._34{width:152.657067pt;}
._3e{width:154.571733pt;}
._3b{width:155.866133pt;}
._2f{width:158.577067pt;}
._58{width:161.097067pt;}
._44{width:163.117867pt;}
._21{width:164.861333pt;}
._2b{width:168.176000pt;}
._3a{width:171.998400pt;}
._27{width:179.909333pt;}
._26{width:180.817067pt;}
._4f{width:183.337067pt;}
._28{width:197.722667pt;}
._2c{width:205.136000pt;}
._62{width:218.571733pt;}
._55{width:225.505067pt;}
._50{width:237.238400pt;}
._41{width:247.594133pt;}
._47{width:256.474133pt;}
._57{width:262.465067pt;}
._16{width:268.541333pt;}
._52{width:277.265067pt;}
._1d{width:281.874667pt;}
._78{width:285.439467pt;}
._17{width:286.354667pt;}
._3d{width:290.474133pt;}
._1a{width:293.768000pt;}
._24{width:300.204800pt;}
._19{width:302.162667pt;}
._1e{width:313.021333pt;}
._6c{width:317.972800pt;}
._36{width:319.374400pt;}
._4d{width:321.592000pt;}
._46{width:337.783467pt;}
._15{width:353.949333pt;}
._1c{width:367.282667pt;}
._68{width:375.011733pt;}
._7c{width:378.772800pt;}
._30{width:388.177067pt;}
._59{width:390.697067pt;}
._7b{width:411.466133pt;}
._2a{width:440.656000pt;}
._6f{width:446.158400pt;}
._79{width:461.812800pt;}
._76{width:482.399467pt;}
._54{width:497.985067pt;}
._22{width:508.571200pt;}
._73{width:516.586133pt;}
._40{width:520.074133pt;}
._23{width:531.809067pt;}
._4c{width:544.625067pt;}
._6a{width:566.105067pt;}
._18{width:574.642667pt;}
._1f{width:587.976000pt;}
._77{width:590.612800pt;}
._4b{width:606.887467pt;}
._75{width:676.532800pt;}
._70{width:829.172800pt;}
._71{width:876.586133pt;}
._72{width:916.479467pt;}
._6b{width:1061.599467pt;}
._7d{width:1123.839467pt;}
._80{width:1214.186133pt;}
._7a{width:1300.106133pt;}
._7e{width:1317.919467pt;}
._e{width:1581.056533pt;}
._c{width:1887.293867pt;}
.fs8{font-size:24.874667pt;}
.fs5{font-size:31.093333pt;}
.fs9{font-size:32.000000pt;}
.fsb{font-size:34.202667pt;}
.fs0{font-size:37.333333pt;}
.fs4{font-size:40.421333pt;}
.fs2{font-size:42.666667pt;}
.fs6{font-size:48.000000pt;}
.fs1{font-size:53.333333pt;}
.fsa{font-size:58.666667pt;}
.fs7{font-size:64.000000pt;}
.fs3{font-size:69.333333pt;}
.y3a{bottom:-22.236267pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:57.241600pt;}
.y146{bottom:64.174667pt;}
.ya1{bottom:66.534933pt;}
.y173{bottom:76.094533pt;}
.y39{bottom:76.933067pt;}
.yd1{bottom:77.356000pt;}
.y145{bottom:80.174667pt;}
.y72{bottom:80.370133pt;}
.ya0{bottom:82.534933pt;}
.y1ac{bottom:86.509333pt;}
.y38{bottom:90.266400pt;}
.y172{bottom:92.094533pt;}
.yd0{bottom:93.356000pt;}
.y144{bottom:96.174667pt;}
.y71{bottom:96.370133pt;}
.y1ab{bottom:102.509333pt;}
.y37{bottom:103.599733pt;}
.y171{bottom:108.094533pt;}
.ycf{bottom:109.356000pt;}
.y143{bottom:112.174667pt;}
.y70{bottom:112.370133pt;}
.y9f{bottom:114.533733pt;}
.y36{bottom:116.933200pt;}
.y1aa{bottom:118.509333pt;}
.yf8{bottom:122.962400pt;}
.y170{bottom:124.094533pt;}
.yce{bottom:125.356000pt;}
.y14b{bottom:126.561600pt;}
.y142{bottom:128.174667pt;}
.y6f{bottom:128.370133pt;}
.y35{bottom:130.266533pt;}
.y1a9{bottom:134.509333pt;}
.y16f{bottom:140.094533pt;}
.ycd{bottom:141.356000pt;}
.yf7{bottom:142.886933pt;}
.y34{bottom:143.599867pt;}
.y141{bottom:144.174667pt;}
.y6e{bottom:144.370133pt;}
.y1a8{bottom:150.509333pt;}
.y9e{bottom:150.532400pt;}
.y113{bottom:154.344533pt;}
.y16e{bottom:156.094533pt;}
.y33{bottom:156.933333pt;}
.ycc{bottom:157.356000pt;}
.y140{bottom:160.174667pt;}
.y6d{bottom:160.370133pt;}
.yf6{bottom:162.811467pt;}
.y1a7{bottom:166.509333pt;}
.y9d{bottom:166.532400pt;}
.y110{bottom:167.420933pt;}
.y32{bottom:170.266667pt;}
.y16d{bottom:172.094533pt;}
.ycb{bottom:173.356000pt;}
.y13f{bottom:176.174667pt;}
.y6c{bottom:176.370133pt;}
.y1a6{bottom:182.509333pt;}
.yf5{bottom:182.735867pt;}
.y31{bottom:183.600000pt;}
.y14a{bottom:184.895200pt;}
.y16c{bottom:188.094533pt;}
.yca{bottom:189.356000pt;}
.y13e{bottom:192.174667pt;}
.y6b{bottom:192.370133pt;}
.y30{bottom:196.933467pt;}
.y1a5{bottom:198.509333pt;}
.y9c{bottom:198.531200pt;}
.yf4{bottom:202.660400pt;}
.y16b{bottom:204.094533pt;}
.yc9{bottom:205.356000pt;}
.y13d{bottom:208.174667pt;}
.y6a{bottom:208.370133pt;}
.y2f{bottom:210.266800pt;}
.y112{bottom:212.363067pt;}
.y1a4{bottom:214.509333pt;}
.y16a{bottom:220.094533pt;}
.yc8{bottom:221.356000pt;}
.yf3{bottom:222.584800pt;}
.y2e{bottom:223.600133pt;}
.y10f{bottom:224.094533pt;}
.y13c{bottom:224.174667pt;}
.y69{bottom:224.370133pt;}
.y1a3{bottom:230.509333pt;}
.y2d{bottom:233.381600pt;}
.y9b{bottom:234.529867pt;}
.y169{bottom:236.094533pt;}
.yc7{bottom:237.356000pt;}
.y10e{bottom:240.094533pt;}
.y13b{bottom:240.174667pt;}
.y68{bottom:240.370133pt;}
.yf2{bottom:242.509333pt;}
.y1a2{bottom:246.509333pt;}
.y2c{bottom:246.714933pt;}
.y9a{bottom:250.529867pt;}
.y168{bottom:252.094533pt;}
.yc6{bottom:253.356000pt;}
.y147{bottom:255.147200pt;}
.y10d{bottom:256.094533pt;}
.y13a{bottom:256.174667pt;}
.y67{bottom:256.370133pt;}
.y1a1{bottom:262.509333pt;}
.yf1{bottom:262.541200pt;}
.y2b{bottom:263.600267pt;}
.y201{bottom:264.695067pt;}
.y99{bottom:266.529867pt;}
.y167{bottom:268.094533pt;}
.yc5{bottom:269.356000pt;}
.y10c{bottom:272.094533pt;}
.y139{bottom:272.174667pt;}
.y66{bottom:272.370133pt;}
.y1a0{bottom:278.509333pt;}
.y200{bottom:280.695067pt;}
.yf0{bottom:282.345333pt;}
.y98{bottom:282.529867pt;}
.y166{bottom:284.094533pt;}
.yc4{bottom:285.356000pt;}
.y138{bottom:288.174667pt;}
.y65{bottom:288.370133pt;}
.y19f{bottom:294.509333pt;}
.y97{bottom:298.529867pt;}
.y165{bottom:300.094533pt;}
.yc3{bottom:301.356000pt;}
.yef{bottom:302.269733pt;}
.y1ff{bottom:302.361733pt;}
.y10b{bottom:304.094533pt;}
.y137{bottom:304.174667pt;}
.y64{bottom:304.370133pt;}
.y2a{bottom:306.044533pt;}
.y14c{bottom:306.089200pt;}
.y19e{bottom:310.509333pt;}
.y96{bottom:314.529867pt;}
.y164{bottom:316.094533pt;}
.y1fe{bottom:317.028400pt;}
.yc2{bottom:317.356000pt;}
.y29{bottom:319.377867pt;}
.y10a{bottom:320.094533pt;}
.y136{bottom:320.174667pt;}
.y63{bottom:320.370133pt;}
.yee{bottom:322.194267pt;}
.y19d{bottom:326.509333pt;}
.y95{bottom:330.529867pt;}
.y163{bottom:332.094533pt;}
.y28{bottom:332.711200pt;}
.y114{bottom:333.242133pt;}
.yc1{bottom:333.356000pt;}
.y109{bottom:336.094533pt;}
.y62{bottom:336.370133pt;}
.y1fd{bottom:336.939867pt;}
.y148{bottom:342.001333pt;}
.yed{bottom:342.118667pt;}
.y19c{bottom:342.509333pt;}
.y27{bottom:346.044533pt;}
.y94{bottom:346.529867pt;}
.y1d8{bottom:347.448133pt;}
.y135{bottom:347.513333pt;}
.y162{bottom:348.094533pt;}
.yc0{bottom:349.356000pt;}
.y1fc{bottom:351.606533pt;}
.y108{bottom:352.094533pt;}
.y61{bottom:352.370133pt;}
.y19b{bottom:358.509333pt;}
.y26{bottom:359.377867pt;}
.yec{bottom:362.043200pt;}
.y93{bottom:362.530000pt;}
.y1d7{bottom:363.448133pt;}
.y161{bottom:364.094533pt;}
.ybf{bottom:365.356000pt;}
.y107{bottom:368.094533pt;}
.y60{bottom:368.370133pt;}
.y1fb{bottom:371.518000pt;}
.y25{bottom:372.711200pt;}
.y19a{bottom:374.509333pt;}
.y92{bottom:378.530000pt;}
.y1d6{bottom:379.448133pt;}
.y160{bottom:380.094533pt;}
.ybe{bottom:381.356000pt;}
.yeb{bottom:381.967733pt;}
.y106{bottom:384.094533pt;}
.y5f{bottom:384.370133pt;}
.y24{bottom:386.044533pt;}
.y1fa{bottom:386.184667pt;}
.y199{bottom:390.509333pt;}
.y134{bottom:392.077600pt;}
.y91{bottom:394.530000pt;}
.y1d5{bottom:395.448133pt;}
.y15f{bottom:396.094533pt;}
.ybd{bottom:397.356000pt;}
.y23{bottom:399.377867pt;}
.y105{bottom:400.094533pt;}
.y5e{bottom:400.370133pt;}
.yea{bottom:401.892133pt;}
.y1f9{bottom:406.096133pt;}
.y198{bottom:406.509333pt;}
.y90{bottom:410.530000pt;}
.y1d4{bottom:411.448133pt;}
.y133{bottom:412.002133pt;}
.y15e{bottom:412.094533pt;}
.y22{bottom:412.711200pt;}
.ybc{bottom:413.356000pt;}
.y104{bottom:416.094533pt;}
.y5d{bottom:416.370133pt;}
.ye9{bottom:421.924000pt;}
.y197{bottom:422.509333pt;}
.y21{bottom:426.044533pt;}
.y1f8{bottom:426.115067pt;}
.y8f{bottom:426.530000pt;}
.y1d3{bottom:427.448133pt;}
.y15d{bottom:428.094533pt;}
.ybb{bottom:429.356000pt;}
.y132{bottom:431.926533pt;}
.y103{bottom:432.094533pt;}
.y5c{bottom:432.370133pt;}
.y196{bottom:438.509333pt;}
.y20{bottom:439.377867pt;}
.ye8{bottom:441.728133pt;}
.y8e{bottom:442.530000pt;}
.y1d2{bottom:443.448133pt;}
.y15c{bottom:444.094533pt;}
.y1f7{bottom:445.919067pt;}
.y102{bottom:448.094533pt;}
.y5b{bottom:448.370133pt;}
.y131{bottom:451.851067pt;}
.y1f{bottom:452.711200pt;}
.y195{bottom:454.509333pt;}
.y8d{bottom:458.530000pt;}
.y1d1{bottom:459.448133pt;}
.y15b{bottom:460.094533pt;}
.yba{bottom:461.354667pt;}
.ye7{bottom:461.652533pt;}
.y101{bottom:464.094533pt;}
.y5a{bottom:464.370133pt;}
.y1f6{bottom:465.830533pt;}
.y1e{bottom:466.044533pt;}
.y194{bottom:470.509333pt;}
.y130{bottom:471.775600pt;}
.y8c{bottom:474.530000pt;}
.y1d0{bottom:475.448133pt;}
.y15a{bottom:476.094533pt;}
.y1d{bottom:479.377867pt;}
.y59{bottom:480.370133pt;}
.ye6{bottom:481.577067pt;}
.y1f5{bottom:485.742000pt;}
.y193{bottom:486.509333pt;}
.y8b{bottom:490.530000pt;}
.y1cf{bottom:491.448133pt;}
.y12f{bottom:491.700000pt;}
.y159{bottom:492.094533pt;}
.y1c{bottom:492.711200pt;}
.y58{bottom:496.370133pt;}
.yb9{bottom:497.353467pt;}
.y1f4{bottom:500.408667pt;}
.ye5{bottom:501.501467pt;}
.y192{bottom:502.509333pt;}
.y8a{bottom:506.530000pt;}
.y100{bottom:506.761200pt;}
.y1ce{bottom:507.448133pt;}
.y158{bottom:508.094533pt;}
.y12e{bottom:511.624533pt;}
.y57{bottom:512.370133pt;}
.yb8{bottom:513.353467pt;}
.y1b{bottom:519.378667pt;}
.y1f3{bottom:520.320133pt;}
.ye4{bottom:521.426000pt;}
.y89{bottom:522.530000pt;}
.yff{bottom:522.761200pt;}
.y1cd{bottom:523.448133pt;}
.y157{bottom:524.094533pt;}
.y56{bottom:528.370133pt;}
.yb7{bottom:529.353467pt;}
.y12d{bottom:531.548933pt;}
.y191{bottom:534.508133pt;}
.y1a{bottom:538.045333pt;}
.y88{bottom:538.530000pt;}
.y1cc{bottom:539.448133pt;}
.y156{bottom:540.094533pt;}
.y1f2{bottom:540.231600pt;}
.ye3{bottom:541.350533pt;}
.y55{bottom:544.370133pt;}
.yb6{bottom:545.353467pt;}
.y12c{bottom:551.473467pt;}
.y87{bottom:554.530000pt;}
.y1cb{bottom:555.448133pt;}
.y155{bottom:556.094533pt;}
.y1f1{bottom:560.143067pt;}
.y54{bottom:560.370133pt;}
.ye2{bottom:561.274933pt;}
.yb5{bottom:561.353467pt;}
.y86{bottom:570.530000pt;}
.y12b{bottom:571.397867pt;}
.y1ca{bottom:571.448133pt;}
.y154{bottom:572.094533pt;}
.y149{bottom:575.710267pt;}
.y53{bottom:576.370133pt;}
.yb4{bottom:577.353467pt;}
.y1f0{bottom:580.161867pt;}
.ye1{bottom:581.306800pt;}
.y19{bottom:583.378667pt;}
.y111{bottom:584.795867pt;}
.y190{bottom:586.509333pt;}
.y1c9{bottom:587.448133pt;}
.y12a{bottom:591.322400pt;}
.y52{bottom:592.370133pt;}
.yb3{bottom:593.353467pt;}
.y18{bottom:596.712000pt;}
.y1ef{bottom:600.073333pt;}
.ye0{bottom:601.110933pt;}
.y18f{bottom:602.509333pt;}
.y85{bottom:602.530000pt;}
.y1c8{bottom:603.448133pt;}
.y153{bottom:604.093333pt;}
.y51{bottom:608.370133pt;}
.yb2{bottom:609.353467pt;}
.y17{bottom:610.045333pt;}
.y129{bottom:611.246933pt;}
.y18e{bottom:618.509333pt;}
.y84{bottom:618.530000pt;}
.y1c7{bottom:619.448133pt;}
.y1ee{bottom:619.877467pt;}
.ydf{bottom:621.035333pt;}
.y16{bottom:623.378667pt;}
.y50{bottom:624.370133pt;}
.yb1{bottom:625.353467pt;}
.yde{bottom:628.368667pt;}
.y128{bottom:631.171333pt;}
.y18d{bottom:634.509333pt;}
.y83{bottom:634.530000pt;}
.y1c6{bottom:635.448133pt;}
.y15{bottom:636.712000pt;}
.y1ed{bottom:639.788933pt;}
.y4f{bottom:640.370133pt;}
.yb0{bottom:641.353467pt;}
.y14{bottom:650.045333pt;}
.y18c{bottom:650.509333pt;}
.y127{bottom:651.095867pt;}
.y1c5{bottom:651.448133pt;}
.ydd{bottom:655.613467pt;}
.y152{bottom:656.094667pt;}
.y4e{bottom:656.370133pt;}
.y1ec{bottom:659.700400pt;}
.y13{bottom:663.378667pt;}
.y18b{bottom:666.509333pt;}
.y82{bottom:666.528667pt;}
.y1c4{bottom:667.448133pt;}
.y126{bottom:671.020267pt;}
.y151{bottom:672.094667pt;}
.y4d{bottom:672.370133pt;}
.ydc{bottom:675.858267pt;}
.y12{bottom:676.712000pt;}
.y1eb{bottom:679.611733pt;}
.yaf{bottom:681.917733pt;}
.y18a{bottom:682.509333pt;}
.y1c3{bottom:683.448133pt;}
.y4c{bottom:688.370133pt;}
.yae{bottom:689.251067pt;}
.y11{bottom:690.045333pt;}
.y125{bottom:690.944800pt;}
.y189{bottom:698.509333pt;}
.y1c2{bottom:699.448133pt;}
.y1ea{bottom:699.523200pt;}
.y81{bottom:702.527467pt;}
.y10{bottom:703.378667pt;}
.y4b{bottom:704.370133pt;}
.y124{bottom:710.869333pt;}
.y188{bottom:714.509333pt;}
.y1c1{bottom:715.448133pt;}
.yad{bottom:716.495867pt;}
.yf{bottom:716.712000pt;}
.ydb{bottom:718.524933pt;}
.y80{bottom:718.527467pt;}
.y1e9{bottom:719.542133pt;}
.y4a{bottom:720.370133pt;}
.yac{bottom:723.829200pt;}
.ye{bottom:730.045333pt;}
.y187{bottom:730.509333pt;}
.y123{bottom:730.793733pt;}
.y1c0{bottom:731.448133pt;}
.yda{bottom:734.524933pt;}
.y7f{bottom:734.527467pt;}
.y49{bottom:736.370133pt;}
.y1e8{bottom:739.346133pt;}
.yd{bottom:743.378667pt;}
.y186{bottom:746.509333pt;}
.y1bf{bottom:747.448133pt;}
.yd9{bottom:750.524933pt;}
.y7e{bottom:750.527467pt;}
.y122{bottom:750.718267pt;}
.yab{bottom:751.074000pt;}
.y48{bottom:752.370133pt;}
.y1e7{bottom:754.012800pt;}
.yc{bottom:756.712000pt;}
.y185{bottom:762.509333pt;}
.y1be{bottom:763.448133pt;}
.ya9{bottom:765.740667pt;}
.yd8{bottom:766.524933pt;}
.y47{bottom:768.370133pt;}
.yb{bottom:770.045333pt;}
.y121{bottom:770.642667pt;}
.y1e6{bottom:773.924267pt;}
.y184{bottom:778.509333pt;}
.y1bd{bottom:779.448133pt;}
.yaa{bottom:780.407333pt;}
.yd7{bottom:782.524933pt;}
.y7d{bottom:782.526133pt;}
.ya{bottom:783.378667pt;}
.y46{bottom:784.370133pt;}
.y1e5{bottom:788.590933pt;}
.y120{bottom:790.567200pt;}
.y183{bottom:794.509333pt;}
.y1bc{bottom:795.448133pt;}
.ya8{bottom:800.318800pt;}
.y45{bottom:800.370133pt;}
.y1e4{bottom:808.502400pt;}
.y9{bottom:810.046267pt;}
.y11f{bottom:810.491733pt;}
.y182{bottom:810.509333pt;}
.y1bb{bottom:811.448133pt;}
.yd6{bottom:814.523600pt;}
.y44{bottom:816.370133pt;}
.y7c{bottom:818.524933pt;}
.ya7{bottom:820.230267pt;}
.y181{bottom:826.509333pt;}
.y1ba{bottom:827.448133pt;}
.y1e3{bottom:828.413867pt;}
.y43{bottom:832.370133pt;}
.y11e{bottom:832.975200pt;}
.yd5{bottom:834.523600pt;}
.y7b{bottom:834.524933pt;}
.ya6{bottom:840.141600pt;}
.y180{bottom:842.509333pt;}
.y1b9{bottom:843.448133pt;}
.y1e2{bottom:848.325333pt;}
.y42{bottom:848.370133pt;}
.y11d{bottom:848.975200pt;}
.y8{bottom:850.819600pt;}
.ya4{bottom:854.808267pt;}
.y17f{bottom:858.509333pt;}
.y1b8{bottom:859.448133pt;}
.y1e1{bottom:862.992000pt;}
.y41{bottom:864.370133pt;}
.y7a{bottom:866.523600pt;}
.ya5{bottom:869.474933pt;}
.yd4{bottom:870.522400pt;}
.y17e{bottom:874.509333pt;}
.y150{bottom:874.761333pt;}
.y1b7{bottom:875.448133pt;}
.y1e0{bottom:882.903467pt;}
.y7{bottom:884.153733pt;}
.ya3{bottom:889.386400pt;}
.y17d{bottom:890.509333pt;}
.y14f{bottom:890.761333pt;}
.y1b6{bottom:891.448133pt;}
.y11c{bottom:891.641867pt;}
.y40{bottom:896.368933pt;}
.y79{bottom:902.522400pt;}
.y1df{bottom:902.935333pt;}
.y6{bottom:904.153733pt;}
.y17c{bottom:906.509333pt;}
.y14e{bottom:906.761333pt;}
.y1b5{bottom:907.448133pt;}
.y11b{bottom:907.641867pt;}
.ya2{bottom:911.856933pt;}
.y17b{bottom:922.509333pt;}
.yd3{bottom:922.523600pt;}
.y1de{bottom:922.739467pt;}
.y14d{bottom:922.761333pt;}
.y1b4{bottom:923.448133pt;}
.y11a{bottom:923.641867pt;}
.y17a{bottom:938.509333pt;}
.yd2{bottom:938.523600pt;}
.yfe{bottom:938.761333pt;}
.y1b3{bottom:939.448133pt;}
.y119{bottom:939.641867pt;}
.y1dd{bottom:942.650800pt;}
.y5{bottom:943.645467pt;}
.y179{bottom:954.509333pt;}
.y78{bottom:954.523600pt;}
.yfd{bottom:954.761333pt;}
.y1b2{bottom:955.448133pt;}
.y118{bottom:955.641867pt;}
.y3f{bottom:961.704267pt;}
.y1dc{bottom:962.669733pt;}
.y178{bottom:970.509333pt;}
.y77{bottom:970.523600pt;}
.yfc{bottom:970.761333pt;}
.y1b1{bottom:971.448133pt;}
.y117{bottom:971.641867pt;}
.y3e{bottom:977.704267pt;}
.y4{bottom:982.322533pt;}
.y1db{bottom:982.581200pt;}
.y177{bottom:986.509333pt;}
.y76{bottom:986.523600pt;}
.yfb{bottom:986.761333pt;}
.y1b0{bottom:987.448133pt;}
.y116{bottom:987.641867pt;}
.y3d{bottom:993.704267pt;}
.y3{bottom:998.322533pt;}
.y1da{bottom:1002.385200pt;}
.y176{bottom:1002.509333pt;}
.y75{bottom:1002.523600pt;}
.yfa{bottom:1002.761200pt;}
.y1af{bottom:1003.448133pt;}
.y115{bottom:1003.641867pt;}
.y175{bottom:1018.509333pt;}
.y74{bottom:1018.523600pt;}
.y1ae{bottom:1019.448133pt;}
.y1d9{bottom:1026.319733pt;}
.y2{bottom:1032.856933pt;}
.y174{bottom:1034.509333pt;}
.y73{bottom:1034.523600pt;}
.yf9{bottom:1034.760000pt;}
.y1ad{bottom:1035.448133pt;}
.y3c{bottom:1036.372667pt;}
.y3b{bottom:1070.051200pt;}
.h11{height:23.229500pt;}
.h12{height:23.578125pt;}
.hf{height:23.812833pt;}
.h8{height:32.757812pt;}
.h2{height:34.421333pt;}
.h22{height:36.119792pt;}
.h10{height:38.020833pt;}
.h4{height:39.338667pt;}
.h17{height:40.161458pt;}
.ha{height:42.117188pt;}
.hb{height:42.234375pt;}
.h9{height:42.632812pt;}
.hc{height:42.773438pt;}
.h21{height:46.536458pt;}
.h7{height:46.796875pt;}
.h19{height:46.927083pt;}
.h18{height:47.369792pt;}
.h1c{height:47.499908pt;}
.h1b{height:47.526042pt;}
.h1e{height:47.551642pt;}
.h1d{height:47.552175pt;}
.h1f{height:47.577775pt;}
.h20{height:47.578308pt;}
.h3{height:49.173333pt;}
.h14{height:51.476562pt;}
.h16{height:51.619792pt;}
.h13{height:52.106771pt;}
.h15{height:52.278646pt;}
.he{height:56.156250pt;}
.hd{height:56.312500pt;}
.h6{height:61.005208pt;}
.h5{height:61.783854pt;}
.h1a{height:76.130208pt;}
.h1{height:1118.000000pt;}
.h0{height:1118.047733pt;}
.w0{width:789.229067pt;}
.w1{width:789.333333pt;}
.x0{left:0.000000pt;}
.x6{left:11.097067pt;}
.x3{left:73.354267pt;}
.x2d{left:78.687600pt;}
.x4a{left:81.372000pt;}
.x4{left:82.820933pt;}
.x5{left:92.252000pt;}
.x13{left:97.319200pt;}
.x2c{left:130.026000pt;}
.x2e{left:140.468667pt;}
.x2f{left:156.468667pt;}
.x11{left:161.316667pt;}
.x15{left:166.005200pt;}
.x12{left:172.655333pt;}
.x2a{left:175.727333pt;}
.x30{left:178.939200pt;}
.x16{left:188.475600pt;}
.x8{left:193.148667pt;}
.x31{left:198.857200pt;}
.xb{left:202.041867pt;}
.x9{left:207.595333pt;}
.x32{left:218.788133pt;}
.x17{left:228.324667pt;}
.x7{left:235.183733pt;}
.x33{left:238.712667pt;}
.x2b{left:244.272267pt;}
.x47{left:246.030133pt;}
.xa{left:247.593867pt;}
.x34{left:258.637067pt;}
.x18{left:268.173600pt;}
.x35{left:278.561600pt;}
.x19{left:288.098000pt;}
.x36{left:298.486000pt;}
.xc{left:304.112800pt;}
.x1a{left:308.022533pt;}
.x37{left:318.410533pt;}
.x1b{left:327.947067pt;}
.x38{left:338.335067pt;}
.x1c{left:347.871467pt;}
.x39{left:358.259467pt;}
.x14{left:361.293733pt;}
.x48{left:362.868533pt;}
.x1d{left:367.796000pt;}
.x3a{left:378.184000pt;}
.xe{left:383.679200pt;}
.x1e{left:387.720400pt;}
.x10{left:392.944000pt;}
.x3b{left:398.108400pt;}
.x1f{left:407.644933pt;}
.x3c{left:418.032933pt;}
.x20{left:427.569333pt;}
.x3d{left:437.957467pt;}
.x21{left:447.493867pt;}
.x49{left:449.454267pt;}
.x3e{left:457.881867pt;}
.x22{left:467.418400pt;}
.x3f{left:477.806400pt;}
.xf{left:487.000800pt;}
.xd{left:491.867467pt;}
.x40{left:497.730800pt;}
.x23{left:507.267333pt;}
.x41{left:517.655333pt;}
.x24{left:527.191733pt;}
.x42{left:537.579867pt;}
.x25{left:547.116267pt;}
.x43{left:557.504267pt;}
.x26{left:567.040800pt;}
.x44{left:577.428800pt;}
.x27{left:586.965200pt;}
.x45{left:597.353200pt;}
.x28{left:606.889733pt;}
.x46{left:617.277733pt;}
.x29{left:626.814133pt;}
.x2{left:643.400933pt;}
.x1{left:700.306000pt;}
}




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