
    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_a3fdc88ec709ed0cef2b1bab.woff')format("woff");}.ff1{font-family:ff1;line-height:1.136719;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_25105bd76cd8f790cc783909.woff')format("woff");}.ff2{font-family:ff2;line-height:1.136719;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_3df43a8176f586df0ffad7fe.woff')format("woff");}.ff3{font-family:ff3;line-height:0.731445;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1{transform:matrix(0.237171,0.000000,-0.079057,0.237171,0,0);-ms-transform:matrix(0.237171,0.000000,-0.079057,0.237171,0,0);-webkit-transform:matrix(0.237171,0.000000,-0.079057,0.237171,0,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);}
.m2{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v1{vertical-align:-31.741920px;}
.v3{vertical-align:-15.870960px;}
.v2{vertical-align:-7.959600px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:23.782320px;}
.ls22{letter-spacing:-0.418320px;}
.ls21{letter-spacing:-0.324000px;}
.ls1a{letter-spacing:-0.298800px;}
.ls29{letter-spacing:-0.289440px;}
.lse{letter-spacing:-0.288000px;}
.ls4{letter-spacing:-0.287280px;}
.ls2c{letter-spacing:-0.284605px;}
.ls2f{letter-spacing:-0.270000px;}
.ls7{letter-spacing:-0.252720px;}
.ls11{letter-spacing:-0.239040px;}
.ls44{letter-spacing:-0.227520px;}
.lsc{letter-spacing:-0.216000px;}
.ls31{letter-spacing:-0.192960px;}
.ls3{letter-spacing:-0.191520px;}
.ls1e{letter-spacing:-0.179280px;}
.ls2e{letter-spacing:-0.170763px;}
.ls30{letter-spacing:-0.162000px;}
.lsf{letter-spacing:-0.119520px;}
.ls43{letter-spacing:-0.113760px;}
.ls1c{letter-spacing:-0.084240px;}
.lsd{letter-spacing:-0.072000px;}
.ls1b{letter-spacing:-0.059760px;}
.ls2d{letter-spacing:-0.056921px;}
.ls2b{letter-spacing:-0.054000px;}
.ls2a{letter-spacing:-0.048240px;}
.ls2{letter-spacing:0.000000px;}
.ls33{letter-spacing:0.047808px;}
.lsa{letter-spacing:0.059760px;}
.ls35{letter-spacing:0.066240px;}
.ls16{letter-spacing:0.083664px;}
.lsb{letter-spacing:0.084240px;}
.ls36{letter-spacing:0.095616px;}
.ls1{letter-spacing:0.095760px;}
.ls3b{letter-spacing:0.113544px;}
.ls12{letter-spacing:0.119520px;}
.ls6{letter-spacing:0.131760px;}
.ls8{letter-spacing:0.136800px;}
.ls40{letter-spacing:0.143424px;}
.ls34{letter-spacing:0.149400px;}
.ls39{letter-spacing:0.155376px;}
.ls25{letter-spacing:0.170763px;}
.ls10{letter-spacing:0.179280px;}
.ls0{letter-spacing:0.191520px;}
.ls23{letter-spacing:0.216000px;}
.ls24{letter-spacing:0.227684px;}
.ls41{letter-spacing:0.239040px;}
.ls19{letter-spacing:0.252720px;}
.ls9{letter-spacing:0.288000px;}
.ls3d{letter-spacing:0.289440px;}
.ls1d{letter-spacing:0.298800px;}
.ls5{letter-spacing:0.324000px;}
.ls26{letter-spacing:0.397440px;}
.ls3c{letter-spacing:0.418320px;}
.ls42{letter-spacing:0.460152px;}
.ls3f{letter-spacing:0.537840px;}
.ls20{letter-spacing:0.648000px;}
.ls38{letter-spacing:0.657360px;}
.ls17{letter-spacing:0.776880px;}
.ls3e{letter-spacing:0.956160px;}
.ls27{letter-spacing:0.980064px;}
.ls15{letter-spacing:1.015920px;}
.ls18{letter-spacing:1.733040px;}
.ls14{letter-spacing:3.167280px;}
.ls13{letter-spacing:3.884400px;}
.ls37{letter-spacing:4.601520px;}
.ls32{letter-spacing:5.318640px;}
.ls3a{letter-spacing:6.752880px;}
.ls28{letter-spacing:103.764240px;}
.ls1f{letter-spacing:849.179520px;}
.sc_{text-shadow:none;}
.sc5{text-shadow:-0.015em 0 rgb(255,255,255),0 0.015em rgb(255,255,255),0.015em 0 rgb(255,255,255),0 -0.015em  rgb(255,255,255);}
.sc4{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);}
.sc3{text-shadow:-0.015em 0 rgb(60,60,60),0 0.015em rgb(60,60,60),0.015em 0 rgb(60,60,60),0 -0.015em  rgb(60,60,60);}
.sc2{text-shadow:-0.015em 0 rgb(137,139,169),0 0.015em rgb(137,139,169),0.015em 0 rgb(137,139,169),0 -0.015em  rgb(137,139,169);}
.sc1{text-shadow:-0.015em 0 rgb(196,193,0),0 0.015em rgb(196,193,0),0.015em 0 rgb(196,193,0),0 -0.015em  rgb(196,193,0);}
.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;}
.sc5{-webkit-text-stroke:0.015em rgb(255,255,255);text-shadow:none;}
.sc4{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc3{-webkit-text-stroke:0.015em rgb(60,60,60);text-shadow:none;}
.sc2{-webkit-text-stroke:0.015em rgb(137,139,169);text-shadow:none;}
.sc1{-webkit-text-stroke:0.015em rgb(196,193,0);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws5d{word-spacing:-103.812480px;}
.ws91{word-spacing:-26.051040px;}
.ws92{word-spacing:-25.937280px;}
.ws93{word-spacing:-25.823520px;}
.ws3d{word-spacing:-25.056000px;}
.ws3e{word-spacing:-24.732000px;}
.ws3c{word-spacing:-24.408000px;}
.ws1{word-spacing:-23.940000px;}
.ws0{word-spacing:-23.556960px;}
.ws14{word-spacing:-19.543680px;}
.ws13{word-spacing:-19.290960px;}
.ws11{word-spacing:-19.206720px;}
.ws9{word-spacing:-17.784000px;}
.ws8{word-spacing:-17.640000px;}
.ws8e{word-spacing:-16.704000px;}
.ws7b{word-spacing:-15.477840px;}
.ws5b{word-spacing:-15.119280px;}
.ws12{word-spacing:-14.999760px;}
.wsf{word-spacing:-14.820480px;}
.ws6f{word-spacing:-14.760720px;}
.ws5c{word-spacing:-14.700960px;}
.ws16{word-spacing:-14.641200px;}
.ws15{word-spacing:-14.581440px;}
.ws10{word-spacing:-14.521680px;}
.ws5a{word-spacing:-14.287170px;}
.ws58{word-spacing:-14.059486px;}
.ws59{word-spacing:-13.945644px;}
.ws57{word-spacing:-13.338000px;}
.ws8c{word-spacing:-12.252960px;}
.ws6a{word-spacing:-10.757520px;}
.ws35{word-spacing:-3.585600px;}
.ws34{word-spacing:-3.466080px;}
.ws36{word-spacing:-3.286800px;}
.ws84{word-spacing:-3.227040px;}
.ws85{word-spacing:-3.167280px;}
.ws74{word-spacing:-2.868480px;}
.ws2a{word-spacing:-2.509920px;}
.ws2b{word-spacing:-2.450160px;}
.ws1e{word-spacing:-2.031840px;}
.ws43{word-spacing:-1.852560px;}
.ws7e{word-spacing:-1.792800px;}
.ws1f{word-spacing:-1.733040px;}
.ws75{word-spacing:-1.613520px;}
.ws3b{word-spacing:-1.314720px;}
.ws89{word-spacing:-1.254960px;}
.ws4b{word-spacing:-1.075680px;}
.wsc{word-spacing:-1.015920px;}
.ws31{word-spacing:-0.842400px;}
.ws3f{word-spacing:-0.648000px;}
.ws30{word-spacing:-0.597600px;}
.ws7f{word-spacing:-0.537840px;}
.ws7a{word-spacing:-0.418320px;}
.ws4e{word-spacing:-0.358560px;}
.ws2c{word-spacing:-0.298800px;}
.ws65{word-spacing:-0.270000px;}
.ws60{word-spacing:-0.241200px;}
.ws82{word-spacing:-0.239040px;}
.ws8b{word-spacing:-0.179280px;}
.ws17{word-spacing:-0.168480px;}
.ws6{word-spacing:-0.131760px;}
.ws78{word-spacing:-0.119520px;}
.ws88{word-spacing:-0.108000px;}
.ws3{word-spacing:-0.095760px;}
.ws26{word-spacing:-0.084240px;}
.ws2{word-spacing:0.000000px;}
.ws6c{word-spacing:0.048240px;}
.ws45{word-spacing:0.059760px;}
.ws8f{word-spacing:0.072000px;}
.ws61{word-spacing:0.108000px;}
.ws90{word-spacing:0.119520px;}
.wsd{word-spacing:0.179280px;}
.ws5{word-spacing:0.191520px;}
.ws69{word-spacing:0.192960px;}
.wsa{word-spacing:0.216000px;}
.ws4d{word-spacing:0.239040px;}
.ws7{word-spacing:0.252720px;}
.ws6d{word-spacing:0.289440px;}
.ws1c{word-spacing:0.358560px;}
.ws4{word-spacing:0.383040px;}
.ws25{word-spacing:0.418320px;}
.wsb{word-spacing:0.432000px;}
.ws1d{word-spacing:0.478080px;}
.ws64{word-spacing:0.486000px;}
.ws63{word-spacing:0.594000px;}
.wse{word-spacing:0.597600px;}
.ws62{word-spacing:0.626131px;}
.ws8a{word-spacing:0.776880px;}
.ws33{word-spacing:0.896400px;}
.ws32{word-spacing:1.075680px;}
.ws49{word-spacing:1.135440px;}
.ws20{word-spacing:1.195200px;}
.ws68{word-spacing:1.494000px;}
.ws3a{word-spacing:1.613520px;}
.ws8d{word-spacing:1.673280px;}
.ws76{word-spacing:1.792800px;}
.ws23{word-spacing:1.852560px;}
.ws22{word-spacing:1.912320px;}
.ws77{word-spacing:2.031840px;}
.ws79{word-spacing:2.211120px;}
.ws41{word-spacing:2.330640px;}
.ws7d{word-spacing:2.390400px;}
.ws73{word-spacing:2.569680px;}
.ws53{word-spacing:2.629440px;}
.ws81{word-spacing:2.748960px;}
.ws51{word-spacing:2.928240px;}
.ws2f{word-spacing:3.047760px;}
.ws29{word-spacing:3.227040px;}
.ws83{word-spacing:3.286800px;}
.ws1b{word-spacing:3.346560px;}
.ws6e{word-spacing:3.618000px;}
.ws42{word-spacing:3.645360px;}
.ws44{word-spacing:3.764880px;}
.ws28{word-spacing:3.824640px;}
.ws27{word-spacing:3.944160px;}
.ws1a{word-spacing:4.003920px;}
.ws24{word-spacing:4.063680px;}
.ws66{word-spacing:4.341600px;}
.ws47{word-spacing:4.482000px;}
.ws4a{word-spacing:4.541760px;}
.ws4f{word-spacing:4.721040px;}
.ws50{word-spacing:4.780800px;}
.ws48{word-spacing:4.900320px;}
.ws6b{word-spacing:5.065200px;}
.ws4c{word-spacing:5.079600px;}
.ws54{word-spacing:5.199120px;}
.ws7c{word-spacing:5.438160px;}
.ws21{word-spacing:5.497920px;}
.ws55{word-spacing:5.617440px;}
.ws87{word-spacing:5.796720px;}
.ws40{word-spacing:5.916240px;}
.ws2e{word-spacing:6.095520px;}
.ws70{word-spacing:6.155280px;}
.ws2d{word-spacing:6.215040px;}
.ws71{word-spacing:6.334560px;}
.ws56{word-spacing:6.633360px;}
.ws67{word-spacing:6.693120px;}
.ws18{word-spacing:6.812640px;}
.ws86{word-spacing:6.872400px;}
.ws19{word-spacing:6.932160px;}
.ws39{word-spacing:7.350480px;}
.ws46{word-spacing:7.410240px;}
.ws72{word-spacing:7.589520px;}
.ws38{word-spacing:7.649280px;}
.ws37{word-spacing:8.784720px;}
.ws80{word-spacing:10.458000px;}
.ws52{word-spacing:12.430080px;}
.ws5f{word-spacing:24.216480px;}
.ws5e{word-spacing:77.473440px;}
._6{margin-left:-103.764240px;}
._9{margin-left:-5.656536px;}
._4{margin-left:-4.090320px;}
._a{margin-left:-2.798640px;}
._1{margin-left:-1.490400px;}
._0{width:1.177848px;}
._8{width:3.256272px;}
._7{width:4.651344px;}
._3{width:6.462936px;}
._5{width:8.067600px;}
._2{width:846.144000px;}
._b{width:849.189600px;}
.fc8{color:rgb(0,0,255);}
.fc4{color:transparent;}
.fc3{color:rgb(196,193,0);}
.fc1{color:rgb(137,139,169);}
.fc7{color:rgb(89,89,89);}
.fc6{color:rgb(64,64,64);}
.fc5{color:rgb(0,0,0);}
.fc2{color:rgb(255,255,255);}
.fc0{color:rgb(60,60,60);}
.fsa{font-size:30.240000px;}
.fs1{font-size:48.240000px;}
.fsc{font-size:54.000000px;}
.fsd{font-size:56.920998px;}
.fs0{font-size:59.760000px;}
.fs8{font-size:66.240000px;}
.fs9{font-size:72.000000px;}
.fs4{font-size:77.760000px;}
.fs7{font-size:84.240000px;}
.fs3{font-size:95.760000px;}
.fs2{font-size:108.000000px;}
.fse{font-size:113.760000px;}
.fs6{font-size:131.760000px;}
.fs5{font-size:162.000000px;}
.fsb{font-size:180.000000px;}
.y0{bottom:0.000000px;}
.y35{bottom:3.240000px;}
.yb7{bottom:3.600000px;}
.y188{bottom:28.800000px;}
.y54{bottom:28.805220px;}
.y33{bottom:29.700000px;}
.y2{bottom:35.640000px;}
.y53{bottom:44.640000px;}
.y34{bottom:45.180000px;}
.y32{bottom:48.600000px;}
.y111{bottom:85.689000px;}
.yd6{bottom:87.010560px;}
.y81{bottom:92.880000px;}
.y15d{bottom:97.675560px;}
.y110{bottom:105.484500px;}
.yd5{bottom:106.806060px;}
.y12d{bottom:117.378000px;}
.y15c{bottom:117.471060px;}
.y30{bottom:119.001780px;}
.y10f{bottom:125.280000px;}
.yd4{bottom:126.601560px;}
.yb0{bottom:126.720000px;}
.y12c{bottom:137.173500px;}
.y15b{bottom:137.266560px;}
.y2f{bottom:138.618000px;}
.y80{bottom:139.860000px;}
.y10e{bottom:144.936000px;}
.yd3{bottom:146.217780px;}
.yaf{bottom:146.604060px;}
.y12b{bottom:156.969000px;}
.y15a{bottom:157.062060px;}
.y2e{bottom:158.413500px;}
.yed{bottom:160.020000px;}
.y10d{bottom:164.731500px;}
.yd2{bottom:166.013280px;}
.yae{bottom:166.399560px;}
.y7f{bottom:168.528780px;}
.y12a{bottom:176.764500px;}
.y159{bottom:176.857560px;}
.y2d{bottom:178.209000px;}
.y10c{bottom:184.527000px;}
.yd1{bottom:185.808780px;}
.yad{bottom:186.195060px;}
.yec{bottom:187.740720px;}
.y7e{bottom:188.324280px;}
.y129{bottom:196.560000px;}
.y158{bottom:196.653060px;}
.y2c{bottom:198.004500px;}
.yeb{bottom:202.140360px;}
.y10b{bottom:204.322500px;}
.yd0{bottom:205.604280px;}
.yac{bottom:205.990560px;}
.y7d{bottom:208.119780px;}
.y128{bottom:216.225000px;}
.y157{bottom:216.269280px;}
.yea{bottom:216.540000px;}
.y2b{bottom:217.800000px;}
.y10a{bottom:224.118000px;}
.ycf{bottom:225.399780px;}
.yab{bottom:225.786060px;}
.y7c{bottom:227.915280px;}
.y127{bottom:236.020500px;}
.y156{bottom:236.064780px;}
.y2a{bottom:239.220000px;}
.y109{bottom:243.913500px;}
.yce{bottom:245.195280px;}
.yaa{bottom:245.581560px;}
.ye9{bottom:245.880000px;}
.y7b{bottom:247.710780px;}
.y126{bottom:255.816000px;}
.y155{bottom:255.860280px;}
.y187{bottom:257.944500px;}
.y108{bottom:263.709000px;}
.ycd{bottom:264.990780px;}
.y29{bottom:265.324500px;}
.ya9{bottom:265.377060px;}
.y7a{bottom:267.506280px;}
.y125{bottom:275.611500px;}
.y154{bottom:275.655780px;}
.y186{bottom:277.740000px;}
.y107{bottom:283.504500px;}
.ycc{bottom:284.786280px;}
.y28{bottom:285.120000px;}
.ya8{bottom:285.172560px;}
.y79{bottom:287.301780px;}
.y124{bottom:295.407000px;}
.y153{bottom:295.451280px;}
.y185{bottom:297.378000px;}
.y106{bottom:303.300000px;}
.ycb{bottom:304.581780px;}
.ya7{bottom:304.968060px;}
.y78{bottom:307.097280px;}
.y27{bottom:309.066120px;}
.y123{bottom:315.202500px;}
.y152{bottom:315.246780px;}
.y184{bottom:317.173500px;}
.y105{bottom:323.139780px;}
.yca{bottom:324.377280px;}
.ya6{bottom:324.584280px;}
.y77{bottom:326.892780px;}
.y122{bottom:334.998000px;}
.y151{bottom:335.042280px;}
.y183{bottom:336.969000px;}
.y104{bottom:342.756000px;}
.yc9{bottom:343.993500px;}
.ya5{bottom:344.379780px;}
.y76{bottom:346.688280px;}
.y26{bottom:348.660000px;}
.y121{bottom:354.793500px;}
.y150{bottom:354.837780px;}
.y182{bottom:356.764500px;}
.y103{bottom:362.551500px;}
.yc8{bottom:363.789000px;}
.ya4{bottom:364.175280px;}
.y75{bottom:366.483780px;}
.y120{bottom:374.589000px;}
.y14f{bottom:374.633280px;}
.y181{bottom:376.560000px;}
.y102{bottom:382.347000px;}
.yc7{bottom:383.584500px;}
.ya3{bottom:383.970780px;}
.y74{bottom:386.100000px;}
.y25{bottom:390.060000px;}
.y11f{bottom:394.384500px;}
.y14e{bottom:394.428780px;}
.y101{bottom:402.142500px;}
.yc6{bottom:403.380000px;}
.ya2{bottom:403.766280px;}
.y180{bottom:409.500000px;}
.y11e{bottom:414.180000px;}
.y14d{bottom:414.224280px;}
.y100{bottom:421.938000px;}
.y73{bottom:422.820000px;}
.ya1{bottom:423.561780px;}
.y11d{bottom:433.836000px;}
.y14c{bottom:433.840500px;}
.y24{bottom:438.660000px;}
.yc5{bottom:440.100000px;}
.yff{bottom:441.733500px;}
.ya0{bottom:443.357280px;}
.y52{bottom:444.060000px;}
.y72{bottom:448.020000px;}
.y17f{bottom:448.749000px;}
.y11c{bottom:453.631500px;}
.y14b{bottom:453.636000px;}
.yc4{bottom:454.500360px;}
.yfe{bottom:461.529000px;}
.y9f{bottom:463.152780px;}
.y51{bottom:467.820000px;}
.y17e{bottom:468.544500px;}
.yc3{bottom:468.900000px;}
.y11b{bottom:473.427000px;}
.y14a{bottom:473.431500px;}
.yfd{bottom:481.324500px;}
.y23{bottom:482.401440px;}
.y9e{bottom:482.948280px;}
.yc2{bottom:484.380000px;}
.y17d{bottom:488.340000px;}
.y71{bottom:490.140000px;}
.y50{bottom:490.932900px;}
.y11a{bottom:493.222500px;}
.y149{bottom:493.227000px;}
.yc1{bottom:500.040000px;}
.yfc{bottom:501.120000px;}
.y9d{bottom:502.743780px;}
.y22{bottom:508.140000px;}
.y17c{bottom:508.166280px;}
.y4f{bottom:510.728400px;}
.y119{bottom:513.018000px;}
.y148{bottom:513.022500px;}
.y70{bottom:518.993280px;}
.yfb{bottom:520.977060px;}
.y9c{bottom:522.360000px;}
.y17b{bottom:527.782500px;}
.y4e{bottom:530.344620px;}
.y118{bottom:532.813500px;}
.y147{bottom:532.818000px;}
.y21{bottom:535.140000px;}
.y6f{bottom:538.788780px;}
.yfa{bottom:540.593280px;}
.yc0{bottom:544.680000px;}
.y17a{bottom:547.578000px;}
.y4d{bottom:550.140120px;}
.y117{bottom:552.609000px;}
.y146{bottom:552.613500px;}
.y6e{bottom:558.584280px;}
.y9b{bottom:559.800000px;}
.yf9{bottom:560.388780px;}
.ybf{bottom:567.180000px;}
.y179{bottom:567.373500px;}
.y20{bottom:567.540000px;}
.y4c{bottom:569.935620px;}
.y116{bottom:572.404500px;}
.y145{bottom:572.409000px;}
.y6d{bottom:578.200500px;}
.yf8{bottom:580.184280px;}
.y178{bottom:587.169000px;}
.ybe{bottom:589.500000px;}
.y4b{bottom:589.731120px;}
.y9a{bottom:589.768560px;}
.y115{bottom:592.200000px;}
.y144{bottom:592.204500px;}
.y6c{bottom:597.996000px;}
.yf7{bottom:599.979780px;}
.y1f{bottom:600.064410px;}
.y177{bottom:606.964500px;}
.y4a{bottom:609.526620px;}
.y99{bottom:609.564060px;}
.ybd{bottom:611.820000px;}
.y143{bottom:612.000000px;}
.y114{bottom:612.003780px;}
.y6b{bottom:617.791500px;}
.yf6{bottom:619.775280px;}
.y1e{bottom:619.859910px;}
.y176{bottom:626.760000px;}
.y49{bottom:629.322120px;}
.y98{bottom:629.359560px;}
.y113{bottom:631.620000px;}
.ybc{bottom:634.140000px;}
.y6a{bottom:637.587000px;}
.yf5{bottom:639.570780px;}
.y1d{bottom:639.655410px;}
.y175{bottom:646.626060px;}
.y97{bottom:648.975780px;}
.y48{bottom:649.117620px;}
.y142{bottom:649.260000px;}
.ybb{bottom:656.460000px;}
.y69{bottom:657.382500px;}
.yf4{bottom:659.366280px;}
.y1c{bottom:659.450910px;}
.y174{bottom:666.421560px;}
.y96{bottom:668.771280px;}
.y47{bottom:668.913120px;}
.y112{bottom:669.060000px;}
.y68{bottom:677.178000px;}
.yba{bottom:678.780000px;}
.y141{bottom:679.144500px;}
.yf3{bottom:679.161780px;}
.y1b{bottom:679.246410px;}
.y173{bottom:686.217060px;}
.y95{bottom:688.566780px;}
.y46{bottom:688.708620px;}
.y67{bottom:696.973500px;}
.y140{bottom:698.940000px;}
.yf2{bottom:698.957280px;}
.y1a{bottom:699.041910px;}
.yb9{bottom:701.280000px;}
.y172{bottom:706.012560px;}
.y94{bottom:708.362280px;}
.y45{bottom:708.504120px;}
.y66{bottom:716.769000px;}
.yf1{bottom:718.752780px;}
.y13f{bottom:718.775280px;}
.y19{bottom:718.837410px;}
.yb8{bottom:723.600000px;}
.y171{bottom:725.628780px;}
.y44{bottom:728.120340px;}
.y93{bottom:728.157780px;}
.y65{bottom:736.564500px;}
.yf0{bottom:738.548280px;}
.y13e{bottom:738.570780px;}
.y18{bottom:738.632910px;}
.y170{bottom:745.424280px;}
.yb6{bottom:745.920000px;}
.y43{bottom:747.915840px;}
.y92{bottom:747.953280px;}
.y64{bottom:756.360000px;}
.yef{bottom:758.164500px;}
.y13d{bottom:758.187000px;}
.y17{bottom:758.249130px;}
.y16f{bottom:765.219780px;}
.y42{bottom:767.711340px;}
.y91{bottom:767.748780px;}
.yb5{bottom:771.659850px;}
.yee{bottom:777.960000px;}
.y13c{bottom:777.982500px;}
.y16{bottom:778.044630px;}
.y16e{bottom:785.015280px;}
.y41{bottom:787.506840px;}
.y90{bottom:787.544280px;}
.yb4{bottom:791.460000px;}
.y63{bottom:792.900000px;}
.y13b{bottom:797.778000px;}
.y15{bottom:797.840130px;}
.y16d{bottom:804.810780px;}
.y40{bottom:807.302340px;}
.y8f{bottom:807.339780px;}
.yb3{bottom:810.180000px;}
.y13a{bottom:817.573500px;}
.y14{bottom:817.635630px;}
.y62{bottom:818.100000px;}
.y3f{bottom:822.959460px;}
.yb2{bottom:824.580000px;}
.y16c{bottom:824.606280px;}
.y8e{bottom:827.135280px;}
.y139{bottom:837.369000px;}
.y13{bottom:837.431130px;}
.y16b{bottom:844.401780px;}
.yb1{bottom:844.740000px;}
.y8d{bottom:846.930780px;}
.ye8{bottom:857.146020px;}
.y138{bottom:857.164500px;}
.y12{bottom:857.226630px;}
.y61{bottom:860.220000px;}
.y16a{bottom:864.197280px;}
.y8c{bottom:866.547000px;}
.ye0{bottom:871.485360px;}
.y137{bottom:876.960000px;}
.y11{bottom:877.022130px;}
.y60{bottom:877.860000px;}
.y169{bottom:883.992780px;}
.y8b{bottom:886.342500px;}
.y5f{bottom:889.964280px;}
.yd7{bottom:890.407500px;}
.y136{bottom:896.795130px;}
.y10{bottom:896.817630px;}
.yd8{bottom:902.310720px;}
.y168{bottom:903.788280px;}
.y8a{bottom:906.138000px;}
.y5e{bottom:909.759780px;}
.ye1{bottom:911.162760px;}
.yda{bottom:914.201880px;}
.y135{bottom:916.590630px;}
.yf{bottom:916.613130px;}
.yd9{bottom:922.149420px;}
.y167{bottom:923.583780px;}
.y89{bottom:925.933500px;}
.y5d{bottom:929.555280px;}
.y134{bottom:936.386130px;}
.ye{bottom:936.408630px;}
.y166{bottom:943.200000px;}
.y88{bottom:945.729000px;}
.ydd{bottom:947.933700px;}
.y5c{bottom:949.350780px;}
.ye2{bottom:950.840160px;}
.y133{bottom:956.002350px;}
.yd{bottom:956.024850px;}
.ydf{bottom:959.836920px;}
.y3e{bottom:961.020000px;}
.y165{bottom:963.000000px;}
.y87{bottom:965.524500px;}
.y5b{bottom:969.146280px;}
.y132{bottom:975.797850px;}
.yc{bottom:975.820350px;}
.y3d{bottom:981.540000px;}
.y164{bottom:982.822500px;}
.y86{bottom:985.320000px;}
.y5a{bottom:988.762500px;}
.ye3{bottom:990.517560px;}
.y131{bottom:995.593350px;}
.yb{bottom:995.615850px;}
.y163{bottom:1002.618000px;}
.y3c{bottom:1005.300000px;}
.y59{bottom:1008.558000px;}
.y130{bottom:1015.388850px;}
.yde{bottom:1015.397340px;}
.ya{bottom:1015.411350px;}
.y162{bottom:1022.413500px;}
.y85{bottom:1022.580000px;}
.y58{bottom:1028.353500px;}
.y3b{bottom:1029.060000px;}
.ydc{bottom:1029.278400px;}
.ye4{bottom:1030.194960px;}
.y18d{bottom:1033.564500px;}
.y12f{bottom:1035.184350px;}
.y9{bottom:1035.206850px;}
.y161{bottom:1042.209000px;}
.y57{bottom:1048.149000px;}
.y3a{bottom:1052.820000px;}
.y18c{bottom:1053.360000px;}
.y12e{bottom:1054.979850px;}
.y8{bottom:1055.002350px;}
.y160{bottom:1062.004500px;}
.y56{bottom:1067.944500px;}
.ye5{bottom:1069.872360px;}
.y84{bottom:1069.920000px;}
.y18b{bottom:1074.600000px;}
.y7{bottom:1074.797850px;}
.y39{bottom:1076.580000px;}
.y15f{bottom:1081.800000px;}
.y55{bottom:1087.740000px;}
.y6{bottom:1094.593350px;}
.y83{bottom:1099.800000px;}
.y38{bottom:1100.160000px;}
.y18a{bottom:1108.260000px;}
.ye6{bottom:1109.549760px;}
.y5{bottom:1114.388850px;}
.y15e{bottom:1114.740000px;}
.y37{bottom:1124.280000px;}
.y82{bottom:1126.620000px;}
.ydb{bottom:1130.473860px;}
.y4{bottom:1134.184350px;}
.y189{bottom:1142.460000px;}
.ye7{bottom:1149.227160px;}
.y36{bottom:1149.479850px;}
.y3{bottom:1153.979850px;}
.y31{bottom:1174.504500px;}
.y1{bottom:1194.300000px;}
.ha{height:15.840000px;}
.hf{height:21.600000px;}
.hd{height:27.434531px;}
.h12{height:34.672500px;}
.h3{height:43.764609px;}
.h10{height:48.990234px;}
.h11{height:51.640241px;}
.h2{height:54.215859px;}
.h13{height:58.454820px;}
.hc{height:65.028712px;}
.hb{height:65.320312px;}
.h6{height:70.545938px;}
.h9{height:76.424766px;}
.h5{height:86.876016px;}
.h4{height:97.980469px;}
.h14{height:103.206094px;}
.h8{height:119.536172px;}
.h7{height:146.970703px;}
.he{height:163.300781px;}
.h1{height:1263.000000px;}
.h0{height:1263.060000px;}
.w2{width:6.840000px;}
.w4{width:97.200000px;}
.w5{width:97.558500px;}
.w3{width:386.281500px;}
.w0{width:892.440000px;}
.w1{width:892.500000px;}
.x0{left:0.000000px;}
.x5{left:5.220000px;}
.x7{left:16.380000px;}
.xc{left:21.060000px;}
.xd{left:69.660000px;}
.xa{left:77.220000px;}
.xb{left:84.600000px;}
.x1{left:93.600000px;}
.x19{left:103.240020px;}
.x18{left:109.909200px;}
.x17{left:116.578380px;}
.x1a{left:136.561800px;}
.xe{left:146.511300px;}
.x1d{left:218.340000px;}
.x3{left:227.522160px;}
.xf{left:244.450560px;}
.x10{left:437.097000px;}
.x1c{left:439.560000px;}
.x2{left:442.800000px;}
.x6{left:480.600000px;}
.x11{left:535.036260px;}
.x8{left:578.520000px;}
.x12{left:596.916120px;}
.x13{left:632.987580px;}
.x14{left:665.634000px;}
.x9{left:676.440000px;}
.x15{left:698.280420px;}
.x16{left:730.926840px;}
.x1b{left:767.160000px;}
.x4{left:770.760000px;}
@media print{
.v1{vertical-align:-28.215040pt;}
.v3{vertical-align:-14.107520pt;}
.v2{vertical-align:-7.075200pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:21.139840pt;}
.ls22{letter-spacing:-0.371840pt;}
.ls21{letter-spacing:-0.288000pt;}
.ls1a{letter-spacing:-0.265600pt;}
.ls29{letter-spacing:-0.257280pt;}
.lse{letter-spacing:-0.256000pt;}
.ls4{letter-spacing:-0.255360pt;}
.ls2c{letter-spacing:-0.252982pt;}
.ls2f{letter-spacing:-0.240000pt;}
.ls7{letter-spacing:-0.224640pt;}
.ls11{letter-spacing:-0.212480pt;}
.ls44{letter-spacing:-0.202240pt;}
.lsc{letter-spacing:-0.192000pt;}
.ls31{letter-spacing:-0.171520pt;}
.ls3{letter-spacing:-0.170240pt;}
.ls1e{letter-spacing:-0.159360pt;}
.ls2e{letter-spacing:-0.151789pt;}
.ls30{letter-spacing:-0.144000pt;}
.lsf{letter-spacing:-0.106240pt;}
.ls43{letter-spacing:-0.101120pt;}
.ls1c{letter-spacing:-0.074880pt;}
.lsd{letter-spacing:-0.064000pt;}
.ls1b{letter-spacing:-0.053120pt;}
.ls2d{letter-spacing:-0.050596pt;}
.ls2b{letter-spacing:-0.048000pt;}
.ls2a{letter-spacing:-0.042880pt;}
.ls2{letter-spacing:0.000000pt;}
.ls33{letter-spacing:0.042496pt;}
.lsa{letter-spacing:0.053120pt;}
.ls35{letter-spacing:0.058880pt;}
.ls16{letter-spacing:0.074368pt;}
.lsb{letter-spacing:0.074880pt;}
.ls36{letter-spacing:0.084992pt;}
.ls1{letter-spacing:0.085120pt;}
.ls3b{letter-spacing:0.100928pt;}
.ls12{letter-spacing:0.106240pt;}
.ls6{letter-spacing:0.117120pt;}
.ls8{letter-spacing:0.121600pt;}
.ls40{letter-spacing:0.127488pt;}
.ls34{letter-spacing:0.132800pt;}
.ls39{letter-spacing:0.138112pt;}
.ls25{letter-spacing:0.151789pt;}
.ls10{letter-spacing:0.159360pt;}
.ls0{letter-spacing:0.170240pt;}
.ls23{letter-spacing:0.192000pt;}
.ls24{letter-spacing:0.202386pt;}
.ls41{letter-spacing:0.212480pt;}
.ls19{letter-spacing:0.224640pt;}
.ls9{letter-spacing:0.256000pt;}
.ls3d{letter-spacing:0.257280pt;}
.ls1d{letter-spacing:0.265600pt;}
.ls5{letter-spacing:0.288000pt;}
.ls26{letter-spacing:0.353280pt;}
.ls3c{letter-spacing:0.371840pt;}
.ls42{letter-spacing:0.409024pt;}
.ls3f{letter-spacing:0.478080pt;}
.ls20{letter-spacing:0.576000pt;}
.ls38{letter-spacing:0.584320pt;}
.ls17{letter-spacing:0.690560pt;}
.ls3e{letter-spacing:0.849920pt;}
.ls27{letter-spacing:0.871168pt;}
.ls15{letter-spacing:0.903040pt;}
.ls18{letter-spacing:1.540480pt;}
.ls14{letter-spacing:2.815360pt;}
.ls13{letter-spacing:3.452800pt;}
.ls37{letter-spacing:4.090240pt;}
.ls32{letter-spacing:4.727680pt;}
.ls3a{letter-spacing:6.002560pt;}
.ls28{letter-spacing:92.234880pt;}
.ls1f{letter-spacing:754.826240pt;}
.ws5d{word-spacing:-92.277760pt;}
.ws91{word-spacing:-23.156480pt;}
.ws92{word-spacing:-23.055360pt;}
.ws93{word-spacing:-22.954240pt;}
.ws3d{word-spacing:-22.272000pt;}
.ws3e{word-spacing:-21.984000pt;}
.ws3c{word-spacing:-21.696000pt;}
.ws1{word-spacing:-21.280000pt;}
.ws0{word-spacing:-20.939520pt;}
.ws14{word-spacing:-17.372160pt;}
.ws13{word-spacing:-17.147520pt;}
.ws11{word-spacing:-17.072640pt;}
.ws9{word-spacing:-15.808000pt;}
.ws8{word-spacing:-15.680000pt;}
.ws8e{word-spacing:-14.848000pt;}
.ws7b{word-spacing:-13.758080pt;}
.ws5b{word-spacing:-13.439360pt;}
.ws12{word-spacing:-13.333120pt;}
.wsf{word-spacing:-13.173760pt;}
.ws6f{word-spacing:-13.120640pt;}
.ws5c{word-spacing:-13.067520pt;}
.ws16{word-spacing:-13.014400pt;}
.ws15{word-spacing:-12.961280pt;}
.ws10{word-spacing:-12.908160pt;}
.ws5a{word-spacing:-12.699707pt;}
.ws58{word-spacing:-12.497321pt;}
.ws59{word-spacing:-12.396128pt;}
.ws57{word-spacing:-11.856000pt;}
.ws8c{word-spacing:-10.891520pt;}
.ws6a{word-spacing:-9.562240pt;}
.ws35{word-spacing:-3.187200pt;}
.ws34{word-spacing:-3.080960pt;}
.ws36{word-spacing:-2.921600pt;}
.ws84{word-spacing:-2.868480pt;}
.ws85{word-spacing:-2.815360pt;}
.ws74{word-spacing:-2.549760pt;}
.ws2a{word-spacing:-2.231040pt;}
.ws2b{word-spacing:-2.177920pt;}
.ws1e{word-spacing:-1.806080pt;}
.ws43{word-spacing:-1.646720pt;}
.ws7e{word-spacing:-1.593600pt;}
.ws1f{word-spacing:-1.540480pt;}
.ws75{word-spacing:-1.434240pt;}
.ws3b{word-spacing:-1.168640pt;}
.ws89{word-spacing:-1.115520pt;}
.ws4b{word-spacing:-0.956160pt;}
.wsc{word-spacing:-0.903040pt;}
.ws31{word-spacing:-0.748800pt;}
.ws3f{word-spacing:-0.576000pt;}
.ws30{word-spacing:-0.531200pt;}
.ws7f{word-spacing:-0.478080pt;}
.ws7a{word-spacing:-0.371840pt;}
.ws4e{word-spacing:-0.318720pt;}
.ws2c{word-spacing:-0.265600pt;}
.ws65{word-spacing:-0.240000pt;}
.ws60{word-spacing:-0.214400pt;}
.ws82{word-spacing:-0.212480pt;}
.ws8b{word-spacing:-0.159360pt;}
.ws17{word-spacing:-0.149760pt;}
.ws6{word-spacing:-0.117120pt;}
.ws78{word-spacing:-0.106240pt;}
.ws88{word-spacing:-0.096000pt;}
.ws3{word-spacing:-0.085120pt;}
.ws26{word-spacing:-0.074880pt;}
.ws2{word-spacing:0.000000pt;}
.ws6c{word-spacing:0.042880pt;}
.ws45{word-spacing:0.053120pt;}
.ws8f{word-spacing:0.064000pt;}
.ws61{word-spacing:0.096000pt;}
.ws90{word-spacing:0.106240pt;}
.wsd{word-spacing:0.159360pt;}
.ws5{word-spacing:0.170240pt;}
.ws69{word-spacing:0.171520pt;}
.wsa{word-spacing:0.192000pt;}
.ws4d{word-spacing:0.212480pt;}
.ws7{word-spacing:0.224640pt;}
.ws6d{word-spacing:0.257280pt;}
.ws1c{word-spacing:0.318720pt;}
.ws4{word-spacing:0.340480pt;}
.ws25{word-spacing:0.371840pt;}
.wsb{word-spacing:0.384000pt;}
.ws1d{word-spacing:0.424960pt;}
.ws64{word-spacing:0.432000pt;}
.ws63{word-spacing:0.528000pt;}
.wse{word-spacing:0.531200pt;}
.ws62{word-spacing:0.556561pt;}
.ws8a{word-spacing:0.690560pt;}
.ws33{word-spacing:0.796800pt;}
.ws32{word-spacing:0.956160pt;}
.ws49{word-spacing:1.009280pt;}
.ws20{word-spacing:1.062400pt;}
.ws68{word-spacing:1.328000pt;}
.ws3a{word-spacing:1.434240pt;}
.ws8d{word-spacing:1.487360pt;}
.ws76{word-spacing:1.593600pt;}
.ws23{word-spacing:1.646720pt;}
.ws22{word-spacing:1.699840pt;}
.ws77{word-spacing:1.806080pt;}
.ws79{word-spacing:1.965440pt;}
.ws41{word-spacing:2.071680pt;}
.ws7d{word-spacing:2.124800pt;}
.ws73{word-spacing:2.284160pt;}
.ws53{word-spacing:2.337280pt;}
.ws81{word-spacing:2.443520pt;}
.ws51{word-spacing:2.602880pt;}
.ws2f{word-spacing:2.709120pt;}
.ws29{word-spacing:2.868480pt;}
.ws83{word-spacing:2.921600pt;}
.ws1b{word-spacing:2.974720pt;}
.ws6e{word-spacing:3.216000pt;}
.ws42{word-spacing:3.240320pt;}
.ws44{word-spacing:3.346560pt;}
.ws28{word-spacing:3.399680pt;}
.ws27{word-spacing:3.505920pt;}
.ws1a{word-spacing:3.559040pt;}
.ws24{word-spacing:3.612160pt;}
.ws66{word-spacing:3.859200pt;}
.ws47{word-spacing:3.984000pt;}
.ws4a{word-spacing:4.037120pt;}
.ws4f{word-spacing:4.196480pt;}
.ws50{word-spacing:4.249600pt;}
.ws48{word-spacing:4.355840pt;}
.ws6b{word-spacing:4.502400pt;}
.ws4c{word-spacing:4.515200pt;}
.ws54{word-spacing:4.621440pt;}
.ws7c{word-spacing:4.833920pt;}
.ws21{word-spacing:4.887040pt;}
.ws55{word-spacing:4.993280pt;}
.ws87{word-spacing:5.152640pt;}
.ws40{word-spacing:5.258880pt;}
.ws2e{word-spacing:5.418240pt;}
.ws70{word-spacing:5.471360pt;}
.ws2d{word-spacing:5.524480pt;}
.ws71{word-spacing:5.630720pt;}
.ws56{word-spacing:5.896320pt;}
.ws67{word-spacing:5.949440pt;}
.ws18{word-spacing:6.055680pt;}
.ws86{word-spacing:6.108800pt;}
.ws19{word-spacing:6.161920pt;}
.ws39{word-spacing:6.533760pt;}
.ws46{word-spacing:6.586880pt;}
.ws72{word-spacing:6.746240pt;}
.ws38{word-spacing:6.799360pt;}
.ws37{word-spacing:7.808640pt;}
.ws80{word-spacing:9.296000pt;}
.ws52{word-spacing:11.048960pt;}
.ws5f{word-spacing:21.525760pt;}
.ws5e{word-spacing:68.865280pt;}
._6{margin-left:-92.234880pt;}
._9{margin-left:-5.028032pt;}
._4{margin-left:-3.635840pt;}
._a{margin-left:-2.487680pt;}
._1{margin-left:-1.324800pt;}
._0{width:1.046976pt;}
._8{width:2.894464pt;}
._7{width:4.134528pt;}
._3{width:5.744832pt;}
._5{width:7.171200pt;}
._2{width:752.128000pt;}
._b{width:754.835200pt;}
.fsa{font-size:26.880000pt;}
.fs1{font-size:42.880000pt;}
.fsc{font-size:48.000000pt;}
.fsd{font-size:50.596443pt;}
.fs0{font-size:53.120000pt;}
.fs8{font-size:58.880000pt;}
.fs9{font-size:64.000000pt;}
.fs4{font-size:69.120000pt;}
.fs7{font-size:74.880000pt;}
.fs3{font-size:85.120000pt;}
.fs2{font-size:96.000000pt;}
.fse{font-size:101.120000pt;}
.fs6{font-size:117.120000pt;}
.fs5{font-size:144.000000pt;}
.fsb{font-size:160.000000pt;}
.y0{bottom:0.000000pt;}
.y35{bottom:2.880000pt;}
.yb7{bottom:3.200000pt;}
.y188{bottom:25.600000pt;}
.y54{bottom:25.604640pt;}
.y33{bottom:26.400000pt;}
.y2{bottom:31.680000pt;}
.y53{bottom:39.680000pt;}
.y34{bottom:40.160000pt;}
.y32{bottom:43.200000pt;}
.y111{bottom:76.168000pt;}
.yd6{bottom:77.342720pt;}
.y81{bottom:82.560000pt;}
.y15d{bottom:86.822720pt;}
.y110{bottom:93.764000pt;}
.yd5{bottom:94.938720pt;}
.y12d{bottom:104.336000pt;}
.y15c{bottom:104.418720pt;}
.y30{bottom:105.779360pt;}
.y10f{bottom:111.360000pt;}
.yd4{bottom:112.534720pt;}
.yb0{bottom:112.640000pt;}
.y12c{bottom:121.932000pt;}
.y15b{bottom:122.014720pt;}
.y2f{bottom:123.216000pt;}
.y80{bottom:124.320000pt;}
.y10e{bottom:128.832000pt;}
.yd3{bottom:129.971360pt;}
.yaf{bottom:130.314720pt;}
.y12b{bottom:139.528000pt;}
.y15a{bottom:139.610720pt;}
.y2e{bottom:140.812000pt;}
.yed{bottom:142.240000pt;}
.y10d{bottom:146.428000pt;}
.yd2{bottom:147.567360pt;}
.yae{bottom:147.910720pt;}
.y7f{bottom:149.803360pt;}
.y12a{bottom:157.124000pt;}
.y159{bottom:157.206720pt;}
.y2d{bottom:158.408000pt;}
.y10c{bottom:164.024000pt;}
.yd1{bottom:165.163360pt;}
.yad{bottom:165.506720pt;}
.yec{bottom:166.880640pt;}
.y7e{bottom:167.399360pt;}
.y129{bottom:174.720000pt;}
.y158{bottom:174.802720pt;}
.y2c{bottom:176.004000pt;}
.yeb{bottom:179.680320pt;}
.y10b{bottom:181.620000pt;}
.yd0{bottom:182.759360pt;}
.yac{bottom:183.102720pt;}
.y7d{bottom:184.995360pt;}
.y128{bottom:192.200000pt;}
.y157{bottom:192.239360pt;}
.yea{bottom:192.480000pt;}
.y2b{bottom:193.600000pt;}
.y10a{bottom:199.216000pt;}
.ycf{bottom:200.355360pt;}
.yab{bottom:200.698720pt;}
.y7c{bottom:202.591360pt;}
.y127{bottom:209.796000pt;}
.y156{bottom:209.835360pt;}
.y2a{bottom:212.640000pt;}
.y109{bottom:216.812000pt;}
.yce{bottom:217.951360pt;}
.yaa{bottom:218.294720pt;}
.ye9{bottom:218.560000pt;}
.y7b{bottom:220.187360pt;}
.y126{bottom:227.392000pt;}
.y155{bottom:227.431360pt;}
.y187{bottom:229.284000pt;}
.y108{bottom:234.408000pt;}
.ycd{bottom:235.547360pt;}
.y29{bottom:235.844000pt;}
.ya9{bottom:235.890720pt;}
.y7a{bottom:237.783360pt;}
.y125{bottom:244.988000pt;}
.y154{bottom:245.027360pt;}
.y186{bottom:246.880000pt;}
.y107{bottom:252.004000pt;}
.ycc{bottom:253.143360pt;}
.y28{bottom:253.440000pt;}
.ya8{bottom:253.486720pt;}
.y79{bottom:255.379360pt;}
.y124{bottom:262.584000pt;}
.y153{bottom:262.623360pt;}
.y185{bottom:264.336000pt;}
.y106{bottom:269.600000pt;}
.ycb{bottom:270.739360pt;}
.ya7{bottom:271.082720pt;}
.y78{bottom:272.975360pt;}
.y27{bottom:274.725440pt;}
.y123{bottom:280.180000pt;}
.y152{bottom:280.219360pt;}
.y184{bottom:281.932000pt;}
.y105{bottom:287.235360pt;}
.yca{bottom:288.335360pt;}
.ya6{bottom:288.519360pt;}
.y77{bottom:290.571360pt;}
.y122{bottom:297.776000pt;}
.y151{bottom:297.815360pt;}
.y183{bottom:299.528000pt;}
.y104{bottom:304.672000pt;}
.yc9{bottom:305.772000pt;}
.ya5{bottom:306.115360pt;}
.y76{bottom:308.167360pt;}
.y26{bottom:309.920000pt;}
.y121{bottom:315.372000pt;}
.y150{bottom:315.411360pt;}
.y182{bottom:317.124000pt;}
.y103{bottom:322.268000pt;}
.yc8{bottom:323.368000pt;}
.ya4{bottom:323.711360pt;}
.y75{bottom:325.763360pt;}
.y120{bottom:332.968000pt;}
.y14f{bottom:333.007360pt;}
.y181{bottom:334.720000pt;}
.y102{bottom:339.864000pt;}
.yc7{bottom:340.964000pt;}
.ya3{bottom:341.307360pt;}
.y74{bottom:343.200000pt;}
.y25{bottom:346.720000pt;}
.y11f{bottom:350.564000pt;}
.y14e{bottom:350.603360pt;}
.y101{bottom:357.460000pt;}
.yc6{bottom:358.560000pt;}
.ya2{bottom:358.903360pt;}
.y180{bottom:364.000000pt;}
.y11e{bottom:368.160000pt;}
.y14d{bottom:368.199360pt;}
.y100{bottom:375.056000pt;}
.y73{bottom:375.840000pt;}
.ya1{bottom:376.499360pt;}
.y11d{bottom:385.632000pt;}
.y14c{bottom:385.636000pt;}
.y24{bottom:389.920000pt;}
.yc5{bottom:391.200000pt;}
.yff{bottom:392.652000pt;}
.ya0{bottom:394.095360pt;}
.y52{bottom:394.720000pt;}
.y72{bottom:398.240000pt;}
.y17f{bottom:398.888000pt;}
.y11c{bottom:403.228000pt;}
.y14b{bottom:403.232000pt;}
.yc4{bottom:404.000320pt;}
.yfe{bottom:410.248000pt;}
.y9f{bottom:411.691360pt;}
.y51{bottom:415.840000pt;}
.y17e{bottom:416.484000pt;}
.yc3{bottom:416.800000pt;}
.y11b{bottom:420.824000pt;}
.y14a{bottom:420.828000pt;}
.yfd{bottom:427.844000pt;}
.y23{bottom:428.801280pt;}
.y9e{bottom:429.287360pt;}
.yc2{bottom:430.560000pt;}
.y17d{bottom:434.080000pt;}
.y71{bottom:435.680000pt;}
.y50{bottom:436.384800pt;}
.y11a{bottom:438.420000pt;}
.y149{bottom:438.424000pt;}
.yc1{bottom:444.480000pt;}
.yfc{bottom:445.440000pt;}
.y9d{bottom:446.883360pt;}
.y22{bottom:451.680000pt;}
.y17c{bottom:451.703360pt;}
.y4f{bottom:453.980800pt;}
.y119{bottom:456.016000pt;}
.y148{bottom:456.020000pt;}
.y70{bottom:461.327360pt;}
.yfb{bottom:463.090720pt;}
.y9c{bottom:464.320000pt;}
.y17b{bottom:469.140000pt;}
.y4e{bottom:471.417440pt;}
.y118{bottom:473.612000pt;}
.y147{bottom:473.616000pt;}
.y21{bottom:475.680000pt;}
.y6f{bottom:478.923360pt;}
.yfa{bottom:480.527360pt;}
.yc0{bottom:484.160000pt;}
.y17a{bottom:486.736000pt;}
.y4d{bottom:489.013440pt;}
.y117{bottom:491.208000pt;}
.y146{bottom:491.212000pt;}
.y6e{bottom:496.519360pt;}
.y9b{bottom:497.600000pt;}
.yf9{bottom:498.123360pt;}
.ybf{bottom:504.160000pt;}
.y179{bottom:504.332000pt;}
.y20{bottom:504.480000pt;}
.y4c{bottom:506.609440pt;}
.y116{bottom:508.804000pt;}
.y145{bottom:508.808000pt;}
.y6d{bottom:513.956000pt;}
.yf8{bottom:515.719360pt;}
.y178{bottom:521.928000pt;}
.ybe{bottom:524.000000pt;}
.y4b{bottom:524.205440pt;}
.y9a{bottom:524.238720pt;}
.y115{bottom:526.400000pt;}
.y144{bottom:526.404000pt;}
.y6c{bottom:531.552000pt;}
.yf7{bottom:533.315360pt;}
.y1f{bottom:533.390587pt;}
.y177{bottom:539.524000pt;}
.y4a{bottom:541.801440pt;}
.y99{bottom:541.834720pt;}
.ybd{bottom:543.840000pt;}
.y143{bottom:544.000000pt;}
.y114{bottom:544.003360pt;}
.y6b{bottom:549.148000pt;}
.yf6{bottom:550.911360pt;}
.y1e{bottom:550.986587pt;}
.y176{bottom:557.120000pt;}
.y49{bottom:559.397440pt;}
.y98{bottom:559.430720pt;}
.y113{bottom:561.440000pt;}
.ybc{bottom:563.680000pt;}
.y6a{bottom:566.744000pt;}
.yf5{bottom:568.507360pt;}
.y1d{bottom:568.582587pt;}
.y175{bottom:574.778720pt;}
.y97{bottom:576.867360pt;}
.y48{bottom:576.993440pt;}
.y142{bottom:577.120000pt;}
.ybb{bottom:583.520000pt;}
.y69{bottom:584.340000pt;}
.yf4{bottom:586.103360pt;}
.y1c{bottom:586.178587pt;}
.y174{bottom:592.374720pt;}
.y96{bottom:594.463360pt;}
.y47{bottom:594.589440pt;}
.y112{bottom:594.720000pt;}
.y68{bottom:601.936000pt;}
.yba{bottom:603.360000pt;}
.y141{bottom:603.684000pt;}
.yf3{bottom:603.699360pt;}
.y1b{bottom:603.774587pt;}
.y173{bottom:609.970720pt;}
.y95{bottom:612.059360pt;}
.y46{bottom:612.185440pt;}
.y67{bottom:619.532000pt;}
.y140{bottom:621.280000pt;}
.yf2{bottom:621.295360pt;}
.y1a{bottom:621.370587pt;}
.yb9{bottom:623.360000pt;}
.y172{bottom:627.566720pt;}
.y94{bottom:629.655360pt;}
.y45{bottom:629.781440pt;}
.y66{bottom:637.128000pt;}
.yf1{bottom:638.891360pt;}
.y13f{bottom:638.911360pt;}
.y19{bottom:638.966587pt;}
.yb8{bottom:643.200000pt;}
.y171{bottom:645.003360pt;}
.y44{bottom:647.218080pt;}
.y93{bottom:647.251360pt;}
.y65{bottom:654.724000pt;}
.yf0{bottom:656.487360pt;}
.y13e{bottom:656.507360pt;}
.y18{bottom:656.562587pt;}
.y170{bottom:662.599360pt;}
.yb6{bottom:663.040000pt;}
.y43{bottom:664.814080pt;}
.y92{bottom:664.847360pt;}
.y64{bottom:672.320000pt;}
.yef{bottom:673.924000pt;}
.y13d{bottom:673.944000pt;}
.y17{bottom:673.999227pt;}
.y16f{bottom:680.195360pt;}
.y42{bottom:682.410080pt;}
.y91{bottom:682.443360pt;}
.yb5{bottom:685.919867pt;}
.yee{bottom:691.520000pt;}
.y13c{bottom:691.540000pt;}
.y16{bottom:691.595227pt;}
.y16e{bottom:697.791360pt;}
.y41{bottom:700.006080pt;}
.y90{bottom:700.039360pt;}
.yb4{bottom:703.520000pt;}
.y63{bottom:704.800000pt;}
.y13b{bottom:709.136000pt;}
.y15{bottom:709.191227pt;}
.y16d{bottom:715.387360pt;}
.y40{bottom:717.602080pt;}
.y8f{bottom:717.635360pt;}
.yb3{bottom:720.160000pt;}
.y13a{bottom:726.732000pt;}
.y14{bottom:726.787227pt;}
.y62{bottom:727.200000pt;}
.y3f{bottom:731.519520pt;}
.yb2{bottom:732.960000pt;}
.y16c{bottom:732.983360pt;}
.y8e{bottom:735.231360pt;}
.y139{bottom:744.328000pt;}
.y13{bottom:744.383227pt;}
.y16b{bottom:750.579360pt;}
.yb1{bottom:750.880000pt;}
.y8d{bottom:752.827360pt;}
.ye8{bottom:761.907573pt;}
.y138{bottom:761.924000pt;}
.y12{bottom:761.979227pt;}
.y61{bottom:764.640000pt;}
.y16a{bottom:768.175360pt;}
.y8c{bottom:770.264000pt;}
.ye0{bottom:774.653653pt;}
.y137{bottom:779.520000pt;}
.y11{bottom:779.575227pt;}
.y60{bottom:780.320000pt;}
.y169{bottom:785.771360pt;}
.y8b{bottom:787.860000pt;}
.y5f{bottom:791.079360pt;}
.yd7{bottom:791.473333pt;}
.y136{bottom:797.151227pt;}
.y10{bottom:797.171227pt;}
.yd8{bottom:802.053973pt;}
.y168{bottom:803.367360pt;}
.y8a{bottom:805.456000pt;}
.y5e{bottom:808.675360pt;}
.ye1{bottom:809.922453pt;}
.yda{bottom:812.623893pt;}
.y135{bottom:814.747227pt;}
.yf{bottom:814.767227pt;}
.yd9{bottom:819.688373pt;}
.y167{bottom:820.963360pt;}
.y89{bottom:823.052000pt;}
.y5d{bottom:826.271360pt;}
.y134{bottom:832.343227pt;}
.ye{bottom:832.363227pt;}
.y166{bottom:838.400000pt;}
.y88{bottom:840.648000pt;}
.ydd{bottom:842.607733pt;}
.y5c{bottom:843.867360pt;}
.ye2{bottom:845.191253pt;}
.y133{bottom:849.779867pt;}
.yd{bottom:849.799867pt;}
.ydf{bottom:853.188373pt;}
.y3e{bottom:854.240000pt;}
.y165{bottom:856.000000pt;}
.y87{bottom:858.244000pt;}
.y5b{bottom:861.463360pt;}
.y132{bottom:867.375867pt;}
.yc{bottom:867.395867pt;}
.y3d{bottom:872.480000pt;}
.y164{bottom:873.620000pt;}
.y86{bottom:875.840000pt;}
.y5a{bottom:878.900000pt;}
.ye3{bottom:880.460053pt;}
.y131{bottom:884.971867pt;}
.yb{bottom:884.991867pt;}
.y163{bottom:891.216000pt;}
.y3c{bottom:893.600000pt;}
.y59{bottom:896.496000pt;}
.y130{bottom:902.567867pt;}
.yde{bottom:902.575413pt;}
.ya{bottom:902.587867pt;}
.y162{bottom:908.812000pt;}
.y85{bottom:908.960000pt;}
.y58{bottom:914.092000pt;}
.y3b{bottom:914.720000pt;}
.ydc{bottom:914.914133pt;}
.ye4{bottom:915.728853pt;}
.y18d{bottom:918.724000pt;}
.y12f{bottom:920.163867pt;}
.y9{bottom:920.183867pt;}
.y161{bottom:926.408000pt;}
.y57{bottom:931.688000pt;}
.y3a{bottom:935.840000pt;}
.y18c{bottom:936.320000pt;}
.y12e{bottom:937.759867pt;}
.y8{bottom:937.779867pt;}
.y160{bottom:944.004000pt;}
.y56{bottom:949.284000pt;}
.ye5{bottom:950.997653pt;}
.y84{bottom:951.040000pt;}
.y18b{bottom:955.200000pt;}
.y7{bottom:955.375867pt;}
.y39{bottom:956.960000pt;}
.y15f{bottom:961.600000pt;}
.y55{bottom:966.880000pt;}
.y6{bottom:972.971867pt;}
.y83{bottom:977.600000pt;}
.y38{bottom:977.920000pt;}
.y18a{bottom:985.120000pt;}
.ye6{bottom:986.266453pt;}
.y5{bottom:990.567867pt;}
.y15e{bottom:990.880000pt;}
.y37{bottom:999.360000pt;}
.y82{bottom:1001.440000pt;}
.ydb{bottom:1004.865653pt;}
.y4{bottom:1008.163867pt;}
.y189{bottom:1015.520000pt;}
.ye7{bottom:1021.535253pt;}
.y36{bottom:1021.759867pt;}
.y3{bottom:1025.759867pt;}
.y31{bottom:1044.004000pt;}
.y1{bottom:1061.600000pt;}
.ha{height:14.080000pt;}
.hf{height:19.200000pt;}
.hd{height:24.386250pt;}
.h12{height:30.820000pt;}
.h3{height:38.901875pt;}
.h10{height:43.546875pt;}
.h11{height:45.902437pt;}
.h2{height:48.191875pt;}
.h13{height:51.959840pt;}
.hc{height:57.803300pt;}
.hb{height:58.062500pt;}
.h6{height:62.707500pt;}
.h9{height:67.933125pt;}
.h5{height:77.223125pt;}
.h4{height:87.093750pt;}
.h14{height:91.738750pt;}
.h8{height:106.254375pt;}
.h7{height:130.640625pt;}
.he{height:145.156250pt;}
.h1{height:1122.666667pt;}
.h0{height:1122.720000pt;}
.w2{width:6.080000pt;}
.w4{width:86.400000pt;}
.w5{width:86.718667pt;}
.w3{width:343.361333pt;}
.w0{width:793.280000pt;}
.w1{width:793.333333pt;}
.x0{left:0.000000pt;}
.x5{left:4.640000pt;}
.x7{left:14.560000pt;}
.xc{left:18.720000pt;}
.xd{left:61.920000pt;}
.xa{left:68.640000pt;}
.xb{left:75.200000pt;}
.x1{left:83.200000pt;}
.x19{left:91.768907pt;}
.x18{left:97.697067pt;}
.x17{left:103.625227pt;}
.x1a{left:121.388267pt;}
.xe{left:130.232267pt;}
.x1d{left:194.080000pt;}
.x3{left:202.241920pt;}
.xf{left:217.289387pt;}
.x10{left:388.530667pt;}
.x1c{left:390.720000pt;}
.x2{left:393.600000pt;}
.x6{left:427.200000pt;}
.x11{left:475.587787pt;}
.x8{left:514.240000pt;}
.x12{left:530.592107pt;}
.x13{left:562.655627pt;}
.x14{left:591.674667pt;}
.x9{left:601.280000pt;}
.x15{left:620.693707pt;}
.x16{left:649.712747pt;}
.x1b{left:681.920000pt;}
.x4{left:685.120000pt;}
}




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