
    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_be3f068f7679554a43b331cd.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_69bfaacdcde05ec81303b6c8.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_236597b96030b6020cdd9e4b.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.740723;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_dc18156173a227af01d35e23.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_5e12685416612c61a41d1cc9.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.715820;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_1637bd8030921189ccefdfcb.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_c4f50ab3180d582e32bc073b.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.882324;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_de5b320805759b648467f166.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.882324;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_df1869803e0657fcc3a2633c.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.925293;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;}
.v4{vertical-align:-3.404400px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:1.620000px;}
.v6{vertical-align:16.500600px;}
.v1{vertical-align:22.655400px;}
.v7{vertical-align:30.300600px;}
.v5{vertical-align:32.976000px;}
.ls6b{letter-spacing:-3.552000px;}
.ls56{letter-spacing:-3.240000px;}
.lsb7{letter-spacing:-2.640000px;}
.ls6c{letter-spacing:-2.131200px;}
.ls49{letter-spacing:-1.920000px;}
.ls46{letter-spacing:-0.780000px;}
.ls1e{letter-spacing:-0.720000px;}
.ls57{letter-spacing:-0.300000px;}
.ls20{letter-spacing:-0.240000px;}
.ls58{letter-spacing:-0.180000px;}
.ls59{letter-spacing:-0.120000px;}
.lsb6{letter-spacing:-0.096000px;}
.ls48{letter-spacing:-0.060000px;}
.ls1f{letter-spacing:-0.048000px;}
.ls1d{letter-spacing:0.000000px;}
.ls6a{letter-spacing:0.004200px;}
.ls1{letter-spacing:0.004800px;}
.ls0{letter-spacing:0.006000px;}
.ls5d{letter-spacing:0.008400px;}
.ls69{letter-spacing:0.021000px;}
.lsb2{letter-spacing:0.048000px;}
.ls8{letter-spacing:0.055800px;}
.ls2a{letter-spacing:0.060000px;}
.ls68{letter-spacing:0.093600px;}
.lsaf{letter-spacing:0.096000px;}
.ls3f{letter-spacing:0.120000px;}
.ls3{letter-spacing:0.144000px;}
.ls52{letter-spacing:0.180000px;}
.ls7{letter-spacing:0.192000px;}
.lsf{letter-spacing:0.240000px;}
.lsa5{letter-spacing:0.288000px;}
.ls4b{letter-spacing:0.300000px;}
.ls95{letter-spacing:0.336000px;}
.ls1c{letter-spacing:0.360000px;}
.lsaa{letter-spacing:0.384000px;}
.ls17{letter-spacing:0.420000px;}
.ls45{letter-spacing:0.480000px;}
.ls9e{letter-spacing:0.528000px;}
.ls32{letter-spacing:0.540000px;}
.ls92{letter-spacing:0.576000px;}
.ls4c{letter-spacing:0.600000px;}
.lsad{letter-spacing:0.624000px;}
.ls14{letter-spacing:0.660000px;}
.ls98{letter-spacing:0.672000px;}
.ls28{letter-spacing:0.720000px;}
.ls9d{letter-spacing:0.768000px;}
.ls31{letter-spacing:0.780000px;}
.ls5{letter-spacing:0.816000px;}
.ls10{letter-spacing:0.840000px;}
.lsab{letter-spacing:0.864000px;}
.ls21{letter-spacing:0.900000px;}
.ls2{letter-spacing:0.960000px;}
.ls41{letter-spacing:1.020000px;}
.ls9f{letter-spacing:1.056000px;}
.ls47{letter-spacing:1.080000px;}
.lsa3{letter-spacing:1.104000px;}
.ls25{letter-spacing:1.140000px;}
.lsa6{letter-spacing:1.152000px;}
.lsb{letter-spacing:1.200000px;}
.ls9b{letter-spacing:1.248000px;}
.ls16{letter-spacing:1.260000px;}
.ls9c{letter-spacing:1.296000px;}
.ls12{letter-spacing:1.320000px;}
.ls93{letter-spacing:1.344000px;}
.lsa{letter-spacing:1.380000px;}
.ls4{letter-spacing:1.392000px;}
.ls40{letter-spacing:1.440000px;}
.lsa7{letter-spacing:1.488000px;}
.ls43{letter-spacing:1.493400px;}
.ls29{letter-spacing:1.500000px;}
.ls24{letter-spacing:1.560000px;}
.lsa0{letter-spacing:1.584000px;}
.ls2c{letter-spacing:1.620000px;}
.ls11{letter-spacing:1.680000px;}
.ls4a{letter-spacing:1.726200px;}
.ls3e{letter-spacing:1.740000px;}
.ls54{letter-spacing:1.800000px;}
.ls9a{letter-spacing:1.824000px;}
.ls55{letter-spacing:1.860000px;}
.lsa2{letter-spacing:1.872000px;}
.ls6{letter-spacing:1.920000px;}
.ls38{letter-spacing:1.980000px;}
.ls3a{letter-spacing:2.040000px;}
.ls1a{letter-spacing:2.100000px;}
.ls2d{letter-spacing:2.160000px;}
.ls71{letter-spacing:2.220000px;}
.ls13{letter-spacing:2.280000px;}
.lsa1{letter-spacing:2.304000px;}
.ls5a{letter-spacing:2.340000px;}
.lsc{letter-spacing:2.400000px;}
.lsb1{letter-spacing:2.448000px;}
.ls42{letter-spacing:2.460000px;}
.ls4e{letter-spacing:2.520000px;}
.ls36{letter-spacing:2.580000px;}
.lsb3{letter-spacing:2.592000px;}
.ls37{letter-spacing:2.640000px;}
.ls6d{letter-spacing:2.700000px;}
.lsa9{letter-spacing:2.736000px;}
.ls1b{letter-spacing:2.760000px;}
.ls96{letter-spacing:2.784000px;}
.ls26{letter-spacing:2.820000px;}
.ls18{letter-spacing:2.880000px;}
.ls94{letter-spacing:2.928000px;}
.ls4f{letter-spacing:2.940000px;}
.ls2f{letter-spacing:3.000000px;}
.ls6e{letter-spacing:3.060000px;}
.ls27{letter-spacing:3.120000px;}
.ls22{letter-spacing:3.180000px;}
.lsba{letter-spacing:3.240000px;}
.ls15{letter-spacing:3.300000px;}
.ls19{letter-spacing:3.360000px;}
.lsa8{letter-spacing:3.408000px;}
.ls8e{letter-spacing:3.480000px;}
.lsb8{letter-spacing:3.504000px;}
.ls44{letter-spacing:3.540000px;}
.ls51{letter-spacing:3.600000px;}
.lsae{letter-spacing:3.648000px;}
.ls3b{letter-spacing:3.660000px;}
.ls9{letter-spacing:3.720000px;}
.lsb5{letter-spacing:3.792000px;}
.ls6f{letter-spacing:3.840000px;}
.ls99{letter-spacing:3.888000px;}
.ls8d{letter-spacing:3.960000px;}
.ls34{letter-spacing:4.020000px;}
.lsa4{letter-spacing:4.080000px;}
.ls91{letter-spacing:4.140000px;}
.ls35{letter-spacing:4.200000px;}
.ls90{letter-spacing:4.260000px;}
.ls97{letter-spacing:4.368000px;}
.ls53{letter-spacing:4.380000px;}
.ls2e{letter-spacing:4.440000px;}
.lsb4{letter-spacing:4.560000px;}
.lse{letter-spacing:4.620000px;}
.lsd{letter-spacing:4.740000px;}
.ls3c{letter-spacing:4.980000px;}
.lsb0{letter-spacing:4.992000px;}
.ls3d{letter-spacing:5.040000px;}
.lsb9{letter-spacing:5.100000px;}
.ls30{letter-spacing:5.460000px;}
.ls4d{letter-spacing:5.940000px;}
.ls50{letter-spacing:6.000000px;}
.ls8f{letter-spacing:6.060000px;}
.ls33{letter-spacing:6.180000px;}
.lsac{letter-spacing:6.192000px;}
.ls70{letter-spacing:6.300000px;}
.ls39{letter-spacing:6.360000px;}
.ls2b{letter-spacing:6.780000px;}
.ls23{letter-spacing:8.640000px;}
.ls5b{letter-spacing:36.844800px;}
.ls72{letter-spacing:41.229000px;}
.ls76{letter-spacing:43.900800px;}
.ls77{letter-spacing:43.901400px;}
.ls75{letter-spacing:45.682200px;}
.ls5f{letter-spacing:46.331400px;}
.ls62{letter-spacing:49.003200px;}
.ls63{letter-spacing:52.566000px;}
.ls73{letter-spacing:55.912800px;}
.ls78{letter-spacing:57.248400px;}
.ls74{letter-spacing:57.249000px;}
.ls79{letter-spacing:70.596000px;}
.ls61{letter-spacing:75.698400px;}
.ls5e{letter-spacing:103.143000px;}
.ls7a{letter-spacing:109.728000px;}
.ls5c{letter-spacing:114.604200px;}
.ls7e{letter-spacing:115.968000px;}
.ls7b{letter-spacing:121.296000px;}
.ls65{letter-spacing:126.578400px;}
.ls7c{letter-spacing:127.968000px;}
.ls64{letter-spacing:131.945400px;}
.ls66{letter-spacing:142.586400px;}
.ls67{letter-spacing:143.922000px;}
.ls60{letter-spacing:149.711400px;}
.ls7d{letter-spacing:288.611400px;}
.ls7f{letter-spacing:392.626200px;}
.ls80{letter-spacing:419.321400px;}
.ls82{letter-spacing:421.993200px;}
.ls83{letter-spacing:425.556000px;}
.ls81{letter-spacing:448.688400px;}
.ls84{letter-spacing:480.093000px;}
.ls89{letter-spacing:482.764800px;}
.ls8a{letter-spacing:486.327000px;}
.ls88{letter-spacing:509.460000px;}
.ls86{letter-spacing:520.136400px;}
.ls8c{letter-spacing:522.808200px;}
.ls8b{letter-spacing:538.108800px;}
.ls85{letter-spacing:578.151600px;}
.ls87{letter-spacing:624.432000px;}
.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;}
}
.ws7d{word-spacing:-637.776000px;}
.ws6c{word-spacing:-141.312000px;}
.ws6b{word-spacing:-134.640000px;}
.ws6f{word-spacing:-129.312000px;}
.ws13{word-spacing:-60.000000px;}
.wsb2{word-spacing:-22.740000px;}
.ws10{word-spacing:-19.860000px;}
.ws14{word-spacing:-19.140000px;}
.ws12{word-spacing:-19.080000px;}
.ws33{word-spacing:-18.720000px;}
.ws31{word-spacing:-18.660000px;}
.ws34{word-spacing:-18.300000px;}
.ws2f{word-spacing:-18.180000px;}
.ws30{word-spacing:-17.940000px;}
.ws8a{word-spacing:-17.712000px;}
.ws89{word-spacing:-17.280000px;}
.ws32{word-spacing:-17.160000px;}
.ws3{word-spacing:-17.040000px;}
.ws61{word-spacing:-16.980000px;}
.ws60{word-spacing:-16.740000px;}
.ws11{word-spacing:-16.680000px;}
.ws2e{word-spacing:-16.560000px;}
.ws2d{word-spacing:-16.500000px;}
.ws2b{word-spacing:-16.380000px;}
.ws99{word-spacing:-15.168000px;}
.ws15{word-spacing:-14.760000px;}
.ws96{word-spacing:-14.592000px;}
.ws16{word-spacing:-14.178000px;}
.ws9a{word-spacing:-13.920000px;}
.ws2a{word-spacing:-13.440000px;}
.ws1{word-spacing:-13.344000px;}
.ws97{word-spacing:-13.296000px;}
.ws2{word-spacing:-13.104000px;}
.ws0{word-spacing:-11.008800px;}
.ws98{word-spacing:-10.704000px;}
.ws2c{word-spacing:-10.008000px;}
.ws4d{word-spacing:-9.792000px;}
.ws55{word-spacing:-8.006400px;}
.ws41{word-spacing:-5.460000px;}
.ws42{word-spacing:-4.620000px;}
.wsa1{word-spacing:-3.792000px;}
.wsac{word-spacing:-3.648000px;}
.ws29{word-spacing:-3.540000px;}
.ws18{word-spacing:-3.180000px;}
.ws57{word-spacing:-3.000000px;}
.ws21{word-spacing:-2.760000px;}
.ws5{word-spacing:-2.664000px;}
.ws5c{word-spacing:-2.640000px;}
.ws1e{word-spacing:-2.580000px;}
.ws45{word-spacing:-2.520000px;}
.ws9b{word-spacing:-2.256000px;}
.ws1b{word-spacing:-2.220000px;}
.ws1a{word-spacing:-2.160000px;}
.wsb6{word-spacing:-1.980000px;}
.ws22{word-spacing:-1.920000px;}
.wsa4{word-spacing:-1.872000px;}
.ws9c{word-spacing:-1.824000px;}
.wsaf{word-spacing:-1.680000px;}
.wsa3{word-spacing:-1.584000px;}
.ws1f{word-spacing:-1.560000px;}
.ws3d{word-spacing:-1.500000px;}
.ws8e{word-spacing:-1.440000px;}
.ws75{word-spacing:-1.380000px;}
.wsa8{word-spacing:-1.344000px;}
.wsaa{word-spacing:-1.296000px;}
.ws27{word-spacing:-1.080000px;}
.wsa2{word-spacing:-1.056000px;}
.ws28{word-spacing:-1.020000px;}
.ws7{word-spacing:-0.960000px;}
.ws26{word-spacing:-0.900000px;}
.ws5d{word-spacing:-0.864000px;}
.ws70{word-spacing:-0.840000px;}
.ws46{word-spacing:-0.780000px;}
.ws9f{word-spacing:-0.768000px;}
.ws39{word-spacing:-0.720000px;}
.ws40{word-spacing:-0.600000px;}
.wsad{word-spacing:-0.576000px;}
.ws3f{word-spacing:-0.540000px;}
.wsa0{word-spacing:-0.528000px;}
.ws1c{word-spacing:-0.480000px;}
.ws38{word-spacing:-0.420000px;}
.wsb0{word-spacing:-0.384000px;}
.ws95{word-spacing:-0.336000px;}
.wsa5{word-spacing:-0.288000px;}
.ws58{word-spacing:-0.240000px;}
.ws72{word-spacing:-0.180000px;}
.ws93{word-spacing:-0.144000px;}
.ws74{word-spacing:-0.120000px;}
.wsb1{word-spacing:-0.096000px;}
.ws71{word-spacing:-0.060000px;}
.wsb4{word-spacing:-0.048000px;}
.ws4{word-spacing:0.000000px;}
.wsa6{word-spacing:0.048000px;}
.ws37{word-spacing:0.060000px;}
.wsa7{word-spacing:0.096000px;}
.ws3c{word-spacing:0.120000px;}
.ws3b{word-spacing:0.180000px;}
.wsb{word-spacing:0.240000px;}
.ws5f{word-spacing:0.480000px;}
.ws3a{word-spacing:0.660000px;}
.ws25{word-spacing:0.780000px;}
.ws76{word-spacing:0.840000px;}
.wse{word-spacing:0.900000px;}
.wsab{word-spacing:0.960000px;}
.ws36{word-spacing:1.140000px;}
.ws20{word-spacing:1.380000px;}
.ws88{word-spacing:1.488000px;}
.ws73{word-spacing:1.560000px;}
.ws86{word-spacing:1.728000px;}
.ws87{word-spacing:1.776000px;}
.ws5e{word-spacing:1.872000px;}
.ws24{word-spacing:1.920000px;}
.ws9d{word-spacing:1.968000px;}
.wsb5{word-spacing:2.040000px;}
.wsae{word-spacing:2.112000px;}
.ws92{word-spacing:2.160000px;}
.ws43{word-spacing:2.220000px;}
.ws83{word-spacing:2.280000px;}
.wsf{word-spacing:2.340000px;}
.ws56{word-spacing:2.580000px;}
.ws90{word-spacing:2.640000px;}
.ws82{word-spacing:2.700000px;}
.ws9e{word-spacing:2.736000px;}
.ws44{word-spacing:2.760000px;}
.ws35{word-spacing:2.880000px;}
.wsa9{word-spacing:2.928000px;}
.ws85{word-spacing:2.940000px;}
.ws8f{word-spacing:3.000000px;}
.ws8b{word-spacing:3.060000px;}
.ws84{word-spacing:3.180000px;}
.ws9{word-spacing:3.456000px;}
.ws1d{word-spacing:3.540000px;}
.ws59{word-spacing:3.600000px;}
.ws47{word-spacing:3.660000px;}
.ws94{word-spacing:3.984000px;}
.wsa{word-spacing:4.080000px;}
.ws91{word-spacing:4.140000px;}
.wsb3{word-spacing:4.272000px;}
.ws6{word-spacing:4.368000px;}
.ws8{word-spacing:4.416000px;}
.ws17{word-spacing:4.560000px;}
.ws23{word-spacing:4.800000px;}
.ws19{word-spacing:4.920000px;}
.ws5a{word-spacing:4.980000px;}
.ws8c{word-spacing:5.160000px;}
.ws5b{word-spacing:5.220000px;}
.wsc{word-spacing:5.460000px;}
.wsd{word-spacing:5.520000px;}
.ws8d{word-spacing:6.180000px;}
.ws3e{word-spacing:7.500000px;}
.ws49{word-spacing:25.248000px;}
.ws62{word-spacing:28.272000px;}
.ws52{word-spacing:53.376000px;}
.ws51{word-spacing:54.096000px;}
.ws48{word-spacing:57.696000px;}
.ws69{word-spacing:90.144000px;}
.ws65{word-spacing:94.608000px;}
.ws63{word-spacing:96.384000px;}
.ws6d{word-spacing:101.664000px;}
.ws6e{word-spacing:103.056000px;}
.ws64{word-spacing:103.488000px;}
.ws68{word-spacing:107.952000px;}
.ws66{word-spacing:108.336000px;}
.ws6a{word-spacing:110.160000px;}
.ws4e{word-spacing:111.903600px;}
.ws4c{word-spacing:111.915600px;}
.ws54{word-spacing:113.227800px;}
.ws67{word-spacing:114.624000px;}
.ws4b{word-spacing:117.704400px;}
.ws50{word-spacing:118.606800px;}
.ws4f{word-spacing:123.017400px;}
.ws53{word-spacing:133.267200px;}
.ws4a{word-spacing:146.579400px;}
.ws77{word-spacing:269.616000px;}
.ws7b{word-spacing:345.408000px;}
.ws79{word-spacing:403.488000px;}
.ws7a{word-spacing:443.520000px;}
.ws78{word-spacing:483.552000px;}
.ws80{word-spacing:521.280000px;}
.ws7f{word-spacing:531.024000px;}
.ws7c{word-spacing:561.312000px;}
.ws7e{word-spacing:571.056000px;}
.ws81{word-spacing:611.088000px;}
._c{margin-left:-2898.126000px;}
._f{margin-left:-2874.309000px;}
._51{margin-left:-624.430800px;}
._41{margin-left:-116.090400px;}
._3b{margin-left:-17.346000px;}
._d{margin-left:-7.566000px;}
._3{margin-left:-6.432000px;}
._1{margin-left:-5.376000px;}
._5{margin-left:-4.368000px;}
._4{margin-left:-3.354000px;}
._0{margin-left:-2.310000px;}
._2{margin-left:-1.114200px;}
._7{width:1.008000px;}
._6{width:2.400000px;}
._b{width:3.534000px;}
._10{width:4.680000px;}
._9{width:5.880000px;}
._a{width:7.080000px;}
._8{width:8.460000px;}
._e{width:10.920000px;}
._11{width:25.008000px;}
._14{width:28.992000px;}
._13{width:35.616000px;}
._1c{width:49.968000px;}
._15{width:56.786400px;}
._1b{width:57.840000px;}
._1a{width:65.664000px;}
._22{width:71.184000px;}
._21{width:79.008000px;}
._16{width:85.392000px;}
._32{width:94.608000px;}
._1f{width:97.104000px;}
._26{width:101.172000px;}
._33{width:107.568000px;}
._38{width:108.912000px;}
._25{width:110.580000px;}
._30{width:114.192000px;}
._37{width:115.440000px;}
._23{width:117.402000px;}
._36{width:120.480000px;}
._34{width:121.680000px;}
._19{width:123.360000px;}
._40{width:125.926200px;}
._3c{width:127.392000px;}
._31{width:128.400000px;}
._27{width:130.260000px;}
._2f{width:135.024000px;}
._1d{width:145.914000px;}
._1e{width:157.764000px;}
._2a{width:163.392000px;}
._24{width:171.792000px;}
._2b{width:187.242000px;}
._2c{width:194.304000px;}
._28{width:196.218000px;}
._29{width:203.897400px;}
._17{width:205.440000px;}
._42{width:210.096000px;}
._4d{width:224.736000px;}
._20{width:225.780000px;}
._18{width:226.835400px;}
._45{width:230.160000px;}
._43{width:263.520000px;}
._44{width:271.488000px;}
._12{width:302.112000px;}
._55{width:352.272000px;}
._3e{width:355.008000px;}
._4f{width:382.992000px;}
._54{width:392.064000px;}
._3a{width:395.136000px;}
._4e{width:403.056000px;}
._2e{width:405.744000px;}
._4a{width:413.875200px;}
._49{width:416.832000px;}
._4b{width:418.218000px;}
._39{width:421.776000px;}
._46{width:435.222600px;}
._48{width:453.882000px;}
._3f{width:456.432000px;}
._2d{width:471.024000px;}
._35{width:477.792000px;}
._47{width:496.826400px;}
._3d{width:512.448000px;}
._53{width:544.432200px;}
._56{width:554.163600px;}
._50{width:584.454600px;}
._52{width:624.547800px;}
._4c{width:838.560000px;}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:28.800000px;}
.fs9{font-size:36.000000px;}
.fs4{font-size:39.600000px;}
.fs0{font-size:42.000000px;}
.fs6{font-size:48.000000px;}
.fs8{font-size:51.000000px;}
.fs7{font-size:60.000000px;}
.fs3{font-size:66.000000px;}
.fs1{font-size:72.000000px;}
.fs2{font-size:84.000000px;}
.y0{bottom:0.000000px;}
.y2b{bottom:50.517000px;}
.y1{bottom:82.406700px;}
.y143{bottom:82.603650px;}
.y116{bottom:82.783950px;}
.yfa{bottom:82.890150px;}
.y157{bottom:83.228850px;}
.y2a{bottom:83.493900px;}
.yce{bottom:83.505600px;}
.y5b{bottom:83.513850px;}
.y8d{bottom:83.647350px;}
.y141{bottom:84.566550px;}
.y167{bottom:94.796700px;}
.y1a7{bottom:94.938300px;}
.y142{bottom:98.350500px;}
.yf9{bottom:99.390150px;}
.y156{bottom:101.228850px;}
.ycd{bottom:101.505600px;}
.y5a{bottom:101.513850px;}
.y8c{bottom:101.647350px;}
.y115{bottom:103.403100px;}
.y140{bottom:105.185550px;}
.y166{bottom:109.796700px;}
.y1a6{bottom:109.938300px;}
.yf8{bottom:115.890600px;}
.y155{bottom:119.228850px;}
.ycc{bottom:119.505600px;}
.y59{bottom:119.513850px;}
.y8b{bottom:119.647350px;}
.y1a{bottom:121.518300px;}
.y114{bottom:124.794300px;}
.y165{bottom:124.796700px;}
.y1a5{bottom:124.938300px;}
.y13f{bottom:126.576750px;}
.y154{bottom:137.228850px;}
.ycb{bottom:137.505600px;}
.ya6{bottom:137.513850px;}
.y8a{bottom:137.678850px;}
.y164{bottom:139.796700px;}
.y1a4{bottom:139.938300px;}
.y113{bottom:141.042300px;}
.yf7{bottom:141.396600px;}
.y13e{bottom:142.828800px;}
.yf6{bottom:149.650650px;}
.y163{bottom:154.796700px;}
.y1a3{bottom:154.938300px;}
.y153{bottom:155.228850px;}
.yca{bottom:155.505600px;}
.y58{bottom:155.513850px;}
.y89{bottom:155.678850px;}
.y112{bottom:157.542300px;}
.y13d{bottom:159.080700px;}
.y162{bottom:169.796700px;}
.y1a2{bottom:169.938300px;}
.y152{bottom:173.228850px;}
.yc9{bottom:173.505600px;}
.ya5{bottom:173.513850px;}
.y88{bottom:173.678850px;}
.y111{bottom:174.042300px;}
.yf5{bottom:174.148650px;}
.y13c{bottom:175.336650px;}
.yf4{bottom:182.402550px;}
.y161{bottom:184.796700px;}
.y1a1{bottom:184.938300px;}
.y26{bottom:187.505400px;}
.y110{bottom:190.542300px;}
.y151{bottom:191.228850px;}
.y57{bottom:191.363850px;}
.yc8{bottom:191.505600px;}
.ya4{bottom:191.513850px;}
.y13b{bottom:191.584650px;}
.y87{bottom:191.678850px;}
.y160{bottom:199.796700px;}
.y1a0{bottom:199.938300px;}
.y25{bottom:205.505400px;}
.yf3{bottom:206.900550px;}
.y10f{bottom:207.042300px;}
.y13a{bottom:207.836700px;}
.y150{bottom:209.228850px;}
.y56{bottom:209.363850px;}
.yc7{bottom:209.505600px;}
.ya3{bottom:209.513850px;}
.y86{bottom:209.678850px;}
.y15f{bottom:214.796700px;}
.y19f{bottom:214.938300px;}
.yf2{bottom:215.154450px;}
.y10e{bottom:223.329900px;}
.y24{bottom:223.505400px;}
.y139{bottom:224.088600px;}
.y14f{bottom:227.228850px;}
.y55{bottom:227.363850px;}
.yc6{bottom:227.505600px;}
.ya2{bottom:227.513850px;}
.y85{bottom:227.678850px;}
.y15e{bottom:229.796700px;}
.y19e{bottom:229.938300px;}
.y10d{bottom:239.577900px;}
.yf1{bottom:239.652450px;}
.y138{bottom:240.340650px;}
.y23{bottom:241.505400px;}
.y15d{bottom:244.796700px;}
.y19d{bottom:244.938300px;}
.y14e{bottom:245.228850px;}
.y54{bottom:245.363850px;}
.yc5{bottom:245.505600px;}
.ya1{bottom:245.513850px;}
.y84{bottom:245.678850px;}
.yf0{bottom:247.906500px;}
.y10c{bottom:255.825900px;}
.y137{bottom:256.592550px;}
.y22{bottom:259.505400px;}
.y15c{bottom:259.796700px;}
.y19c{bottom:259.938300px;}
.y14d{bottom:263.228850px;}
.y53{bottom:263.363850px;}
.yc4{bottom:263.505600px;}
.ya0{bottom:263.513850px;}
.y83{bottom:263.678850px;}
.y10b{bottom:272.073900px;}
.yef{bottom:272.404500px;}
.y136{bottom:272.844450px;}
.y15b{bottom:274.796700px;}
.y19b{bottom:274.938300px;}
.y21{bottom:277.505400px;}
.yee{bottom:280.658400px;}
.y14c{bottom:281.228850px;}
.y52{bottom:281.363850px;}
.yc3{bottom:281.505600px;}
.y9f{bottom:281.513850px;}
.y82{bottom:281.678850px;}
.y10a{bottom:288.321900px;}
.y135{bottom:289.096500px;}
.y15a{bottom:289.796700px;}
.y19a{bottom:289.938300px;}
.y20{bottom:295.505400px;}
.y14b{bottom:299.228850px;}
.y51{bottom:299.363850px;}
.yc2{bottom:299.505600px;}
.y9e{bottom:299.513850px;}
.y81{bottom:299.678850px;}
.y109{bottom:304.569900px;}
.y159{bottom:304.796700px;}
.y199{bottom:304.938300px;}
.yed{bottom:305.156400px;}
.y134{bottom:305.348400px;}
.yec{bottom:313.410450px;}
.y1f{bottom:313.505400px;}
.y14a{bottom:317.228850px;}
.y50{bottom:317.363850px;}
.yc1{bottom:317.505600px;}
.y9d{bottom:317.513850px;}
.y80{bottom:317.678850px;}
.y158{bottom:319.796700px;}
.y198{bottom:319.938300px;}
.y108{bottom:320.817900px;}
.y133{bottom:321.600450px;}
.y1e{bottom:331.505400px;}
.y197{bottom:334.938300px;}
.y149{bottom:335.228850px;}
.y4f{bottom:335.363850px;}
.yc0{bottom:335.505600px;}
.y9c{bottom:335.513850px;}
.y7f{bottom:335.678850px;}
.y107{bottom:337.065900px;}
.y132{bottom:337.852350px;}
.yeb{bottom:337.908450px;}
.yea{bottom:346.162350px;}
.y1d{bottom:349.505400px;}
.y196{bottom:349.938300px;}
.y148{bottom:353.228850px;}
.y106{bottom:353.313900px;}
.y4e{bottom:353.363850px;}
.ybf{bottom:353.505600px;}
.y9b{bottom:353.513850px;}
.y7e{bottom:353.678850px;}
.y131{bottom:354.100200px;}
.y195{bottom:364.938300px;}
.y1c{bottom:367.505400px;}
.y105{bottom:369.588750px;}
.ye9{bottom:370.660350px;}
.y4d{bottom:371.363850px;}
.ybe{bottom:371.505600px;}
.y9a{bottom:371.513850px;}
.y7d{bottom:371.678850px;}
.ye8{bottom:378.914400px;}
.y194{bottom:379.938300px;}
.y27{bottom:385.505400px;}
.y130{bottom:385.612200px;}
.y104{bottom:385.836750px;}
.y147{bottom:389.228850px;}
.y4c{bottom:389.363850px;}
.ybd{bottom:389.505600px;}
.y99{bottom:389.513850px;}
.y7c{bottom:389.678850px;}
.y193{bottom:394.938300px;}
.y103{bottom:402.084750px;}
.ye7{bottom:403.412400px;}
.y1b{bottom:403.505400px;}
.y4b{bottom:407.363850px;}
.ybc{bottom:407.505600px;}
.y98{bottom:407.513850px;}
.y7b{bottom:407.678850px;}
.y192{bottom:409.938300px;}
.ye6{bottom:411.666300px;}
.y102{bottom:418.332750px;}
.y191{bottom:424.938300px;}
.y4a{bottom:425.363850px;}
.ybb{bottom:425.505600px;}
.y97{bottom:425.513850px;}
.y7a{bottom:425.678850px;}
.y101{bottom:434.580750px;}
.ye5{bottom:436.164300px;}
.y12f{bottom:439.132950px;}
.y190{bottom:439.938300px;}
.y49{bottom:443.363850px;}
.yba{bottom:443.505600px;}
.y96{bottom:443.513850px;}
.y79{bottom:443.678850px;}
.ye4{bottom:444.418350px;}
.y100{bottom:450.828750px;}
.y18f{bottom:454.938300px;}
.y12e{bottom:455.384850px;}
.y48{bottom:461.363850px;}
.y95{bottom:461.513850px;}
.y78{bottom:461.678850px;}
.yff{bottom:467.076750px;}
.ye3{bottom:468.916350px;}
.y18e{bottom:469.938300px;}
.y12d{bottom:471.636750px;}
.ye2{bottom:477.170250px;}
.y47{bottom:479.363850px;}
.yb9{bottom:479.505600px;}
.y94{bottom:479.513850px;}
.y77{bottom:479.678850px;}
.y19{bottom:480.338550px;}
.y18d{bottom:484.938300px;}
.y12c{bottom:487.892700px;}
.y46{bottom:497.363850px;}
.y93{bottom:497.513850px;}
.y76{bottom:497.678850px;}
.yfe{bottom:498.585600px;}
.y18c{bottom:499.938300px;}
.ye1{bottom:501.668250px;}
.y12b{bottom:504.140700px;}
.ye0{bottom:509.922300px;}
.y18{bottom:513.194550px;}
.y18b{bottom:514.938300px;}
.y146{bottom:515.363850px;}
.yb8{bottom:515.370600px;}
.y92{bottom:515.513850px;}
.y12a{bottom:520.392750px;}
.y17{bottom:528.194550px;}
.y18a{bottom:529.938300px;}
.y45{bottom:533.363850px;}
.yfd{bottom:533.408850px;}
.y75{bottom:533.678850px;}
.ydf{bottom:534.420300px;}
.y129{bottom:536.644650px;}
.yde{bottom:542.674200px;}
.y16{bottom:543.194550px;}
.y189{bottom:544.938300px;}
.y145{bottom:551.363850px;}
.y91{bottom:551.513850px;}
.y128{bottom:552.896700px;}
.y15{bottom:558.194550px;}
.y188{bottom:559.938300px;}
.ydd{bottom:567.172200px;}
.y127{bottom:569.148600px;}
.y44{bottom:569.228850px;}
.y144{bottom:569.363850px;}
.yb7{bottom:569.505600px;}
.y90{bottom:569.513850px;}
.y74{bottom:569.528850px;}
.y14{bottom:573.194550px;}
.y187{bottom:574.938300px;}
.ydc{bottom:575.422200px;}
.y126{bottom:585.400650px;}
.yfb{bottom:587.363850px;}
.yb6{bottom:587.505600px;}
.y73{bottom:587.528850px;}
.y13{bottom:588.194550px;}
.y186{bottom:589.938300px;}
.y125{bottom:601.652550px;}
.y12{bottom:603.194550px;}
.y185{bottom:604.938300px;}
.y8f{bottom:605.363850px;}
.yb5{bottom:605.505600px;}
.y72{bottom:605.528850px;}
.ydb{bottom:612.674100px;}
.y124{bottom:617.904600px;}
.y11{bottom:618.194550px;}
.y184{bottom:619.938300px;}
.yda{bottom:620.930100px;}
.y43{bottom:623.363850px;}
.yb4{bottom:623.505600px;}
.y71{bottom:623.528850px;}
.y10{bottom:633.194550px;}
.y123{bottom:634.156500px;}
.y183{bottom:634.938300px;}
.y42{bottom:641.363850px;}
.y70{bottom:641.528850px;}
.yf{bottom:648.194550px;}
.y182{bottom:649.938300px;}
.y122{bottom:650.408550px;}
.y41{bottom:659.363850px;}
.y6f{bottom:659.528850px;}
.yd9{bottom:661.508850px;}
.ye{bottom:663.194550px;}
.y181{bottom:664.938300px;}
.y121{bottom:666.656250px;}
.y40{bottom:677.363850px;}
.y6e{bottom:677.528850px;}
.yd{bottom:678.194550px;}
.y180{bottom:679.938300px;}
.yc{bottom:693.194550px;}
.y17f{bottom:694.938300px;}
.y3f{bottom:695.363850px;}
.y6d{bottom:695.528850px;}
.y120{bottom:698.168250px;}
.y17e{bottom:709.938300px;}
.y3e{bottom:713.363850px;}
.yd8{bottom:713.378850px;}
.yd3{bottom:713.513850px;}
.y6c{bottom:713.528850px;}
.y17d{bottom:724.938300px;}
.y3d{bottom:731.363850px;}
.yd7{bottom:731.378850px;}
.yd2{bottom:731.513850px;}
.y6b{bottom:731.528850px;}
.y11f{bottom:732.998850px;}
.y17c{bottom:739.938300px;}
.yb{bottom:741.938550px;}
.y3c{bottom:749.363850px;}
.yd6{bottom:749.378850px;}
.yd1{bottom:749.513850px;}
.yb3{bottom:749.528850px;}
.y11e{bottom:752.498850px;}
.y17b{bottom:754.938300px;}
.ya{bottom:756.338550px;}
.y3b{bottom:767.363850px;}
.yd5{bottom:767.378850px;}
.y6a{bottom:767.528850px;}
.y17a{bottom:769.938300px;}
.y9{bottom:783.494550px;}
.y179{bottom:784.938300px;}
.y3a{bottom:785.363850px;}
.yd4{bottom:785.378850px;}
.yd0{bottom:785.513850px;}
.yb2{bottom:785.528850px;}
.y178{bottom:799.938300px;}
.y39{bottom:803.363850px;}
.y69{bottom:803.378850px;}
.ycf{bottom:803.513850px;}
.yb1{bottom:803.528850px;}
.y177{bottom:814.938300px;}
.y8{bottom:817.994550px;}
.y38{bottom:821.363850px;}
.y68{bottom:821.378850px;}
.y11d{bottom:821.513850px;}
.yb0{bottom:821.528850px;}
.y176{bottom:829.938300px;}
.y7{bottom:838.612500px;}
.y37{bottom:839.363850px;}
.y67{bottom:839.378850px;}
.y11c{bottom:839.513850px;}
.yaf{bottom:839.528850px;}
.y175{bottom:844.938300px;}
.y1b5{bottom:844.941300px;}
.y6{bottom:853.879800px;}
.y36{bottom:857.363850px;}
.y66{bottom:857.378850px;}
.y11b{bottom:857.513850px;}
.yae{bottom:857.528850px;}
.y174{bottom:859.938300px;}
.y1b4{bottom:859.941300px;}
.y173{bottom:874.938300px;}
.y1b3{bottom:874.941300px;}
.y35{bottom:875.363850px;}
.y65{bottom:875.378850px;}
.y11a{bottom:875.513850px;}
.yad{bottom:875.528850px;}
.y5{bottom:881.284200px;}
.y172{bottom:889.938300px;}
.y1b2{bottom:889.941300px;}
.y34{bottom:893.363850px;}
.y64{bottom:893.378850px;}
.y119{bottom:893.513850px;}
.yac{bottom:893.528850px;}
.y171{bottom:904.938300px;}
.y1b1{bottom:904.941300px;}
.y4{bottom:908.290200px;}
.y33{bottom:911.363850px;}
.y63{bottom:911.378850px;}
.yab{bottom:911.528850px;}
.y170{bottom:919.938300px;}
.y1b0{bottom:919.941300px;}
.y32{bottom:929.363850px;}
.y1bc{bottom:929.367600px;}
.y62{bottom:929.378850px;}
.y118{bottom:929.513850px;}
.yaa{bottom:929.528850px;}
.y16f{bottom:934.938300px;}
.y1af{bottom:934.941300px;}
.y3{bottom:935.275200px;}
.y31{bottom:947.363850px;}
.y1bb{bottom:947.367600px;}
.y61{bottom:947.378850px;}
.y117{bottom:947.513850px;}
.ya9{bottom:947.528850px;}
.y16e{bottom:949.938300px;}
.y1ae{bottom:949.941300px;}
.y16d{bottom:964.938300px;}
.y1ad{bottom:964.941300px;}
.y30{bottom:965.363850px;}
.y1ba{bottom:965.367600px;}
.y60{bottom:965.378850px;}
.ya8{bottom:965.528850px;}
.y16c{bottom:979.938300px;}
.y1ac{bottom:979.941300px;}
.y2{bottom:979.943400px;}
.yfc{bottom:983.228850px;}
.y2f{bottom:983.363850px;}
.y1b9{bottom:983.367600px;}
.y5f{bottom:983.378850px;}
.y16b{bottom:994.938300px;}
.y1ab{bottom:994.941300px;}
.y2e{bottom:1001.363850px;}
.y1b8{bottom:1001.367600px;}
.y5e{bottom:1001.378850px;}
.ya7{bottom:1001.528850px;}
.y16a{bottom:1009.938300px;}
.y1aa{bottom:1009.941300px;}
.y2d{bottom:1019.363850px;}
.y1b7{bottom:1019.367600px;}
.y5d{bottom:1019.378850px;}
.y169{bottom:1024.938300px;}
.y1a9{bottom:1024.941300px;}
.y2c{bottom:1037.363850px;}
.y1b6{bottom:1037.367600px;}
.y5c{bottom:1037.378850px;}
.y168{bottom:1039.938300px;}
.y1a8{bottom:1039.941300px;}
.y29{bottom:1070.769450px;}
.y8e{bottom:1086.066450px;}
.y28{bottom:1086.069450px;}
.h6{height:20.995312px;}
.h2{height:30.618164px;}
.h9{height:34.959187px;}
.h8{height:34.968750px;}
.h1a{height:34.980787px;}
.h7{height:34.992188px;}
.hc{height:37.179199px;}
.h18{height:37.440113px;}
.h15{height:37.455712px;}
.h17{height:37.456313px;}
.h19{height:37.471313px;}
.h14{height:37.471913px;}
.h16{height:37.472513px;}
.ha{height:43.681641px;}
.hd{height:43.710938px;}
.hb{height:43.740234px;}
.h5{height:51.523955px;}
.h3{height:52.417969px;}
.h4{height:61.154297px;}
.h13{height:67.952550px;}
.h12{height:67.953150px;}
.he{height:67.968188px;}
.h10{height:67.968750px;}
.h11{height:67.992188px;}
.hf{height:68.027587px;}
.h1{height:1190.250000px;}
.h0{height:1190.551500px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xa{left:76.535400px;}
.x15{left:78.661350px;}
.x8{left:96.094500px;}
.x1{left:97.795200px;}
.x19{left:99.921300px;}
.x22{left:106.299150px;}
.xb{left:110.555400px;}
.x17{left:116.929200px;}
.x1b{left:121.181100px;}
.x3{left:125.427600px;}
.x20{left:127.567350px;}
.x6{left:131.816400px;}
.xc{left:144.770400px;}
.x4{left:161.571600px;}
.x1d{left:190.160400px;}
.x5{left:212.876400px;}
.x1a{left:268.749300px;}
.x1c{left:309.461100px;}
.x16{left:447.781350px;}
.x9{left:455.041500px;}
.xd{left:457.115400px;}
.x11{left:478.381650px;}
.x7{left:480.491400px;}
.x1f{left:486.846450px;}
.xe{left:491.135400px;}
.x21{left:508.063350px;}
.x12{left:512.401650px;}
.x1e{left:574.880400px;}
.x18{left:600.685350px;}
.x13{left:612.911400px;}
.x10{left:663.492300px;}
.x2{left:704.338650px;}
.x23{left:717.130200px;}
.xf{left:724.221150px;}
.x14{left:745.480950px;}
@media print{
.v2{vertical-align:-14.641600pt;}
.v4{vertical-align:-3.026133pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:1.440000pt;}
.v6{vertical-align:14.667200pt;}
.v1{vertical-align:20.138133pt;}
.v7{vertical-align:26.933867pt;}
.v5{vertical-align:29.312000pt;}
.ls6b{letter-spacing:-3.157333pt;}
.ls56{letter-spacing:-2.880000pt;}
.lsb7{letter-spacing:-2.346667pt;}
.ls6c{letter-spacing:-1.894400pt;}
.ls49{letter-spacing:-1.706667pt;}
.ls46{letter-spacing:-0.693333pt;}
.ls1e{letter-spacing:-0.640000pt;}
.ls57{letter-spacing:-0.266667pt;}
.ls20{letter-spacing:-0.213333pt;}
.ls58{letter-spacing:-0.160000pt;}
.ls59{letter-spacing:-0.106667pt;}
.lsb6{letter-spacing:-0.085333pt;}
.ls48{letter-spacing:-0.053333pt;}
.ls1f{letter-spacing:-0.042667pt;}
.ls1d{letter-spacing:0.000000pt;}
.ls6a{letter-spacing:0.003733pt;}
.ls1{letter-spacing:0.004267pt;}
.ls0{letter-spacing:0.005333pt;}
.ls5d{letter-spacing:0.007467pt;}
.ls69{letter-spacing:0.018667pt;}
.lsb2{letter-spacing:0.042667pt;}
.ls8{letter-spacing:0.049600pt;}
.ls2a{letter-spacing:0.053333pt;}
.ls68{letter-spacing:0.083200pt;}
.lsaf{letter-spacing:0.085333pt;}
.ls3f{letter-spacing:0.106667pt;}
.ls3{letter-spacing:0.128000pt;}
.ls52{letter-spacing:0.160000pt;}
.ls7{letter-spacing:0.170667pt;}
.lsf{letter-spacing:0.213333pt;}
.lsa5{letter-spacing:0.256000pt;}
.ls4b{letter-spacing:0.266667pt;}
.ls95{letter-spacing:0.298667pt;}
.ls1c{letter-spacing:0.320000pt;}
.lsaa{letter-spacing:0.341333pt;}
.ls17{letter-spacing:0.373333pt;}
.ls45{letter-spacing:0.426667pt;}
.ls9e{letter-spacing:0.469333pt;}
.ls32{letter-spacing:0.480000pt;}
.ls92{letter-spacing:0.512000pt;}
.ls4c{letter-spacing:0.533333pt;}
.lsad{letter-spacing:0.554667pt;}
.ls14{letter-spacing:0.586667pt;}
.ls98{letter-spacing:0.597333pt;}
.ls28{letter-spacing:0.640000pt;}
.ls9d{letter-spacing:0.682667pt;}
.ls31{letter-spacing:0.693333pt;}
.ls5{letter-spacing:0.725333pt;}
.ls10{letter-spacing:0.746667pt;}
.lsab{letter-spacing:0.768000pt;}
.ls21{letter-spacing:0.800000pt;}
.ls2{letter-spacing:0.853333pt;}
.ls41{letter-spacing:0.906667pt;}
.ls9f{letter-spacing:0.938667pt;}
.ls47{letter-spacing:0.960000pt;}
.lsa3{letter-spacing:0.981333pt;}
.ls25{letter-spacing:1.013333pt;}
.lsa6{letter-spacing:1.024000pt;}
.lsb{letter-spacing:1.066667pt;}
.ls9b{letter-spacing:1.109333pt;}
.ls16{letter-spacing:1.120000pt;}
.ls9c{letter-spacing:1.152000pt;}
.ls12{letter-spacing:1.173333pt;}
.ls93{letter-spacing:1.194667pt;}
.lsa{letter-spacing:1.226667pt;}
.ls4{letter-spacing:1.237333pt;}
.ls40{letter-spacing:1.280000pt;}
.lsa7{letter-spacing:1.322667pt;}
.ls43{letter-spacing:1.327467pt;}
.ls29{letter-spacing:1.333333pt;}
.ls24{letter-spacing:1.386667pt;}
.lsa0{letter-spacing:1.408000pt;}
.ls2c{letter-spacing:1.440000pt;}
.ls11{letter-spacing:1.493333pt;}
.ls4a{letter-spacing:1.534400pt;}
.ls3e{letter-spacing:1.546667pt;}
.ls54{letter-spacing:1.600000pt;}
.ls9a{letter-spacing:1.621333pt;}
.ls55{letter-spacing:1.653333pt;}
.lsa2{letter-spacing:1.664000pt;}
.ls6{letter-spacing:1.706667pt;}
.ls38{letter-spacing:1.760000pt;}
.ls3a{letter-spacing:1.813333pt;}
.ls1a{letter-spacing:1.866667pt;}
.ls2d{letter-spacing:1.920000pt;}
.ls71{letter-spacing:1.973333pt;}
.ls13{letter-spacing:2.026667pt;}
.lsa1{letter-spacing:2.048000pt;}
.ls5a{letter-spacing:2.080000pt;}
.lsc{letter-spacing:2.133333pt;}
.lsb1{letter-spacing:2.176000pt;}
.ls42{letter-spacing:2.186667pt;}
.ls4e{letter-spacing:2.240000pt;}
.ls36{letter-spacing:2.293333pt;}
.lsb3{letter-spacing:2.304000pt;}
.ls37{letter-spacing:2.346667pt;}
.ls6d{letter-spacing:2.400000pt;}
.lsa9{letter-spacing:2.432000pt;}
.ls1b{letter-spacing:2.453333pt;}
.ls96{letter-spacing:2.474667pt;}
.ls26{letter-spacing:2.506667pt;}
.ls18{letter-spacing:2.560000pt;}
.ls94{letter-spacing:2.602667pt;}
.ls4f{letter-spacing:2.613333pt;}
.ls2f{letter-spacing:2.666667pt;}
.ls6e{letter-spacing:2.720000pt;}
.ls27{letter-spacing:2.773333pt;}
.ls22{letter-spacing:2.826667pt;}
.lsba{letter-spacing:2.880000pt;}
.ls15{letter-spacing:2.933333pt;}
.ls19{letter-spacing:2.986667pt;}
.lsa8{letter-spacing:3.029333pt;}
.ls8e{letter-spacing:3.093333pt;}
.lsb8{letter-spacing:3.114667pt;}
.ls44{letter-spacing:3.146667pt;}
.ls51{letter-spacing:3.200000pt;}
.lsae{letter-spacing:3.242667pt;}
.ls3b{letter-spacing:3.253333pt;}
.ls9{letter-spacing:3.306667pt;}
.lsb5{letter-spacing:3.370667pt;}
.ls6f{letter-spacing:3.413333pt;}
.ls99{letter-spacing:3.456000pt;}
.ls8d{letter-spacing:3.520000pt;}
.ls34{letter-spacing:3.573333pt;}
.lsa4{letter-spacing:3.626667pt;}
.ls91{letter-spacing:3.680000pt;}
.ls35{letter-spacing:3.733333pt;}
.ls90{letter-spacing:3.786667pt;}
.ls97{letter-spacing:3.882667pt;}
.ls53{letter-spacing:3.893333pt;}
.ls2e{letter-spacing:3.946667pt;}
.lsb4{letter-spacing:4.053333pt;}
.lse{letter-spacing:4.106667pt;}
.lsd{letter-spacing:4.213333pt;}
.ls3c{letter-spacing:4.426667pt;}
.lsb0{letter-spacing:4.437333pt;}
.ls3d{letter-spacing:4.480000pt;}
.lsb9{letter-spacing:4.533333pt;}
.ls30{letter-spacing:4.853333pt;}
.ls4d{letter-spacing:5.280000pt;}
.ls50{letter-spacing:5.333333pt;}
.ls8f{letter-spacing:5.386667pt;}
.ls33{letter-spacing:5.493333pt;}
.lsac{letter-spacing:5.504000pt;}
.ls70{letter-spacing:5.600000pt;}
.ls39{letter-spacing:5.653333pt;}
.ls2b{letter-spacing:6.026667pt;}
.ls23{letter-spacing:7.680000pt;}
.ls5b{letter-spacing:32.750933pt;}
.ls72{letter-spacing:36.648000pt;}
.ls76{letter-spacing:39.022933pt;}
.ls77{letter-spacing:39.023467pt;}
.ls75{letter-spacing:40.606400pt;}
.ls5f{letter-spacing:41.183467pt;}
.ls62{letter-spacing:43.558400pt;}
.ls63{letter-spacing:46.725333pt;}
.ls73{letter-spacing:49.700267pt;}
.ls78{letter-spacing:50.887467pt;}
.ls74{letter-spacing:50.888000pt;}
.ls79{letter-spacing:62.752000pt;}
.ls61{letter-spacing:67.287467pt;}
.ls5e{letter-spacing:91.682667pt;}
.ls7a{letter-spacing:97.536000pt;}
.ls5c{letter-spacing:101.870400pt;}
.ls7e{letter-spacing:103.082667pt;}
.ls7b{letter-spacing:107.818667pt;}
.ls65{letter-spacing:112.514133pt;}
.ls7c{letter-spacing:113.749333pt;}
.ls64{letter-spacing:117.284800pt;}
.ls66{letter-spacing:126.743467pt;}
.ls67{letter-spacing:127.930667pt;}
.ls60{letter-spacing:133.076800pt;}
.ls7d{letter-spacing:256.543467pt;}
.ls7f{letter-spacing:349.001067pt;}
.ls80{letter-spacing:372.730133pt;}
.ls82{letter-spacing:375.105067pt;}
.ls83{letter-spacing:378.272000pt;}
.ls81{letter-spacing:398.834133pt;}
.ls84{letter-spacing:426.749333pt;}
.ls89{letter-spacing:429.124267pt;}
.ls8a{letter-spacing:432.290667pt;}
.ls88{letter-spacing:452.853333pt;}
.ls86{letter-spacing:462.343467pt;}
.ls8c{letter-spacing:464.718400pt;}
.ls8b{letter-spacing:478.318933pt;}
.ls85{letter-spacing:513.912533pt;}
.ls87{letter-spacing:555.050667pt;}
.ws7d{word-spacing:-566.912000pt;}
.ws6c{word-spacing:-125.610667pt;}
.ws6b{word-spacing:-119.680000pt;}
.ws6f{word-spacing:-114.944000pt;}
.ws13{word-spacing:-53.333333pt;}
.wsb2{word-spacing:-20.213333pt;}
.ws10{word-spacing:-17.653333pt;}
.ws14{word-spacing:-17.013333pt;}
.ws12{word-spacing:-16.960000pt;}
.ws33{word-spacing:-16.640000pt;}
.ws31{word-spacing:-16.586667pt;}
.ws34{word-spacing:-16.266667pt;}
.ws2f{word-spacing:-16.160000pt;}
.ws30{word-spacing:-15.946667pt;}
.ws8a{word-spacing:-15.744000pt;}
.ws89{word-spacing:-15.360000pt;}
.ws32{word-spacing:-15.253333pt;}
.ws3{word-spacing:-15.146667pt;}
.ws61{word-spacing:-15.093333pt;}
.ws60{word-spacing:-14.880000pt;}
.ws11{word-spacing:-14.826667pt;}
.ws2e{word-spacing:-14.720000pt;}
.ws2d{word-spacing:-14.666667pt;}
.ws2b{word-spacing:-14.560000pt;}
.ws99{word-spacing:-13.482667pt;}
.ws15{word-spacing:-13.120000pt;}
.ws96{word-spacing:-12.970667pt;}
.ws16{word-spacing:-12.602667pt;}
.ws9a{word-spacing:-12.373333pt;}
.ws2a{word-spacing:-11.946667pt;}
.ws1{word-spacing:-11.861333pt;}
.ws97{word-spacing:-11.818667pt;}
.ws2{word-spacing:-11.648000pt;}
.ws0{word-spacing:-9.785600pt;}
.ws98{word-spacing:-9.514667pt;}
.ws2c{word-spacing:-8.896000pt;}
.ws4d{word-spacing:-8.704000pt;}
.ws55{word-spacing:-7.116800pt;}
.ws41{word-spacing:-4.853333pt;}
.ws42{word-spacing:-4.106667pt;}
.wsa1{word-spacing:-3.370667pt;}
.wsac{word-spacing:-3.242667pt;}
.ws29{word-spacing:-3.146667pt;}
.ws18{word-spacing:-2.826667pt;}
.ws57{word-spacing:-2.666667pt;}
.ws21{word-spacing:-2.453333pt;}
.ws5{word-spacing:-2.368000pt;}
.ws5c{word-spacing:-2.346667pt;}
.ws1e{word-spacing:-2.293333pt;}
.ws45{word-spacing:-2.240000pt;}
.ws9b{word-spacing:-2.005333pt;}
.ws1b{word-spacing:-1.973333pt;}
.ws1a{word-spacing:-1.920000pt;}
.wsb6{word-spacing:-1.760000pt;}
.ws22{word-spacing:-1.706667pt;}
.wsa4{word-spacing:-1.664000pt;}
.ws9c{word-spacing:-1.621333pt;}
.wsaf{word-spacing:-1.493333pt;}
.wsa3{word-spacing:-1.408000pt;}
.ws1f{word-spacing:-1.386667pt;}
.ws3d{word-spacing:-1.333333pt;}
.ws8e{word-spacing:-1.280000pt;}
.ws75{word-spacing:-1.226667pt;}
.wsa8{word-spacing:-1.194667pt;}
.wsaa{word-spacing:-1.152000pt;}
.ws27{word-spacing:-0.960000pt;}
.wsa2{word-spacing:-0.938667pt;}
.ws28{word-spacing:-0.906667pt;}
.ws7{word-spacing:-0.853333pt;}
.ws26{word-spacing:-0.800000pt;}
.ws5d{word-spacing:-0.768000pt;}
.ws70{word-spacing:-0.746667pt;}
.ws46{word-spacing:-0.693333pt;}
.ws9f{word-spacing:-0.682667pt;}
.ws39{word-spacing:-0.640000pt;}
.ws40{word-spacing:-0.533333pt;}
.wsad{word-spacing:-0.512000pt;}
.ws3f{word-spacing:-0.480000pt;}
.wsa0{word-spacing:-0.469333pt;}
.ws1c{word-spacing:-0.426667pt;}
.ws38{word-spacing:-0.373333pt;}
.wsb0{word-spacing:-0.341333pt;}
.ws95{word-spacing:-0.298667pt;}
.wsa5{word-spacing:-0.256000pt;}
.ws58{word-spacing:-0.213333pt;}
.ws72{word-spacing:-0.160000pt;}
.ws93{word-spacing:-0.128000pt;}
.ws74{word-spacing:-0.106667pt;}
.wsb1{word-spacing:-0.085333pt;}
.ws71{word-spacing:-0.053333pt;}
.wsb4{word-spacing:-0.042667pt;}
.ws4{word-spacing:0.000000pt;}
.wsa6{word-spacing:0.042667pt;}
.ws37{word-spacing:0.053333pt;}
.wsa7{word-spacing:0.085333pt;}
.ws3c{word-spacing:0.106667pt;}
.ws3b{word-spacing:0.160000pt;}
.wsb{word-spacing:0.213333pt;}
.ws5f{word-spacing:0.426667pt;}
.ws3a{word-spacing:0.586667pt;}
.ws25{word-spacing:0.693333pt;}
.ws76{word-spacing:0.746667pt;}
.wse{word-spacing:0.800000pt;}
.wsab{word-spacing:0.853333pt;}
.ws36{word-spacing:1.013333pt;}
.ws20{word-spacing:1.226667pt;}
.ws88{word-spacing:1.322667pt;}
.ws73{word-spacing:1.386667pt;}
.ws86{word-spacing:1.536000pt;}
.ws87{word-spacing:1.578667pt;}
.ws5e{word-spacing:1.664000pt;}
.ws24{word-spacing:1.706667pt;}
.ws9d{word-spacing:1.749333pt;}
.wsb5{word-spacing:1.813333pt;}
.wsae{word-spacing:1.877333pt;}
.ws92{word-spacing:1.920000pt;}
.ws43{word-spacing:1.973333pt;}
.ws83{word-spacing:2.026667pt;}
.wsf{word-spacing:2.080000pt;}
.ws56{word-spacing:2.293333pt;}
.ws90{word-spacing:2.346667pt;}
.ws82{word-spacing:2.400000pt;}
.ws9e{word-spacing:2.432000pt;}
.ws44{word-spacing:2.453333pt;}
.ws35{word-spacing:2.560000pt;}
.wsa9{word-spacing:2.602667pt;}
.ws85{word-spacing:2.613333pt;}
.ws8f{word-spacing:2.666667pt;}
.ws8b{word-spacing:2.720000pt;}
.ws84{word-spacing:2.826667pt;}
.ws9{word-spacing:3.072000pt;}
.ws1d{word-spacing:3.146667pt;}
.ws59{word-spacing:3.200000pt;}
.ws47{word-spacing:3.253333pt;}
.ws94{word-spacing:3.541333pt;}
.wsa{word-spacing:3.626667pt;}
.ws91{word-spacing:3.680000pt;}
.wsb3{word-spacing:3.797333pt;}
.ws6{word-spacing:3.882667pt;}
.ws8{word-spacing:3.925333pt;}
.ws17{word-spacing:4.053333pt;}
.ws23{word-spacing:4.266667pt;}
.ws19{word-spacing:4.373333pt;}
.ws5a{word-spacing:4.426667pt;}
.ws8c{word-spacing:4.586667pt;}
.ws5b{word-spacing:4.640000pt;}
.wsc{word-spacing:4.853333pt;}
.wsd{word-spacing:4.906667pt;}
.ws8d{word-spacing:5.493333pt;}
.ws3e{word-spacing:6.666667pt;}
.ws49{word-spacing:22.442667pt;}
.ws62{word-spacing:25.130667pt;}
.ws52{word-spacing:47.445333pt;}
.ws51{word-spacing:48.085333pt;}
.ws48{word-spacing:51.285333pt;}
.ws69{word-spacing:80.128000pt;}
.ws65{word-spacing:84.096000pt;}
.ws63{word-spacing:85.674667pt;}
.ws6d{word-spacing:90.368000pt;}
.ws6e{word-spacing:91.605333pt;}
.ws64{word-spacing:91.989333pt;}
.ws68{word-spacing:95.957333pt;}
.ws66{word-spacing:96.298667pt;}
.ws6a{word-spacing:97.920000pt;}
.ws4e{word-spacing:99.469867pt;}
.ws4c{word-spacing:99.480533pt;}
.ws54{word-spacing:100.646933pt;}
.ws67{word-spacing:101.888000pt;}
.ws4b{word-spacing:104.626133pt;}
.ws50{word-spacing:105.428267pt;}
.ws4f{word-spacing:109.348800pt;}
.ws53{word-spacing:118.459733pt;}
.ws4a{word-spacing:130.292800pt;}
.ws77{word-spacing:239.658667pt;}
.ws7b{word-spacing:307.029333pt;}
.ws79{word-spacing:358.656000pt;}
.ws7a{word-spacing:394.240000pt;}
.ws78{word-spacing:429.824000pt;}
.ws80{word-spacing:463.360000pt;}
.ws7f{word-spacing:472.021333pt;}
.ws7c{word-spacing:498.944000pt;}
.ws7e{word-spacing:507.605333pt;}
.ws81{word-spacing:543.189333pt;}
._c{margin-left:-2576.112000pt;}
._f{margin-left:-2554.941333pt;}
._51{margin-left:-555.049600pt;}
._41{margin-left:-103.191467pt;}
._3b{margin-left:-15.418667pt;}
._d{margin-left:-6.725333pt;}
._3{margin-left:-5.717333pt;}
._1{margin-left:-4.778667pt;}
._5{margin-left:-3.882667pt;}
._4{margin-left:-2.981333pt;}
._0{margin-left:-2.053333pt;}
._2{margin-left:-0.990400pt;}
._7{width:0.896000pt;}
._6{width:2.133333pt;}
._b{width:3.141333pt;}
._10{width:4.160000pt;}
._9{width:5.226667pt;}
._a{width:6.293333pt;}
._8{width:7.520000pt;}
._e{width:9.706667pt;}
._11{width:22.229333pt;}
._14{width:25.770667pt;}
._13{width:31.658667pt;}
._1c{width:44.416000pt;}
._15{width:50.476800pt;}
._1b{width:51.413333pt;}
._1a{width:58.368000pt;}
._22{width:63.274667pt;}
._21{width:70.229333pt;}
._16{width:75.904000pt;}
._32{width:84.096000pt;}
._1f{width:86.314667pt;}
._26{width:89.930667pt;}
._33{width:95.616000pt;}
._38{width:96.810667pt;}
._25{width:98.293333pt;}
._30{width:101.504000pt;}
._37{width:102.613333pt;}
._23{width:104.357333pt;}
._36{width:107.093333pt;}
._34{width:108.160000pt;}
._19{width:109.653333pt;}
._40{width:111.934400pt;}
._3c{width:113.237333pt;}
._31{width:114.133333pt;}
._27{width:115.786667pt;}
._2f{width:120.021333pt;}
._1d{width:129.701333pt;}
._1e{width:140.234667pt;}
._2a{width:145.237333pt;}
._24{width:152.704000pt;}
._2b{width:166.437333pt;}
._2c{width:172.714667pt;}
._28{width:174.416000pt;}
._29{width:181.242133pt;}
._17{width:182.613333pt;}
._42{width:186.752000pt;}
._4d{width:199.765333pt;}
._20{width:200.693333pt;}
._18{width:201.631467pt;}
._45{width:204.586667pt;}
._43{width:234.240000pt;}
._44{width:241.322667pt;}
._12{width:268.544000pt;}
._55{width:313.130667pt;}
._3e{width:315.562667pt;}
._4f{width:340.437333pt;}
._54{width:348.501333pt;}
._3a{width:351.232000pt;}
._4e{width:358.272000pt;}
._2e{width:360.661333pt;}
._4a{width:367.889067pt;}
._49{width:370.517333pt;}
._4b{width:371.749333pt;}
._39{width:374.912000pt;}
._46{width:386.864533pt;}
._48{width:403.450667pt;}
._3f{width:405.717333pt;}
._2d{width:418.688000pt;}
._35{width:424.704000pt;}
._47{width:441.623467pt;}
._3d{width:455.509333pt;}
._53{width:483.939733pt;}
._56{width:492.589867pt;}
._50{width:519.515200pt;}
._52{width:555.153600pt;}
._4c{width:745.386667pt;}
.fs5{font-size:25.600000pt;}
.fs9{font-size:32.000000pt;}
.fs4{font-size:35.200000pt;}
.fs0{font-size:37.333333pt;}
.fs6{font-size:42.666667pt;}
.fs8{font-size:45.333333pt;}
.fs7{font-size:53.333333pt;}
.fs3{font-size:58.666667pt;}
.fs1{font-size:64.000000pt;}
.fs2{font-size:74.666667pt;}
.y0{bottom:0.000000pt;}
.y2b{bottom:44.904000pt;}
.y1{bottom:73.250400pt;}
.y143{bottom:73.425467pt;}
.y116{bottom:73.585733pt;}
.yfa{bottom:73.680133pt;}
.y157{bottom:73.981200pt;}
.y2a{bottom:74.216800pt;}
.yce{bottom:74.227200pt;}
.y5b{bottom:74.234533pt;}
.y8d{bottom:74.353200pt;}
.y141{bottom:75.170267pt;}
.y167{bottom:84.263733pt;}
.y1a7{bottom:84.389600pt;}
.y142{bottom:87.422667pt;}
.yf9{bottom:88.346800pt;}
.y156{bottom:89.981200pt;}
.ycd{bottom:90.227200pt;}
.y5a{bottom:90.234533pt;}
.y8c{bottom:90.353200pt;}
.y115{bottom:91.913867pt;}
.y140{bottom:93.498267pt;}
.y166{bottom:97.597067pt;}
.y1a6{bottom:97.722933pt;}
.yf8{bottom:103.013867pt;}
.y155{bottom:105.981200pt;}
.ycc{bottom:106.227200pt;}
.y59{bottom:106.234533pt;}
.y8b{bottom:106.353200pt;}
.y1a{bottom:108.016267pt;}
.y114{bottom:110.928267pt;}
.y165{bottom:110.930400pt;}
.y1a5{bottom:111.056267pt;}
.y13f{bottom:112.512667pt;}
.y154{bottom:121.981200pt;}
.ycb{bottom:122.227200pt;}
.ya6{bottom:122.234533pt;}
.y8a{bottom:122.381200pt;}
.y164{bottom:124.263733pt;}
.y1a4{bottom:124.389600pt;}
.y113{bottom:125.370933pt;}
.yf7{bottom:125.685867pt;}
.y13e{bottom:126.958933pt;}
.yf6{bottom:133.022800pt;}
.y163{bottom:137.597067pt;}
.y1a3{bottom:137.722933pt;}
.y153{bottom:137.981200pt;}
.yca{bottom:138.227200pt;}
.y58{bottom:138.234533pt;}
.y89{bottom:138.381200pt;}
.y112{bottom:140.037600pt;}
.y13d{bottom:141.405067pt;}
.y162{bottom:150.930400pt;}
.y1a2{bottom:151.056267pt;}
.y152{bottom:153.981200pt;}
.yc9{bottom:154.227200pt;}
.ya5{bottom:154.234533pt;}
.y88{bottom:154.381200pt;}
.y111{bottom:154.704267pt;}
.yf5{bottom:154.798800pt;}
.y13c{bottom:155.854800pt;}
.yf4{bottom:162.135600pt;}
.y161{bottom:164.263733pt;}
.y1a1{bottom:164.389600pt;}
.y26{bottom:166.671467pt;}
.y110{bottom:169.370933pt;}
.y151{bottom:169.981200pt;}
.y57{bottom:170.101200pt;}
.yc8{bottom:170.227200pt;}
.ya4{bottom:170.234533pt;}
.y13b{bottom:170.297467pt;}
.y87{bottom:170.381200pt;}
.y160{bottom:177.597067pt;}
.y1a0{bottom:177.722933pt;}
.y25{bottom:182.671467pt;}
.yf3{bottom:183.911600pt;}
.y10f{bottom:184.037600pt;}
.y13a{bottom:184.743733pt;}
.y150{bottom:185.981200pt;}
.y56{bottom:186.101200pt;}
.yc7{bottom:186.227200pt;}
.ya3{bottom:186.234533pt;}
.y86{bottom:186.381200pt;}
.y15f{bottom:190.930400pt;}
.y19f{bottom:191.056267pt;}
.yf2{bottom:191.248400pt;}
.y10e{bottom:198.515467pt;}
.y24{bottom:198.671467pt;}
.y139{bottom:199.189867pt;}
.y14f{bottom:201.981200pt;}
.y55{bottom:202.101200pt;}
.yc6{bottom:202.227200pt;}
.ya2{bottom:202.234533pt;}
.y85{bottom:202.381200pt;}
.y15e{bottom:204.263733pt;}
.y19e{bottom:204.389600pt;}
.y10d{bottom:212.958133pt;}
.yf1{bottom:213.024400pt;}
.y138{bottom:213.636133pt;}
.y23{bottom:214.671467pt;}
.y15d{bottom:217.597067pt;}
.y19d{bottom:217.722933pt;}
.y14e{bottom:217.981200pt;}
.y54{bottom:218.101200pt;}
.yc5{bottom:218.227200pt;}
.ya1{bottom:218.234533pt;}
.y84{bottom:218.381200pt;}
.yf0{bottom:220.361333pt;}
.y10c{bottom:227.400800pt;}
.y137{bottom:228.082267pt;}
.y22{bottom:230.671467pt;}
.y15c{bottom:230.930400pt;}
.y19c{bottom:231.056267pt;}
.y14d{bottom:233.981200pt;}
.y53{bottom:234.101200pt;}
.yc4{bottom:234.227200pt;}
.ya0{bottom:234.234533pt;}
.y83{bottom:234.381200pt;}
.y10b{bottom:241.843467pt;}
.yef{bottom:242.137333pt;}
.y136{bottom:242.528400pt;}
.y15b{bottom:244.263733pt;}
.y19b{bottom:244.389600pt;}
.y21{bottom:246.671467pt;}
.yee{bottom:249.474133pt;}
.y14c{bottom:249.981200pt;}
.y52{bottom:250.101200pt;}
.yc3{bottom:250.227200pt;}
.y9f{bottom:250.234533pt;}
.y82{bottom:250.381200pt;}
.y10a{bottom:256.286133pt;}
.y135{bottom:256.974667pt;}
.y15a{bottom:257.597067pt;}
.y19a{bottom:257.722933pt;}
.y20{bottom:262.671467pt;}
.y14b{bottom:265.981200pt;}
.y51{bottom:266.101200pt;}
.yc2{bottom:266.227200pt;}
.y9e{bottom:266.234533pt;}
.y81{bottom:266.381200pt;}
.y109{bottom:270.728800pt;}
.y159{bottom:270.930400pt;}
.y199{bottom:271.056267pt;}
.yed{bottom:271.250133pt;}
.y134{bottom:271.420800pt;}
.yec{bottom:278.587067pt;}
.y1f{bottom:278.671467pt;}
.y14a{bottom:281.981200pt;}
.y50{bottom:282.101200pt;}
.yc1{bottom:282.227200pt;}
.y9d{bottom:282.234533pt;}
.y80{bottom:282.381200pt;}
.y158{bottom:284.263733pt;}
.y198{bottom:284.389600pt;}
.y108{bottom:285.171467pt;}
.y133{bottom:285.867067pt;}
.y1e{bottom:294.671467pt;}
.y197{bottom:297.722933pt;}
.y149{bottom:297.981200pt;}
.y4f{bottom:298.101200pt;}
.yc0{bottom:298.227200pt;}
.y9c{bottom:298.234533pt;}
.y7f{bottom:298.381200pt;}
.y107{bottom:299.614133pt;}
.y132{bottom:300.313200pt;}
.yeb{bottom:300.363067pt;}
.yea{bottom:307.699867pt;}
.y1d{bottom:310.671467pt;}
.y196{bottom:311.056267pt;}
.y148{bottom:313.981200pt;}
.y106{bottom:314.056800pt;}
.y4e{bottom:314.101200pt;}
.ybf{bottom:314.227200pt;}
.y9b{bottom:314.234533pt;}
.y7e{bottom:314.381200pt;}
.y131{bottom:314.755733pt;}
.y195{bottom:324.389600pt;}
.y1c{bottom:326.671467pt;}
.y105{bottom:328.523333pt;}
.ye9{bottom:329.475867pt;}
.y4d{bottom:330.101200pt;}
.ybe{bottom:330.227200pt;}
.y9a{bottom:330.234533pt;}
.y7d{bottom:330.381200pt;}
.ye8{bottom:336.812800pt;}
.y194{bottom:337.722933pt;}
.y27{bottom:342.671467pt;}
.y130{bottom:342.766400pt;}
.y104{bottom:342.966000pt;}
.y147{bottom:345.981200pt;}
.y4c{bottom:346.101200pt;}
.ybd{bottom:346.227200pt;}
.y99{bottom:346.234533pt;}
.y7c{bottom:346.381200pt;}
.y193{bottom:351.056267pt;}
.y103{bottom:357.408667pt;}
.ye7{bottom:358.588800pt;}
.y1b{bottom:358.671467pt;}
.y4b{bottom:362.101200pt;}
.ybc{bottom:362.227200pt;}
.y98{bottom:362.234533pt;}
.y7b{bottom:362.381200pt;}
.y192{bottom:364.389600pt;}
.ye6{bottom:365.925600pt;}
.y102{bottom:371.851333pt;}
.y191{bottom:377.722933pt;}
.y4a{bottom:378.101200pt;}
.ybb{bottom:378.227200pt;}
.y97{bottom:378.234533pt;}
.y7a{bottom:378.381200pt;}
.y101{bottom:386.294000pt;}
.ye5{bottom:387.701600pt;}
.y12f{bottom:390.340400pt;}
.y190{bottom:391.056267pt;}
.y49{bottom:394.101200pt;}
.yba{bottom:394.227200pt;}
.y96{bottom:394.234533pt;}
.y79{bottom:394.381200pt;}
.ye4{bottom:395.038533pt;}
.y100{bottom:400.736667pt;}
.y18f{bottom:404.389600pt;}
.y12e{bottom:404.786533pt;}
.y48{bottom:410.101200pt;}
.y95{bottom:410.234533pt;}
.y78{bottom:410.381200pt;}
.yff{bottom:415.179333pt;}
.ye3{bottom:416.814533pt;}
.y18e{bottom:417.722933pt;}
.y12d{bottom:419.232667pt;}
.ye2{bottom:424.151333pt;}
.y47{bottom:426.101200pt;}
.yb9{bottom:426.227200pt;}
.y94{bottom:426.234533pt;}
.y77{bottom:426.381200pt;}
.y19{bottom:426.967600pt;}
.y18d{bottom:431.056267pt;}
.y12c{bottom:433.682400pt;}
.y46{bottom:442.101200pt;}
.y93{bottom:442.234533pt;}
.y76{bottom:442.381200pt;}
.yfe{bottom:443.187200pt;}
.y18c{bottom:444.389600pt;}
.ye1{bottom:445.927333pt;}
.y12b{bottom:448.125067pt;}
.ye0{bottom:453.264267pt;}
.y18{bottom:456.172933pt;}
.y18b{bottom:457.722933pt;}
.y146{bottom:458.101200pt;}
.yb8{bottom:458.107200pt;}
.y92{bottom:458.234533pt;}
.y12a{bottom:462.571333pt;}
.y17{bottom:469.506267pt;}
.y18a{bottom:471.056267pt;}
.y45{bottom:474.101200pt;}
.yfd{bottom:474.141200pt;}
.y75{bottom:474.381200pt;}
.ydf{bottom:475.040267pt;}
.y129{bottom:477.017467pt;}
.yde{bottom:482.377067pt;}
.y16{bottom:482.839600pt;}
.y189{bottom:484.389600pt;}
.y145{bottom:490.101200pt;}
.y91{bottom:490.234533pt;}
.y128{bottom:491.463733pt;}
.y15{bottom:496.172933pt;}
.y188{bottom:497.722933pt;}
.ydd{bottom:504.153067pt;}
.y127{bottom:505.909867pt;}
.y44{bottom:505.981200pt;}
.y144{bottom:506.101200pt;}
.yb7{bottom:506.227200pt;}
.y90{bottom:506.234533pt;}
.y74{bottom:506.247867pt;}
.y14{bottom:509.506267pt;}
.y187{bottom:511.056267pt;}
.ydc{bottom:511.486400pt;}
.y126{bottom:520.356133pt;}
.yfb{bottom:522.101200pt;}
.yb6{bottom:522.227200pt;}
.y73{bottom:522.247867pt;}
.y13{bottom:522.839600pt;}
.y186{bottom:524.389600pt;}
.y125{bottom:534.802267pt;}
.y12{bottom:536.172933pt;}
.y185{bottom:537.722933pt;}
.y8f{bottom:538.101200pt;}
.yb5{bottom:538.227200pt;}
.y72{bottom:538.247867pt;}
.ydb{bottom:544.599200pt;}
.y124{bottom:549.248533pt;}
.y11{bottom:549.506267pt;}
.y184{bottom:551.056267pt;}
.yda{bottom:551.937867pt;}
.y43{bottom:554.101200pt;}
.yb4{bottom:554.227200pt;}
.y71{bottom:554.247867pt;}
.y10{bottom:562.839600pt;}
.y123{bottom:563.694667pt;}
.y183{bottom:564.389600pt;}
.y42{bottom:570.101200pt;}
.y70{bottom:570.247867pt;}
.yf{bottom:576.172933pt;}
.y182{bottom:577.722933pt;}
.y122{bottom:578.140933pt;}
.y41{bottom:586.101200pt;}
.y6f{bottom:586.247867pt;}
.yd9{bottom:588.007867pt;}
.ye{bottom:589.506267pt;}
.y181{bottom:591.056267pt;}
.y121{bottom:592.583333pt;}
.y40{bottom:602.101200pt;}
.y6e{bottom:602.247867pt;}
.yd{bottom:602.839600pt;}
.y180{bottom:604.389600pt;}
.yc{bottom:616.172933pt;}
.y17f{bottom:617.722933pt;}
.y3f{bottom:618.101200pt;}
.y6d{bottom:618.247867pt;}
.y120{bottom:620.594000pt;}
.y17e{bottom:631.056267pt;}
.y3e{bottom:634.101200pt;}
.yd8{bottom:634.114533pt;}
.yd3{bottom:634.234533pt;}
.y6c{bottom:634.247867pt;}
.y17d{bottom:644.389600pt;}
.y3d{bottom:650.101200pt;}
.yd7{bottom:650.114533pt;}
.yd2{bottom:650.234533pt;}
.y6b{bottom:650.247867pt;}
.y11f{bottom:651.554533pt;}
.y17c{bottom:657.722933pt;}
.yb{bottom:659.500933pt;}
.y3c{bottom:666.101200pt;}
.yd6{bottom:666.114533pt;}
.yd1{bottom:666.234533pt;}
.yb3{bottom:666.247867pt;}
.y11e{bottom:668.887867pt;}
.y17b{bottom:671.056267pt;}
.ya{bottom:672.300933pt;}
.y3b{bottom:682.101200pt;}
.yd5{bottom:682.114533pt;}
.y6a{bottom:682.247867pt;}
.y17a{bottom:684.389600pt;}
.y9{bottom:696.439600pt;}
.y179{bottom:697.722933pt;}
.y3a{bottom:698.101200pt;}
.yd4{bottom:698.114533pt;}
.yd0{bottom:698.234533pt;}
.yb2{bottom:698.247867pt;}
.y178{bottom:711.056267pt;}
.y39{bottom:714.101200pt;}
.y69{bottom:714.114533pt;}
.ycf{bottom:714.234533pt;}
.yb1{bottom:714.247867pt;}
.y177{bottom:724.389600pt;}
.y8{bottom:727.106267pt;}
.y38{bottom:730.101200pt;}
.y68{bottom:730.114533pt;}
.y11d{bottom:730.234533pt;}
.yb0{bottom:730.247867pt;}
.y176{bottom:737.722933pt;}
.y7{bottom:745.433333pt;}
.y37{bottom:746.101200pt;}
.y67{bottom:746.114533pt;}
.y11c{bottom:746.234533pt;}
.yaf{bottom:746.247867pt;}
.y175{bottom:751.056267pt;}
.y1b5{bottom:751.058933pt;}
.y6{bottom:759.004267pt;}
.y36{bottom:762.101200pt;}
.y66{bottom:762.114533pt;}
.y11b{bottom:762.234533pt;}
.yae{bottom:762.247867pt;}
.y174{bottom:764.389600pt;}
.y1b4{bottom:764.392267pt;}
.y173{bottom:777.722933pt;}
.y1b3{bottom:777.725600pt;}
.y35{bottom:778.101200pt;}
.y65{bottom:778.114533pt;}
.y11a{bottom:778.234533pt;}
.yad{bottom:778.247867pt;}
.y5{bottom:783.363733pt;}
.y172{bottom:791.056267pt;}
.y1b2{bottom:791.058933pt;}
.y34{bottom:794.101200pt;}
.y64{bottom:794.114533pt;}
.y119{bottom:794.234533pt;}
.yac{bottom:794.247867pt;}
.y171{bottom:804.389600pt;}
.y1b1{bottom:804.392267pt;}
.y4{bottom:807.369067pt;}
.y33{bottom:810.101200pt;}
.y63{bottom:810.114533pt;}
.yab{bottom:810.247867pt;}
.y170{bottom:817.722933pt;}
.y1b0{bottom:817.725600pt;}
.y32{bottom:826.101200pt;}
.y1bc{bottom:826.104533pt;}
.y62{bottom:826.114533pt;}
.y118{bottom:826.234533pt;}
.yaa{bottom:826.247867pt;}
.y16f{bottom:831.056267pt;}
.y1af{bottom:831.058933pt;}
.y3{bottom:831.355733pt;}
.y31{bottom:842.101200pt;}
.y1bb{bottom:842.104533pt;}
.y61{bottom:842.114533pt;}
.y117{bottom:842.234533pt;}
.ya9{bottom:842.247867pt;}
.y16e{bottom:844.389600pt;}
.y1ae{bottom:844.392267pt;}
.y16d{bottom:857.722933pt;}
.y1ad{bottom:857.725600pt;}
.y30{bottom:858.101200pt;}
.y1ba{bottom:858.104533pt;}
.y60{bottom:858.114533pt;}
.ya8{bottom:858.247867pt;}
.y16c{bottom:871.056267pt;}
.y1ac{bottom:871.058933pt;}
.y2{bottom:871.060800pt;}
.yfc{bottom:873.981200pt;}
.y2f{bottom:874.101200pt;}
.y1b9{bottom:874.104533pt;}
.y5f{bottom:874.114533pt;}
.y16b{bottom:884.389600pt;}
.y1ab{bottom:884.392267pt;}
.y2e{bottom:890.101200pt;}
.y1b8{bottom:890.104533pt;}
.y5e{bottom:890.114533pt;}
.ya7{bottom:890.247867pt;}
.y16a{bottom:897.722933pt;}
.y1aa{bottom:897.725600pt;}
.y2d{bottom:906.101200pt;}
.y1b7{bottom:906.104533pt;}
.y5d{bottom:906.114533pt;}
.y169{bottom:911.056267pt;}
.y1a9{bottom:911.058933pt;}
.y2c{bottom:922.101200pt;}
.y1b6{bottom:922.104533pt;}
.y5c{bottom:922.114533pt;}
.y168{bottom:924.389600pt;}
.y1a8{bottom:924.392267pt;}
.y29{bottom:951.795067pt;}
.y8e{bottom:965.392400pt;}
.y28{bottom:965.395067pt;}
.h6{height:18.662500pt;}
.h2{height:27.216146pt;}
.h9{height:31.074833pt;}
.h8{height:31.083333pt;}
.h1a{height:31.094033pt;}
.h7{height:31.104167pt;}
.hc{height:33.048177pt;}
.h18{height:33.280100pt;}
.h15{height:33.293967pt;}
.h17{height:33.294500pt;}
.h19{height:33.307833pt;}
.h14{height:33.308367pt;}
.h16{height:33.308900pt;}
.ha{height:38.828125pt;}
.hd{height:38.854167pt;}
.hb{height:38.880208pt;}
.h5{height:45.799071pt;}
.h3{height:46.593750pt;}
.h4{height:54.359375pt;}
.h13{height:60.402267pt;}
.h12{height:60.402800pt;}
.he{height:60.416167pt;}
.h10{height:60.416667pt;}
.h11{height:60.437500pt;}
.hf{height:60.468967pt;}
.h1{height:1058.000000pt;}
.h0{height:1058.268000pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xa{left:68.031467pt;}
.x15{left:69.921200pt;}
.x8{left:85.417333pt;}
.x1{left:86.929067pt;}
.x19{left:88.818933pt;}
.x22{left:94.488133pt;}
.xb{left:98.271467pt;}
.x17{left:103.937067pt;}
.x1b{left:107.716533pt;}
.x3{left:111.491200pt;}
.x20{left:113.393200pt;}
.x6{left:117.170133pt;}
.xc{left:128.684800pt;}
.x4{left:143.619200pt;}
.x1d{left:169.031467pt;}
.x5{left:189.223467pt;}
.x1a{left:238.888267pt;}
.x1c{left:275.076533pt;}
.x16{left:398.027867pt;}
.x9{left:404.481333pt;}
.xd{left:406.324800pt;}
.x11{left:425.228133pt;}
.x7{left:427.103467pt;}
.x1f{left:432.752400pt;}
.xe{left:436.564800pt;}
.x21{left:451.611867pt;}
.x12{left:455.468133pt;}
.x1e{left:511.004800pt;}
.x18{left:533.942533pt;}
.x13{left:544.810133pt;}
.x10{left:589.770933pt;}
.x2{left:626.078800pt;}
.x23{left:637.449067pt;}
.xf{left:643.752133pt;}
.x14{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; }
  