
    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_230c5defb2094b4e4a70fc05.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.689453;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_fc25172bff62f76fe753ba16.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.908203;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_4b4d52fdf094d72ef917dfe4.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_66c61367729fe52fcd5d3503.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_dba33c550c694a1fa07b4e4d.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.093262;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_d533881d60b86aa72dc4d25e.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.692871;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_f6d82d814e5319d77a443d01.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.910645;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_527ab46ca2e6d5bafb3bf1ac.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_f9a89e5beb60c873ebe57208.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.856934;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_71952308e558248a3590c92f.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.857910;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_40bb6cff5f09e8939525a8f7.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.910645;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_abbea9e00583862f252cfa4e.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.717285;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_65d608e28fef1582eb2d6a71.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.692383;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_6b46ebc523ade1b77d362d6d.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.903809;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_162f523d43825c9984bba956.woff2')format("woff");}.fff{font-family:fff;line-height:0.675781;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_4a69c5d3f4b4a64a27df5500.woff2')format("woff");}.ff10{font-family:ff10;line-height:1.095703;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_f54aaf0a4be57f1712563da7.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.689453;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_7bfa81ebe7f9f1857de1de4a.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.687500;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_a009f8c2184b53918ddc1ac9.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.680176;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);}
.v0{vertical-align:0.000000px;}
.ls20{letter-spacing:-2.238048px;}
.ls46{letter-spacing:-0.576000px;}
.ls4{letter-spacing:-0.508896px;}
.ls38{letter-spacing:-0.478080px;}
.lse{letter-spacing:-0.426240px;}
.ls12{letter-spacing:-0.417312px;}
.ls17{letter-spacing:-0.404928px;}
.ls48{letter-spacing:-0.403200px;}
.ls21{letter-spacing:-0.399456px;}
.ls44{letter-spacing:-0.399168px;}
.ls3{letter-spacing:-0.393984px;}
.lsc{letter-spacing:-0.385920px;}
.ls1c{letter-spacing:-0.383040px;}
.ls30{letter-spacing:-0.381024px;}
.ls45{letter-spacing:-0.374400px;}
.ls1b{letter-spacing:-0.372096px;}
.ls6{letter-spacing:-0.361152px;}
.ls1e{letter-spacing:-0.355680px;}
.ls1f{letter-spacing:-0.344736px;}
.lsf{letter-spacing:-0.338688px;}
.ls11{letter-spacing:-0.320544px;}
.ls8{letter-spacing:-0.308736px;}
.ls14{letter-spacing:-0.302400px;}
.ls13{letter-spacing:-0.260064px;}
.ls15{letter-spacing:-0.241920px;}
.lsb{letter-spacing:-0.241200px;}
.ls7{letter-spacing:-0.240768px;}
.ls49{letter-spacing:-0.238464px;}
.ls9{letter-spacing:-0.231552px;}
.ls4e{letter-spacing:-0.224640px;}
.ls10{letter-spacing:-0.223776px;}
.ls1d{letter-spacing:-0.213408px;}
.ls2c{letter-spacing:-0.205344px;}
.ls5{letter-spacing:-0.180576px;}
.ls2e{letter-spacing:-0.175392px;}
.ls29{letter-spacing:-0.165600px;}
.ls18{letter-spacing:-0.158976px;}
.ls31{letter-spacing:-0.157248px;}
.ls2a{letter-spacing:-0.152352px;}
.ls16{letter-spacing:-0.145152px;}
.lsa{letter-spacing:-0.144720px;}
.ls28{letter-spacing:-0.132480px;}
.ls52{letter-spacing:-0.125856px;}
.ls2f{letter-spacing:-0.120960px;}
.ls1a{letter-spacing:-0.119232px;}
.ls19{letter-spacing:-0.079488px;}
.ls2b{letter-spacing:-0.072864px;}
.ls4d{letter-spacing:-0.059616px;}
.ls2d{letter-spacing:-0.014400px;}
.ls2{letter-spacing:0.000000px;}
.ls3b{letter-spacing:0.010944px;}
.ls23{letter-spacing:0.011520px;}
.ls37{letter-spacing:0.012096px;}
.lsd{letter-spacing:0.014400px;}
.ls50{letter-spacing:0.348768px;}
.ls3f{letter-spacing:0.425952px;}
.ls40{letter-spacing:0.719280px;}
.ls4f{letter-spacing:0.722304px;}
.ls3e{letter-spacing:0.793440px;}
.ls27{letter-spacing:0.832176px;}
.ls39{letter-spacing:0.835056px;}
.ls3a{letter-spacing:0.836640px;}
.ls51{letter-spacing:0.984528px;}
.ls3c{letter-spacing:1.275984px;}
.ls3d{letter-spacing:1.277280px;}
.ls41{letter-spacing:1.397664px;}
.ls26{letter-spacing:1.542672px;}
.ls25{letter-spacing:1.974672px;}
.ls35{letter-spacing:3.392640px;}
.ls4a{letter-spacing:3.461328px;}
.ls55{letter-spacing:3.857184px;}
.ls43{letter-spacing:4.659840px;}
.ls57{letter-spacing:4.775040px;}
.ls56{letter-spacing:4.776480px;}
.ls47{letter-spacing:4.803840px;}
.ls42{letter-spacing:5.405760px;}
.ls53{letter-spacing:5.703840px;}
.ls24{letter-spacing:8.231040px;}
.ls58{letter-spacing:8.994240px;}
.ls36{letter-spacing:8.997264px;}
.ls4b{letter-spacing:10.819440px;}
.ls59{letter-spacing:12.120336px;}
.ls33{letter-spacing:13.851648px;}
.ls34{letter-spacing:13.851792px;}
.ls54{letter-spacing:18.558144px;}
.ls4c{letter-spacing:26.701344px;}
.ls0{letter-spacing:353.068560px;}
.ls32{letter-spacing:1098.199152px;}
.ls22{letter-spacing:1359.944208px;}
.ls1{letter-spacing:1747.893024px;}
.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;}
}
.ws3{word-spacing:-24.120000px;}
.ws4{word-spacing:-23.878800px;}
.ws5{word-spacing:-23.734080px;}
.ws6{word-spacing:-18.014400px;}
.ws7{word-spacing:-18.000000px;}
.ws1e{word-spacing:-17.985600px;}
.wsf{word-spacing:-16.560000px;}
.ws10{word-spacing:-16.480512px;}
.ws27{word-spacing:-16.440768px;}
.wsa{word-spacing:-15.120000px;}
.ws1f{word-spacing:-14.974848px;}
.ws1b{word-spacing:-14.970240px;}
.ws25{word-spacing:-14.962752px;}
.ws21{word-spacing:-14.944608px;}
.ws1c{word-spacing:-14.897376px;}
.ws9{word-spacing:-14.896224px;}
.wsb{word-spacing:-14.878080px;}
.ws20{word-spacing:-14.859936px;}
.ws19{word-spacing:-14.837760px;}
.ws1a{word-spacing:-14.804640px;}
.wsc{word-spacing:-14.799456px;}
.wsd{word-spacing:-14.781312px;}
.ws1d{word-spacing:-14.764896px;}
.ws23{word-spacing:-14.738976px;}
.ws24{word-spacing:-14.400000px;}
.ws28{word-spacing:-14.175360px;}
.ws29{word-spacing:-13.996800px;}
.ws8{word-spacing:-13.973760px;}
.ws2a{word-spacing:-13.921920px;}
.ws26{word-spacing:-13.824000px;}
.ws2{word-spacing:-13.680000px;}
.ws22{word-spacing:-13.439232px;}
.ws1{word-spacing:-13.318848px;}
.ws0{word-spacing:-13.171104px;}
.ws17{word-spacing:-12.366720px;}
.ws14{word-spacing:-12.021984px;}
.ws13{word-spacing:-12.011040px;}
.ws12{word-spacing:-11.983680px;}
.ws11{word-spacing:-11.972736px;}
.ws16{word-spacing:-11.967264px;}
.wse{word-spacing:-11.961792px;}
.ws15{word-spacing:-10.128672px;}
.ws18{word-spacing:0.000000px;}
._1e{margin-left:-5.267520px;}
._b{margin-left:-4.173120px;}
._a{margin-left:-3.113280px;}
._1{margin-left:-1.227168px;}
._0{width:1.039680px;}
._4{width:2.600640px;}
._e{width:3.957120px;}
._11{width:4.973760px;}
._16{width:6.229440px;}
._c{width:7.286400px;}
._d{width:8.369280px;}
._12{width:9.737280px;}
._15{width:10.875600px;}
._13{width:11.889216px;}
._7{width:12.916800px;}
._10{width:14.072544px;}
._f{width:15.170688px;}
._1c{width:16.465824px;}
._8{width:18.621648px;}
._9{width:19.636560px;}
._14{width:20.840832px;}
._6{width:21.901968px;}
._5{width:23.345280px;}
._17{width:24.664320px;}
._18{width:25.692480px;}
._23{width:27.108000px;}
._3{width:28.483200px;}
._2{width:29.715840px;}
._1a{width:31.357728px;}
._19{width:32.400000px;}
._1f{width:33.436800px;}
._1d{width:34.942896px;}
._22{width:36.453312px;}
._24{width:37.555776px;}
._21{width:38.656224px;}
._20{width:40.608000px;}
._25{width:41.659200px;}
._28{width:45.720000px;}
._26{width:46.864800px;}
._29{width:48.744000px;}
._1b{width:50.088384px;}
._27{width:72.799200px;}
.fc2{color:rgb(255,0,0);}
.fc1{color:rgb(5,99,193);}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:38.880000px;}
.fs6{font-size:41.760000px;}
.fs8{font-size:47.520000px;}
.fs1{font-size:54.720000px;}
.fs4{font-size:57.600000px;}
.fs5{font-size:60.480000px;}
.fs0{font-size:66.240000px;}
.fs3{font-size:72.000000px;}
.fs2{font-size:96.480000px;}
.y0{bottom:0.000000px;}
.y4{bottom:45.360000px;}
.y3{bottom:60.840000px;}
.y2{bottom:76.320000px;}
.y59{bottom:97.920000px;}
.y8b{bottom:98.280000px;}
.y2c{bottom:100.080000px;}
.y108{bottom:101.880000px;}
.yc4{bottom:103.320000px;}
.y12a{bottom:115.560000px;}
.y58{bottom:116.640000px;}
.y8a{bottom:119.160000px;}
.y159{bottom:120.960000px;}
.y9e{bottom:122.040000px;}
.y107{bottom:122.400000px;}
.y2b{bottom:125.280000px;}
.ye0{bottom:132.480000px;}
.y57{bottom:135.000000px;}
.y129{bottom:136.440000px;}
.y89{bottom:139.680000px;}
.ya7{bottom:140.400000px;}
.y2a{bottom:141.480000px;}
.y106{bottom:143.280000px;}
.y19a{bottom:145.800000px;}
.y184{bottom:148.320000px;}
.ydf{bottom:151.200000px;}
.ya6{bottom:153.360000px;}
.y56{bottom:153.720000px;}
.y128{bottom:156.960000px;}
.y29{bottom:158.040000px;}
.y74{bottom:159.120000px;}
.y9d{bottom:159.840000px;}
.y88{bottom:160.560000px;}
.y160{bottom:161.640000px;}
.y158{bottom:162.360000px;}
.y105{bottom:163.800000px;}
.y199{bottom:166.680000px;}
.y183{bottom:169.560000px;}
.yde{bottom:170.280000px;}
.y100{bottom:172.080000px;}
.y55{bottom:172.440000px;}
.y28{bottom:177.120000px;}
.yb6{bottom:177.840000px;}
.ya4{bottom:180.360000px;}
.y9c{bottom:180.720000px;}
.y87{bottom:181.080000px;}
.y15f{bottom:182.520000px;}
.y157{bottom:182.880000px;}
.y104{bottom:183.960000px;}
.ya5{bottom:186.480000px;}
.y198{bottom:187.560000px;}
.y14e{bottom:188.280000px;}
.ydd{bottom:189.360000px;}
.y54{bottom:191.160000px;}
.y27{bottom:196.200000px;}
.y127{bottom:198.360000px;}
.y9b{bottom:201.240000px;}
.y86{bottom:201.960000px;}
.y15e{bottom:203.040000px;}
.y103{bottom:203.760000px;}
.y182{bottom:207.720000px;}
.ydc{bottom:208.080000px;}
.y14d{bottom:208.800000px;}
.y53{bottom:209.520000px;}
.yb5{bottom:214.920000px;}
.y26{bottom:215.280000px;}
.y126{bottom:218.520000px;}
.y9a{bottom:222.120000px;}
.y85{bottom:222.480000px;}
.y102{bottom:223.920000px;}
.y156{bottom:224.280000px;}
.yff{bottom:225.360000px;}
.ydb{bottom:227.160000px;}
.y52{bottom:228.240000px;}
.y181{bottom:228.960000px;}
.y14c{bottom:229.680000px;}
.yb4{bottom:233.640000px;}
.y25{bottom:234.000000px;}
.y125{bottom:237.960000px;}
.y99{bottom:242.640000px;}
.y84{bottom:243.360000px;}
.y15d{bottom:244.440000px;}
.y155{bottom:245.160000px;}
.yda{bottom:246.240000px;}
.yb3{bottom:246.600000px;}
.y51{bottom:246.960000px;}
.y14b{bottom:250.200000px;}
.y73{bottom:252.360000px;}
.y24{bottom:253.080000px;}
.y124{bottom:258.840000px;}
.y98{bottom:263.520000px;}
.y83{bottom:263.880000px;}
.y50{bottom:265.320000px;}
.yd9{bottom:265.680000px;}
.yfe{bottom:266.760000px;}
.y180{bottom:267.120000px;}
.y197{bottom:267.480000px;}
.y16c{bottom:268.560000px;}
.y101{bottom:269.640000px;}
.y14a{bottom:271.080000px;}
.y23{bottom:272.160000px;}
.y123{bottom:279.360000px;}
.yb2{bottom:282.960000px;}
.y4f{bottom:284.040000px;}
.y82{bottom:284.760000px;}
.y15b{bottom:286.200000px;}
.yd8{bottom:286.560000px;}
.yfc{bottom:287.640000px;}
.y17f{bottom:288.360000px;}
.y16b{bottom:289.440000px;}
.y22{bottom:290.880000px;}
.y149{bottom:291.600000px;}
.y15c{bottom:292.320000px;}
.yfd{bottom:293.760000px;}
.y122{bottom:300.240000px;}
.y4e{bottom:302.760000px;}
.yc2{bottom:303.480000px;}
.yb1{bottom:303.840000px;}
.y72{bottom:304.200000px;}
.y97{bottom:304.920000px;}
.y81{bottom:305.280000px;}
.y196{bottom:306.000000px;}
.yd7{bottom:307.080000px;}
.yfb{bottom:308.880000px;}
.yc3{bottom:309.600000px;}
.y21{bottom:309.960000px;}
.y16a{bottom:310.320000px;}
.y148{bottom:312.480000px;}
.y121{bottom:320.760000px;}
.y4d{bottom:321.120000px;}
.yc1{bottom:324.360000px;}
.yaf{bottom:324.720000px;}
.y71{bottom:325.080000px;}
.y96{bottom:325.440000px;}
.y80{bottom:326.160000px;}
.y195{bottom:326.880000px;}
.yd6{bottom:327.960000px;}
.y20{bottom:329.040000px;}
.yfa{bottom:329.400000px;}
.yb0{bottom:330.840000px;}
.y147{bottom:333.000000px;}
.y120{bottom:341.640000px;}
.y4c{bottom:345.240000px;}
.y1f{bottom:345.600000px;}
.y95{bottom:346.320000px;}
.y7f{bottom:346.680000px;}
.y17e{bottom:347.400000px;}
.yd5{bottom:348.480000px;}
.yf9{bottom:350.280000px;}
.y146{bottom:353.880000px;}
.y1e{bottom:361.800000px;}
.y11f{bottom:362.160000px;}
.y194{bottom:365.400000px;}
.y4b{bottom:365.760000px;}
.y70{bottom:366.480000px;}
.y94{bottom:366.840000px;}
.y7e{bottom:367.560000px;}
.y17d{bottom:368.280000px;}
.yd4{bottom:369.360000px;}
.yf8{bottom:370.800000px;}
.y145{bottom:374.400000px;}
.y1d{bottom:380.880000px;}
.y11e{bottom:383.040000px;}
.y193{bottom:386.280000px;}
.y4a{bottom:386.640000px;}
.y6f{bottom:387.000000px;}
.y93{bottom:387.720000px;}
.y7d{bottom:388.080000px;}
.yd3{bottom:389.880000px;}
.y169{bottom:390.240000px;}
.yf7{bottom:391.680000px;}
.y144{bottom:395.280000px;}
.y1c{bottom:399.960000px;}
.y11d{bottom:403.560000px;}
.y17c{bottom:406.800000px;}
.y49{bottom:407.160000px;}
.y6e{bottom:407.880000px;}
.y92{bottom:408.240000px;}
.y7c{bottom:408.960000px;}
.yd2{bottom:410.760000px;}
.y168{bottom:411.120000px;}
.yf6{bottom:412.200000px;}
.y143{bottom:415.800000px;}
.y1b{bottom:419.040000px;}
.y11c{bottom:424.440000px;}
.y192{bottom:424.800000px;}
.y17b{bottom:427.680000px;}
.y48{bottom:428.040000px;}
.y6d{bottom:428.400000px;}
.y91{bottom:429.120000px;}
.y7b{bottom:429.480000px;}
.yd1{bottom:431.280000px;}
.y167{bottom:431.640000px;}
.yf5{bottom:433.080000px;}
.y142{bottom:436.320000px;}
.y1a{bottom:437.760000px;}
.y11b{bottom:444.960000px;}
.y191{bottom:445.680000px;}
.y47{bottom:448.560000px;}
.y6b{bottom:449.280000px;}
.y90{bottom:449.640000px;}
.y7a{bottom:450.360000px;}
.yd0{bottom:452.160000px;}
.yf3{bottom:453.600000px;}
.y6c{bottom:455.400000px;}
.y19{bottom:456.840000px;}
.y141{bottom:457.200000px;}
.yf4{bottom:459.720000px;}
.y11a{bottom:465.840000px;}
.y17a{bottom:466.200000px;}
.y190{bottom:466.560000px;}
.y46{bottom:469.440000px;}
.yae{bottom:469.800000px;}
.y166{bottom:470.160000px;}
.y6a{bottom:470.520000px;}
.y79{bottom:470.880000px;}
.ycf{bottom:472.680000px;}
.yf2{bottom:474.480000px;}
.y18{bottom:475.920000px;}
.y140{bottom:477.720000px;}
.y119{bottom:486.360000px;}
.y179{bottom:487.080000px;}
.y45{bottom:489.960000px;}
.yad{bottom:490.680000px;}
.y69{bottom:491.040000px;}
.y78{bottom:491.760000px;}
.yce{bottom:493.560000px;}
.y17{bottom:495.000000px;}
.y13f{bottom:498.600000px;}
.y18f{bottom:504.720000px;}
.y118{bottom:507.240000px;}
.y178{bottom:507.960000px;}
.y44{bottom:510.840000px;}
.yac{bottom:511.200000px;}
.y68{bottom:511.920000px;}
.y77{bottom:512.280000px;}
.y16{bottom:513.720000px;}
.ycd{bottom:514.080000px;}
.yf1{bottom:515.880000px;}
.y13e{bottom:519.120000px;}
.y18e{bottom:525.960000px;}
.y117{bottom:527.760000px;}
.y177{bottom:528.480000px;}
.y43{bottom:531.360000px;}
.yab{bottom:532.080000px;}
.y15{bottom:532.440000px;}
.y76{bottom:533.160000px;}
.ycc{bottom:534.960000px;}
.yf0{bottom:536.400000px;}
.y13d{bottom:540.000000px;}
.y18d{bottom:546.480000px;}
.y116{bottom:548.640000px;}
.y14{bottom:549.720000px;}
.y41{bottom:552.240000px;}
.yaa{bottom:552.600000px;}
.y66{bottom:553.320000px;}
.y75{bottom:553.680000px;}
.ycb{bottom:555.480000px;}
.yef{bottom:557.280000px;}
.y42{bottom:558.360000px;}
.y67{bottom:559.440000px;}
.y13c{bottom:560.520000px;}
.y13{bottom:567.000000px;}
.y115{bottom:569.160000px;}
.ybf{bottom:573.120000px;}
.y40{bottom:573.480000px;}
.y8f{bottom:573.840000px;}
.y65{bottom:574.560000px;}
.yca{bottom:576.360000px;}
.yee{bottom:577.800000px;}
.yc0{bottom:579.240000px;}
.y13b{bottom:581.400000px;}
.y12{bottom:584.280000px;}
.y18c{bottom:585.000000px;}
.y114{bottom:590.040000px;}
.y3f{bottom:594.000000px;}
.y8e{bottom:594.720000px;}
.y64{bottom:595.080000px;}
.yc9{bottom:596.880000px;}
.yed{bottom:598.680000px;}
.y11{bottom:601.560000px;}
.y139{bottom:602.280000px;}
.y176{bottom:605.520000px;}
.y18b{bottom:605.880000px;}
.y13a{bottom:608.400000px;}
.y113{bottom:610.560000px;}
.y3e{bottom:614.880000px;}
.y8d{bottom:615.240000px;}
.y63{bottom:615.960000px;}
.yc8{bottom:617.760000px;}
.y10{bottom:618.840000px;}
.yec{bottom:619.200000px;}
.y138{bottom:623.160000px;}
.y175{bottom:626.760000px;}
.y112{bottom:631.440000px;}
.y3d{bottom:635.400000px;}
.ya8{bottom:635.760000px;}
.yf{bottom:636.120000px;}
.y62{bottom:636.480000px;}
.yc7{bottom:638.280000px;}
.yeb{bottom:640.080000px;}
.ya9{bottom:641.880000px;}
.y8c{bottom:642.240000px;}
.y137{bottom:644.040000px;}
.y18a{bottom:644.400000px;}
.y111{bottom:651.600000px;}
.ye{bottom:653.040000px;}
.y3c{bottom:656.280000px;}
.ya3{bottom:656.640000px;}
.y61{bottom:657.360000px;}
.y15a{bottom:658.440000px;}
.yc6{bottom:659.160000px;}
.yea{bottom:660.600000px;}
.y136{bottom:664.560000px;}
.y174{bottom:664.920000px;}
.y189{bottom:665.280000px;}
.yd{bottom:670.320000px;}
.y110{bottom:670.680000px;}
.y3b{bottom:676.800000px;}
.ya2{bottom:677.520000px;}
.y60{bottom:677.880000px;}
.yc5{bottom:679.320000px;}
.y154{bottom:679.680000px;}
.ye9{bottom:681.480000px;}
.y19d{bottom:682.920000px;}
.y135{bottom:685.440000px;}
.y173{bottom:686.160000px;}
.yc{bottom:687.600000px;}
.y10f{bottom:689.400000px;}
.y39{bottom:697.680000px;}
.ya1{bottom:698.040000px;}
.y5f{bottom:698.760000px;}
.y153{bottom:700.560000px;}
.ye8{bottom:702.000000px;}
.y3a{bottom:703.800000px;}
.y19c{bottom:704.160000px;}
.yb{bottom:705.960000px;}
.y172{bottom:706.680000px;}
.y10e{bottom:708.480000px;}
.ybe{bottom:718.200000px;}
.y38{bottom:718.920000px;}
.y5e{bottom:719.280000px;}
.y152{bottom:721.080000px;}
.ye7{bottom:722.880000px;}
.y188{bottom:724.320000px;}
.y19b{bottom:724.680000px;}
.y134{bottom:726.840000px;}
.y10d{bottom:727.560000px;}
.ybd{bottom:739.080000px;}
.y37{bottom:739.440000px;}
.y5d{bottom:740.160000px;}
.ya{bottom:741.240000px;}
.y151{bottom:741.600000px;}
.ye6{bottom:743.400000px;}
.y171{bottom:745.200000px;}
.y187{bottom:745.560000px;}
.y10c{bottom:746.280000px;}
.y133{bottom:747.360000px;}
.ybc{bottom:759.600000px;}
.y36{bottom:760.320000px;}
.y5c{bottom:760.680000px;}
.y150{bottom:762.480000px;}
.ye5{bottom:764.280000px;}
.y10b{bottom:765.360000px;}
.y170{bottom:766.080000px;}
.y132{bottom:768.240000px;}
.y9{bottom:768.600000px;}
.ybb{bottom:780.480000px;}
.y35{bottom:780.840000px;}
.y9f{bottom:781.200000px;}
.y5b{bottom:781.560000px;}
.y14f{bottom:783.000000px;}
.y186{bottom:783.720000px;}
.y10a{bottom:784.440000px;}
.ye4{bottom:784.800000px;}
.ya0{bottom:787.320000px;}
.y131{bottom:788.760000px;}
.y8{bottom:796.320000px;}
.yb9{bottom:801.360000px;}
.y33{bottom:801.720000px;}
.y5a{bottom:802.080000px;}
.y109{bottom:803.160000px;}
.y16f{bottom:804.600000px;}
.y185{bottom:804.960000px;}
.ye3{bottom:805.680000px;}
.yba{bottom:807.480000px;}
.y34{bottom:807.840000px;}
.y130{bottom:808.920000px;}
.y165{bottom:822.240000px;}
.yb7{bottom:822.600000px;}
.y32{bottom:822.960000px;}
.y7{bottom:823.680000px;}
.y16e{bottom:825.480000px;}
.ye2{bottom:825.840000px;}
.y12f{bottom:828.000000px;}
.yb8{bottom:828.720000px;}
.y164{bottom:843.120000px;}
.y31{bottom:843.480000px;}
.ye1{bottom:844.560000px;}
.y12d{bottom:847.800000px;}
.y6{bottom:851.400000px;}
.y12e{bottom:853.920000px;}
.y163{bottom:863.640000px;}
.y16d{bottom:864.000000px;}
.y30{bottom:864.360000px;}
.y12c{bottom:867.240000px;}
.y5{bottom:879.120000px;}
.y161{bottom:884.520000px;}
.y2f{bottom:884.880000px;}
.y12b{bottom:885.960000px;}
.y162{bottom:890.640000px;}
.y2e{bottom:919.440000px;}
.y1{bottom:925.560000px;}
.y2d{bottom:936.720000px;}
.he{height:26.274375px;}
.hc{height:27.833203px;}
.h10{height:32.113125px;}
.h8{height:37.219219px;}
.h3{height:37.994063px;}
.h9{height:39.249844px;}
.h6{height:42.022969px;}
.h11{height:44.149219px;}
.h2{height:45.054844px;}
.h7{height:46.025156px;}
.ha{height:48.761719px;}
.hf{height:51.159375px;}
.h5{height:63.175781px;}
.hd{height:63.351563px;}
.h4{height:66.989531px;}
.hb{height:994.500000px;}
.h0{height:1020.600000px;}
.h1{height:1020.750000px;}
.w2{width:695.925000px;}
.w0{width:722.925000px;}
.w1{width:723.000000px;}
.x0{left:0.000000px;}
.x4{left:27.000000px;}
.xc{left:68.760000px;}
.x1{left:95.760144px;}
.x12{left:100.800288px;}
.xd{left:103.320180px;}
.x1f{left:105.840072px;}
.x26{left:117.060048px;}
.x1b{left:118.800000px;}
.x3{left:127.635156px;}
.x27{left:138.359988px;}
.x39{left:149.760144px;}
.x15{left:153.360000px;}
.x28{left:154.800000px;}
.x1c{left:156.552228px;}
.x5{left:169.200000px;}
.x16{left:185.770404px;}
.x9{left:186.840000px;}
.x29{left:193.974624px;}
.x13{left:197.280000px;}
.x23{left:198.720000px;}
.x6{left:201.697272px;}
.x22{left:207.087156px;}
.xa{left:219.153420px;}
.x19{left:223.920000px;}
.x14{left:229.786740px;}
.x2a{left:233.280000px;}
.x24{left:236.404188px;}
.x20{left:250.920000px;}
.x1a{left:256.155372px;}
.x7{left:267.120000px;}
.x2b{left:270.904896px;}
.x21{left:288.777456px;}
.x8{left:299.599704px;}
.x38{left:306.823968px;}
.xb{left:311.760144px;}
.x10{left:330.480000px;}
.x17{left:338.760000px;}
.x2c{left:344.520000px;}
.xe{left:347.040000px;}
.x11{left:362.875140px;}
.x18{left:371.278944px;}
.xf{left:379.494504px;}
.x2d{left:382.167108px;}
.x30{left:384.120000px;}
.x25{left:409.273560px;}
.x31{left:421.945200px;}
.x34{left:428.400000px;}
.x2e{left:457.200000px;}
.x35{left:466.374960px;}
.x1d{left:468.360000px;}
.x2f{left:495.007560px;}
.x36{left:497.880000px;}
.x1e{left:506.160720px;}
.x37{left:535.756680px;}
.x32{left:558.360000px;}
.x33{left:596.082960px;}
.x2{left:627.284880px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls20{letter-spacing:-1.989376pt;}
.ls46{letter-spacing:-0.512000pt;}
.ls4{letter-spacing:-0.452352pt;}
.ls38{letter-spacing:-0.424960pt;}
.lse{letter-spacing:-0.378880pt;}
.ls12{letter-spacing:-0.370944pt;}
.ls17{letter-spacing:-0.359936pt;}
.ls48{letter-spacing:-0.358400pt;}
.ls21{letter-spacing:-0.355072pt;}
.ls44{letter-spacing:-0.354816pt;}
.ls3{letter-spacing:-0.350208pt;}
.lsc{letter-spacing:-0.343040pt;}
.ls1c{letter-spacing:-0.340480pt;}
.ls30{letter-spacing:-0.338688pt;}
.ls45{letter-spacing:-0.332800pt;}
.ls1b{letter-spacing:-0.330752pt;}
.ls6{letter-spacing:-0.321024pt;}
.ls1e{letter-spacing:-0.316160pt;}
.ls1f{letter-spacing:-0.306432pt;}
.lsf{letter-spacing:-0.301056pt;}
.ls11{letter-spacing:-0.284928pt;}
.ls8{letter-spacing:-0.274432pt;}
.ls14{letter-spacing:-0.268800pt;}
.ls13{letter-spacing:-0.231168pt;}
.ls15{letter-spacing:-0.215040pt;}
.lsb{letter-spacing:-0.214400pt;}
.ls7{letter-spacing:-0.214016pt;}
.ls49{letter-spacing:-0.211968pt;}
.ls9{letter-spacing:-0.205824pt;}
.ls4e{letter-spacing:-0.199680pt;}
.ls10{letter-spacing:-0.198912pt;}
.ls1d{letter-spacing:-0.189696pt;}
.ls2c{letter-spacing:-0.182528pt;}
.ls5{letter-spacing:-0.160512pt;}
.ls2e{letter-spacing:-0.155904pt;}
.ls29{letter-spacing:-0.147200pt;}
.ls18{letter-spacing:-0.141312pt;}
.ls31{letter-spacing:-0.139776pt;}
.ls2a{letter-spacing:-0.135424pt;}
.ls16{letter-spacing:-0.129024pt;}
.lsa{letter-spacing:-0.128640pt;}
.ls28{letter-spacing:-0.117760pt;}
.ls52{letter-spacing:-0.111872pt;}
.ls2f{letter-spacing:-0.107520pt;}
.ls1a{letter-spacing:-0.105984pt;}
.ls19{letter-spacing:-0.070656pt;}
.ls2b{letter-spacing:-0.064768pt;}
.ls4d{letter-spacing:-0.052992pt;}
.ls2d{letter-spacing:-0.012800pt;}
.ls2{letter-spacing:0.000000pt;}
.ls3b{letter-spacing:0.009728pt;}
.ls23{letter-spacing:0.010240pt;}
.ls37{letter-spacing:0.010752pt;}
.lsd{letter-spacing:0.012800pt;}
.ls50{letter-spacing:0.310016pt;}
.ls3f{letter-spacing:0.378624pt;}
.ls40{letter-spacing:0.639360pt;}
.ls4f{letter-spacing:0.642048pt;}
.ls3e{letter-spacing:0.705280pt;}
.ls27{letter-spacing:0.739712pt;}
.ls39{letter-spacing:0.742272pt;}
.ls3a{letter-spacing:0.743680pt;}
.ls51{letter-spacing:0.875136pt;}
.ls3c{letter-spacing:1.134208pt;}
.ls3d{letter-spacing:1.135360pt;}
.ls41{letter-spacing:1.242368pt;}
.ls26{letter-spacing:1.371264pt;}
.ls25{letter-spacing:1.755264pt;}
.ls35{letter-spacing:3.015680pt;}
.ls4a{letter-spacing:3.076736pt;}
.ls55{letter-spacing:3.428608pt;}
.ls43{letter-spacing:4.142080pt;}
.ls57{letter-spacing:4.244480pt;}
.ls56{letter-spacing:4.245760pt;}
.ls47{letter-spacing:4.270080pt;}
.ls42{letter-spacing:4.805120pt;}
.ls53{letter-spacing:5.070080pt;}
.ls24{letter-spacing:7.316480pt;}
.ls58{letter-spacing:7.994880pt;}
.ls36{letter-spacing:7.997568pt;}
.ls4b{letter-spacing:9.617280pt;}
.ls59{letter-spacing:10.773632pt;}
.ls33{letter-spacing:12.312576pt;}
.ls34{letter-spacing:12.312704pt;}
.ls54{letter-spacing:16.496128pt;}
.ls4c{letter-spacing:23.734528pt;}
.ls0{letter-spacing:313.838720pt;}
.ls32{letter-spacing:976.177024pt;}
.ls22{letter-spacing:1208.839296pt;}
.ls1{letter-spacing:1553.682688pt;}
.ws3{word-spacing:-21.440000pt;}
.ws4{word-spacing:-21.225600pt;}
.ws5{word-spacing:-21.096960pt;}
.ws6{word-spacing:-16.012800pt;}
.ws7{word-spacing:-16.000000pt;}
.ws1e{word-spacing:-15.987200pt;}
.wsf{word-spacing:-14.720000pt;}
.ws10{word-spacing:-14.649344pt;}
.ws27{word-spacing:-14.614016pt;}
.wsa{word-spacing:-13.440000pt;}
.ws1f{word-spacing:-13.310976pt;}
.ws1b{word-spacing:-13.306880pt;}
.ws25{word-spacing:-13.300224pt;}
.ws21{word-spacing:-13.284096pt;}
.ws1c{word-spacing:-13.242112pt;}
.ws9{word-spacing:-13.241088pt;}
.wsb{word-spacing:-13.224960pt;}
.ws20{word-spacing:-13.208832pt;}
.ws19{word-spacing:-13.189120pt;}
.ws1a{word-spacing:-13.159680pt;}
.wsc{word-spacing:-13.155072pt;}
.wsd{word-spacing:-13.138944pt;}
.ws1d{word-spacing:-13.124352pt;}
.ws23{word-spacing:-13.101312pt;}
.ws24{word-spacing:-12.800000pt;}
.ws28{word-spacing:-12.600320pt;}
.ws29{word-spacing:-12.441600pt;}
.ws8{word-spacing:-12.421120pt;}
.ws2a{word-spacing:-12.375040pt;}
.ws26{word-spacing:-12.288000pt;}
.ws2{word-spacing:-12.160000pt;}
.ws22{word-spacing:-11.945984pt;}
.ws1{word-spacing:-11.838976pt;}
.ws0{word-spacing:-11.707648pt;}
.ws17{word-spacing:-10.992640pt;}
.ws14{word-spacing:-10.686208pt;}
.ws13{word-spacing:-10.676480pt;}
.ws12{word-spacing:-10.652160pt;}
.ws11{word-spacing:-10.642432pt;}
.ws16{word-spacing:-10.637568pt;}
.wse{word-spacing:-10.632704pt;}
.ws15{word-spacing:-9.003264pt;}
.ws18{word-spacing:0.000000pt;}
._1e{margin-left:-4.682240pt;}
._b{margin-left:-3.709440pt;}
._a{margin-left:-2.767360pt;}
._1{margin-left:-1.090816pt;}
._0{width:0.924160pt;}
._4{width:2.311680pt;}
._e{width:3.517440pt;}
._11{width:4.421120pt;}
._16{width:5.537280pt;}
._c{width:6.476800pt;}
._d{width:7.439360pt;}
._12{width:8.655360pt;}
._15{width:9.667200pt;}
._13{width:10.568192pt;}
._7{width:11.481600pt;}
._10{width:12.508928pt;}
._f{width:13.485056pt;}
._1c{width:14.636288pt;}
._8{width:16.552576pt;}
._9{width:17.454720pt;}
._14{width:18.525184pt;}
._6{width:19.468416pt;}
._5{width:20.751360pt;}
._17{width:21.923840pt;}
._18{width:22.837760pt;}
._23{width:24.096000pt;}
._3{width:25.318400pt;}
._2{width:26.414080pt;}
._1a{width:27.873536pt;}
._19{width:28.800000pt;}
._1f{width:29.721600pt;}
._1d{width:31.060352pt;}
._22{width:32.402944pt;}
._24{width:33.382912pt;}
._21{width:34.361088pt;}
._20{width:36.096000pt;}
._25{width:37.030400pt;}
._28{width:40.640000pt;}
._26{width:41.657600pt;}
._29{width:43.328000pt;}
._1b{width:44.523008pt;}
._27{width:64.710400pt;}
.fs7{font-size:34.560000pt;}
.fs6{font-size:37.120000pt;}
.fs8{font-size:42.240000pt;}
.fs1{font-size:48.640000pt;}
.fs4{font-size:51.200000pt;}
.fs5{font-size:53.760000pt;}
.fs0{font-size:58.880000pt;}
.fs3{font-size:64.000000pt;}
.fs2{font-size:85.760000pt;}
.y0{bottom:0.000000pt;}
.y4{bottom:40.320000pt;}
.y3{bottom:54.080000pt;}
.y2{bottom:67.840000pt;}
.y59{bottom:87.040000pt;}
.y8b{bottom:87.360000pt;}
.y2c{bottom:88.960000pt;}
.y108{bottom:90.560000pt;}
.yc4{bottom:91.840000pt;}
.y12a{bottom:102.720000pt;}
.y58{bottom:103.680000pt;}
.y8a{bottom:105.920000pt;}
.y159{bottom:107.520000pt;}
.y9e{bottom:108.480000pt;}
.y107{bottom:108.800000pt;}
.y2b{bottom:111.360000pt;}
.ye0{bottom:117.760000pt;}
.y57{bottom:120.000000pt;}
.y129{bottom:121.280000pt;}
.y89{bottom:124.160000pt;}
.ya7{bottom:124.800000pt;}
.y2a{bottom:125.760000pt;}
.y106{bottom:127.360000pt;}
.y19a{bottom:129.600000pt;}
.y184{bottom:131.840000pt;}
.ydf{bottom:134.400000pt;}
.ya6{bottom:136.320000pt;}
.y56{bottom:136.640000pt;}
.y128{bottom:139.520000pt;}
.y29{bottom:140.480000pt;}
.y74{bottom:141.440000pt;}
.y9d{bottom:142.080000pt;}
.y88{bottom:142.720000pt;}
.y160{bottom:143.680000pt;}
.y158{bottom:144.320000pt;}
.y105{bottom:145.600000pt;}
.y199{bottom:148.160000pt;}
.y183{bottom:150.720000pt;}
.yde{bottom:151.360000pt;}
.y100{bottom:152.960000pt;}
.y55{bottom:153.280000pt;}
.y28{bottom:157.440000pt;}
.yb6{bottom:158.080000pt;}
.ya4{bottom:160.320000pt;}
.y9c{bottom:160.640000pt;}
.y87{bottom:160.960000pt;}
.y15f{bottom:162.240000pt;}
.y157{bottom:162.560000pt;}
.y104{bottom:163.520000pt;}
.ya5{bottom:165.760000pt;}
.y198{bottom:166.720000pt;}
.y14e{bottom:167.360000pt;}
.ydd{bottom:168.320000pt;}
.y54{bottom:169.920000pt;}
.y27{bottom:174.400000pt;}
.y127{bottom:176.320000pt;}
.y9b{bottom:178.880000pt;}
.y86{bottom:179.520000pt;}
.y15e{bottom:180.480000pt;}
.y103{bottom:181.120000pt;}
.y182{bottom:184.640000pt;}
.ydc{bottom:184.960000pt;}
.y14d{bottom:185.600000pt;}
.y53{bottom:186.240000pt;}
.yb5{bottom:191.040000pt;}
.y26{bottom:191.360000pt;}
.y126{bottom:194.240000pt;}
.y9a{bottom:197.440000pt;}
.y85{bottom:197.760000pt;}
.y102{bottom:199.040000pt;}
.y156{bottom:199.360000pt;}
.yff{bottom:200.320000pt;}
.ydb{bottom:201.920000pt;}
.y52{bottom:202.880000pt;}
.y181{bottom:203.520000pt;}
.y14c{bottom:204.160000pt;}
.yb4{bottom:207.680000pt;}
.y25{bottom:208.000000pt;}
.y125{bottom:211.520000pt;}
.y99{bottom:215.680000pt;}
.y84{bottom:216.320000pt;}
.y15d{bottom:217.280000pt;}
.y155{bottom:217.920000pt;}
.yda{bottom:218.880000pt;}
.yb3{bottom:219.200000pt;}
.y51{bottom:219.520000pt;}
.y14b{bottom:222.400000pt;}
.y73{bottom:224.320000pt;}
.y24{bottom:224.960000pt;}
.y124{bottom:230.080000pt;}
.y98{bottom:234.240000pt;}
.y83{bottom:234.560000pt;}
.y50{bottom:235.840000pt;}
.yd9{bottom:236.160000pt;}
.yfe{bottom:237.120000pt;}
.y180{bottom:237.440000pt;}
.y197{bottom:237.760000pt;}
.y16c{bottom:238.720000pt;}
.y101{bottom:239.680000pt;}
.y14a{bottom:240.960000pt;}
.y23{bottom:241.920000pt;}
.y123{bottom:248.320000pt;}
.yb2{bottom:251.520000pt;}
.y4f{bottom:252.480000pt;}
.y82{bottom:253.120000pt;}
.y15b{bottom:254.400000pt;}
.yd8{bottom:254.720000pt;}
.yfc{bottom:255.680000pt;}
.y17f{bottom:256.320000pt;}
.y16b{bottom:257.280000pt;}
.y22{bottom:258.560000pt;}
.y149{bottom:259.200000pt;}
.y15c{bottom:259.840000pt;}
.yfd{bottom:261.120000pt;}
.y122{bottom:266.880000pt;}
.y4e{bottom:269.120000pt;}
.yc2{bottom:269.760000pt;}
.yb1{bottom:270.080000pt;}
.y72{bottom:270.400000pt;}
.y97{bottom:271.040000pt;}
.y81{bottom:271.360000pt;}
.y196{bottom:272.000000pt;}
.yd7{bottom:272.960000pt;}
.yfb{bottom:274.560000pt;}
.yc3{bottom:275.200000pt;}
.y21{bottom:275.520000pt;}
.y16a{bottom:275.840000pt;}
.y148{bottom:277.760000pt;}
.y121{bottom:285.120000pt;}
.y4d{bottom:285.440000pt;}
.yc1{bottom:288.320000pt;}
.yaf{bottom:288.640000pt;}
.y71{bottom:288.960000pt;}
.y96{bottom:289.280000pt;}
.y80{bottom:289.920000pt;}
.y195{bottom:290.560000pt;}
.yd6{bottom:291.520000pt;}
.y20{bottom:292.480000pt;}
.yfa{bottom:292.800000pt;}
.yb0{bottom:294.080000pt;}
.y147{bottom:296.000000pt;}
.y120{bottom:303.680000pt;}
.y4c{bottom:306.880000pt;}
.y1f{bottom:307.200000pt;}
.y95{bottom:307.840000pt;}
.y7f{bottom:308.160000pt;}
.y17e{bottom:308.800000pt;}
.yd5{bottom:309.760000pt;}
.yf9{bottom:311.360000pt;}
.y146{bottom:314.560000pt;}
.y1e{bottom:321.600000pt;}
.y11f{bottom:321.920000pt;}
.y194{bottom:324.800000pt;}
.y4b{bottom:325.120000pt;}
.y70{bottom:325.760000pt;}
.y94{bottom:326.080000pt;}
.y7e{bottom:326.720000pt;}
.y17d{bottom:327.360000pt;}
.yd4{bottom:328.320000pt;}
.yf8{bottom:329.600000pt;}
.y145{bottom:332.800000pt;}
.y1d{bottom:338.560000pt;}
.y11e{bottom:340.480000pt;}
.y193{bottom:343.360000pt;}
.y4a{bottom:343.680000pt;}
.y6f{bottom:344.000000pt;}
.y93{bottom:344.640000pt;}
.y7d{bottom:344.960000pt;}
.yd3{bottom:346.560000pt;}
.y169{bottom:346.880000pt;}
.yf7{bottom:348.160000pt;}
.y144{bottom:351.360000pt;}
.y1c{bottom:355.520000pt;}
.y11d{bottom:358.720000pt;}
.y17c{bottom:361.600000pt;}
.y49{bottom:361.920000pt;}
.y6e{bottom:362.560000pt;}
.y92{bottom:362.880000pt;}
.y7c{bottom:363.520000pt;}
.yd2{bottom:365.120000pt;}
.y168{bottom:365.440000pt;}
.yf6{bottom:366.400000pt;}
.y143{bottom:369.600000pt;}
.y1b{bottom:372.480000pt;}
.y11c{bottom:377.280000pt;}
.y192{bottom:377.600000pt;}
.y17b{bottom:380.160000pt;}
.y48{bottom:380.480000pt;}
.y6d{bottom:380.800000pt;}
.y91{bottom:381.440000pt;}
.y7b{bottom:381.760000pt;}
.yd1{bottom:383.360000pt;}
.y167{bottom:383.680000pt;}
.yf5{bottom:384.960000pt;}
.y142{bottom:387.840000pt;}
.y1a{bottom:389.120000pt;}
.y11b{bottom:395.520000pt;}
.y191{bottom:396.160000pt;}
.y47{bottom:398.720000pt;}
.y6b{bottom:399.360000pt;}
.y90{bottom:399.680000pt;}
.y7a{bottom:400.320000pt;}
.yd0{bottom:401.920000pt;}
.yf3{bottom:403.200000pt;}
.y6c{bottom:404.800000pt;}
.y19{bottom:406.080000pt;}
.y141{bottom:406.400000pt;}
.yf4{bottom:408.640000pt;}
.y11a{bottom:414.080000pt;}
.y17a{bottom:414.400000pt;}
.y190{bottom:414.720000pt;}
.y46{bottom:417.280000pt;}
.yae{bottom:417.600000pt;}
.y166{bottom:417.920000pt;}
.y6a{bottom:418.240000pt;}
.y79{bottom:418.560000pt;}
.ycf{bottom:420.160000pt;}
.yf2{bottom:421.760000pt;}
.y18{bottom:423.040000pt;}
.y140{bottom:424.640000pt;}
.y119{bottom:432.320000pt;}
.y179{bottom:432.960000pt;}
.y45{bottom:435.520000pt;}
.yad{bottom:436.160000pt;}
.y69{bottom:436.480000pt;}
.y78{bottom:437.120000pt;}
.yce{bottom:438.720000pt;}
.y17{bottom:440.000000pt;}
.y13f{bottom:443.200000pt;}
.y18f{bottom:448.640000pt;}
.y118{bottom:450.880000pt;}
.y178{bottom:451.520000pt;}
.y44{bottom:454.080000pt;}
.yac{bottom:454.400000pt;}
.y68{bottom:455.040000pt;}
.y77{bottom:455.360000pt;}
.y16{bottom:456.640000pt;}
.ycd{bottom:456.960000pt;}
.yf1{bottom:458.560000pt;}
.y13e{bottom:461.440000pt;}
.y18e{bottom:467.520000pt;}
.y117{bottom:469.120000pt;}
.y177{bottom:469.760000pt;}
.y43{bottom:472.320000pt;}
.yab{bottom:472.960000pt;}
.y15{bottom:473.280000pt;}
.y76{bottom:473.920000pt;}
.ycc{bottom:475.520000pt;}
.yf0{bottom:476.800000pt;}
.y13d{bottom:480.000000pt;}
.y18d{bottom:485.760000pt;}
.y116{bottom:487.680000pt;}
.y14{bottom:488.640000pt;}
.y41{bottom:490.880000pt;}
.yaa{bottom:491.200000pt;}
.y66{bottom:491.840000pt;}
.y75{bottom:492.160000pt;}
.ycb{bottom:493.760000pt;}
.yef{bottom:495.360000pt;}
.y42{bottom:496.320000pt;}
.y67{bottom:497.280000pt;}
.y13c{bottom:498.240000pt;}
.y13{bottom:504.000000pt;}
.y115{bottom:505.920000pt;}
.ybf{bottom:509.440000pt;}
.y40{bottom:509.760000pt;}
.y8f{bottom:510.080000pt;}
.y65{bottom:510.720000pt;}
.yca{bottom:512.320000pt;}
.yee{bottom:513.600000pt;}
.yc0{bottom:514.880000pt;}
.y13b{bottom:516.800000pt;}
.y12{bottom:519.360000pt;}
.y18c{bottom:520.000000pt;}
.y114{bottom:524.480000pt;}
.y3f{bottom:528.000000pt;}
.y8e{bottom:528.640000pt;}
.y64{bottom:528.960000pt;}
.yc9{bottom:530.560000pt;}
.yed{bottom:532.160000pt;}
.y11{bottom:534.720000pt;}
.y139{bottom:535.360000pt;}
.y176{bottom:538.240000pt;}
.y18b{bottom:538.560000pt;}
.y13a{bottom:540.800000pt;}
.y113{bottom:542.720000pt;}
.y3e{bottom:546.560000pt;}
.y8d{bottom:546.880000pt;}
.y63{bottom:547.520000pt;}
.yc8{bottom:549.120000pt;}
.y10{bottom:550.080000pt;}
.yec{bottom:550.400000pt;}
.y138{bottom:553.920000pt;}
.y175{bottom:557.120000pt;}
.y112{bottom:561.280000pt;}
.y3d{bottom:564.800000pt;}
.ya8{bottom:565.120000pt;}
.yf{bottom:565.440000pt;}
.y62{bottom:565.760000pt;}
.yc7{bottom:567.360000pt;}
.yeb{bottom:568.960000pt;}
.ya9{bottom:570.560000pt;}
.y8c{bottom:570.880000pt;}
.y137{bottom:572.480000pt;}
.y18a{bottom:572.800000pt;}
.y111{bottom:579.200000pt;}
.ye{bottom:580.480000pt;}
.y3c{bottom:583.360000pt;}
.ya3{bottom:583.680000pt;}
.y61{bottom:584.320000pt;}
.y15a{bottom:585.280000pt;}
.yc6{bottom:585.920000pt;}
.yea{bottom:587.200000pt;}
.y136{bottom:590.720000pt;}
.y174{bottom:591.040000pt;}
.y189{bottom:591.360000pt;}
.yd{bottom:595.840000pt;}
.y110{bottom:596.160000pt;}
.y3b{bottom:601.600000pt;}
.ya2{bottom:602.240000pt;}
.y60{bottom:602.560000pt;}
.yc5{bottom:603.840000pt;}
.y154{bottom:604.160000pt;}
.ye9{bottom:605.760000pt;}
.y19d{bottom:607.040000pt;}
.y135{bottom:609.280000pt;}
.y173{bottom:609.920000pt;}
.yc{bottom:611.200000pt;}
.y10f{bottom:612.800000pt;}
.y39{bottom:620.160000pt;}
.ya1{bottom:620.480000pt;}
.y5f{bottom:621.120000pt;}
.y153{bottom:622.720000pt;}
.ye8{bottom:624.000000pt;}
.y3a{bottom:625.600000pt;}
.y19c{bottom:625.920000pt;}
.yb{bottom:627.520000pt;}
.y172{bottom:628.160000pt;}
.y10e{bottom:629.760000pt;}
.ybe{bottom:638.400000pt;}
.y38{bottom:639.040000pt;}
.y5e{bottom:639.360000pt;}
.y152{bottom:640.960000pt;}
.ye7{bottom:642.560000pt;}
.y188{bottom:643.840000pt;}
.y19b{bottom:644.160000pt;}
.y134{bottom:646.080000pt;}
.y10d{bottom:646.720000pt;}
.ybd{bottom:656.960000pt;}
.y37{bottom:657.280000pt;}
.y5d{bottom:657.920000pt;}
.ya{bottom:658.880000pt;}
.y151{bottom:659.200000pt;}
.ye6{bottom:660.800000pt;}
.y171{bottom:662.400000pt;}
.y187{bottom:662.720000pt;}
.y10c{bottom:663.360000pt;}
.y133{bottom:664.320000pt;}
.ybc{bottom:675.200000pt;}
.y36{bottom:675.840000pt;}
.y5c{bottom:676.160000pt;}
.y150{bottom:677.760000pt;}
.ye5{bottom:679.360000pt;}
.y10b{bottom:680.320000pt;}
.y170{bottom:680.960000pt;}
.y132{bottom:682.880000pt;}
.y9{bottom:683.200000pt;}
.ybb{bottom:693.760000pt;}
.y35{bottom:694.080000pt;}
.y9f{bottom:694.400000pt;}
.y5b{bottom:694.720000pt;}
.y14f{bottom:696.000000pt;}
.y186{bottom:696.640000pt;}
.y10a{bottom:697.280000pt;}
.ye4{bottom:697.600000pt;}
.ya0{bottom:699.840000pt;}
.y131{bottom:701.120000pt;}
.y8{bottom:707.840000pt;}
.yb9{bottom:712.320000pt;}
.y33{bottom:712.640000pt;}
.y5a{bottom:712.960000pt;}
.y109{bottom:713.920000pt;}
.y16f{bottom:715.200000pt;}
.y185{bottom:715.520000pt;}
.ye3{bottom:716.160000pt;}
.yba{bottom:717.760000pt;}
.y34{bottom:718.080000pt;}
.y130{bottom:719.040000pt;}
.y165{bottom:730.880000pt;}
.yb7{bottom:731.200000pt;}
.y32{bottom:731.520000pt;}
.y7{bottom:732.160000pt;}
.y16e{bottom:733.760000pt;}
.ye2{bottom:734.080000pt;}
.y12f{bottom:736.000000pt;}
.yb8{bottom:736.640000pt;}
.y164{bottom:749.440000pt;}
.y31{bottom:749.760000pt;}
.ye1{bottom:750.720000pt;}
.y12d{bottom:753.600000pt;}
.y6{bottom:756.800000pt;}
.y12e{bottom:759.040000pt;}
.y163{bottom:767.680000pt;}
.y16d{bottom:768.000000pt;}
.y30{bottom:768.320000pt;}
.y12c{bottom:770.880000pt;}
.y5{bottom:781.440000pt;}
.y161{bottom:786.240000pt;}
.y2f{bottom:786.560000pt;}
.y12b{bottom:787.520000pt;}
.y162{bottom:791.680000pt;}
.y2e{bottom:817.280000pt;}
.y1{bottom:822.720000pt;}
.y2d{bottom:832.640000pt;}
.he{height:23.355000pt;}
.hc{height:24.740625pt;}
.h10{height:28.545000pt;}
.h8{height:33.083750pt;}
.h3{height:33.772500pt;}
.h9{height:34.888750pt;}
.h6{height:37.353750pt;}
.h11{height:39.243750pt;}
.h2{height:40.048750pt;}
.h7{height:40.911250pt;}
.ha{height:43.343750pt;}
.hf{height:45.475000pt;}
.h5{height:56.156250pt;}
.hd{height:56.312500pt;}
.h4{height:59.546250pt;}
.hb{height:884.000000pt;}
.h0{height:907.200000pt;}
.h1{height:907.333333pt;}
.w2{width:618.600000pt;}
.w0{width:642.600000pt;}
.w1{width:642.666667pt;}
.x0{left:0.000000pt;}
.x4{left:24.000000pt;}
.xc{left:61.120000pt;}
.x1{left:85.120128pt;}
.x12{left:89.600256pt;}
.xd{left:91.840160pt;}
.x1f{left:94.080064pt;}
.x26{left:104.053376pt;}
.x1b{left:105.600000pt;}
.x3{left:113.453472pt;}
.x27{left:122.986656pt;}
.x39{left:133.120128pt;}
.x15{left:136.320000pt;}
.x28{left:137.600000pt;}
.x1c{left:139.157536pt;}
.x5{left:150.400000pt;}
.x16{left:165.129248pt;}
.x9{left:166.080000pt;}
.x29{left:172.421888pt;}
.x13{left:175.360000pt;}
.x23{left:176.640000pt;}
.x6{left:179.286464pt;}
.x22{left:184.077472pt;}
.xa{left:194.803040pt;}
.x19{left:199.040000pt;}
.x14{left:204.254880pt;}
.x2a{left:207.360000pt;}
.x24{left:210.137056pt;}
.x20{left:223.040000pt;}
.x1a{left:227.693664pt;}
.x7{left:237.440000pt;}
.x2b{left:240.804352pt;}
.x21{left:256.691072pt;}
.x8{left:266.310848pt;}
.x38{left:272.732416pt;}
.xb{left:277.120128pt;}
.x10{left:293.760000pt;}
.x17{left:301.120000pt;}
.x2c{left:306.240000pt;}
.xe{left:308.480000pt;}
.x11{left:322.555680pt;}
.x18{left:330.025728pt;}
.xf{left:337.328448pt;}
.x2d{left:339.704096pt;}
.x30{left:341.440000pt;}
.x25{left:363.798720pt;}
.x31{left:375.062400pt;}
.x34{left:380.800000pt;}
.x2e{left:406.400000pt;}
.x35{left:414.555520pt;}
.x1d{left:416.320000pt;}
.x2f{left:440.006720pt;}
.x36{left:442.560000pt;}
.x1e{left:449.920640pt;}
.x37{left:476.228160pt;}
.x32{left:496.320000pt;}
.x33{left:529.851520pt;}
.x2{left:557.586560pt;}
}




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