
    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_3f851ce6c932699715404f8f.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.084961;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_c246536d316464fa21e15198.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.107422;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_9bdad85311d756e300dfe90d.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.084961;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_afaf78ccae5aafabe1ae11dc.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.780273;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_79d52e326eb142abc41aa85f.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.970215;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_4520d98007ba094a93b139de.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.970215;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_7cc9af4f87039f19c3dadfe2.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.983398;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_757bd6fc53c161ca92db829b.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.172852;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_5e4dfc7f13cfd1dd68925cf7.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.172852;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_78d04d62e43c58c0164a2687.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.948242;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_80ce994da0590f862ee6fb9d.woff2')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_13751e7278874bf25368c8a9.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.107422;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_48d6ac03c123ad9e97826a78.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.983398;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_de6ba29b364548901edd82e8.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.954102;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_3168c60780f0a80e98793e1b.woff2')format("woff");}.fff{font-family:fff;line-height:1.202148;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_b9245a07ac15e21055740a56.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.816406;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:64.800000px;}
.ls33{letter-spacing:-0.504000px;}
.ls40{letter-spacing:-0.367800px;}
.ls2f{letter-spacing:-0.360000px;}
.ls22{letter-spacing:-0.346800px;}
.ls23{letter-spacing:-0.324000px;}
.ls5{letter-spacing:-0.288000px;}
.ls4a{letter-spacing:-0.223800px;}
.ls1e{letter-spacing:-0.216000px;}
.ls50{letter-spacing:-0.144000px;}
.ls37{letter-spacing:-0.108000px;}
.ls10{letter-spacing:-0.106800px;}
.ls4c{letter-spacing:-0.072000px;}
.ls19{letter-spacing:-0.064200px;}
.lsd{letter-spacing:-0.042600px;}
.ls48{letter-spacing:-0.036000px;}
.ls41{letter-spacing:-0.018720px;}
.ls0{letter-spacing:0.000000px;}
.ls14{letter-spacing:0.018720px;}
.lsa{letter-spacing:0.026496px;}
.ls1d{letter-spacing:0.036000px;}
.ls15{letter-spacing:0.037440px;}
.ls4f{letter-spacing:0.049680px;}
.ls25{letter-spacing:0.072000px;}
.ls21{letter-spacing:0.085200px;}
.ls42{letter-spacing:0.106800px;}
.ls36{letter-spacing:0.108000px;}
.ls2e{letter-spacing:0.144000px;}
.ls43{letter-spacing:0.146496px;}
.ls9{letter-spacing:0.162600px;}
.ls24{letter-spacing:0.180000px;}
.ls4{letter-spacing:0.216000px;}
.ls8{letter-spacing:0.223800px;}
.ls49{letter-spacing:0.226560px;}
.ls46{letter-spacing:0.240048px;}
.ls4b{letter-spacing:0.252000px;}
.ls7{letter-spacing:0.269400px;}
.ls35{letter-spacing:0.272400px;}
.ls2{letter-spacing:0.306600px;}
.ls6{letter-spacing:0.336000px;}
.ls51{letter-spacing:0.360000px;}
.ls4d{letter-spacing:0.895968px;}
.ls34{letter-spacing:0.900000px;}
.ls30{letter-spacing:1.044000px;}
.ls18{letter-spacing:2.898720px;}
.ls2d{letter-spacing:24.228000px;}
.ls38{letter-spacing:33.146496px;}
.ls1{letter-spacing:33.226560px;}
.ls2a{letter-spacing:38.871552px;}
.ls2c{letter-spacing:38.895552px;}
.ls2b{letter-spacing:39.000000px;}
.ls29{letter-spacing:39.024000px;}
.ls52{letter-spacing:41.573664px;}
.ls27{letter-spacing:48.785664px;}
.ls26{letter-spacing:48.900000px;}
.ls28{letter-spacing:49.608000px;}
.ls44{letter-spacing:62.388000px;}
.ls3f{letter-spacing:63.988704px;}
.ls3e{letter-spacing:64.067760px;}
.ls45{letter-spacing:68.068944px;}
.ls31{letter-spacing:68.124000px;}
.ls39{letter-spacing:68.148000px;}
.ls3c{letter-spacing:69.028704px;}
.ls3d{letter-spacing:69.107760px;}
.lsc{letter-spacing:69.269184px;}
.lsb{letter-spacing:69.348240px;}
.ls3{letter-spacing:75.037920px;}
.ls3a{letter-spacing:76.068000px;}
.ls1f{letter-spacing:77.910048px;}
.ls20{letter-spacing:77.976000px;}
.ls3b{letter-spacing:82.043760px;}
.ls47{letter-spacing:85.896000px;}
.ls12{letter-spacing:87.429600px;}
.ls11{letter-spacing:87.480000px;}
.ls32{letter-spacing:89.820000px;}
.ls4e{letter-spacing:91.476000px;}
.ls13{letter-spacing:95.400000px;}
.ls1b{letter-spacing:97.485600px;}
.lsf{letter-spacing:97.509600px;}
.ls1a{letter-spacing:97.536000px;}
.lse{letter-spacing:97.560000px;}
.ls17{letter-spacing:101.793600px;}
.ls16{letter-spacing:101.844000px;}
.ls1c{letter-spacing:185.952000px;}
.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;}
}
.ws11{word-spacing:-144.000000px;}
.ws2f{word-spacing:-120.240000px;}
.ws23{word-spacing:-108.144000px;}
.ws22{word-spacing:-108.000000px;}
.wsc{word-spacing:-46.637280px;}
.ws12{word-spacing:-43.344000px;}
.wsf{word-spacing:-40.032000px;}
.ws7{word-spacing:-33.466752px;}
.ws6{word-spacing:-33.426720px;}
.ws3{word-spacing:-32.551344px;}
.ws5{word-spacing:-32.508000px;}
.ws48{word-spacing:-30.384000px;}
.ws14{word-spacing:-30.064032px;}
.ws13{word-spacing:-30.024000px;}
.ws47{word-spacing:-29.880000px;}
.ws41{word-spacing:-29.840232px;}
.ws19{word-spacing:-29.808000px;}
.ws40{word-spacing:-29.736000px;}
.ws10{word-spacing:-26.661312px;}
.ws17{word-spacing:-26.621280px;}
.ws18{word-spacing:-26.557080px;}
.ws30{word-spacing:-24.440544px;}
.ws1b{word-spacing:-24.408000px;}
.ws33{word-spacing:-21.946704px;}
.ws32{word-spacing:-21.674304px;}
.ws4e{word-spacing:-21.672000px;}
.ws31{word-spacing:-21.641760px;}
.ws4{word-spacing:-21.384000px;}
.wsb{word-spacing:-14.970240px;}
.ws9{word-spacing:-13.634520px;}
.ws8{word-spacing:-13.410720px;}
.wsd{word-spacing:-8.795760px;}
.ws34{word-spacing:-8.136000px;}
.ws35{word-spacing:-8.028000px;}
.ws38{word-spacing:-3.035808px;}
.wsa{word-spacing:-2.444352px;}
.ws2e{word-spacing:-2.124000px;}
.ws1a{word-spacing:-1.775040px;}
.ws36{word-spacing:-1.767552px;}
.ws44{word-spacing:-1.766976px;}
.ws37{word-spacing:-1.630176px;}
.ws26{word-spacing:-0.072000px;}
.ws4b{word-spacing:-0.059472px;}
.ws25{word-spacing:-0.036000px;}
.ws1{word-spacing:0.000000px;}
.ws2c{word-spacing:0.012000px;}
.wse{word-spacing:0.053040px;}
.ws46{word-spacing:0.084000px;}
.ws2{word-spacing:0.134400px;}
.ws49{word-spacing:0.192000px;}
.ws4a{word-spacing:0.200352px;}
.ws3e{word-spacing:0.264000px;}
.ws0{word-spacing:0.297120px;}
.ws3d{word-spacing:0.420000px;}
.ws24{word-spacing:0.468000px;}
.ws1d{word-spacing:0.504000px;}
.ws45{word-spacing:0.601536px;}
.ws29{word-spacing:0.612000px;}
.ws2a{word-spacing:0.828000px;}
.ws27{word-spacing:1.164000px;}
.ws1f{word-spacing:1.200000px;}
.ws21{word-spacing:1.452000px;}
.ws28{word-spacing:1.455120px;}
.ws2b{word-spacing:1.548000px;}
.ws3f{word-spacing:1.560000px;}
.ws4d{word-spacing:1.596000px;}
.ws2d{word-spacing:1.836000px;}
.ws1e{word-spacing:2.064000px;}
.ws20{word-spacing:2.100000px;}
.ws4c{word-spacing:2.232000px;}
.ws42{word-spacing:36.828000px;}
.ws43{word-spacing:42.068016px;}
.ws3a{word-spacing:42.912000px;}
.ws39{word-spacing:42.991272px;}
.ws16{word-spacing:55.378560px;}
.ws3c{word-spacing:63.216000px;}
.ws3b{word-spacing:63.360000px;}
.ws15{word-spacing:96.912000px;}
.ws1c{word-spacing:1461.228000px;}
._6{margin-left:-14.703840px;}
._1d{margin-left:-12.882000px;}
._7{margin-left:-11.250000px;}
._b{margin-left:-9.859680px;}
._4{margin-left:-8.777520px;}
._3{margin-left:-6.983280px;}
._1{margin-left:-5.466528px;}
._a{margin-left:-4.122000px;}
._5{margin-left:-3.006000px;}
._2{margin-left:-1.126080px;}
._0{width:1.634160px;}
._c{width:3.670608px;}
._13{width:4.811760px;}
._1c{width:13.986288px;}
._1a{width:22.516320px;}
._19{width:25.788000px;}
._9{width:28.890144px;}
._8{width:31.846512px;}
._1e{width:34.086000px;}
._16{width:50.085840px;}
._11{width:60.180000px;}
._1f{width:64.347840px;}
._d{width:72.226416px;}
._15{width:82.260000px;}
._18{width:96.348000px;}
._12{width:99.432000px;}
._14{width:107.100000px;}
._17{width:128.772000px;}
._10{width:180.192000px;}
._f{width:185.952000px;}
._20{width:191.712000px;}
._1b{width:193.020000px;}
._e{width:3036.636240px;}
.fc11{color:rgb(150,150,150);}
.fcf{color:rgb(89,89,89);}
.fce{color:rgb(255,192,0);}
.fc0{color:rgb(0,0,0);}
.fc4{color:rgb(255,255,255);}
.fc7{color:rgb(0,176,80);}
.fcc{color:rgb(127,127,127);}
.fc10{color:rgb(166,166,166);}
.fc1{color:rgb(38,42,49);}
.fcd{color:rgb(112,48,160);}
.fc5{color:transparent;}
.fc9{color:rgb(214,66,66);}
.fc6{color:rgb(0,112,192);}
.fca{color:rgb(192,0,0);}
.fc2{color:rgb(216,65,62);}
.fc3{color:rgb(176,47,44);}
.fc8{color:rgb(255,84,81);}
.fcb{color:rgb(255,0,0);}
.fs10{font-size:36.000000px;}
.fsc{font-size:48.240000px;}
.fs4{font-size:59.760000px;}
.fs3{font-size:66.240000px;}
.fsa{font-size:72.000000px;}
.fs11{font-size:84.240000px;}
.fs1{font-size:95.760000px;}
.fs2{font-size:95.904000px;}
.fs8{font-size:108.000000px;}
.fs9{font-size:108.144000px;}
.fs5{font-size:120.240000px;}
.fsb{font-size:120.384000px;}
.fs6{font-size:131.760000px;}
.fs7{font-size:131.904000px;}
.fsd{font-size:144.000000px;}
.fse{font-size:144.144000px;}
.fs0{font-size:167.760000px;}
.fsf{font-size:167.904000px;}
.y0{bottom:0.000000px;}
.y6{bottom:16.488000px;}
.y7f{bottom:52.956000px;}
.y22{bottom:53.100000px;}
.yd0{bottom:57.276000px;}
.y132{bottom:60.300000px;}
.y10a{bottom:62.820000px;}
.y20{bottom:63.288000px;}
.yb0{bottom:66.672000px;}
.ycf{bottom:68.076000px;}
.y145{bottom:71.784000px;}
.y80{bottom:73.260000px;}
.yff{bottom:73.656000px;}
.y147{bottom:73.764000px;}
.y113{bottom:76.104000px;}
.y6d{bottom:81.936000px;}
.y43{bottom:85.068000px;}
.y7e{bottom:85.356000px;}
.y127{bottom:85.824000px;}
.ye9{bottom:86.184000px;}
.yc4{bottom:88.128000px;}
.y18{bottom:88.380000px;}
.y95{bottom:91.728000px;}
.y131{bottom:92.700000px;}
.y4{bottom:95.508000px;}
.y62{bottom:97.488000px;}
.y11c{bottom:99.720000px;}
.y109{bottom:101.736000px;}
.ya4{bottom:105.588000px;}
.yfe{bottom:106.056000px;}
.y144{bottom:110.664000px;}
.ye1{bottom:110.772000px;}
.y6c{bottom:114.336000px;}
.yc{bottom:117.324000px;}
.y42{bottom:117.468000px;}
.y56{bottom:117.612000px;}
.y7d{bottom:117.756000px;}
.y126{bottom:118.260000px;}
.yc3{bottom:120.564000px;}
.y130{bottom:125.100000px;}
.y61{bottom:126.288000px;}
.y8b{bottom:127.476000px;}
.y3{bottom:130.068000px;}
.y13a{bottom:131.616000px;}
.y108{bottom:134.136000px;}
.y9d{bottom:134.712000px;}
.ya3{bottom:138.024000px;}
.yfd{bottom:138.456000px;}
.y11b{bottom:138.636000px;}
.y49{bottom:138.816000px;}
.ye8{bottom:140.400000px;}
.y112{bottom:142.200000px;}
.y143{bottom:143.064000px;}
.ye0{bottom:146.052000px;}
.y6b{bottom:146.736000px;}
.y41{bottom:149.904000px;}
.y55{bottom:150.195000px;}
.yac{bottom:156.495000px;}
.y125{bottom:157.140000px;}
.ycc{bottom:159.225000px;}
.y8a{bottom:159.870000px;}
.y15{bottom:163.290000px;}
.y139{bottom:164.055000px;}
.y133{bottom:164.340000px;}
.y9c{bottom:167.115000px;}
.y94{bottom:168.405000px;}
.ya2{bottom:170.430000px;}
.y12f{bottom:170.820000px;}
.yfc{bottom:170.850000px;}
.y48{bottom:171.255000px;}
.yc6{bottom:171.690000px;}
.yf9{bottom:172.440000px;}
.y72{bottom:173.775000px;}
.yb{bottom:175.350000px;}
.y60{bottom:175.965000px;}
.y11a{bottom:177.510000px;}
.y6a{bottom:179.130000px;}
.yd7{bottom:180.870000px;}
.y142{bottom:181.950000px;}
.y40{bottom:182.310000px;}
.y54{bottom:182.595000px;}
.ydf{bottom:184.245000px;}
.y124{bottom:189.540000px;}
.ye7{bottom:194.400000px;}
.y14{bottom:195.735000px;}
.y31{bottom:195.840000px;}
.y8c{bottom:195.915000px;}
.y138{bottom:196.455000px;}
.y9b{bottom:199.515000px;}
.y93{bottom:200.805000px;}
.yb7{bottom:202.245000px;}
.ya1{bottom:202.830000px;}
.yf8{bottom:204.840000px;}
.y1e{bottom:209.085000px;}
.y12e{bottom:209.700000px;}
.y5f{bottom:210.210000px;}
.yae{bottom:211.140000px;}
.yd1{bottom:211.530000px;}
.y69{bottom:211.575000px;}
.yab{bottom:211.605000px;}
.yca{bottom:212.400000px;}
.y107{bottom:213.915000px;}
.y141{bottom:214.380000px;}
.ya{bottom:214.950000px;}
.y53{bottom:214.995000px;}
.y47{bottom:218.595000px;}
.yde{bottom:218.625000px;}
.y123{bottom:221.940000px;}
.yf0{bottom:223.485000px;}
.y13{bottom:228.135000px;}
.y30{bottom:228.240000px;}
.y137{bottom:228.855000px;}
.y9a{bottom:231.915000px;}
.yc7{bottom:232.410000px;}
.yb6{bottom:234.645000px;}
.ya0{bottom:235.260000px;}
.y88{bottom:236.160000px;}
.yf7{bottom:237.270000px;}
.y92{bottom:239.370000px;}
.y1d{bottom:241.485000px;}
.y75{bottom:241.890000px;}
.y12d{bottom:242.100000px;}
.yad{bottom:243.540000px;}
.y140{bottom:246.780000px;}
.ycb{bottom:247.500000px;}
.ye6{bottom:248.400000px;}
.y46{bottom:250.995000px;}
.ydd{bottom:253.185000px;}
.y5e{bottom:253.410000px;}
.y119{bottom:255.315000px;}
.yef{bottom:255.885000px;}
.yce{bottom:256.605000px;}
.yd6{bottom:258.660000px;}
.y7c{bottom:258.945000px;}
.y12{bottom:260.535000px;}
.y122{bottom:260.850000px;}
.y52{bottom:262.185000px;}
.yc5{bottom:263.730000px;}
.y106{bottom:263.775000px;}
.y99{bottom:264.345000px;}
.y111{bottom:265.830000px;}
.yaa{bottom:266.685000px;}
.y9f{bottom:267.660000px;}
.y136{bottom:267.765000px;}
.y87{bottom:268.560000px;}
.yf6{bottom:271.545000px;}
.y1c{bottom:273.885000px;}
.y2{bottom:275.685000px;}
.y68{bottom:277.665000px;}
.y91{bottom:277.710000px;}
.y12c{bottom:281.010000px;}
.yc0{bottom:284.910000px;}
.y28{bottom:285.090000px;}
.y13f{bottom:285.660000px;}
.y5d{bottom:287.025000px;}
.ydc{bottom:287.925000px;}
.yee{bottom:288.285000px;}
.ycd{bottom:289.005000px;}
.y74{bottom:289.440000px;}
.y2f{bottom:289.830000px;}
.y71{bottom:290.775000px;}
.y7b{bottom:291.345000px;}
.y3f{bottom:292.860000px;}
.y11{bottom:292.935000px;}
.y9{bottom:294.150000px;}
.y118{bottom:294.195000px;}
.y36{bottom:294.915000px;}
.y98{bottom:296.745000px;}
.y110{bottom:298.230000px;}
.y51{bottom:299.985000px;}
.y9e{bottom:300.060000px;}
.yb5{bottom:300.420000px;}
.y86{bottom:300.990000px;}
.ybc{bottom:301.350000px;}
.ye5{bottom:302.610000px;}
.y105{bottom:302.655000px;}
.y146{bottom:303.765000px;}
.yf5{bottom:303.990000px;}
.y4b{bottom:304.890000px;}
.y1b{bottom:306.285000px;}
.y67{bottom:310.110000px;}
.y2c{bottom:310.215000px;}
.y120{bottom:313.890000px;}
.y90{bottom:316.050000px;}
.yc1{bottom:316.440000px;}
.y13e{bottom:318.090000px;}
.y12b{bottom:319.890000px;}
.yed{bottom:320.685000px;}
.ya9{bottom:321.810000px;}
.y2e{bottom:322.230000px;}
.ydb{bottom:322.350000px;}
.y70{bottom:323.175000px;}
.y1{bottom:326.085000px;}
.y35{bottom:327.315000px;}
.y27{bottom:328.290000px;}
.y3e{bottom:328.860000px;}
.yd5{bottom:329.940000px;}
.y10f{bottom:330.630000px;}
.ye4{bottom:331.410000px;}
.yb4{bottom:332.820000px;}
.y117{bottom:333.075000px;}
.y85{bottom:333.390000px;}
.ybd{bottom:334.980000px;}
.yf4{bottom:336.390000px;}
.y5c{bottom:336.930000px;}
.y4a{bottom:337.290000px;}
.y50{bottom:337.785000px;}
.y1a{bottom:338.730000px;}
.y24{bottom:339.840000px;}
.y104{bottom:341.565000px;}
.y66{bottom:342.510000px;}
.yc2{bottom:343.410000px;}
.y7a{bottom:345.930000px;}
.y11f{bottom:346.320000px;}
.y13d{bottom:350.490000px;}
.yec{bottom:353.130000px;}
.ya6{bottom:354.390000px;}
.y8f{bottom:354.600000px;}
.y2d{bottom:354.630000px;}
.y3a{bottom:355.785000px;}
.yda{bottom:357.810000px;}
.y12a{bottom:358.770000px;}
.ybf{bottom:359.385000px;}
.y34{bottom:359.745000px;}
.y135{bottom:359.970000px;}
.yba{bottom:360.825000px;}
.y10e{bottom:363.030000px;}
.y84{bottom:364.350000px;}
.y3d{bottom:364.860000px;}
.y5b{bottom:365.730000px;}
.yf3{bottom:368.790000px;}
.yc9{bottom:369.210000px;}
.y19{bottom:371.130000px;}
.y26{bottom:371.520000px;}
.yb3{bottom:371.730000px;}
.ybb{bottom:371.880000px;}
.y116{bottom:371.955000px;}
.y8{bottom:373.395000px;}
.yd8{bottom:375.735000px;}
.y4f{bottom:376.350000px;}
.ya8{bottom:376.890000px;}
.y39{bottom:384.630000px;}
.ya7{bottom:384.765000px;}
.y11e{bottom:385.200000px;}
.ye3{bottom:385.455000px;}
.y10{bottom:386.490000px;}
.ya5{bottom:386.790000px;}
.y13c{bottom:389.370000px;}
.y79{bottom:390.210000px;}
.y23{bottom:390.240000px;}
.ybe{bottom:391.785000px;}
.y134{bottom:392.370000px;}
.y8e{bottom:392.940000px;}
.y10d{bottom:395.460000px;}
.yfb{bottom:395.640000px;}
.yd9{bottom:395.970000px;}
.y83{bottom:396.750000px;}
.yd3{bottom:397.515000px;}
.y129{bottom:397.695000px;}
.yf2{bottom:401.190000px;}
.y5a{bottom:402.090000px;}
.yc8{bottom:402.735000px;}
.y73{bottom:407.235000px;}
.y4e{bottom:408.750000px;}
.yf{bottom:410.070000px;}
.yb2{bottom:410.610000px;}
.y115{bottom:410.865000px;}
.y25{bottom:414.720000px;}
.y103{bottom:419.325000px;}
.y13b{bottom:421.770000px;}
.y11d{bottom:424.080000px;}
.yb9{bottom:426.210000px;}
.y65{bottom:426.960000px;}
.y10c{bottom:427.860000px;}
.y82{bottom:429.195000px;}
.y8d{bottom:431.280000px;}
.y97{bottom:431.850000px;}
.y78{bottom:434.700000px;}
.y128{bottom:436.575000px;}
.y3c{bottom:436.890000px;}
.ye2{bottom:439.455000px;}
.ye{bottom:442.515000px;}
.y33{bottom:449.745000px;}
.y4d{bottom:450.150000px;}
.y59{bottom:451.800000px;}
.yeb{bottom:456.945000px;}
.y102{bottom:458.205000px;}
.y45{bottom:458.490000px;}
.y64{bottom:459.360000px;}
.y38{bottom:459.645000px;}
.y81{bottom:461.595000px;}
.y10b{bottom:462.240000px;}
.y17{bottom:467.070000px;}
.y6f{bottom:468.255000px;}
.yfa{bottom:469.905000px;}
.y7{bottom:470.445000px;}
.y3b{bottom:472.890000px;}
.y77{bottom:479.160000px;}
.y58{bottom:480.600000px;}
.y32{bottom:482.145000px;}
.y2b{bottom:482.250000px;}
.y121{bottom:485.490000px;}
.yd4{bottom:485.715000px;}
.y37{bottom:488.445000px;}
.yb1{bottom:493.050000px;}
.y1f{bottom:494.100000px;}
.yd{bottom:494.640000px;}
.y4c{bottom:495.360000px;}
.y101{bottom:497.130000px;}
.y114{bottom:498.960000px;}
.y44{bottom:501.690000px;}
.y16{bottom:503.100000px;}
.y89{bottom:504.330000px;}
.yb8{bottom:508.215000px;}
.y96{bottom:509.550000px;}
.y2a{bottom:514.650000px;}
.yf1{bottom:520.950000px;}
.yaf{bottom:522.105000px;}
.y21{bottom:526.110000px;}
.y76{bottom:527.115000px;}
.y63{bottom:527.370000px;}
.y6e{bottom:528.765000px;}
.y57{bottom:528.945000px;}
.yd2{bottom:530.100000px;}
.yea{bottom:530.460000px;}
.y29{bottom:535.425000px;}
.y100{bottom:543.885000px;}
.y5{bottom:583.380000px;}
.h25{height:35.806641px;}
.h10{height:43.269961px;}
.hd{height:50.423906px;}
.h5{height:53.603086px;}
.hb{height:54.808594px;}
.h4{height:59.415469px;}
.h11{height:65.884219px;}
.h16{height:72.895430px;}
.h15{height:73.005047px;}
.h29{height:75.560977px;}
.h9{height:82.212891px;}
.h1d{height:82.318359px;}
.ha{height:82.322508px;}
.h1e{height:82.428117px;}
.h2{height:85.894102px;}
.h3{height:86.023266px;}
.h20{height:91.530352px;}
.h1f{height:91.639969px;}
.h1b{height:94.447266px;}
.h28{height:94.573195px;}
.h22{height:95.245664px;}
.h23{height:95.388891px;}
.h17{height:96.873047px;}
.h18{height:97.002211px;}
.h26{height:98.051133px;}
.h8{height:100.409344px;}
.h7{height:100.428398px;}
.h6{height:105.151289px;}
.hc{height:105.277219px;}
.he{height:107.419922px;}
.hf{height:107.563148px;}
.h12{height:107.851992px;}
.h13{height:107.981156px;}
.h19{height:109.617188px;}
.h21{height:110.583984px;}
.h14{height:125.929688px;}
.h1a{height:126.055617px;}
.h27{height:129.293227px;}
.h1{height:146.708086px;}
.h1c{height:146.834016px;}
.h24{height:160.188891px;}
.h0{height:607.500000px;}
.w1{width:1079.999984px;}
.w0{width:1080.000000px;}
.x0{left:0.000000px;}
.x56{left:7.667984px;}
.x21{left:9.359984px;}
.xe{left:22.535984px;}
.x61{left:23.795984px;}
.x27{left:25.271984px;}
.x16{left:26.891984px;}
.x2d{left:28.151984px;}
.xc{left:31.607984px;}
.x29{left:35.567984px;}
.x19{left:36.683984px;}
.x1c{left:39.167984px;}
.x23{left:40.823984px;}
.x22{left:43.199984px;}
.x4f{left:44.315984px;}
.x3{left:45.683984px;}
.x54{left:46.835984px;}
.x60{left:48.419984px;}
.x1e{left:50.291984px;}
.xf{left:53.999984px;}
.x28{left:57.131984px;}
.x5d{left:60.911984px;}
.x65{left:62.315984px;}
.x4{left:64.799984px;}
.x8{left:69.803984px;}
.x37{left:70.811984px;}
.x50{left:72.647984px;}
.x15{left:74.663984px;}
.x62{left:75.959984px;}
.x24{left:78.443984px;}
.x2e{left:80.531984px;}
.x1f{left:83.591984px;}
.x1d{left:85.319984px;}
.x5e{left:90.971984px;}
.x5f{left:92.771984px;}
.x1b{left:95.327984px;}
.x63{left:96.659984px;}
.x9{left:98.027984px;}
.x2c{left:101.267984px;}
.x55{left:102.887984px;}
.x3e{left:105.191984px;}
.x2f{left:114.227984px;}
.x51{left:117.395984px;}
.x20{left:118.835984px;}
.xb{left:121.103984px;}
.x45{left:122.399984px;}
.x3a{left:125.711984px;}
.x6{left:130.823984px;}
.x36{left:133.703984px;}
.x2a{left:135.179984px;}
.x25{left:145.295984px;}
.x5c{left:156.344984px;}
.x43{left:159.404984px;}
.x3b{left:167.189984px;}
.x30{left:168.224984px;}
.x2b{left:169.349984px;}
.x52{left:172.829984px;}
.x26{left:179.129984px;}
.x7{left:184.289984px;}
.x31{left:199.514984px;}
.x44{left:220.934984px;}
.x10{left:222.764984px;}
.x64{left:227.669984px;}
.x3c{left:232.049984px;}
.x53{left:238.529984px;}
.x4c{left:245.054984px;}
.x17{left:246.599984px;}
.x3d{left:248.189984px;}
.x38{left:255.524984px;}
.x4b{left:272.594984px;}
.x39{left:287.429984px;}
.x2{left:301.859984px;}
.x5b{left:303.734984px;}
.x14{left:309.569984px;}
.x4a{left:319.934984px;}
.x1{left:338.039984px;}
.x13{left:343.154984px;}
.x46{left:398.984984px;}
.x42{left:400.574984px;}
.x47{left:404.099984px;}
.x41{left:438.659984px;}
.x48{left:442.544984px;}
.x4e{left:446.834984px;}
.x40{left:456.449984px;}
.x3f{left:481.709984px;}
.x49{left:487.544984px;}
.x5a{left:500.294984px;}
.x18{left:582.119984px;}
.x34{left:585.149984px;}
.x4d{left:592.994984px;}
.x32{left:611.099984px;}
.x33{left:635.759984px;}
.xa{left:651.749984px;}
.x58{left:697.859984px;}
.x35{left:700.349984px;}
.x12{left:748.979984px;}
.xd{left:751.034984px;}
.x11{left:791.459984px;}
.x59{left:805.859984px;}
.x57{left:902.264984px;}
.x1a{left:1010.189984px;}
.x5{left:1018.544984px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:57.600000pt;}
.ls33{letter-spacing:-0.448000pt;}
.ls40{letter-spacing:-0.326933pt;}
.ls2f{letter-spacing:-0.320000pt;}
.ls22{letter-spacing:-0.308267pt;}
.ls23{letter-spacing:-0.288000pt;}
.ls5{letter-spacing:-0.256000pt;}
.ls4a{letter-spacing:-0.198933pt;}
.ls1e{letter-spacing:-0.192000pt;}
.ls50{letter-spacing:-0.128000pt;}
.ls37{letter-spacing:-0.096000pt;}
.ls10{letter-spacing:-0.094933pt;}
.ls4c{letter-spacing:-0.064000pt;}
.ls19{letter-spacing:-0.057067pt;}
.lsd{letter-spacing:-0.037867pt;}
.ls48{letter-spacing:-0.032000pt;}
.ls41{letter-spacing:-0.016640pt;}
.ls0{letter-spacing:0.000000pt;}
.ls14{letter-spacing:0.016640pt;}
.lsa{letter-spacing:0.023552pt;}
.ls1d{letter-spacing:0.032000pt;}
.ls15{letter-spacing:0.033280pt;}
.ls4f{letter-spacing:0.044160pt;}
.ls25{letter-spacing:0.064000pt;}
.ls21{letter-spacing:0.075733pt;}
.ls42{letter-spacing:0.094933pt;}
.ls36{letter-spacing:0.096000pt;}
.ls2e{letter-spacing:0.128000pt;}
.ls43{letter-spacing:0.130219pt;}
.ls9{letter-spacing:0.144533pt;}
.ls24{letter-spacing:0.160000pt;}
.ls4{letter-spacing:0.192000pt;}
.ls8{letter-spacing:0.198933pt;}
.ls49{letter-spacing:0.201387pt;}
.ls46{letter-spacing:0.213376pt;}
.ls4b{letter-spacing:0.224000pt;}
.ls7{letter-spacing:0.239467pt;}
.ls35{letter-spacing:0.242133pt;}
.ls2{letter-spacing:0.272533pt;}
.ls6{letter-spacing:0.298667pt;}
.ls51{letter-spacing:0.320000pt;}
.ls4d{letter-spacing:0.796416pt;}
.ls34{letter-spacing:0.800000pt;}
.ls30{letter-spacing:0.928000pt;}
.ls18{letter-spacing:2.576640pt;}
.ls2d{letter-spacing:21.536000pt;}
.ls38{letter-spacing:29.463552pt;}
.ls1{letter-spacing:29.534720pt;}
.ls2a{letter-spacing:34.552491pt;}
.ls2c{letter-spacing:34.573824pt;}
.ls2b{letter-spacing:34.666667pt;}
.ls29{letter-spacing:34.688000pt;}
.ls52{letter-spacing:36.954368pt;}
.ls27{letter-spacing:43.365035pt;}
.ls26{letter-spacing:43.466667pt;}
.ls28{letter-spacing:44.096000pt;}
.ls44{letter-spacing:55.456000pt;}
.ls3f{letter-spacing:56.878848pt;}
.ls3e{letter-spacing:56.949120pt;}
.ls45{letter-spacing:60.505728pt;}
.ls31{letter-spacing:60.554667pt;}
.ls39{letter-spacing:60.576000pt;}
.ls3c{letter-spacing:61.358848pt;}
.ls3d{letter-spacing:61.429120pt;}
.lsc{letter-spacing:61.572608pt;}
.lsb{letter-spacing:61.642880pt;}
.ls3{letter-spacing:66.700373pt;}
.ls3a{letter-spacing:67.616000pt;}
.ls1f{letter-spacing:69.253376pt;}
.ls20{letter-spacing:69.312000pt;}
.ls3b{letter-spacing:72.927787pt;}
.ls47{letter-spacing:76.352000pt;}
.ls12{letter-spacing:77.715200pt;}
.ls11{letter-spacing:77.760000pt;}
.ls32{letter-spacing:79.840000pt;}
.ls4e{letter-spacing:81.312000pt;}
.ls13{letter-spacing:84.800000pt;}
.ls1b{letter-spacing:86.653867pt;}
.lsf{letter-spacing:86.675200pt;}
.ls1a{letter-spacing:86.698667pt;}
.lse{letter-spacing:86.720000pt;}
.ls17{letter-spacing:90.483200pt;}
.ls16{letter-spacing:90.528000pt;}
.ls1c{letter-spacing:165.290667pt;}
.ws11{word-spacing:-128.000000pt;}
.ws2f{word-spacing:-106.880000pt;}
.ws23{word-spacing:-96.128000pt;}
.ws22{word-spacing:-96.000000pt;}
.wsc{word-spacing:-41.455360pt;}
.ws12{word-spacing:-38.528000pt;}
.wsf{word-spacing:-35.584000pt;}
.ws7{word-spacing:-29.748224pt;}
.ws6{word-spacing:-29.712640pt;}
.ws3{word-spacing:-28.934528pt;}
.ws5{word-spacing:-28.896000pt;}
.ws48{word-spacing:-27.008000pt;}
.ws14{word-spacing:-26.723584pt;}
.ws13{word-spacing:-26.688000pt;}
.ws47{word-spacing:-26.560000pt;}
.ws41{word-spacing:-26.524651pt;}
.ws19{word-spacing:-26.496000pt;}
.ws40{word-spacing:-26.432000pt;}
.ws10{word-spacing:-23.698944pt;}
.ws17{word-spacing:-23.663360pt;}
.ws18{word-spacing:-23.606293pt;}
.ws30{word-spacing:-21.724928pt;}
.ws1b{word-spacing:-21.696000pt;}
.ws33{word-spacing:-19.508181pt;}
.ws32{word-spacing:-19.266048pt;}
.ws4e{word-spacing:-19.264000pt;}
.ws31{word-spacing:-19.237120pt;}
.ws4{word-spacing:-19.008000pt;}
.wsb{word-spacing:-13.306880pt;}
.ws9{word-spacing:-12.119573pt;}
.ws8{word-spacing:-11.920640pt;}
.wsd{word-spacing:-7.818453pt;}
.ws34{word-spacing:-7.232000pt;}
.ws35{word-spacing:-7.136000pt;}
.ws38{word-spacing:-2.698496pt;}
.wsa{word-spacing:-2.172757pt;}
.ws2e{word-spacing:-1.888000pt;}
.ws1a{word-spacing:-1.577813pt;}
.ws36{word-spacing:-1.571157pt;}
.ws44{word-spacing:-1.570645pt;}
.ws37{word-spacing:-1.449045pt;}
.ws26{word-spacing:-0.064000pt;}
.ws4b{word-spacing:-0.052864pt;}
.ws25{word-spacing:-0.032000pt;}
.ws1{word-spacing:0.000000pt;}
.ws2c{word-spacing:0.010667pt;}
.wse{word-spacing:0.047147pt;}
.ws46{word-spacing:0.074667pt;}
.ws2{word-spacing:0.119467pt;}
.ws49{word-spacing:0.170667pt;}
.ws4a{word-spacing:0.178091pt;}
.ws3e{word-spacing:0.234667pt;}
.ws0{word-spacing:0.264107pt;}
.ws3d{word-spacing:0.373333pt;}
.ws24{word-spacing:0.416000pt;}
.ws1d{word-spacing:0.448000pt;}
.ws45{word-spacing:0.534699pt;}
.ws29{word-spacing:0.544000pt;}
.ws2a{word-spacing:0.736000pt;}
.ws27{word-spacing:1.034667pt;}
.ws1f{word-spacing:1.066667pt;}
.ws21{word-spacing:1.290667pt;}
.ws28{word-spacing:1.293440pt;}
.ws2b{word-spacing:1.376000pt;}
.ws3f{word-spacing:1.386667pt;}
.ws4d{word-spacing:1.418667pt;}
.ws2d{word-spacing:1.632000pt;}
.ws1e{word-spacing:1.834667pt;}
.ws20{word-spacing:1.866667pt;}
.ws4c{word-spacing:1.984000pt;}
.ws42{word-spacing:32.736000pt;}
.ws43{word-spacing:37.393792pt;}
.ws3a{word-spacing:38.144000pt;}
.ws39{word-spacing:38.214464pt;}
.ws16{word-spacing:49.225387pt;}
.ws3c{word-spacing:56.192000pt;}
.ws3b{word-spacing:56.320000pt;}
.ws15{word-spacing:86.144000pt;}
.ws1c{word-spacing:1298.869333pt;}
._6{margin-left:-13.070080pt;}
._1d{margin-left:-11.450667pt;}
._7{margin-left:-10.000000pt;}
._b{margin-left:-8.764160pt;}
._4{margin-left:-7.802240pt;}
._3{margin-left:-6.207360pt;}
._1{margin-left:-4.859136pt;}
._a{margin-left:-3.664000pt;}
._5{margin-left:-2.672000pt;}
._2{margin-left:-1.000960pt;}
._0{width:1.452587pt;}
._c{width:3.262763pt;}
._13{width:4.277120pt;}
._1c{width:12.432256pt;}
._1a{width:20.014507pt;}
._19{width:22.922667pt;}
._9{width:25.680128pt;}
._8{width:28.308011pt;}
._1e{width:30.298667pt;}
._16{width:44.520747pt;}
._11{width:53.493333pt;}
._1f{width:57.198080pt;}
._d{width:64.201259pt;}
._15{width:73.120000pt;}
._18{width:85.642667pt;}
._12{width:88.384000pt;}
._14{width:95.200000pt;}
._17{width:114.464000pt;}
._10{width:160.170667pt;}
._f{width:165.290667pt;}
._20{width:170.410667pt;}
._1b{width:171.573333pt;}
._e{width:2699.232213pt;}
.fs10{font-size:32.000000pt;}
.fsc{font-size:42.880000pt;}
.fs4{font-size:53.120000pt;}
.fs3{font-size:58.880000pt;}
.fsa{font-size:64.000000pt;}
.fs11{font-size:74.880000pt;}
.fs1{font-size:85.120000pt;}
.fs2{font-size:85.248000pt;}
.fs8{font-size:96.000000pt;}
.fs9{font-size:96.128000pt;}
.fs5{font-size:106.880000pt;}
.fsb{font-size:107.008000pt;}
.fs6{font-size:117.120000pt;}
.fs7{font-size:117.248000pt;}
.fsd{font-size:128.000000pt;}
.fse{font-size:128.128000pt;}
.fs0{font-size:149.120000pt;}
.fsf{font-size:149.248000pt;}
.y0{bottom:0.000000pt;}
.y6{bottom:14.656000pt;}
.y7f{bottom:47.072000pt;}
.y22{bottom:47.200000pt;}
.yd0{bottom:50.912000pt;}
.y132{bottom:53.600000pt;}
.y10a{bottom:55.840000pt;}
.y20{bottom:56.256000pt;}
.yb0{bottom:59.264000pt;}
.ycf{bottom:60.512000pt;}
.y145{bottom:63.808000pt;}
.y80{bottom:65.120000pt;}
.yff{bottom:65.472000pt;}
.y147{bottom:65.568000pt;}
.y113{bottom:67.648000pt;}
.y6d{bottom:72.832000pt;}
.y43{bottom:75.616000pt;}
.y7e{bottom:75.872000pt;}
.y127{bottom:76.288000pt;}
.ye9{bottom:76.608000pt;}
.yc4{bottom:78.336000pt;}
.y18{bottom:78.560000pt;}
.y95{bottom:81.536000pt;}
.y131{bottom:82.400000pt;}
.y4{bottom:84.896000pt;}
.y62{bottom:86.656000pt;}
.y11c{bottom:88.640000pt;}
.y109{bottom:90.432000pt;}
.ya4{bottom:93.856000pt;}
.yfe{bottom:94.272000pt;}
.y144{bottom:98.368000pt;}
.ye1{bottom:98.464000pt;}
.y6c{bottom:101.632000pt;}
.yc{bottom:104.288000pt;}
.y42{bottom:104.416000pt;}
.y56{bottom:104.544000pt;}
.y7d{bottom:104.672000pt;}
.y126{bottom:105.120000pt;}
.yc3{bottom:107.168000pt;}
.y130{bottom:111.200000pt;}
.y61{bottom:112.256000pt;}
.y8b{bottom:113.312000pt;}
.y3{bottom:115.616000pt;}
.y13a{bottom:116.992000pt;}
.y108{bottom:119.232000pt;}
.y9d{bottom:119.744000pt;}
.ya3{bottom:122.688000pt;}
.yfd{bottom:123.072000pt;}
.y11b{bottom:123.232000pt;}
.y49{bottom:123.392000pt;}
.ye8{bottom:124.800000pt;}
.y112{bottom:126.400000pt;}
.y143{bottom:127.168000pt;}
.ye0{bottom:129.824000pt;}
.y6b{bottom:130.432000pt;}
.y41{bottom:133.248000pt;}
.y55{bottom:133.506667pt;}
.yac{bottom:139.106667pt;}
.y125{bottom:139.680000pt;}
.ycc{bottom:141.533333pt;}
.y8a{bottom:142.106667pt;}
.y15{bottom:145.146667pt;}
.y139{bottom:145.826667pt;}
.y133{bottom:146.080000pt;}
.y9c{bottom:148.546667pt;}
.y94{bottom:149.693333pt;}
.ya2{bottom:151.493333pt;}
.y12f{bottom:151.840000pt;}
.yfc{bottom:151.866667pt;}
.y48{bottom:152.226667pt;}
.yc6{bottom:152.613333pt;}
.yf9{bottom:153.280000pt;}
.y72{bottom:154.466667pt;}
.yb{bottom:155.866667pt;}
.y60{bottom:156.413333pt;}
.y11a{bottom:157.786667pt;}
.y6a{bottom:159.226667pt;}
.yd7{bottom:160.773333pt;}
.y142{bottom:161.733333pt;}
.y40{bottom:162.053333pt;}
.y54{bottom:162.306667pt;}
.ydf{bottom:163.773333pt;}
.y124{bottom:168.480000pt;}
.ye7{bottom:172.800000pt;}
.y14{bottom:173.986667pt;}
.y31{bottom:174.080000pt;}
.y8c{bottom:174.146667pt;}
.y138{bottom:174.626667pt;}
.y9b{bottom:177.346667pt;}
.y93{bottom:178.493333pt;}
.yb7{bottom:179.773333pt;}
.ya1{bottom:180.293333pt;}
.yf8{bottom:182.080000pt;}
.y1e{bottom:185.853333pt;}
.y12e{bottom:186.400000pt;}
.y5f{bottom:186.853333pt;}
.yae{bottom:187.680000pt;}
.yd1{bottom:188.026667pt;}
.y69{bottom:188.066667pt;}
.yab{bottom:188.093333pt;}
.yca{bottom:188.800000pt;}
.y107{bottom:190.146667pt;}
.y141{bottom:190.560000pt;}
.ya{bottom:191.066667pt;}
.y53{bottom:191.106667pt;}
.y47{bottom:194.306667pt;}
.yde{bottom:194.333333pt;}
.y123{bottom:197.280000pt;}
.yf0{bottom:198.653333pt;}
.y13{bottom:202.786667pt;}
.y30{bottom:202.880000pt;}
.y137{bottom:203.426667pt;}
.y9a{bottom:206.146667pt;}
.yc7{bottom:206.586667pt;}
.yb6{bottom:208.573333pt;}
.ya0{bottom:209.120000pt;}
.y88{bottom:209.920000pt;}
.yf7{bottom:210.906667pt;}
.y92{bottom:212.773333pt;}
.y1d{bottom:214.653333pt;}
.y75{bottom:215.013333pt;}
.y12d{bottom:215.200000pt;}
.yad{bottom:216.480000pt;}
.y140{bottom:219.360000pt;}
.ycb{bottom:220.000000pt;}
.ye6{bottom:220.800000pt;}
.y46{bottom:223.106667pt;}
.ydd{bottom:225.053333pt;}
.y5e{bottom:225.253333pt;}
.y119{bottom:226.946667pt;}
.yef{bottom:227.453333pt;}
.yce{bottom:228.093333pt;}
.yd6{bottom:229.920000pt;}
.y7c{bottom:230.173333pt;}
.y12{bottom:231.586667pt;}
.y122{bottom:231.866667pt;}
.y52{bottom:233.053333pt;}
.yc5{bottom:234.426667pt;}
.y106{bottom:234.466667pt;}
.y99{bottom:234.973333pt;}
.y111{bottom:236.293333pt;}
.yaa{bottom:237.053333pt;}
.y9f{bottom:237.920000pt;}
.y136{bottom:238.013333pt;}
.y87{bottom:238.720000pt;}
.yf6{bottom:241.373333pt;}
.y1c{bottom:243.453333pt;}
.y2{bottom:245.053333pt;}
.y68{bottom:246.813333pt;}
.y91{bottom:246.853333pt;}
.y12c{bottom:249.786667pt;}
.yc0{bottom:253.253333pt;}
.y28{bottom:253.413333pt;}
.y13f{bottom:253.920000pt;}
.y5d{bottom:255.133333pt;}
.ydc{bottom:255.933333pt;}
.yee{bottom:256.253333pt;}
.ycd{bottom:256.893333pt;}
.y74{bottom:257.280000pt;}
.y2f{bottom:257.626667pt;}
.y71{bottom:258.466667pt;}
.y7b{bottom:258.973333pt;}
.y3f{bottom:260.320000pt;}
.y11{bottom:260.386667pt;}
.y9{bottom:261.466667pt;}
.y118{bottom:261.506667pt;}
.y36{bottom:262.146667pt;}
.y98{bottom:263.773333pt;}
.y110{bottom:265.093333pt;}
.y51{bottom:266.653333pt;}
.y9e{bottom:266.720000pt;}
.yb5{bottom:267.040000pt;}
.y86{bottom:267.546667pt;}
.ybc{bottom:267.866667pt;}
.ye5{bottom:268.986667pt;}
.y105{bottom:269.026667pt;}
.y146{bottom:270.013333pt;}
.yf5{bottom:270.213333pt;}
.y4b{bottom:271.013333pt;}
.y1b{bottom:272.253333pt;}
.y67{bottom:275.653333pt;}
.y2c{bottom:275.746667pt;}
.y120{bottom:279.013333pt;}
.y90{bottom:280.933333pt;}
.yc1{bottom:281.280000pt;}
.y13e{bottom:282.746667pt;}
.y12b{bottom:284.346667pt;}
.yed{bottom:285.053333pt;}
.ya9{bottom:286.053333pt;}
.y2e{bottom:286.426667pt;}
.ydb{bottom:286.533333pt;}
.y70{bottom:287.266667pt;}
.y1{bottom:289.853333pt;}
.y35{bottom:290.946667pt;}
.y27{bottom:291.813333pt;}
.y3e{bottom:292.320000pt;}
.yd5{bottom:293.280000pt;}
.y10f{bottom:293.893333pt;}
.ye4{bottom:294.586667pt;}
.yb4{bottom:295.840000pt;}
.y117{bottom:296.066667pt;}
.y85{bottom:296.346667pt;}
.ybd{bottom:297.760000pt;}
.yf4{bottom:299.013333pt;}
.y5c{bottom:299.493333pt;}
.y4a{bottom:299.813333pt;}
.y50{bottom:300.253333pt;}
.y1a{bottom:301.093333pt;}
.y24{bottom:302.080000pt;}
.y104{bottom:303.613333pt;}
.y66{bottom:304.453333pt;}
.yc2{bottom:305.253333pt;}
.y7a{bottom:307.493333pt;}
.y11f{bottom:307.840000pt;}
.y13d{bottom:311.546667pt;}
.yec{bottom:313.893333pt;}
.ya6{bottom:315.013333pt;}
.y8f{bottom:315.200000pt;}
.y2d{bottom:315.226667pt;}
.y3a{bottom:316.253333pt;}
.yda{bottom:318.053333pt;}
.y12a{bottom:318.906667pt;}
.ybf{bottom:319.453333pt;}
.y34{bottom:319.773333pt;}
.y135{bottom:319.973333pt;}
.yba{bottom:320.733333pt;}
.y10e{bottom:322.693333pt;}
.y84{bottom:323.866667pt;}
.y3d{bottom:324.320000pt;}
.y5b{bottom:325.093333pt;}
.yf3{bottom:327.813333pt;}
.yc9{bottom:328.186667pt;}
.y19{bottom:329.893333pt;}
.y26{bottom:330.240000pt;}
.yb3{bottom:330.426667pt;}
.ybb{bottom:330.560000pt;}
.y116{bottom:330.626667pt;}
.y8{bottom:331.906667pt;}
.yd8{bottom:333.986667pt;}
.y4f{bottom:334.533333pt;}
.ya8{bottom:335.013333pt;}
.y39{bottom:341.893333pt;}
.ya7{bottom:342.013333pt;}
.y11e{bottom:342.400000pt;}
.ye3{bottom:342.626667pt;}
.y10{bottom:343.546667pt;}
.ya5{bottom:343.813333pt;}
.y13c{bottom:346.106667pt;}
.y79{bottom:346.853333pt;}
.y23{bottom:346.880000pt;}
.ybe{bottom:348.253333pt;}
.y134{bottom:348.773333pt;}
.y8e{bottom:349.280000pt;}
.y10d{bottom:351.520000pt;}
.yfb{bottom:351.680000pt;}
.yd9{bottom:351.973333pt;}
.y83{bottom:352.666667pt;}
.yd3{bottom:353.346667pt;}
.y129{bottom:353.506667pt;}
.yf2{bottom:356.613333pt;}
.y5a{bottom:357.413333pt;}
.yc8{bottom:357.986667pt;}
.y73{bottom:361.986667pt;}
.y4e{bottom:363.333333pt;}
.yf{bottom:364.506667pt;}
.yb2{bottom:364.986667pt;}
.y115{bottom:365.213333pt;}
.y25{bottom:368.640000pt;}
.y103{bottom:372.733333pt;}
.y13b{bottom:374.906667pt;}
.y11d{bottom:376.960000pt;}
.yb9{bottom:378.853333pt;}
.y65{bottom:379.520000pt;}
.y10c{bottom:380.320000pt;}
.y82{bottom:381.506667pt;}
.y8d{bottom:383.360000pt;}
.y97{bottom:383.866667pt;}
.y78{bottom:386.400000pt;}
.y128{bottom:388.066667pt;}
.y3c{bottom:388.346667pt;}
.ye2{bottom:390.626667pt;}
.ye{bottom:393.346667pt;}
.y33{bottom:399.773333pt;}
.y4d{bottom:400.133333pt;}
.y59{bottom:401.600000pt;}
.yeb{bottom:406.173333pt;}
.y102{bottom:407.293333pt;}
.y45{bottom:407.546667pt;}
.y64{bottom:408.320000pt;}
.y38{bottom:408.573333pt;}
.y81{bottom:410.306667pt;}
.y10b{bottom:410.880000pt;}
.y17{bottom:415.173333pt;}
.y6f{bottom:416.226667pt;}
.yfa{bottom:417.693333pt;}
.y7{bottom:418.173333pt;}
.y3b{bottom:420.346667pt;}
.y77{bottom:425.920000pt;}
.y58{bottom:427.200000pt;}
.y32{bottom:428.573333pt;}
.y2b{bottom:428.666667pt;}
.y121{bottom:431.546667pt;}
.yd4{bottom:431.746667pt;}
.y37{bottom:434.173333pt;}
.yb1{bottom:438.266667pt;}
.y1f{bottom:439.200000pt;}
.yd{bottom:439.680000pt;}
.y4c{bottom:440.320000pt;}
.y101{bottom:441.893333pt;}
.y114{bottom:443.520000pt;}
.y44{bottom:445.946667pt;}
.y16{bottom:447.200000pt;}
.y89{bottom:448.293333pt;}
.yb8{bottom:451.746667pt;}
.y96{bottom:452.933333pt;}
.y2a{bottom:457.466667pt;}
.yf1{bottom:463.066667pt;}
.yaf{bottom:464.093333pt;}
.y21{bottom:467.653333pt;}
.y76{bottom:468.546667pt;}
.y63{bottom:468.773333pt;}
.y6e{bottom:470.013333pt;}
.y57{bottom:470.173333pt;}
.yd2{bottom:471.200000pt;}
.yea{bottom:471.520000pt;}
.y29{bottom:475.933333pt;}
.y100{bottom:483.453333pt;}
.y5{bottom:518.560000pt;}
.h25{height:31.828125pt;}
.h10{height:38.462187pt;}
.hd{height:44.821250pt;}
.h5{height:47.647188pt;}
.hb{height:48.718750pt;}
.h4{height:52.813750pt;}
.h11{height:58.563750pt;}
.h16{height:64.795937pt;}
.h15{height:64.893375pt;}
.h29{height:67.165312pt;}
.h9{height:73.078125pt;}
.h1d{height:73.171875pt;}
.ha{height:73.175562pt;}
.h1e{height:73.269437pt;}
.h2{height:76.350312pt;}
.h3{height:76.465125pt;}
.h20{height:81.360312pt;}
.h1f{height:81.457750pt;}
.h1b{height:83.953125pt;}
.h28{height:84.065062pt;}
.h22{height:84.662813pt;}
.h23{height:84.790125pt;}
.h17{height:86.109375pt;}
.h18{height:86.224187pt;}
.h26{height:87.156562pt;}
.h8{height:89.252750pt;}
.h7{height:89.269687pt;}
.h6{height:93.467812pt;}
.hc{height:93.579750pt;}
.he{height:95.484375pt;}
.hf{height:95.611688pt;}
.h12{height:95.868437pt;}
.h13{height:95.983250pt;}
.h19{height:97.437500pt;}
.h21{height:98.296875pt;}
.h14{height:111.937500pt;}
.h1a{height:112.049437pt;}
.h27{height:114.927312pt;}
.h1{height:130.407187pt;}
.h1c{height:130.519125pt;}
.h24{height:142.390125pt;}
.h0{height:540.000000pt;}
.w1{width:959.999986pt;}
.w0{width:960.000000pt;}
.x0{left:0.000000pt;}
.x56{left:6.815986pt;}
.x21{left:8.319986pt;}
.xe{left:20.031986pt;}
.x61{left:21.151986pt;}
.x27{left:22.463986pt;}
.x16{left:23.903986pt;}
.x2d{left:25.023986pt;}
.xc{left:28.095986pt;}
.x29{left:31.615986pt;}
.x19{left:32.607986pt;}
.x1c{left:34.815986pt;}
.x23{left:36.287986pt;}
.x22{left:38.399986pt;}
.x4f{left:39.391986pt;}
.x3{left:40.607986pt;}
.x54{left:41.631986pt;}
.x60{left:43.039986pt;}
.x1e{left:44.703986pt;}
.xf{left:47.999986pt;}
.x28{left:50.783986pt;}
.x5d{left:54.143986pt;}
.x65{left:55.391986pt;}
.x4{left:57.599986pt;}
.x8{left:62.047986pt;}
.x37{left:62.943986pt;}
.x50{left:64.575986pt;}
.x15{left:66.367986pt;}
.x62{left:67.519986pt;}
.x24{left:69.727986pt;}
.x2e{left:71.583986pt;}
.x1f{left:74.303986pt;}
.x1d{left:75.839986pt;}
.x5e{left:80.863986pt;}
.x5f{left:82.463986pt;}
.x1b{left:84.735986pt;}
.x63{left:85.919986pt;}
.x9{left:87.135986pt;}
.x2c{left:90.015986pt;}
.x55{left:91.455986pt;}
.x3e{left:93.503986pt;}
.x2f{left:101.535986pt;}
.x51{left:104.351986pt;}
.x20{left:105.631986pt;}
.xb{left:107.647986pt;}
.x45{left:108.799986pt;}
.x3a{left:111.743986pt;}
.x6{left:116.287986pt;}
.x36{left:118.847986pt;}
.x2a{left:120.159986pt;}
.x25{left:129.151986pt;}
.x5c{left:138.973319pt;}
.x43{left:141.693319pt;}
.x3b{left:148.613319pt;}
.x30{left:149.533319pt;}
.x2b{left:150.533319pt;}
.x52{left:153.626652pt;}
.x26{left:159.226652pt;}
.x7{left:163.813319pt;}
.x31{left:177.346652pt;}
.x44{left:196.386652pt;}
.x10{left:198.013319pt;}
.x64{left:202.373319pt;}
.x3c{left:206.266652pt;}
.x53{left:212.026652pt;}
.x4c{left:217.826652pt;}
.x17{left:219.199986pt;}
.x3d{left:220.613319pt;}
.x38{left:227.133319pt;}
.x4b{left:242.306652pt;}
.x39{left:255.493319pt;}
.x2{left:268.319986pt;}
.x5b{left:269.986652pt;}
.x14{left:275.173319pt;}
.x4a{left:284.386652pt;}
.x1{left:300.479986pt;}
.x13{left:305.026652pt;}
.x46{left:354.653319pt;}
.x42{left:356.066652pt;}
.x47{left:359.199986pt;}
.x41{left:389.919986pt;}
.x48{left:393.373319pt;}
.x4e{left:397.186652pt;}
.x40{left:405.733319pt;}
.x3f{left:428.186652pt;}
.x49{left:433.373319pt;}
.x5a{left:444.706652pt;}
.x18{left:517.439986pt;}
.x34{left:520.133319pt;}
.x4d{left:527.106652pt;}
.x32{left:543.199986pt;}
.x33{left:565.119986pt;}
.xa{left:579.333319pt;}
.x58{left:620.319986pt;}
.x35{left:622.533319pt;}
.x12{left:665.759986pt;}
.xd{left:667.586652pt;}
.x11{left:703.519986pt;}
.x59{left:716.319986pt;}
.x57{left:802.013319pt;}
.x1a{left:897.946652pt;}
.x5{left:905.373319pt;}
}




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