
    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_44ab2ef4ff2bc355e74aa6bc.woff')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_0a7d4d02c668c79b41aefa3e.woff')format("woff");}.ff2{font-family:ff2;line-height:1.065430;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_08673444810edfbe898fee0a.woff')format("woff");}.ff3{font-family:ff3;line-height:1.109375;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_187bcc9dd14fdddbad145eb3.woff')format("woff");}.ff4{font-family:ff4;line-height:1.064941;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_1317c04096276534341917da.woff')format("woff");}.ff5{font-family:ff5;line-height:0.850586;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_029fb636426607dcae0552fa.woff')format("woff");}.ff6{font-family:ff6;line-height:1.435059;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_0ff8b6079b4b2e8bff5b6641.woff')format("woff");}.ff7{font-family:ff7;line-height:1.402354;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_c14c58ffc2f88dde8593904f.woff')format("woff");}.ff8{font-family:ff8;line-height:1.109375;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);}
.v1{vertical-align:-20.880000px;}
.v3{vertical-align:-15.120000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:15.120000px;}
.ls48{letter-spacing:-1.704000px;}
.ls4f{letter-spacing:-1.686000px;}
.ls3d{letter-spacing:-1.626000px;}
.ls4e{letter-spacing:-1.476000px;}
.ls44{letter-spacing:-1.458000px;}
.ls45{letter-spacing:-1.452000px;}
.ls4d{letter-spacing:-1.446000px;}
.ls50{letter-spacing:-1.386000px;}
.ls3c{letter-spacing:-1.266000px;}
.ls39{letter-spacing:-1.260000px;}
.ls21{letter-spacing:-0.513600px;}
.ls1d{letter-spacing:-0.485400px;}
.ls1c{letter-spacing:-0.399000px;}
.ls2a{letter-spacing:-0.368400px;}
.ls2c{letter-spacing:-0.367800px;}
.ls35{letter-spacing:-0.305400px;}
.ls38{letter-spacing:-0.285600px;}
.ls2e{letter-spacing:-0.254400px;}
.ls41{letter-spacing:-0.244200px;}
.ls18{letter-spacing:-0.243600px;}
.ls5f{letter-spacing:-0.240600px;}
.ls3e{letter-spacing:-0.226800px;}
.ls2f{letter-spacing:-0.199200px;}
.ls11{letter-spacing:-0.186600px;}
.ls16{letter-spacing:-0.178800px;}
.ls1e{letter-spacing:-0.160800px;}
.ls14{letter-spacing:-0.153600px;}
.lsc{letter-spacing:-0.135000px;}
.ls17{letter-spacing:-0.125400px;}
.ls2d{letter-spacing:-0.124200px;}
.ls12{letter-spacing:-0.121200px;}
.ls67{letter-spacing:-0.117600px;}
.ls56{letter-spacing:-0.096600px;}
.ls5e{letter-spacing:-0.092400px;}
.lsb{letter-spacing:-0.090000px;}
.lsf{letter-spacing:-0.084600px;}
.ls69{letter-spacing:-0.078000px;}
.ls53{letter-spacing:-0.063600px;}
.ls42{letter-spacing:-0.048960px;}
.ls13{letter-spacing:-0.039000px;}
.ls3f{letter-spacing:-0.038880px;}
.ls58{letter-spacing:-0.037800px;}
.ls6a{letter-spacing:-0.018360px;}
.ls64{letter-spacing:-0.015480px;}
.ls24{letter-spacing:-0.014760px;}
.ls51{letter-spacing:-0.013320px;}
.ls1f{letter-spacing:-0.011160px;}
.ls63{letter-spacing:-0.009000px;}
.ls23{letter-spacing:-0.008280px;}
.ls2b{letter-spacing:-0.007560px;}
.ls9{letter-spacing:0.000000px;}
.ls28{letter-spacing:0.020160px;}
.ls60{letter-spacing:0.024120px;}
.ls6b{letter-spacing:0.037440px;}
.ls19{letter-spacing:0.045360px;}
.ls68{letter-spacing:0.047520px;}
.ls1a{letter-spacing:0.048960px;}
.ls57{letter-spacing:0.051840px;}
.ls5b{letter-spacing:0.053280px;}
.ls34{letter-spacing:0.054720px;}
.ls62{letter-spacing:0.060600px;}
.ls25{letter-spacing:0.064800px;}
.ls6{letter-spacing:0.065520px;}
.ls40{letter-spacing:0.068400px;}
.ls52{letter-spacing:0.069600px;}
.ls7{letter-spacing:0.074160px;}
.ls37{letter-spacing:0.074400px;}
.ls4c{letter-spacing:0.085200px;}
.ls4{letter-spacing:0.088800px;}
.ls2{letter-spacing:0.090000px;}
.ls1{letter-spacing:0.093600px;}
.ls5d{letter-spacing:0.097800px;}
.ls46{letter-spacing:0.098400px;}
.lsd{letter-spacing:0.099600px;}
.ls47{letter-spacing:0.114600px;}
.ls54{letter-spacing:0.115800px;}
.ls20{letter-spacing:0.116400px;}
.ls3b{letter-spacing:0.119160px;}
.ls55{letter-spacing:0.119400px;}
.ls3a{letter-spacing:0.133200px;}
.ls4b{letter-spacing:0.138600px;}
.ls8{letter-spacing:0.143400px;}
.lsa{letter-spacing:0.144000px;}
.ls43{letter-spacing:0.160800px;}
.ls10{letter-spacing:0.173400px;}
.ls5{letter-spacing:0.174600px;}
.ls15{letter-spacing:0.181200px;}
.ls22{letter-spacing:0.199200px;}
.ls33{letter-spacing:0.206640px;}
.ls61{letter-spacing:0.296400px;}
.ls0{letter-spacing:0.360000px;}
.ls36{letter-spacing:0.453600px;}
.lse{letter-spacing:0.459600px;}
.ls49{letter-spacing:0.474600px;}
.ls1b{letter-spacing:1.173600px;}
.ls30{letter-spacing:1.533600px;}
.ls32{letter-spacing:2.253600px;}
.ls31{letter-spacing:2.613600px;}
.ls3{letter-spacing:3.506400px;}
.ls66{letter-spacing:3.693600px;}
.ls65{letter-spacing:4.053600px;}
.ls29{letter-spacing:4.773600px;}
.ls27{letter-spacing:8.373600px;}
.ls5c{letter-spacing:8.733600px;}
.ls59{letter-spacing:47.726640px;}
.ls26{letter-spacing:63.566640px;}
.ls5a{letter-spacing:65.253600px;}
.ls4a{letter-spacing:80.846640px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc1{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.ws2{word-spacing:-18.553200px;}
.ws3{word-spacing:-18.542400px;}
.wsb{word-spacing:-14.493600px;}
.ws18{word-spacing:-14.372400px;}
.ws49{word-spacing:-13.522800px;}
.ws1b{word-spacing:-13.425600px;}
.wse{word-spacing:-13.407600px;}
.ws6{word-spacing:-13.399800px;}
.ws30{word-spacing:-13.387200px;}
.ws8{word-spacing:-13.369800px;}
.ws3f{word-spacing:-13.365000px;}
.ws29{word-spacing:-13.359600px;}
.ws3e{word-spacing:-13.345800px;}
.ws17{word-spacing:-13.342800px;}
.ws3d{word-spacing:-13.342200px;}
.ws9{word-spacing:-13.326000px;}
.ws34{word-spacing:-13.324800px;}
.ws45{word-spacing:-13.324200px;}
.ws41{word-spacing:-13.311600px;}
.ws28{word-spacing:-13.300800px;}
.ws3c{word-spacing:-13.296000px;}
.ws2d{word-spacing:-13.294800px;}
.ws4a{word-spacing:-13.287000px;}
.ws25{word-spacing:-13.281120px;}
.ws4d{word-spacing:-13.279680px;}
.ws43{word-spacing:-13.278240px;}
.ws19{word-spacing:-13.275360px;}
.ws4f{word-spacing:-13.273920px;}
.ws48{word-spacing:-13.250520px;}
.ws23{word-spacing:-13.246560px;}
.ws5{word-spacing:-13.226400px;}
.ws1f{word-spacing:-13.218840px;}
.ws1c{word-spacing:-13.218120px;}
.ws4b{word-spacing:-13.217400px;}
.ws16{word-spacing:-13.215240px;}
.ws3b{word-spacing:-13.213080px;}
.ws1d{word-spacing:-13.211640px;}
.ws4c{word-spacing:-13.210920px;}
.ws51{word-spacing:-13.208040px;}
.ws44{word-spacing:-13.188600px;}
.ws2c{word-spacing:-13.187520px;}
.wsc{word-spacing:-13.187400px;}
.ws2f{word-spacing:-13.177440px;}
.ws42{word-spacing:-13.162800px;}
.ws50{word-spacing:-13.148400px;}
.ws46{word-spacing:-13.134000px;}
.ws40{word-spacing:-13.129800px;}
.ws4e{word-spacing:-13.108800px;}
.ws21{word-spacing:-13.102200px;}
.ws10{word-spacing:-13.101000px;}
.wsd{word-spacing:-13.072800px;}
.ws15{word-spacing:-13.065600px;}
.wsf{word-spacing:-13.047600px;}
.ws7{word-spacing:-13.039800px;}
.ws24{word-spacing:-13.027200px;}
.ws47{word-spacing:-12.985800px;}
.ws11{word-spacing:-12.982800px;}
.ws2e{word-spacing:-12.982200px;}
.ws22{word-spacing:-12.972000px;}
.ws27{word-spacing:-12.940800px;}
.ws26{word-spacing:-12.921000px;}
.ws20{word-spacing:-12.858600px;}
.ws1e{word-spacing:-12.858000px;}
.ws13{word-spacing:-12.827400px;}
.ws14{word-spacing:-12.741000px;}
.ws1a{word-spacing:-12.712800px;}
.ws2a{word-spacing:-11.960400px;}
.ws3a{word-spacing:-11.840400px;}
.ws37{word-spacing:-11.780400px;}
.ws32{word-spacing:-11.774400px;}
.ws31{word-spacing:-11.768400px;}
.ws38{word-spacing:-11.750400px;}
.ws2b{word-spacing:-11.600400px;}
.ws39{word-spacing:-11.540400px;}
.ws33{word-spacing:-11.522400px;}
.ws35{word-spacing:-11.008200px;}
.ws36{word-spacing:-10.648200px;}
.ws0{word-spacing:-9.810000px;}
.ws1{word-spacing:-9.765000px;}
.ws4{word-spacing:-8.553600px;}
.ws12{word-spacing:0.000000px;}
.wsa{word-spacing:4.304880px;}
._e{margin-left:-5.750403px;}
._12{margin-left:-4.746597px;}
._d{margin-left:-3.727200px;}
._6{margin-left:-2.476080px;}
._4{margin-left:-1.283160px;}
._2{width:1.142520px;}
._5{width:2.305440px;}
._1{width:3.323280px;}
._0{width:4.657800px;}
._9{width:6.012000px;}
._a{width:7.034880px;}
._b{width:8.536800px;}
._f{width:9.979320px;}
._16{width:11.001960px;}
._14{width:12.046442px;}
._3{width:14.484960px;}
._10{width:15.755400px;}
._11{width:17.085120px;}
._c{width:18.396600px;}
._15{width:20.080080px;}
._13{width:21.943800px;}
._8{width:24.491160px;}
._7{width:25.553520px;}
._17{width:33.426720px;}
._18{width:34.533480px;}
._1d{width:40.191600px;}
._1e{width:41.283840px;}
._1f{width:42.367800px;}
._1c{width:64.529761px;}
._1a{width:65.778240px;}
._1b{width:67.424400px;}
._19{width:100.822080px;}
._20{width:120.240000px;}
._22{width:170.821560px;}
._21{width:171.883080px;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs0{font-size:38.880000px;}
.fs6{font-size:42.120000px;}
.fs3{font-size:45.000000px;}
.fs7{font-size:47.880000px;}
.fs2{font-size:54.000000px;}
.fs1{font-size:60.120000px;}
.fs5{font-size:65.880000px;}
.fs4{font-size:83.880000px;}
.y0{bottom:0.000000px;}
.ya5{bottom:7.830000px;}
.y11a{bottom:7.860000px;}
.ya7{bottom:7.920000px;}
.ye3{bottom:7.950000px;}
.y12d{bottom:8.190000px;}
.y130{bottom:8.730000px;}
.y134{bottom:9.090000px;}
.y136{bottom:9.180000px;}
.y132{bottom:9.210000px;}
.yac{bottom:9.270000px;}
.y139{bottom:12.510000px;}
.y13d{bottom:13.410000px;}
.y2{bottom:73.380000px;}
.y2b{bottom:74.190000px;}
.y1{bottom:101.640000px;}
.y157{bottom:114.690000px;}
.yf5{bottom:118.200000px;}
.y104{bottom:121.530000px;}
.ycd{bottom:128.460000px;}
.y12b{bottom:129.720000px;}
.y77{bottom:130.800000px;}
.y17e{bottom:133.680000px;}
.yf4{bottom:135.840000px;}
.y47{bottom:138.990000px;}
.y103{bottom:139.080000px;}
.y29{bottom:141.240000px;}
.ycc{bottom:146.100000px;}
.y12a{bottom:147.270000px;}
.y76{bottom:148.440000px;}
.y17d{bottom:151.320000px;}
.y102{bottom:156.720000px;}
.y28{bottom:158.790000px;}
.y156{bottom:158.880000px;}
.ycb{bottom:163.650000px;}
.y129{bottom:164.820000px;}
.y75{bottom:165.990000px;}
.yf3{bottom:171.390000px;}
.y101{bottom:174.270000px;}
.y46{bottom:174.630000px;}
.y27{bottom:176.340000px;}
.y17c{bottom:177.870000px;}
.yca{bottom:181.290000px;}
.y128{bottom:182.460000px;}
.y74{bottom:183.540000px;}
.y155{bottom:185.430000px;}
.yf2{bottom:189.030000px;}
.y45{bottom:192.180000px;}
.y26{bottom:193.980000px;}
.y17b{bottom:195.510000px;}
.yc9{bottom:198.840000px;}
.y127{bottom:200.010000px;}
.y73{bottom:201.180000px;}
.y154{bottom:203.070000px;}
.ya1{bottom:204.060000px;}
.yf1{bottom:206.580000px;}
.y100{bottom:209.190000px;}
.y44{bottom:209.730000px;}
.y25{bottom:211.530000px;}
.yc8{bottom:216.390000px;}
.y126{bottom:217.650000px;}
.y72{bottom:218.730000px;}
.y17a{bottom:222.060000px;}
.yff{bottom:223.230000px;}
.yf0{bottom:224.130000px;}
.y43{bottom:227.370000px;}
.y24{bottom:229.170000px;}
.y153{bottom:229.620000px;}
.yc7{bottom:234.030000px;}
.y125{bottom:235.200000px;}
.yfe{bottom:237.270000px;}
.ya0{bottom:239.610000px;}
.yef{bottom:241.770000px;}
.y42{bottom:244.920000px;}
.y71{bottom:245.370000px;}
.y23{bottom:246.720000px;}
.yfd{bottom:249.510000px;}
.y124{bottom:252.750000px;}
.y152{bottom:256.170000px;}
.yee{bottom:259.320000px;}
.y41{bottom:262.560000px;}
.y22{bottom:264.270000px;}
.y179{bottom:266.250000px;}
.yc6{bottom:269.580000px;}
.y123{bottom:270.390000px;}
.y151{bottom:273.810000px;}
.y9f{bottom:275.250000px;}
.yfc{bottom:276.780000px;}
.yed{bottom:276.870000px;}
.y40{bottom:280.110000px;}
.y70{bottom:280.920000px;}
.y21{bottom:281.910000px;}
.y178{bottom:283.800000px;}
.yc5{bottom:287.220000px;}
.y122{bottom:287.940000px;}
.yec{bottom:294.510000px;}
.y3f{bottom:297.660000px;}
.y6f{bottom:298.470000px;}
.y20{bottom:299.460000px;}
.y150{bottom:300.360000px;}
.y9e{bottom:301.800000px;}
.yfb{bottom:304.140000px;}
.yc4{bottom:304.770000px;}
.y121{bottom:305.580000px;}
.y177{bottom:310.440000px;}
.yeb{bottom:312.060000px;}
.y6e{bottom:316.110000px;}
.y14f{bottom:318.000000px;}
.yc3{bottom:322.320000px;}
.y120{bottom:323.130000px;}
.y3e{bottom:324.300000px;}
.y1f{bottom:326.370000px;}
.y176{bottom:327.990000px;}
.yea{bottom:329.700000px;}
.yfa{bottom:331.500000px;}
.y6d{bottom:333.660000px;}
.y14e{bottom:335.550000px;}
.y9d{bottom:337.440000px;}
.yc2{bottom:339.960000px;}
.y175{bottom:345.540000px;}
.ye9{bottom:347.250000px;}
.y6c{bottom:351.300000px;}
.y9c{bottom:354.990000px;}
.yc1{bottom:357.510000px;}
.y11f{bottom:357.960000px;}
.yf9{bottom:358.770000px;}
.y3d{bottom:359.850000px;}
.y14d{bottom:362.460000px;}
.ye8{bottom:364.800000px;}
.y6b{bottom:368.850000px;}
.y11e{bottom:372.090000px;}
.y174{bottom:372.180000px;}
.y9b{bottom:372.540000px;}
.y1e{bottom:374.970000px;}
.yc0{bottom:375.150000px;}
.ye7{bottom:382.440000px;}
.y11d{bottom:384.240000px;}
.yf8{bottom:386.130000px;}
.y6a{bottom:386.400000px;}
.y173{bottom:389.730000px;}
.y9a{bottom:390.180000px;}
.y3c{bottom:392.070000px;}
.ybf{bottom:392.700000px;}
.ye6{bottom:399.990000px;}
.y69{bottom:404.040000px;}
.y172{bottom:407.370000px;}
.y99{bottom:407.730000px;}
.ybe{bottom:410.250000px;}
.y14c{bottom:410.700000px;}
.y11c{bottom:411.600000px;}
.y1d{bottom:412.050000px;}
.yf7{bottom:413.490000px;}
.ye5{bottom:417.630000px;}
.y68{bottom:421.590000px;}
.y98{bottom:425.370000px;}
.ybd{bottom:427.890000px;}
.y1c{bottom:429.600000px;}
.y171{bottom:433.920000px;}
.ye4{bottom:435.180000px;}
.y14b{bottom:437.610000px;}
.y11b{bottom:438.870000px;}
.y67{bottom:439.230000px;}
.yf6{bottom:440.850000px;}
.y97{bottom:442.920000px;}
.ybc{bottom:445.440000px;}
.y1b{bottom:447.150000px;}
.y170{bottom:451.470000px;}
.y66{bottom:456.780000px;}
.y96{bottom:460.470000px;}
.ybb{bottom:463.080000px;}
.y1a{bottom:464.790000px;}
.y119{bottom:466.230000px;}
.ye2{bottom:468.120000px;}
.y16f{bottom:469.110000px;}
.y14a{bottom:474.720000px;}
.y95{bottom:478.140000px;}
.yba{bottom:480.660000px;}
.y19{bottom:482.370000px;}
.y65{bottom:483.360000px;}
.y149{bottom:492.270000px;}
.y118{bottom:493.620000px;}
.ye1{bottom:495.510000px;}
.y16e{bottom:495.690000px;}
.yb9{bottom:498.210000px;}
.y18{bottom:499.920000px;}
.y94{bottom:504.690000px;}
.y16d{bottom:513.330000px;}
.y17{bottom:517.560000px;}
.y64{bottom:519.000000px;}
.y148{bottom:519.180000px;}
.y117{bottom:520.980000px;}
.ye0{bottom:522.870000px;}
.yb8{bottom:531.240000px;}
.y16{bottom:535.110000px;}
.y63{bottom:536.550000px;}
.y16c{bottom:539.880000px;}
.y93{bottom:540.330000px;}
.y116{bottom:548.250000px;}
.ydf{bottom:550.230000px;}
.y15{bottom:552.750000px;}
.y62{bottom:554.190000px;}
.y147{bottom:556.530000px;}
.y16b{bottom:557.430000px;}
.y92{bottom:557.880000px;}
.yb7{bottom:558.510000px;}
.y14{bottom:570.300000px;}
.y61{bottom:571.740000px;}
.y16a{bottom:575.070000px;}
.y91{bottom:575.430000px;}
.y115{bottom:575.610000px;}
.yde{bottom:577.500000px;}
.yb6{bottom:585.870000px;}
.y13{bottom:587.850000px;}
.y60{bottom:589.290000px;}
.y90{bottom:593.070000px;}
.y169{bottom:601.620000px;}
.y114{bottom:602.970000px;}
.y146{bottom:604.770000px;}
.ydd{bottom:604.860000px;}
.y12{bottom:605.490000px;}
.y5f{bottom:606.930000px;}
.y8f{bottom:610.620000px;}
.yb5{bottom:613.230000px;}
.y168{bottom:619.260000px;}
.y145{bottom:622.410000px;}
.y11{bottom:623.040000px;}
.y5e{bottom:624.480000px;}
.y8e{bottom:628.260000px;}
.y113{bottom:630.240000px;}
.ydc{bottom:632.220000px;}
.y167{bottom:636.810000px;}
.y144{bottom:639.960000px;}
.yb4{bottom:640.590000px;}
.y10{bottom:640.680000px;}
.y5d{bottom:642.120000px;}
.y8d{bottom:645.810000px;}
.y143{bottom:657.510000px;}
.y112{bottom:657.600000px;}
.ydb{bottom:659.490000px;}
.y5c{bottom:659.670000px;}
.y8c{bottom:663.360000px;}
.yf{bottom:667.590000px;}
.yb3{bottom:667.860000px;}
.y142{bottom:675.150000px;}
.y111{bottom:684.960000px;}
.y5b{bottom:686.220000px;}
.yda{bottom:686.850000px;}
.y166{bottom:690.000000px;}
.y141{bottom:692.700000px;}
.yb2{bottom:695.220000px;}
.y8b{bottom:699.000000px;}
.y165{bottom:707.550000px;}
.y140{bottom:710.340000px;}
.y110{bottom:712.320000px;}
.yd9{bottom:714.210000px;}
.ye{bottom:715.830000px;}
.y8a{bottom:716.550000px;}
.y5a{bottom:721.860000px;}
.yb1{bottom:722.580000px;}
.y164{bottom:725.190000px;}
.y13f{bottom:727.890000px;}
.y89{bottom:734.190000px;}
.y59{bottom:739.410000px;}
.y10f{bottom:739.590000px;}
.yd8{bottom:741.570000px;}
.y18b{bottom:743.190000px;}
.yb0{bottom:749.940000px;}
.yd{bottom:751.380000px;}
.y88{bottom:751.740000px;}
.y13e{bottom:754.800000px;}
.y58{bottom:757.050000px;}
.y18a{bottom:760.740000px;}
.y10e{bottom:766.950000px;}
.yd7{bottom:768.840000px;}
.y87{bottom:769.290000px;}
.y57{bottom:774.600000px;}
.yaf{bottom:777.210000px;}
.y86{bottom:786.930000px;}
.yc{bottom:787.200000px;}
.y189{bottom:787.290000px;}
.y56{bottom:792.150000px;}
.y10d{bottom:794.310000px;}
.y163{bottom:795.930000px;}
.yd6{bottom:796.200000px;}
.y13c{bottom:800.430000px;}
.y3b{bottom:800.520000px;}
.y85{bottom:804.480000px;}
.yae{bottom:804.570000px;}
.y188{bottom:804.930000px;}
.y55{bottom:809.790000px;}
.y162{bottom:813.480000px;}
.y3a{bottom:818.070000px;}
.y10c{bottom:821.670000px;}
.y84{bottom:822.030000px;}
.yb{bottom:823.200000px;}
.yd5{bottom:823.560000px;}
.y54{bottom:827.340000px;}
.y187{bottom:831.480000px;}
.yad{bottom:831.930000px;}
.y13b{bottom:833.280000px;}
.y39{bottom:835.620000px;}
.y161{bottom:840.030000px;}
.y53{bottom:844.890000px;}
.ya{bottom:844.980000px;}
.y83{bottom:848.670000px;}
.y10b{bottom:848.940000px;}
.y186{bottom:849.030000px;}
.yd4{bottom:850.920000px;}
.y38{bottom:853.260000px;}
.y160{bottom:857.670000px;}
.y9{bottom:859.200000px;}
.y13a{bottom:861.990000px;}
.y52{bottom:862.530000px;}
.y185{bottom:866.670000px;}
.y10a{bottom:876.300000px;}
.yd3{bottom:878.190000px;}
.y51{bottom:880.080000px;}
.y8{bottom:880.980000px;}
.y82{bottom:884.220000px;}
.yab{bottom:886.560000px;}
.y37{bottom:888.810000px;}
.y138{bottom:889.260000px;}
.y184{bottom:893.220000px;}
.y7{bottom:895.200000px;}
.y50{bottom:897.720000px;}
.y81{bottom:901.860000px;}
.y109{bottom:903.660000px;}
.yd2{bottom:905.550000px;}
.y36{bottom:906.450000px;}
.y183{bottom:910.860000px;}
.y4f{bottom:915.270000px;}
.y6{bottom:916.980000px;}
.y80{bottom:919.410000px;}
.y137{bottom:921.210000px;}
.y35{bottom:924.000000px;}
.y15f{bottom:928.410000px;}
.y108{bottom:930.930000px;}
.yd1{bottom:932.910000px;}
.y7f{bottom:936.960000px;}
.y182{bottom:937.410000px;}
.y34{bottom:941.550000px;}
.y4e{bottom:941.820000px;}
.yaa{bottom:942.630000px;}
.y15e{bottom:945.960000px;}
.y5{bottom:949.290000px;}
.y135{bottom:949.830000px;}
.y7e{bottom:954.600000px;}
.y181{bottom:954.960000px;}
.y107{bottom:958.290000px;}
.y33{bottom:968.190000px;}
.ya9{bottom:969.990000px;}
.y7d{bottom:972.150000px;}
.y15d{bottom:972.600000px;}
.y4d{bottom:977.370000px;}
.y133{bottom:978.450000px;}
.yd0{bottom:981.600000px;}
.y106{bottom:985.650000px;}
.y4{bottom:987.630000px;}
.y7c{bottom:989.790000px;}
.y15c{bottom:990.150000px;}
.y4c{bottom:995.820000px;}
.ya8{bottom:997.260000px;}
.y180{bottom:999.150000px;}
.y32{bottom:1004.100000px;}
.y131{bottom:1007.070000px;}
.y3{bottom:1012.320000px;}
.y4b{bottom:1014.300000px;}
.y15b{bottom:1016.820000px;}
.ycf{bottom:1017.180000px;}
.ya6{bottom:1024.650000px;}
.y7b{bottom:1025.370000px;}
.y4a{bottom:1032.660000px;}
.y105{bottom:1034.370000px;}
.yce{bottom:1034.820000px;}
.y12f{bottom:1035.720000px;}
.y7a{bottom:1042.920000px;}
.y17f{bottom:1043.370000px;}
.ya4{bottom:1052.010000px;}
.y31{bottom:1052.370000px;}
.y79{bottom:1060.560000px;}
.y15a{bottom:1060.920000px;}
.y12e{bottom:1063.890000px;}
.y49{bottom:1069.110000px;}
.y30{bottom:1069.920000px;}
.y159{bottom:1078.560000px;}
.y78{bottom:1087.110000px;}
.y2f{bottom:1087.560000px;}
.y12c{bottom:1091.250000px;}
.y158{bottom:1096.110000px;}
.ya3{bottom:1100.700000px;}
.y48{bottom:1104.750000px;}
.y2e{bottom:1105.110000px;}
.y2d{bottom:1122.750000px;}
.ya2{bottom:1127.610000px;}
.y2c{bottom:1140.300000px;}
.y2a{bottom:1194.300000px;}
.hd{height:26.550000px;}
.h12{height:26.580000px;}
.he{height:26.640000px;}
.hf{height:26.670000px;}
.h13{height:26.910000px;}
.h14{height:27.450000px;}
.h16{height:27.810000px;}
.h17{height:27.900000px;}
.h15{height:27.930000px;}
.h10{height:27.990000px;}
.h2{height:30.022383px;}
.h18{height:31.230000px;}
.h19{height:32.130000px;}
.h6{height:35.782383px;}
.h3{height:40.100098px;}
.h11{height:42.666504px;}
.h7{height:50.902383px;}
.h8{height:53.573730px;}
.h9{height:55.779258px;}
.h5{height:58.706543px;}
.hc{height:61.793886px;}
.hb{height:62.585859px;}
.ha{height:68.582109px;}
.h4{height:74.746582px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.wd{width:52.470000px;}
.we{width:74.070000px;}
.w10{width:76.320000px;}
.w7{width:83.250000px;}
.wc{width:83.280000px;}
.w9{width:84.810000px;}
.w4{width:95.130000px;}
.wa{width:106.560000px;}
.w6{width:114.060000px;}
.w8{width:130.050000px;}
.w11{width:133.050000px;}
.wb{width:150.840000px;}
.w3{width:252.120000px;}
.wf{width:258.210000px;}
.w5{width:305.010000px;}
.w2{width:893.159987px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x9{left:7.740000px;}
.x1{left:68.040000px;}
.x16{left:70.199987px;}
.x11{left:75.959987px;}
.x7{left:95.039987px;}
.x10{left:96.119987px;}
.x1a{left:111.239987px;}
.x12{left:124.109987px;}
.xb{left:194.700000px;}
.x2{left:211.079987px;}
.x8{left:272.640000px;}
.x18{left:299.550000px;}
.x13{left:318.810000px;}
.xe{left:338.880000px;}
.x5{left:372.449987px;}
.x6{left:376.319987px;}
.x17{left:390.899987px;}
.xf{left:469.650000px;}
.xc{left:500.520000px;}
.x19{left:510.450000px;}
.xa{left:525.480000px;}
.x14{left:554.460000px;}
.x15{left:607.740000px;}
.xd{left:615.390000px;}
.x4{left:723.389987px;}
.x3{left:800.339987px;}
@media print{
.v1{vertical-align:-18.560000pt;}
.v3{vertical-align:-13.440000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:13.440000pt;}
.ls48{letter-spacing:-1.514667pt;}
.ls4f{letter-spacing:-1.498667pt;}
.ls3d{letter-spacing:-1.445333pt;}
.ls4e{letter-spacing:-1.312000pt;}
.ls44{letter-spacing:-1.296000pt;}
.ls45{letter-spacing:-1.290667pt;}
.ls4d{letter-spacing:-1.285333pt;}
.ls50{letter-spacing:-1.232000pt;}
.ls3c{letter-spacing:-1.125333pt;}
.ls39{letter-spacing:-1.120000pt;}
.ls21{letter-spacing:-0.456533pt;}
.ls1d{letter-spacing:-0.431467pt;}
.ls1c{letter-spacing:-0.354667pt;}
.ls2a{letter-spacing:-0.327467pt;}
.ls2c{letter-spacing:-0.326933pt;}
.ls35{letter-spacing:-0.271467pt;}
.ls38{letter-spacing:-0.253867pt;}
.ls2e{letter-spacing:-0.226133pt;}
.ls41{letter-spacing:-0.217067pt;}
.ls18{letter-spacing:-0.216533pt;}
.ls5f{letter-spacing:-0.213867pt;}
.ls3e{letter-spacing:-0.201600pt;}
.ls2f{letter-spacing:-0.177067pt;}
.ls11{letter-spacing:-0.165867pt;}
.ls16{letter-spacing:-0.158933pt;}
.ls1e{letter-spacing:-0.142933pt;}
.ls14{letter-spacing:-0.136533pt;}
.lsc{letter-spacing:-0.120000pt;}
.ls17{letter-spacing:-0.111467pt;}
.ls2d{letter-spacing:-0.110400pt;}
.ls12{letter-spacing:-0.107733pt;}
.ls67{letter-spacing:-0.104533pt;}
.ls56{letter-spacing:-0.085867pt;}
.ls5e{letter-spacing:-0.082133pt;}
.lsb{letter-spacing:-0.080000pt;}
.lsf{letter-spacing:-0.075200pt;}
.ls69{letter-spacing:-0.069333pt;}
.ls53{letter-spacing:-0.056533pt;}
.ls42{letter-spacing:-0.043520pt;}
.ls13{letter-spacing:-0.034667pt;}
.ls3f{letter-spacing:-0.034560pt;}
.ls58{letter-spacing:-0.033600pt;}
.ls6a{letter-spacing:-0.016320pt;}
.ls64{letter-spacing:-0.013760pt;}
.ls24{letter-spacing:-0.013120pt;}
.ls51{letter-spacing:-0.011840pt;}
.ls1f{letter-spacing:-0.009920pt;}
.ls63{letter-spacing:-0.008000pt;}
.ls23{letter-spacing:-0.007360pt;}
.ls2b{letter-spacing:-0.006720pt;}
.ls9{letter-spacing:0.000000pt;}
.ls28{letter-spacing:0.017920pt;}
.ls60{letter-spacing:0.021440pt;}
.ls6b{letter-spacing:0.033280pt;}
.ls19{letter-spacing:0.040320pt;}
.ls68{letter-spacing:0.042240pt;}
.ls1a{letter-spacing:0.043520pt;}
.ls57{letter-spacing:0.046080pt;}
.ls5b{letter-spacing:0.047360pt;}
.ls34{letter-spacing:0.048640pt;}
.ls62{letter-spacing:0.053867pt;}
.ls25{letter-spacing:0.057600pt;}
.ls6{letter-spacing:0.058240pt;}
.ls40{letter-spacing:0.060800pt;}
.ls52{letter-spacing:0.061867pt;}
.ls7{letter-spacing:0.065920pt;}
.ls37{letter-spacing:0.066133pt;}
.ls4c{letter-spacing:0.075733pt;}
.ls4{letter-spacing:0.078933pt;}
.ls2{letter-spacing:0.080000pt;}
.ls1{letter-spacing:0.083200pt;}
.ls5d{letter-spacing:0.086933pt;}
.ls46{letter-spacing:0.087467pt;}
.lsd{letter-spacing:0.088533pt;}
.ls47{letter-spacing:0.101867pt;}
.ls54{letter-spacing:0.102933pt;}
.ls20{letter-spacing:0.103467pt;}
.ls3b{letter-spacing:0.105920pt;}
.ls55{letter-spacing:0.106133pt;}
.ls3a{letter-spacing:0.118400pt;}
.ls4b{letter-spacing:0.123200pt;}
.ls8{letter-spacing:0.127467pt;}
.lsa{letter-spacing:0.128000pt;}
.ls43{letter-spacing:0.142933pt;}
.ls10{letter-spacing:0.154133pt;}
.ls5{letter-spacing:0.155200pt;}
.ls15{letter-spacing:0.161067pt;}
.ls22{letter-spacing:0.177067pt;}
.ls33{letter-spacing:0.183680pt;}
.ls61{letter-spacing:0.263467pt;}
.ls0{letter-spacing:0.320000pt;}
.ls36{letter-spacing:0.403200pt;}
.lse{letter-spacing:0.408533pt;}
.ls49{letter-spacing:0.421867pt;}
.ls1b{letter-spacing:1.043200pt;}
.ls30{letter-spacing:1.363200pt;}
.ls32{letter-spacing:2.003200pt;}
.ls31{letter-spacing:2.323200pt;}
.ls3{letter-spacing:3.116800pt;}
.ls66{letter-spacing:3.283200pt;}
.ls65{letter-spacing:3.603200pt;}
.ls29{letter-spacing:4.243200pt;}
.ls27{letter-spacing:7.443200pt;}
.ls5c{letter-spacing:7.763200pt;}
.ls59{letter-spacing:42.423680pt;}
.ls26{letter-spacing:56.503680pt;}
.ls5a{letter-spacing:58.003200pt;}
.ls4a{letter-spacing:71.863680pt;}
.ws2{word-spacing:-16.491733pt;}
.ws3{word-spacing:-16.482133pt;}
.wsb{word-spacing:-12.883200pt;}
.ws18{word-spacing:-12.775467pt;}
.ws49{word-spacing:-12.020267pt;}
.ws1b{word-spacing:-11.933867pt;}
.wse{word-spacing:-11.917867pt;}
.ws6{word-spacing:-11.910933pt;}
.ws30{word-spacing:-11.899733pt;}
.ws8{word-spacing:-11.884267pt;}
.ws3f{word-spacing:-11.880000pt;}
.ws29{word-spacing:-11.875200pt;}
.ws3e{word-spacing:-11.862933pt;}
.ws17{word-spacing:-11.860267pt;}
.ws3d{word-spacing:-11.859733pt;}
.ws9{word-spacing:-11.845333pt;}
.ws34{word-spacing:-11.844267pt;}
.ws45{word-spacing:-11.843733pt;}
.ws41{word-spacing:-11.832533pt;}
.ws28{word-spacing:-11.822933pt;}
.ws3c{word-spacing:-11.818667pt;}
.ws2d{word-spacing:-11.817600pt;}
.ws4a{word-spacing:-11.810667pt;}
.ws25{word-spacing:-11.805440pt;}
.ws4d{word-spacing:-11.804160pt;}
.ws43{word-spacing:-11.802880pt;}
.ws19{word-spacing:-11.800320pt;}
.ws4f{word-spacing:-11.799040pt;}
.ws48{word-spacing:-11.778240pt;}
.ws23{word-spacing:-11.774720pt;}
.ws5{word-spacing:-11.756800pt;}
.ws1f{word-spacing:-11.750080pt;}
.ws1c{word-spacing:-11.749440pt;}
.ws4b{word-spacing:-11.748800pt;}
.ws16{word-spacing:-11.746880pt;}
.ws3b{word-spacing:-11.744960pt;}
.ws1d{word-spacing:-11.743680pt;}
.ws4c{word-spacing:-11.743040pt;}
.ws51{word-spacing:-11.740480pt;}
.ws44{word-spacing:-11.723200pt;}
.ws2c{word-spacing:-11.722240pt;}
.wsc{word-spacing:-11.722133pt;}
.ws2f{word-spacing:-11.713280pt;}
.ws42{word-spacing:-11.700267pt;}
.ws50{word-spacing:-11.687467pt;}
.ws46{word-spacing:-11.674667pt;}
.ws40{word-spacing:-11.670933pt;}
.ws4e{word-spacing:-11.652267pt;}
.ws21{word-spacing:-11.646400pt;}
.ws10{word-spacing:-11.645333pt;}
.wsd{word-spacing:-11.620267pt;}
.ws15{word-spacing:-11.613867pt;}
.wsf{word-spacing:-11.597867pt;}
.ws7{word-spacing:-11.590933pt;}
.ws24{word-spacing:-11.579733pt;}
.ws47{word-spacing:-11.542933pt;}
.ws11{word-spacing:-11.540267pt;}
.ws2e{word-spacing:-11.539733pt;}
.ws22{word-spacing:-11.530667pt;}
.ws27{word-spacing:-11.502933pt;}
.ws26{word-spacing:-11.485333pt;}
.ws20{word-spacing:-11.429867pt;}
.ws1e{word-spacing:-11.429333pt;}
.ws13{word-spacing:-11.402133pt;}
.ws14{word-spacing:-11.325333pt;}
.ws1a{word-spacing:-11.300267pt;}
.ws2a{word-spacing:-10.631467pt;}
.ws3a{word-spacing:-10.524800pt;}
.ws37{word-spacing:-10.471467pt;}
.ws32{word-spacing:-10.466133pt;}
.ws31{word-spacing:-10.460800pt;}
.ws38{word-spacing:-10.444800pt;}
.ws2b{word-spacing:-10.311467pt;}
.ws39{word-spacing:-10.258133pt;}
.ws33{word-spacing:-10.242133pt;}
.ws35{word-spacing:-9.785067pt;}
.ws36{word-spacing:-9.465067pt;}
.ws0{word-spacing:-8.720000pt;}
.ws1{word-spacing:-8.680000pt;}
.ws4{word-spacing:-7.603200pt;}
.ws12{word-spacing:0.000000pt;}
.wsa{word-spacing:3.826560pt;}
._e{margin-left:-5.111470pt;}
._12{margin-left:-4.219197pt;}
._d{margin-left:-3.313066pt;}
._6{margin-left:-2.200960pt;}
._4{margin-left:-1.140587pt;}
._2{width:1.015573pt;}
._5{width:2.049280pt;}
._1{width:2.954027pt;}
._0{width:4.140267pt;}
._9{width:5.344000pt;}
._a{width:6.253227pt;}
._b{width:7.588266pt;}
._f{width:8.870507pt;}
._16{width:9.779520pt;}
._14{width:10.707948pt;}
._3{width:12.875520pt;}
._10{width:14.004800pt;}
._11{width:15.186773pt;}
._c{width:16.352533pt;}
._15{width:17.848960pt;}
._13{width:19.505600pt;}
._8{width:21.769920pt;}
._7{width:22.714240pt;}
._17{width:29.712640pt;}
._18{width:30.696427pt;}
._1d{width:35.725867pt;}
._1e{width:36.696747pt;}
._1f{width:37.660267pt;}
._1c{width:57.359788pt;}
._1a{width:58.469547pt;}
._1b{width:59.932800pt;}
._19{width:89.619627pt;}
._20{width:106.880000pt;}
._22{width:151.841387pt;}
._21{width:152.784960pt;}
.fs0{font-size:34.560000pt;}
.fs6{font-size:37.440000pt;}
.fs3{font-size:40.000000pt;}
.fs7{font-size:42.560000pt;}
.fs2{font-size:48.000000pt;}
.fs1{font-size:53.440000pt;}
.fs5{font-size:58.560000pt;}
.fs4{font-size:74.560000pt;}
.y0{bottom:0.000000pt;}
.ya5{bottom:6.960000pt;}
.y11a{bottom:6.986667pt;}
.ya7{bottom:7.040000pt;}
.ye3{bottom:7.066667pt;}
.y12d{bottom:7.280000pt;}
.y130{bottom:7.760000pt;}
.y134{bottom:8.080000pt;}
.y136{bottom:8.160000pt;}
.y132{bottom:8.186667pt;}
.yac{bottom:8.240000pt;}
.y139{bottom:11.120000pt;}
.y13d{bottom:11.920000pt;}
.y2{bottom:65.226667pt;}
.y2b{bottom:65.946667pt;}
.y1{bottom:90.346667pt;}
.y157{bottom:101.946667pt;}
.yf5{bottom:105.066667pt;}
.y104{bottom:108.026667pt;}
.ycd{bottom:114.186667pt;}
.y12b{bottom:115.306667pt;}
.y77{bottom:116.266667pt;}
.y17e{bottom:118.826667pt;}
.yf4{bottom:120.746667pt;}
.y47{bottom:123.546667pt;}
.y103{bottom:123.626667pt;}
.y29{bottom:125.546667pt;}
.ycc{bottom:129.866667pt;}
.y12a{bottom:130.906667pt;}
.y76{bottom:131.946667pt;}
.y17d{bottom:134.506667pt;}
.y102{bottom:139.306667pt;}
.y28{bottom:141.146667pt;}
.y156{bottom:141.226667pt;}
.ycb{bottom:145.466667pt;}
.y129{bottom:146.506667pt;}
.y75{bottom:147.546667pt;}
.yf3{bottom:152.346667pt;}
.y101{bottom:154.906667pt;}
.y46{bottom:155.226667pt;}
.y27{bottom:156.746667pt;}
.y17c{bottom:158.106667pt;}
.yca{bottom:161.146667pt;}
.y128{bottom:162.186667pt;}
.y74{bottom:163.146667pt;}
.y155{bottom:164.826667pt;}
.yf2{bottom:168.026667pt;}
.y45{bottom:170.826667pt;}
.y26{bottom:172.426667pt;}
.y17b{bottom:173.786667pt;}
.yc9{bottom:176.746667pt;}
.y127{bottom:177.786667pt;}
.y73{bottom:178.826667pt;}
.y154{bottom:180.506667pt;}
.ya1{bottom:181.386667pt;}
.yf1{bottom:183.626667pt;}
.y100{bottom:185.946667pt;}
.y44{bottom:186.426667pt;}
.y25{bottom:188.026667pt;}
.yc8{bottom:192.346667pt;}
.y126{bottom:193.466667pt;}
.y72{bottom:194.426667pt;}
.y17a{bottom:197.386667pt;}
.yff{bottom:198.426667pt;}
.yf0{bottom:199.226667pt;}
.y43{bottom:202.106667pt;}
.y24{bottom:203.706667pt;}
.y153{bottom:204.106667pt;}
.yc7{bottom:208.026667pt;}
.y125{bottom:209.066667pt;}
.yfe{bottom:210.906667pt;}
.ya0{bottom:212.986667pt;}
.yef{bottom:214.906667pt;}
.y42{bottom:217.706667pt;}
.y71{bottom:218.106667pt;}
.y23{bottom:219.306667pt;}
.yfd{bottom:221.786667pt;}
.y124{bottom:224.666667pt;}
.y152{bottom:227.706667pt;}
.yee{bottom:230.506667pt;}
.y41{bottom:233.386667pt;}
.y22{bottom:234.906667pt;}
.y179{bottom:236.666667pt;}
.yc6{bottom:239.626667pt;}
.y123{bottom:240.346667pt;}
.y151{bottom:243.386667pt;}
.y9f{bottom:244.666667pt;}
.yfc{bottom:246.026667pt;}
.yed{bottom:246.106667pt;}
.y40{bottom:248.986667pt;}
.y70{bottom:249.706667pt;}
.y21{bottom:250.586667pt;}
.y178{bottom:252.266667pt;}
.yc5{bottom:255.306667pt;}
.y122{bottom:255.946667pt;}
.yec{bottom:261.786667pt;}
.y3f{bottom:264.586667pt;}
.y6f{bottom:265.306667pt;}
.y20{bottom:266.186667pt;}
.y150{bottom:266.986667pt;}
.y9e{bottom:268.266667pt;}
.yfb{bottom:270.346667pt;}
.yc4{bottom:270.906667pt;}
.y121{bottom:271.626667pt;}
.y177{bottom:275.946667pt;}
.yeb{bottom:277.386667pt;}
.y6e{bottom:280.986667pt;}
.y14f{bottom:282.666667pt;}
.yc3{bottom:286.506667pt;}
.y120{bottom:287.226667pt;}
.y3e{bottom:288.266667pt;}
.y1f{bottom:290.106667pt;}
.y176{bottom:291.546667pt;}
.yea{bottom:293.066667pt;}
.yfa{bottom:294.666667pt;}
.y6d{bottom:296.586667pt;}
.y14e{bottom:298.266667pt;}
.y9d{bottom:299.946667pt;}
.yc2{bottom:302.186667pt;}
.y175{bottom:307.146667pt;}
.ye9{bottom:308.666667pt;}
.y6c{bottom:312.266667pt;}
.y9c{bottom:315.546667pt;}
.yc1{bottom:317.786667pt;}
.y11f{bottom:318.186667pt;}
.yf9{bottom:318.906667pt;}
.y3d{bottom:319.866667pt;}
.y14d{bottom:322.186667pt;}
.ye8{bottom:324.266667pt;}
.y6b{bottom:327.866667pt;}
.y11e{bottom:330.746667pt;}
.y174{bottom:330.826667pt;}
.y9b{bottom:331.146667pt;}
.y1e{bottom:333.306667pt;}
.yc0{bottom:333.466667pt;}
.ye7{bottom:339.946667pt;}
.y11d{bottom:341.546667pt;}
.yf8{bottom:343.226667pt;}
.y6a{bottom:343.466667pt;}
.y173{bottom:346.426667pt;}
.y9a{bottom:346.826667pt;}
.y3c{bottom:348.506667pt;}
.ybf{bottom:349.066667pt;}
.ye6{bottom:355.546667pt;}
.y69{bottom:359.146667pt;}
.y172{bottom:362.106667pt;}
.y99{bottom:362.426667pt;}
.ybe{bottom:364.666667pt;}
.y14c{bottom:365.066667pt;}
.y11c{bottom:365.866667pt;}
.y1d{bottom:366.266667pt;}
.yf7{bottom:367.546667pt;}
.ye5{bottom:371.226667pt;}
.y68{bottom:374.746667pt;}
.y98{bottom:378.106667pt;}
.ybd{bottom:380.346667pt;}
.y1c{bottom:381.866667pt;}
.y171{bottom:385.706667pt;}
.ye4{bottom:386.826667pt;}
.y14b{bottom:388.986667pt;}
.y11b{bottom:390.106667pt;}
.y67{bottom:390.426667pt;}
.yf6{bottom:391.866667pt;}
.y97{bottom:393.706667pt;}
.ybc{bottom:395.946667pt;}
.y1b{bottom:397.466667pt;}
.y170{bottom:401.306667pt;}
.y66{bottom:406.026667pt;}
.y96{bottom:409.306667pt;}
.ybb{bottom:411.626667pt;}
.y1a{bottom:413.146667pt;}
.y119{bottom:414.426667pt;}
.ye2{bottom:416.106667pt;}
.y16f{bottom:416.986667pt;}
.y14a{bottom:421.973333pt;}
.y95{bottom:425.013333pt;}
.yba{bottom:427.253333pt;}
.y19{bottom:428.773333pt;}
.y65{bottom:429.653333pt;}
.y149{bottom:437.573333pt;}
.y118{bottom:438.773333pt;}
.ye1{bottom:440.453333pt;}
.y16e{bottom:440.613333pt;}
.yb9{bottom:442.853333pt;}
.y18{bottom:444.373333pt;}
.y94{bottom:448.613333pt;}
.y16d{bottom:456.293333pt;}
.y17{bottom:460.053333pt;}
.y64{bottom:461.333333pt;}
.y148{bottom:461.493333pt;}
.y117{bottom:463.093333pt;}
.ye0{bottom:464.773333pt;}
.yb8{bottom:472.213333pt;}
.y16{bottom:475.653333pt;}
.y63{bottom:476.933333pt;}
.y16c{bottom:479.893333pt;}
.y93{bottom:480.293333pt;}
.y116{bottom:487.333333pt;}
.ydf{bottom:489.093333pt;}
.y15{bottom:491.333333pt;}
.y62{bottom:492.613333pt;}
.y147{bottom:494.693333pt;}
.y16b{bottom:495.493333pt;}
.y92{bottom:495.893333pt;}
.yb7{bottom:496.453333pt;}
.y14{bottom:506.933333pt;}
.y61{bottom:508.213333pt;}
.y16a{bottom:511.173333pt;}
.y91{bottom:511.493333pt;}
.y115{bottom:511.653333pt;}
.yde{bottom:513.333333pt;}
.yb6{bottom:520.773333pt;}
.y13{bottom:522.533333pt;}
.y60{bottom:523.813333pt;}
.y90{bottom:527.173333pt;}
.y169{bottom:534.773333pt;}
.y114{bottom:535.973333pt;}
.y146{bottom:537.573333pt;}
.ydd{bottom:537.653333pt;}
.y12{bottom:538.213333pt;}
.y5f{bottom:539.493333pt;}
.y8f{bottom:542.773333pt;}
.yb5{bottom:545.093333pt;}
.y168{bottom:550.453333pt;}
.y145{bottom:553.253333pt;}
.y11{bottom:553.813333pt;}
.y5e{bottom:555.093333pt;}
.y8e{bottom:558.453333pt;}
.y113{bottom:560.213333pt;}
.ydc{bottom:561.973333pt;}
.y167{bottom:566.053333pt;}
.y144{bottom:568.853333pt;}
.yb4{bottom:569.413333pt;}
.y10{bottom:569.493333pt;}
.y5d{bottom:570.773333pt;}
.y8d{bottom:574.053333pt;}
.y143{bottom:584.453333pt;}
.y112{bottom:584.533333pt;}
.ydb{bottom:586.213333pt;}
.y5c{bottom:586.373333pt;}
.y8c{bottom:589.653333pt;}
.yf{bottom:593.413333pt;}
.yb3{bottom:593.653333pt;}
.y142{bottom:600.133333pt;}
.y111{bottom:608.853333pt;}
.y5b{bottom:609.973333pt;}
.yda{bottom:610.533333pt;}
.y166{bottom:613.333333pt;}
.y141{bottom:615.733333pt;}
.yb2{bottom:617.973333pt;}
.y8b{bottom:621.333333pt;}
.y165{bottom:628.933333pt;}
.y140{bottom:631.413333pt;}
.y110{bottom:633.173333pt;}
.yd9{bottom:634.853333pt;}
.ye{bottom:636.293333pt;}
.y8a{bottom:636.933333pt;}
.y5a{bottom:641.653333pt;}
.yb1{bottom:642.293333pt;}
.y164{bottom:644.613333pt;}
.y13f{bottom:647.013333pt;}
.y89{bottom:652.613333pt;}
.y59{bottom:657.253333pt;}
.y10f{bottom:657.413333pt;}
.yd8{bottom:659.173333pt;}
.y18b{bottom:660.613333pt;}
.yb0{bottom:666.613333pt;}
.yd{bottom:667.893333pt;}
.y88{bottom:668.213333pt;}
.y13e{bottom:670.933333pt;}
.y58{bottom:672.933333pt;}
.y18a{bottom:676.213333pt;}
.y10e{bottom:681.733333pt;}
.yd7{bottom:683.413333pt;}
.y87{bottom:683.813333pt;}
.y57{bottom:688.533333pt;}
.yaf{bottom:690.853333pt;}
.y86{bottom:699.493333pt;}
.yc{bottom:699.733333pt;}
.y189{bottom:699.813333pt;}
.y56{bottom:704.133333pt;}
.y10d{bottom:706.053333pt;}
.y163{bottom:707.493333pt;}
.yd6{bottom:707.733333pt;}
.y13c{bottom:711.493333pt;}
.y3b{bottom:711.573333pt;}
.y85{bottom:715.093333pt;}
.yae{bottom:715.173333pt;}
.y188{bottom:715.493333pt;}
.y55{bottom:719.813333pt;}
.y162{bottom:723.093333pt;}
.y3a{bottom:727.173333pt;}
.y10c{bottom:730.373333pt;}
.y84{bottom:730.693333pt;}
.yb{bottom:731.733333pt;}
.yd5{bottom:732.053333pt;}
.y54{bottom:735.413333pt;}
.y187{bottom:739.093333pt;}
.yad{bottom:739.493333pt;}
.y13b{bottom:740.693333pt;}
.y39{bottom:742.773333pt;}
.y161{bottom:746.693333pt;}
.y53{bottom:751.013333pt;}
.ya{bottom:751.093333pt;}
.y83{bottom:754.373333pt;}
.y10b{bottom:754.613333pt;}
.y186{bottom:754.693333pt;}
.yd4{bottom:756.373333pt;}
.y38{bottom:758.453333pt;}
.y160{bottom:762.373333pt;}
.y9{bottom:763.733333pt;}
.y13a{bottom:766.213333pt;}
.y52{bottom:766.693333pt;}
.y185{bottom:770.373333pt;}
.y10a{bottom:778.933333pt;}
.yd3{bottom:780.613333pt;}
.y51{bottom:782.293333pt;}
.y8{bottom:783.093333pt;}
.y82{bottom:785.973333pt;}
.yab{bottom:788.053333pt;}
.y37{bottom:790.053333pt;}
.y138{bottom:790.453333pt;}
.y184{bottom:793.973333pt;}
.y7{bottom:795.733333pt;}
.y50{bottom:797.973333pt;}
.y81{bottom:801.653333pt;}
.y109{bottom:803.253333pt;}
.yd2{bottom:804.933333pt;}
.y36{bottom:805.733333pt;}
.y183{bottom:809.653333pt;}
.y4f{bottom:813.573333pt;}
.y6{bottom:815.093333pt;}
.y80{bottom:817.253333pt;}
.y137{bottom:818.853333pt;}
.y35{bottom:821.333333pt;}
.y15f{bottom:825.253333pt;}
.y108{bottom:827.493333pt;}
.yd1{bottom:829.253333pt;}
.y7f{bottom:832.853333pt;}
.y182{bottom:833.253333pt;}
.y34{bottom:836.933333pt;}
.y4e{bottom:837.173333pt;}
.yaa{bottom:837.893333pt;}
.y15e{bottom:840.853333pt;}
.y5{bottom:843.813333pt;}
.y135{bottom:844.293333pt;}
.y7e{bottom:848.533333pt;}
.y181{bottom:848.853333pt;}
.y107{bottom:851.813333pt;}
.y33{bottom:860.613333pt;}
.ya9{bottom:862.213333pt;}
.y7d{bottom:864.133333pt;}
.y15d{bottom:864.533333pt;}
.y4d{bottom:868.773333pt;}
.y133{bottom:869.733333pt;}
.yd0{bottom:872.533333pt;}
.y106{bottom:876.133333pt;}
.y4{bottom:877.893333pt;}
.y7c{bottom:879.813333pt;}
.y15c{bottom:880.133333pt;}
.y4c{bottom:885.173333pt;}
.ya8{bottom:886.453333pt;}
.y180{bottom:888.133333pt;}
.y32{bottom:892.533333pt;}
.y131{bottom:895.173333pt;}
.y3{bottom:899.840000pt;}
.y4b{bottom:901.600000pt;}
.y15b{bottom:903.840000pt;}
.ycf{bottom:904.160000pt;}
.ya6{bottom:910.800000pt;}
.y7b{bottom:911.440000pt;}
.y4a{bottom:917.920000pt;}
.y105{bottom:919.440000pt;}
.yce{bottom:919.840000pt;}
.y12f{bottom:920.640000pt;}
.y7a{bottom:927.040000pt;}
.y17f{bottom:927.440000pt;}
.ya4{bottom:935.120000pt;}
.y31{bottom:935.440000pt;}
.y79{bottom:942.720000pt;}
.y15a{bottom:943.040000pt;}
.y12e{bottom:945.680000pt;}
.y49{bottom:950.320000pt;}
.y30{bottom:951.040000pt;}
.y159{bottom:958.720000pt;}
.y78{bottom:966.320000pt;}
.y2f{bottom:966.720000pt;}
.y12c{bottom:970.000000pt;}
.y158{bottom:974.320000pt;}
.ya3{bottom:978.400000pt;}
.y48{bottom:982.000000pt;}
.y2e{bottom:982.320000pt;}
.y2d{bottom:998.000000pt;}
.ya2{bottom:1002.320000pt;}
.y2c{bottom:1013.600000pt;}
.y2a{bottom:1061.600000pt;}
.hd{height:23.600000pt;}
.h12{height:23.626667pt;}
.he{height:23.680000pt;}
.hf{height:23.706667pt;}
.h13{height:23.920000pt;}
.h14{height:24.400000pt;}
.h16{height:24.720000pt;}
.h17{height:24.800000pt;}
.h15{height:24.826667pt;}
.h10{height:24.880000pt;}
.h2{height:26.686562pt;}
.h18{height:27.760000pt;}
.h19{height:28.560000pt;}
.h6{height:31.806563pt;}
.h3{height:35.644531pt;}
.h11{height:37.925781pt;}
.h7{height:45.246562pt;}
.h8{height:47.621094pt;}
.h9{height:49.581562pt;}
.h5{height:52.183594pt;}
.hc{height:54.927899pt;}
.hb{height:55.631875pt;}
.ha{height:60.961875pt;}
.h4{height:66.441406pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.wd{width:46.640000pt;}
.we{width:65.840000pt;}
.w10{width:67.840000pt;}
.w7{width:74.000000pt;}
.wc{width:74.026667pt;}
.w9{width:75.386667pt;}
.w4{width:84.560000pt;}
.wa{width:94.720000pt;}
.w6{width:101.386667pt;}
.w8{width:115.600000pt;}
.w11{width:118.266667pt;}
.wb{width:134.080000pt;}
.w3{width:224.106667pt;}
.wf{width:229.520000pt;}
.w5{width:271.120000pt;}
.w2{width:793.919988pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x9{left:6.880000pt;}
.x1{left:60.480000pt;}
.x16{left:62.399988pt;}
.x11{left:67.519988pt;}
.x7{left:84.479988pt;}
.x10{left:85.439988pt;}
.x1a{left:98.879988pt;}
.x12{left:110.319988pt;}
.xb{left:173.066667pt;}
.x2{left:187.626655pt;}
.x8{left:242.346667pt;}
.x18{left:266.266667pt;}
.x13{left:283.386667pt;}
.xe{left:301.226667pt;}
.x5{left:331.066655pt;}
.x6{left:334.506655pt;}
.x17{left:347.466655pt;}
.xf{left:417.466667pt;}
.xc{left:444.906667pt;}
.x19{left:453.733333pt;}
.xa{left:467.093333pt;}
.x14{left:492.853333pt;}
.x15{left:540.213333pt;}
.xd{left:547.013333pt;}
.x4{left:643.013322pt;}
.x3{left:711.413322pt;}
}




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