
    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_6a3faffd1efafbd8fcd90e13.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.938477;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_e35ced94aa445e204afc0b47.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.938477;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_7b81336755140abf38e7ece2.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.938477;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_bff0988ac6a2c222aa0c79a6.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.939453;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_81ca49d9a10da69af0e17562.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.938965;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_0e54ec4e12970458580d64e4.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.910645;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_a4cf183fe15282be4e614637.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_011cb6f6903fc23800d20dc4.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.910156;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_362621c38d7e24f5b45992f7.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.808000;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_96ad21352705689963bc4048.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.893555;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:-21.701400px;}
.v3{vertical-align:-2.940000px;}
.v0{vertical-align:0.000000px;}
.v5{vertical-align:1.620000px;}
.v4{vertical-align:28.263000px;}
.v1{vertical-align:30.381600px;}
.ls7c{letter-spacing:-2.640000px;}
.lsc{letter-spacing:-0.780000px;}
.ls5c{letter-spacing:-0.480000px;}
.ls39{letter-spacing:-0.420000px;}
.ls58{letter-spacing:-0.360000px;}
.ls50{letter-spacing:-0.240000px;}
.ls7a{letter-spacing:-0.192000px;}
.ls37{letter-spacing:-0.180000px;}
.ls86{letter-spacing:-0.144000px;}
.ls48{letter-spacing:-0.120000px;}
.ls49{letter-spacing:-0.060000px;}
.ls7b{letter-spacing:-0.048000px;}
.lsb{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.003540px;}
.ls1{letter-spacing:0.005676px;}
.ls5b{letter-spacing:0.048000px;}
.lsa{letter-spacing:0.060000px;}
.ls6e{letter-spacing:0.096000px;}
.ls23{letter-spacing:0.120000px;}
.ls13{letter-spacing:0.180000px;}
.ls7d{letter-spacing:0.192000px;}
.ls2c{letter-spacing:0.240000px;}
.ls6c{letter-spacing:0.288000px;}
.ls3{letter-spacing:0.300000px;}
.ls69{letter-spacing:0.336000px;}
.ls1f{letter-spacing:0.360000px;}
.ls81{letter-spacing:0.384000px;}
.ls41{letter-spacing:0.420000px;}
.ls84{letter-spacing:0.432000px;}
.ls12{letter-spacing:0.480000px;}
.ls54{letter-spacing:0.528000px;}
.ls2f{letter-spacing:0.540000px;}
.ls57{letter-spacing:0.576000px;}
.ls32{letter-spacing:0.600000px;}
.ls55{letter-spacing:0.624000px;}
.ls21{letter-spacing:0.660000px;}
.ls80{letter-spacing:0.672000px;}
.ls3a{letter-spacing:0.720000px;}
.ls73{letter-spacing:0.768000px;}
.ls36{letter-spacing:0.780000px;}
.ls6b{letter-spacing:0.816000px;}
.lsd{letter-spacing:0.840000px;}
.ls75{letter-spacing:0.864000px;}
.ls1b{letter-spacing:0.900000px;}
.ls53{letter-spacing:0.937200px;}
.ls5{letter-spacing:0.960000px;}
.ls76{letter-spacing:1.008000px;}
.ls4c{letter-spacing:1.020000px;}
.ls85{letter-spacing:1.056000px;}
.ls17{letter-spacing:1.080000px;}
.ls7{letter-spacing:1.140000px;}
.ls71{letter-spacing:1.152000px;}
.ls3f{letter-spacing:1.200000px;}
.ls6a{letter-spacing:1.248000px;}
.ls26{letter-spacing:1.260000px;}
.ls11{letter-spacing:1.320000px;}
.ls29{letter-spacing:1.380000px;}
.ls79{letter-spacing:1.392000px;}
.ls1e{letter-spacing:1.440000px;}
.ls2a{letter-spacing:1.500000px;}
.ls7e{letter-spacing:1.536000px;}
.ls8{letter-spacing:1.560000px;}
.ls78{letter-spacing:1.584000px;}
.ls19{letter-spacing:1.620000px;}
.ls82{letter-spacing:1.632000px;}
.ls10{letter-spacing:1.680000px;}
.ls77{letter-spacing:1.728000px;}
.lse{letter-spacing:1.740000px;}
.ls18{letter-spacing:1.800000px;}
.ls7f{letter-spacing:1.824000px;}
.ls25{letter-spacing:1.860000px;}
.ls74{letter-spacing:1.872000px;}
.ls24{letter-spacing:1.920000px;}
.ls83{letter-spacing:1.968000px;}
.ls30{letter-spacing:1.980000px;}
.ls68{letter-spacing:2.016000px;}
.ls4{letter-spacing:2.040000px;}
.ls14{letter-spacing:2.100000px;}
.ls9{letter-spacing:2.160000px;}
.ls67{letter-spacing:2.208000px;}
.ls16{letter-spacing:2.220000px;}
.ls4a{letter-spacing:2.280000px;}
.ls65{letter-spacing:2.304000px;}
.ls6{letter-spacing:2.340000px;}
.ls31{letter-spacing:2.400000px;}
.ls2b{letter-spacing:2.460000px;}
.ls27{letter-spacing:2.520000px;}
.ls2e{letter-spacing:2.580000px;}
.ls6f{letter-spacing:2.592000px;}
.ls34{letter-spacing:2.640000px;}
.ls45{letter-spacing:2.700000px;}
.ls3d{letter-spacing:2.760000px;}
.ls1d{letter-spacing:2.820000px;}
.ls66{letter-spacing:2.832000px;}
.ls42{letter-spacing:2.880000px;}
.ls2d{letter-spacing:2.940000px;}
.ls38{letter-spacing:3.000000px;}
.ls3e{letter-spacing:3.060000px;}
.ls1a{letter-spacing:3.120000px;}
.ls15{letter-spacing:3.180000px;}
.ls64{letter-spacing:3.216000px;}
.ls33{letter-spacing:3.240000px;}
.ls20{letter-spacing:3.300000px;}
.ls5a{letter-spacing:3.420000px;}
.ls28{letter-spacing:3.540000px;}
.ls6d{letter-spacing:3.552000px;}
.ls5f{letter-spacing:3.660000px;}
.ls46{letter-spacing:3.720000px;}
.ls56{letter-spacing:3.840000px;}
.ls5d{letter-spacing:3.900000px;}
.ls5e{letter-spacing:3.960000px;}
.ls3b{letter-spacing:4.020000px;}
.ls4f{letter-spacing:4.140000px;}
.ls72{letter-spacing:4.224000px;}
.ls52{letter-spacing:4.260000px;}
.ls70{letter-spacing:4.368000px;}
.ls61{letter-spacing:4.560000px;}
.ls3c{letter-spacing:4.620000px;}
.ls59{letter-spacing:4.800000px;}
.ls35{letter-spacing:4.860000px;}
.ls4d{letter-spacing:5.040000px;}
.lsf{letter-spacing:5.160000px;}
.ls51{letter-spacing:5.340000px;}
.ls62{letter-spacing:5.520000px;}
.ls22{letter-spacing:5.580000px;}
.ls40{letter-spacing:5.700000px;}
.ls4b{letter-spacing:5.760000px;}
.ls1c{letter-spacing:5.880000px;}
.ls43{letter-spacing:5.940000px;}
.ls44{letter-spacing:6.060000px;}
.ls47{letter-spacing:6.300000px;}
.ls4e{letter-spacing:7.200000px;}
.ls60{letter-spacing:7.440000px;}
.ls63{letter-spacing:7.620000px;}
.ls0{letter-spacing:59.532876px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0{word-spacing:-35.194800px;}
.ws40{word-spacing:-20.940000px;}
.ws90{word-spacing:-20.880000px;}
.wsa0{word-spacing:-19.200000px;}
.ws86{word-spacing:-18.840000px;}
.ws65{word-spacing:-18.540000px;}
.ws19{word-spacing:-18.180000px;}
.ws13{word-spacing:-18.120000px;}
.ws1a{word-spacing:-18.000000px;}
.ws1c{word-spacing:-17.640000px;}
.ws46{word-spacing:-17.580000px;}
.ws18{word-spacing:-17.520000px;}
.ws7b{word-spacing:-17.460000px;}
.ws11{word-spacing:-17.220000px;}
.ws12{word-spacing:-17.160000px;}
.ws2{word-spacing:-16.680000px;}
.ws87{word-spacing:-16.560000px;}
.ws45{word-spacing:-16.500000px;}
.ws47{word-spacing:-16.260000px;}
.ws88{word-spacing:-16.080000px;}
.ws68{word-spacing:-16.020000px;}
.ws14{word-spacing:-15.900000px;}
.ws43{word-spacing:-15.840000px;}
.ws17{word-spacing:-15.660000px;}
.ws97{word-spacing:-15.600000px;}
.ws1b{word-spacing:-15.540000px;}
.wse{word-spacing:-15.480000px;}
.ws66{word-spacing:-15.420000px;}
.ws5a{word-spacing:-15.300000px;}
.ws41{word-spacing:-15.240000px;}
.wsf{word-spacing:-15.180000px;}
.ws67{word-spacing:-15.120000px;}
.ws10{word-spacing:-15.060000px;}
.ws16{word-spacing:-15.000000px;}
.ws42{word-spacing:-14.940000px;}
.ws69{word-spacing:-14.880000px;}
.ws15{word-spacing:-14.820000px;}
.wsbe{word-spacing:-14.640000px;}
.wsa2{word-spacing:-14.208000px;}
.wsbf{word-spacing:-13.824000px;}
.ws44{word-spacing:-13.500000px;}
.ws4{word-spacing:-13.344000px;}
.wsa4{word-spacing:-13.152000px;}
.wsa6{word-spacing:-12.720000px;}
.wsc0{word-spacing:-12.528000px;}
.ws3{word-spacing:-12.510000px;}
.wsa5{word-spacing:-12.480000px;}
.ws91{word-spacing:-12.000000px;}
.wsa1{word-spacing:-11.952000px;}
.ws1{word-spacing:-10.210662px;}
.wsa3{word-spacing:-9.360000px;}
.ws53{word-spacing:-6.060000px;}
.ws52{word-spacing:-5.940000px;}
.ws1d{word-spacing:-5.160000px;}
.ws6f{word-spacing:-5.040000px;}
.ws93{word-spacing:-4.800000px;}
.wsab{word-spacing:-4.560000px;}
.ws82{word-spacing:-4.260000px;}
.ws6c{word-spacing:-4.140000px;}
.wsa8{word-spacing:-4.020000px;}
.ws55{word-spacing:-3.720000px;}
.ws4f{word-spacing:-3.540000px;}
.ws94{word-spacing:-3.420000px;}
.ws2b{word-spacing:-3.300000px;}
.ws3d{word-spacing:-3.240000px;}
.ws34{word-spacing:-3.180000px;}
.ws3a{word-spacing:-3.120000px;}
.ws95{word-spacing:-3.000000px;}
.ws70{word-spacing:-2.940000px;}
.ws6{word-spacing:-2.886000px;}
.wsae{word-spacing:-2.832000px;}
.ws4a{word-spacing:-2.760000px;}
.wsac{word-spacing:-2.700000px;}
.wsc6{word-spacing:-2.640000px;}
.ws6d{word-spacing:-2.520000px;}
.ws7e{word-spacing:-2.460000px;}
.wsb7{word-spacing:-2.304000px;}
.ws56{word-spacing:-2.280000px;}
.ws35{word-spacing:-2.220000px;}
.wsaf{word-spacing:-2.208000px;}
.ws25{word-spacing:-2.160000px;}
.ws63{word-spacing:-2.100000px;}
.wsb0{word-spacing:-2.016000px;}
.ws38{word-spacing:-1.980000px;}
.wscd{word-spacing:-1.968000px;}
.ws2c{word-spacing:-1.920000px;}
.wsba{word-spacing:-1.872000px;}
.ws4d{word-spacing:-1.860000px;}
.wsc5{word-spacing:-1.824000px;}
.ws81{word-spacing:-1.740000px;}
.wsad{word-spacing:-1.728000px;}
.ws1e{word-spacing:-1.680000px;}
.wsbc{word-spacing:-1.584000px;}
.ws4c{word-spacing:-1.560000px;}
.wsc1{word-spacing:-1.536000px;}
.ws33{word-spacing:-1.500000px;}
.ws3c{word-spacing:-1.440000px;}
.wsbd{word-spacing:-1.392000px;}
.ws32{word-spacing:-1.380000px;}
.ws1f{word-spacing:-1.320000px;}
.ws4b{word-spacing:-1.260000px;}
.wsb4{word-spacing:-1.248000px;}
.ws4e{word-spacing:-1.200000px;}
.wsb8{word-spacing:-1.152000px;}
.ws36{word-spacing:-1.140000px;}
.ws24{word-spacing:-1.080000px;}
.wsc8{word-spacing:-1.056000px;}
.ws6e{word-spacing:-1.020000px;}
.wsbb{word-spacing:-1.008000px;}
.ws31{word-spacing:-0.960000px;}
.ws50{word-spacing:-0.900000px;}
.ws3e{word-spacing:-0.840000px;}
.wsb9{word-spacing:-0.816000px;}
.ws7f{word-spacing:-0.780000px;}
.ws48{word-spacing:-0.720000px;}
.wsc7{word-spacing:-0.672000px;}
.ws2a{word-spacing:-0.660000px;}
.ws8c{word-spacing:-0.624000px;}
.ws37{word-spacing:-0.600000px;}
.ws8f{word-spacing:-0.576000px;}
.ws51{word-spacing:-0.540000px;}
.wscc{word-spacing:-0.528000px;}
.ws20{word-spacing:-0.480000px;}
.ws72{word-spacing:-0.420000px;}
.wsb3{word-spacing:-0.384000px;}
.ws28{word-spacing:-0.360000px;}
.ws54{word-spacing:-0.300000px;}
.ws5c{word-spacing:-0.240000px;}
.ws21{word-spacing:-0.180000px;}
.ws3b{word-spacing:-0.120000px;}
.ws22{word-spacing:-0.060000px;}
.ws96{word-spacing:-0.048000px;}
.ws5{word-spacing:0.000000px;}
.wsb2{word-spacing:0.048000px;}
.ws7{word-spacing:0.060000px;}
.ws5b{word-spacing:0.120000px;}
.wsca{word-spacing:0.144000px;}
.ws77{word-spacing:0.180000px;}
.wsb1{word-spacing:0.192000px;}
.ws73{word-spacing:0.240000px;}
.wsaa{word-spacing:0.300000px;}
.ws62{word-spacing:0.336000px;}
.ws29{word-spacing:0.360000px;}
.ws39{word-spacing:0.420000px;}
.ws30{word-spacing:0.480000px;}
.wsc3{word-spacing:0.528000px;}
.wsc{word-spacing:0.540000px;}
.wsc2{word-spacing:0.624000px;}
.ws83{word-spacing:0.720000px;}
.wsc9{word-spacing:0.816000px;}
.ws5e{word-spacing:0.840000px;}
.wsb5{word-spacing:0.912000px;}
.ws76{word-spacing:0.960000px;}
.wsa{word-spacing:1.080000px;}
.wsd{word-spacing:1.200000px;}
.ws8a{word-spacing:1.380000px;}
.ws64{word-spacing:1.488000px;}
.ws84{word-spacing:1.500000px;}
.ws9d{word-spacing:1.560000px;}
.ws7a{word-spacing:1.680000px;}
.ws5f{word-spacing:1.740000px;}
.ws79{word-spacing:1.824000px;}
.ws2d{word-spacing:1.980000px;}
.ws23{word-spacing:2.040000px;}
.ws60{word-spacing:2.100000px;}
.wsb{word-spacing:2.160000px;}
.wscb{word-spacing:2.208000px;}
.ws8e{word-spacing:2.220000px;}
.wsb6{word-spacing:2.448000px;}
.ws80{word-spacing:2.580000px;}
.ws61{word-spacing:2.640000px;}
.ws27{word-spacing:2.760000px;}
.ws85{word-spacing:2.832000px;}
.ws9e{word-spacing:3.060000px;}
.ws9c{word-spacing:3.120000px;}
.ws75{word-spacing:3.240000px;}
.ws59{word-spacing:3.300000px;}
.ws9f{word-spacing:3.408000px;}
.ws92{word-spacing:3.420000px;}
.ws71{word-spacing:3.480000px;}
.ws2f{word-spacing:3.540000px;}
.ws8d{word-spacing:3.720000px;}
.wsc4{word-spacing:3.744000px;}
.ws78{word-spacing:3.780000px;}
.ws26{word-spacing:3.840000px;}
.ws9b{word-spacing:3.900000px;}
.ws8b{word-spacing:3.936000px;}
.ws2e{word-spacing:3.960000px;}
.ws89{word-spacing:3.984000px;}
.ws58{word-spacing:4.080000px;}
.ws5d{word-spacing:4.260000px;}
.ws7c{word-spacing:4.380000px;}
.ws6b{word-spacing:4.500000px;}
.ws6a{word-spacing:4.620000px;}
.ws49{word-spacing:4.680000px;}
.ws7d{word-spacing:4.740000px;}
.ws3f{word-spacing:4.860000px;}
.ws8{word-spacing:4.920000px;}
.ws9{word-spacing:4.980000px;}
.ws74{word-spacing:5.220000px;}
.wsa7{word-spacing:5.460000px;}
.wsa9{word-spacing:5.520000px;}
.ws57{word-spacing:11.280000px;}
.ws98{word-spacing:220.176000px;}
.ws99{word-spacing:245.664000px;}
.ws9a{word-spacing:288.192000px;}
._d{margin-left:-2898.096000px;}
._10{margin-left:-2874.288000px;}
._2{margin-left:-9.368400px;}
._6{margin-left:-7.680000px;}
._5{margin-left:-6.660000px;}
._1{margin-left:-5.376000px;}
._3{margin-left:-3.465000px;}
._0{margin-left:-2.310000px;}
._4{margin-left:-1.080000px;}
._8{width:1.560000px;}
._b{width:3.000000px;}
._7{width:4.980000px;}
._a{width:6.300000px;}
._c{width:8.220000px;}
._e{width:9.420000px;}
._9{width:10.560000px;}
._f{width:12.000000px;}
._14{width:181.872000px;}
._17{width:201.840000px;}
._13{width:205.920000px;}
._15{width:257.664000px;}
._11{width:264.576000px;}
._16{width:283.200000px;}
._12{width:347.232000px;}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:26.235000px;}
.fsb{font-size:34.980000px;}
.fs4{font-size:36.729000px;}
.fs7{font-size:39.000000px;}
.fs0{font-size:42.000000px;}
.fs6{font-size:45.000000px;}
.fs9{font-size:48.000000px;}
.fsa{font-size:54.000000px;}
.fs8{font-size:60.000000px;}
.fs3{font-size:63.000000px;}
.fs1{font-size:78.000000px;}
.fs2{font-size:126.600000px;}
.y0{bottom:0.000000px;}
.y1{bottom:46.264950px;}
.y2e{bottom:47.777250px;}
.yba{bottom:82.822500px;}
.yef{bottom:83.046900px;}
.y94{bottom:83.635350px;}
.y64{bottom:83.770350px;}
.yf2{bottom:83.885550px;}
.yee{bottom:84.511650px;}
.yb8{bottom:84.541050px;}
.y2b{bottom:88.026750px;}
.yeb{bottom:91.112100px;}
.yb5{bottom:91.253850px;}
.y16d{bottom:93.084000px;}
.y19c{bottom:95.121900px;}
.y1dc{bottom:95.263500px;}
.y140{bottom:95.514000px;}
.yb9{bottom:98.566500px;}
.yf1{bottom:99.629550px;}
.yed{bottom:100.255650px;}
.y93{bottom:101.635350px;}
.y116{bottom:101.704350px;}
.y63{bottom:101.770350px;}
.y2a{bottom:103.023000px;}
.yea{bottom:109.112100px;}
.yb4{bottom:109.253850px;}
.y16c{bottom:109.332000px;}
.y19b{bottom:110.121900px;}
.y1db{bottom:110.263500px;}
.y13f{bottom:110.514000px;}
.yec{bottom:115.999650px;}
.y92{bottom:119.635350px;}
.y115{bottom:119.704350px;}
.y62{bottom:119.770350px;}
.y19a{bottom:125.121900px;}
.y1da{bottom:125.263500px;}
.y16b{bottom:125.580000px;}
.ye9{bottom:127.112100px;}
.yb3{bottom:127.253850px;}
.y91{bottom:137.635350px;}
.y114{bottom:137.704350px;}
.y61{bottom:137.770350px;}
.y199{bottom:140.121900px;}
.y1d9{bottom:140.263500px;}
.y16a{bottom:141.828000px;}
.y13e{bottom:143.632350px;}
.ye8{bottom:145.112100px;}
.yb2{bottom:145.253850px;}
.y1d8{bottom:155.263500px;}
.y90{bottom:155.635350px;}
.y60{bottom:155.770350px;}
.y169{bottom:158.076000px;}
.ye7{bottom:163.112100px;}
.yb1{bottom:163.253850px;}
.y27{bottom:170.120850px;}
.y1d7{bottom:170.263500px;}
.y113{bottom:173.197500px;}
.y198{bottom:173.232600px;}
.y8f{bottom:173.635350px;}
.y5f{bottom:173.770350px;}
.y168{bottom:174.324000px;}
.y13d{bottom:179.482350px;}
.ye6{bottom:181.112100px;}
.yb0{bottom:181.253850px;}
.y1d6{bottom:185.263500px;}
.y26{bottom:188.120850px;}
.y112{bottom:188.197500px;}
.y8e{bottom:191.635350px;}
.y5e{bottom:191.770350px;}
.y13c{bottom:197.482350px;}
.ye5{bottom:199.112100px;}
.yaf{bottom:199.253850px;}
.y1d5{bottom:200.263500px;}
.y167{bottom:203.328000px;}
.y25{bottom:206.120850px;}
.y8d{bottom:209.635350px;}
.y5d{bottom:209.770350px;}
.y1d4{bottom:215.263500px;}
.ye4{bottom:217.112100px;}
.yae{bottom:217.253850px;}
.y111{bottom:219.320850px;}
.y166{bottom:219.828000px;}
.y24{bottom:224.120850px;}
.y8c{bottom:227.635350px;}
.y5c{bottom:227.770350px;}
.y197{bottom:227.772600px;}
.y1d3{bottom:230.263500px;}
.y13b{bottom:233.737350px;}
.ye3{bottom:235.112100px;}
.yad{bottom:235.253850px;}
.y110{bottom:236.915850px;}
.y23{bottom:242.120850px;}
.y1d2{bottom:245.263500px;}
.y196{bottom:245.367600px;}
.y8b{bottom:245.635350px;}
.y5b{bottom:245.770350px;}
.y13a{bottom:251.737350px;}
.y165{bottom:252.219150px;}
.ye2{bottom:253.112100px;}
.yac{bottom:253.253850px;}
.y22{bottom:260.120850px;}
.y1d1{bottom:260.263500px;}
.y8a{bottom:263.635350px;}
.y5a{bottom:263.770350px;}
.y139{bottom:269.737350px;}
.ye1{bottom:271.112100px;}
.yab{bottom:271.253850px;}
.y10f{bottom:272.765850px;}
.y1d0{bottom:275.263500px;}
.y29{bottom:278.120850px;}
.y195{bottom:281.367600px;}
.y89{bottom:281.635350px;}
.y59{bottom:281.770350px;}
.y138{bottom:287.737350px;}
.ye0{bottom:289.112100px;}
.yaa{bottom:289.253850px;}
.y1cf{bottom:290.263500px;}
.y10e{bottom:290.765850px;}
.y21{bottom:295.717950px;}
.y28{bottom:296.120850px;}
.y164{bottom:298.184700px;}
.y88{bottom:299.635350px;}
.y58{bottom:299.770350px;}
.y1ce{bottom:305.263500px;}
.y137{bottom:305.737350px;}
.ydf{bottom:307.112100px;}
.ya9{bottom:307.253850px;}
.y163{bottom:313.928700px;}
.y87{bottom:317.635350px;}
.y57{bottom:317.770350px;}
.y194{bottom:317.772600px;}
.y1cd{bottom:320.263500px;}
.y136{bottom:323.737350px;}
.yde{bottom:325.112100px;}
.ya8{bottom:325.253850px;}
.y10d{bottom:327.020850px;}
.y1cc{bottom:335.263500px;}
.y86{bottom:335.635350px;}
.y56{bottom:335.770350px;}
.y193{bottom:335.772600px;}
.y135{bottom:341.737350px;}
.ydd{bottom:343.112100px;}
.ya7{bottom:343.253850px;}
.y10c{bottom:345.020850px;}
.y1cb{bottom:350.263500px;}
.y85{bottom:353.635350px;}
.y55{bottom:353.770350px;}
.y192{bottom:353.772600px;}
.y134{bottom:359.737350px;}
.ydc{bottom:361.112100px;}
.ya6{bottom:361.253850px;}
.y10b{bottom:363.020850px;}
.y1ca{bottom:365.263500px;}
.y84{bottom:371.635350px;}
.y54{bottom:371.770350px;}
.y191{bottom:371.772600px;}
.y20{bottom:372.064200px;}
.y133{bottom:377.737350px;}
.ydb{bottom:379.112100px;}
.ya5{bottom:379.253850px;}
.y1c9{bottom:380.263500px;}
.y83{bottom:389.635350px;}
.y53{bottom:389.770350px;}
.y190{bottom:389.772600px;}
.y1c8{bottom:395.263500px;}
.y132{bottom:395.737350px;}
.yda{bottom:397.112100px;}
.ya4{bottom:397.253850px;}
.y10a{bottom:398.514000px;}
.y1f{bottom:399.409200px;}
.y82{bottom:407.635350px;}
.y52{bottom:407.770350px;}
.y18f{bottom:407.772600px;}
.y1c7{bottom:410.263500px;}
.y109{bottom:413.514000px;}
.y131{bottom:413.737350px;}
.yd9{bottom:415.112100px;}
.ya3{bottom:415.253850px;}
.y1e{bottom:417.409200px;}
.y1c6{bottom:425.263500px;}
.y18e{bottom:425.367600px;}
.y81{bottom:425.635350px;}
.y51{bottom:425.770350px;}
.y130{bottom:431.737350px;}
.yd8{bottom:433.112100px;}
.ya2{bottom:433.253850px;}
.y1d{bottom:435.409200px;}
.y1c5{bottom:440.263500px;}
.y80{bottom:443.635350px;}
.y50{bottom:443.770350px;}
.y108{bottom:446.632350px;}
.yd7{bottom:451.112100px;}
.ya1{bottom:451.253850px;}
.y1c{bottom:453.409200px;}
.y1c4{bottom:455.263500px;}
.y7f{bottom:461.635350px;}
.y4f{bottom:461.770350px;}
.y18d{bottom:461.772600px;}
.y12f{bottom:467.230500px;}
.yd6{bottom:469.112100px;}
.ya0{bottom:469.253850px;}
.y1c3{bottom:470.263500px;}
.y1b{bottom:471.409200px;}
.y18c{bottom:479.367600px;}
.y7e{bottom:479.635350px;}
.y4e{bottom:479.770350px;}
.y12e{bottom:482.230500px;}
.y107{bottom:482.482350px;}
.y1c2{bottom:485.263500px;}
.yd5{bottom:487.112100px;}
.y9f{bottom:487.253850px;}
.y1a{bottom:489.409200px;}
.y7d{bottom:497.635350px;}
.y4d{bottom:497.770350px;}
.y1c1{bottom:500.265900px;}
.y106{bottom:500.482350px;}
.yd4{bottom:505.112100px;}
.y19{bottom:507.409200px;}
.y1c0{bottom:515.265900px;}
.y12d{bottom:515.340600px;}
.y7c{bottom:515.635350px;}
.y4c{bottom:515.770350px;}
.y18b{bottom:515.772600px;}
.y9e{bottom:522.094350px;}
.yd3{bottom:523.112100px;}
.y18{bottom:525.409200px;}
.y1bf{bottom:530.265900px;}
.y7b{bottom:533.635350px;}
.y4b{bottom:533.770350px;}
.y18a{bottom:533.772600px;}
.y105{bottom:536.737350px;}
.y9d{bottom:537.700350px;}
.yb7{bottom:539.953050px;}
.yd2{bottom:541.112100px;}
.y17{bottom:543.409200px;}
.y1be{bottom:545.265900px;}
.y12c{bottom:551.595600px;}
.y7a{bottom:551.635350px;}
.y4a{bottom:551.770350px;}
.y189{bottom:551.772600px;}
.y9c{bottom:552.055350px;}
.y104{bottom:554.737350px;}
.yb6{bottom:555.697050px;}
.yd1{bottom:559.112100px;}
.y1bd{bottom:560.265900px;}
.y16{bottom:561.409200px;}
.y12b{bottom:569.595600px;}
.y79{bottom:569.635350px;}
.y9b{bottom:569.650350px;}
.y49{bottom:569.770350px;}
.y188{bottom:569.772600px;}
.y103{bottom:572.737350px;}
.y1bc{bottom:575.265900px;}
.yd0{bottom:577.112100px;}
.y15{bottom:579.409200px;}
.y12a{bottom:587.595600px;}
.y78{bottom:587.635350px;}
.y48{bottom:587.770350px;}
.y187{bottom:587.772600px;}
.y1bb{bottom:590.265900px;}
.y102{bottom:590.737350px;}
.ycf{bottom:595.112100px;}
.y14{bottom:597.409200px;}
.y1ba{bottom:605.265900px;}
.y9a{bottom:605.500350px;}
.y77{bottom:605.635350px;}
.y47{bottom:605.770350px;}
.y186{bottom:605.772600px;}
.yce{bottom:613.112100px;}
.y13{bottom:615.409200px;}
.y1b9{bottom:620.265900px;}
.y129{bottom:623.088750px;}
.y99{bottom:623.500350px;}
.y76{bottom:623.635350px;}
.y46{bottom:623.770350px;}
.y185{bottom:623.772600px;}
.y101{bottom:626.230500px;}
.ycd{bottom:631.112100px;}
.y12{bottom:633.409200px;}
.y1b8{bottom:635.265900px;}
.y14f{bottom:636.195600px;}
.y128{bottom:638.088750px;}
.y100{bottom:641.230500px;}
.y98{bottom:641.500350px;}
.y75{bottom:641.635350px;}
.y162{bottom:641.640600px;}
.y45{bottom:641.770350px;}
.y184{bottom:641.772600px;}
.ycc{bottom:649.112100px;}
.y1b7{bottom:650.265900px;}
.y14e{bottom:654.195600px;}
.yff{bottom:656.230500px;}
.y183{bottom:659.367600px;}
.y74{bottom:659.635350px;}
.y161{bottom:659.640600px;}
.y44{bottom:659.770350px;}
.y1b6{bottom:665.265900px;}
.ycb{bottom:667.112100px;}
.y127{bottom:671.207100px;}
.y14d{bottom:672.195600px;}
.y97{bottom:677.365350px;}
.y73{bottom:677.635350px;}
.y160{bottom:677.640600px;}
.y43{bottom:677.770350px;}
.y11{bottom:678.567300px;}
.y1b5{bottom:680.265900px;}
.yca{bottom:685.112100px;}
.yfe{bottom:687.353850px;}
.y10{bottom:691.018050px;}
.y1b4{bottom:695.265900px;}
.y96{bottom:695.365350px;}
.y72{bottom:695.635350px;}
.y15f{bottom:695.640600px;}
.y42{bottom:695.770350px;}
.y182{bottom:695.772600px;}
.yc9{bottom:703.112100px;}
.yfd{bottom:704.948850px;}
.y126{bottom:707.057100px;}
.y14c{bottom:707.688750px;}
.y1b3{bottom:710.265900px;}
.y71{bottom:713.635350px;}
.y15e{bottom:713.640600px;}
.y41{bottom:713.770350px;}
.y181{bottom:713.772600px;}
.yc8{bottom:721.112100px;}
.y125{bottom:725.057100px;}
.y1f2{bottom:725.263500px;}
.y1b2{bottom:725.265900px;}
.yf{bottom:728.158800px;}
.y95{bottom:731.230350px;}
.y70{bottom:731.635350px;}
.y15d{bottom:731.640600px;}
.y40{bottom:731.770350px;}
.y180{bottom:731.772600px;}
.ye{bottom:736.233600px;}
.yc7{bottom:739.112100px;}
.y1f1{bottom:740.263500px;}
.y1b1{bottom:740.265900px;}
.yfc{bottom:740.798850px;}
.y6f{bottom:749.635350px;}
.y3f{bottom:749.770350px;}
.y17f{bottom:749.772600px;}
.yd{bottom:755.158800px;}
.y1f0{bottom:755.263500px;}
.y1b0{bottom:755.265900px;}
.yc6{bottom:757.112100px;}
.yfb{bottom:758.798850px;}
.y124{bottom:761.312100px;}
.y15c{bottom:767.235600px;}
.y6e{bottom:767.635350px;}
.y3e{bottom:767.770350px;}
.y17e{bottom:767.772600px;}
.yc{bottom:768.658950px;}
.y1ef{bottom:770.263500px;}
.y1af{bottom:770.265900px;}
.yc5{bottom:775.112100px;}
.yb{bottom:776.733600px;}
.y14b{bottom:777.053850px;}
.y123{bottom:779.312100px;}
.y1ee{bottom:785.263500px;}
.y1ae{bottom:785.265900px;}
.y6d{bottom:785.635350px;}
.y3d{bottom:785.770350px;}
.y17d{bottom:785.772600px;}
.yc4{bottom:793.112100px;}
.yfa{bottom:795.053850px;}
.ya{bottom:795.658950px;}
.y122{bottom:797.312100px;}
.y1ed{bottom:800.263500px;}
.y1ad{bottom:800.265900px;}
.y6c{bottom:803.635350px;}
.y9{bottom:803.733600px;}
.y3c{bottom:803.770350px;}
.y17c{bottom:803.772600px;}
.yc3{bottom:811.112100px;}
.yf9{bottom:813.053850px;}
.y1ec{bottom:815.263500px;}
.y1ac{bottom:815.265900px;}
.y121{bottom:815.312100px;}
.y6b{bottom:821.635350px;}
.y3b{bottom:821.770350px;}
.y17b{bottom:821.772600px;}
.y15b{bottom:821.775600px;}
.y8{bottom:822.658950px;}
.yc2{bottom:829.112100px;}
.y1eb{bottom:830.263500px;}
.y1ab{bottom:830.265900px;}
.y14a{bottom:830.547000px;}
.y120{bottom:833.312100px;}
.y6a{bottom:839.635350px;}
.y3a{bottom:839.770350px;}
.y17a{bottom:839.772600px;}
.y15a{bottom:839.775600px;}
.y1ea{bottom:845.263500px;}
.y1aa{bottom:845.265900px;}
.y149{bottom:845.547000px;}
.yc1{bottom:847.112100px;}
.yf8{bottom:848.547000px;}
.y11f{bottom:851.312100px;}
.y7{bottom:851.380950px;}
.y69{bottom:857.635350px;}
.y39{bottom:857.770350px;}
.y179{bottom:857.772600px;}
.y159{bottom:857.775600px;}
.y1e9{bottom:860.263500px;}
.y1a9{bottom:860.265900px;}
.yf7{bottom:863.547000px;}
.yc0{bottom:865.112100px;}
.y11e{bottom:869.312100px;}
.y1e8{bottom:875.263500px;}
.y1a8{bottom:875.265900px;}
.y68{bottom:875.635350px;}
.y38{bottom:875.770350px;}
.y178{bottom:875.772600px;}
.y158{bottom:875.775600px;}
.yf6{bottom:878.547000px;}
.y148{bottom:878.665350px;}
.y1e7{bottom:890.263500px;}
.y1a7{bottom:890.265900px;}
.y67{bottom:893.635350px;}
.y37{bottom:893.770350px;}
.y177{bottom:893.772600px;}
.y157{bottom:893.775600px;}
.y6{bottom:897.543600px;}
.ybf{bottom:899.952600px;}
.y11d{bottom:904.805250px;}
.y1e6{bottom:905.263500px;}
.y1a6{bottom:905.265900px;}
.yf5{bottom:911.665350px;}
.y36{bottom:911.770350px;}
.y176{bottom:911.772600px;}
.y156{bottom:911.775600px;}
.y147{bottom:914.515350px;}
.ybe{bottom:915.558600px;}
.y11c{bottom:919.805250px;}
.y1e5{bottom:920.263500px;}
.y1a5{bottom:920.265900px;}
.y66{bottom:929.230350px;}
.y35{bottom:929.770350px;}
.y175{bottom:929.772600px;}
.y155{bottom:929.775600px;}
.ybd{bottom:929.920350px;}
.y146{bottom:932.515350px;}
.y5{bottom:934.004400px;}
.y11b{bottom:934.805250px;}
.y1e4{bottom:935.263500px;}
.y1a4{bottom:935.265900px;}
.ybc{bottom:947.515350px;}
.y34{bottom:947.770350px;}
.y174{bottom:947.772600px;}
.y154{bottom:947.775600px;}
.y1e3{bottom:950.263500px;}
.y1a3{bottom:950.265900px;}
.y1e2{bottom:965.263500px;}
.y1a2{bottom:965.265900px;}
.yf4{bottom:965.515350px;}
.y33{bottom:965.770350px;}
.y173{bottom:965.772600px;}
.y153{bottom:965.775600px;}
.y11a{bottom:965.929350px;}
.y145{bottom:968.770350px;}
.y4{bottom:970.465200px;}
.y1e1{bottom:980.263500px;}
.y1a1{bottom:980.265900px;}
.y119{bottom:983.524350px;}
.y32{bottom:983.770350px;}
.y172{bottom:983.772600px;}
.y152{bottom:983.775600px;}
.y144{bottom:986.770350px;}
.y1e0{bottom:995.263500px;}
.y1a0{bottom:995.265900px;}
.y31{bottom:1001.770350px;}
.y171{bottom:1001.772600px;}
.y151{bottom:1001.775600px;}
.y143{bottom:1004.770350px;}
.y3{bottom:1006.926000px;}
.y1df{bottom:1010.263500px;}
.y19f{bottom:1010.265900px;}
.y118{bottom:1019.374350px;}
.y30{bottom:1019.770350px;}
.y170{bottom:1019.772600px;}
.y1de{bottom:1025.263500px;}
.y19e{bottom:1025.265900px;}
.y16f{bottom:1037.367600px;}
.y150{bottom:1037.370600px;}
.y117{bottom:1037.374350px;}
.y2f{bottom:1037.770350px;}
.y142{bottom:1040.263500px;}
.y19d{bottom:1040.265900px;}
.y2{bottom:1069.300350px;}
.y65{bottom:1132.418700px;}
.yf3{bottom:1132.421550px;}
.y141{bottom:1132.422000px;}
.yf0{bottom:1132.422900px;}
.y1dd{bottom:1132.423500px;}
.ybb{bottom:1132.426500px;}
.y16e{bottom:1132.440000px;}
.y2d{bottom:1136.092500px;}
.y2c{bottom:1150.492500px;}
.h6{height:19.125417px;}
.h8{height:28.393066px;}
.h2{height:30.577148px;}
.hf{height:32.783203px;}
.h7{height:32.805176px;}
.h17{height:33.328125px;}
.h15{height:33.351562px;}
.h11{height:34.968750px;}
.h10{height:34.992188px;}
.hd{height:41.689453px;}
.h14{height:42.117188px;}
.h9{height:43.681641px;}
.hb{height:43.710938px;}
.hc{height:43.717434px;}
.ha{height:43.740234px;}
.h13{height:44.100000px;}
.h12{height:47.381836px;}
.h16{height:52.567951px;}
.he{height:52.646484px;}
.h18{height:54.266484px;}
.h3{height:56.786133px;}
.h5{height:57.121316px;}
.h4{height:92.168262px;}
.h1{height:1190.250000px;}
.h0{height:1190.551500px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xa{left:76.535400px;}
.x37{left:81.811200px;}
.x8{left:96.094500px;}
.x1{left:97.795200px;}
.x45{left:99.933750px;}
.x48{left:102.047400px;}
.x2a{left:103.296000px;}
.x4{left:106.299300px;}
.xb{left:110.551200px;}
.x22{left:123.307350px;}
.x3{left:125.427900px;}
.x25{left:127.191000px;}
.x6{left:131.811000px;}
.x29{left:132.891000px;}
.x21{left:135.955350px;}
.x36{left:143.101200px;}
.x38{left:147.271200px;}
.x24{left:164.706000px;}
.x10{left:165.985350px;}
.x20{left:168.865350px;}
.x27{left:171.771000px;}
.x28{left:173.031000px;}
.x23{left:175.521000px;}
.x47{left:194.240400px;}
.x5{left:212.876400px;}
.x26{left:239.301000px;}
.x3b{left:274.221750px;}
.x3c{left:276.549750px;}
.x3e{left:354.933750px;}
.x3d{left:359.265750px;}
.x3f{left:444.297750px;}
.x40{left:450.297750px;}
.x9{left:455.041500px;}
.xc{left:457.036200px;}
.x1d{left:460.400400px;}
.x1e{left:475.680750px;}
.x11{left:478.360350px;}
.x7{left:480.471000px;}
.x49{left:482.591400px;}
.xd{left:491.056200px;}
.x2d{left:493.461000px;}
.x1a{left:496.179450px;}
.x32{left:501.487200px;}
.x35{left:503.858400px;}
.x18{left:511.240350px;}
.x12{left:512.380350px;}
.x41{left:524.049750px;}
.x2b{left:528.156000px;}
.x31{left:531.052200px;}
.x34{left:532.496400px;}
.x2c{left:534.831000px;}
.x2f{left:536.077200px;}
.x30{left:546.487200px;}
.x16{left:547.750350px;}
.x15{left:559.825350px;}
.x17{left:561.925350px;}
.x33{left:567.356400px;}
.x19{left:579.865350px;}
.x1f{left:581.102250px;}
.x3a{left:591.925350px;}
.x1b{left:601.236450px;}
.x2e{left:610.686000px;}
.x13{left:612.910350px;}
.x14{left:622.480350px;}
.x42{left:633.513750px;}
.xf{left:663.492300px;}
.x2{left:693.365400px;}
.x43{left:718.893750px;}
.x39{left:721.717650px;}
.xe{left:728.391600px;}
.x44{left:737.565750px;}
.x46{left:743.949750px;}
.x1c{left:749.651400px;}
@media print{
.v2{vertical-align:-19.290133pt;}
.v3{vertical-align:-2.613333pt;}
.v0{vertical-align:0.000000pt;}
.v5{vertical-align:1.440000pt;}
.v4{vertical-align:25.122667pt;}
.v1{vertical-align:27.005867pt;}
.ls7c{letter-spacing:-2.346667pt;}
.lsc{letter-spacing:-0.693333pt;}
.ls5c{letter-spacing:-0.426667pt;}
.ls39{letter-spacing:-0.373333pt;}
.ls58{letter-spacing:-0.320000pt;}
.ls50{letter-spacing:-0.213333pt;}
.ls7a{letter-spacing:-0.170667pt;}
.ls37{letter-spacing:-0.160000pt;}
.ls86{letter-spacing:-0.128000pt;}
.ls48{letter-spacing:-0.106667pt;}
.ls49{letter-spacing:-0.053333pt;}
.ls7b{letter-spacing:-0.042667pt;}
.lsb{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.003147pt;}
.ls1{letter-spacing:0.005045pt;}
.ls5b{letter-spacing:0.042667pt;}
.lsa{letter-spacing:0.053333pt;}
.ls6e{letter-spacing:0.085333pt;}
.ls23{letter-spacing:0.106667pt;}
.ls13{letter-spacing:0.160000pt;}
.ls7d{letter-spacing:0.170667pt;}
.ls2c{letter-spacing:0.213333pt;}
.ls6c{letter-spacing:0.256000pt;}
.ls3{letter-spacing:0.266667pt;}
.ls69{letter-spacing:0.298667pt;}
.ls1f{letter-spacing:0.320000pt;}
.ls81{letter-spacing:0.341333pt;}
.ls41{letter-spacing:0.373333pt;}
.ls84{letter-spacing:0.384000pt;}
.ls12{letter-spacing:0.426667pt;}
.ls54{letter-spacing:0.469333pt;}
.ls2f{letter-spacing:0.480000pt;}
.ls57{letter-spacing:0.512000pt;}
.ls32{letter-spacing:0.533333pt;}
.ls55{letter-spacing:0.554667pt;}
.ls21{letter-spacing:0.586667pt;}
.ls80{letter-spacing:0.597333pt;}
.ls3a{letter-spacing:0.640000pt;}
.ls73{letter-spacing:0.682667pt;}
.ls36{letter-spacing:0.693333pt;}
.ls6b{letter-spacing:0.725333pt;}
.lsd{letter-spacing:0.746667pt;}
.ls75{letter-spacing:0.768000pt;}
.ls1b{letter-spacing:0.800000pt;}
.ls53{letter-spacing:0.833067pt;}
.ls5{letter-spacing:0.853333pt;}
.ls76{letter-spacing:0.896000pt;}
.ls4c{letter-spacing:0.906667pt;}
.ls85{letter-spacing:0.938667pt;}
.ls17{letter-spacing:0.960000pt;}
.ls7{letter-spacing:1.013333pt;}
.ls71{letter-spacing:1.024000pt;}
.ls3f{letter-spacing:1.066667pt;}
.ls6a{letter-spacing:1.109333pt;}
.ls26{letter-spacing:1.120000pt;}
.ls11{letter-spacing:1.173333pt;}
.ls29{letter-spacing:1.226667pt;}
.ls79{letter-spacing:1.237333pt;}
.ls1e{letter-spacing:1.280000pt;}
.ls2a{letter-spacing:1.333333pt;}
.ls7e{letter-spacing:1.365333pt;}
.ls8{letter-spacing:1.386667pt;}
.ls78{letter-spacing:1.408000pt;}
.ls19{letter-spacing:1.440000pt;}
.ls82{letter-spacing:1.450667pt;}
.ls10{letter-spacing:1.493333pt;}
.ls77{letter-spacing:1.536000pt;}
.lse{letter-spacing:1.546667pt;}
.ls18{letter-spacing:1.600000pt;}
.ls7f{letter-spacing:1.621333pt;}
.ls25{letter-spacing:1.653333pt;}
.ls74{letter-spacing:1.664000pt;}
.ls24{letter-spacing:1.706667pt;}
.ls83{letter-spacing:1.749333pt;}
.ls30{letter-spacing:1.760000pt;}
.ls68{letter-spacing:1.792000pt;}
.ls4{letter-spacing:1.813333pt;}
.ls14{letter-spacing:1.866667pt;}
.ls9{letter-spacing:1.920000pt;}
.ls67{letter-spacing:1.962667pt;}
.ls16{letter-spacing:1.973333pt;}
.ls4a{letter-spacing:2.026667pt;}
.ls65{letter-spacing:2.048000pt;}
.ls6{letter-spacing:2.080000pt;}
.ls31{letter-spacing:2.133333pt;}
.ls2b{letter-spacing:2.186667pt;}
.ls27{letter-spacing:2.240000pt;}
.ls2e{letter-spacing:2.293333pt;}
.ls6f{letter-spacing:2.304000pt;}
.ls34{letter-spacing:2.346667pt;}
.ls45{letter-spacing:2.400000pt;}
.ls3d{letter-spacing:2.453333pt;}
.ls1d{letter-spacing:2.506667pt;}
.ls66{letter-spacing:2.517333pt;}
.ls42{letter-spacing:2.560000pt;}
.ls2d{letter-spacing:2.613333pt;}
.ls38{letter-spacing:2.666667pt;}
.ls3e{letter-spacing:2.720000pt;}
.ls1a{letter-spacing:2.773333pt;}
.ls15{letter-spacing:2.826667pt;}
.ls64{letter-spacing:2.858667pt;}
.ls33{letter-spacing:2.880000pt;}
.ls20{letter-spacing:2.933333pt;}
.ls5a{letter-spacing:3.040000pt;}
.ls28{letter-spacing:3.146667pt;}
.ls6d{letter-spacing:3.157333pt;}
.ls5f{letter-spacing:3.253333pt;}
.ls46{letter-spacing:3.306667pt;}
.ls56{letter-spacing:3.413333pt;}
.ls5d{letter-spacing:3.466667pt;}
.ls5e{letter-spacing:3.520000pt;}
.ls3b{letter-spacing:3.573333pt;}
.ls4f{letter-spacing:3.680000pt;}
.ls72{letter-spacing:3.754667pt;}
.ls52{letter-spacing:3.786667pt;}
.ls70{letter-spacing:3.882667pt;}
.ls61{letter-spacing:4.053333pt;}
.ls3c{letter-spacing:4.106667pt;}
.ls59{letter-spacing:4.266667pt;}
.ls35{letter-spacing:4.320000pt;}
.ls4d{letter-spacing:4.480000pt;}
.lsf{letter-spacing:4.586667pt;}
.ls51{letter-spacing:4.746667pt;}
.ls62{letter-spacing:4.906667pt;}
.ls22{letter-spacing:4.960000pt;}
.ls40{letter-spacing:5.066667pt;}
.ls4b{letter-spacing:5.120000pt;}
.ls1c{letter-spacing:5.226667pt;}
.ls43{letter-spacing:5.280000pt;}
.ls44{letter-spacing:5.386667pt;}
.ls47{letter-spacing:5.600000pt;}
.ls4e{letter-spacing:6.400000pt;}
.ls60{letter-spacing:6.613333pt;}
.ls63{letter-spacing:6.773333pt;}
.ls0{letter-spacing:52.918112pt;}
.ws0{word-spacing:-31.284267pt;}
.ws40{word-spacing:-18.613333pt;}
.ws90{word-spacing:-18.560000pt;}
.wsa0{word-spacing:-17.066667pt;}
.ws86{word-spacing:-16.746667pt;}
.ws65{word-spacing:-16.480000pt;}
.ws19{word-spacing:-16.160000pt;}
.ws13{word-spacing:-16.106667pt;}
.ws1a{word-spacing:-16.000000pt;}
.ws1c{word-spacing:-15.680000pt;}
.ws46{word-spacing:-15.626667pt;}
.ws18{word-spacing:-15.573333pt;}
.ws7b{word-spacing:-15.520000pt;}
.ws11{word-spacing:-15.306667pt;}
.ws12{word-spacing:-15.253333pt;}
.ws2{word-spacing:-14.826667pt;}
.ws87{word-spacing:-14.720000pt;}
.ws45{word-spacing:-14.666667pt;}
.ws47{word-spacing:-14.453333pt;}
.ws88{word-spacing:-14.293333pt;}
.ws68{word-spacing:-14.240000pt;}
.ws14{word-spacing:-14.133333pt;}
.ws43{word-spacing:-14.080000pt;}
.ws17{word-spacing:-13.920000pt;}
.ws97{word-spacing:-13.866667pt;}
.ws1b{word-spacing:-13.813333pt;}
.wse{word-spacing:-13.760000pt;}
.ws66{word-spacing:-13.706667pt;}
.ws5a{word-spacing:-13.600000pt;}
.ws41{word-spacing:-13.546667pt;}
.wsf{word-spacing:-13.493333pt;}
.ws67{word-spacing:-13.440000pt;}
.ws10{word-spacing:-13.386667pt;}
.ws16{word-spacing:-13.333333pt;}
.ws42{word-spacing:-13.280000pt;}
.ws69{word-spacing:-13.226667pt;}
.ws15{word-spacing:-13.173333pt;}
.wsbe{word-spacing:-13.013333pt;}
.wsa2{word-spacing:-12.629333pt;}
.wsbf{word-spacing:-12.288000pt;}
.ws44{word-spacing:-12.000000pt;}
.ws4{word-spacing:-11.861333pt;}
.wsa4{word-spacing:-11.690667pt;}
.wsa6{word-spacing:-11.306667pt;}
.wsc0{word-spacing:-11.136000pt;}
.ws3{word-spacing:-11.120000pt;}
.wsa5{word-spacing:-11.093333pt;}
.ws91{word-spacing:-10.666667pt;}
.wsa1{word-spacing:-10.624000pt;}
.ws1{word-spacing:-9.076144pt;}
.wsa3{word-spacing:-8.320000pt;}
.ws53{word-spacing:-5.386667pt;}
.ws52{word-spacing:-5.280000pt;}
.ws1d{word-spacing:-4.586667pt;}
.ws6f{word-spacing:-4.480000pt;}
.ws93{word-spacing:-4.266667pt;}
.wsab{word-spacing:-4.053333pt;}
.ws82{word-spacing:-3.786667pt;}
.ws6c{word-spacing:-3.680000pt;}
.wsa8{word-spacing:-3.573333pt;}
.ws55{word-spacing:-3.306667pt;}
.ws4f{word-spacing:-3.146667pt;}
.ws94{word-spacing:-3.040000pt;}
.ws2b{word-spacing:-2.933333pt;}
.ws3d{word-spacing:-2.880000pt;}
.ws34{word-spacing:-2.826667pt;}
.ws3a{word-spacing:-2.773333pt;}
.ws95{word-spacing:-2.666667pt;}
.ws70{word-spacing:-2.613333pt;}
.ws6{word-spacing:-2.565333pt;}
.wsae{word-spacing:-2.517333pt;}
.ws4a{word-spacing:-2.453333pt;}
.wsac{word-spacing:-2.400000pt;}
.wsc6{word-spacing:-2.346667pt;}
.ws6d{word-spacing:-2.240000pt;}
.ws7e{word-spacing:-2.186667pt;}
.wsb7{word-spacing:-2.048000pt;}
.ws56{word-spacing:-2.026667pt;}
.ws35{word-spacing:-1.973333pt;}
.wsaf{word-spacing:-1.962667pt;}
.ws25{word-spacing:-1.920000pt;}
.ws63{word-spacing:-1.866667pt;}
.wsb0{word-spacing:-1.792000pt;}
.ws38{word-spacing:-1.760000pt;}
.wscd{word-spacing:-1.749333pt;}
.ws2c{word-spacing:-1.706667pt;}
.wsba{word-spacing:-1.664000pt;}
.ws4d{word-spacing:-1.653333pt;}
.wsc5{word-spacing:-1.621333pt;}
.ws81{word-spacing:-1.546667pt;}
.wsad{word-spacing:-1.536000pt;}
.ws1e{word-spacing:-1.493333pt;}
.wsbc{word-spacing:-1.408000pt;}
.ws4c{word-spacing:-1.386667pt;}
.wsc1{word-spacing:-1.365333pt;}
.ws33{word-spacing:-1.333333pt;}
.ws3c{word-spacing:-1.280000pt;}
.wsbd{word-spacing:-1.237333pt;}
.ws32{word-spacing:-1.226667pt;}
.ws1f{word-spacing:-1.173333pt;}
.ws4b{word-spacing:-1.120000pt;}
.wsb4{word-spacing:-1.109333pt;}
.ws4e{word-spacing:-1.066667pt;}
.wsb8{word-spacing:-1.024000pt;}
.ws36{word-spacing:-1.013333pt;}
.ws24{word-spacing:-0.960000pt;}
.wsc8{word-spacing:-0.938667pt;}
.ws6e{word-spacing:-0.906667pt;}
.wsbb{word-spacing:-0.896000pt;}
.ws31{word-spacing:-0.853333pt;}
.ws50{word-spacing:-0.800000pt;}
.ws3e{word-spacing:-0.746667pt;}
.wsb9{word-spacing:-0.725333pt;}
.ws7f{word-spacing:-0.693333pt;}
.ws48{word-spacing:-0.640000pt;}
.wsc7{word-spacing:-0.597333pt;}
.ws2a{word-spacing:-0.586667pt;}
.ws8c{word-spacing:-0.554667pt;}
.ws37{word-spacing:-0.533333pt;}
.ws8f{word-spacing:-0.512000pt;}
.ws51{word-spacing:-0.480000pt;}
.wscc{word-spacing:-0.469333pt;}
.ws20{word-spacing:-0.426667pt;}
.ws72{word-spacing:-0.373333pt;}
.wsb3{word-spacing:-0.341333pt;}
.ws28{word-spacing:-0.320000pt;}
.ws54{word-spacing:-0.266667pt;}
.ws5c{word-spacing:-0.213333pt;}
.ws21{word-spacing:-0.160000pt;}
.ws3b{word-spacing:-0.106667pt;}
.ws22{word-spacing:-0.053333pt;}
.ws96{word-spacing:-0.042667pt;}
.ws5{word-spacing:0.000000pt;}
.wsb2{word-spacing:0.042667pt;}
.ws7{word-spacing:0.053333pt;}
.ws5b{word-spacing:0.106667pt;}
.wsca{word-spacing:0.128000pt;}
.ws77{word-spacing:0.160000pt;}
.wsb1{word-spacing:0.170667pt;}
.ws73{word-spacing:0.213333pt;}
.wsaa{word-spacing:0.266667pt;}
.ws62{word-spacing:0.298667pt;}
.ws29{word-spacing:0.320000pt;}
.ws39{word-spacing:0.373333pt;}
.ws30{word-spacing:0.426667pt;}
.wsc3{word-spacing:0.469333pt;}
.wsc{word-spacing:0.480000pt;}
.wsc2{word-spacing:0.554667pt;}
.ws83{word-spacing:0.640000pt;}
.wsc9{word-spacing:0.725333pt;}
.ws5e{word-spacing:0.746667pt;}
.wsb5{word-spacing:0.810667pt;}
.ws76{word-spacing:0.853333pt;}
.wsa{word-spacing:0.960000pt;}
.wsd{word-spacing:1.066667pt;}
.ws8a{word-spacing:1.226667pt;}
.ws64{word-spacing:1.322667pt;}
.ws84{word-spacing:1.333333pt;}
.ws9d{word-spacing:1.386667pt;}
.ws7a{word-spacing:1.493333pt;}
.ws5f{word-spacing:1.546667pt;}
.ws79{word-spacing:1.621333pt;}
.ws2d{word-spacing:1.760000pt;}
.ws23{word-spacing:1.813333pt;}
.ws60{word-spacing:1.866667pt;}
.wsb{word-spacing:1.920000pt;}
.wscb{word-spacing:1.962667pt;}
.ws8e{word-spacing:1.973333pt;}
.wsb6{word-spacing:2.176000pt;}
.ws80{word-spacing:2.293333pt;}
.ws61{word-spacing:2.346667pt;}
.ws27{word-spacing:2.453333pt;}
.ws85{word-spacing:2.517333pt;}
.ws9e{word-spacing:2.720000pt;}
.ws9c{word-spacing:2.773333pt;}
.ws75{word-spacing:2.880000pt;}
.ws59{word-spacing:2.933333pt;}
.ws9f{word-spacing:3.029333pt;}
.ws92{word-spacing:3.040000pt;}
.ws71{word-spacing:3.093333pt;}
.ws2f{word-spacing:3.146667pt;}
.ws8d{word-spacing:3.306667pt;}
.wsc4{word-spacing:3.328000pt;}
.ws78{word-spacing:3.360000pt;}
.ws26{word-spacing:3.413333pt;}
.ws9b{word-spacing:3.466667pt;}
.ws8b{word-spacing:3.498667pt;}
.ws2e{word-spacing:3.520000pt;}
.ws89{word-spacing:3.541333pt;}
.ws58{word-spacing:3.626667pt;}
.ws5d{word-spacing:3.786667pt;}
.ws7c{word-spacing:3.893333pt;}
.ws6b{word-spacing:4.000000pt;}
.ws6a{word-spacing:4.106667pt;}
.ws49{word-spacing:4.160000pt;}
.ws7d{word-spacing:4.213333pt;}
.ws3f{word-spacing:4.320000pt;}
.ws8{word-spacing:4.373333pt;}
.ws9{word-spacing:4.426667pt;}
.ws74{word-spacing:4.640000pt;}
.wsa7{word-spacing:4.853333pt;}
.wsa9{word-spacing:4.906667pt;}
.ws57{word-spacing:10.026667pt;}
.ws98{word-spacing:195.712000pt;}
.ws99{word-spacing:218.368000pt;}
.ws9a{word-spacing:256.170667pt;}
._d{margin-left:-2576.085333pt;}
._10{margin-left:-2554.922667pt;}
._2{margin-left:-8.327467pt;}
._6{margin-left:-6.826667pt;}
._5{margin-left:-5.920000pt;}
._1{margin-left:-4.778667pt;}
._3{margin-left:-3.080000pt;}
._0{margin-left:-2.053333pt;}
._4{margin-left:-0.960000pt;}
._8{width:1.386667pt;}
._b{width:2.666667pt;}
._7{width:4.426667pt;}
._a{width:5.600000pt;}
._c{width:7.306667pt;}
._e{width:8.373333pt;}
._9{width:9.386667pt;}
._f{width:10.666667pt;}
._14{width:161.664000pt;}
._17{width:179.413333pt;}
._13{width:183.040000pt;}
._15{width:229.034667pt;}
._11{width:235.178667pt;}
._16{width:251.733333pt;}
._12{width:308.650667pt;}
.fs5{font-size:23.320000pt;}
.fsb{font-size:31.093333pt;}
.fs4{font-size:32.648000pt;}
.fs7{font-size:34.666667pt;}
.fs0{font-size:37.333333pt;}
.fs6{font-size:40.000000pt;}
.fs9{font-size:42.666667pt;}
.fsa{font-size:48.000000pt;}
.fs8{font-size:53.333333pt;}
.fs3{font-size:56.000000pt;}
.fs1{font-size:69.333333pt;}
.fs2{font-size:112.533333pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:41.124400pt;}
.y2e{bottom:42.468667pt;}
.yba{bottom:73.620000pt;}
.yef{bottom:73.819467pt;}
.y94{bottom:74.342533pt;}
.y64{bottom:74.462533pt;}
.yf2{bottom:74.564933pt;}
.yee{bottom:75.121467pt;}
.yb8{bottom:75.147600pt;}
.y2b{bottom:78.246000pt;}
.yeb{bottom:80.988533pt;}
.yb5{bottom:81.114533pt;}
.y16d{bottom:82.741333pt;}
.y19c{bottom:84.552800pt;}
.y1dc{bottom:84.678667pt;}
.y140{bottom:84.901333pt;}
.yb9{bottom:87.614667pt;}
.yf1{bottom:88.559600pt;}
.yed{bottom:89.116133pt;}
.y93{bottom:90.342533pt;}
.y116{bottom:90.403867pt;}
.y63{bottom:90.462533pt;}
.y2a{bottom:91.576000pt;}
.yea{bottom:96.988533pt;}
.yb4{bottom:97.114533pt;}
.y16c{bottom:97.184000pt;}
.y19b{bottom:97.886133pt;}
.y1db{bottom:98.012000pt;}
.y13f{bottom:98.234667pt;}
.yec{bottom:103.110800pt;}
.y92{bottom:106.342533pt;}
.y115{bottom:106.403867pt;}
.y62{bottom:106.462533pt;}
.y19a{bottom:111.219467pt;}
.y1da{bottom:111.345333pt;}
.y16b{bottom:111.626667pt;}
.ye9{bottom:112.988533pt;}
.yb3{bottom:113.114533pt;}
.y91{bottom:122.342533pt;}
.y114{bottom:122.403867pt;}
.y61{bottom:122.462533pt;}
.y199{bottom:124.552800pt;}
.y1d9{bottom:124.678667pt;}
.y16a{bottom:126.069333pt;}
.y13e{bottom:127.673200pt;}
.ye8{bottom:128.988533pt;}
.yb2{bottom:129.114533pt;}
.y1d8{bottom:138.012000pt;}
.y90{bottom:138.342533pt;}
.y60{bottom:138.462533pt;}
.y169{bottom:140.512000pt;}
.ye7{bottom:144.988533pt;}
.yb1{bottom:145.114533pt;}
.y27{bottom:151.218533pt;}
.y1d7{bottom:151.345333pt;}
.y113{bottom:153.953333pt;}
.y198{bottom:153.984533pt;}
.y8f{bottom:154.342533pt;}
.y5f{bottom:154.462533pt;}
.y168{bottom:154.954667pt;}
.y13d{bottom:159.539867pt;}
.ye6{bottom:160.988533pt;}
.yb0{bottom:161.114533pt;}
.y1d6{bottom:164.678667pt;}
.y26{bottom:167.218533pt;}
.y112{bottom:167.286667pt;}
.y8e{bottom:170.342533pt;}
.y5e{bottom:170.462533pt;}
.y13c{bottom:175.539867pt;}
.ye5{bottom:176.988533pt;}
.yaf{bottom:177.114533pt;}
.y1d5{bottom:178.012000pt;}
.y167{bottom:180.736000pt;}
.y25{bottom:183.218533pt;}
.y8d{bottom:186.342533pt;}
.y5d{bottom:186.462533pt;}
.y1d4{bottom:191.345333pt;}
.ye4{bottom:192.988533pt;}
.yae{bottom:193.114533pt;}
.y111{bottom:194.951867pt;}
.y166{bottom:195.402667pt;}
.y24{bottom:199.218533pt;}
.y8c{bottom:202.342533pt;}
.y5c{bottom:202.462533pt;}
.y197{bottom:202.464533pt;}
.y1d3{bottom:204.678667pt;}
.y13b{bottom:207.766533pt;}
.ye3{bottom:208.988533pt;}
.yad{bottom:209.114533pt;}
.y110{bottom:210.591867pt;}
.y23{bottom:215.218533pt;}
.y1d2{bottom:218.012000pt;}
.y196{bottom:218.104533pt;}
.y8b{bottom:218.342533pt;}
.y5b{bottom:218.462533pt;}
.y13a{bottom:223.766533pt;}
.y165{bottom:224.194800pt;}
.ye2{bottom:224.988533pt;}
.yac{bottom:225.114533pt;}
.y22{bottom:231.218533pt;}
.y1d1{bottom:231.345333pt;}
.y8a{bottom:234.342533pt;}
.y5a{bottom:234.462533pt;}
.y139{bottom:239.766533pt;}
.ye1{bottom:240.988533pt;}
.yab{bottom:241.114533pt;}
.y10f{bottom:242.458533pt;}
.y1d0{bottom:244.678667pt;}
.y29{bottom:247.218533pt;}
.y195{bottom:250.104533pt;}
.y89{bottom:250.342533pt;}
.y59{bottom:250.462533pt;}
.y138{bottom:255.766533pt;}
.ye0{bottom:256.988533pt;}
.yaa{bottom:257.114533pt;}
.y1cf{bottom:258.012000pt;}
.y10e{bottom:258.458533pt;}
.y21{bottom:262.860400pt;}
.y28{bottom:263.218533pt;}
.y164{bottom:265.053067pt;}
.y88{bottom:266.342533pt;}
.y58{bottom:266.462533pt;}
.y1ce{bottom:271.345333pt;}
.y137{bottom:271.766533pt;}
.ydf{bottom:272.988533pt;}
.ya9{bottom:273.114533pt;}
.y163{bottom:279.047733pt;}
.y87{bottom:282.342533pt;}
.y57{bottom:282.462533pt;}
.y194{bottom:282.464533pt;}
.y1cd{bottom:284.678667pt;}
.y136{bottom:287.766533pt;}
.yde{bottom:288.988533pt;}
.ya8{bottom:289.114533pt;}
.y10d{bottom:290.685200pt;}
.y1cc{bottom:298.012000pt;}
.y86{bottom:298.342533pt;}
.y56{bottom:298.462533pt;}
.y193{bottom:298.464533pt;}
.y135{bottom:303.766533pt;}
.ydd{bottom:304.988533pt;}
.ya7{bottom:305.114533pt;}
.y10c{bottom:306.685200pt;}
.y1cb{bottom:311.345333pt;}
.y85{bottom:314.342533pt;}
.y55{bottom:314.462533pt;}
.y192{bottom:314.464533pt;}
.y134{bottom:319.766533pt;}
.ydc{bottom:320.988533pt;}
.ya6{bottom:321.114533pt;}
.y10b{bottom:322.685200pt;}
.y1ca{bottom:324.678667pt;}
.y84{bottom:330.342533pt;}
.y54{bottom:330.462533pt;}
.y191{bottom:330.464533pt;}
.y20{bottom:330.723733pt;}
.y133{bottom:335.766533pt;}
.ydb{bottom:336.988533pt;}
.ya5{bottom:337.114533pt;}
.y1c9{bottom:338.012000pt;}
.y83{bottom:346.342533pt;}
.y53{bottom:346.462533pt;}
.y190{bottom:346.464533pt;}
.y1c8{bottom:351.345333pt;}
.y132{bottom:351.766533pt;}
.yda{bottom:352.988533pt;}
.ya4{bottom:353.114533pt;}
.y10a{bottom:354.234667pt;}
.y1f{bottom:355.030400pt;}
.y82{bottom:362.342533pt;}
.y52{bottom:362.462533pt;}
.y18f{bottom:362.464533pt;}
.y1c7{bottom:364.678667pt;}
.y109{bottom:367.568000pt;}
.y131{bottom:367.766533pt;}
.yd9{bottom:368.988533pt;}
.ya3{bottom:369.114533pt;}
.y1e{bottom:371.030400pt;}
.y1c6{bottom:378.012000pt;}
.y18e{bottom:378.104533pt;}
.y81{bottom:378.342533pt;}
.y51{bottom:378.462533pt;}
.y130{bottom:383.766533pt;}
.yd8{bottom:384.988533pt;}
.ya2{bottom:385.114533pt;}
.y1d{bottom:387.030400pt;}
.y1c5{bottom:391.345333pt;}
.y80{bottom:394.342533pt;}
.y50{bottom:394.462533pt;}
.y108{bottom:397.006533pt;}
.yd7{bottom:400.988533pt;}
.ya1{bottom:401.114533pt;}
.y1c{bottom:403.030400pt;}
.y1c4{bottom:404.678667pt;}
.y7f{bottom:410.342533pt;}
.y4f{bottom:410.462533pt;}
.y18d{bottom:410.464533pt;}
.y12f{bottom:415.316000pt;}
.yd6{bottom:416.988533pt;}
.ya0{bottom:417.114533pt;}
.y1c3{bottom:418.012000pt;}
.y1b{bottom:419.030400pt;}
.y18c{bottom:426.104533pt;}
.y7e{bottom:426.342533pt;}
.y4e{bottom:426.462533pt;}
.y12e{bottom:428.649333pt;}
.y107{bottom:428.873200pt;}
.y1c2{bottom:431.345333pt;}
.yd5{bottom:432.988533pt;}
.y9f{bottom:433.114533pt;}
.y1a{bottom:435.030400pt;}
.y7d{bottom:442.342533pt;}
.y4d{bottom:442.462533pt;}
.y1c1{bottom:444.680800pt;}
.y106{bottom:444.873200pt;}
.yd4{bottom:448.988533pt;}
.y19{bottom:451.030400pt;}
.y1c0{bottom:458.014133pt;}
.y12d{bottom:458.080533pt;}
.y7c{bottom:458.342533pt;}
.y4c{bottom:458.462533pt;}
.y18b{bottom:458.464533pt;}
.y9e{bottom:464.083867pt;}
.yd3{bottom:464.988533pt;}
.y18{bottom:467.030400pt;}
.y1bf{bottom:471.347467pt;}
.y7b{bottom:474.342533pt;}
.y4b{bottom:474.462533pt;}
.y18a{bottom:474.464533pt;}
.y105{bottom:477.099867pt;}
.y9d{bottom:477.955867pt;}
.yb7{bottom:479.958267pt;}
.yd2{bottom:480.988533pt;}
.y17{bottom:483.030400pt;}
.y1be{bottom:484.680800pt;}
.y12c{bottom:490.307200pt;}
.y7a{bottom:490.342533pt;}
.y4a{bottom:490.462533pt;}
.y189{bottom:490.464533pt;}
.y9c{bottom:490.715867pt;}
.y104{bottom:493.099867pt;}
.yb6{bottom:493.952933pt;}
.yd1{bottom:496.988533pt;}
.y1bd{bottom:498.014133pt;}
.y16{bottom:499.030400pt;}
.y12b{bottom:506.307200pt;}
.y79{bottom:506.342533pt;}
.y9b{bottom:506.355867pt;}
.y49{bottom:506.462533pt;}
.y188{bottom:506.464533pt;}
.y103{bottom:509.099867pt;}
.y1bc{bottom:511.347467pt;}
.yd0{bottom:512.988533pt;}
.y15{bottom:515.030400pt;}
.y12a{bottom:522.307200pt;}
.y78{bottom:522.342533pt;}
.y48{bottom:522.462533pt;}
.y187{bottom:522.464533pt;}
.y1bb{bottom:524.680800pt;}
.y102{bottom:525.099867pt;}
.ycf{bottom:528.988533pt;}
.y14{bottom:531.030400pt;}
.y1ba{bottom:538.014133pt;}
.y9a{bottom:538.222533pt;}
.y77{bottom:538.342533pt;}
.y47{bottom:538.462533pt;}
.y186{bottom:538.464533pt;}
.yce{bottom:544.988533pt;}
.y13{bottom:547.030400pt;}
.y1b9{bottom:551.347467pt;}
.y129{bottom:553.856667pt;}
.y99{bottom:554.222533pt;}
.y76{bottom:554.342533pt;}
.y46{bottom:554.462533pt;}
.y185{bottom:554.464533pt;}
.y101{bottom:556.649333pt;}
.ycd{bottom:560.988533pt;}
.y12{bottom:563.030400pt;}
.y1b8{bottom:564.680800pt;}
.y14f{bottom:565.507200pt;}
.y128{bottom:567.190000pt;}
.y100{bottom:569.982667pt;}
.y98{bottom:570.222533pt;}
.y75{bottom:570.342533pt;}
.y162{bottom:570.347200pt;}
.y45{bottom:570.462533pt;}
.y184{bottom:570.464533pt;}
.ycc{bottom:576.988533pt;}
.y1b7{bottom:578.014133pt;}
.y14e{bottom:581.507200pt;}
.yff{bottom:583.316000pt;}
.y183{bottom:586.104533pt;}
.y74{bottom:586.342533pt;}
.y161{bottom:586.347200pt;}
.y44{bottom:586.462533pt;}
.y1b6{bottom:591.347467pt;}
.ycb{bottom:592.988533pt;}
.y127{bottom:596.628533pt;}
.y14d{bottom:597.507200pt;}
.y97{bottom:602.102533pt;}
.y73{bottom:602.342533pt;}
.y160{bottom:602.347200pt;}
.y43{bottom:602.462533pt;}
.y11{bottom:603.170933pt;}
.y1b5{bottom:604.680800pt;}
.yca{bottom:608.988533pt;}
.yfe{bottom:610.981200pt;}
.y10{bottom:614.238267pt;}
.y1b4{bottom:618.014133pt;}
.y96{bottom:618.102533pt;}
.y72{bottom:618.342533pt;}
.y15f{bottom:618.347200pt;}
.y42{bottom:618.462533pt;}
.y182{bottom:618.464533pt;}
.yc9{bottom:624.988533pt;}
.yfd{bottom:626.621200pt;}
.y126{bottom:628.495200pt;}
.y14c{bottom:629.056667pt;}
.y1b3{bottom:631.347467pt;}
.y71{bottom:634.342533pt;}
.y15e{bottom:634.347200pt;}
.y41{bottom:634.462533pt;}
.y181{bottom:634.464533pt;}
.yc8{bottom:640.988533pt;}
.y125{bottom:644.495200pt;}
.y1f2{bottom:644.678667pt;}
.y1b2{bottom:644.680800pt;}
.yf{bottom:647.252267pt;}
.y95{bottom:649.982533pt;}
.y70{bottom:650.342533pt;}
.y15d{bottom:650.347200pt;}
.y40{bottom:650.462533pt;}
.y180{bottom:650.464533pt;}
.ye{bottom:654.429867pt;}
.yc7{bottom:656.988533pt;}
.y1f1{bottom:658.012000pt;}
.y1b1{bottom:658.014133pt;}
.yfc{bottom:658.487867pt;}
.y6f{bottom:666.342533pt;}
.y3f{bottom:666.462533pt;}
.y17f{bottom:666.464533pt;}
.yd{bottom:671.252267pt;}
.y1f0{bottom:671.345333pt;}
.y1b0{bottom:671.347467pt;}
.yc6{bottom:672.988533pt;}
.yfb{bottom:674.487867pt;}
.y124{bottom:676.721867pt;}
.y15c{bottom:681.987200pt;}
.y6e{bottom:682.342533pt;}
.y3e{bottom:682.462533pt;}
.y17e{bottom:682.464533pt;}
.yc{bottom:683.252400pt;}
.y1ef{bottom:684.678667pt;}
.y1af{bottom:684.680800pt;}
.yc5{bottom:688.988533pt;}
.yb{bottom:690.429867pt;}
.y14b{bottom:690.714533pt;}
.y123{bottom:692.721867pt;}
.y1ee{bottom:698.012000pt;}
.y1ae{bottom:698.014133pt;}
.y6d{bottom:698.342533pt;}
.y3d{bottom:698.462533pt;}
.y17d{bottom:698.464533pt;}
.yc4{bottom:704.988533pt;}
.yfa{bottom:706.714533pt;}
.ya{bottom:707.252400pt;}
.y122{bottom:708.721867pt;}
.y1ed{bottom:711.345333pt;}
.y1ad{bottom:711.347467pt;}
.y6c{bottom:714.342533pt;}
.y9{bottom:714.429867pt;}
.y3c{bottom:714.462533pt;}
.y17c{bottom:714.464533pt;}
.yc3{bottom:720.988533pt;}
.yf9{bottom:722.714533pt;}
.y1ec{bottom:724.678667pt;}
.y1ac{bottom:724.680800pt;}
.y121{bottom:724.721867pt;}
.y6b{bottom:730.342533pt;}
.y3b{bottom:730.462533pt;}
.y17b{bottom:730.464533pt;}
.y15b{bottom:730.467200pt;}
.y8{bottom:731.252400pt;}
.yc2{bottom:736.988533pt;}
.y1eb{bottom:738.012000pt;}
.y1ab{bottom:738.014133pt;}
.y14a{bottom:738.264000pt;}
.y120{bottom:740.721867pt;}
.y6a{bottom:746.342533pt;}
.y3a{bottom:746.462533pt;}
.y17a{bottom:746.464533pt;}
.y15a{bottom:746.467200pt;}
.y1ea{bottom:751.345333pt;}
.y1aa{bottom:751.347467pt;}
.y149{bottom:751.597333pt;}
.yc1{bottom:752.988533pt;}
.yf8{bottom:754.264000pt;}
.y11f{bottom:756.721867pt;}
.y7{bottom:756.783067pt;}
.y69{bottom:762.342533pt;}
.y39{bottom:762.462533pt;}
.y179{bottom:762.464533pt;}
.y159{bottom:762.467200pt;}
.y1e9{bottom:764.678667pt;}
.y1a9{bottom:764.680800pt;}
.yf7{bottom:767.597333pt;}
.yc0{bottom:768.988533pt;}
.y11e{bottom:772.721867pt;}
.y1e8{bottom:778.012000pt;}
.y1a8{bottom:778.014133pt;}
.y68{bottom:778.342533pt;}
.y38{bottom:778.462533pt;}
.y178{bottom:778.464533pt;}
.y158{bottom:778.467200pt;}
.yf6{bottom:780.930667pt;}
.y148{bottom:781.035867pt;}
.y1e7{bottom:791.345333pt;}
.y1a7{bottom:791.347467pt;}
.y67{bottom:794.342533pt;}
.y37{bottom:794.462533pt;}
.y177{bottom:794.464533pt;}
.y157{bottom:794.467200pt;}
.y6{bottom:797.816533pt;}
.ybf{bottom:799.957867pt;}
.y11d{bottom:804.271333pt;}
.y1e6{bottom:804.678667pt;}
.y1a6{bottom:804.680800pt;}
.yf5{bottom:810.369200pt;}
.y36{bottom:810.462533pt;}
.y176{bottom:810.464533pt;}
.y156{bottom:810.467200pt;}
.y147{bottom:812.902533pt;}
.ybe{bottom:813.829867pt;}
.y11c{bottom:817.604667pt;}
.y1e5{bottom:818.012000pt;}
.y1a5{bottom:818.014133pt;}
.y66{bottom:825.982533pt;}
.y35{bottom:826.462533pt;}
.y175{bottom:826.464533pt;}
.y155{bottom:826.467200pt;}
.ybd{bottom:826.595867pt;}
.y146{bottom:828.902533pt;}
.y5{bottom:830.226133pt;}
.y11b{bottom:830.938000pt;}
.y1e4{bottom:831.345333pt;}
.y1a4{bottom:831.347467pt;}
.ybc{bottom:842.235867pt;}
.y34{bottom:842.462533pt;}
.y174{bottom:842.464533pt;}
.y154{bottom:842.467200pt;}
.y1e3{bottom:844.678667pt;}
.y1a3{bottom:844.680800pt;}
.y1e2{bottom:858.012000pt;}
.y1a2{bottom:858.014133pt;}
.yf4{bottom:858.235867pt;}
.y33{bottom:858.462533pt;}
.y173{bottom:858.464533pt;}
.y153{bottom:858.467200pt;}
.y11a{bottom:858.603867pt;}
.y145{bottom:861.129200pt;}
.y4{bottom:862.635733pt;}
.y1e1{bottom:871.345333pt;}
.y1a1{bottom:871.347467pt;}
.y119{bottom:874.243867pt;}
.y32{bottom:874.462533pt;}
.y172{bottom:874.464533pt;}
.y152{bottom:874.467200pt;}
.y144{bottom:877.129200pt;}
.y1e0{bottom:884.678667pt;}
.y1a0{bottom:884.680800pt;}
.y31{bottom:890.462533pt;}
.y171{bottom:890.464533pt;}
.y151{bottom:890.467200pt;}
.y143{bottom:893.129200pt;}
.y3{bottom:895.045333pt;}
.y1df{bottom:898.012000pt;}
.y19f{bottom:898.014133pt;}
.y118{bottom:906.110533pt;}
.y30{bottom:906.462533pt;}
.y170{bottom:906.464533pt;}
.y1de{bottom:911.345333pt;}
.y19e{bottom:911.347467pt;}
.y16f{bottom:922.104533pt;}
.y150{bottom:922.107200pt;}
.y117{bottom:922.110533pt;}
.y2f{bottom:922.462533pt;}
.y142{bottom:924.678667pt;}
.y19d{bottom:924.680800pt;}
.y2{bottom:950.489200pt;}
.y65{bottom:1006.594400pt;}
.yf3{bottom:1006.596933pt;}
.y141{bottom:1006.597333pt;}
.yf0{bottom:1006.598133pt;}
.y1dd{bottom:1006.598667pt;}
.ybb{bottom:1006.601333pt;}
.y16e{bottom:1006.613333pt;}
.y2d{bottom:1009.860000pt;}
.y2c{bottom:1022.660000pt;}
.h6{height:17.000371pt;}
.h8{height:25.238281pt;}
.h2{height:27.179688pt;}
.hf{height:29.140625pt;}
.h7{height:29.160156pt;}
.h17{height:29.625000pt;}
.h15{height:29.645833pt;}
.h11{height:31.083333pt;}
.h10{height:31.104167pt;}
.hd{height:37.057292pt;}
.h14{height:37.437500pt;}
.h9{height:38.828125pt;}
.hb{height:38.854167pt;}
.hc{height:38.859942pt;}
.ha{height:38.880208pt;}
.h13{height:39.200000pt;}
.h12{height:42.117188pt;}
.h16{height:46.727068pt;}
.he{height:46.796875pt;}
.h18{height:48.236875pt;}
.h3{height:50.476562pt;}
.h5{height:50.774503pt;}
.h4{height:81.927344pt;}
.h1{height:1058.000000pt;}
.h0{height:1058.268000pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xa{left:68.031467pt;}
.x37{left:72.721067pt;}
.x8{left:85.417333pt;}
.x1{left:86.929067pt;}
.x45{left:88.830000pt;}
.x48{left:90.708800pt;}
.x2a{left:91.818667pt;}
.x4{left:94.488267pt;}
.xb{left:98.267733pt;}
.x22{left:109.606533pt;}
.x3{left:111.491467pt;}
.x25{left:113.058667pt;}
.x6{left:117.165333pt;}
.x29{left:118.125333pt;}
.x21{left:120.849200pt;}
.x36{left:127.201067pt;}
.x38{left:130.907733pt;}
.x24{left:146.405333pt;}
.x10{left:147.542533pt;}
.x20{left:150.102533pt;}
.x27{left:152.685333pt;}
.x28{left:153.805333pt;}
.x23{left:156.018667pt;}
.x47{left:172.658133pt;}
.x5{left:189.223467pt;}
.x26{left:212.712000pt;}
.x3b{left:243.752667pt;}
.x3c{left:245.822000pt;}
.x3e{left:315.496667pt;}
.x3d{left:319.347333pt;}
.x3f{left:394.931333pt;}
.x40{left:400.264667pt;}
.x9{left:404.481333pt;}
.xc{left:406.254400pt;}
.x1d{left:409.244800pt;}
.x1e{left:422.827333pt;}
.x11{left:425.209200pt;}
.x7{left:427.085333pt;}
.x49{left:428.970133pt;}
.xd{left:436.494400pt;}
.x2d{left:438.632000pt;}
.x1a{left:441.048400pt;}
.x32{left:445.766400pt;}
.x35{left:447.874133pt;}
.x18{left:454.435867pt;}
.x12{left:455.449200pt;}
.x41{left:465.822000pt;}
.x2b{left:469.472000pt;}
.x31{left:472.046400pt;}
.x34{left:473.330133pt;}
.x2c{left:475.405333pt;}
.x2f{left:476.513067pt;}
.x30{left:485.766400pt;}
.x16{left:486.889200pt;}
.x15{left:497.622533pt;}
.x17{left:499.489200pt;}
.x33{left:504.316800pt;}
.x19{left:515.435867pt;}
.x1f{left:516.535333pt;}
.x3a{left:526.155867pt;}
.x1b{left:534.432400pt;}
.x2e{left:542.832000pt;}
.x13{left:544.809200pt;}
.x14{left:553.315867pt;}
.x42{left:563.123333pt;}
.xf{left:589.770933pt;}
.x2{left:616.324800pt;}
.x43{left:639.016667pt;}
.x39{left:641.526800pt;}
.xe{left:647.459200pt;}
.x44{left:655.614000pt;}
.x46{left:661.288667pt;}
.x1c{left:666.356800pt;}
}




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