
    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_37f0b6f8ec31e30eac760fdc.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.921000;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_e734a11c33105585cc0b2c85.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.987305;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_5d348be646b6a324cc48bf6a.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.861816;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_10b7af0a525a6874d83c77c7.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.677734;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_f204f9275e99c14a07def910.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.718750;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_78d7edccee1479fb36689b6a.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.079590;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_3e833167ff6d4edfe01bc26e.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.700000;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_505caa45044e8c9fa21240e3.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.928000;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_4e5ae476107d1ec8c9c8e342.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_22a00f9d591e7ab01be611ea.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.112305;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_d9fd3b18420e0ee536f3ef58.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.119629;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_eb0fa4451d044cde6e702851.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.975098;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_e6fb03677fee68b259760296.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.975098;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_f4af36aeaf0f21457eeed049.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.158691;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_9eb539275a9839a6c54e1775.woff2')format("woff");}.fff{font-family:fff;line-height:1.159668;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_b80e43c865bfb20a9e39bf22.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.682617;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_c2c56267d5a88c5871449a4f.woff2')format("woff");}.ff11{font-family:ff11;line-height:1.044000;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_327313167fcdddeb982ff2fa.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.726562;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_badc6fe7858408b7fbfcf94c.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.955000;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_2df9d49f209503e631847718.woff2')format("woff");}.ff14{font-family:ff14;line-height:1.097168;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_c243004163bb9bc1476b84c7.woff2')format("woff");}.ff15{font-family:ff15;line-height:0.921000;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_fa853eb45cd8103256332f75.woff2')format("woff");}.ff16{font-family:ff16;line-height:0.938000;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_dcbfb84bd5620acbb79eb44f.woff2')format("woff");}.ff17{font-family:ff17;line-height:0.886719;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_6e9756bc557332345d1da826.woff2')format("woff");}.ff18{font-family:ff18;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:ff19;src:url('chunks/assets/font_a388b06b300115527ed9217d.woff2')format("woff");}.ff19{font-family:ff19;line-height:0.728000;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_ba85422ae5db4294088364ae.woff2')format("woff");}.ff1a{font-family:ff1a;line-height:1.106000;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_2d17d6af3c26d887d9621243.woff2')format("woff");}.ff1b{font-family:ff1b;line-height:0.748000;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(0.286675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286675,0.000000,0.000000,0.250000,0,0);}
.v2{vertical-align:-13.986000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:21.978000px;}
.v4{vertical-align:30.000000px;}
.v3{vertical-align:60.000000px;}
.ls10{letter-spacing:-5.520000px;}
.lsf{letter-spacing:-4.440000px;}
.ls15{letter-spacing:-0.528000px;}
.lse{letter-spacing:-0.480000px;}
.ls14{letter-spacing:-0.432000px;}
.ls16{letter-spacing:-0.384000px;}
.ls18{letter-spacing:-0.336000px;}
.lsd{letter-spacing:-0.240000px;}
.ls17{letter-spacing:-0.144000px;}
.ls8{letter-spacing:0.000000px;}
.lsc{letter-spacing:0.000600px;}
.ls0{letter-spacing:0.003984px;}
.ls12{letter-spacing:0.048000px;}
.lsa{letter-spacing:0.234000px;}
.ls13{letter-spacing:0.720000px;}
.ls9{letter-spacing:0.780000px;}
.ls11{letter-spacing:0.912000px;}
.ls7{letter-spacing:1.104000px;}
.ls6{letter-spacing:1.152000px;}
.ls4{letter-spacing:1.248000px;}
.ls2{letter-spacing:1.260000px;}
.ls5{letter-spacing:1.440000px;}
.ls3{letter-spacing:2.520000px;}
.lsb{letter-spacing:34.848000px;}
.ls1{letter-spacing:617.794800px;}
.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;}
}
.ws17{word-spacing:-48.000000px;}
.ws18{word-spacing:-16.680000px;}
.ws14{word-spacing:-15.600000px;}
.ws15{word-spacing:-15.360000px;}
.ws25{word-spacing:-15.168000px;}
.ws23{word-spacing:-13.344000px;}
.ws1f{word-spacing:-12.240000px;}
.ws1{word-spacing:-9.576000px;}
.ws6{word-spacing:-2.520000px;}
.wsc{word-spacing:-1.488000px;}
.ws8{word-spacing:-1.440000px;}
.ws5{word-spacing:-1.260000px;}
.ws7{word-spacing:-1.248000px;}
.ws9{word-spacing:-1.152000px;}
.wse{word-spacing:-1.104000px;}
.ws24{word-spacing:-0.912000px;}
.ws12{word-spacing:-0.816000px;}
.ws2d{word-spacing:-0.720000px;}
.ws11{word-spacing:-0.576000px;}
.ws4{word-spacing:-0.234000px;}
.ws2b{word-spacing:-0.048000px;}
.ws0{word-spacing:-0.038478px;}
.ws2{word-spacing:0.000000px;}
.ws2c{word-spacing:0.144000px;}
.ws2a{word-spacing:0.240000px;}
.ws2e{word-spacing:0.336000px;}
.ws29{word-spacing:0.384000px;}
.ws27{word-spacing:0.432000px;}
.ws19{word-spacing:0.480000px;}
.ws28{word-spacing:0.528000px;}
.wsf{word-spacing:1.200000px;}
.wsb{word-spacing:2.160000px;}
.ws10{word-spacing:3.936000px;}
.wsd{word-spacing:4.368000px;}
.wsa{word-spacing:4.512000px;}
.ws16{word-spacing:124.320000px;}
.ws1a{word-spacing:125.232000px;}
.ws21{word-spacing:134.448000px;}
.ws26{word-spacing:135.744000px;}
.ws22{word-spacing:136.608000px;}
.ws3{word-spacing:197.064000px;}
.ws13{word-spacing:202.848000px;}
.ws1b{word-spacing:278.221800px;}
.ws1d{word-spacing:278.222400px;}
.ws1c{word-spacing:1139.956800px;}
.ws1e{word-spacing:1151.206800px;}
.ws20{word-spacing:1224.405600px;}
._e{margin-left:-10.183800px;}
._d{margin-left:-8.698200px;}
._f{margin-left:-7.248000px;}
._3{margin-left:-6.091692px;}
._a{margin-left:-5.053800px;}
._2{margin-left:-4.045800px;}
._0{margin-left:-2.664000px;}
._1{margin-left:-1.053000px;}
._4{width:1.180800px;}
._5{width:2.520000px;}
._7{width:3.614400px;}
._6{width:5.107200px;}
._8{width:6.302400px;}
._9{width:7.708800px;}
._12{width:9.402000px;}
._18{width:10.710000px;}
._14{width:11.724000px;}
._16{width:13.722000px;}
._13{width:15.462000px;}
._11{width:17.880000px;}
._15{width:19.356000px;}
._2f{width:21.987000px;}
._1d{width:25.734000px;}
._1c{width:27.550200px;}
._1b{width:29.047800px;}
._10{width:168.060000px;}
._2c{width:241.638000px;}
._28{width:249.423000px;}
._2d{width:253.662000px;}
._21{width:263.280000px;}
._23{width:279.946200px;}
._20{width:301.380000px;}
._27{width:318.055200px;}
._22{width:334.730400px;}
._2b{width:800.003400px;}
._25{width:854.533800px;}
._1e{width:859.465800px;}
._2a{width:1119.136200px;}
._1f{width:1150.749000px;}
._26{width:1167.891600px;}
._2e{width:1242.772800px;}
._24{width:1244.596800px;}
._19{width:1254.004800px;}
._c{width:1255.108800px;}
._1a{width:1498.340400px;}
._17{width:1501.412400px;}
._b{width:1507.591200px;}
._30{width:1510.292400px;}
._29{width:1518.260400px;}
.fc6{color:rgb(254,0,0);}
.fc5{color:rgb(26,102,186);}
.fc4{color:rgb(238,37,43);}
.fc3{color:rgb(255,255,255);}
.fc2{color:rgb(45,99,183);}
.fc1{color:rgb(35,31,32);}
.fc0{color:rgb(238,39,44);}
.fs5{font-size:24.486000px;}
.fs4{font-size:38.478000px;}
.fs6{font-size:42.000000px;}
.fs8{font-size:48.000000px;}
.fs0{font-size:54.000000px;}
.fsa{font-size:60.000000px;}
.fs3{font-size:66.000000px;}
.fs9{font-size:72.000000px;}
.fs2{font-size:78.000000px;}
.fs7{font-size:84.000000px;}
.fs1{font-size:90.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:59.357700px;}
.y3f{bottom:98.610300px;}
.y3d{bottom:121.468500px;}
.y3c{bottom:135.868500px;}
.y140{bottom:162.253200px;}
.y68{bottom:163.387650px;}
.y169{bottom:163.562550px;}
.y109{bottom:163.701450px;}
.yda{bottom:166.843500px;}
.y121{bottom:167.888100px;}
.yac{bottom:172.233150px;}
.y168{bottom:176.312550px;}
.y13f{bottom:182.953200px;}
.y67{bottom:184.387650px;}
.y1a1{bottom:184.521600px;}
.y8a{bottom:188.556900px;}
.y120{bottom:188.888100px;}
.yd9{bottom:191.974500px;}
.yab{bottom:193.233150px;}
.y108{bottom:196.387950px;}
.y1a0{bottom:197.271600px;}
.y167{bottom:197.566650px;}
.y66{bottom:205.387650px;}
.yd8{bottom:206.974500px;}
.y89{bottom:209.556900px;}
.y11f{bottom:209.888100px;}
.y166{bottom:210.316650px;}
.y107{bottom:211.387950px;}
.yaa{bottom:214.233150px;}
.y19f{bottom:218.525550px;}
.yd7{bottom:221.974500px;}
.y13e{bottom:224.913000px;}
.y65{bottom:226.387650px;}
.y106{bottom:226.387950px;}
.y88{bottom:230.556900px;}
.y11e{bottom:230.888100px;}
.y19e{bottom:231.275550px;}
.y165{bottom:231.570600px;}
.ya9{bottom:235.233150px;}
.yd6{bottom:236.974500px;}
.y164{bottom:244.320600px;}
.y13d{bottom:245.613000px;}
.y64{bottom:247.387650px;}
.y87{bottom:251.556900px;}
.y11d{bottom:251.888100px;}
.y19d{bottom:252.529500px;}
.y105{bottom:252.963900px;}
.ya8{bottom:256.233150px;}
.yd5{bottom:259.894800px;}
.y19c{bottom:265.279500px;}
.y163{bottom:265.574400px;}
.y13c{bottom:266.313000px;}
.y104{bottom:267.963900px;}
.y63{bottom:268.387650px;}
.y86{bottom:272.556900px;}
.yd4{bottom:274.894800px;}
.y162{bottom:278.324400px;}
.y103{bottom:282.963900px;}
.y19b{bottom:286.533450px;}
.y13b{bottom:287.013000px;}
.yd3{bottom:289.894800px;}
.y161{bottom:291.074400px;}
.y11c{bottom:294.147900px;}
.y102{bottom:297.963900px;}
.ya7{bottom:298.492950px;}
.y19a{bottom:299.283450px;}
.y18{bottom:303.499800px;}
.yd2{bottom:304.894800px;}
.y13a{bottom:307.713000px;}
.y85{bottom:310.564800px;}
.y62{bottom:310.647450px;}
.y3b{bottom:310.676550px;}
.y160{bottom:312.328350px;}
.y101{bottom:312.963900px;}
.y11b{bottom:315.147900px;}
.y199{bottom:320.537400px;}
.y17{bottom:324.759600px;}
.y15f{bottom:325.078350px;}
.yd1{bottom:327.815250px;}
.y139{bottom:328.413000px;}
.y3a{bottom:330.609300px;}
.y61{bottom:331.647450px;}
.y198{bottom:333.287400px;}
.y100{bottom:339.539850px;}
.yd0{bottom:342.815250px;}
.ya6{bottom:343.504800px;}
.y16{bottom:346.019400px;}
.y138{bottom:349.113000px;}
.y15e{bottom:350.584350px;}
.y60{bottom:352.647600px;}
.y84{bottom:352.824600px;}
.yff{bottom:354.539850px;}
.y197{bottom:354.541350px;}
.y11a{bottom:357.407700px;}
.ycf{bottom:357.815250px;}
.y39{bottom:359.565300px;}
.ya5{bottom:364.504800px;}
.y15{bottom:367.279350px;}
.y196{bottom:367.291350px;}
.yfe{bottom:369.539850px;}
.y137{bottom:369.813000px;}
.y38{bottom:371.565300px;}
.y5f{bottom:373.647600px;}
.y83{bottom:373.824600px;}
.y119{bottom:378.407700px;}
.yce{bottom:380.735700px;}
.y37{bottom:383.565300px;}
.ya4{bottom:385.504800px;}
.y14{bottom:388.539150px;}
.y195{bottom:388.545300px;}
.y136{bottom:390.513000px;}
.y5e{bottom:394.647600px;}
.y82{bottom:394.824600px;}
.y36{bottom:395.565300px;}
.ycd{bottom:395.735700px;}
.yfd{bottom:398.949300px;}
.y118{bottom:399.407700px;}
.y194{bottom:401.295300px;}
.ya3{bottom:406.504800px;}
.y15d{bottom:406.852050px;}
.y35{bottom:407.565300px;}
.y13{bottom:409.798950px;}
.ycc{bottom:410.735700px;}
.y135{bottom:411.213000px;}
.yfc{bottom:413.949300px;}
.y5d{bottom:415.647600px;}
.y34{bottom:419.565300px;}
.y117{bottom:420.407700px;}
.y193{bottom:422.549100px;}
.ycb{bottom:425.735700px;}
.ya2{bottom:427.504800px;}
.y15c{bottom:427.852050px;}
.yfb{bottom:428.949300px;}
.y12{bottom:431.058900px;}
.y33{bottom:431.565300px;}
.y134{bottom:431.913000px;}
.y81{bottom:432.832500px;}
.y192{bottom:435.299100px;}
.y5c{bottom:436.647600px;}
.yca{bottom:440.735700px;}
.y32{bottom:443.565300px;}
.yfa{bottom:443.949300px;}
.y15b{bottom:448.852050px;}
.y116{bottom:449.911650px;}
.y11{bottom:452.318700px;}
.y133{bottom:452.613000px;}
.y31{bottom:455.565300px;}
.y191{bottom:456.553050px;}
.y5b{bottom:457.647600px;}
.yf9{bottom:458.949300px;}
.yc9{bottom:463.656150px;}
.y30{bottom:467.565300px;}
.y190{bottom:469.303050px;}
.ya1{bottom:469.764600px;}
.y15a{bottom:469.852050px;}
.y132{bottom:473.313000px;}
.y80{bottom:473.592300px;}
.y10{bottom:474.889050px;}
.y115{bottom:478.642500px;}
.y5a{bottom:478.647600px;}
.yc8{bottom:478.656150px;}
.y2f{bottom:479.565300px;}
.y18f{bottom:482.053050px;}
.yf{bottom:485.353950px;}
.y114{bottom:486.142500px;}
.yf8{bottom:488.358750px;}
.y159{bottom:490.852050px;}
.y2e{bottom:491.565300px;}
.yc7{bottom:493.656150px;}
.y131{bottom:494.013000px;}
.y7f{bottom:494.592300px;}
.ye{bottom:495.818850px;}
.y18e{bottom:503.307000px;}
.yf7{bottom:503.358750px;}
.y2d{bottom:503.565300px;}
.yd{bottom:506.283750px;}
.y158{bottom:511.852050px;}
.y130{bottom:514.713000px;}
.ya0{bottom:514.776450px;}
.y2c{bottom:515.565300px;}
.y7e{bottom:515.592300px;}
.y18d{bottom:516.057000px;}
.yc6{bottom:516.576450px;}
.y112{bottom:518.353500px;}
.yf6{bottom:518.358750px;}
.y59{bottom:520.907400px;}
.y111{bottom:525.853500px;}
.y2b{bottom:527.565300px;}
.yc{bottom:528.854100px;}
.yc5{bottom:531.576450px;}
.y157{bottom:532.852050px;}
.y113{bottom:533.353500px;}
.y12f{bottom:535.413000px;}
.y9f{bottom:535.776450px;}
.y7d{bottom:536.592300px;}
.y18c{bottom:537.310950px;}
.y2a{bottom:539.565300px;}
.y58{bottom:541.907400px;}
.yc4{bottom:546.576450px;}
.yf5{bottom:549.776100px;}
.y18b{bottom:550.060950px;}
.y156{bottom:553.852050px;}
.y29{bottom:555.817350px;}
.y12e{bottom:556.113000px;}
.y9e{bottom:556.776450px;}
.y7c{bottom:557.592300px;}
.yc3{bottom:561.576450px;}
.y18a{bottom:562.810950px;}
.y57{bottom:562.907400px;}
.y110{bottom:563.343450px;}
.yf4{bottom:564.776100px;}
.y155{bottom:574.852050px;}
.yc2{bottom:576.576450px;}
.y12d{bottom:576.813000px;}
.y28{bottom:576.879150px;}
.y9d{bottom:577.776450px;}
.y7b{bottom:578.592300px;}
.yf3{bottom:579.776100px;}
.y56{bottom:583.907400px;}
.y189{bottom:584.064900px;}
.yf2{bottom:594.776100px;}
.y154{bottom:595.852050px;}
.y27{bottom:596.793000px;}
.y188{bottom:596.814900px;}
.y12c{bottom:597.513000px;}
.y9c{bottom:598.776450px;}
.yc1{bottom:599.496900px;}
.y7a{bottom:599.592300px;}
.y10f{bottom:600.855300px;}
.y55{bottom:604.907400px;}
.yc0{bottom:606.996900px;}
.yf1{bottom:609.776100px;}
.y153{bottom:616.852050px;}
.y187{bottom:618.068850px;}
.y12b{bottom:618.213000px;}
.y79{bottom:620.592300px;}
.y10e{bottom:621.855300px;}
.yf0{bottom:624.776100px;}
.y26{bottom:625.749000px;}
.y54{bottom:625.907400px;}
.y186{bottom:630.818850px;}
.y25{bottom:637.749000px;}
.y152{bottom:637.852050px;}
.y12a{bottom:638.913000px;}
.yef{bottom:639.776100px;}
.ybc{bottom:640.955100px;}
.y9b{bottom:641.036250px;}
.y78{bottom:641.592300px;}
.y10d{bottom:642.855300px;}
.y53{bottom:646.907400px;}
.ybf{bottom:648.455100px;}
.y24{bottom:649.749000px;}
.y185{bottom:652.072800px;}
.ybb{bottom:655.955100px;}
.y151{bottom:658.852050px;}
.y129{bottom:659.613000px;}
.y23{bottom:661.749000px;}
.y77{bottom:662.592300px;}
.ybe{bottom:663.455100px;}
.y184{bottom:664.822800px;}
.ybd{bottom:670.955100px;}
.yee{bottom:671.193450px;}
.y10c{bottom:672.359100px;}
.y22{bottom:673.749000px;}
.y183{bottom:677.572800px;}
.y150{bottom:679.852050px;}
.y128{bottom:680.313000px;}
.y76{bottom:683.592300px;}
.y21{bottom:685.749000px;}
.yed{bottom:686.193450px;}
.y9a{bottom:687.548100px;}
.y52{bottom:689.167200px;}
.y20{bottom:697.749000px;}
.y182{bottom:698.826750px;}
.y14f{bottom:700.852050px;}
.y127{bottom:701.013000px;}
.yec{bottom:701.193450px;}
.y75{bottom:704.592300px;}
.yba{bottom:706.292250px;}
.y99{bottom:708.548100px;}
.y1f{bottom:709.749000px;}
.y51{bottom:710.167200px;}
.y181{bottom:711.576750px;}
.y126{bottom:721.713000px;}
.y1e{bottom:721.749000px;}
.y14e{bottom:721.852050px;}
.y180{bottom:724.326750px;}
.y98{bottom:729.548100px;}
.y50{bottom:731.167200px;}
.y1d{bottom:733.749000px;}
.yeb{bottom:736.095000px;}
.y125{bottom:742.413000px;}
.y74{bottom:742.600200px;}
.yea{bottom:743.595000px;}
.yb9{bottom:743.803950px;}
.y17f{bottom:745.580700px;}
.y1c{bottom:745.749000px;}
.y97{bottom:750.548100px;}
.y4f{bottom:752.167200px;}
.y1b{bottom:757.749000px;}
.y17e{bottom:758.330700px;}
.y14d{bottom:764.111850px;}
.yb8{bottom:764.803950px;}
.y1a{bottom:769.749000px;}
.y4e{bottom:773.167200px;}
.y17d{bottom:779.584650px;}
.ye8{bottom:782.474850px;}
.y73{bottom:783.360150px;}
.y124{bottom:784.372800px;}
.yb7{bottom:785.803950px;}
.y19{bottom:786.000900px;}
.ye9{bottom:789.974850px;}
.y17c{bottom:792.334650px;}
.y96{bottom:792.807900px;}
.y4d{bottom:794.167200px;}
.ye7{bottom:797.474850px;}
.y72{bottom:804.360150px;}
.ye4{bottom:804.974850px;}
.yb6{bottom:806.803950px;}
.ye6{bottom:812.474850px;}
.ya{bottom:812.983500px;}
.y17b{bottom:813.588450px;}
.y4c{bottom:815.167200px;}
.y14c{bottom:820.379550px;}
.y17a{bottom:826.338450px;}
.ye5{bottom:827.474850px;}
.yb5{bottom:827.803950px;}
.y123{bottom:827.884650px;}
.y95{bottom:835.067850px;}
.y4b{bottom:836.167200px;}
.y179{bottom:839.088450px;}
.y14b{bottom:841.379550px;}
.y71{bottom:842.367900px;}
.y122{bottom:842.884650px;}
.yb4{bottom:848.803950px;}
.y4a{bottom:857.167200px;}
.y9{bottom:858.705000px;}
.y178{bottom:860.342400px;}
.y14a{bottom:862.079550px;}
.ye3{bottom:863.308050px;}
.y8{bottom:867.808350px;}
.yb3{bottom:869.803950px;}
.y177{bottom:873.092400px;}
.y49{bottom:878.167200px;}
.y94{bottom:880.079550px;}
.y149{bottom:882.779550px;}
.y70{bottom:883.127700px;}
.y7{bottom:883.904850px;}
.y176{bottom:885.842400px;}
.ye2{bottom:900.819900px;}
.y93{bottom:901.079550px;}
.y6f{bottom:904.127700px;}
.y175{bottom:907.096500px;}
.yb2{bottom:912.063750px;}
.y6{bottom:914.308350px;}
.y174{bottom:919.846500px;}
.y48{bottom:920.427000px;}
.ye1{bottom:921.819900px;}
.y92{bottom:922.079550px;}
.y148{bottom:924.739350px;}
.y173{bottom:932.596500px;}
.y47{bottom:941.427000px;}
.y6e{bottom:942.135750px;}
.ye0{bottom:942.819900px;}
.y91{bottom:943.079550px;}
.y147{bottom:945.439500px;}
.y172{bottom:953.850300px;}
.y5{bottom:957.820200px;}
.y46{bottom:962.427000px;}
.y90{bottom:964.079550px;}
.y146{bottom:966.139500px;}
.y171{bottom:966.600300px;}
.yb1{bottom:968.331600px;}
.y4{bottom:981.220200px;}
.y6d{bottom:982.895550px;}
.y45{bottom:983.427000px;}
.y8f{bottom:985.079550px;}
.ydf{bottom:985.079700px;}
.y145{bottom:986.839350px;}
.y170{bottom:987.854250px;}
.yb0{bottom:989.331600px;}
.y16f{bottom:1000.604250px;}
.y6c{bottom:1003.895550px;}
.y44{bottom:1004.427000px;}
.y8e{bottom:1006.079550px;}
.yde{bottom:1006.079700px;}
.y144{bottom:1007.539350px;}
.yaf{bottom:1010.331600px;}
.y16e{bottom:1021.858200px;}
.y6b{bottom:1024.895550px;}
.y43{bottom:1025.427000px;}
.y3{bottom:1026.232050px;}
.y8d{bottom:1027.079550px;}
.y143{bottom:1028.239350px;}
.yae{bottom:1031.331600px;}
.y16d{bottom:1034.608200px;}
.y6a{bottom:1045.895550px;}
.y42{bottom:1046.427000px;}
.y8c{bottom:1048.079550px;}
.ydd{bottom:1048.339500px;}
.y142{bottom:1048.939500px;}
.y2{bottom:1051.432050px;}
.yad{bottom:1052.331600px;}
.y16c{bottom:1055.862150px;}
.y16b{bottom:1068.612150px;}
.ydc{bottom:1069.339500px;}
.y141{bottom:1069.639500px;}
.y10b{bottom:1069.870950px;}
.yb{bottom:1084.650750px;}
.y69{bottom:1088.155350px;}
.y41{bottom:1088.686950px;}
.y16a{bottom:1089.866100px;}
.y8b{bottom:1090.339350px;}
.ydb{bottom:1090.339500px;}
.y10a{bottom:1090.870950px;}
.y3e{bottom:1111.393800px;}
.y40{bottom:1154.834700px;}
.h6{height:22.517906px;}
.h9{height:30.577148px;}
.h13{height:34.272000px;}
.h10{height:35.088000px;}
.h7{height:36.503906px;}
.ha{height:37.877930px;}
.hf{height:38.016000px;}
.hb{height:38.185547px;}
.h2{height:38.556000px;}
.h1f{height:41.718750px;}
.hd{height:43.289062px;}
.he{height:43.640625px;}
.h16{height:43.681641px;}
.hc{height:46.218750px;}
.h1e{height:46.933594px;}
.h1c{height:47.882812px;}
.h17{height:48.384000px;}
.h12{height:52.148438px;}
.h15{height:53.203125px;}
.h4{height:53.320312px;}
.h5{height:53.399414px;}
.h8{height:58.800000px;}
.h14{height:62.964844px;}
.h11{height:63.843750px;}
.h3{height:72.817383px;}
.h1d{height:76.933594px;}
.h1b{height:77.882812px;}
.h19{height:82.148438px;}
.h1a{height:112.148438px;}
.h18{height:113.203125px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x8{left:63.779550px;}
.x7{left:68.031450px;}
.x2{left:81.507300px;}
.x4{left:87.453900px;}
.xc{left:94.351350px;}
.x13{left:98.301600px;}
.x9{left:99.319200px;}
.xa{left:103.857750px;}
.xb{left:106.609050px;}
.x1d{left:110.574150px;}
.x25{left:112.299150px;}
.x10{left:129.250500px;}
.x19{left:144.567000px;}
.x1a{left:148.818900px;}
.x12{left:151.204800px;}
.x1b{left:159.448800px;}
.x3b{left:172.005900px;}
.xf{left:174.035700px;}
.xd{left:219.074850px;}
.x11{left:242.120700px;}
.x5{left:248.262300px;}
.xe{left:269.614950px;}
.x3{left:285.864000px;}
.x6{left:290.055300px;}
.x1c{left:300.940500px;}
.x14{left:318.147600px;}
.x1{left:380.019750px;}
.x1e{left:414.280500px;}
.x30{left:426.717150px;}
.x32{left:428.390700px;}
.x1f{left:432.561750px;}
.x29{left:437.293350px;}
.x31{left:438.860700px;}
.x2e{left:441.464550px;}
.x26{left:443.134500px;}
.x35{left:444.222000px;}
.x28{left:445.635750px;}
.x37{left:446.723250px;}
.x16{left:538.730250px;}
.x18{left:540.009300px;}
.x21{left:549.655500px;}
.x20{left:552.534000px;}
.x3c{left:557.658000px;}
.x34{left:563.765700px;}
.x22{left:567.936750px;}
.x2a{left:572.668350px;}
.x33{left:574.235700px;}
.x2f{left:576.839550px;}
.x27{left:578.509500px;}
.x36{left:579.597000px;}
.x2b{left:581.010750px;}
.x38{left:582.098250px;}
.x3d{left:684.740550px;}
.x3a{left:695.434800px;}
.x2c{left:699.075000px;}
.x23{left:703.513350px;}
.x3f{left:705.036750px;}
.x2d{left:706.860600px;}
.x39{left:707.948250px;}
.x24{left:711.295350px;}
.x15{left:715.491450px;}
.x3e{left:725.500950px;}
.x17{left:751.480050px;}
@media print{
.v2{vertical-align:-12.432000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:19.536000pt;}
.v4{vertical-align:26.666667pt;}
.v3{vertical-align:53.333333pt;}
.ls10{letter-spacing:-4.906667pt;}
.lsf{letter-spacing:-3.946667pt;}
.ls15{letter-spacing:-0.469333pt;}
.lse{letter-spacing:-0.426667pt;}
.ls14{letter-spacing:-0.384000pt;}
.ls16{letter-spacing:-0.341333pt;}
.ls18{letter-spacing:-0.298667pt;}
.lsd{letter-spacing:-0.213333pt;}
.ls17{letter-spacing:-0.128000pt;}
.ls8{letter-spacing:0.000000pt;}
.lsc{letter-spacing:0.000533pt;}
.ls0{letter-spacing:0.003541pt;}
.ls12{letter-spacing:0.042667pt;}
.lsa{letter-spacing:0.208000pt;}
.ls13{letter-spacing:0.640000pt;}
.ls9{letter-spacing:0.693333pt;}
.ls11{letter-spacing:0.810667pt;}
.ls7{letter-spacing:0.981333pt;}
.ls6{letter-spacing:1.024000pt;}
.ls4{letter-spacing:1.109333pt;}
.ls2{letter-spacing:1.120000pt;}
.ls5{letter-spacing:1.280000pt;}
.ls3{letter-spacing:2.240000pt;}
.lsb{letter-spacing:30.976000pt;}
.ls1{letter-spacing:549.150933pt;}
.ws17{word-spacing:-42.666667pt;}
.ws18{word-spacing:-14.826667pt;}
.ws14{word-spacing:-13.866667pt;}
.ws15{word-spacing:-13.653333pt;}
.ws25{word-spacing:-13.482667pt;}
.ws23{word-spacing:-11.861333pt;}
.ws1f{word-spacing:-10.880000pt;}
.ws1{word-spacing:-8.512000pt;}
.ws6{word-spacing:-2.240000pt;}
.wsc{word-spacing:-1.322667pt;}
.ws8{word-spacing:-1.280000pt;}
.ws5{word-spacing:-1.120000pt;}
.ws7{word-spacing:-1.109333pt;}
.ws9{word-spacing:-1.024000pt;}
.wse{word-spacing:-0.981333pt;}
.ws24{word-spacing:-0.810667pt;}
.ws12{word-spacing:-0.725333pt;}
.ws2d{word-spacing:-0.640000pt;}
.ws11{word-spacing:-0.512000pt;}
.ws4{word-spacing:-0.208000pt;}
.ws2b{word-spacing:-0.042667pt;}
.ws0{word-spacing:-0.034203pt;}
.ws2{word-spacing:0.000000pt;}
.ws2c{word-spacing:0.128000pt;}
.ws2a{word-spacing:0.213333pt;}
.ws2e{word-spacing:0.298667pt;}
.ws29{word-spacing:0.341333pt;}
.ws27{word-spacing:0.384000pt;}
.ws19{word-spacing:0.426667pt;}
.ws28{word-spacing:0.469333pt;}
.wsf{word-spacing:1.066667pt;}
.wsb{word-spacing:1.920000pt;}
.ws10{word-spacing:3.498667pt;}
.wsd{word-spacing:3.882667pt;}
.wsa{word-spacing:4.010667pt;}
.ws16{word-spacing:110.506667pt;}
.ws1a{word-spacing:111.317333pt;}
.ws21{word-spacing:119.509333pt;}
.ws26{word-spacing:120.661333pt;}
.ws22{word-spacing:121.429333pt;}
.ws3{word-spacing:175.168000pt;}
.ws13{word-spacing:180.309333pt;}
.ws1b{word-spacing:247.308267pt;}
.ws1d{word-spacing:247.308800pt;}
.ws1c{word-spacing:1013.294933pt;}
.ws1e{word-spacing:1023.294933pt;}
.ws20{word-spacing:1088.360533pt;}
._e{margin-left:-9.052267pt;}
._d{margin-left:-7.731733pt;}
._f{margin-left:-6.442667pt;}
._3{margin-left:-5.414837pt;}
._a{margin-left:-4.492267pt;}
._2{margin-left:-3.596267pt;}
._0{margin-left:-2.368000pt;}
._1{margin-left:-0.936000pt;}
._4{width:1.049600pt;}
._5{width:2.240000pt;}
._7{width:3.212800pt;}
._6{width:4.539733pt;}
._8{width:5.602133pt;}
._9{width:6.852267pt;}
._12{width:8.357333pt;}
._18{width:9.520000pt;}
._14{width:10.421333pt;}
._16{width:12.197333pt;}
._13{width:13.744000pt;}
._11{width:15.893333pt;}
._15{width:17.205333pt;}
._2f{width:19.544000pt;}
._1d{width:22.874667pt;}
._1c{width:24.489067pt;}
._1b{width:25.820267pt;}
._10{width:149.386667pt;}
._2c{width:214.789333pt;}
._28{width:221.709333pt;}
._2d{width:225.477333pt;}
._21{width:234.026667pt;}
._23{width:248.841067pt;}
._20{width:267.893333pt;}
._27{width:282.715733pt;}
._22{width:297.538133pt;}
._2b{width:711.114133pt;}
._25{width:759.585600pt;}
._1e{width:763.969600pt;}
._2a{width:994.787733pt;}
._1f{width:1022.888000pt;}
._26{width:1038.125867pt;}
._2e{width:1104.686933pt;}
._24{width:1106.308267pt;}
._19{width:1114.670933pt;}
._c{width:1115.652267pt;}
._1a{width:1331.858133pt;}
._17{width:1334.588800pt;}
._b{width:1340.081067pt;}
._30{width:1342.482133pt;}
._29{width:1349.564800pt;}
.fs5{font-size:21.765333pt;}
.fs4{font-size:34.202667pt;}
.fs6{font-size:37.333333pt;}
.fs8{font-size:42.666667pt;}
.fs0{font-size:48.000000pt;}
.fsa{font-size:53.333333pt;}
.fs3{font-size:58.666667pt;}
.fs9{font-size:64.000000pt;}
.fs2{font-size:69.333333pt;}
.fs7{font-size:74.666667pt;}
.fs1{font-size:80.000000pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:52.762400pt;}
.y3f{bottom:87.653600pt;}
.y3d{bottom:107.972000pt;}
.y3c{bottom:120.772000pt;}
.y140{bottom:144.225067pt;}
.y68{bottom:145.233467pt;}
.y169{bottom:145.388933pt;}
.y109{bottom:145.512400pt;}
.yda{bottom:148.305333pt;}
.y121{bottom:149.233867pt;}
.yac{bottom:153.096133pt;}
.y168{bottom:156.722267pt;}
.y13f{bottom:162.625067pt;}
.y67{bottom:163.900133pt;}
.y1a1{bottom:164.019200pt;}
.y8a{bottom:167.606133pt;}
.y120{bottom:167.900533pt;}
.yd9{bottom:170.644000pt;}
.yab{bottom:171.762800pt;}
.y108{bottom:174.567067pt;}
.y1a0{bottom:175.352533pt;}
.y167{bottom:175.614800pt;}
.y66{bottom:182.566800pt;}
.yd8{bottom:183.977333pt;}
.y89{bottom:186.272800pt;}
.y11f{bottom:186.567200pt;}
.y166{bottom:186.948133pt;}
.y107{bottom:187.900400pt;}
.yaa{bottom:190.429467pt;}
.y19f{bottom:194.244933pt;}
.yd7{bottom:197.310667pt;}
.y13e{bottom:199.922667pt;}
.y65{bottom:201.233467pt;}
.y106{bottom:201.233733pt;}
.y88{bottom:204.939467pt;}
.y11e{bottom:205.233867pt;}
.y19e{bottom:205.578267pt;}
.y165{bottom:205.840533pt;}
.ya9{bottom:209.096133pt;}
.yd6{bottom:210.644000pt;}
.y164{bottom:217.173867pt;}
.y13d{bottom:218.322667pt;}
.y64{bottom:219.900133pt;}
.y87{bottom:223.606133pt;}
.y11d{bottom:223.900533pt;}
.y19d{bottom:224.470667pt;}
.y105{bottom:224.856800pt;}
.ya8{bottom:227.762800pt;}
.yd5{bottom:231.017600pt;}
.y19c{bottom:235.804000pt;}
.y163{bottom:236.066133pt;}
.y13c{bottom:236.722667pt;}
.y104{bottom:238.190133pt;}
.y63{bottom:238.566800pt;}
.y86{bottom:242.272800pt;}
.yd4{bottom:244.350933pt;}
.y162{bottom:247.399467pt;}
.y103{bottom:251.523467pt;}
.y19b{bottom:254.696400pt;}
.y13b{bottom:255.122667pt;}
.yd3{bottom:257.684267pt;}
.y161{bottom:258.732800pt;}
.y11c{bottom:261.464800pt;}
.y102{bottom:264.856800pt;}
.ya7{bottom:265.327067pt;}
.y19a{bottom:266.029733pt;}
.y18{bottom:269.777600pt;}
.yd2{bottom:271.017600pt;}
.y13a{bottom:273.522667pt;}
.y85{bottom:276.057600pt;}
.y62{bottom:276.131067pt;}
.y3b{bottom:276.156933pt;}
.y160{bottom:277.625200pt;}
.y101{bottom:278.190133pt;}
.y11b{bottom:280.131467pt;}
.y199{bottom:284.922133pt;}
.y17{bottom:288.675200pt;}
.y15f{bottom:288.958533pt;}
.yd1{bottom:291.391333pt;}
.y139{bottom:291.922667pt;}
.y3a{bottom:293.874933pt;}
.y61{bottom:294.797733pt;}
.y198{bottom:296.255467pt;}
.y100{bottom:301.813200pt;}
.yd0{bottom:304.724667pt;}
.ya6{bottom:305.337600pt;}
.y16{bottom:307.572800pt;}
.y138{bottom:310.322667pt;}
.y15e{bottom:311.630533pt;}
.y60{bottom:313.464533pt;}
.y84{bottom:313.621867pt;}
.yff{bottom:315.146533pt;}
.y197{bottom:315.147867pt;}
.y11a{bottom:317.695733pt;}
.ycf{bottom:318.058000pt;}
.y39{bottom:319.613600pt;}
.ya5{bottom:324.004267pt;}
.y15{bottom:326.470533pt;}
.y196{bottom:326.481200pt;}
.yfe{bottom:328.479867pt;}
.y137{bottom:328.722667pt;}
.y38{bottom:330.280267pt;}
.y5f{bottom:332.131200pt;}
.y83{bottom:332.288533pt;}
.y119{bottom:336.362400pt;}
.yce{bottom:338.431733pt;}
.y37{bottom:340.946933pt;}
.ya4{bottom:342.670933pt;}
.y14{bottom:345.368133pt;}
.y195{bottom:345.373600pt;}
.y136{bottom:347.122667pt;}
.y5e{bottom:350.797867pt;}
.y82{bottom:350.955200pt;}
.y36{bottom:351.613600pt;}
.ycd{bottom:351.765067pt;}
.yfd{bottom:354.621600pt;}
.y118{bottom:355.029067pt;}
.y194{bottom:356.706933pt;}
.ya3{bottom:361.337600pt;}
.y15d{bottom:361.646267pt;}
.y35{bottom:362.280267pt;}
.y13{bottom:364.265733pt;}
.ycc{bottom:365.098400pt;}
.y135{bottom:365.522667pt;}
.yfc{bottom:367.954933pt;}
.y5d{bottom:369.464533pt;}
.y34{bottom:372.946933pt;}
.y117{bottom:373.695733pt;}
.y193{bottom:375.599200pt;}
.ycb{bottom:378.431733pt;}
.ya2{bottom:380.004267pt;}
.y15c{bottom:380.312933pt;}
.yfb{bottom:381.288267pt;}
.y12{bottom:383.163467pt;}
.y33{bottom:383.613600pt;}
.y134{bottom:383.922667pt;}
.y81{bottom:384.740000pt;}
.y192{bottom:386.932533pt;}
.y5c{bottom:388.131200pt;}
.yca{bottom:391.765067pt;}
.y32{bottom:394.280267pt;}
.yfa{bottom:394.621600pt;}
.y15b{bottom:398.979600pt;}
.y116{bottom:399.921467pt;}
.y11{bottom:402.061067pt;}
.y133{bottom:402.322667pt;}
.y31{bottom:404.946933pt;}
.y191{bottom:405.824933pt;}
.y5b{bottom:406.797867pt;}
.yf9{bottom:407.954933pt;}
.yc9{bottom:412.138800pt;}
.y30{bottom:415.613600pt;}
.y190{bottom:417.158267pt;}
.ya1{bottom:417.568533pt;}
.y15a{bottom:417.646267pt;}
.y132{bottom:420.722667pt;}
.y80{bottom:420.970933pt;}
.y10{bottom:422.123600pt;}
.y115{bottom:425.460000pt;}
.y5a{bottom:425.464533pt;}
.yc8{bottom:425.472133pt;}
.y2f{bottom:426.280267pt;}
.y18f{bottom:428.491600pt;}
.yf{bottom:431.425733pt;}
.y114{bottom:432.126667pt;}
.yf8{bottom:434.096667pt;}
.y159{bottom:436.312933pt;}
.y2e{bottom:436.946933pt;}
.yc7{bottom:438.805467pt;}
.y131{bottom:439.122667pt;}
.y7f{bottom:439.637600pt;}
.ye{bottom:440.727867pt;}
.y18e{bottom:447.384000pt;}
.yf7{bottom:447.430000pt;}
.y2d{bottom:447.613600pt;}
.yd{bottom:450.030000pt;}
.y158{bottom:454.979600pt;}
.y130{bottom:457.522667pt;}
.ya0{bottom:457.579067pt;}
.y2c{bottom:458.280267pt;}
.y7e{bottom:458.304267pt;}
.y18d{bottom:458.717333pt;}
.yc6{bottom:459.179067pt;}
.y112{bottom:460.758667pt;}
.yf6{bottom:460.763333pt;}
.y59{bottom:463.028800pt;}
.y111{bottom:467.425333pt;}
.y2b{bottom:468.946933pt;}
.yc{bottom:470.092533pt;}
.yc5{bottom:472.512400pt;}
.y157{bottom:473.646267pt;}
.y113{bottom:474.092000pt;}
.y12f{bottom:475.922667pt;}
.y9f{bottom:476.245733pt;}
.y7d{bottom:476.970933pt;}
.y18c{bottom:477.609733pt;}
.y2a{bottom:479.613600pt;}
.y58{bottom:481.695467pt;}
.yc4{bottom:485.845733pt;}
.yf5{bottom:488.689867pt;}
.y18b{bottom:488.943067pt;}
.y156{bottom:492.312933pt;}
.y29{bottom:494.059867pt;}
.y12e{bottom:494.322667pt;}
.y9e{bottom:494.912400pt;}
.y7c{bottom:495.637600pt;}
.yc3{bottom:499.179067pt;}
.y18a{bottom:500.276400pt;}
.y57{bottom:500.362133pt;}
.y110{bottom:500.749733pt;}
.yf4{bottom:502.023200pt;}
.y155{bottom:510.979600pt;}
.yc2{bottom:512.512400pt;}
.y12d{bottom:512.722667pt;}
.y28{bottom:512.781467pt;}
.y9d{bottom:513.579067pt;}
.y7b{bottom:514.304267pt;}
.yf3{bottom:515.356533pt;}
.y56{bottom:519.028800pt;}
.y189{bottom:519.168800pt;}
.yf2{bottom:528.689867pt;}
.y154{bottom:529.646267pt;}
.y27{bottom:530.482667pt;}
.y188{bottom:530.502133pt;}
.y12c{bottom:531.122667pt;}
.y9c{bottom:532.245733pt;}
.yc1{bottom:532.886133pt;}
.y7a{bottom:532.970933pt;}
.y10f{bottom:534.093600pt;}
.y55{bottom:537.695467pt;}
.yc0{bottom:539.552800pt;}
.yf1{bottom:542.023200pt;}
.y153{bottom:548.312933pt;}
.y187{bottom:549.394533pt;}
.y12b{bottom:549.522667pt;}
.y79{bottom:551.637600pt;}
.y10e{bottom:552.760267pt;}
.yf0{bottom:555.356533pt;}
.y26{bottom:556.221333pt;}
.y54{bottom:556.362133pt;}
.y186{bottom:560.727867pt;}
.y25{bottom:566.888000pt;}
.y152{bottom:566.979600pt;}
.y12a{bottom:567.922667pt;}
.yef{bottom:568.689867pt;}
.ybc{bottom:569.737867pt;}
.y9b{bottom:569.810000pt;}
.y78{bottom:570.304267pt;}
.y10d{bottom:571.426933pt;}
.y53{bottom:575.028800pt;}
.ybf{bottom:576.404533pt;}
.y24{bottom:577.554667pt;}
.y185{bottom:579.620267pt;}
.ybb{bottom:583.071200pt;}
.y151{bottom:585.646267pt;}
.y129{bottom:586.322667pt;}
.y23{bottom:588.221333pt;}
.y77{bottom:588.970933pt;}
.ybe{bottom:589.737867pt;}
.y184{bottom:590.953600pt;}
.ybd{bottom:596.404533pt;}
.yee{bottom:596.616400pt;}
.y10c{bottom:597.652533pt;}
.y22{bottom:598.888000pt;}
.y183{bottom:602.286933pt;}
.y150{bottom:604.312933pt;}
.y128{bottom:604.722667pt;}
.y76{bottom:607.637600pt;}
.y21{bottom:609.554667pt;}
.yed{bottom:609.949733pt;}
.y9a{bottom:611.153867pt;}
.y52{bottom:612.593067pt;}
.y20{bottom:620.221333pt;}
.y182{bottom:621.179333pt;}
.y14f{bottom:622.979600pt;}
.y127{bottom:623.122667pt;}
.yec{bottom:623.283067pt;}
.y75{bottom:626.304267pt;}
.yba{bottom:627.815333pt;}
.y99{bottom:629.820533pt;}
.y1f{bottom:630.888000pt;}
.y51{bottom:631.259733pt;}
.y181{bottom:632.512667pt;}
.y126{bottom:641.522667pt;}
.y1e{bottom:641.554667pt;}
.y14e{bottom:641.646267pt;}
.y180{bottom:643.846000pt;}
.y98{bottom:648.487200pt;}
.y50{bottom:649.926400pt;}
.y1d{bottom:652.221333pt;}
.yeb{bottom:654.306667pt;}
.y125{bottom:659.922667pt;}
.y74{bottom:660.089067pt;}
.yea{bottom:660.973333pt;}
.yb9{bottom:661.159067pt;}
.y17f{bottom:662.738400pt;}
.y1c{bottom:662.888000pt;}
.y97{bottom:667.153867pt;}
.y4f{bottom:668.593067pt;}
.y1b{bottom:673.554667pt;}
.y17e{bottom:674.071733pt;}
.y14d{bottom:679.210533pt;}
.yb8{bottom:679.825733pt;}
.y1a{bottom:684.221333pt;}
.y4e{bottom:687.259733pt;}
.y17d{bottom:692.964133pt;}
.ye8{bottom:695.533200pt;}
.y73{bottom:696.320133pt;}
.y124{bottom:697.220267pt;}
.yb7{bottom:698.492400pt;}
.y19{bottom:698.667467pt;}
.ye9{bottom:702.199867pt;}
.y17c{bottom:704.297467pt;}
.y96{bottom:704.718133pt;}
.y4d{bottom:705.926400pt;}
.ye7{bottom:708.866533pt;}
.y72{bottom:714.986800pt;}
.ye4{bottom:715.533200pt;}
.yb6{bottom:717.159067pt;}
.ye6{bottom:722.199867pt;}
.ya{bottom:722.652000pt;}
.y17b{bottom:723.189733pt;}
.y4c{bottom:724.593067pt;}
.y14c{bottom:729.226267pt;}
.y17a{bottom:734.523067pt;}
.ye5{bottom:735.533200pt;}
.yb5{bottom:735.825733pt;}
.y123{bottom:735.897467pt;}
.y95{bottom:742.282533pt;}
.y4b{bottom:743.259733pt;}
.y179{bottom:745.856400pt;}
.y14b{bottom:747.892933pt;}
.y71{bottom:748.771467pt;}
.y122{bottom:749.230800pt;}
.yb4{bottom:754.492400pt;}
.y4a{bottom:761.926400pt;}
.y9{bottom:763.293333pt;}
.y178{bottom:764.748800pt;}
.y14a{bottom:766.292933pt;}
.ye3{bottom:767.384933pt;}
.y8{bottom:771.385200pt;}
.yb3{bottom:773.159067pt;}
.y177{bottom:776.082133pt;}
.y49{bottom:780.593067pt;}
.y94{bottom:782.292933pt;}
.y149{bottom:784.692933pt;}
.y70{bottom:785.002400pt;}
.y7{bottom:785.693200pt;}
.y176{bottom:787.415467pt;}
.ye2{bottom:800.728800pt;}
.y93{bottom:800.959600pt;}
.y6f{bottom:803.669067pt;}
.y175{bottom:806.308000pt;}
.yb2{bottom:810.723333pt;}
.y6{bottom:812.718533pt;}
.y174{bottom:817.641333pt;}
.y48{bottom:818.157333pt;}
.ye1{bottom:819.395467pt;}
.y92{bottom:819.626267pt;}
.y148{bottom:821.990533pt;}
.y173{bottom:828.974667pt;}
.y47{bottom:836.824000pt;}
.y6e{bottom:837.454000pt;}
.ye0{bottom:838.062133pt;}
.y91{bottom:838.292933pt;}
.y147{bottom:840.390667pt;}
.y172{bottom:847.866933pt;}
.y5{bottom:851.395733pt;}
.y46{bottom:855.490667pt;}
.y90{bottom:856.959600pt;}
.y146{bottom:858.790667pt;}
.y171{bottom:859.200267pt;}
.yb1{bottom:860.739200pt;}
.y4{bottom:872.195733pt;}
.y6d{bottom:873.684933pt;}
.y45{bottom:874.157333pt;}
.y8f{bottom:875.626267pt;}
.ydf{bottom:875.626400pt;}
.y145{bottom:877.190533pt;}
.y170{bottom:878.092667pt;}
.yb0{bottom:879.405867pt;}
.y16f{bottom:889.426000pt;}
.y6c{bottom:892.351600pt;}
.y44{bottom:892.824000pt;}
.y8e{bottom:894.292933pt;}
.yde{bottom:894.293067pt;}
.y144{bottom:895.590533pt;}
.yaf{bottom:898.072533pt;}
.y16e{bottom:908.318400pt;}
.y6b{bottom:911.018267pt;}
.y43{bottom:911.490667pt;}
.y3{bottom:912.206267pt;}
.y8d{bottom:912.959600pt;}
.y143{bottom:913.990533pt;}
.yae{bottom:916.739200pt;}
.y16d{bottom:919.651733pt;}
.y6a{bottom:929.684933pt;}
.y42{bottom:930.157333pt;}
.y8c{bottom:931.626267pt;}
.ydd{bottom:931.857333pt;}
.y142{bottom:932.390667pt;}
.y2{bottom:934.606267pt;}
.yad{bottom:935.405867pt;}
.y16c{bottom:938.544133pt;}
.y16b{bottom:949.877467pt;}
.ydc{bottom:950.524000pt;}
.y141{bottom:950.790667pt;}
.y10b{bottom:950.996400pt;}
.yb{bottom:964.134000pt;}
.y69{bottom:967.249200pt;}
.y41{bottom:967.721733pt;}
.y16a{bottom:968.769867pt;}
.y8b{bottom:969.190533pt;}
.ydb{bottom:969.190667pt;}
.y10a{bottom:969.663067pt;}
.y3e{bottom:987.905600pt;}
.y40{bottom:1026.519733pt;}
.h6{height:20.015917pt;}
.h9{height:27.179688pt;}
.h13{height:30.464000pt;}
.h10{height:31.189333pt;}
.h7{height:32.447917pt;}
.ha{height:33.669271pt;}
.hf{height:33.792000pt;}
.hb{height:33.942708pt;}
.h2{height:34.272000pt;}
.h1f{height:37.083333pt;}
.hd{height:38.479167pt;}
.he{height:38.791667pt;}
.h16{height:38.828125pt;}
.hc{height:41.083333pt;}
.h1e{height:41.718750pt;}
.h1c{height:42.562500pt;}
.h17{height:43.008000pt;}
.h12{height:46.354167pt;}
.h15{height:47.291667pt;}
.h4{height:47.395833pt;}
.h5{height:47.466146pt;}
.h8{height:52.266667pt;}
.h14{height:55.968750pt;}
.h11{height:56.750000pt;}
.h3{height:64.726562pt;}
.h1d{height:68.385417pt;}
.h1b{height:69.229167pt;}
.h19{height:73.020833pt;}
.h1a{height:99.687500pt;}
.h18{height:100.625000pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x8{left:56.692933pt;}
.x7{left:60.472400pt;}
.x2{left:72.450933pt;}
.x4{left:77.736800pt;}
.xc{left:83.867867pt;}
.x13{left:87.379200pt;}
.x9{left:88.283733pt;}
.xa{left:92.318000pt;}
.xb{left:94.763600pt;}
.x1d{left:98.288133pt;}
.x25{left:99.821467pt;}
.x10{left:114.889333pt;}
.x19{left:128.504000pt;}
.x1a{left:132.283467pt;}
.x12{left:134.404267pt;}
.x1b{left:141.732267pt;}
.x3b{left:152.894133pt;}
.xf{left:154.698400pt;}
.xd{left:194.733200pt;}
.x11{left:215.218400pt;}
.x5{left:220.677600pt;}
.xe{left:239.657733pt;}
.x3{left:254.101333pt;}
.x6{left:257.826933pt;}
.x1c{left:267.502667pt;}
.x14{left:282.797867pt;}
.x1{left:337.795333pt;}
.x1e{left:368.249333pt;}
.x30{left:379.304133pt;}
.x32{left:380.791733pt;}
.x1f{left:384.499333pt;}
.x29{left:388.705200pt;}
.x31{left:390.098400pt;}
.x2e{left:392.412933pt;}
.x26{left:393.897333pt;}
.x35{left:394.864000pt;}
.x28{left:396.120667pt;}
.x37{left:397.087333pt;}
.x16{left:478.871333pt;}
.x18{left:480.008267pt;}
.x21{left:488.582667pt;}
.x20{left:491.141333pt;}
.x3c{left:495.696000pt;}
.x34{left:501.125067pt;}
.x22{left:504.832667pt;}
.x2a{left:509.038533pt;}
.x33{left:510.431733pt;}
.x2f{left:512.746267pt;}
.x27{left:514.230667pt;}
.x36{left:515.197333pt;}
.x2b{left:516.454000pt;}
.x38{left:517.420667pt;}
.x3d{left:608.658267pt;}
.x3a{left:618.164267pt;}
.x2c{left:621.400000pt;}
.x23{left:625.345200pt;}
.x3f{left:626.699333pt;}
.x2d{left:628.320533pt;}
.x39{left:629.287333pt;}
.x24{left:632.262533pt;}
.x15{left:635.992400pt;}
.x3e{left:644.889733pt;}
.x17{left:667.982267pt;}
}




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