
    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_6e96146435ee8a171c7f8605.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.958008;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_9318b4795329a24034c59e96.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.941895;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_85f86a9bbcfcc2184d283e79.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.064000;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_397bc0a3ab10105cddb0c5e1.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_1c43ed24d1f0577fafa29ffd.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_f312a84b72c84ad98036f8f0.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.914551;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_a11f3aceb1041fb060e931e8.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.926758;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_3ca2bdbd1b227519b3b204f4.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.968000;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_0ba91f8ac7c1ff916f2916e8.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.063000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_9131625ab8e923c3b46770d2.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.069000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_7db4ddee7e8357bbce2946d1.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_6f8051c67d7208d1d983a450.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_7db4ddee7e8357bbce2946d1.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_6f8051c67d7208d1d983a450.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.666504;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:fff;src:url('chunks/assets/font_0ba91f8ac7c1ff916f2916e8.woff2')format("woff");}.fff{font-family:fff;line-height:1.063000;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:ff10;src:url('chunks/assets/font_9131625ab8e923c3b46770d2.woff2')format("woff");}.ff10{font-family:ff10;line-height:1.069000;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:ff11;src:url('chunks/assets/font_aff255051b22c8090ecba266.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.666504;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:ff12;src:url('chunks/assets/font_0b96c413ab70143e15333277.woff2')format("woff");}.ff12{font-family:ff12;line-height:1.104004;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff13;src:url('chunks/assets/font_5575ed46f85e991e2fc03807.woff2')format("woff");}.ff13{font-family:ff13;line-height:1.104004;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff14;src:url('chunks/assets/font_ca0077a688550bb55855f04b.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.762207;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:ff15;src:url('chunks/assets/font_4ff37a043daab3a2f8a0fab4.woff2')format("woff");}.ff15{font-family:ff15;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff16;src:url('chunks/assets/font_0cf44f290b373ec751b3e740.woff2')format("woff");}.ff16{font-family:ff16;line-height:0.666504;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:ff17;src:url('chunks/assets/font_6f8051c67d7208d1d983a450.woff2')format("woff");}.ff17{font-family:ff17;line-height:0.666504;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:ff18;src:url('chunks/assets/font_4e16eb28f6a73f1610886415.woff2')format("woff");}.ff18{font-family:ff18;line-height:1.104004;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff19;src:url('chunks/assets/font_526804dcf4e89c13e331813d.woff2')format("woff");}.ff19{font-family:ff19;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1a;src:url('chunks/assets/font_d8c0ba1312cb9875195762a6.woff2')format("woff");}.ff1a{font-family:ff1a;line-height:0.666504;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:ff1b;src:url('chunks/assets/font_602f39ffa9ea5e0fe5fa4fb0.woff2')format("woff");}.ff1b{font-family:ff1b;line-height:0.666504;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;}
.m1{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);}
.m0{transform:matrix(0.277778,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277778,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277778,0.000000,0.000000,0.250000,0,0);}
.m2{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);}
.v1{vertical-align:-28.725000px;}
.v0{vertical-align:0.000000px;}
.ls2c{letter-spacing:-3.780000px;}
.ls29{letter-spacing:-2.160000px;}
.ls2a{letter-spacing:-1.920000px;}
.lsf{letter-spacing:-1.584000px;}
.ls26{letter-spacing:-1.440000px;}
.ls18{letter-spacing:-0.720000px;}
.ls23{letter-spacing:-0.600000px;}
.ls17{letter-spacing:-0.540000px;}
.ls6{letter-spacing:-0.462000px;}
.ls7{letter-spacing:-0.396000px;}
.ls1e{letter-spacing:-0.360000px;}
.ls2{letter-spacing:-0.330000px;}
.ls16{letter-spacing:-0.300000px;}
.ls3{letter-spacing:-0.264000px;}
.ls34{letter-spacing:-0.241315px;}
.ls9{letter-spacing:-0.240000px;}
.ls35{letter-spacing:-0.201096px;}
.ls8{letter-spacing:-0.198000px;}
.ls2e{letter-spacing:-0.180000px;}
.ls36{letter-spacing:-0.160877px;}
.ls39{letter-spacing:-0.160814px;}
.ls3e{letter-spacing:-0.132097px;}
.ls4{letter-spacing:-0.132000px;}
.ls38{letter-spacing:-0.120658px;}
.ls3b{letter-spacing:-0.120611px;}
.ls40{letter-spacing:-0.088064px;}
.ls37{letter-spacing:-0.080438px;}
.ls3a{letter-spacing:-0.080407px;}
.ls5{letter-spacing:-0.066000px;}
.ls1d{letter-spacing:-0.060000px;}
.ls3f{letter-spacing:-0.044032px;}
.ls0{letter-spacing:0.000000px;}
.ls42{letter-spacing:0.052839px;}
.ls3d{letter-spacing:0.057242px;}
.lsd{letter-spacing:0.066000px;}
.ls28{letter-spacing:0.120000px;}
.lsa{letter-spacing:0.132000px;}
.ls24{letter-spacing:0.180000px;}
.ls32{letter-spacing:0.237201px;}
.ls1c{letter-spacing:0.270000px;}
.ls19{letter-spacing:0.300000px;}
.ls2f{letter-spacing:0.360000px;}
.ls10{letter-spacing:0.396000px;}
.lsb{letter-spacing:0.528000px;}
.ls1b{letter-spacing:0.540000px;}
.ls11{letter-spacing:0.594000px;}
.ls1f{letter-spacing:0.600000px;}
.lsc{letter-spacing:0.660000px;}
.ls33{letter-spacing:0.702000px;}
.ls1a{letter-spacing:0.720000px;}
.ls15{letter-spacing:0.726000px;}
.ls27{letter-spacing:0.780000px;}
.lse{letter-spacing:0.792000px;}
.ls20{letter-spacing:0.900000px;}
.ls13{letter-spacing:1.056000px;}
.ls2d{letter-spacing:1.080000px;}
.ls25{letter-spacing:1.140000px;}
.ls12{letter-spacing:1.188000px;}
.ls2b{letter-spacing:1.200000px;}
.ls1{letter-spacing:1.224000px;}
.ls14{letter-spacing:1.254000px;}
.ls22{letter-spacing:1.500000px;}
.ls21{letter-spacing:1.620000px;}
.ls30{letter-spacing:2.040000px;}
.ls41{letter-spacing:33.051248px;}
.ls31{letter-spacing:36.524599px;}
.ls3c{letter-spacing:36.538862px;}
.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;}
}
.wsba{word-spacing:-44.032200px;}
.wsa3{word-spacing:-40.219200px;}
.wsa5{word-spacing:-40.203600px;}
.ws9a{word-spacing:-15.714000px;}
.ws49{word-spacing:-13.464000px;}
.ws8f{word-spacing:-13.440000px;}
.ws6c{word-spacing:-12.900000px;}
.ws48{word-spacing:-12.804000px;}
.ws47{word-spacing:-12.606000px;}
.ws8c{word-spacing:-12.480000px;}
.ws6f{word-spacing:-12.300000px;}
.ws8d{word-spacing:-12.180000px;}
.ws6d{word-spacing:-12.120000px;}
.ws8e{word-spacing:-11.220000px;}
.wsb8{word-spacing:-11.008050px;}
.wsb7{word-spacing:-10.964018px;}
.wsb9{word-spacing:-10.919986px;}
.ws6e{word-spacing:-9.240000px;}
.ws9d{word-spacing:-8.727566px;}
.wsa8{word-spacing:-8.724181px;}
.ws9e{word-spacing:-8.647128px;}
.wsa1{word-spacing:-8.606909px;}
.wsa9{word-spacing:-8.603570px;}
.wsa0{word-spacing:-8.566690px;}
.wsab{word-spacing:-8.563367px;}
.wsa2{word-spacing:-8.526470px;}
.ws9f{word-spacing:-7.963402px;}
.wsa7{word-spacing:-7.960313px;}
.wsa4{word-spacing:-7.923182px;}
.wsaa{word-spacing:-7.920109px;}
.ws9c{word-spacing:-7.882963px;}
.wsa6{word-spacing:-7.879906px;}
.ws9b{word-spacing:-7.802525px;}
.ws8b{word-spacing:-7.620000px;}
.ws4d{word-spacing:-3.696000px;}
.ws4f{word-spacing:-3.366000px;}
.ws6{word-spacing:-3.168000px;}
.ws93{word-spacing:-3.120000px;}
.ws2{word-spacing:-3.102000px;}
.ws59{word-spacing:-3.036000px;}
.ws7b{word-spacing:-3.000000px;}
.ws3{word-spacing:-2.970000px;}
.ws1d{word-spacing:-2.880000px;}
.ws66{word-spacing:-2.838000px;}
.ws65{word-spacing:-2.820000px;}
.ws30{word-spacing:-2.772000px;}
.ws84{word-spacing:-2.760000px;}
.ws2e{word-spacing:-2.706000px;}
.ws39{word-spacing:-2.640000px;}
.ws2f{word-spacing:-2.574000px;}
.ws21{word-spacing:-2.442000px;}
.ws29{word-spacing:-2.310000px;}
.ws20{word-spacing:-2.244000px;}
.ws2b{word-spacing:-2.112000px;}
.ws99{word-spacing:-1.920000px;}
.ws14{word-spacing:-1.914000px;}
.ws1b{word-spacing:-1.860000px;}
.ws58{word-spacing:-1.848000px;}
.ws54{word-spacing:-1.716000px;}
.ws15{word-spacing:-1.650000px;}
.ws91{word-spacing:-1.620000px;}
.ws35{word-spacing:-1.584000px;}
.ws90{word-spacing:-1.560000px;}
.ws22{word-spacing:-1.518000px;}
.ws2a{word-spacing:-1.386000px;}
.ws17{word-spacing:-1.380000px;}
.ws4e{word-spacing:-1.320000px;}
.wse{word-spacing:-1.254000px;}
.ws1{word-spacing:-1.224000px;}
.ws7{word-spacing:-1.188000px;}
.ws52{word-spacing:-1.122000px;}
.ws5b{word-spacing:-1.056000px;}
.ws64{word-spacing:-1.020000px;}
.ws55{word-spacing:-0.990000px;}
.ws5{word-spacing:-0.924000px;}
.ws85{word-spacing:-0.900000px;}
.ws31{word-spacing:-0.858000px;}
.ws4c{word-spacing:-0.792000px;}
.ws81{word-spacing:-0.780000px;}
.ws25{word-spacing:-0.726000px;}
.ws69{word-spacing:-0.720000px;}
.ws40{word-spacing:-0.660000px;}
.ws83{word-spacing:-0.600000px;}
.ws68{word-spacing:-0.594000px;}
.ws72{word-spacing:-0.540000px;}
.wsf{word-spacing:-0.528000px;}
.wsd{word-spacing:-0.462000px;}
.ws34{word-spacing:-0.396000px;}
.ws98{word-spacing:-0.360000px;}
.ws61{word-spacing:-0.330000px;}
.ws71{word-spacing:-0.270000px;}
.ws45{word-spacing:-0.264000px;}
.ws19{word-spacing:-0.240000px;}
.ws12{word-spacing:-0.198000px;}
.ws8a{word-spacing:-0.120000px;}
.wsbc{word-spacing:-0.044032px;}
.ws0{word-spacing:0.000000px;}
.wsb6{word-spacing:0.040204px;}
.wsaf{word-spacing:0.040219px;}
.wsbd{word-spacing:0.044032px;}
.wsb5{word-spacing:0.080407px;}
.wsae{word-spacing:0.080438px;}
.wsbe{word-spacing:0.088064px;}
.ws7c{word-spacing:0.120000px;}
.wsb3{word-spacing:0.120611px;}
.wsad{word-spacing:0.120658px;}
.ws60{word-spacing:0.132000px;}
.wsbb{word-spacing:0.132097px;}
.wsb4{word-spacing:0.160814px;}
.wsb2{word-spacing:0.160877px;}
.ws56{word-spacing:0.198000px;}
.wsac{word-spacing:0.201096px;}
.wsb1{word-spacing:0.241315px;}
.ws36{word-spacing:0.264000px;}
.ws11{word-spacing:0.330000px;}
.ws1c{word-spacing:0.360000px;}
.ws27{word-spacing:0.396000px;}
.ws1f{word-spacing:0.528000px;}
.ws4b{word-spacing:0.594000px;}
.ws16{word-spacing:0.720000px;}
.ws41{word-spacing:0.792000px;}
.ws7d{word-spacing:0.840000px;}
.ws4a{word-spacing:0.858000px;}
.ws5e{word-spacing:0.990000px;}
.ws5f{word-spacing:1.056000px;}
.ws6a{word-spacing:1.080000px;}
.ws57{word-spacing:1.122000px;}
.wsc{word-spacing:1.188000px;}
.ws63{word-spacing:1.200000px;}
.wsb{word-spacing:1.254000px;}
.ws95{word-spacing:1.260000px;}
.ws3f{word-spacing:1.320000px;}
.ws76{word-spacing:1.380000px;}
.ws43{word-spacing:1.386000px;}
.ws80{word-spacing:1.440000px;}
.ws53{word-spacing:1.452000px;}
.ws28{word-spacing:1.518000px;}
.ws50{word-spacing:1.584000px;}
.ws24{word-spacing:1.650000px;}
.ws46{word-spacing:1.716000px;}
.ws92{word-spacing:1.740000px;}
.ws94{word-spacing:1.800000px;}
.wsa{word-spacing:1.848000px;}
.ws42{word-spacing:1.914000px;}
.ws87{word-spacing:1.920000px;}
.ws77{word-spacing:2.160000px;}
.ws33{word-spacing:2.178000px;}
.ws73{word-spacing:2.220000px;}
.ws51{word-spacing:2.244000px;}
.ws74{word-spacing:2.340000px;}
.ws32{word-spacing:2.376000px;}
.ws88{word-spacing:2.400000px;}
.ws1a{word-spacing:2.460000px;}
.ws67{word-spacing:2.574000px;}
.ws75{word-spacing:2.700000px;}
.ws26{word-spacing:2.706000px;}
.ws78{word-spacing:2.760000px;}
.ws38{word-spacing:2.772000px;}
.ws18{word-spacing:2.820000px;}
.ws5c{word-spacing:2.970000px;}
.ws23{word-spacing:3.102000px;}
.ws37{word-spacing:3.168000px;}
.ws8{word-spacing:3.234000px;}
.ws86{word-spacing:3.240000px;}
.ws4{word-spacing:3.300000px;}
.ws13{word-spacing:3.366000px;}
.ws89{word-spacing:3.420000px;}
.ws5d{word-spacing:3.432000px;}
.ws2d{word-spacing:3.564000px;}
.ws44{word-spacing:3.630000px;}
.ws9{word-spacing:3.762000px;}
.ws1e{word-spacing:3.828000px;}
.ws62{word-spacing:3.894000px;}
.ws5a{word-spacing:3.960000px;}
.ws70{word-spacing:4.092000px;}
.ws96{word-spacing:4.260000px;}
.ws97{word-spacing:4.320000px;}
.ws3c{word-spacing:4.752000px;}
.ws7e{word-spacing:4.800000px;}
.ws3e{word-spacing:4.884000px;}
.ws79{word-spacing:5.040000px;}
.ws2c{word-spacing:5.214000px;}
.ws82{word-spacing:5.340000px;}
.ws3d{word-spacing:5.346000px;}
.ws6b{word-spacing:5.700000px;}
.ws7f{word-spacing:5.880000px;}
.ws3a{word-spacing:6.270000px;}
.ws3b{word-spacing:6.468000px;}
.ws7a{word-spacing:6.600000px;}
.wsb0{word-spacing:8.204717px;}
.ws10{word-spacing:9.786000px;}
._0{margin-left:-12.572280px;}
._b{margin-left:-8.169600px;}
._4{margin-left:-6.593400px;}
._8{margin-left:-5.388840px;}
._6{margin-left:-4.291920px;}
._1{margin-left:-3.114720px;}
._2{margin-left:-1.171800px;}
._3{width:1.156680px;}
._5{width:2.625120px;}
._7{width:3.788400px;}
._a{width:4.818000px;}
._9{width:7.875000px;}
._c{width:455.752200px;}
.fc2{color:transparent;}
.fc4{color:rgb(119,119,119);}
.fc3{color:rgb(95,95,95);}
.fc1{color:rgb(146,146,146);}
.fc0{color:rgb(0,0,0);}
.fs8{font-size:40.203600px;}
.fs7{font-size:40.219200px;}
.fs3{font-size:42.000000px;}
.fs9{font-size:44.032200px;}
.fs5{font-size:45.000000px;}
.fs6{font-size:54.000000px;}
.fs4{font-size:60.000000px;}
.fs2{font-size:66.000000px;}
.fs1{font-size:72.000000px;}
.fs0{font-size:75.600000px;}
.y0{bottom:0.000000px;}
.y198{bottom:2.530800px;}
.y1da{bottom:2.534276px;}
.y176{bottom:2.650800px;}
.y16a{bottom:2.658900px;}
.y1c4{bottom:2.660556px;}
.y1de{bottom:2.691150px;}
.y1a0{bottom:2.692650px;}
.y179{bottom:2.731800px;}
.y15f{bottom:2.890200px;}
.y19d{bottom:2.891550px;}
.y1db{bottom:2.893376px;}
.y17c{bottom:3.050400px;}
.y17f{bottom:3.129900px;}
.y181{bottom:3.170400px;}
.y184{bottom:3.249750px;}
.y1c8{bottom:3.256930px;}
.y170{bottom:3.256950px;}
.y1b3{bottom:3.289200px;}
.y173{bottom:3.329550px;}
.y1c9{bottom:3.331526px;}
.y159{bottom:3.369450px;}
.y195{bottom:3.448950px;}
.y1be{bottom:3.488700px;}
.y164{bottom:3.490200px;}
.y1bd{bottom:3.495580px;}
.y163{bottom:3.496950px;}
.yc4{bottom:3.530550px;}
.ycc{bottom:3.570450px;}
.yea{bottom:3.610350px;}
.yff{bottom:3.650250px;}
.yd3{bottom:3.690150px;}
.ydb{bottom:3.728550px;}
.y12c{bottom:3.730050px;}
.ye1{bottom:3.769950px;}
.y107{bottom:3.967950px;}
.y13f{bottom:3.969450px;}
.y11e{bottom:4.007400px;}
.ye8{bottom:4.089150px;}
.yed{bottom:4.129050px;}
.y102{bottom:4.168950px;}
.y129{bottom:4.208850px;}
.yde{bottom:4.248750px;}
.ye4{bottom:4.288650px;}
.y125{bottom:6.084150px;}
.yc9{bottom:10.273650px;}
.y1b8{bottom:11.943900px;}
.y15b{bottom:12.143550px;}
.y123{bottom:12.867000px;}
.y197{bottom:15.214050px;}
.y1d9{bottom:15.215550px;}
.y175{bottom:15.334050px;}
.y1b9{bottom:15.336176px;}
.y1c3{bottom:15.341830px;}
.y178{bottom:15.414900px;}
.ycb{bottom:15.540450px;}
.y19b{bottom:15.574650px;}
.y126{bottom:15.660150px;}
.y13b{bottom:15.687282px;}
.y1c7{bottom:15.696026px;}
.yda{bottom:15.698550px;}
.y12b{bottom:15.700050px;}
.y17b{bottom:15.733800px;}
.ye0{bottom:15.739950px;}
.y17e{bottom:15.813150px;}
.y1dc{bottom:15.818803px;}
.y1d7{bottom:15.931728px;}
.y183{bottom:15.933000px;}
.y1bc{bottom:15.934676px;}
.y105{bottom:15.937950px;}
.y13e{bottom:15.939450px;}
.y172{bottom:16.012800px;}
.y1b2{bottom:16.018258px;}
.y11d{bottom:16.048764px;}
.yec{bottom:16.099050px;}
.y101{bottom:16.138950px;}
.y128{bottom:16.183638px;}
.ydd{bottom:16.218750px;}
.ye3{bottom:16.258650px;}
.y140{bottom:16.657650px;}
.yce{bottom:18.054150px;}
.yd1{bottom:27.630150px;}
.y13a{bottom:27.652494px;}
.y1c2{bottom:27.780926px;}
.y1c6{bottom:27.782753px;}
.y11c{bottom:28.009335px;}
.y15d{bottom:28.017450px;}
.y127{bottom:28.148850px;}
.y19a{bottom:28.257900px;}
.y16e{bottom:28.377300px;}
.y1b1{bottom:28.457354px;}
.y1d6{bottom:28.613002px;}
.y1bb{bottom:28.615950px;}
.y161{bottom:28.617450px;}
.y104{bottom:28.626150px;}
.y13d{bottom:28.627650px;}
.y124{bottom:32.976750px;}
.y139{bottom:39.617706px;}
.y11b{bottom:39.969906px;}
.yd5{bottom:40.118850px;}
.y1c1{bottom:40.462200px;}
.y1c5{bottom:40.464026px;}
.y1b0{bottom:41.138628px;}
.y1d5{bottom:41.294275px;}
.yc6{bottom:44.946750px;}
.y138{bottom:51.582918px;}
.y11a{bottom:51.930477px;}
.y166{bottom:53.143800px;}
.y1c0{bottom:53.145300px;}
.y1af{bottom:53.819902px;}
.y1d4{bottom:53.975549px;}
.y137{bottom:63.548130px;}
.y119{bottom:63.891048px;}
.y1d3{bottom:66.414645px;}
.y1ae{bottom:66.501175px;}
.y20{bottom:70.883850px;}
.y136{bottom:75.513342px;}
.y118{bottom:75.851619px;}
.y1ad{bottom:78.940272px;}
.y1d2{bottom:79.095919px;}
.y135{bottom:87.478554px;}
.y117{bottom:87.812190px;}
.y1ac{bottom:91.621545px;}
.y1d1{bottom:91.777192px;}
.y134{bottom:99.443766px;}
.y116{bottom:99.772761px;}
.y1f{bottom:99.911250px;}
.y69{bottom:102.416400px;}
.y4d{bottom:102.455550px;}
.y1d0{bottom:104.216289px;}
.y1ab{bottom:104.302819px;}
.ya7{bottom:106.476000px;}
.y133{bottom:111.408978px;}
.y80{bottom:111.481050px;}
.y115{bottom:111.733332px;}
.y1e{bottom:111.912750px;}
.y1aa{bottom:116.741915px;}
.y1cf{bottom:116.897563px;}
.y68{bottom:120.417900px;}
.y4c{bottom:120.457050px;}
.ya6{bottom:122.976000px;}
.y132{bottom:123.374190px;}
.y114{bottom:123.693903px;}
.y1d{bottom:123.914250px;}
.y11f{bottom:129.030000px;}
.y1a9{bottom:129.423189px;}
.y7f{bottom:129.481050px;}
.y1ce{bottom:129.578836px;}
.y109{bottom:131.677500px;}
.y131{bottom:135.339402px;}
.y113{bottom:135.654474px;}
.y1c{bottom:135.915750px;}
.y67{bottom:138.419400px;}
.y4b{bottom:138.458550px;}
.ya5{bottom:139.476000px;}
.y1cd{bottom:142.017933px;}
.y1a8{bottom:142.104463px;}
.y13c{bottom:144.645000px;}
.y103{bottom:144.646500px;}
.y130{bottom:147.304614px;}
.y7e{bottom:147.481050px;}
.y112{bottom:147.615045px;}
.y1b{bottom:152.169750px;}
.y1a7{bottom:154.543559px;}
.y1cc{bottom:154.699206px;}
.ya4{bottom:155.976000px;}
.y66{bottom:156.420900px;}
.y4a{bottom:156.460050px;}
.y12f{bottom:159.269826px;}
.y111{bottom:159.575616px;}
.y106{bottom:160.584450px;}
.y108{bottom:161.302650px;}
.y1a{bottom:164.171250px;}
.y7d{bottom:165.481050px;}
.y1a6{bottom:167.224833px;}
.y1cb{bottom:167.380480px;}
.y1b4{bottom:167.740500px;}
.y12e{bottom:171.235038px;}
.y110{bottom:171.536187px;}
.ya3{bottom:172.476000px;}
.y65{bottom:174.422400px;}
.y49{bottom:174.461550px;}
.y155{bottom:179.464500px;}
.y1a5{bottom:179.906106px;}
.y1ca{bottom:180.061754px;}
.y19{bottom:180.425250px;}
.y19f{bottom:181.096500px;}
.y1dd{bottom:181.098000px;}
.y100{bottom:181.552500px;}
.y12d{bottom:183.200250px;}
.y7c{bottom:183.481050px;}
.y10f{bottom:183.496758px;}
.ya2{bottom:188.976000px;}
.y64{bottom:192.423900px;}
.y48{bottom:192.463050px;}
.y186{bottom:192.500850px;}
.y1a4{bottom:192.587380px;}
.y199{bottom:194.059500px;}
.yef{bottom:195.170250px;}
.y10e{bottom:195.457329px;}
.y1a3{bottom:205.026476px;}
.ya1{bottom:205.476000px;}
.yee{bottom:206.490000px;}
.y10d{bottom:207.417900px;}
.y19c{bottom:209.634150px;}
.y19e{bottom:209.878350px;}
.y63{bottom:210.425400px;}
.y7b{bottom:210.457050px;}
.y47{bottom:210.464550px;}
.y1a2{bottom:217.707750px;}
.y10b{bottom:218.665200px;}
.y10c{bottom:219.383250px;}
.ya0{bottom:221.976000px;}
.yfe{bottom:222.177282px;}
.y62{bottom:228.426900px;}
.y7a{bottom:228.458550px;}
.y46{bottom:228.466050px;}
.y1d8{bottom:232.947000px;}
.y196{bottom:232.948500px;}
.yfd{bottom:234.142494px;}
.y9f{bottom:238.476000px;}
.yfc{bottom:246.107706px;}
.y61{bottom:246.428400px;}
.y79{bottom:246.460050px;}
.y45{bottom:246.467550px;}
.y18{bottom:251.685300px;}
.y9e{bottom:254.976000px;}
.y185{bottom:257.875500px;}
.yfb{bottom:258.072918px;}
.y60{bottom:264.429900px;}
.y78{bottom:264.461550px;}
.y44{bottom:264.469050px;}
.y17{bottom:269.686800px;}
.yfa{bottom:270.038130px;}
.y9d{bottom:271.476000px;}
.y194{bottom:273.807274px;}
.yf9{bottom:282.003342px;}
.y5f{bottom:282.431400px;}
.y77{bottom:282.463050px;}
.y43{bottom:282.470550px;}
.y193{bottom:286.488548px;}
.y16{bottom:287.688300px;}
.y9c{bottom:287.976000px;}
.yf8{bottom:293.968554px;}
.y192{bottom:299.169822px;}
.y5e{bottom:300.432900px;}
.y76{bottom:300.464550px;}
.y42{bottom:300.472050px;}
.y9b{bottom:304.476000px;}
.y15{bottom:305.689800px;}
.yf7{bottom:305.933766px;}
.y191{bottom:311.851095px;}
.yf6{bottom:317.898978px;}
.y5d{bottom:318.434400px;}
.y75{bottom:318.466050px;}
.y41{bottom:318.473550px;}
.y9a{bottom:320.976000px;}
.y14{bottom:323.691300px;}
.y190{bottom:324.290192px;}
.yf5{bottom:329.864190px;}
.y5c{bottom:336.435900px;}
.y74{bottom:336.467550px;}
.y40{bottom:336.475050px;}
.y18f{bottom:336.971465px;}
.y99{bottom:337.476000px;}
.y13{bottom:341.692800px;}
.yf4{bottom:341.829402px;}
.y18e{bottom:349.652739px;}
.yf3{bottom:353.794614px;}
.y98{bottom:353.976000px;}
.y5b{bottom:354.437400px;}
.y73{bottom:354.469050px;}
.y3f{bottom:354.476550px;}
.y12{bottom:359.694300px;}
.y18d{bottom:362.091835px;}
.yf2{bottom:365.759826px;}
.y97{bottom:370.476000px;}
.y5a{bottom:372.438900px;}
.y72{bottom:372.470550px;}
.y3e{bottom:372.478050px;}
.y18c{bottom:374.773109px;}
.y11{bottom:377.695800px;}
.yf1{bottom:377.725038px;}
.y96{bottom:386.976000px;}
.y18b{bottom:387.454383px;}
.yf0{bottom:389.690250px;}
.y59{bottom:390.440400px;}
.y71{bottom:390.472050px;}
.y3d{bottom:390.479550px;}
.y10{bottom:395.697300px;}
.y18a{bottom:399.893479px;}
.y95{bottom:403.476000px;}
.y58{bottom:408.441900px;}
.y70{bottom:408.473550px;}
.y3c{bottom:408.481050px;}
.yeb{bottom:409.980000px;}
.y189{bottom:412.574753px;}
.yf{bottom:413.698800px;}
.y94{bottom:419.976000px;}
.y188{bottom:425.256026px;}
.y57{bottom:426.443400px;}
.y6f{bottom:426.475050px;}
.ye{bottom:431.700300px;}
.ye9{bottom:434.917500px;}
.y3b{bottom:435.482400px;}
.y93{bottom:436.476000px;}
.y187{bottom:437.937300px;}
.y56{bottom:444.444900px;}
.y6e{bottom:444.476550px;}
.ye7{bottom:446.887500px;}
.yd{bottom:449.701800px;}
.y92{bottom:452.976000px;}
.y3a{bottom:453.482400px;}
.y1b6{bottom:454.458999px;}
.y121{bottom:455.655150px;}
.ye6{bottom:459.855000px;}
.y182{bottom:460.288500px;}
.y55{bottom:462.446400px;}
.y6d{bottom:462.478050px;}
.y1b5{bottom:467.382450px;}
.yc{bottom:467.703300px;}
.y120{bottom:468.099150px;}
.y91{bottom:469.476000px;}
.y39{bottom:471.482400px;}
.ye5{bottom:475.395450px;}
.y54{bottom:480.447900px;}
.y6c{bottom:480.479550px;}
.ye2{bottom:483.795000px;}
.yb{bottom:485.704800px;}
.y90{bottom:485.976000px;}
.y180{bottom:486.213000px;}
.y38{bottom:489.482400px;}
.y53{bottom:498.449400px;}
.y6b{bottom:498.481050px;}
.y17d{bottom:499.176000px;}
.y8f{bottom:502.476000px;}
.ya{bottom:503.706300px;}
.y37{bottom:507.482400px;}
.ydf{bottom:508.732500px;}
.ybf{bottom:515.999400px;}
.y52{bottom:516.450900px;}
.y8e{bottom:518.976000px;}
.y9{bottom:521.707800px;}
.y17a{bottom:525.100500px;}
.y36{bottom:525.482400px;}
.ybe{bottom:532.499400px;}
.ydc{bottom:532.672500px;}
.y51{bottom:534.452400px;}
.y8d{bottom:535.476000px;}
.y8{bottom:539.709300px;}
.y35{bottom:543.482400px;}
.ybd{bottom:548.999400px;}
.y177{bottom:551.025000px;}
.y8c{bottom:551.976000px;}
.y50{bottom:552.453900px;}
.y12a{bottom:557.610000px;}
.yd9{bottom:557.611500px;}
.y7{bottom:557.710800px;}
.y34{bottom:561.482400px;}
.ybc{bottom:565.499400px;}
.y8b{bottom:568.476000px;}
.y4f{bottom:570.455400px;}
.y6{bottom:575.712300px;}
.y174{bottom:576.951000px;}
.y33{bottom:579.482400px;}
.yd4{bottom:581.550000px;}
.ybb{bottom:581.999400px;}
.y153{bottom:584.685150px;}
.y8a{bottom:584.976000px;}
.yd8{bottom:585.758371px;}
.y4e{bottom:588.456900px;}
.y5{bottom:593.713800px;}
.y152{bottom:597.129150px;}
.y6a{bottom:597.482400px;}
.yd7{bottom:597.733638px;}
.yba{bottom:598.499400px;}
.y89{bottom:601.476000px;}
.y171{bottom:601.878000px;}
.y10a{bottom:606.283500px;}
.y32{bottom:606.458400px;}
.yd6{bottom:609.698850px;}
.y4{bottom:611.715300px;}
.yb9{bottom:614.999400px;}
.y88{bottom:617.976000px;}
.y1f0{bottom:622.199499px;}
.y151{bottom:622.332264px;}
.y31{bottom:624.459900px;}
.y16d{bottom:627.802500px;}
.yd0{bottom:630.427500px;}
.yb8{bottom:631.499400px;}
.y150{bottom:634.292835px;}
.y87{bottom:634.476000px;}
.y1ef{bottom:635.122950px;}
.y30{bottom:642.461400px;}
.y16f{bottom:643.498650px;}
.y1a1{bottom:644.995500px;}
.yd2{bottom:646.087650px;}
.y14f{bottom:646.253406px;}
.yb7{bottom:647.999400px;}
.y86{bottom:650.976000px;}
.y14e{bottom:658.213977px;}
.y2f{bottom:660.462900px;}
.y1ee{bottom:661.013732px;}
.yb6{bottom:664.499400px;}
.ycd{bottom:666.337500px;}
.y1bf{bottom:666.690000px;}
.y165{bottom:666.691500px;}
.y85{bottom:667.476000px;}
.y14d{bottom:670.174548px;}
.ycf{bottom:672.421650px;}
.y1ed{bottom:673.452828px;}
.y2e{bottom:678.464400px;}
.yb5{bottom:680.999400px;}
.y169{bottom:682.031830px;}
.y14c{bottom:682.135119px;}
.y84{bottom:683.976000px;}
.y1ec{bottom:686.134102px;}
.yca{bottom:693.270000px;}
.y14b{bottom:694.095690px;}
.y168{bottom:694.470926px;}
.y16c{bottom:694.472726px;}
.y156{bottom:695.441400px;}
.y2d{bottom:696.465900px;}
.yb4{bottom:697.499400px;}
.y1eb{bottom:698.815375px;}
.y83{bottom:700.476000px;}
.y14a{bottom:706.056261px;}
.y167{bottom:707.152200px;}
.y16b{bottom:707.154000px;}
.y1ea{bottom:711.496649px;}
.yb3{bottom:713.999400px;}
.y2c{bottom:714.467400px;}
.y82{bottom:716.976000px;}
.yc8{bottom:717.210000px;}
.y149{bottom:718.016832px;}
.y1e9{bottom:723.935745px;}
.y160{bottom:729.507000px;}
.y1ba{bottom:729.508500px;}
.y148{bottom:729.977403px;}
.yb2{bottom:730.499400px;}
.y2b{bottom:732.468900px;}
.yc5{bottom:736.162500px;}
.y1e8{bottom:736.617019px;}
.y147{bottom:741.937974px;}
.y81{bottom:742.970550px;}
.y162{bottom:745.443000px;}
.yb1{bottom:746.999400px;}
.y1e7{bottom:749.298293px;}
.y2a{bottom:750.470400px;}
.y146{bottom:753.898545px;}
.y1e6{bottom:761.737389px;}
.yb0{bottom:763.499400px;}
.y145{bottom:765.859116px;}
.y15c{bottom:768.396000px;}
.y29{bottom:768.471900px;}
.yc7{bottom:769.139250px;}
.y1e5{bottom:774.418663px;}
.y144{bottom:777.819687px;}
.yaf{bottom:779.999400px;}
.y15e{bottom:783.730200px;}
.y28{bottom:786.473400px;}
.y1e4{bottom:787.099936px;}
.y143{bottom:789.780258px;}
.yc3{bottom:790.027500px;}
.yae{bottom:796.499400px;}
.y1e3{bottom:799.539033px;}
.y142{bottom:801.740829px;}
.y122{bottom:801.997500px;}
.y27{bottom:804.474900px;}
.y15a{bottom:806.286000px;}
.y1e2{bottom:812.220306px;}
.yad{bottom:812.999400px;}
.y141{bottom:813.701400px;}
.yc2{bottom:822.045750px;}
.y26{bottom:822.476400px;}
.y1e1{bottom:824.901580px;}
.y158{bottom:828.222000px;}
.yac{bottom:829.499400px;}
.y3{bottom:835.215300px;}
.y1e0{bottom:837.582854px;}
.y25{bottom:840.477900px;}
.y1b7{bottom:841.185000px;}
.yab{bottom:845.999400px;}
.yc1{bottom:848.549700px;}
.y1df{bottom:850.021950px;}
.y157{bottom:853.128900px;}
.y24{bottom:858.479400px;}
.yaa{bottom:862.499400px;}
.y2{bottom:864.725550px;}
.y154{bottom:868.995450px;}
.y23{bottom:876.480900px;}
.ya9{bottom:878.999400px;}
.y1{bottom:889.919250px;}
.y22{bottom:894.482400px;}
.ya8{bottom:895.499400px;}
.yc0{bottom:895.544250px;}
.y21{bottom:934.435800px;}
.h2f{height:12.963000px;}
.hc{height:12.966000px;}
.h16{height:12.967500px;}
.h23{height:13.959000px;}
.h10{height:18.952500px;}
.h26{height:22.932000px;}
.h33{height:22.933500px;}
.h15{height:24.937500px;}
.h11{height:24.939000px;}
.h2b{height:25.924500px;}
.h2c{height:25.926000px;}
.h1e{height:26.795856px;}
.h19{height:26.806254px;}
.h2a{height:26.922000px;}
.h12{height:26.932500px;}
.h2e{height:29.347633px;}
.h24{height:29.820635px;}
.h25{height:30.573139px;}
.h7{height:30.577148px;}
.h6{height:30.618164px;}
.h32{height:30.910500px;}
.h20{height:30.922500px;}
.h1c{height:32.846341px;}
.he{height:32.859086px;}
.h1b{height:33.087563px;}
.hd{height:33.100402px;}
.h9{height:33.156738px;}
.h13{height:36.907500px;}
.h18{height:37.903500px;}
.h21{height:37.905000px;}
.h27{height:38.886000px;}
.h28{height:38.887500px;}
.h1f{height:39.108678px;}
.hb{height:39.788086px;}
.h8{height:44.208984px;}
.ha{height:47.760000px;}
.h14{height:48.877500px;}
.h5{height:52.536000px;}
.hf{height:53.865000px;}
.h3{height:55.001953px;}
.h2{height:55.703320px;}
.h4{height:57.312000px;}
.h29{height:63.814500px;}
.h2d{height:203.410500px;}
.h17{height:204.487500px;}
.h1a{height:228.337500px;}
.h34{height:228.339000px;}
.h22{height:696.541500px;}
.h31{height:696.543000px;}
.h1d{height:709.438500px;}
.h30{height:709.440000px;}
.h1{height:999.000000px;}
.h0{height:999.213000px;}
.w12{width:-490.437000px;}
.wa{width:-490.396500px;}
.w14{width:-371.781000px;}
.wb{width:-350.746500px;}
.w7{width:-211.137000px;}
.w13{width:-110.539500px;}
.w11{width:-110.538000px;}
.w6{width:-110.430000px;}
.w9{width:-110.349000px;}
.w8{width:-106.299000px;}
.wc{width:100.708500px;}
.w2{width:100.747500px;}
.wf{width:219.364500px;}
.w4{width:240.399000px;}
.w5{width:241.395000px;}
.w10{width:262.239000px;}
.wd{width:379.897500px;}
.w3{width:380.047500px;}
.we{width:488.976000px;}
.w1{width:680.250000px;}
.w0{width:680.314500px;}
.x1c{left:-603.762000px;}
.x14{left:-595.275600px;}
.x29{left:-591.553950px;}
.x17{left:-585.807000px;}
.x15{left:-574.015800px;}
.x31{left:-509.480100px;}
.x19{left:-503.677350px;}
.x2b{left:-501.721950px;}
.x18{left:-485.019750px;}
.x30{left:-481.762350px;}
.x2c{left:-472.792795px;}
.x2a{left:-426.752400px;}
.x16{left:-419.322750px;}
.x2f{left:-367.084800px;}
.x1b{left:-345.688800px;}
.x2d{left:-280.604250px;}
.x1a{left:-265.523850px;}
.x2e{left:-241.899946px;}
.xf{left:-12.617400px;}
.x0{left:0.000000px;}
.x13{left:3.722250px;}
.x7{left:5.337600px;}
.x28{left:81.665850px;}
.x3{left:85.039350px;}
.xc{left:86.220600px;}
.xa{left:87.467250px;}
.x6{left:89.170500px;}
.x23{left:92.173200px;}
.xd{left:94.508100px;}
.x1{left:106.299150px;}
.x27{left:109.383600px;}
.x1d{left:110.428500px;}
.x2{left:127.559100px;}
.x25{left:130.879800px;}
.x8{left:189.918000px;}
.x9{left:195.295200px;}
.x21{left:207.526650px;}
.x1e{left:211.137000px;}
.x1f{left:216.511950px;}
.x20{left:253.562550px;}
.x22{left:307.537500px;}
.x26{left:313.230300px;}
.xb{left:328.570500px;}
.xe{left:334.626150px;}
.x5{left:369.580050px;}
.x24{left:438.417300px;}
.x4{left:570.248700px;}
.x12{left:786.613500px;}
.x10{left:790.744500px;}
.x11{left:891.451500px;}
@media print{
.v1{vertical-align:-25.533333pt;}
.v0{vertical-align:0.000000pt;}
.ls2c{letter-spacing:-3.360000pt;}
.ls29{letter-spacing:-1.920000pt;}
.ls2a{letter-spacing:-1.706667pt;}
.lsf{letter-spacing:-1.408000pt;}
.ls26{letter-spacing:-1.280000pt;}
.ls18{letter-spacing:-0.640000pt;}
.ls23{letter-spacing:-0.533333pt;}
.ls17{letter-spacing:-0.480000pt;}
.ls6{letter-spacing:-0.410667pt;}
.ls7{letter-spacing:-0.352000pt;}
.ls1e{letter-spacing:-0.320000pt;}
.ls2{letter-spacing:-0.293333pt;}
.ls16{letter-spacing:-0.266667pt;}
.ls3{letter-spacing:-0.234667pt;}
.ls34{letter-spacing:-0.214502pt;}
.ls9{letter-spacing:-0.213333pt;}
.ls35{letter-spacing:-0.178752pt;}
.ls8{letter-spacing:-0.176000pt;}
.ls2e{letter-spacing:-0.160000pt;}
.ls36{letter-spacing:-0.143002pt;}
.ls39{letter-spacing:-0.142946pt;}
.ls3e{letter-spacing:-0.117419pt;}
.ls4{letter-spacing:-0.117333pt;}
.ls38{letter-spacing:-0.107251pt;}
.ls3b{letter-spacing:-0.107210pt;}
.ls40{letter-spacing:-0.078279pt;}
.ls37{letter-spacing:-0.071501pt;}
.ls3a{letter-spacing:-0.071473pt;}
.ls5{letter-spacing:-0.058667pt;}
.ls1d{letter-spacing:-0.053333pt;}
.ls3f{letter-spacing:-0.039140pt;}
.ls0{letter-spacing:0.000000pt;}
.ls42{letter-spacing:0.046968pt;}
.ls3d{letter-spacing:0.050882pt;}
.lsd{letter-spacing:0.058667pt;}
.ls28{letter-spacing:0.106667pt;}
.lsa{letter-spacing:0.117333pt;}
.ls24{letter-spacing:0.160000pt;}
.ls32{letter-spacing:0.210846pt;}
.ls1c{letter-spacing:0.240000pt;}
.ls19{letter-spacing:0.266667pt;}
.ls2f{letter-spacing:0.320000pt;}
.ls10{letter-spacing:0.352000pt;}
.lsb{letter-spacing:0.469333pt;}
.ls1b{letter-spacing:0.480000pt;}
.ls11{letter-spacing:0.528000pt;}
.ls1f{letter-spacing:0.533333pt;}
.lsc{letter-spacing:0.586667pt;}
.ls33{letter-spacing:0.624000pt;}
.ls1a{letter-spacing:0.640000pt;}
.ls15{letter-spacing:0.645333pt;}
.ls27{letter-spacing:0.693333pt;}
.lse{letter-spacing:0.704000pt;}
.ls20{letter-spacing:0.800000pt;}
.ls13{letter-spacing:0.938667pt;}
.ls2d{letter-spacing:0.960000pt;}
.ls25{letter-spacing:1.013333pt;}
.ls12{letter-spacing:1.056000pt;}
.ls2b{letter-spacing:1.066667pt;}
.ls1{letter-spacing:1.088000pt;}
.ls14{letter-spacing:1.114667pt;}
.ls22{letter-spacing:1.333333pt;}
.ls21{letter-spacing:1.440000pt;}
.ls30{letter-spacing:1.813333pt;}
.ls41{letter-spacing:29.378887pt;}
.ls31{letter-spacing:32.466310pt;}
.ls3c{letter-spacing:32.478989pt;}
.wsba{word-spacing:-39.139733pt;}
.wsa3{word-spacing:-35.750400pt;}
.wsa5{word-spacing:-35.736533pt;}
.ws9a{word-spacing:-13.968000pt;}
.ws49{word-spacing:-11.968000pt;}
.ws8f{word-spacing:-11.946667pt;}
.ws6c{word-spacing:-11.466667pt;}
.ws48{word-spacing:-11.381333pt;}
.ws47{word-spacing:-11.205333pt;}
.ws8c{word-spacing:-11.093333pt;}
.ws6f{word-spacing:-10.933333pt;}
.ws8d{word-spacing:-10.826667pt;}
.ws6d{word-spacing:-10.773333pt;}
.ws8e{word-spacing:-9.973333pt;}
.wsb8{word-spacing:-9.784933pt;}
.wsb7{word-spacing:-9.745794pt;}
.wsb9{word-spacing:-9.706654pt;}
.ws6e{word-spacing:-8.213333pt;}
.ws9d{word-spacing:-7.757837pt;}
.wsa8{word-spacing:-7.754828pt;}
.ws9e{word-spacing:-7.686336pt;}
.wsa1{word-spacing:-7.650586pt;}
.wsa9{word-spacing:-7.647618pt;}
.wsa0{word-spacing:-7.614835pt;}
.wsab{word-spacing:-7.611882pt;}
.wsa2{word-spacing:-7.579085pt;}
.ws9f{word-spacing:-7.078579pt;}
.wsa7{word-spacing:-7.075834pt;}
.wsa4{word-spacing:-7.042829pt;}
.wsaa{word-spacing:-7.040097pt;}
.ws9c{word-spacing:-7.007078pt;}
.wsa6{word-spacing:-7.004361pt;}
.ws9b{word-spacing:-6.935578pt;}
.ws8b{word-spacing:-6.773333pt;}
.ws4d{word-spacing:-3.285333pt;}
.ws4f{word-spacing:-2.992000pt;}
.ws6{word-spacing:-2.816000pt;}
.ws93{word-spacing:-2.773333pt;}
.ws2{word-spacing:-2.757333pt;}
.ws59{word-spacing:-2.698667pt;}
.ws7b{word-spacing:-2.666667pt;}
.ws3{word-spacing:-2.640000pt;}
.ws1d{word-spacing:-2.560000pt;}
.ws66{word-spacing:-2.522667pt;}
.ws65{word-spacing:-2.506667pt;}
.ws30{word-spacing:-2.464000pt;}
.ws84{word-spacing:-2.453333pt;}
.ws2e{word-spacing:-2.405333pt;}
.ws39{word-spacing:-2.346667pt;}
.ws2f{word-spacing:-2.288000pt;}
.ws21{word-spacing:-2.170667pt;}
.ws29{word-spacing:-2.053333pt;}
.ws20{word-spacing:-1.994667pt;}
.ws2b{word-spacing:-1.877333pt;}
.ws99{word-spacing:-1.706667pt;}
.ws14{word-spacing:-1.701333pt;}
.ws1b{word-spacing:-1.653333pt;}
.ws58{word-spacing:-1.642667pt;}
.ws54{word-spacing:-1.525333pt;}
.ws15{word-spacing:-1.466667pt;}
.ws91{word-spacing:-1.440000pt;}
.ws35{word-spacing:-1.408000pt;}
.ws90{word-spacing:-1.386667pt;}
.ws22{word-spacing:-1.349333pt;}
.ws2a{word-spacing:-1.232000pt;}
.ws17{word-spacing:-1.226667pt;}
.ws4e{word-spacing:-1.173333pt;}
.wse{word-spacing:-1.114667pt;}
.ws1{word-spacing:-1.088000pt;}
.ws7{word-spacing:-1.056000pt;}
.ws52{word-spacing:-0.997333pt;}
.ws5b{word-spacing:-0.938667pt;}
.ws64{word-spacing:-0.906667pt;}
.ws55{word-spacing:-0.880000pt;}
.ws5{word-spacing:-0.821333pt;}
.ws85{word-spacing:-0.800000pt;}
.ws31{word-spacing:-0.762667pt;}
.ws4c{word-spacing:-0.704000pt;}
.ws81{word-spacing:-0.693333pt;}
.ws25{word-spacing:-0.645333pt;}
.ws69{word-spacing:-0.640000pt;}
.ws40{word-spacing:-0.586667pt;}
.ws83{word-spacing:-0.533333pt;}
.ws68{word-spacing:-0.528000pt;}
.ws72{word-spacing:-0.480000pt;}
.wsf{word-spacing:-0.469333pt;}
.wsd{word-spacing:-0.410667pt;}
.ws34{word-spacing:-0.352000pt;}
.ws98{word-spacing:-0.320000pt;}
.ws61{word-spacing:-0.293333pt;}
.ws71{word-spacing:-0.240000pt;}
.ws45{word-spacing:-0.234667pt;}
.ws19{word-spacing:-0.213333pt;}
.ws12{word-spacing:-0.176000pt;}
.ws8a{word-spacing:-0.106667pt;}
.wsbc{word-spacing:-0.039140pt;}
.ws0{word-spacing:0.000000pt;}
.wsb6{word-spacing:0.035737pt;}
.wsaf{word-spacing:0.035750pt;}
.wsbd{word-spacing:0.039140pt;}
.wsb5{word-spacing:0.071473pt;}
.wsae{word-spacing:0.071501pt;}
.wsbe{word-spacing:0.078279pt;}
.ws7c{word-spacing:0.106667pt;}
.wsb3{word-spacing:0.107210pt;}
.wsad{word-spacing:0.107251pt;}
.ws60{word-spacing:0.117333pt;}
.wsbb{word-spacing:0.117419pt;}
.wsb4{word-spacing:0.142946pt;}
.wsb2{word-spacing:0.143002pt;}
.ws56{word-spacing:0.176000pt;}
.wsac{word-spacing:0.178752pt;}
.wsb1{word-spacing:0.214502pt;}
.ws36{word-spacing:0.234667pt;}
.ws11{word-spacing:0.293333pt;}
.ws1c{word-spacing:0.320000pt;}
.ws27{word-spacing:0.352000pt;}
.ws1f{word-spacing:0.469333pt;}
.ws4b{word-spacing:0.528000pt;}
.ws16{word-spacing:0.640000pt;}
.ws41{word-spacing:0.704000pt;}
.ws7d{word-spacing:0.746667pt;}
.ws4a{word-spacing:0.762667pt;}
.ws5e{word-spacing:0.880000pt;}
.ws5f{word-spacing:0.938667pt;}
.ws6a{word-spacing:0.960000pt;}
.ws57{word-spacing:0.997333pt;}
.wsc{word-spacing:1.056000pt;}
.ws63{word-spacing:1.066667pt;}
.wsb{word-spacing:1.114667pt;}
.ws95{word-spacing:1.120000pt;}
.ws3f{word-spacing:1.173333pt;}
.ws76{word-spacing:1.226667pt;}
.ws43{word-spacing:1.232000pt;}
.ws80{word-spacing:1.280000pt;}
.ws53{word-spacing:1.290667pt;}
.ws28{word-spacing:1.349333pt;}
.ws50{word-spacing:1.408000pt;}
.ws24{word-spacing:1.466667pt;}
.ws46{word-spacing:1.525333pt;}
.ws92{word-spacing:1.546667pt;}
.ws94{word-spacing:1.600000pt;}
.wsa{word-spacing:1.642667pt;}
.ws42{word-spacing:1.701333pt;}
.ws87{word-spacing:1.706667pt;}
.ws77{word-spacing:1.920000pt;}
.ws33{word-spacing:1.936000pt;}
.ws73{word-spacing:1.973333pt;}
.ws51{word-spacing:1.994667pt;}
.ws74{word-spacing:2.080000pt;}
.ws32{word-spacing:2.112000pt;}
.ws88{word-spacing:2.133333pt;}
.ws1a{word-spacing:2.186667pt;}
.ws67{word-spacing:2.288000pt;}
.ws75{word-spacing:2.400000pt;}
.ws26{word-spacing:2.405333pt;}
.ws78{word-spacing:2.453333pt;}
.ws38{word-spacing:2.464000pt;}
.ws18{word-spacing:2.506667pt;}
.ws5c{word-spacing:2.640000pt;}
.ws23{word-spacing:2.757333pt;}
.ws37{word-spacing:2.816000pt;}
.ws8{word-spacing:2.874667pt;}
.ws86{word-spacing:2.880000pt;}
.ws4{word-spacing:2.933333pt;}
.ws13{word-spacing:2.992000pt;}
.ws89{word-spacing:3.040000pt;}
.ws5d{word-spacing:3.050667pt;}
.ws2d{word-spacing:3.168000pt;}
.ws44{word-spacing:3.226667pt;}
.ws9{word-spacing:3.344000pt;}
.ws1e{word-spacing:3.402667pt;}
.ws62{word-spacing:3.461333pt;}
.ws5a{word-spacing:3.520000pt;}
.ws70{word-spacing:3.637333pt;}
.ws96{word-spacing:3.786667pt;}
.ws97{word-spacing:3.840000pt;}
.ws3c{word-spacing:4.224000pt;}
.ws7e{word-spacing:4.266667pt;}
.ws3e{word-spacing:4.341333pt;}
.ws79{word-spacing:4.480000pt;}
.ws2c{word-spacing:4.634667pt;}
.ws82{word-spacing:4.746667pt;}
.ws3d{word-spacing:4.752000pt;}
.ws6b{word-spacing:5.066667pt;}
.ws7f{word-spacing:5.226667pt;}
.ws3a{word-spacing:5.573333pt;}
.ws3b{word-spacing:5.749333pt;}
.ws7a{word-spacing:5.866667pt;}
.wsb0{word-spacing:7.293082pt;}
.ws10{word-spacing:8.698667pt;}
._0{margin-left:-11.175360pt;}
._b{margin-left:-7.261867pt;}
._4{margin-left:-5.860800pt;}
._8{margin-left:-4.790080pt;}
._6{margin-left:-3.815040pt;}
._1{margin-left:-2.768640pt;}
._2{margin-left:-1.041600pt;}
._3{width:1.028160pt;}
._5{width:2.333440pt;}
._7{width:3.367467pt;}
._a{width:4.282667pt;}
._9{width:7.000000pt;}
._c{width:405.113067pt;}
.fs8{font-size:35.736533pt;}
.fs7{font-size:35.750400pt;}
.fs3{font-size:37.333333pt;}
.fs9{font-size:39.139733pt;}
.fs5{font-size:40.000000pt;}
.fs6{font-size:48.000000pt;}
.fs4{font-size:53.333333pt;}
.fs2{font-size:58.666667pt;}
.fs1{font-size:64.000000pt;}
.fs0{font-size:67.200000pt;}
.y0{bottom:0.000000pt;}
.y198{bottom:2.249600pt;}
.y1da{bottom:2.252690pt;}
.y176{bottom:2.356267pt;}
.y16a{bottom:2.363467pt;}
.y1c4{bottom:2.364939pt;}
.y1de{bottom:2.392133pt;}
.y1a0{bottom:2.393467pt;}
.y179{bottom:2.428267pt;}
.y15f{bottom:2.569067pt;}
.y19d{bottom:2.570267pt;}
.y1db{bottom:2.571890pt;}
.y17c{bottom:2.711467pt;}
.y17f{bottom:2.782133pt;}
.y181{bottom:2.818133pt;}
.y184{bottom:2.888667pt;}
.y1c8{bottom:2.895049pt;}
.y170{bottom:2.895067pt;}
.y1b3{bottom:2.923733pt;}
.y173{bottom:2.959600pt;}
.y1c9{bottom:2.961357pt;}
.y159{bottom:2.995067pt;}
.y195{bottom:3.065733pt;}
.y1be{bottom:3.101067pt;}
.y164{bottom:3.102400pt;}
.y1bd{bottom:3.107182pt;}
.y163{bottom:3.108400pt;}
.yc4{bottom:3.138267pt;}
.ycc{bottom:3.173733pt;}
.yea{bottom:3.209200pt;}
.yff{bottom:3.244667pt;}
.yd3{bottom:3.280133pt;}
.ydb{bottom:3.314267pt;}
.y12c{bottom:3.315600pt;}
.ye1{bottom:3.351067pt;}
.y107{bottom:3.527067pt;}
.y13f{bottom:3.528400pt;}
.y11e{bottom:3.562133pt;}
.ye8{bottom:3.634800pt;}
.yed{bottom:3.670267pt;}
.y102{bottom:3.705733pt;}
.y129{bottom:3.741200pt;}
.yde{bottom:3.776667pt;}
.ye4{bottom:3.812133pt;}
.y125{bottom:5.408133pt;}
.yc9{bottom:9.132133pt;}
.y1b8{bottom:10.616800pt;}
.y15b{bottom:10.794267pt;}
.y123{bottom:11.437333pt;}
.y197{bottom:13.523600pt;}
.y1d9{bottom:13.524933pt;}
.y175{bottom:13.630267pt;}
.y1b9{bottom:13.632157pt;}
.y1c3{bottom:13.637182pt;}
.y178{bottom:13.702133pt;}
.ycb{bottom:13.813733pt;}
.y19b{bottom:13.844133pt;}
.y126{bottom:13.920133pt;}
.y13b{bottom:13.944251pt;}
.y1c7{bottom:13.952023pt;}
.yda{bottom:13.954267pt;}
.y12b{bottom:13.955600pt;}
.y17b{bottom:13.985600pt;}
.ye0{bottom:13.991067pt;}
.y17e{bottom:14.056133pt;}
.y1dc{bottom:14.061159pt;}
.y1d7{bottom:14.161536pt;}
.y183{bottom:14.162667pt;}
.y1bc{bottom:14.164157pt;}
.y105{bottom:14.167067pt;}
.y13e{bottom:14.168400pt;}
.y172{bottom:14.233600pt;}
.y1b2{bottom:14.238451pt;}
.y11d{bottom:14.265568pt;}
.yec{bottom:14.310267pt;}
.y101{bottom:14.345733pt;}
.y128{bottom:14.385456pt;}
.ydd{bottom:14.416667pt;}
.ye3{bottom:14.452133pt;}
.y140{bottom:14.806800pt;}
.yce{bottom:16.048133pt;}
.yd1{bottom:24.560133pt;}
.y13a{bottom:24.579995pt;}
.y1c2{bottom:24.694157pt;}
.y1c6{bottom:24.695780pt;}
.y11c{bottom:24.897187pt;}
.y15d{bottom:24.904400pt;}
.y127{bottom:25.021200pt;}
.y19a{bottom:25.118133pt;}
.y16e{bottom:25.224267pt;}
.y1b1{bottom:25.295426pt;}
.y1d6{bottom:25.433779pt;}
.y1bb{bottom:25.436400pt;}
.y161{bottom:25.437733pt;}
.y104{bottom:25.445467pt;}
.y13d{bottom:25.446800pt;}
.y124{bottom:29.312667pt;}
.y139{bottom:35.215739pt;}
.y11b{bottom:35.528805pt;}
.yd5{bottom:35.661200pt;}
.y1c1{bottom:35.966400pt;}
.y1c5{bottom:35.968023pt;}
.y1b0{bottom:36.567669pt;}
.y1d5{bottom:36.706022pt;}
.yc6{bottom:39.952667pt;}
.y138{bottom:45.851483pt;}
.y11a{bottom:46.160424pt;}
.y166{bottom:47.238933pt;}
.y1c0{bottom:47.240267pt;}
.y1af{bottom:47.839913pt;}
.y1d4{bottom:47.978266pt;}
.y137{bottom:56.487227pt;}
.y119{bottom:56.792043pt;}
.y1d3{bottom:59.035240pt;}
.y1ae{bottom:59.112156pt;}
.y20{bottom:63.007867pt;}
.y136{bottom:67.122971pt;}
.y118{bottom:67.423661pt;}
.y1ad{bottom:70.169130pt;}
.y1d2{bottom:70.307483pt;}
.y135{bottom:77.758715pt;}
.y117{bottom:78.055280pt;}
.y1ac{bottom:81.441374pt;}
.y1d1{bottom:81.579727pt;}
.y134{bottom:88.394459pt;}
.y116{bottom:88.686899pt;}
.y1f{bottom:88.810000pt;}
.y69{bottom:91.036800pt;}
.y4d{bottom:91.071600pt;}
.y1d0{bottom:92.636701pt;}
.y1ab{bottom:92.713617pt;}
.ya7{bottom:94.645333pt;}
.y133{bottom:99.030203pt;}
.y80{bottom:99.094267pt;}
.y115{bottom:99.318517pt;}
.y1e{bottom:99.478000pt;}
.y1aa{bottom:103.770591pt;}
.y1cf{bottom:103.908945pt;}
.y68{bottom:107.038133pt;}
.y4c{bottom:107.072933pt;}
.ya6{bottom:109.312000pt;}
.y132{bottom:109.665947pt;}
.y114{bottom:109.950136pt;}
.y1d{bottom:110.146000pt;}
.y11f{bottom:114.693333pt;}
.y1a9{bottom:115.042835pt;}
.y7f{bottom:115.094267pt;}
.y1ce{bottom:115.181188pt;}
.y109{bottom:117.046667pt;}
.y131{bottom:120.301691pt;}
.y113{bottom:120.581755pt;}
.y1c{bottom:120.814000pt;}
.y67{bottom:123.039467pt;}
.y4b{bottom:123.074267pt;}
.ya5{bottom:123.978667pt;}
.y1cd{bottom:126.238162pt;}
.y1a8{bottom:126.315078pt;}
.y13c{bottom:128.573333pt;}
.y103{bottom:128.574667pt;}
.y130{bottom:130.937435pt;}
.y7e{bottom:131.094267pt;}
.y112{bottom:131.213373pt;}
.y1b{bottom:135.262000pt;}
.y1a7{bottom:137.372053pt;}
.y1cc{bottom:137.510406pt;}
.ya4{bottom:138.645333pt;}
.y66{bottom:139.040800pt;}
.y4a{bottom:139.075600pt;}
.y12f{bottom:141.573179pt;}
.y111{bottom:141.844992pt;}
.y106{bottom:142.741733pt;}
.y108{bottom:143.380133pt;}
.y1a{bottom:145.930000pt;}
.y7d{bottom:147.094267pt;}
.y1a6{bottom:148.644296pt;}
.y1cb{bottom:148.782649pt;}
.y1b4{bottom:149.102667pt;}
.y12e{bottom:152.208923pt;}
.y110{bottom:152.476611pt;}
.ya3{bottom:153.312000pt;}
.y65{bottom:155.042133pt;}
.y49{bottom:155.076933pt;}
.y155{bottom:159.524000pt;}
.y1a5{bottom:159.916539pt;}
.y1ca{bottom:160.054892pt;}
.y19{bottom:160.378000pt;}
.y19f{bottom:160.974667pt;}
.y1dd{bottom:160.976000pt;}
.y100{bottom:161.380000pt;}
.y12d{bottom:162.844667pt;}
.y7c{bottom:163.094267pt;}
.y10f{bottom:163.108229pt;}
.ya2{bottom:167.978667pt;}
.y64{bottom:171.043467pt;}
.y48{bottom:171.078267pt;}
.y186{bottom:171.111867pt;}
.y1a4{bottom:171.188782pt;}
.y199{bottom:172.497333pt;}
.yef{bottom:173.484667pt;}
.y10e{bottom:173.739848pt;}
.y1a3{bottom:182.245757pt;}
.ya1{bottom:182.645333pt;}
.yee{bottom:183.546667pt;}
.y10d{bottom:184.371467pt;}
.y19c{bottom:186.341467pt;}
.y19e{bottom:186.558533pt;}
.y63{bottom:187.044800pt;}
.y7b{bottom:187.072933pt;}
.y47{bottom:187.079600pt;}
.y1a2{bottom:193.518000pt;}
.y10b{bottom:194.369067pt;}
.y10c{bottom:195.007333pt;}
.ya0{bottom:197.312000pt;}
.yfe{bottom:197.490917pt;}
.y62{bottom:203.046133pt;}
.y7a{bottom:203.074267pt;}
.y46{bottom:203.080933pt;}
.y1d8{bottom:207.064000pt;}
.y196{bottom:207.065333pt;}
.yfd{bottom:208.126661pt;}
.y9f{bottom:211.978667pt;}
.yfc{bottom:218.762405pt;}
.y61{bottom:219.047467pt;}
.y79{bottom:219.075600pt;}
.y45{bottom:219.082267pt;}
.y18{bottom:223.720267pt;}
.y9e{bottom:226.645333pt;}
.y185{bottom:229.222667pt;}
.yfb{bottom:229.398149pt;}
.y60{bottom:235.048800pt;}
.y78{bottom:235.076933pt;}
.y44{bottom:235.083600pt;}
.y17{bottom:239.721600pt;}
.yfa{bottom:240.033893pt;}
.y9d{bottom:241.312000pt;}
.y194{bottom:243.384244pt;}
.yf9{bottom:250.669637pt;}
.y5f{bottom:251.050133pt;}
.y77{bottom:251.078267pt;}
.y43{bottom:251.084933pt;}
.y193{bottom:254.656487pt;}
.y16{bottom:255.722933pt;}
.y9c{bottom:255.978667pt;}
.yf8{bottom:261.305381pt;}
.y192{bottom:265.928730pt;}
.y5e{bottom:267.051467pt;}
.y76{bottom:267.079600pt;}
.y42{bottom:267.086267pt;}
.y9b{bottom:270.645333pt;}
.y15{bottom:271.724267pt;}
.yf7{bottom:271.941125pt;}
.y191{bottom:277.200974pt;}
.yf6{bottom:282.576869pt;}
.y5d{bottom:283.052800pt;}
.y75{bottom:283.080933pt;}
.y41{bottom:283.087600pt;}
.y9a{bottom:285.312000pt;}
.y14{bottom:287.725600pt;}
.y190{bottom:288.257948pt;}
.yf5{bottom:293.212613pt;}
.y5c{bottom:299.054133pt;}
.y74{bottom:299.082267pt;}
.y40{bottom:299.088933pt;}
.y18f{bottom:299.530191pt;}
.y99{bottom:299.978667pt;}
.y13{bottom:303.726933pt;}
.yf4{bottom:303.848357pt;}
.y18e{bottom:310.802435pt;}
.yf3{bottom:314.484101pt;}
.y98{bottom:314.645333pt;}
.y5b{bottom:315.055467pt;}
.y73{bottom:315.083600pt;}
.y3f{bottom:315.090267pt;}
.y12{bottom:319.728267pt;}
.y18d{bottom:321.859409pt;}
.yf2{bottom:325.119845pt;}
.y97{bottom:329.312000pt;}
.y5a{bottom:331.056800pt;}
.y72{bottom:331.084933pt;}
.y3e{bottom:331.091600pt;}
.y18c{bottom:333.131653pt;}
.y11{bottom:335.729600pt;}
.yf1{bottom:335.755589pt;}
.y96{bottom:343.978667pt;}
.y18b{bottom:344.403896pt;}
.yf0{bottom:346.391333pt;}
.y59{bottom:347.058133pt;}
.y71{bottom:347.086267pt;}
.y3d{bottom:347.092933pt;}
.y10{bottom:351.730933pt;}
.y18a{bottom:355.460870pt;}
.y95{bottom:358.645333pt;}
.y58{bottom:363.059467pt;}
.y70{bottom:363.087600pt;}
.y3c{bottom:363.094267pt;}
.yeb{bottom:364.426667pt;}
.y189{bottom:366.733114pt;}
.yf{bottom:367.732267pt;}
.y94{bottom:373.312000pt;}
.y188{bottom:378.005357pt;}
.y57{bottom:379.060800pt;}
.y6f{bottom:379.088933pt;}
.ye{bottom:383.733600pt;}
.ye9{bottom:386.593333pt;}
.y3b{bottom:387.095467pt;}
.y93{bottom:387.978667pt;}
.y187{bottom:389.277600pt;}
.y56{bottom:395.062133pt;}
.y6e{bottom:395.090267pt;}
.ye7{bottom:397.233333pt;}
.yd{bottom:399.734933pt;}
.y92{bottom:402.645333pt;}
.y3a{bottom:403.095467pt;}
.y1b6{bottom:403.963555pt;}
.y121{bottom:405.026800pt;}
.ye6{bottom:408.760000pt;}
.y182{bottom:409.145333pt;}
.y55{bottom:411.063467pt;}
.y6d{bottom:411.091600pt;}
.y1b5{bottom:415.451067pt;}
.yc{bottom:415.736267pt;}
.y120{bottom:416.088133pt;}
.y91{bottom:417.312000pt;}
.y39{bottom:419.095467pt;}
.ye5{bottom:422.573733pt;}
.y54{bottom:427.064800pt;}
.y6c{bottom:427.092933pt;}
.ye2{bottom:430.040000pt;}
.yb{bottom:431.737600pt;}
.y90{bottom:431.978667pt;}
.y180{bottom:432.189333pt;}
.y38{bottom:435.095467pt;}
.y53{bottom:443.066133pt;}
.y6b{bottom:443.094267pt;}
.y17d{bottom:443.712000pt;}
.y8f{bottom:446.645333pt;}
.ya{bottom:447.738933pt;}
.y37{bottom:451.095467pt;}
.ydf{bottom:452.206667pt;}
.ybf{bottom:458.666133pt;}
.y52{bottom:459.067467pt;}
.y8e{bottom:461.312000pt;}
.y9{bottom:463.740267pt;}
.y17a{bottom:466.756000pt;}
.y36{bottom:467.095467pt;}
.ybe{bottom:473.332800pt;}
.ydc{bottom:473.486667pt;}
.y51{bottom:475.068800pt;}
.y8d{bottom:475.978667pt;}
.y8{bottom:479.741600pt;}
.y35{bottom:483.095467pt;}
.ybd{bottom:487.999467pt;}
.y177{bottom:489.800000pt;}
.y8c{bottom:490.645333pt;}
.y50{bottom:491.070133pt;}
.y12a{bottom:495.653333pt;}
.yd9{bottom:495.654667pt;}
.y7{bottom:495.742933pt;}
.y34{bottom:499.095467pt;}
.ybc{bottom:502.666133pt;}
.y8b{bottom:505.312000pt;}
.y4f{bottom:507.071467pt;}
.y6{bottom:511.744267pt;}
.y174{bottom:512.845333pt;}
.y33{bottom:515.095467pt;}
.yd4{bottom:516.933333pt;}
.ybb{bottom:517.332800pt;}
.y153{bottom:519.720133pt;}
.y8a{bottom:519.978667pt;}
.yd8{bottom:520.674108pt;}
.y4e{bottom:523.072800pt;}
.y5{bottom:527.745600pt;}
.y152{bottom:530.781467pt;}
.y6a{bottom:531.095467pt;}
.yd7{bottom:531.318789pt;}
.yba{bottom:531.999467pt;}
.y89{bottom:534.645333pt;}
.y171{bottom:535.002667pt;}
.y10a{bottom:538.918667pt;}
.y32{bottom:539.074133pt;}
.yd6{bottom:541.954533pt;}
.y4{bottom:543.746933pt;}
.yb9{bottom:546.666133pt;}
.y88{bottom:549.312000pt;}
.y1f0{bottom:553.066222pt;}
.y151{bottom:553.184235pt;}
.y31{bottom:555.075467pt;}
.y16d{bottom:558.046667pt;}
.yd0{bottom:560.380000pt;}
.yb8{bottom:561.332800pt;}
.y150{bottom:563.815853pt;}
.y87{bottom:563.978667pt;}
.y1ef{bottom:564.553733pt;}
.y30{bottom:571.076800pt;}
.y16f{bottom:571.998800pt;}
.y1a1{bottom:573.329333pt;}
.yd2{bottom:574.300133pt;}
.y14f{bottom:574.447472pt;}
.yb7{bottom:575.999467pt;}
.y86{bottom:578.645333pt;}
.y14e{bottom:585.079091pt;}
.y2f{bottom:587.078133pt;}
.y1ee{bottom:587.567761pt;}
.yb6{bottom:590.666133pt;}
.ycd{bottom:592.300000pt;}
.y1bf{bottom:592.613333pt;}
.y165{bottom:592.614667pt;}
.y85{bottom:593.312000pt;}
.y14d{bottom:595.710709pt;}
.ycf{bottom:597.708133pt;}
.y1ed{bottom:598.624736pt;}
.y2e{bottom:603.079467pt;}
.yb5{bottom:605.332800pt;}
.y169{bottom:606.250515pt;}
.y14c{bottom:606.342328pt;}
.y84{bottom:607.978667pt;}
.y1ec{bottom:609.896979pt;}
.yca{bottom:616.240000pt;}
.y14b{bottom:616.973947pt;}
.y168{bottom:617.307490pt;}
.y16c{bottom:617.309090pt;}
.y156{bottom:618.170133pt;}
.y2d{bottom:619.080800pt;}
.yb4{bottom:619.999467pt;}
.y1eb{bottom:621.169222pt;}
.y83{bottom:622.645333pt;}
.y14a{bottom:627.605565pt;}
.y167{bottom:628.579733pt;}
.y16b{bottom:628.581333pt;}
.y1ea{bottom:632.441466pt;}
.yb3{bottom:634.666133pt;}
.y2c{bottom:635.082133pt;}
.y82{bottom:637.312000pt;}
.yc8{bottom:637.520000pt;}
.y149{bottom:638.237184pt;}
.y1e9{bottom:643.498440pt;}
.y160{bottom:648.450667pt;}
.y1ba{bottom:648.452000pt;}
.y148{bottom:648.868803pt;}
.yb2{bottom:649.332800pt;}
.y2b{bottom:651.083467pt;}
.yc5{bottom:654.366667pt;}
.y1e8{bottom:654.770683pt;}
.y147{bottom:659.500421pt;}
.y81{bottom:660.418267pt;}
.y162{bottom:662.616000pt;}
.yb1{bottom:663.999467pt;}
.y1e7{bottom:666.042927pt;}
.y2a{bottom:667.084800pt;}
.y146{bottom:670.132040pt;}
.y1e6{bottom:677.099901pt;}
.yb0{bottom:678.666133pt;}
.y145{bottom:680.763659pt;}
.y15c{bottom:683.018667pt;}
.y29{bottom:683.086133pt;}
.yc7{bottom:683.679333pt;}
.y1e5{bottom:688.372145pt;}
.y144{bottom:691.395277pt;}
.yaf{bottom:693.332800pt;}
.y15e{bottom:696.649067pt;}
.y28{bottom:699.087467pt;}
.y1e4{bottom:699.644388pt;}
.y143{bottom:702.026896pt;}
.yc3{bottom:702.246667pt;}
.yae{bottom:707.999467pt;}
.y1e3{bottom:710.701362pt;}
.y142{bottom:712.658515pt;}
.y122{bottom:712.886667pt;}
.y27{bottom:715.088800pt;}
.y15a{bottom:716.698667pt;}
.y1e2{bottom:721.973606pt;}
.yad{bottom:722.666133pt;}
.y141{bottom:723.290133pt;}
.yc2{bottom:730.707333pt;}
.y26{bottom:731.090133pt;}
.y1e1{bottom:733.245849pt;}
.y158{bottom:736.197333pt;}
.yac{bottom:737.332800pt;}
.y3{bottom:742.413600pt;}
.y1e0{bottom:744.518092pt;}
.y25{bottom:747.091467pt;}
.y1b7{bottom:747.720000pt;}
.yab{bottom:751.999467pt;}
.yc1{bottom:754.266400pt;}
.y1df{bottom:755.575067pt;}
.y157{bottom:758.336800pt;}
.y24{bottom:763.092800pt;}
.yaa{bottom:766.666133pt;}
.y2{bottom:768.644933pt;}
.y154{bottom:772.440400pt;}
.y23{bottom:779.094133pt;}
.ya9{bottom:781.332800pt;}
.y1{bottom:791.039333pt;}
.y22{bottom:795.095467pt;}
.ya8{bottom:795.999467pt;}
.yc0{bottom:796.039333pt;}
.y21{bottom:830.609600pt;}
.h2f{height:11.522667pt;}
.hc{height:11.525333pt;}
.h16{height:11.526667pt;}
.h23{height:12.408000pt;}
.h10{height:16.846667pt;}
.h26{height:20.384000pt;}
.h33{height:20.385333pt;}
.h15{height:22.166667pt;}
.h11{height:22.168000pt;}
.h2b{height:23.044000pt;}
.h2c{height:23.045333pt;}
.h1e{height:23.818539pt;}
.h19{height:23.827781pt;}
.h2a{height:23.930667pt;}
.h12{height:23.940000pt;}
.h2e{height:26.086785pt;}
.h24{height:26.507232pt;}
.h25{height:27.176123pt;}
.h7{height:27.179688pt;}
.h6{height:27.216146pt;}
.h32{height:27.476000pt;}
.h20{height:27.486667pt;}
.h1c{height:29.196748pt;}
.he{height:29.208077pt;}
.h1b{height:29.411167pt;}
.hd{height:29.422579pt;}
.h9{height:29.472656pt;}
.h13{height:32.806667pt;}
.h18{height:33.692000pt;}
.h21{height:33.693333pt;}
.h27{height:34.565333pt;}
.h28{height:34.566667pt;}
.h1f{height:34.763269pt;}
.hb{height:35.367188pt;}
.h8{height:39.296875pt;}
.ha{height:42.453333pt;}
.h14{height:43.446667pt;}
.h5{height:46.698667pt;}
.hf{height:47.880000pt;}
.h3{height:48.890625pt;}
.h2{height:49.514062pt;}
.h4{height:50.944000pt;}
.h29{height:56.724000pt;}
.h2d{height:180.809333pt;}
.h17{height:181.766667pt;}
.h1a{height:202.966667pt;}
.h34{height:202.968000pt;}
.h22{height:619.148000pt;}
.h31{height:619.149333pt;}
.h1d{height:630.612000pt;}
.h30{height:630.613333pt;}
.h1{height:888.000000pt;}
.h0{height:888.189333pt;}
.w12{width:-435.944000pt;}
.wa{width:-435.908000pt;}
.w14{width:-330.472000pt;}
.wb{width:-311.774667pt;}
.w7{width:-187.677333pt;}
.w13{width:-98.257333pt;}
.w11{width:-98.256000pt;}
.w6{width:-98.160000pt;}
.w9{width:-98.088000pt;}
.w8{width:-94.488000pt;}
.wc{width:89.518667pt;}
.w2{width:89.553333pt;}
.wf{width:194.990667pt;}
.w4{width:213.688000pt;}
.w5{width:214.573333pt;}
.w10{width:233.101333pt;}
.wd{width:337.686667pt;}
.w3{width:337.820000pt;}
.we{width:434.645333pt;}
.w1{width:604.666667pt;}
.w0{width:604.724000pt;}
.x1c{left:-536.677333pt;}
.x14{left:-529.133867pt;}
.x29{left:-525.825733pt;}
.x17{left:-520.717333pt;}
.x15{left:-510.236267pt;}
.x31{left:-452.871200pt;}
.x19{left:-447.713200pt;}
.x2b{left:-445.975067pt;}
.x18{left:-431.128667pt;}
.x30{left:-428.233200pt;}
.x2c{left:-420.260262pt;}
.x2a{left:-379.335467pt;}
.x16{left:-372.731333pt;}
.x2f{left:-326.297600pt;}
.x1b{left:-307.278933pt;}
.x2d{left:-249.426000pt;}
.x1a{left:-236.021200pt;}
.x2e{left:-215.022174pt;}
.xf{left:-11.215467pt;}
.x0{left:0.000000pt;}
.x13{left:3.308667pt;}
.x7{left:4.744533pt;}
.x28{left:72.591867pt;}
.x3{left:75.590533pt;}
.xc{left:76.640533pt;}
.xa{left:77.748667pt;}
.x6{left:79.262667pt;}
.x23{left:81.931733pt;}
.xd{left:84.007200pt;}
.x1{left:94.488133pt;}
.x27{left:97.229867pt;}
.x1d{left:98.158667pt;}
.x2{left:113.385867pt;}
.x25{left:116.337600pt;}
.x8{left:168.816000pt;}
.x9{left:173.595733pt;}
.x21{left:184.468133pt;}
.x1e{left:187.677333pt;}
.x1f{left:192.455067pt;}
.x20{left:225.388933pt;}
.x22{left:273.366667pt;}
.x26{left:278.426933pt;}
.xb{left:292.062667pt;}
.xe{left:297.445467pt;}
.x5{left:328.515600pt;}
.x24{left:389.704267pt;}
.x4{left:506.887733pt;}
.x12{left:699.212000pt;}
.x10{left:702.884000pt;}
.x11{left:792.401333pt;}
}




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