
    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_409596bb9e699bacdb418c0e.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_e187e631a5046a874219bfff.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_7b937fb13a571f5c36276653.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_6e0459843c2353be464694f2.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_44e00fe551a726d5731fb763.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.929199;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_660e945dfa46e0b77230503f.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.718750;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_41254712646f3e4e6fcd7f25.woff2')format("woff");}.ff7{font-family:ff7;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;}
.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:-16.471800px;}
.v3{vertical-align:-5.088000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:22.655400px;}
.v4{vertical-align:25.200000px;}
.v5{vertical-align:30.624000px;}
.v6{vertical-align:32.976000px;}
.ls6b{letter-spacing:-6.660000px;}
.ls60{letter-spacing:-3.108000px;}
.ls1d{letter-spacing:-0.960000px;}
.ls84{letter-spacing:-0.540000px;}
.ls1b{letter-spacing:-0.504000px;}
.ls86{letter-spacing:-0.432000px;}
.ls1a{letter-spacing:-0.420000px;}
.ls5b{letter-spacing:-0.360000px;}
.ls61{letter-spacing:-0.252000px;}
.ls45{letter-spacing:-0.240000px;}
.ls62{letter-spacing:-0.210000px;}
.ls5a{letter-spacing:-0.180000px;}
.ls9c{letter-spacing:-0.144000px;}
.ls59{letter-spacing:-0.120000px;}
.ls1e{letter-spacing:-0.060000px;}
.ls85{letter-spacing:-0.048000px;}
.ls1c{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.004200px;}
.ls0{letter-spacing:0.006000px;}
.ls71{letter-spacing:0.048000px;}
.ls29{letter-spacing:0.060000px;}
.ls48{letter-spacing:0.096000px;}
.ls2b{letter-spacing:0.120000px;}
.ls94{letter-spacing:0.144000px;}
.ls1f{letter-spacing:0.180000px;}
.ls2{letter-spacing:0.192000px;}
.lsa{letter-spacing:0.240000px;}
.ls81{letter-spacing:0.288000px;}
.ls12{letter-spacing:0.300000px;}
.ls3{letter-spacing:0.336000px;}
.ls7{letter-spacing:0.360000px;}
.ls46{letter-spacing:0.384000px;}
.ls3f{letter-spacing:0.420000px;}
.ls89{letter-spacing:0.432000px;}
.ls18{letter-spacing:0.480000px;}
.ls72{letter-spacing:0.528000px;}
.ls41{letter-spacing:0.540000px;}
.ls7c{letter-spacing:0.576000px;}
.ls32{letter-spacing:0.600000px;}
.ls70{letter-spacing:0.624000px;}
.ls8{letter-spacing:0.660000px;}
.ls2e{letter-spacing:0.720000px;}
.ls7b{letter-spacing:0.768000px;}
.ls17{letter-spacing:0.780000px;}
.ls93{letter-spacing:0.816000px;}
.ls38{letter-spacing:0.840000px;}
.ls7e{letter-spacing:0.864000px;}
.lsc{letter-spacing:0.900000px;}
.ls90{letter-spacing:0.912000px;}
.ls2f{letter-spacing:0.960000px;}
.ls8f{letter-spacing:1.008000px;}
.ls3e{letter-spacing:1.020000px;}
.ls92{letter-spacing:1.056000px;}
.lsb{letter-spacing:1.080000px;}
.ls7f{letter-spacing:1.104000px;}
.ls4e{letter-spacing:1.140000px;}
.ls83{letter-spacing:1.152000px;}
.ls20{letter-spacing:1.200000px;}
.ls87{letter-spacing:1.248000px;}
.ls23{letter-spacing:1.260000px;}
.ls99{letter-spacing:1.296000px;}
.ls9{letter-spacing:1.320000px;}
.ls77{letter-spacing:1.344000px;}
.ls26{letter-spacing:1.380000px;}
.ls97{letter-spacing:1.392000px;}
.ls6{letter-spacing:1.440000px;}
.ls8c{letter-spacing:1.488000px;}
.ls64{letter-spacing:1.500000px;}
.ls31{letter-spacing:1.560000px;}
.ls76{letter-spacing:1.584000px;}
.ls27{letter-spacing:1.620000px;}
.ls82{letter-spacing:1.632000px;}
.ls13{letter-spacing:1.680000px;}
.ls24{letter-spacing:1.740000px;}
.ls19{letter-spacing:1.800000px;}
.ls9b{letter-spacing:1.824000px;}
.ls3c{letter-spacing:1.860000px;}
.ls74{letter-spacing:1.872000px;}
.ls4a{letter-spacing:1.920000px;}
.ls25{letter-spacing:1.980000px;}
.ls10{letter-spacing:2.040000px;}
.ls4{letter-spacing:2.100000px;}
.ls11{letter-spacing:2.160000px;}
.ls3b{letter-spacing:2.220000px;}
.ls75{letter-spacing:2.256000px;}
.ls51{letter-spacing:2.280000px;}
.ls2c{letter-spacing:2.340000px;}
.ls73{letter-spacing:2.352000px;}
.ls44{letter-spacing:2.400000px;}
.ls56{letter-spacing:2.460000px;}
.lsd{letter-spacing:2.520000px;}
.ls95{letter-spacing:2.544000px;}
.ls5{letter-spacing:2.640000px;}
.ls5c{letter-spacing:2.688000px;}
.lse{letter-spacing:2.700000px;}
.ls9a{letter-spacing:2.736000px;}
.ls57{letter-spacing:2.760000px;}
.ls80{letter-spacing:2.784000px;}
.ls6f{letter-spacing:2.820000px;}
.ls35{letter-spacing:2.880000px;}
.ls65{letter-spacing:2.895600px;}
.ls43{letter-spacing:2.940000px;}
.ls3a{letter-spacing:3.000000px;}
.ls78{letter-spacing:3.024000px;}
.ls49{letter-spacing:3.060000px;}
.ls96{letter-spacing:3.072000px;}
.ls66{letter-spacing:3.120000px;}
.ls8b{letter-spacing:3.168000px;}
.ls5f{letter-spacing:3.180000px;}
.ls7d{letter-spacing:3.216000px;}
.ls52{letter-spacing:3.300000px;}
.ls2a{letter-spacing:3.360000px;}
.ls42{letter-spacing:3.420000px;}
.ls79{letter-spacing:3.456000px;}
.ls50{letter-spacing:3.480000px;}
.ls37{letter-spacing:3.540000px;}
.ls67{letter-spacing:3.552000px;}
.ls8a{letter-spacing:3.648000px;}
.lsf{letter-spacing:3.660000px;}
.ls4b{letter-spacing:3.720000px;}
.ls39{letter-spacing:3.780000px;}
.ls6e{letter-spacing:3.840000px;}
.ls3d{letter-spacing:3.960000px;}
.ls63{letter-spacing:3.984000px;}
.ls28{letter-spacing:4.020000px;}
.ls98{letter-spacing:4.032000px;}
.ls68{letter-spacing:4.080000px;}
.ls8d{letter-spacing:4.128000px;}
.ls6c{letter-spacing:4.140000px;}
.ls21{letter-spacing:4.200000px;}
.ls58{letter-spacing:4.260000px;}
.ls55{letter-spacing:4.320000px;}
.ls7a{letter-spacing:4.368000px;}
.ls5e{letter-spacing:4.380000px;}
.ls91{letter-spacing:4.416000px;}
.ls88{letter-spacing:4.608000px;}
.ls8e{letter-spacing:4.656000px;}
.ls47{letter-spacing:4.752000px;}
.ls2d{letter-spacing:4.920000px;}
.ls16{letter-spacing:5.040000px;}
.ls34{letter-spacing:5.100000px;}
.ls54{letter-spacing:5.280000px;}
.ls15{letter-spacing:5.460000px;}
.ls14{letter-spacing:5.700000px;}
.ls40{letter-spacing:6.000000px;}
.ls22{letter-spacing:6.060000px;}
.ls33{letter-spacing:6.120000px;}
.ls4c{letter-spacing:6.300000px;}
.ls30{letter-spacing:6.420000px;}
.ls69{letter-spacing:6.600000px;}
.ls4d{letter-spacing:6.780000px;}
.ls4f{letter-spacing:6.840000px;}
.ls5d{letter-spacing:7.200000px;}
.ls6d{letter-spacing:7.800000px;}
.ls36{letter-spacing:8.400000px;}
.ls53{letter-spacing:8.820000px;}
.ls6a{letter-spacing:8.880000px;}
.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;}
}
.wsa7{word-spacing:-20.940000px;}
.ws96{word-spacing:-20.100000px;}
.ws3d{word-spacing:-19.980000px;}
.ws1b{word-spacing:-19.620000px;}
.ws19{word-spacing:-19.560000px;}
.ws7e{word-spacing:-18.780000px;}
.ws1c{word-spacing:-18.720000px;}
.ws39{word-spacing:-18.660000px;}
.ws7c{word-spacing:-18.480000px;}
.ws5d{word-spacing:-18.360000px;}
.ws3c{word-spacing:-18.240000px;}
.ws3b{word-spacing:-18.060000px;}
.ws3a{word-spacing:-18.000000px;}
.ws5c{word-spacing:-17.940000px;}
.ws95{word-spacing:-17.760000px;}
.ws38{word-spacing:-17.520000px;}
.ws7d{word-spacing:-17.400000px;}
.wsa3{word-spacing:-17.340000px;}
.ws18{word-spacing:-17.280000px;}
.wsa5{word-spacing:-17.220000px;}
.ws1a{word-spacing:-17.160000px;}
.ws7b{word-spacing:-17.100000px;}
.wsa4{word-spacing:-17.040000px;}
.ws94{word-spacing:-16.920000px;}
.ws7f{word-spacing:-16.860000px;}
.wsa6{word-spacing:-16.800000px;}
.ws2{word-spacing:-16.680000px;}
.ws93{word-spacing:-16.620000px;}
.wsa8{word-spacing:-16.032000px;}
.wsab{word-spacing:-15.744000px;}
.wsc3{word-spacing:-15.600000px;}
.wsaa{word-spacing:-15.264000px;}
.wsc4{word-spacing:-14.736000px;}
.wsc1{word-spacing:-14.592000px;}
.wsc5{word-spacing:-14.496000px;}
.wsc2{word-spacing:-14.256000px;}
.ws1d{word-spacing:-14.178000px;}
.wsa9{word-spacing:-13.968000px;}
.ws1{word-spacing:-13.344000px;}
.ws98{word-spacing:-12.510000px;}
.ws61{word-spacing:-11.676000px;}
.ws0{word-spacing:-11.008800px;}
.ws1e{word-spacing:-6.060000px;}
.ws4e{word-spacing:-5.280000px;}
.ws52{word-spacing:-4.320000px;}
.ws8d{word-spacing:-4.200000px;}
.wsaf{word-spacing:-4.140000px;}
.ws9e{word-spacing:-4.080000px;}
.ws46{word-spacing:-3.720000px;}
.ws1f{word-spacing:-3.660000px;}
.ws29{word-spacing:-3.540000px;}
.wsbb{word-spacing:-3.456000px;}
.ws8e{word-spacing:-3.360000px;}
.ws4d{word-spacing:-3.300000px;}
.ws72{word-spacing:-3.180000px;}
.wsc7{word-spacing:-3.120000px;}
.ws3e{word-spacing:-3.060000px;}
.ws4c{word-spacing:-3.000000px;}
.ws9c{word-spacing:-2.940000px;}
.wsb2{word-spacing:-2.820000px;}
.wsbe{word-spacing:-2.784000px;}
.ws55{word-spacing:-2.760000px;}
.ws32{word-spacing:-2.700000px;}
.wsb0{word-spacing:-2.520000px;}
.ws73{word-spacing:-2.460000px;}
.ws33{word-spacing:-2.400000px;}
.ws23{word-spacing:-2.340000px;}
.ws17{word-spacing:-2.220000px;}
.ws89{word-spacing:-2.100000px;}
.ws34{word-spacing:-2.040000px;}
.ws3f{word-spacing:-1.920000px;}
.wsb9{word-spacing:-1.872000px;}
.ws54{word-spacing:-1.860000px;}
.ws31{word-spacing:-1.800000px;}
.ws4b{word-spacing:-1.740000px;}
.ws56{word-spacing:-1.620000px;}
.ws70{word-spacing:-1.560000px;}
.ws9f{word-spacing:-1.500000px;}
.wsca{word-spacing:-1.488000px;}
.ws8c{word-spacing:-1.440000px;}
.ws20{word-spacing:-1.380000px;}
.ws41{word-spacing:-1.320000px;}
.ws90{word-spacing:-1.260000px;}
.wsbf{word-spacing:-1.152000px;}
.ws14{word-spacing:-1.080000px;}
.ws86{word-spacing:-1.020000px;}
.ws24{word-spacing:-0.960000px;}
.wsad{word-spacing:-0.900000px;}
.wsa1{word-spacing:-0.864000px;}
.ws40{word-spacing:-0.840000px;}
.ws45{word-spacing:-0.720000px;}
.ws57{word-spacing:-0.660000px;}
.wsb6{word-spacing:-0.624000px;}
.ws51{word-spacing:-0.600000px;}
.wsbc{word-spacing:-0.576000px;}
.ws82{word-spacing:-0.540000px;}
.ws30{word-spacing:-0.480000px;}
.ws88{word-spacing:-0.420000px;}
.ws36{word-spacing:-0.384000px;}
.wsa{word-spacing:-0.336000px;}
.wsd2{word-spacing:-0.288000px;}
.ws9b{word-spacing:-0.240000px;}
.ws4f{word-spacing:-0.180000px;}
.wsd1{word-spacing:-0.144000px;}
.ws22{word-spacing:-0.120000px;}
.wsac{word-spacing:-0.060000px;}
.ws3{word-spacing:0.000000px;}
.ws44{word-spacing:0.120000px;}
.ws47{word-spacing:0.180000px;}
.wscf{word-spacing:0.192000px;}
.ws77{word-spacing:0.210000px;}
.ws28{word-spacing:0.240000px;}
.ws2e{word-spacing:0.420000px;}
.wsc0{word-spacing:0.432000px;}
.ws4{word-spacing:0.504000px;}
.wsb3{word-spacing:0.540000px;}
.ws8b{word-spacing:0.600000px;}
.ws5b{word-spacing:0.624000px;}
.wscc{word-spacing:0.672000px;}
.ws4a{word-spacing:0.780000px;}
.wsc8{word-spacing:0.816000px;}
.ws9a{word-spacing:0.840000px;}
.ws49{word-spacing:0.900000px;}
.wsd{word-spacing:0.960000px;}
.ws83{word-spacing:1.020000px;}
.wsce{word-spacing:1.056000px;}
.wsb1{word-spacing:1.140000px;}
.wscb{word-spacing:1.296000px;}
.ws16{word-spacing:1.320000px;}
.ws21{word-spacing:1.380000px;}
.ws87{word-spacing:1.500000px;}
.ws7a{word-spacing:1.536000px;}
.wsc6{word-spacing:1.632000px;}
.ws5a{word-spacing:1.680000px;}
.ws2a{word-spacing:1.740000px;}
.wsb4{word-spacing:1.800000px;}
.ws6c{word-spacing:1.860000px;}
.ws84{word-spacing:1.920000px;}
.ws2c{word-spacing:2.040000px;}
.ws48{word-spacing:2.100000px;}
.wsd3{word-spacing:2.112000px;}
.wsc{word-spacing:2.160000px;}
.ws50{word-spacing:2.220000px;}
.wsb8{word-spacing:2.304000px;}
.wsa2{word-spacing:2.340000px;}
.ws92{word-spacing:2.352000px;}
.ws75{word-spacing:2.400000px;}
.ws6e{word-spacing:2.460000px;}
.ws6d{word-spacing:2.580000px;}
.ws59{word-spacing:2.688000px;}
.ws15{word-spacing:2.700000px;}
.wscd{word-spacing:2.736000px;}
.wsf{word-spacing:2.820000px;}
.wsd4{word-spacing:2.976000px;}
.wsbd{word-spacing:3.024000px;}
.ws85{word-spacing:3.060000px;}
.ws5{word-spacing:3.120000px;}
.wsd0{word-spacing:3.168000px;}
.wsae{word-spacing:3.240000px;}
.ws2f{word-spacing:3.300000px;}
.ws37{word-spacing:3.408000px;}
.ws8a{word-spacing:3.480000px;}
.ws6{word-spacing:3.504000px;}
.ws8f{word-spacing:3.540000px;}
.ws91{word-spacing:3.552000px;}
.wsc9{word-spacing:3.648000px;}
.ws81{word-spacing:3.660000px;}
.ws71{word-spacing:3.780000px;}
.wsba{word-spacing:3.792000px;}
.ws74{word-spacing:3.900000px;}
.ws9d{word-spacing:3.960000px;}
.ws53{word-spacing:4.020000px;}
.ws79{word-spacing:4.032000px;}
.ws8{word-spacing:4.080000px;}
.ws2d{word-spacing:4.140000px;}
.ws25{word-spacing:4.200000px;}
.wsb{word-spacing:4.272000px;}
.ws26{word-spacing:4.320000px;}
.ws7{word-spacing:4.368000px;}
.ws76{word-spacing:4.380000px;}
.ws9{word-spacing:4.416000px;}
.ws12{word-spacing:4.440000px;}
.ws42{word-spacing:4.500000px;}
.ws2b{word-spacing:4.560000px;}
.ws13{word-spacing:4.680000px;}
.ws43{word-spacing:4.740000px;}
.ws35{word-spacing:4.800000px;}
.ws6f{word-spacing:4.860000px;}
.ws27{word-spacing:4.980000px;}
.wsb5{word-spacing:5.040000px;}
.ws80{word-spacing:5.160000px;}
.ws11{word-spacing:5.220000px;}
.ws10{word-spacing:5.460000px;}
.wse{word-spacing:5.520000px;}
.wsa0{word-spacing:5.580000px;}
.wsb7{word-spacing:6.288000px;}
.ws69{word-spacing:20.328000px;}
.ws63{word-spacing:21.882000px;}
.ws68{word-spacing:25.956000px;}
.ws6a{word-spacing:29.820000px;}
.ws66{word-spacing:32.004000px;}
.ws64{word-spacing:32.928000px;}
.ws65{word-spacing:62.202000px;}
.ws67{word-spacing:109.032000px;}
.ws99{word-spacing:119.250000px;}
.ws5f{word-spacing:121.254000px;}
.ws5e{word-spacing:127.680000px;}
.ws62{word-spacing:138.012000px;}
.ws60{word-spacing:158.802000px;}
.ws97{word-spacing:279.456000px;}
.ws6b{word-spacing:301.812000px;}
.ws58{word-spacing:847.920000px;}
.ws78{word-spacing:937.104000px;}
._e{margin-left:-2898.126000px;}
._f{margin-left:-2874.309000px;}
._25{margin-left:-8.550000px;}
._3{margin-left:-7.303800px;}
._0{margin-left:-6.300000px;}
._4{margin-left:-4.884000px;}
._1{margin-left:-3.630000px;}
._2{margin-left:-2.442000px;}
._6{margin-left:-1.140000px;}
._5{width:1.008000px;}
._8{width:2.604000px;}
._a{width:4.518000px;}
._b{width:5.520000px;}
._7{width:6.600000px;}
._c{width:8.443800px;}
._d{width:9.676200px;}
._9{width:11.736000px;}
._17{width:19.176000px;}
._10{width:21.588000px;}
._41{width:25.605000px;}
._19{width:28.728000px;}
._40{width:30.735000px;}
._38{width:32.085000px;}
._3f{width:34.245000px;}
._39{width:36.495000px;}
._37{width:40.995000px;}
._33{width:49.050000px;}
._24{width:51.630000px;}
._1b{width:53.172000px;}
._1f{width:63.528000px;}
._3c{width:66.486000px;}
._1d{width:73.878000px;}
._1e{width:82.404000px;}
._1c{width:90.342000px;}
._18{width:91.752000px;}
._15{width:104.706000px;}
._14{width:108.864000px;}
._23{width:129.198000px;}
._34{width:134.550000px;}
._13{width:144.564000px;}
._3b{width:153.270000px;}
._1a{width:154.392000px;}
._3e{width:157.095000px;}
._28{width:159.264000px;}
._20{width:161.406000px;}
._12{width:163.884000px;}
._35{width:165.060000px;}
._16{width:169.428000px;}
._36{width:199.575000px;}
._3d{width:240.885000px;}
._3a{width:247.182000px;}
._22{width:256.620000px;}
._2e{width:292.800000px;}
._27{width:298.176000px;}
._26{width:299.280000px;}
._32{width:303.276000px;}
._29{width:308.928000px;}
._2b{width:310.848000px;}
._21{width:343.854000px;}
._2a{width:349.296000px;}
._30{width:350.880000px;}
._2d{width:399.984000px;}
._2f{width:405.360000px;}
._31{width:413.376000px;}
._11{width:443.394000px;}
._2c{width:526.080000px;}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:28.800000px;}
.fs2{font-size:39.600000px;}
.fs8{font-size:42.000000px;}
.fs9{font-size:45.000000px;}
.fs4{font-size:48.000000px;}
.fs6{font-size:51.000000px;}
.fs7{font-size:54.000000px;}
.fs5{font-size:60.000000px;}
.fs1{font-size:66.000000px;}
.fs0{font-size:84.000000px;}
.y0{bottom:0.000000px;}
.y11c{bottom:72.709350px;}
.y184{bottom:82.796700px;}
.ya0{bottom:83.218050px;}
.yfe{bottom:83.348250px;}
.y9b{bottom:83.363850px;}
.y33{bottom:83.493900px;}
.y11f{bottom:83.654850px;}
.y65{bottom:90.567600px;}
.ybd{bottom:90.709200px;}
.y11b{bottom:90.709350px;}
.y14d{bottom:92.215050px;}
.yfd{bottom:95.948250px;}
.y183{bottom:97.796700px;}
.y9f{bottom:98.962050px;}
.y11e{bottom:99.398850px;}
.yce{bottom:101.363850px;}
.y9a{bottom:101.367600px;}
.y14c{bottom:107.717550px;}
.y64{bottom:108.567600px;}
.ybc{bottom:108.709200px;}
.y11a{bottom:108.709350px;}
.yfc{bottom:110.700750px;}
.y182{bottom:112.796700px;}
.y9e{bottom:114.706050px;}
.y11d{bottom:115.145850px;}
.ycd{bottom:119.363850px;}
.y99{bottom:119.367600px;}
.y14b{bottom:123.220050px;}
.yfb{bottom:125.453250px;}
.y63{bottom:126.567600px;}
.ybb{bottom:126.709200px;}
.y119{bottom:126.709350px;}
.y181{bottom:127.796700px;}
.y9d{bottom:130.452900px;}
.ycc{bottom:137.363850px;}
.y98{bottom:137.367600px;}
.yfa{bottom:138.053250px;}
.y14a{bottom:138.722550px;}
.y180{bottom:142.796700px;}
.y62{bottom:144.567600px;}
.yba{bottom:144.709200px;}
.y118{bottom:144.709350px;}
.yf{bottom:146.467650px;}
.y120{bottom:147.458850px;}
.yf9{bottom:150.653250px;}
.y149{bottom:154.225050px;}
.ycb{bottom:155.363850px;}
.y97{bottom:155.367600px;}
.y17f{bottom:157.796700px;}
.ya1{bottom:162.454050px;}
.y61{bottom:162.567600px;}
.y117{bottom:162.709350px;}
.yf8{bottom:163.253250px;}
.ycf{bottom:166.606050px;}
.y148{bottom:169.727550px;}
.y17e{bottom:172.796700px;}
.yca{bottom:173.363850px;}
.y96{bottom:173.367600px;}
.yf7{bottom:175.853250px;}
.y121{bottom:175.946850px;}
.yb9{bottom:179.586750px;}
.y60{bottom:180.567600px;}
.y116{bottom:180.709350px;}
.yd0{bottom:182.338050px;}
.y147{bottom:185.230050px;}
.y17d{bottom:187.796700px;}
.y122{bottom:189.554850px;}
.yff{bottom:189.994050px;}
.yf6{bottom:190.605750px;}
.yc9{bottom:191.363850px;}
.y95{bottom:191.367600px;}
.yb8{bottom:195.192750px;}
.y30{bottom:197.964900px;}
.y25{bottom:198.099900px;}
.y5f{bottom:198.567600px;}
.y115{bottom:198.709350px;}
.y17c{bottom:202.796700px;}
.yf5{bottom:203.205750px;}
.yc8{bottom:209.363850px;}
.y94{bottom:209.367600px;}
.yb7{bottom:209.513850px;}
.y144{bottom:213.490050px;}
.y140{bottom:213.501300px;}
.y2f{bottom:215.964900px;}
.y24{bottom:216.099900px;}
.y5e{bottom:216.567600px;}
.y114{bottom:216.709350px;}
.y17b{bottom:217.796700px;}
.yf4{bottom:217.958250px;}
.yc7{bottom:227.363850px;}
.y93{bottom:227.367600px;}
.yd1{bottom:227.410050px;}
.yb6{bottom:227.513850px;}
.y143{bottom:229.993800px;}
.y13f{bottom:230.005050px;}
.yf3{bottom:230.558250px;}
.y17a{bottom:232.796700px;}
.y2e{bottom:233.964900px;}
.y23{bottom:234.099900px;}
.y5d{bottom:234.567600px;}
.y113{bottom:234.709350px;}
.ya4{bottom:236.326050px;}
.yc6{bottom:245.363850px;}
.y92{bottom:245.367600px;}
.y146{bottom:246.486300px;}
.y142{bottom:246.497550px;}
.y13e{bottom:246.508800px;}
.y179{bottom:247.796700px;}
.ya2{bottom:249.622050px;}
.y2d{bottom:251.964900px;}
.y22{bottom:252.099900px;}
.y5c{bottom:252.567600px;}
.y112{bottom:252.709350px;}
.yf2{bottom:258.068250px;}
.y178{bottom:262.796700px;}
.y145{bottom:262.990050px;}
.y141{bottom:263.001300px;}
.y13d{bottom:263.012550px;}
.yb5{bottom:263.363850px;}
.y91{bottom:263.367600px;}
.y2c{bottom:269.964900px;}
.y21{bottom:270.099900px;}
.y5b{bottom:270.567600px;}
.y111{bottom:270.709350px;}
.y177{bottom:277.796700px;}
.yb4{bottom:281.363850px;}
.y90{bottom:281.367600px;}
.yf1{bottom:285.578250px;}
.y2b{bottom:287.964900px;}
.y20{bottom:288.099900px;}
.y5a{bottom:288.567600px;}
.y110{bottom:288.709350px;}
.y13c{bottom:291.272550px;}
.yee{bottom:291.878250px;}
.y176{bottom:292.796700px;}
.yed{bottom:298.178250px;}
.yb3{bottom:299.363850px;}
.y8f{bottom:299.367600px;}
.yef{bottom:304.478250px;}
.y2a{bottom:305.964900px;}
.y1f{bottom:306.099900px;}
.y59{bottom:306.567600px;}
.y10f{bottom:306.709350px;}
.y175{bottom:307.796700px;}
.yf0{bottom:310.778250px;}
.yb2{bottom:317.363850px;}
.y8e{bottom:317.367600px;}
.y174{bottom:322.796700px;}
.y13b{bottom:322.942350px;}
.y29{bottom:323.964900px;}
.y1e{bottom:324.099900px;}
.y58{bottom:324.567600px;}
.y10e{bottom:324.709350px;}
.y1b4{bottom:334.941300px;}
.yb1{bottom:335.363850px;}
.y8d{bottom:335.367600px;}
.y173{bottom:337.796700px;}
.yec{bottom:341.809200px;}
.y28{bottom:341.964900px;}
.y1d{bottom:342.099900px;}
.y13a{bottom:342.442350px;}
.y57{bottom:342.567600px;}
.y10d{bottom:342.709350px;}
.y1b3{bottom:349.941300px;}
.y172{bottom:352.796700px;}
.yb0{bottom:353.363850px;}
.y8c{bottom:353.367600px;}
.y1c{bottom:360.099900px;}
.y56{bottom:360.567600px;}
.y10c{bottom:360.709350px;}
.yeb{bottom:361.309200px;}
.y139{bottom:361.942350px;}
.y1b2{bottom:364.941300px;}
.y171{bottom:367.796700px;}
.yaf{bottom:371.363850px;}
.y8b{bottom:371.367600px;}
.y27{bottom:377.964900px;}
.y1b{bottom:378.099900px;}
.y55{bottom:378.567600px;}
.y10b{bottom:378.709350px;}
.y1b1{bottom:379.941300px;}
.y170{bottom:382.796700px;}
.yae{bottom:389.363850px;}
.y8a{bottom:389.367600px;}
.y100{bottom:390.682050px;}
.y1b0{bottom:394.941300px;}
.y1a{bottom:396.099900px;}
.y54{bottom:396.567600px;}
.y10a{bottom:396.709200px;}
.y16f{bottom:397.796700px;}
.yad{bottom:407.363850px;}
.y89{bottom:407.367600px;}
.y1af{bottom:409.941300px;}
.y16e{bottom:412.796700px;}
.y19{bottom:414.099900px;}
.y53{bottom:414.567600px;}
.yea{bottom:414.709200px;}
.y138{bottom:415.977150px;}
.y1ae{bottom:424.941300px;}
.yac{bottom:425.363850px;}
.y88{bottom:425.367600px;}
.y16d{bottom:427.796700px;}
.y18{bottom:432.099900px;}
.y137{bottom:432.225150px;}
.y52{bottom:432.567600px;}
.ye9{bottom:432.709200px;}
.y1ad{bottom:439.941300px;}
.y16c{bottom:442.796700px;}
.yab{bottom:443.363850px;}
.y87{bottom:443.367600px;}
.y136{bottom:448.473150px;}
.y17{bottom:450.099900px;}
.ye8{bottom:450.709200px;}
.y1ac{bottom:454.941300px;}
.y16b{bottom:457.796700px;}
.yaa{bottom:461.363850px;}
.y86{bottom:461.367600px;}
.y135{bottom:464.721150px;}
.y51{bottom:467.445150px;}
.y16{bottom:468.099900px;}
.ye7{bottom:468.709200px;}
.y1ab{bottom:469.941300px;}
.y16a{bottom:472.796700px;}
.ya9{bottom:479.363850px;}
.y85{bottom:479.367600px;}
.y50{bottom:483.051150px;}
.y1aa{bottom:484.941300px;}
.y15{bottom:486.099900px;}
.ye6{bottom:486.709200px;}
.y169{bottom:487.796700px;}
.y134{bottom:493.725150px;}
.y4f{bottom:497.363850px;}
.y84{bottom:497.367600px;}
.y1a9{bottom:499.941300px;}
.y133{bottom:501.981150px;}
.y168{bottom:502.796700px;}
.y14{bottom:504.099900px;}
.ye5{bottom:504.709200px;}
.y1a8{bottom:514.941300px;}
.y4e{bottom:515.363850px;}
.y83{bottom:515.367600px;}
.y167{bottom:517.796700px;}
.y13{bottom:522.099900px;}
.ye4{bottom:522.709200px;}
.y1a7{bottom:529.941300px;}
.y166{bottom:532.796700px;}
.y4d{bottom:533.363850px;}
.y82{bottom:533.367600px;}
.y12{bottom:540.099900px;}
.ye3{bottom:540.709200px;}
.y132{bottom:542.558850px;}
.y1a6{bottom:544.941300px;}
.ya3{bottom:545.662050px;}
.y165{bottom:547.796700px;}
.y4c{bottom:551.363850px;}
.y81{bottom:551.367600px;}
.y11{bottom:558.099900px;}
.ye2{bottom:558.709200px;}
.y1a5{bottom:559.941300px;}
.y164{bottom:562.796700px;}
.y4b{bottom:569.363850px;}
.y80{bottom:569.367600px;}
.y1a4{bottom:574.941300px;}
.y26{bottom:576.099900px;}
.ye1{bottom:576.709200px;}
.y163{bottom:577.796700px;}
.y123{bottom:582.326850px;}
.ya8{bottom:587.363850px;}
.y7f{bottom:587.367600px;}
.y131{bottom:587.513850px;}
.y1a3{bottom:589.941300px;}
.y162{bottom:592.796700px;}
.y10{bottom:594.099900px;}
.ye0{bottom:594.709200px;}
.y1a2{bottom:604.941300px;}
.y4a{bottom:605.228850px;}
.ya7{bottom:605.363850px;}
.y7e{bottom:605.367600px;}
.y130{bottom:605.513850px;}
.y161{bottom:607.796700px;}
.ydf{bottom:612.709200px;}
.y1a1{bottom:619.941300px;}
.y160{bottom:622.796700px;}
.ya6{bottom:623.363850px;}
.y7d{bottom:623.367600px;}
.y12f{bottom:623.513850px;}
.yd2{bottom:624.538050px;}
.yde{bottom:630.709200px;}
.y1a0{bottom:634.941300px;}
.y15f{bottom:637.796700px;}
.ya5{bottom:641.363850px;}
.y7c{bottom:641.367600px;}
.y12e{bottom:641.513850px;}
.ydd{bottom:648.709200px;}
.y19f{bottom:649.941300px;}
.y15e{bottom:652.796700px;}
.y49{bottom:659.363850px;}
.y7b{bottom:659.367600px;}
.y12d{bottom:659.513850px;}
.ye{bottom:663.555900px;}
.y19e{bottom:664.941300px;}
.ydc{bottom:666.709200px;}
.y15d{bottom:667.796700px;}
.y48{bottom:677.363850px;}
.y7a{bottom:677.367600px;}
.y12c{bottom:677.513850px;}
.y19d{bottom:679.941300px;}
.y15c{bottom:682.796700px;}
.ydb{bottom:684.709200px;}
.y19c{bottom:694.941300px;}
.y47{bottom:695.363850px;}
.y79{bottom:695.367600px;}
.y12b{bottom:695.513850px;}
.yd{bottom:696.411900px;}
.y15b{bottom:697.796700px;}
.yda{bottom:702.709200px;}
.y19b{bottom:709.941300px;}
.yc{bottom:711.411900px;}
.y15a{bottom:712.796700px;}
.y46{bottom:713.363850px;}
.y78{bottom:713.367600px;}
.y12a{bottom:713.513850px;}
.yd9{bottom:720.709200px;}
.y101{bottom:721.270050px;}
.y19a{bottom:724.941300px;}
.yb{bottom:726.411900px;}
.y159{bottom:727.796700px;}
.y45{bottom:731.363850px;}
.y77{bottom:731.367600px;}
.y129{bottom:731.513850px;}
.yd8{bottom:738.709200px;}
.y199{bottom:739.941300px;}
.ya{bottom:741.411900px;}
.y158{bottom:742.796700px;}
.y44{bottom:749.363850px;}
.y76{bottom:749.367600px;}
.y128{bottom:749.513850px;}
.y198{bottom:754.941300px;}
.y9{bottom:756.411900px;}
.yd7{bottom:756.709200px;}
.y157{bottom:757.796700px;}
.y43{bottom:767.363850px;}
.y75{bottom:767.367600px;}
.y127{bottom:767.513850px;}
.y197{bottom:769.941300px;}
.y8{bottom:771.411900px;}
.y156{bottom:772.796700px;}
.y109{bottom:774.709200px;}
.y196{bottom:784.941300px;}
.y42{bottom:785.363850px;}
.y74{bottom:785.367600px;}
.y126{bottom:785.513850px;}
.y7{bottom:786.411900px;}
.y155{bottom:787.796700px;}
.yd6{bottom:791.586750px;}
.y108{bottom:792.709200px;}
.y195{bottom:799.941300px;}
.y154{bottom:802.796700px;}
.y41{bottom:803.363850px;}
.y73{bottom:803.367600px;}
.y125{bottom:803.513850px;}
.yd5{bottom:807.192750px;}
.y107{bottom:810.709200px;}
.y194{bottom:814.941300px;}
.y153{bottom:817.796700px;}
.y40{bottom:821.363850px;}
.y72{bottom:821.367600px;}
.yd4{bottom:821.513850px;}
.y106{bottom:828.709200px;}
.y193{bottom:829.941300px;}
.y152{bottom:832.796700px;}
.y6{bottom:834.939600px;}
.y3f{bottom:839.363850px;}
.y71{bottom:839.367600px;}
.yd3{bottom:839.513850px;}
.y192{bottom:844.941300px;}
.y151{bottom:847.796700px;}
.y3e{bottom:857.363850px;}
.y70{bottom:857.367600px;}
.y124{bottom:857.513850px;}
.y191{bottom:859.941300px;}
.y150{bottom:862.796700px;}
.y105{bottom:863.586750px;}
.y5{bottom:873.773850px;}
.y190{bottom:874.941300px;}
.y3d{bottom:875.363850px;}
.y6f{bottom:875.367600px;}
.y14f{bottom:877.796700px;}
.y104{bottom:879.192750px;}
.y18f{bottom:889.941300px;}
.y4{bottom:890.273850px;}
.y3c{bottom:893.363850px;}
.y6e{bottom:893.367600px;}
.y103{bottom:893.513850px;}
.y18e{bottom:904.941300px;}
.y3{bottom:905.541300px;}
.y14e{bottom:911.228850px;}
.y3b{bottom:911.363850px;}
.y6d{bottom:911.367600px;}
.yc5{bottom:911.374200px;}
.y102{bottom:911.513850px;}
.y18d{bottom:919.941300px;}
.y3a{bottom:929.363850px;}
.y6c{bottom:929.367600px;}
.yc4{bottom:929.374200px;}
.y2{bottom:932.941800px;}
.y18c{bottom:934.941300px;}
.y39{bottom:947.363850px;}
.y6b{bottom:947.367600px;}
.yc3{bottom:947.374200px;}
.y18b{bottom:949.941300px;}
.y1{bottom:959.936700px;}
.y18a{bottom:964.941300px;}
.y38{bottom:965.363850px;}
.y6a{bottom:965.367600px;}
.yc2{bottom:965.374200px;}
.y189{bottom:979.941300px;}
.y37{bottom:983.363850px;}
.y69{bottom:983.367600px;}
.yc1{bottom:983.374200px;}
.y188{bottom:994.941300px;}
.y36{bottom:1001.363850px;}
.y68{bottom:1001.367600px;}
.yc0{bottom:1001.374200px;}
.y187{bottom:1009.941300px;}
.y35{bottom:1019.363850px;}
.y67{bottom:1019.367600px;}
.ybf{bottom:1019.374200px;}
.y186{bottom:1024.941300px;}
.y34{bottom:1037.363850px;}
.y66{bottom:1037.367600px;}
.ybe{bottom:1037.374200px;}
.y185{bottom:1039.941300px;}
.y32{bottom:1070.769450px;}
.y9c{bottom:1086.066450px;}
.y31{bottom:1086.069450px;}
.h4{height:20.967187px;}
.h10{height:30.618164px;}
.h17{height:32.761230px;}
.h16{height:32.783203px;}
.h18{height:32.805176px;}
.h5{height:34.945312px;}
.h7{height:34.959187px;}
.h11{height:34.968750px;}
.h14{height:34.980187px;}
.he{height:34.980788px;}
.h6{height:34.992188px;}
.hb{height:37.179199px;}
.hc{height:39.339844px;}
.hd{height:39.366211px;}
.h8{height:43.681641px;}
.ha{height:43.710938px;}
.h9{height:43.740234px;}
.h13{height:43.740834px;}
.h3{height:51.523955px;}
.hf{height:55.818164px;}
.h2{height:61.154297px;}
.h12{height:65.616188px;}
.h15{height:67.968188px;}
.h1{height:1190.250000px;}
.h0{height:1190.551500px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xb{left:76.531200px;}
.x2e{left:78.656100px;}
.x11{left:83.452350px;}
.x1c{left:84.573000px;}
.x8{left:96.094500px;}
.x1{left:97.795350px;}
.x42{left:106.299150px;}
.xa{left:110.551200px;}
.xe{left:120.901200px;}
.x1e{left:128.106000px;}
.x4{left:131.816400px;}
.x36{left:144.564450px;}
.x32{left:151.792500px;}
.xf{left:155.521200px;}
.x2{left:161.571600px;}
.x1b{left:163.055400px;}
.x16{left:168.479700px;}
.x12{left:196.028850px;}
.x1d{left:197.136000px;}
.xd{left:208.591200px;}
.xc{left:211.096200px;}
.x3{left:212.876400px;}
.x10{left:221.791200px;}
.x26{left:227.997600px;}
.x28{left:266.375100px;}
.x27{left:275.132100px;}
.x3a{left:316.769250px;}
.x2b{left:318.434100px;}
.x2a{left:324.555600px;}
.x29{left:330.687600px;}
.x21{left:346.554000px;}
.x31{left:376.299600px;}
.x18{left:385.859700px;}
.x17{left:391.175700px;}
.x39{left:399.684450px;}
.x2d{left:402.644100px;}
.x37{left:406.488450px;}
.x1f{left:410.862000px;}
.x9{left:455.041500px;}
.x13{left:457.081200px;}
.x2c{left:460.215600px;}
.x34{left:461.389800px;}
.x24{left:462.892800px;}
.x3e{left:478.345200px;}
.x5{left:480.476400px;}
.x43{left:486.747150px;}
.x14{left:491.101200px;}
.x3b{left:495.351750px;}
.x2f{left:503.843100px;}
.x40{left:508.106400px;}
.x6{left:514.496400px;}
.x22{left:544.460400px;}
.x33{left:546.890400px;}
.x7{left:549.731400px;}
.x35{left:575.829300px;}
.x25{left:577.318800px;}
.x3c{left:580.390500px;}
.x3f{left:596.095200px;}
.x23{left:602.375400px;}
.x20{left:603.798000px;}
.x38{left:625.884450px;}
.x30{left:627.155100px;}
.x19{left:663.827700px;}
.x3d{left:717.130200px;}
.x15{left:724.221150px;}
.x41{left:739.336350px;}
.x1a{left:745.480950px;}
@media print{
.v2{vertical-align:-14.641600pt;}
.v3{vertical-align:-4.522667pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:20.138133pt;}
.v4{vertical-align:22.400000pt;}
.v5{vertical-align:27.221333pt;}
.v6{vertical-align:29.312000pt;}
.ls6b{letter-spacing:-5.920000pt;}
.ls60{letter-spacing:-2.762667pt;}
.ls1d{letter-spacing:-0.853333pt;}
.ls84{letter-spacing:-0.480000pt;}
.ls1b{letter-spacing:-0.448000pt;}
.ls86{letter-spacing:-0.384000pt;}
.ls1a{letter-spacing:-0.373333pt;}
.ls5b{letter-spacing:-0.320000pt;}
.ls61{letter-spacing:-0.224000pt;}
.ls45{letter-spacing:-0.213333pt;}
.ls62{letter-spacing:-0.186667pt;}
.ls5a{letter-spacing:-0.160000pt;}
.ls9c{letter-spacing:-0.128000pt;}
.ls59{letter-spacing:-0.106667pt;}
.ls1e{letter-spacing:-0.053333pt;}
.ls85{letter-spacing:-0.042667pt;}
.ls1c{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.003733pt;}
.ls0{letter-spacing:0.005333pt;}
.ls71{letter-spacing:0.042667pt;}
.ls29{letter-spacing:0.053333pt;}
.ls48{letter-spacing:0.085333pt;}
.ls2b{letter-spacing:0.106667pt;}
.ls94{letter-spacing:0.128000pt;}
.ls1f{letter-spacing:0.160000pt;}
.ls2{letter-spacing:0.170667pt;}
.lsa{letter-spacing:0.213333pt;}
.ls81{letter-spacing:0.256000pt;}
.ls12{letter-spacing:0.266667pt;}
.ls3{letter-spacing:0.298667pt;}
.ls7{letter-spacing:0.320000pt;}
.ls46{letter-spacing:0.341333pt;}
.ls3f{letter-spacing:0.373333pt;}
.ls89{letter-spacing:0.384000pt;}
.ls18{letter-spacing:0.426667pt;}
.ls72{letter-spacing:0.469333pt;}
.ls41{letter-spacing:0.480000pt;}
.ls7c{letter-spacing:0.512000pt;}
.ls32{letter-spacing:0.533333pt;}
.ls70{letter-spacing:0.554667pt;}
.ls8{letter-spacing:0.586667pt;}
.ls2e{letter-spacing:0.640000pt;}
.ls7b{letter-spacing:0.682667pt;}
.ls17{letter-spacing:0.693333pt;}
.ls93{letter-spacing:0.725333pt;}
.ls38{letter-spacing:0.746667pt;}
.ls7e{letter-spacing:0.768000pt;}
.lsc{letter-spacing:0.800000pt;}
.ls90{letter-spacing:0.810667pt;}
.ls2f{letter-spacing:0.853333pt;}
.ls8f{letter-spacing:0.896000pt;}
.ls3e{letter-spacing:0.906667pt;}
.ls92{letter-spacing:0.938667pt;}
.lsb{letter-spacing:0.960000pt;}
.ls7f{letter-spacing:0.981333pt;}
.ls4e{letter-spacing:1.013333pt;}
.ls83{letter-spacing:1.024000pt;}
.ls20{letter-spacing:1.066667pt;}
.ls87{letter-spacing:1.109333pt;}
.ls23{letter-spacing:1.120000pt;}
.ls99{letter-spacing:1.152000pt;}
.ls9{letter-spacing:1.173333pt;}
.ls77{letter-spacing:1.194667pt;}
.ls26{letter-spacing:1.226667pt;}
.ls97{letter-spacing:1.237333pt;}
.ls6{letter-spacing:1.280000pt;}
.ls8c{letter-spacing:1.322667pt;}
.ls64{letter-spacing:1.333333pt;}
.ls31{letter-spacing:1.386667pt;}
.ls76{letter-spacing:1.408000pt;}
.ls27{letter-spacing:1.440000pt;}
.ls82{letter-spacing:1.450667pt;}
.ls13{letter-spacing:1.493333pt;}
.ls24{letter-spacing:1.546667pt;}
.ls19{letter-spacing:1.600000pt;}
.ls9b{letter-spacing:1.621333pt;}
.ls3c{letter-spacing:1.653333pt;}
.ls74{letter-spacing:1.664000pt;}
.ls4a{letter-spacing:1.706667pt;}
.ls25{letter-spacing:1.760000pt;}
.ls10{letter-spacing:1.813333pt;}
.ls4{letter-spacing:1.866667pt;}
.ls11{letter-spacing:1.920000pt;}
.ls3b{letter-spacing:1.973333pt;}
.ls75{letter-spacing:2.005333pt;}
.ls51{letter-spacing:2.026667pt;}
.ls2c{letter-spacing:2.080000pt;}
.ls73{letter-spacing:2.090667pt;}
.ls44{letter-spacing:2.133333pt;}
.ls56{letter-spacing:2.186667pt;}
.lsd{letter-spacing:2.240000pt;}
.ls95{letter-spacing:2.261333pt;}
.ls5{letter-spacing:2.346667pt;}
.ls5c{letter-spacing:2.389333pt;}
.lse{letter-spacing:2.400000pt;}
.ls9a{letter-spacing:2.432000pt;}
.ls57{letter-spacing:2.453333pt;}
.ls80{letter-spacing:2.474667pt;}
.ls6f{letter-spacing:2.506667pt;}
.ls35{letter-spacing:2.560000pt;}
.ls65{letter-spacing:2.573867pt;}
.ls43{letter-spacing:2.613333pt;}
.ls3a{letter-spacing:2.666667pt;}
.ls78{letter-spacing:2.688000pt;}
.ls49{letter-spacing:2.720000pt;}
.ls96{letter-spacing:2.730667pt;}
.ls66{letter-spacing:2.773333pt;}
.ls8b{letter-spacing:2.816000pt;}
.ls5f{letter-spacing:2.826667pt;}
.ls7d{letter-spacing:2.858667pt;}
.ls52{letter-spacing:2.933333pt;}
.ls2a{letter-spacing:2.986667pt;}
.ls42{letter-spacing:3.040000pt;}
.ls79{letter-spacing:3.072000pt;}
.ls50{letter-spacing:3.093333pt;}
.ls37{letter-spacing:3.146667pt;}
.ls67{letter-spacing:3.157333pt;}
.ls8a{letter-spacing:3.242667pt;}
.lsf{letter-spacing:3.253333pt;}
.ls4b{letter-spacing:3.306667pt;}
.ls39{letter-spacing:3.360000pt;}
.ls6e{letter-spacing:3.413333pt;}
.ls3d{letter-spacing:3.520000pt;}
.ls63{letter-spacing:3.541333pt;}
.ls28{letter-spacing:3.573333pt;}
.ls98{letter-spacing:3.584000pt;}
.ls68{letter-spacing:3.626667pt;}
.ls8d{letter-spacing:3.669333pt;}
.ls6c{letter-spacing:3.680000pt;}
.ls21{letter-spacing:3.733333pt;}
.ls58{letter-spacing:3.786667pt;}
.ls55{letter-spacing:3.840000pt;}
.ls7a{letter-spacing:3.882667pt;}
.ls5e{letter-spacing:3.893333pt;}
.ls91{letter-spacing:3.925333pt;}
.ls88{letter-spacing:4.096000pt;}
.ls8e{letter-spacing:4.138667pt;}
.ls47{letter-spacing:4.224000pt;}
.ls2d{letter-spacing:4.373333pt;}
.ls16{letter-spacing:4.480000pt;}
.ls34{letter-spacing:4.533333pt;}
.ls54{letter-spacing:4.693333pt;}
.ls15{letter-spacing:4.853333pt;}
.ls14{letter-spacing:5.066667pt;}
.ls40{letter-spacing:5.333333pt;}
.ls22{letter-spacing:5.386667pt;}
.ls33{letter-spacing:5.440000pt;}
.ls4c{letter-spacing:5.600000pt;}
.ls30{letter-spacing:5.706667pt;}
.ls69{letter-spacing:5.866667pt;}
.ls4d{letter-spacing:6.026667pt;}
.ls4f{letter-spacing:6.080000pt;}
.ls5d{letter-spacing:6.400000pt;}
.ls6d{letter-spacing:6.933333pt;}
.ls36{letter-spacing:7.466667pt;}
.ls53{letter-spacing:7.840000pt;}
.ls6a{letter-spacing:7.893333pt;}
.wsa7{word-spacing:-18.613333pt;}
.ws96{word-spacing:-17.866667pt;}
.ws3d{word-spacing:-17.760000pt;}
.ws1b{word-spacing:-17.440000pt;}
.ws19{word-spacing:-17.386667pt;}
.ws7e{word-spacing:-16.693333pt;}
.ws1c{word-spacing:-16.640000pt;}
.ws39{word-spacing:-16.586667pt;}
.ws7c{word-spacing:-16.426667pt;}
.ws5d{word-spacing:-16.320000pt;}
.ws3c{word-spacing:-16.213333pt;}
.ws3b{word-spacing:-16.053333pt;}
.ws3a{word-spacing:-16.000000pt;}
.ws5c{word-spacing:-15.946667pt;}
.ws95{word-spacing:-15.786667pt;}
.ws38{word-spacing:-15.573333pt;}
.ws7d{word-spacing:-15.466667pt;}
.wsa3{word-spacing:-15.413333pt;}
.ws18{word-spacing:-15.360000pt;}
.wsa5{word-spacing:-15.306667pt;}
.ws1a{word-spacing:-15.253333pt;}
.ws7b{word-spacing:-15.200000pt;}
.wsa4{word-spacing:-15.146667pt;}
.ws94{word-spacing:-15.040000pt;}
.ws7f{word-spacing:-14.986667pt;}
.wsa6{word-spacing:-14.933333pt;}
.ws2{word-spacing:-14.826667pt;}
.ws93{word-spacing:-14.773333pt;}
.wsa8{word-spacing:-14.250667pt;}
.wsab{word-spacing:-13.994667pt;}
.wsc3{word-spacing:-13.866667pt;}
.wsaa{word-spacing:-13.568000pt;}
.wsc4{word-spacing:-13.098667pt;}
.wsc1{word-spacing:-12.970667pt;}
.wsc5{word-spacing:-12.885333pt;}
.wsc2{word-spacing:-12.672000pt;}
.ws1d{word-spacing:-12.602667pt;}
.wsa9{word-spacing:-12.416000pt;}
.ws1{word-spacing:-11.861333pt;}
.ws98{word-spacing:-11.120000pt;}
.ws61{word-spacing:-10.378667pt;}
.ws0{word-spacing:-9.785600pt;}
.ws1e{word-spacing:-5.386667pt;}
.ws4e{word-spacing:-4.693333pt;}
.ws52{word-spacing:-3.840000pt;}
.ws8d{word-spacing:-3.733333pt;}
.wsaf{word-spacing:-3.680000pt;}
.ws9e{word-spacing:-3.626667pt;}
.ws46{word-spacing:-3.306667pt;}
.ws1f{word-spacing:-3.253333pt;}
.ws29{word-spacing:-3.146667pt;}
.wsbb{word-spacing:-3.072000pt;}
.ws8e{word-spacing:-2.986667pt;}
.ws4d{word-spacing:-2.933333pt;}
.ws72{word-spacing:-2.826667pt;}
.wsc7{word-spacing:-2.773333pt;}
.ws3e{word-spacing:-2.720000pt;}
.ws4c{word-spacing:-2.666667pt;}
.ws9c{word-spacing:-2.613333pt;}
.wsb2{word-spacing:-2.506667pt;}
.wsbe{word-spacing:-2.474667pt;}
.ws55{word-spacing:-2.453333pt;}
.ws32{word-spacing:-2.400000pt;}
.wsb0{word-spacing:-2.240000pt;}
.ws73{word-spacing:-2.186667pt;}
.ws33{word-spacing:-2.133333pt;}
.ws23{word-spacing:-2.080000pt;}
.ws17{word-spacing:-1.973333pt;}
.ws89{word-spacing:-1.866667pt;}
.ws34{word-spacing:-1.813333pt;}
.ws3f{word-spacing:-1.706667pt;}
.wsb9{word-spacing:-1.664000pt;}
.ws54{word-spacing:-1.653333pt;}
.ws31{word-spacing:-1.600000pt;}
.ws4b{word-spacing:-1.546667pt;}
.ws56{word-spacing:-1.440000pt;}
.ws70{word-spacing:-1.386667pt;}
.ws9f{word-spacing:-1.333333pt;}
.wsca{word-spacing:-1.322667pt;}
.ws8c{word-spacing:-1.280000pt;}
.ws20{word-spacing:-1.226667pt;}
.ws41{word-spacing:-1.173333pt;}
.ws90{word-spacing:-1.120000pt;}
.wsbf{word-spacing:-1.024000pt;}
.ws14{word-spacing:-0.960000pt;}
.ws86{word-spacing:-0.906667pt;}
.ws24{word-spacing:-0.853333pt;}
.wsad{word-spacing:-0.800000pt;}
.wsa1{word-spacing:-0.768000pt;}
.ws40{word-spacing:-0.746667pt;}
.ws45{word-spacing:-0.640000pt;}
.ws57{word-spacing:-0.586667pt;}
.wsb6{word-spacing:-0.554667pt;}
.ws51{word-spacing:-0.533333pt;}
.wsbc{word-spacing:-0.512000pt;}
.ws82{word-spacing:-0.480000pt;}
.ws30{word-spacing:-0.426667pt;}
.ws88{word-spacing:-0.373333pt;}
.ws36{word-spacing:-0.341333pt;}
.wsa{word-spacing:-0.298667pt;}
.wsd2{word-spacing:-0.256000pt;}
.ws9b{word-spacing:-0.213333pt;}
.ws4f{word-spacing:-0.160000pt;}
.wsd1{word-spacing:-0.128000pt;}
.ws22{word-spacing:-0.106667pt;}
.wsac{word-spacing:-0.053333pt;}
.ws3{word-spacing:0.000000pt;}
.ws44{word-spacing:0.106667pt;}
.ws47{word-spacing:0.160000pt;}
.wscf{word-spacing:0.170667pt;}
.ws77{word-spacing:0.186667pt;}
.ws28{word-spacing:0.213333pt;}
.ws2e{word-spacing:0.373333pt;}
.wsc0{word-spacing:0.384000pt;}
.ws4{word-spacing:0.448000pt;}
.wsb3{word-spacing:0.480000pt;}
.ws8b{word-spacing:0.533333pt;}
.ws5b{word-spacing:0.554667pt;}
.wscc{word-spacing:0.597333pt;}
.ws4a{word-spacing:0.693333pt;}
.wsc8{word-spacing:0.725333pt;}
.ws9a{word-spacing:0.746667pt;}
.ws49{word-spacing:0.800000pt;}
.wsd{word-spacing:0.853333pt;}
.ws83{word-spacing:0.906667pt;}
.wsce{word-spacing:0.938667pt;}
.wsb1{word-spacing:1.013333pt;}
.wscb{word-spacing:1.152000pt;}
.ws16{word-spacing:1.173333pt;}
.ws21{word-spacing:1.226667pt;}
.ws87{word-spacing:1.333333pt;}
.ws7a{word-spacing:1.365333pt;}
.wsc6{word-spacing:1.450667pt;}
.ws5a{word-spacing:1.493333pt;}
.ws2a{word-spacing:1.546667pt;}
.wsb4{word-spacing:1.600000pt;}
.ws6c{word-spacing:1.653333pt;}
.ws84{word-spacing:1.706667pt;}
.ws2c{word-spacing:1.813333pt;}
.ws48{word-spacing:1.866667pt;}
.wsd3{word-spacing:1.877333pt;}
.wsc{word-spacing:1.920000pt;}
.ws50{word-spacing:1.973333pt;}
.wsb8{word-spacing:2.048000pt;}
.wsa2{word-spacing:2.080000pt;}
.ws92{word-spacing:2.090667pt;}
.ws75{word-spacing:2.133333pt;}
.ws6e{word-spacing:2.186667pt;}
.ws6d{word-spacing:2.293333pt;}
.ws59{word-spacing:2.389333pt;}
.ws15{word-spacing:2.400000pt;}
.wscd{word-spacing:2.432000pt;}
.wsf{word-spacing:2.506667pt;}
.wsd4{word-spacing:2.645333pt;}
.wsbd{word-spacing:2.688000pt;}
.ws85{word-spacing:2.720000pt;}
.ws5{word-spacing:2.773333pt;}
.wsd0{word-spacing:2.816000pt;}
.wsae{word-spacing:2.880000pt;}
.ws2f{word-spacing:2.933333pt;}
.ws37{word-spacing:3.029333pt;}
.ws8a{word-spacing:3.093333pt;}
.ws6{word-spacing:3.114667pt;}
.ws8f{word-spacing:3.146667pt;}
.ws91{word-spacing:3.157333pt;}
.wsc9{word-spacing:3.242667pt;}
.ws81{word-spacing:3.253333pt;}
.ws71{word-spacing:3.360000pt;}
.wsba{word-spacing:3.370667pt;}
.ws74{word-spacing:3.466667pt;}
.ws9d{word-spacing:3.520000pt;}
.ws53{word-spacing:3.573333pt;}
.ws79{word-spacing:3.584000pt;}
.ws8{word-spacing:3.626667pt;}
.ws2d{word-spacing:3.680000pt;}
.ws25{word-spacing:3.733333pt;}
.wsb{word-spacing:3.797333pt;}
.ws26{word-spacing:3.840000pt;}
.ws7{word-spacing:3.882667pt;}
.ws76{word-spacing:3.893333pt;}
.ws9{word-spacing:3.925333pt;}
.ws12{word-spacing:3.946667pt;}
.ws42{word-spacing:4.000000pt;}
.ws2b{word-spacing:4.053333pt;}
.ws13{word-spacing:4.160000pt;}
.ws43{word-spacing:4.213333pt;}
.ws35{word-spacing:4.266667pt;}
.ws6f{word-spacing:4.320000pt;}
.ws27{word-spacing:4.426667pt;}
.wsb5{word-spacing:4.480000pt;}
.ws80{word-spacing:4.586667pt;}
.ws11{word-spacing:4.640000pt;}
.ws10{word-spacing:4.853333pt;}
.wse{word-spacing:4.906667pt;}
.wsa0{word-spacing:4.960000pt;}
.wsb7{word-spacing:5.589333pt;}
.ws69{word-spacing:18.069333pt;}
.ws63{word-spacing:19.450667pt;}
.ws68{word-spacing:23.072000pt;}
.ws6a{word-spacing:26.506667pt;}
.ws66{word-spacing:28.448000pt;}
.ws64{word-spacing:29.269333pt;}
.ws65{word-spacing:55.290667pt;}
.ws67{word-spacing:96.917333pt;}
.ws99{word-spacing:106.000000pt;}
.ws5f{word-spacing:107.781333pt;}
.ws5e{word-spacing:113.493333pt;}
.ws62{word-spacing:122.677333pt;}
.ws60{word-spacing:141.157333pt;}
.ws97{word-spacing:248.405333pt;}
.ws6b{word-spacing:268.277333pt;}
.ws58{word-spacing:753.706667pt;}
.ws78{word-spacing:832.981333pt;}
._e{margin-left:-2576.112000pt;}
._f{margin-left:-2554.941333pt;}
._25{margin-left:-7.600000pt;}
._3{margin-left:-6.492267pt;}
._0{margin-left:-5.600000pt;}
._4{margin-left:-4.341333pt;}
._1{margin-left:-3.226667pt;}
._2{margin-left:-2.170667pt;}
._6{margin-left:-1.013333pt;}
._5{width:0.896000pt;}
._8{width:2.314667pt;}
._a{width:4.016000pt;}
._b{width:4.906667pt;}
._7{width:5.866667pt;}
._c{width:7.505600pt;}
._d{width:8.601067pt;}
._9{width:10.432000pt;}
._17{width:17.045333pt;}
._10{width:19.189333pt;}
._41{width:22.760000pt;}
._19{width:25.536000pt;}
._40{width:27.320000pt;}
._38{width:28.520000pt;}
._3f{width:30.440000pt;}
._39{width:32.440000pt;}
._37{width:36.440000pt;}
._33{width:43.600000pt;}
._24{width:45.893333pt;}
._1b{width:47.264000pt;}
._1f{width:56.469333pt;}
._3c{width:59.098667pt;}
._1d{width:65.669333pt;}
._1e{width:73.248000pt;}
._1c{width:80.304000pt;}
._18{width:81.557333pt;}
._15{width:93.072000pt;}
._14{width:96.768000pt;}
._23{width:114.842667pt;}
._34{width:119.600000pt;}
._13{width:128.501333pt;}
._3b{width:136.240000pt;}
._1a{width:137.237333pt;}
._3e{width:139.640000pt;}
._28{width:141.568000pt;}
._20{width:143.472000pt;}
._12{width:145.674667pt;}
._35{width:146.720000pt;}
._16{width:150.602667pt;}
._36{width:177.400000pt;}
._3d{width:214.120000pt;}
._3a{width:219.717333pt;}
._22{width:228.106667pt;}
._2e{width:260.266667pt;}
._27{width:265.045333pt;}
._26{width:266.026667pt;}
._32{width:269.578667pt;}
._29{width:274.602667pt;}
._2b{width:276.309333pt;}
._21{width:305.648000pt;}
._2a{width:310.485333pt;}
._30{width:311.893333pt;}
._2d{width:355.541333pt;}
._2f{width:360.320000pt;}
._31{width:367.445333pt;}
._11{width:394.128000pt;}
._2c{width:467.626667pt;}
.fs3{font-size:25.600000pt;}
.fs2{font-size:35.200000pt;}
.fs8{font-size:37.333333pt;}
.fs9{font-size:40.000000pt;}
.fs4{font-size:42.666667pt;}
.fs6{font-size:45.333333pt;}
.fs7{font-size:48.000000pt;}
.fs5{font-size:53.333333pt;}
.fs1{font-size:58.666667pt;}
.fs0{font-size:74.666667pt;}
.y0{bottom:0.000000pt;}
.y11c{bottom:64.630533pt;}
.y184{bottom:73.597067pt;}
.ya0{bottom:73.971600pt;}
.yfe{bottom:74.087333pt;}
.y9b{bottom:74.101200pt;}
.y33{bottom:74.216800pt;}
.y11f{bottom:74.359867pt;}
.y65{bottom:80.504533pt;}
.ybd{bottom:80.630400pt;}
.y11b{bottom:80.630533pt;}
.y14d{bottom:81.968933pt;}
.yfd{bottom:85.287333pt;}
.y183{bottom:86.930400pt;}
.y9f{bottom:87.966267pt;}
.y11e{bottom:88.354533pt;}
.yce{bottom:90.101200pt;}
.y9a{bottom:90.104533pt;}
.y14c{bottom:95.748933pt;}
.y64{bottom:96.504533pt;}
.ybc{bottom:96.630400pt;}
.y11a{bottom:96.630533pt;}
.yfc{bottom:98.400667pt;}
.y182{bottom:100.263733pt;}
.y9e{bottom:101.960933pt;}
.y11d{bottom:102.351867pt;}
.ycd{bottom:106.101200pt;}
.y99{bottom:106.104533pt;}
.y14b{bottom:109.528933pt;}
.yfb{bottom:111.514000pt;}
.y63{bottom:112.504533pt;}
.ybb{bottom:112.630400pt;}
.y119{bottom:112.630533pt;}
.y181{bottom:113.597067pt;}
.y9d{bottom:115.958133pt;}
.ycc{bottom:122.101200pt;}
.y98{bottom:122.104533pt;}
.yfa{bottom:122.714000pt;}
.y14a{bottom:123.308933pt;}
.y180{bottom:126.930400pt;}
.y62{bottom:128.504533pt;}
.yba{bottom:128.630400pt;}
.y118{bottom:128.630533pt;}
.yf{bottom:130.193467pt;}
.y120{bottom:131.074533pt;}
.yf9{bottom:133.914000pt;}
.y149{bottom:137.088933pt;}
.ycb{bottom:138.101200pt;}
.y97{bottom:138.104533pt;}
.y17f{bottom:140.263733pt;}
.ya1{bottom:144.403600pt;}
.y61{bottom:144.504533pt;}
.y117{bottom:144.630533pt;}
.yf8{bottom:145.114000pt;}
.ycf{bottom:148.094267pt;}
.y148{bottom:150.868933pt;}
.y17e{bottom:153.597067pt;}
.yca{bottom:154.101200pt;}
.y96{bottom:154.104533pt;}
.yf7{bottom:156.314000pt;}
.y121{bottom:156.397200pt;}
.yb9{bottom:159.632667pt;}
.y60{bottom:160.504533pt;}
.y116{bottom:160.630533pt;}
.yd0{bottom:162.078267pt;}
.y147{bottom:164.648933pt;}
.y17d{bottom:166.930400pt;}
.y122{bottom:168.493200pt;}
.yff{bottom:168.883600pt;}
.yf6{bottom:169.427333pt;}
.yc9{bottom:170.101200pt;}
.y95{bottom:170.104533pt;}
.yb8{bottom:173.504667pt;}
.y30{bottom:175.968800pt;}
.y25{bottom:176.088800pt;}
.y5f{bottom:176.504533pt;}
.y115{bottom:176.630533pt;}
.y17c{bottom:180.263733pt;}
.yf5{bottom:180.627333pt;}
.yc8{bottom:186.101200pt;}
.y94{bottom:186.104533pt;}
.yb7{bottom:186.234533pt;}
.y144{bottom:189.768933pt;}
.y140{bottom:189.778933pt;}
.y2f{bottom:191.968800pt;}
.y24{bottom:192.088800pt;}
.y5e{bottom:192.504533pt;}
.y114{bottom:192.630533pt;}
.y17b{bottom:193.597067pt;}
.yf4{bottom:193.740667pt;}
.yc7{bottom:202.101200pt;}
.y93{bottom:202.104533pt;}
.yd1{bottom:202.142267pt;}
.yb6{bottom:202.234533pt;}
.y143{bottom:204.438933pt;}
.y13f{bottom:204.448933pt;}
.yf3{bottom:204.940667pt;}
.y17a{bottom:206.930400pt;}
.y2e{bottom:207.968800pt;}
.y23{bottom:208.088800pt;}
.y5d{bottom:208.504533pt;}
.y113{bottom:208.630533pt;}
.ya4{bottom:210.067600pt;}
.yc6{bottom:218.101200pt;}
.y92{bottom:218.104533pt;}
.y146{bottom:219.098933pt;}
.y142{bottom:219.108933pt;}
.y13e{bottom:219.118933pt;}
.y179{bottom:220.263733pt;}
.ya2{bottom:221.886267pt;}
.y2d{bottom:223.968800pt;}
.y22{bottom:224.088800pt;}
.y5c{bottom:224.504533pt;}
.y112{bottom:224.630533pt;}
.yf2{bottom:229.394000pt;}
.y178{bottom:233.597067pt;}
.y145{bottom:233.768933pt;}
.y141{bottom:233.778933pt;}
.y13d{bottom:233.788933pt;}
.yb5{bottom:234.101200pt;}
.y91{bottom:234.104533pt;}
.y2c{bottom:239.968800pt;}
.y21{bottom:240.088800pt;}
.y5b{bottom:240.504533pt;}
.y111{bottom:240.630533pt;}
.y177{bottom:246.930400pt;}
.yb4{bottom:250.101200pt;}
.y90{bottom:250.104533pt;}
.yf1{bottom:253.847333pt;}
.y2b{bottom:255.968800pt;}
.y20{bottom:256.088800pt;}
.y5a{bottom:256.504533pt;}
.y110{bottom:256.630533pt;}
.y13c{bottom:258.908933pt;}
.yee{bottom:259.447333pt;}
.y176{bottom:260.263733pt;}
.yed{bottom:265.047333pt;}
.yb3{bottom:266.101200pt;}
.y8f{bottom:266.104533pt;}
.yef{bottom:270.647333pt;}
.y2a{bottom:271.968800pt;}
.y1f{bottom:272.088800pt;}
.y59{bottom:272.504533pt;}
.y10f{bottom:272.630533pt;}
.y175{bottom:273.597067pt;}
.yf0{bottom:276.247333pt;}
.yb2{bottom:282.101200pt;}
.y8e{bottom:282.104533pt;}
.y174{bottom:286.930400pt;}
.y13b{bottom:287.059867pt;}
.y29{bottom:287.968800pt;}
.y1e{bottom:288.088800pt;}
.y58{bottom:288.504533pt;}
.y10e{bottom:288.630533pt;}
.y1b4{bottom:297.725600pt;}
.yb1{bottom:298.101200pt;}
.y8d{bottom:298.104533pt;}
.y173{bottom:300.263733pt;}
.yec{bottom:303.830400pt;}
.y28{bottom:303.968800pt;}
.y1d{bottom:304.088800pt;}
.y13a{bottom:304.393200pt;}
.y57{bottom:304.504533pt;}
.y10d{bottom:304.630533pt;}
.y1b3{bottom:311.058933pt;}
.y172{bottom:313.597067pt;}
.yb0{bottom:314.101200pt;}
.y8c{bottom:314.104533pt;}
.y1c{bottom:320.088800pt;}
.y56{bottom:320.504533pt;}
.y10c{bottom:320.630533pt;}
.yeb{bottom:321.163733pt;}
.y139{bottom:321.726533pt;}
.y1b2{bottom:324.392267pt;}
.y171{bottom:326.930400pt;}
.yaf{bottom:330.101200pt;}
.y8b{bottom:330.104533pt;}
.y27{bottom:335.968800pt;}
.y1b{bottom:336.088800pt;}
.y55{bottom:336.504533pt;}
.y10b{bottom:336.630533pt;}
.y1b1{bottom:337.725600pt;}
.y170{bottom:340.263733pt;}
.yae{bottom:346.101200pt;}
.y8a{bottom:346.104533pt;}
.y100{bottom:347.272933pt;}
.y1b0{bottom:351.058933pt;}
.y1a{bottom:352.088800pt;}
.y54{bottom:352.504533pt;}
.y10a{bottom:352.630400pt;}
.y16f{bottom:353.597067pt;}
.yad{bottom:362.101200pt;}
.y89{bottom:362.104533pt;}
.y1af{bottom:364.392267pt;}
.y16e{bottom:366.930400pt;}
.y19{bottom:368.088800pt;}
.y53{bottom:368.504533pt;}
.yea{bottom:368.630400pt;}
.y138{bottom:369.757467pt;}
.y1ae{bottom:377.725600pt;}
.yac{bottom:378.101200pt;}
.y88{bottom:378.104533pt;}
.y16d{bottom:380.263733pt;}
.y18{bottom:384.088800pt;}
.y137{bottom:384.200133pt;}
.y52{bottom:384.504533pt;}
.ye9{bottom:384.630400pt;}
.y1ad{bottom:391.058933pt;}
.y16c{bottom:393.597067pt;}
.yab{bottom:394.101200pt;}
.y87{bottom:394.104533pt;}
.y136{bottom:398.642800pt;}
.y17{bottom:400.088800pt;}
.ye8{bottom:400.630400pt;}
.y1ac{bottom:404.392267pt;}
.y16b{bottom:406.930400pt;}
.yaa{bottom:410.101200pt;}
.y86{bottom:410.104533pt;}
.y135{bottom:413.085467pt;}
.y51{bottom:415.506800pt;}
.y16{bottom:416.088800pt;}
.ye7{bottom:416.630400pt;}
.y1ab{bottom:417.725600pt;}
.y16a{bottom:420.263733pt;}
.ya9{bottom:426.101200pt;}
.y85{bottom:426.104533pt;}
.y50{bottom:429.378800pt;}
.y1aa{bottom:431.058933pt;}
.y15{bottom:432.088800pt;}
.ye6{bottom:432.630400pt;}
.y169{bottom:433.597067pt;}
.y134{bottom:438.866800pt;}
.y4f{bottom:442.101200pt;}
.y84{bottom:442.104533pt;}
.y1a9{bottom:444.392267pt;}
.y133{bottom:446.205467pt;}
.y168{bottom:446.930400pt;}
.y14{bottom:448.088800pt;}
.ye5{bottom:448.630400pt;}
.y1a8{bottom:457.725600pt;}
.y4e{bottom:458.101200pt;}
.y83{bottom:458.104533pt;}
.y167{bottom:460.263733pt;}
.y13{bottom:464.088800pt;}
.ye4{bottom:464.630400pt;}
.y1a7{bottom:471.058933pt;}
.y166{bottom:473.597067pt;}
.y4d{bottom:474.101200pt;}
.y82{bottom:474.104533pt;}
.y12{bottom:480.088800pt;}
.ye3{bottom:480.630400pt;}
.y132{bottom:482.274533pt;}
.y1a6{bottom:484.392267pt;}
.ya3{bottom:485.032933pt;}
.y165{bottom:486.930400pt;}
.y4c{bottom:490.101200pt;}
.y81{bottom:490.104533pt;}
.y11{bottom:496.088800pt;}
.ye2{bottom:496.630400pt;}
.y1a5{bottom:497.725600pt;}
.y164{bottom:500.263733pt;}
.y4b{bottom:506.101200pt;}
.y80{bottom:506.104533pt;}
.y1a4{bottom:511.058933pt;}
.y26{bottom:512.088800pt;}
.ye1{bottom:512.630400pt;}
.y163{bottom:513.597067pt;}
.y123{bottom:517.623867pt;}
.ya8{bottom:522.101200pt;}
.y7f{bottom:522.104533pt;}
.y131{bottom:522.234533pt;}
.y1a3{bottom:524.392267pt;}
.y162{bottom:526.930400pt;}
.y10{bottom:528.088800pt;}
.ye0{bottom:528.630400pt;}
.y1a2{bottom:537.725600pt;}
.y4a{bottom:537.981200pt;}
.ya7{bottom:538.101200pt;}
.y7e{bottom:538.104533pt;}
.y130{bottom:538.234533pt;}
.y161{bottom:540.263733pt;}
.ydf{bottom:544.630400pt;}
.y1a1{bottom:551.058933pt;}
.y160{bottom:553.597067pt;}
.ya6{bottom:554.101200pt;}
.y7d{bottom:554.104533pt;}
.y12f{bottom:554.234533pt;}
.yd2{bottom:555.144933pt;}
.yde{bottom:560.630400pt;}
.y1a0{bottom:564.392267pt;}
.y15f{bottom:566.930400pt;}
.ya5{bottom:570.101200pt;}
.y7c{bottom:570.104533pt;}
.y12e{bottom:570.234533pt;}
.ydd{bottom:576.630400pt;}
.y19f{bottom:577.725600pt;}
.y15e{bottom:580.263733pt;}
.y49{bottom:586.101200pt;}
.y7b{bottom:586.104533pt;}
.y12d{bottom:586.234533pt;}
.ye{bottom:589.827467pt;}
.y19e{bottom:591.058933pt;}
.ydc{bottom:592.630400pt;}
.y15d{bottom:593.597067pt;}
.y48{bottom:602.101200pt;}
.y7a{bottom:602.104533pt;}
.y12c{bottom:602.234533pt;}
.y19d{bottom:604.392267pt;}
.y15c{bottom:606.930400pt;}
.ydb{bottom:608.630400pt;}
.y19c{bottom:617.725600pt;}
.y47{bottom:618.101200pt;}
.y79{bottom:618.104533pt;}
.y12b{bottom:618.234533pt;}
.yd{bottom:619.032800pt;}
.y15b{bottom:620.263733pt;}
.yda{bottom:624.630400pt;}
.y19b{bottom:631.058933pt;}
.yc{bottom:632.366133pt;}
.y15a{bottom:633.597067pt;}
.y46{bottom:634.101200pt;}
.y78{bottom:634.104533pt;}
.y12a{bottom:634.234533pt;}
.yd9{bottom:640.630400pt;}
.y101{bottom:641.128933pt;}
.y19a{bottom:644.392267pt;}
.yb{bottom:645.699467pt;}
.y159{bottom:646.930400pt;}
.y45{bottom:650.101200pt;}
.y77{bottom:650.104533pt;}
.y129{bottom:650.234533pt;}
.yd8{bottom:656.630400pt;}
.y199{bottom:657.725600pt;}
.ya{bottom:659.032800pt;}
.y158{bottom:660.263733pt;}
.y44{bottom:666.101200pt;}
.y76{bottom:666.104533pt;}
.y128{bottom:666.234533pt;}
.y198{bottom:671.058933pt;}
.y9{bottom:672.366133pt;}
.yd7{bottom:672.630400pt;}
.y157{bottom:673.597067pt;}
.y43{bottom:682.101200pt;}
.y75{bottom:682.104533pt;}
.y127{bottom:682.234533pt;}
.y197{bottom:684.392267pt;}
.y8{bottom:685.699467pt;}
.y156{bottom:686.930400pt;}
.y109{bottom:688.630400pt;}
.y196{bottom:697.725600pt;}
.y42{bottom:698.101200pt;}
.y74{bottom:698.104533pt;}
.y126{bottom:698.234533pt;}
.y7{bottom:699.032800pt;}
.y155{bottom:700.263733pt;}
.yd6{bottom:703.632667pt;}
.y108{bottom:704.630400pt;}
.y195{bottom:711.058933pt;}
.y154{bottom:713.597067pt;}
.y41{bottom:714.101200pt;}
.y73{bottom:714.104533pt;}
.y125{bottom:714.234533pt;}
.yd5{bottom:717.504667pt;}
.y107{bottom:720.630400pt;}
.y194{bottom:724.392267pt;}
.y153{bottom:726.930400pt;}
.y40{bottom:730.101200pt;}
.y72{bottom:730.104533pt;}
.yd4{bottom:730.234533pt;}
.y106{bottom:736.630400pt;}
.y193{bottom:737.725600pt;}
.y152{bottom:740.263733pt;}
.y6{bottom:742.168533pt;}
.y3f{bottom:746.101200pt;}
.y71{bottom:746.104533pt;}
.yd3{bottom:746.234533pt;}
.y192{bottom:751.058933pt;}
.y151{bottom:753.597067pt;}
.y3e{bottom:762.101200pt;}
.y70{bottom:762.104533pt;}
.y124{bottom:762.234533pt;}
.y191{bottom:764.392267pt;}
.y150{bottom:766.930400pt;}
.y105{bottom:767.632667pt;}
.y5{bottom:776.687867pt;}
.y190{bottom:777.725600pt;}
.y3d{bottom:778.101200pt;}
.y6f{bottom:778.104533pt;}
.y14f{bottom:780.263733pt;}
.y104{bottom:781.504667pt;}
.y18f{bottom:791.058933pt;}
.y4{bottom:791.354533pt;}
.y3c{bottom:794.101200pt;}
.y6e{bottom:794.104533pt;}
.y103{bottom:794.234533pt;}
.y18e{bottom:804.392267pt;}
.y3{bottom:804.925600pt;}
.y14e{bottom:809.981200pt;}
.y3b{bottom:810.101200pt;}
.y6d{bottom:810.104533pt;}
.yc5{bottom:810.110400pt;}
.y102{bottom:810.234533pt;}
.y18d{bottom:817.725600pt;}
.y3a{bottom:826.101200pt;}
.y6c{bottom:826.104533pt;}
.yc4{bottom:826.110400pt;}
.y2{bottom:829.281600pt;}
.y18c{bottom:831.058933pt;}
.y39{bottom:842.101200pt;}
.y6b{bottom:842.104533pt;}
.yc3{bottom:842.110400pt;}
.y18b{bottom:844.392267pt;}
.y1{bottom:853.277067pt;}
.y18a{bottom:857.725600pt;}
.y38{bottom:858.101200pt;}
.y6a{bottom:858.104533pt;}
.yc2{bottom:858.110400pt;}
.y189{bottom:871.058933pt;}
.y37{bottom:874.101200pt;}
.y69{bottom:874.104533pt;}
.yc1{bottom:874.110400pt;}
.y188{bottom:884.392267pt;}
.y36{bottom:890.101200pt;}
.y68{bottom:890.104533pt;}
.yc0{bottom:890.110400pt;}
.y187{bottom:897.725600pt;}
.y35{bottom:906.101200pt;}
.y67{bottom:906.104533pt;}
.ybf{bottom:906.110400pt;}
.y186{bottom:911.058933pt;}
.y34{bottom:922.101200pt;}
.y66{bottom:922.104533pt;}
.ybe{bottom:922.110400pt;}
.y185{bottom:924.392267pt;}
.y32{bottom:951.795067pt;}
.y9c{bottom:965.392400pt;}
.y31{bottom:965.395067pt;}
.h4{height:18.637500pt;}
.h10{height:27.216146pt;}
.h17{height:29.121094pt;}
.h16{height:29.140625pt;}
.h18{height:29.160156pt;}
.h5{height:31.062500pt;}
.h7{height:31.074833pt;}
.h11{height:31.083333pt;}
.h14{height:31.093500pt;}
.he{height:31.094033pt;}
.h6{height:31.104167pt;}
.hb{height:33.048177pt;}
.hc{height:34.968750pt;}
.hd{height:34.992188pt;}
.h8{height:38.828125pt;}
.ha{height:38.854167pt;}
.h9{height:38.880208pt;}
.h13{height:38.880742pt;}
.h3{height:45.799071pt;}
.hf{height:49.616146pt;}
.h2{height:54.359375pt;}
.h12{height:58.325500pt;}
.h15{height:60.416167pt;}
.h1{height:1058.000000pt;}
.h0{height:1058.268000pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xb{left:68.027733pt;}
.x2e{left:69.916533pt;}
.x11{left:74.179867pt;}
.x1c{left:75.176000pt;}
.x8{left:85.417333pt;}
.x1{left:86.929200pt;}
.x42{left:94.488133pt;}
.xa{left:98.267733pt;}
.xe{left:107.467733pt;}
.x1e{left:113.872000pt;}
.x4{left:117.170133pt;}
.x36{left:128.501733pt;}
.x32{left:134.926667pt;}
.xf{left:138.241067pt;}
.x2{left:143.619200pt;}
.x1b{left:144.938133pt;}
.x16{left:149.759733pt;}
.x12{left:174.247867pt;}
.x1d{left:175.232000pt;}
.xd{left:185.414400pt;}
.xc{left:187.641067pt;}
.x3{left:189.223467pt;}
.x10{left:197.147733pt;}
.x26{left:202.664533pt;}
.x28{left:236.777867pt;}
.x27{left:244.561867pt;}
.x3a{left:281.572667pt;}
.x2b{left:283.052533pt;}
.x2a{left:288.493867pt;}
.x29{left:293.944533pt;}
.x21{left:308.048000pt;}
.x31{left:334.488533pt;}
.x18{left:342.986400pt;}
.x17{left:347.711733pt;}
.x39{left:355.275067pt;}
.x2d{left:357.905867pt;}
.x37{left:361.323067pt;}
.x1f{left:365.210667pt;}
.x9{left:404.481333pt;}
.x13{left:406.294400pt;}
.x2c{left:409.080533pt;}
.x34{left:410.124267pt;}
.x24{left:411.460267pt;}
.x3e{left:425.195733pt;}
.x5{left:427.090133pt;}
.x43{left:432.664133pt;}
.x14{left:436.534400pt;}
.x3b{left:440.312667pt;}
.x2f{left:447.860533pt;}
.x40{left:451.650133pt;}
.x6{left:457.330133pt;}
.x22{left:483.964800pt;}
.x33{left:486.124800pt;}
.x7{left:488.650133pt;}
.x35{left:511.848267pt;}
.x25{left:513.172267pt;}
.x3c{left:515.902667pt;}
.x3f{left:529.862400pt;}
.x23{left:535.444800pt;}
.x20{left:536.709333pt;}
.x38{left:556.341733pt;}
.x30{left:557.471200pt;}
.x19{left:590.069067pt;}
.x3d{left:637.449067pt;}
.x15{left:643.752133pt;}
.x41{left:657.187867pt;}
.x1a{left:662.649733pt;}
}




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