
    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_b53106ba36b4bf14dbd9c068.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.088379;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_18bdf7cecb215041d569c4d8.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.087891;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_b76394ac51ad2c3cb5b4c7dc.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.666504;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_e9b2ba09d7d1d082bbd3f159.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.863770;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_ab5738f08496b04e0e1916c2.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.432129;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_714d3d8fb6b6bf3506878d1f.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.765625;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_266430e1c612687fb68a91bd.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.922363;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_e9a06f172d7a2baa57c13534.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.ls23{letter-spacing:-1.059840px;}
.ls14{letter-spacing:-0.993600px;}
.ls38{letter-spacing:-0.794880px;}
.ls2d{letter-spacing:-0.728640px;}
.ls26{letter-spacing:-0.662400px;}
.ls12{letter-spacing:-0.596160px;}
.ls1a{letter-spacing:-0.397440px;}
.lsb{letter-spacing:-0.360000px;}
.ls1c{letter-spacing:-0.331200px;}
.ls15{letter-spacing:-0.264960px;}
.ls9{letter-spacing:-0.216000px;}
.ls1b{letter-spacing:-0.198720px;}
.lsa{letter-spacing:-0.144000px;}
.ls47{letter-spacing:-0.132480px;}
.lsd{letter-spacing:-0.119520px;}
.ls46{letter-spacing:-0.066240px;}
.lse{letter-spacing:-0.059760px;}
.ls2{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.019872px;}
.ls44{letter-spacing:0.059616px;}
.ls7{letter-spacing:0.066240px;}
.ls16{letter-spacing:0.132480px;}
.lsc{letter-spacing:0.179280px;}
.ls3a{letter-spacing:0.245088px;}
.ls30{letter-spacing:0.258336px;}
.ls13{letter-spacing:0.331200px;}
.lsf{letter-spacing:0.358560px;}
.ls3b{letter-spacing:0.397440px;}
.ls3c{letter-spacing:0.404064px;}
.ls29{letter-spacing:0.894240px;}
.ls8{letter-spacing:1.613520px;}
.ls2f{letter-spacing:2.509920px;}
.ls3d{letter-spacing:2.715840px;}
.ls32{letter-spacing:3.107520px;}
.ls24{letter-spacing:3.186000px;}
.ls3e{letter-spacing:3.240000px;}
.ls43{letter-spacing:3.391488px;}
.ls33{letter-spacing:3.424608px;}
.ls2a{letter-spacing:3.444480px;}
.ls34{letter-spacing:3.523968px;}
.ls40{letter-spacing:4.032000px;}
.ls22{letter-spacing:4.104000px;}
.ls25{letter-spacing:4.173120px;}
.ls2c{letter-spacing:4.176000px;}
.ls2e{letter-spacing:4.248000px;}
.ls41{letter-spacing:4.536000px;}
.ls36{letter-spacing:4.608000px;}
.ls37{letter-spacing:4.680000px;}
.ls21{letter-spacing:4.824000px;}
.ls10{letter-spacing:4.835520px;}
.ls11{letter-spacing:5.475600px;}
.ls45{letter-spacing:5.559840px;}
.ls19{letter-spacing:5.564160px;}
.ls5{letter-spacing:5.616000px;}
.ls20{letter-spacing:5.812560px;}
.ls35{letter-spacing:5.896800px;}
.ls6{letter-spacing:6.048000px;}
.ls0{letter-spacing:6.102000px;}
.ls1e{letter-spacing:6.292800px;}
.ls28{letter-spacing:7.021440px;}
.ls27{letter-spacing:9.936000px;}
.ls18{letter-spacing:10.101600px;}
.ls2b{letter-spacing:10.929600px;}
.ls3f{letter-spacing:11.121696px;}
.ls4{letter-spacing:14.888880px;}
.ls3{letter-spacing:15.152400px;}
.ls17{letter-spacing:24.045120px;}
.ls1d{letter-spacing:29.808000px;}
.ls39{letter-spacing:31.530240px;}
.ls1f{letter-spacing:37.756800px;}
.ls31{letter-spacing:39.214080px;}
.ls42{letter-spacing:59.351040px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws40{word-spacing:-66.240000px;}
.ws0{word-spacing:-43.876080px;}
.ws7b{word-spacing:-24.429600px;}
.ws97{word-spacing:-24.092640px;}
.ws11{word-spacing:-24.008400px;}
.ws5e{word-spacing:-20.088000px;}
.ws5b{word-spacing:-20.016000px;}
.ws41{word-spacing:-19.944000px;}
.ws95{word-spacing:-19.872000px;}
.ws1{word-spacing:-17.928000px;}
.wsb{word-spacing:-15.696000px;}
.ws8{word-spacing:-15.624000px;}
.ws9{word-spacing:-15.480000px;}
.ws8b{word-spacing:-15.120000px;}
.ws51{word-spacing:-15.066000px;}
.ws13{word-spacing:-14.904000px;}
.ws5c{word-spacing:-14.705280px;}
.ws3e{word-spacing:-14.639040px;}
.ws2{word-spacing:-14.592672px;}
.ws52{word-spacing:-14.572800px;}
.ws98{word-spacing:-14.506560px;}
.ws99{word-spacing:-14.440320px;}
.ws5f{word-spacing:-14.374080px;}
.ws7c{word-spacing:-14.307840px;}
.ws2c{word-spacing:-14.241600px;}
.ws3f{word-spacing:-14.175360px;}
.ws12{word-spacing:-13.976640px;}
.ws87{word-spacing:-13.910400px;}
.ws5d{word-spacing:-13.844160px;}
.wsa{word-spacing:-13.446000px;}
.ws4b{word-spacing:-3.186000px;}
.ws44{word-spacing:-1.258560px;}
.ws6{word-spacing:-0.993600px;}
.ws46{word-spacing:-0.927360px;}
.ws1a{word-spacing:-0.529920px;}
.ws48{word-spacing:-0.504000px;}
.ws70{word-spacing:-0.418320px;}
.ws81{word-spacing:-0.360000px;}
.ws2a{word-spacing:-0.331200px;}
.ws80{word-spacing:-0.288000px;}
.ws7{word-spacing:-0.264960px;}
.ws4{word-spacing:-0.263520px;}
.ws91{word-spacing:-0.216000px;}
.ws3a{word-spacing:-0.198720px;}
.wsf{word-spacing:-0.179280px;}
.ws85{word-spacing:-0.132480px;}
.ws2b{word-spacing:-0.066240px;}
.ws3{word-spacing:0.000000px;}
.ws53{word-spacing:0.066240px;}
.ws65{word-spacing:0.072000px;}
.ws42{word-spacing:0.084240px;}
.wse{word-spacing:0.119520px;}
.wsc{word-spacing:0.144000px;}
.ws36{word-spacing:0.198720px;}
.wsd{word-spacing:0.216000px;}
.ws79{word-spacing:0.264960px;}
.ws8f{word-spacing:0.288000px;}
.ws4e{word-spacing:0.331200px;}
.ws10{word-spacing:0.360000px;}
.ws2d{word-spacing:0.421200px;}
.ws1f{word-spacing:0.463680px;}
.ws5{word-spacing:0.486000px;}
.ws43{word-spacing:0.529920px;}
.ws1d{word-spacing:0.596160px;}
.ws59{word-spacing:0.662400px;}
.ws7e{word-spacing:0.728640px;}
.ws8a{word-spacing:0.794880px;}
.ws66{word-spacing:0.896400px;}
.ws88{word-spacing:0.927360px;}
.ws49{word-spacing:0.936000px;}
.ws94{word-spacing:0.993600px;}
.ws4a{word-spacing:1.059840px;}
.ws83{word-spacing:1.126080px;}
.ws82{word-spacing:1.192320px;}
.ws39{word-spacing:1.457280px;}
.ws30{word-spacing:1.656000px;}
.ws38{word-spacing:1.920960px;}
.ws47{word-spacing:2.384640px;}
.ws31{word-spacing:2.649600px;}
.ws6f{word-spacing:3.113280px;}
.ws4d{word-spacing:3.378240px;}
.ws4f{word-spacing:3.444480px;}
.ws90{word-spacing:3.709440px;}
.ws61{word-spacing:3.775680px;}
.ws89{word-spacing:3.974400px;}
.ws1b{word-spacing:4.040640px;}
.ws7a{word-spacing:4.106880px;}
.ws7f{word-spacing:4.173120px;}
.ws15{word-spacing:4.504320px;}
.ws14{word-spacing:4.769280px;}
.ws6e{word-spacing:4.835520px;}
.ws6d{word-spacing:5.232960px;}
.ws58{word-spacing:5.431680px;}
.ws18{word-spacing:5.497920px;}
.ws84{word-spacing:5.564160px;}
.ws16{word-spacing:5.829120px;}
.ws75{word-spacing:5.961600px;}
.ws92{word-spacing:6.160320px;}
.ws35{word-spacing:6.226560px;}
.ws67{word-spacing:6.888960px;}
.ws32{word-spacing:6.955200px;}
.ws74{word-spacing:7.683840px;}
.ws76{word-spacing:8.478720px;}
.ws77{word-spacing:9.074880px;}
.ws50{word-spacing:9.141120px;}
.ws9d{word-spacing:9.472320px;}
.ws3d{word-spacing:9.737280px;}
.ws3c{word-spacing:9.803520px;}
.ws72{word-spacing:10.267200px;}
.ws6b{word-spacing:10.532160px;}
.ws93{word-spacing:10.863360px;}
.ws29{word-spacing:10.995840px;}
.ws2e{word-spacing:11.194560px;}
.ws37{word-spacing:11.260800px;}
.ws73{word-spacing:11.327040px;}
.ws6a{word-spacing:11.724480px;}
.ws62{word-spacing:11.989440px;}
.ws28{word-spacing:12.453120px;}
.ws2f{word-spacing:12.718080px;}
.ws27{word-spacing:13.049280px;}
.ws86{word-spacing:13.181760px;}
.ws7d{word-spacing:13.446720px;}
.ws56{word-spacing:13.512960px;}
.ws55{word-spacing:14.109120px;}
.ws33{word-spacing:14.175360px;}
.ws9c{word-spacing:14.241600px;}
.ws57{word-spacing:14.506560px;}
.ws6c{word-spacing:14.639040px;}
.ws34{word-spacing:14.837760px;}
.ws54{word-spacing:15.566400px;}
.ws64{word-spacing:16.030080px;}
.ws19{word-spacing:16.295040px;}
.ws60{word-spacing:16.758720px;}
.ws17{word-spacing:17.023680px;}
.ws4c{word-spacing:17.487360px;}
.ws9f{word-spacing:17.752320px;}
.ws20{word-spacing:18.480960px;}
.ws1c{word-spacing:19.209600px;}
.ws96{word-spacing:19.938240px;}
.ws78{word-spacing:20.600640px;}
.ws5a{word-spacing:21.329280px;}
.ws45{word-spacing:21.395520px;}
.ws3b{word-spacing:22.057920px;}
.ws22{word-spacing:22.786560px;}
.ws24{word-spacing:23.250240px;}
.ws25{word-spacing:23.515200px;}
.ws23{word-spacing:25.701120px;}
.ws26{word-spacing:25.767360px;}
.ws68{word-spacing:27.754560px;}
.ws1e{word-spacing:27.820800px;}
.ws21{word-spacing:28.284480px;}
.ws69{word-spacing:28.483200px;}
.ws8e{word-spacing:30.735360px;}
.ws8c{word-spacing:31.397760px;}
.ws8d{word-spacing:31.464000px;}
.ws63{word-spacing:37.889280px;}
.ws71{word-spacing:66.769920px;}
.ws9b{word-spacing:99.823680px;}
.ws9a{word-spacing:100.552320px;}
.ws9e{word-spacing:2254.412160px;}
._4{margin-left:-12.960000px;}
._a{margin-left:-11.763072px;}
._6{margin-left:-9.611712px;}
._8{margin-left:-8.310528px;}
._3{margin-left:-7.166016px;}
._7{margin-left:-5.258880px;}
._9{margin-left:-4.130496px;}
._5{margin-left:-2.702016px;}
._1{margin-left:-1.417536px;}
._0{width:1.423008px;}
._b{width:3.325536px;}
._c{width:4.609440px;}
._11{width:6.336576px;}
._e{width:9.406080px;}
._f{width:10.904544px;}
._d{width:13.282272px;}
._10{width:30.902112px;}
._2{width:849.395520px;}
.fc5{color:transparent;}
.fc4{color:rgb(98,36,35);}
.fc2{color:rgb(99,36,35);}
.fc3{color:rgb(0,0,255);}
.fc1{color:rgb(192,80,77);}
.fc0{color:rgb(0,0,0);}
.fs2{font-size:54.000000px;}
.fs4{font-size:59.760000px;}
.fs0{font-size:66.240000px;}
.fs3{font-size:72.000000px;}
.fs5{font-size:84.240000px;}
.fs1{font-size:131.760000px;}
.y0{bottom:0.000000px;}
.y7d{bottom:0.180000px;}
.y3{bottom:1.260000px;}
.y75{bottom:3.240000px;}
.ydf{bottom:3.780000px;}
.yda{bottom:5.580000px;}
.y2{bottom:40.140000px;}
.y1{bottom:56.700000px;}
.y7b{bottom:117.200880px;}
.y8f{bottom:132.860880px;}
.y14f{bottom:136.995840px;}
.y8e{bottom:153.378720px;}
.y7a{bottom:155.355120px;}
.y14e{bottom:157.513680px;}
.y17{bottom:160.628400px;}
.y8d{bottom:173.532240px;}
.y79{bottom:175.872960px;}
.y14d{bottom:177.849360px;}
.y16{bottom:181.146240px;}
.y135{bottom:182.528640px;}
.yaf{bottom:183.265920px;}
.y78{bottom:196.208640px;}
.y15{bottom:201.481920px;}
.y134{bottom:202.864320px;}
.yae{bottom:203.783760px;}
.y8c{bottom:211.868640px;}
.y14c{bottom:216.003600px;}
.y77{bottom:216.544320px;}
.y14{bottom:221.817600px;}
.y133{bottom:223.200000px;}
.yad{bottom:224.119440px;}
.y8b{bottom:232.204320px;}
.y14b{bottom:236.521440px;}
.y76{bottom:236.880000px;}
.y13{bottom:242.153280px;}
.yac{bottom:244.272960px;}
.y8a{bottom:252.540000px;}
.y14a{bottom:257.767920px;}
.y132{bottom:264.060000px;}
.yab{bottom:264.608640px;}
.y74{bottom:270.540000px;}
.y12{bottom:277.260480px;}
.y149{bottom:277.921440px;}
.yc0{bottom:279.208080px;}
.yaa{bottom:284.944320px;}
.y89{bottom:286.200000px;}
.y73{bottom:286.380000px;}
.yd8{bottom:292.395600px;}
.ybf{bottom:299.725920px;}
.y88{bottom:302.040000px;}
.ya9{bottom:305.280000px;}
.y11{bottom:312.533280px;}
.yd7{bottom:312.913440px;}
.y131{bottom:315.736560px;}
.y148{bottom:316.986480px;}
.yd6{bottom:333.249120px;}
.y130{bottom:336.254400px;}
.y147{bottom:337.504320px;}
.ybe{bottom:337.880160px;}
.y11a{bottom:339.689520px;}
.ya8{bottom:343.639440px;}
.yf0{bottom:344.887200px;}
.y10{bottom:347.806080px;}
.yd5{bottom:353.584800px;}
.y146{bottom:357.840000px;}
.ybd{bottom:358.398000px;}
.y127{bottom:359.864640px;}
.y119{bottom:360.207360px;}
.ya7{bottom:363.975120px;}
.yd4{bottom:373.920480px;}
.y12f{bottom:374.408640px;}
.yef{bottom:380.160000px;}
.y118{bottom:380.360880px;}
.y126{bottom:380.382480px;}
.yf{bottom:383.078880px;}
.ya6{bottom:384.128640px;}
.y10a{bottom:384.147360px;}
.y40{bottom:385.747200px;}
.ye8{bottom:387.570960px;}
.yd3{bottom:394.074000px;}
.y12e{bottom:394.926480px;}
.ybc{bottom:396.552240px;}
.y145{bottom:398.700000px;}
.y117{bottom:400.696560px;}
.y125{bottom:400.718160px;}
.y5c{bottom:400.882320px;}
.ya5{bottom:404.464320px;}
.y109{bottom:404.665200px;}
.ye7{bottom:408.088800px;}
.y13d{bottom:412.746480px;}
.yee{bottom:414.000000px;}
.yd2{bottom:414.409680px;}
.y12d{bottom:415.080000px;}
.ybb{bottom:416.887920px;}
.ye{bottom:418.533840px;}
.y3f{bottom:421.020000px;}
.y116{bottom:421.032240px;}
.y124{bottom:421.053840px;}
.ya4{bottom:424.800000px;}
.y108{bottom:425.000880px;}
.ye6{bottom:428.242320px;}
.yed{bottom:429.840000px;}
.y13c{bottom:433.264320px;}
.yd1{bottom:434.745360px;}
.y5b{bottom:436.337280px;}
.y123{bottom:441.207360px;}
.y107{bottom:445.336560px;}
.y144{bottom:450.552240px;}
.y13b{bottom:453.600000px;}
.yd{bottom:453.806640px;}
.yba{bottom:455.042160px;}
.yd0{bottom:455.081040px;}
.y12c{bottom:456.120000px;}
.y3e{bottom:456.375600px;}
.y5a{bottom:456.672960px;}
.y115{bottom:459.186480px;}
.y122{bottom:461.543040px;}
.y106{bottom:465.672240px;}
.ye5{bottom:466.396560px;}
.y72{bottom:468.362160px;}
.ycf{bottom:475.416720px;}
.ya3{bottom:475.560000px;}
.y3d{bottom:476.893440px;}
.y59{bottom:477.008640px;}
.y114{bottom:479.704320px;}
.y105{bottom:485.825760px;}
.ye4{bottom:486.914400px;}
.y13a{bottom:487.260000px;}
.y143{bottom:488.706480px;}
.y71{bottom:488.880000px;}
.yc{bottom:489.079440px;}
.yce{bottom:495.752400px;}
.y3c{bottom:497.229120px;}
.y58{bottom:497.344320px;}
.y121{bottom:499.697280px;}
.y113{bottom:500.040000px;}
.y139{bottom:503.100000px;}
.y12b{bottom:507.782160px;}
.y141{bottom:509.042160px;}
.y142{bottom:509.224320px;}
.yb9{bottom:515.520000px;}
.ycd{bottom:516.088080px;}
.y57{bottom:517.680000px;}
.y112{bottom:520.200000px;}
.y120{bottom:520.215120px;}
.y104{bottom:523.980000px;}
.yb{bottom:524.352240px;}
.ye3{bottom:525.068640px;}
.y70{bottom:526.680000px;}
.y12a{bottom:528.300000px;}
.y140{bottom:529.560000px;}
.y3b{bottom:532.336320px;}
.ya2{bottom:533.702160px;}
.ycc{bottom:536.241600px;}
.y56{bottom:538.028640px;}
.y11f{bottom:540.550800px;}
.y103{bottom:544.504320px;}
.ye2{bottom:545.586480px;}
.y25{bottom:551.162880px;}
.y3a{bottom:552.854160px;}
.ya1{bottom:554.220000px;}
.ycb{bottom:556.577280px;}
.y55{bottom:558.364320px;}
.y111{bottom:558.374400px;}
.yb8{bottom:559.268640px;}
.ya{bottom:559.625040px;}
.y11e{bottom:560.886480px;}
.y129{bottom:561.960000px;}
.y13f{bottom:563.220000px;}
.y102{bottom:564.840000px;}
.ye1{bottom:565.740000px;}
.y39{bottom:573.189840px;}
.yca{bottom:576.912960px;}
.y128{bottom:577.800000px;}
.y6f{bottom:578.544480px;}
.y54{bottom:578.700000px;}
.y110{bottom:578.892240px;}
.y13e{bottom:579.060000px;}
.yb7{bottom:579.604320px;}
.y11d{bottom:581.040000px;}
.y24{bottom:586.435680px;}
.y38{bottom:593.525520px;}
.y9{bottom:595.080000px;}
.yc9{bottom:597.248640px;}
.y6e{bottom:598.880160px;}
.yb6{bottom:599.940000px;}
.y101{bottom:603.004320px;}
.ye0{bottom:605.880000px;}
.y23{bottom:607.500000px;}
.y53{bottom:613.820880px;}
.y11c{bottom:614.700000px;}
.y10f{bottom:617.046480px;}
.yc8{bottom:617.584320px;}
.yb5{bottom:620.290800px;}
.y100{bottom:623.340000px;}
.y37{bottom:628.632720px;}
.y11b{bottom:630.540000px;}
.y6d{bottom:634.152960px;}
.y52{bottom:634.338720px;}
.y10e{bottom:637.564320px;}
.yc7{bottom:637.920000px;}
.yb4{bottom:640.626480px;}
.y164{bottom:644.774400px;}
.yde{bottom:644.940000px;}
.ya0{bottom:646.773120px;}
.y36{bottom:649.150560px;}
.y6c{bottom:654.488640px;}
.y87{bottom:654.874560px;}
.y8{bottom:655.920000px;}
.y22{bottom:656.460000px;}
.y10d{bottom:657.900000px;}
.yc6{bottom:658.087920px;}
.yb3{bottom:660.780000px;}
.yff{bottom:661.506480px;}
.ydd{bottom:664.380000px;}
.y9f{bottom:667.290960px;}
.y35{bottom:669.304080px;}
.y51{bottom:669.445920px;}
.y6b{bottom:674.824320px;}
.y86{bottom:675.210240px;}
.y163{bottom:680.047200px;}
.ydb{bottom:680.220000px;}
.yfe{bottom:682.024320px;}
.y50{bottom:689.963760px;}
.y10c{bottom:691.560000px;}
.y21{bottom:693.720000px;}
.y6a{bottom:695.160000px;}
.yc5{bottom:696.242160px;}
.yb2{bottom:699.120000px;}
.yfd{bottom:702.360000px;}
.y34{bottom:704.576880px;}
.y9e{bottom:705.445200px;}
.y10b{bottom:707.400000px;}
.y7{bottom:707.935500px;}
.y4f{bottom:710.117280px;}
.y85{bottom:713.546640px;}
.y162{bottom:715.320000px;}
.yec{bottom:715.862160px;}
.yc4{bottom:716.760000px;}
.y33{bottom:724.912560px;}
.y9d{bottom:725.963040px;}
.y69{bottom:730.260000px;}
.y4e{bottom:730.452960px;}
.y20{bottom:730.980000px;}
.yb1{bottom:732.960000px;}
.y161{bottom:735.839280px;}
.yeb{bottom:736.380000px;}
.yfc{bottom:743.220000px;}
.y32{bottom:745.248240px;}
.y9c{bottom:746.298720px;}
.y6{bottom:746.640000px;}
.yb0{bottom:748.800000px;}
.y68{bottom:750.780720px;}
.y4d{bottom:750.788640px;}
.y84{bottom:751.700880px;}
.y160{bottom:756.174960px;}
.yc3{bottom:756.900000px;}
.y31{bottom:765.583920px;}
.y9b{bottom:766.634400px;}
.y1f{bottom:768.240000px;}
.yea{bottom:770.040000px;}
.ydc{bottom:770.220000px;}
.y67{bottom:771.116400px;}
.y83{bottom:772.218720px;}
.ye9{bottom:785.880000px;}
.y4c{bottom:785.895840px;}
.y30{bottom:785.919600px;}
.y9a{bottom:786.787920px;}
.y15f{bottom:791.282160px;}
.y66{bottom:791.452080px;}
.y82{bottom:792.554400px;}
.yfb{bottom:794.892960px;}
.yc2{bottom:795.960000px;}
.y1e{bottom:805.500000px;}
.y2f{bottom:806.255280px;}
.y4b{bottom:806.413680px;}
.y99{bottom:807.123600px;}
.yc1{bottom:811.800000px;}
.y81{bottom:812.707920px;}
.yfa{bottom:815.410800px;}
.y5{bottom:815.580000px;}
.y65{bottom:826.559280px;}
.y2e{bottom:826.590960px;}
.y4a{bottom:826.749360px;}
.yf9{bottom:835.746480px;}
.y98{bottom:845.460000px;}
.y2d{bottom:846.744480px;}
.y15e{bottom:846.900000px;}
.y64{bottom:847.077120px;}
.y80{bottom:850.862160px;}
.y1d{bottom:854.640000px;}
.yf8{bottom:855.900000px;}
.y49{bottom:861.856560px;}
.y63{bottom:867.412800px;}
.y15d{bottom:867.420000px;}
.y7f{bottom:871.380000px;}
.y2c{bottom:882.017280px;}
.y48{bottom:882.374400px;}
.y97{bottom:883.645200px;}
.y15c{bottom:887.580000px;}
.y1c{bottom:891.720000px;}
.yf7{bottom:894.248640px;}
.yd9{bottom:900.720000px;}
.y62{bottom:902.520000px;}
.y2b{bottom:902.535120px;}
.y96{bottom:904.163040px;}
.y7e{bottom:905.040000px;}
.y155{bottom:905.791680px;}
.y15b{bottom:907.924320px;}
.yf6{bottom:914.584320px;}
.y47{bottom:917.481600px;}
.y7c{bottom:920.880000px;}
.y2a{bottom:922.688640px;}
.y61{bottom:923.040000px;}
.y95{bottom:924.498720px;}
.y15a{bottom:928.260000px;}
.y1b{bottom:928.980000px;}
.yf5{bottom:934.920000px;}
.y46{bottom:937.999440px;}
.y29{bottom:943.024320px;}
.y60{bottom:943.200000px;}
.y154{bottom:944.128080px;}
.y94{bottom:944.652240px;}
.yf4{bottom:955.275120px;}
.y45{bottom:958.335120px;}
.y28{bottom:963.360000px;}
.y159{bottom:963.366480px;}
.y5f{bottom:963.540000px;}
.y153{bottom:964.463760px;}
.y1a{bottom:966.240000px;}
.yf3{bottom:975.610800px;}
.y44{bottom:978.670800px;}
.y93{bottom:982.806480px;}
.y5e{bottom:983.880000px;}
.y158{bottom:983.884320px;}
.y152{bottom:984.799440px;}
.yf2{bottom:995.946480px;}
.y43{bottom:998.824320px;}
.y92{bottom:1003.324320px;}
.y157{bottom:1004.220000px;}
.y151{bottom:1005.135120px;}
.y27{bottom:1005.840000px;}
.y4{bottom:1011.240000px;}
.y19{bottom:1015.380000px;}
.yf1{bottom:1016.100000px;}
.y5d{bottom:1018.980000px;}
.y42{bottom:1019.160000px;}
.y91{bottom:1023.660000px;}
.y138{bottom:1025.288640px;}
.y150{bottom:1025.470800px;}
.y137{bottom:1045.806480px;}
.y156{bottom:1046.700000px;}
.y41{bottom:1061.640000px;}
.y26{bottom:1062.000000px;}
.y90{bottom:1064.520000px;}
.y18{bottom:1064.700000px;}
.y136{bottom:1065.960000px;}
.hc{height:15.840000px;}
.h11{height:15.841500px;}
.h2{height:17.100000px;}
.h15{height:19.440000px;}
.hf{height:42.077109px;}
.h7{height:44.149219px;}
.h5{height:46.986328px;}
.h1{height:57.636562px;}
.h1d{height:57.639443px;}
.h3{height:58.154062px;}
.ha{height:62.648438px;}
.h6{height:63.210938px;}
.h9{height:69.086250px;}
.h8{height:73.298672px;}
.h4{height:114.646641px;}
.hd{height:160.920000px;}
.hb{height:162.540000px;}
.h13{height:181.080000px;}
.h14{height:220.500000px;}
.h17{height:266.580000px;}
.h12{height:270.000000px;}
.h16{height:295.920000px;}
.h10{height:332.998500px;}
.he{height:333.180000px;}
.h18{height:374.400000px;}
.h19{height:451.258500px;}
.h1b{height:502.740000px;}
.h1a{height:504.000000px;}
.h1c{height:1187.971500px;}
.h0{height:1188.000000px;}
.w1{width:74.701500px;}
.w4{width:338.400000px;}
.w3{width:340.560000px;}
.w2{width:673.380000px;}
.w5{width:678.961500px;}
.w6{width:917.926500px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x25{left:8.100000px;}
.x1f{left:27.540000px;}
.x3{left:32.400000px;}
.x15{left:119.520000px;}
.x1{left:127.620000px;}
.x30{left:141.840000px;}
.x13{left:154.629360px;}
.x6{left:160.020000px;}
.x12{left:169.560000px;}
.xf{left:171.000000px;}
.x10{left:181.614960px;}
.x2a{left:187.740000px;}
.x31{left:204.120000px;}
.x14{left:224.100000px;}
.x32{left:266.400000px;}
.x1a{left:270.900000px;}
.x29{left:288.720000px;}
.x2d{left:301.680000px;}
.x2f{left:304.380000px;}
.x11{left:305.820000px;}
.x24{left:308.520000px;}
.x19{left:330.840000px;}
.xe{left:332.640000px;}
.x22{left:337.680000px;}
.x23{left:338.760000px;}
.x20{left:339.840000px;}
.x7{left:367.377300px;}
.x1b{left:369.540000px;}
.xd{left:376.740000px;}
.x8{left:378.720000px;}
.x33{left:385.740000px;}
.x26{left:394.380000px;}
.x1e{left:415.800000px;}
.x2{left:420.840000px;}
.x4{left:459.000000px;}
.x21{left:460.080000px;}
.x18{left:564.300000px;}
.x16{left:578.520000px;}
.x17{left:579.600000px;}
.x27{left:592.020000px;}
.x1c{left:595.440000px;}
.x2b{left:601.380000px;}
.x5{left:615.240000px;}
.x9{left:619.203600px;}
.x1d{left:623.520000px;}
.xa{left:628.377840px;}
.x28{left:629.640000px;}
.x2c{left:637.380000px;}
.x2e{left:678.600000px;}
.xb{left:753.836400px;}
.xc{left:790.367760px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls23{letter-spacing:-0.942080pt;}
.ls14{letter-spacing:-0.883200pt;}
.ls38{letter-spacing:-0.706560pt;}
.ls2d{letter-spacing:-0.647680pt;}
.ls26{letter-spacing:-0.588800pt;}
.ls12{letter-spacing:-0.529920pt;}
.ls1a{letter-spacing:-0.353280pt;}
.lsb{letter-spacing:-0.320000pt;}
.ls1c{letter-spacing:-0.294400pt;}
.ls15{letter-spacing:-0.235520pt;}
.ls9{letter-spacing:-0.192000pt;}
.ls1b{letter-spacing:-0.176640pt;}
.lsa{letter-spacing:-0.128000pt;}
.ls47{letter-spacing:-0.117760pt;}
.lsd{letter-spacing:-0.106240pt;}
.ls46{letter-spacing:-0.058880pt;}
.lse{letter-spacing:-0.053120pt;}
.ls2{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.017664pt;}
.ls44{letter-spacing:0.052992pt;}
.ls7{letter-spacing:0.058880pt;}
.ls16{letter-spacing:0.117760pt;}
.lsc{letter-spacing:0.159360pt;}
.ls3a{letter-spacing:0.217856pt;}
.ls30{letter-spacing:0.229632pt;}
.ls13{letter-spacing:0.294400pt;}
.lsf{letter-spacing:0.318720pt;}
.ls3b{letter-spacing:0.353280pt;}
.ls3c{letter-spacing:0.359168pt;}
.ls29{letter-spacing:0.794880pt;}
.ls8{letter-spacing:1.434240pt;}
.ls2f{letter-spacing:2.231040pt;}
.ls3d{letter-spacing:2.414080pt;}
.ls32{letter-spacing:2.762240pt;}
.ls24{letter-spacing:2.832000pt;}
.ls3e{letter-spacing:2.880000pt;}
.ls43{letter-spacing:3.014656pt;}
.ls33{letter-spacing:3.044096pt;}
.ls2a{letter-spacing:3.061760pt;}
.ls34{letter-spacing:3.132416pt;}
.ls40{letter-spacing:3.584000pt;}
.ls22{letter-spacing:3.648000pt;}
.ls25{letter-spacing:3.709440pt;}
.ls2c{letter-spacing:3.712000pt;}
.ls2e{letter-spacing:3.776000pt;}
.ls41{letter-spacing:4.032000pt;}
.ls36{letter-spacing:4.096000pt;}
.ls37{letter-spacing:4.160000pt;}
.ls21{letter-spacing:4.288000pt;}
.ls10{letter-spacing:4.298240pt;}
.ls11{letter-spacing:4.867200pt;}
.ls45{letter-spacing:4.942080pt;}
.ls19{letter-spacing:4.945920pt;}
.ls5{letter-spacing:4.992000pt;}
.ls20{letter-spacing:5.166720pt;}
.ls35{letter-spacing:5.241600pt;}
.ls6{letter-spacing:5.376000pt;}
.ls0{letter-spacing:5.424000pt;}
.ls1e{letter-spacing:5.593600pt;}
.ls28{letter-spacing:6.241280pt;}
.ls27{letter-spacing:8.832000pt;}
.ls18{letter-spacing:8.979200pt;}
.ls2b{letter-spacing:9.715200pt;}
.ls3f{letter-spacing:9.885952pt;}
.ls4{letter-spacing:13.234560pt;}
.ls3{letter-spacing:13.468800pt;}
.ls17{letter-spacing:21.373440pt;}
.ls1d{letter-spacing:26.496000pt;}
.ls39{letter-spacing:28.026880pt;}
.ls1f{letter-spacing:33.561600pt;}
.ls31{letter-spacing:34.856960pt;}
.ls42{letter-spacing:52.756480pt;}
.ws40{word-spacing:-58.880000pt;}
.ws0{word-spacing:-39.000960pt;}
.ws7b{word-spacing:-21.715200pt;}
.ws97{word-spacing:-21.415680pt;}
.ws11{word-spacing:-21.340800pt;}
.ws5e{word-spacing:-17.856000pt;}
.ws5b{word-spacing:-17.792000pt;}
.ws41{word-spacing:-17.728000pt;}
.ws95{word-spacing:-17.664000pt;}
.ws1{word-spacing:-15.936000pt;}
.wsb{word-spacing:-13.952000pt;}
.ws8{word-spacing:-13.888000pt;}
.ws9{word-spacing:-13.760000pt;}
.ws8b{word-spacing:-13.440000pt;}
.ws51{word-spacing:-13.392000pt;}
.ws13{word-spacing:-13.248000pt;}
.ws5c{word-spacing:-13.071360pt;}
.ws3e{word-spacing:-13.012480pt;}
.ws2{word-spacing:-12.971264pt;}
.ws52{word-spacing:-12.953600pt;}
.ws98{word-spacing:-12.894720pt;}
.ws99{word-spacing:-12.835840pt;}
.ws5f{word-spacing:-12.776960pt;}
.ws7c{word-spacing:-12.718080pt;}
.ws2c{word-spacing:-12.659200pt;}
.ws3f{word-spacing:-12.600320pt;}
.ws12{word-spacing:-12.423680pt;}
.ws87{word-spacing:-12.364800pt;}
.ws5d{word-spacing:-12.305920pt;}
.wsa{word-spacing:-11.952000pt;}
.ws4b{word-spacing:-2.832000pt;}
.ws44{word-spacing:-1.118720pt;}
.ws6{word-spacing:-0.883200pt;}
.ws46{word-spacing:-0.824320pt;}
.ws1a{word-spacing:-0.471040pt;}
.ws48{word-spacing:-0.448000pt;}
.ws70{word-spacing:-0.371840pt;}
.ws81{word-spacing:-0.320000pt;}
.ws2a{word-spacing:-0.294400pt;}
.ws80{word-spacing:-0.256000pt;}
.ws7{word-spacing:-0.235520pt;}
.ws4{word-spacing:-0.234240pt;}
.ws91{word-spacing:-0.192000pt;}
.ws3a{word-spacing:-0.176640pt;}
.wsf{word-spacing:-0.159360pt;}
.ws85{word-spacing:-0.117760pt;}
.ws2b{word-spacing:-0.058880pt;}
.ws3{word-spacing:0.000000pt;}
.ws53{word-spacing:0.058880pt;}
.ws65{word-spacing:0.064000pt;}
.ws42{word-spacing:0.074880pt;}
.wse{word-spacing:0.106240pt;}
.wsc{word-spacing:0.128000pt;}
.ws36{word-spacing:0.176640pt;}
.wsd{word-spacing:0.192000pt;}
.ws79{word-spacing:0.235520pt;}
.ws8f{word-spacing:0.256000pt;}
.ws4e{word-spacing:0.294400pt;}
.ws10{word-spacing:0.320000pt;}
.ws2d{word-spacing:0.374400pt;}
.ws1f{word-spacing:0.412160pt;}
.ws5{word-spacing:0.432000pt;}
.ws43{word-spacing:0.471040pt;}
.ws1d{word-spacing:0.529920pt;}
.ws59{word-spacing:0.588800pt;}
.ws7e{word-spacing:0.647680pt;}
.ws8a{word-spacing:0.706560pt;}
.ws66{word-spacing:0.796800pt;}
.ws88{word-spacing:0.824320pt;}
.ws49{word-spacing:0.832000pt;}
.ws94{word-spacing:0.883200pt;}
.ws4a{word-spacing:0.942080pt;}
.ws83{word-spacing:1.000960pt;}
.ws82{word-spacing:1.059840pt;}
.ws39{word-spacing:1.295360pt;}
.ws30{word-spacing:1.472000pt;}
.ws38{word-spacing:1.707520pt;}
.ws47{word-spacing:2.119680pt;}
.ws31{word-spacing:2.355200pt;}
.ws6f{word-spacing:2.767360pt;}
.ws4d{word-spacing:3.002880pt;}
.ws4f{word-spacing:3.061760pt;}
.ws90{word-spacing:3.297280pt;}
.ws61{word-spacing:3.356160pt;}
.ws89{word-spacing:3.532800pt;}
.ws1b{word-spacing:3.591680pt;}
.ws7a{word-spacing:3.650560pt;}
.ws7f{word-spacing:3.709440pt;}
.ws15{word-spacing:4.003840pt;}
.ws14{word-spacing:4.239360pt;}
.ws6e{word-spacing:4.298240pt;}
.ws6d{word-spacing:4.651520pt;}
.ws58{word-spacing:4.828160pt;}
.ws18{word-spacing:4.887040pt;}
.ws84{word-spacing:4.945920pt;}
.ws16{word-spacing:5.181440pt;}
.ws75{word-spacing:5.299200pt;}
.ws92{word-spacing:5.475840pt;}
.ws35{word-spacing:5.534720pt;}
.ws67{word-spacing:6.123520pt;}
.ws32{word-spacing:6.182400pt;}
.ws74{word-spacing:6.830080pt;}
.ws76{word-spacing:7.536640pt;}
.ws77{word-spacing:8.066560pt;}
.ws50{word-spacing:8.125440pt;}
.ws9d{word-spacing:8.419840pt;}
.ws3d{word-spacing:8.655360pt;}
.ws3c{word-spacing:8.714240pt;}
.ws72{word-spacing:9.126400pt;}
.ws6b{word-spacing:9.361920pt;}
.ws93{word-spacing:9.656320pt;}
.ws29{word-spacing:9.774080pt;}
.ws2e{word-spacing:9.950720pt;}
.ws37{word-spacing:10.009600pt;}
.ws73{word-spacing:10.068480pt;}
.ws6a{word-spacing:10.421760pt;}
.ws62{word-spacing:10.657280pt;}
.ws28{word-spacing:11.069440pt;}
.ws2f{word-spacing:11.304960pt;}
.ws27{word-spacing:11.599360pt;}
.ws86{word-spacing:11.717120pt;}
.ws7d{word-spacing:11.952640pt;}
.ws56{word-spacing:12.011520pt;}
.ws55{word-spacing:12.541440pt;}
.ws33{word-spacing:12.600320pt;}
.ws9c{word-spacing:12.659200pt;}
.ws57{word-spacing:12.894720pt;}
.ws6c{word-spacing:13.012480pt;}
.ws34{word-spacing:13.189120pt;}
.ws54{word-spacing:13.836800pt;}
.ws64{word-spacing:14.248960pt;}
.ws19{word-spacing:14.484480pt;}
.ws60{word-spacing:14.896640pt;}
.ws17{word-spacing:15.132160pt;}
.ws4c{word-spacing:15.544320pt;}
.ws9f{word-spacing:15.779840pt;}
.ws20{word-spacing:16.427520pt;}
.ws1c{word-spacing:17.075200pt;}
.ws96{word-spacing:17.722880pt;}
.ws78{word-spacing:18.311680pt;}
.ws5a{word-spacing:18.959360pt;}
.ws45{word-spacing:19.018240pt;}
.ws3b{word-spacing:19.607040pt;}
.ws22{word-spacing:20.254720pt;}
.ws24{word-spacing:20.666880pt;}
.ws25{word-spacing:20.902400pt;}
.ws23{word-spacing:22.845440pt;}
.ws26{word-spacing:22.904320pt;}
.ws68{word-spacing:24.670720pt;}
.ws1e{word-spacing:24.729600pt;}
.ws21{word-spacing:25.141760pt;}
.ws69{word-spacing:25.318400pt;}
.ws8e{word-spacing:27.320320pt;}
.ws8c{word-spacing:27.909120pt;}
.ws8d{word-spacing:27.968000pt;}
.ws63{word-spacing:33.679360pt;}
.ws71{word-spacing:59.351040pt;}
.ws9b{word-spacing:88.732160pt;}
.ws9a{word-spacing:89.379840pt;}
.ws9e{word-spacing:2003.921920pt;}
._4{margin-left:-11.520000pt;}
._a{margin-left:-10.456064pt;}
._6{margin-left:-8.543744pt;}
._8{margin-left:-7.387136pt;}
._3{margin-left:-6.369792pt;}
._7{margin-left:-4.674560pt;}
._9{margin-left:-3.671552pt;}
._5{margin-left:-2.401792pt;}
._1{margin-left:-1.260032pt;}
._0{width:1.264896pt;}
._b{width:2.956032pt;}
._c{width:4.097280pt;}
._11{width:5.632512pt;}
._e{width:8.360960pt;}
._f{width:9.692928pt;}
._d{width:11.806464pt;}
._10{width:27.468544pt;}
._2{width:755.018240pt;}
.fs2{font-size:48.000000pt;}
.fs4{font-size:53.120000pt;}
.fs0{font-size:58.880000pt;}
.fs3{font-size:64.000000pt;}
.fs5{font-size:74.880000pt;}
.fs1{font-size:117.120000pt;}
.y0{bottom:0.000000pt;}
.y7d{bottom:0.160000pt;}
.y3{bottom:1.120000pt;}
.y75{bottom:2.880000pt;}
.ydf{bottom:3.360000pt;}
.yda{bottom:4.960000pt;}
.y2{bottom:35.680000pt;}
.y1{bottom:50.400000pt;}
.y7b{bottom:104.178560pt;}
.y8f{bottom:118.098560pt;}
.y14f{bottom:121.774080pt;}
.y8e{bottom:136.336640pt;}
.y7a{bottom:138.093440pt;}
.y14e{bottom:140.012160pt;}
.y17{bottom:142.780800pt;}
.y8d{bottom:154.250880pt;}
.y79{bottom:156.331520pt;}
.y14d{bottom:158.088320pt;}
.y16{bottom:161.018880pt;}
.y135{bottom:162.247680pt;}
.yaf{bottom:162.903040pt;}
.y78{bottom:174.407680pt;}
.y15{bottom:179.095040pt;}
.y134{bottom:180.323840pt;}
.yae{bottom:181.141120pt;}
.y8c{bottom:188.327680pt;}
.y14c{bottom:192.003200pt;}
.y77{bottom:192.483840pt;}
.y14{bottom:197.171200pt;}
.y133{bottom:198.400000pt;}
.yad{bottom:199.217280pt;}
.y8b{bottom:206.403840pt;}
.y14b{bottom:210.241280pt;}
.y76{bottom:210.560000pt;}
.y13{bottom:215.247360pt;}
.yac{bottom:217.131520pt;}
.y8a{bottom:224.480000pt;}
.y14a{bottom:229.127040pt;}
.y132{bottom:234.720000pt;}
.yab{bottom:235.207680pt;}
.y74{bottom:240.480000pt;}
.y12{bottom:246.453760pt;}
.y149{bottom:247.041280pt;}
.yc0{bottom:248.184960pt;}
.yaa{bottom:253.283840pt;}
.y89{bottom:254.400000pt;}
.y73{bottom:254.560000pt;}
.yd8{bottom:259.907200pt;}
.ybf{bottom:266.423040pt;}
.y88{bottom:268.480000pt;}
.ya9{bottom:271.360000pt;}
.y11{bottom:277.807360pt;}
.yd7{bottom:278.145280pt;}
.y131{bottom:280.654720pt;}
.y148{bottom:281.765760pt;}
.yd6{bottom:296.221440pt;}
.y130{bottom:298.892800pt;}
.y147{bottom:300.003840pt;}
.ybe{bottom:300.337920pt;}
.y11a{bottom:301.946240pt;}
.ya8{bottom:305.457280pt;}
.yf0{bottom:306.566400pt;}
.y10{bottom:309.160960pt;}
.yd5{bottom:314.297600pt;}
.y146{bottom:318.080000pt;}
.ybd{bottom:318.576000pt;}
.y127{bottom:319.879680pt;}
.y119{bottom:320.184320pt;}
.ya7{bottom:323.533440pt;}
.yd4{bottom:332.373760pt;}
.y12f{bottom:332.807680pt;}
.yef{bottom:337.920000pt;}
.y118{bottom:338.098560pt;}
.y126{bottom:338.117760pt;}
.yf{bottom:340.514560pt;}
.ya6{bottom:341.447680pt;}
.y10a{bottom:341.464320pt;}
.y40{bottom:342.886400pt;}
.ye8{bottom:344.507520pt;}
.yd3{bottom:350.288000pt;}
.y12e{bottom:351.045760pt;}
.ybc{bottom:352.490880pt;}
.y145{bottom:354.400000pt;}
.y117{bottom:356.174720pt;}
.y125{bottom:356.193920pt;}
.y5c{bottom:356.339840pt;}
.ya5{bottom:359.523840pt;}
.y109{bottom:359.702400pt;}
.ye7{bottom:362.745600pt;}
.y13d{bottom:366.885760pt;}
.yee{bottom:368.000000pt;}
.yd2{bottom:368.364160pt;}
.y12d{bottom:368.960000pt;}
.ybb{bottom:370.567040pt;}
.ye{bottom:372.030080pt;}
.y3f{bottom:374.240000pt;}
.y116{bottom:374.250880pt;}
.y124{bottom:374.270080pt;}
.ya4{bottom:377.600000pt;}
.y108{bottom:377.778560pt;}
.ye6{bottom:380.659840pt;}
.yed{bottom:382.080000pt;}
.y13c{bottom:385.123840pt;}
.yd1{bottom:386.440320pt;}
.y5b{bottom:387.855360pt;}
.y123{bottom:392.184320pt;}
.y107{bottom:395.854720pt;}
.y144{bottom:400.490880pt;}
.y13b{bottom:403.200000pt;}
.yd{bottom:403.383680pt;}
.yba{bottom:404.481920pt;}
.yd0{bottom:404.516480pt;}
.y12c{bottom:405.440000pt;}
.y3e{bottom:405.667200pt;}
.y5a{bottom:405.931520pt;}
.y115{bottom:408.165760pt;}
.y122{bottom:410.260480pt;}
.y106{bottom:413.930880pt;}
.ye5{bottom:414.574720pt;}
.y72{bottom:416.321920pt;}
.ycf{bottom:422.592640pt;}
.ya3{bottom:422.720000pt;}
.y3d{bottom:423.905280pt;}
.y59{bottom:424.007680pt;}
.y114{bottom:426.403840pt;}
.y105{bottom:431.845120pt;}
.ye4{bottom:432.812800pt;}
.y13a{bottom:433.120000pt;}
.y143{bottom:434.405760pt;}
.y71{bottom:434.560000pt;}
.yc{bottom:434.737280pt;}
.yce{bottom:440.668800pt;}
.y3c{bottom:441.981440pt;}
.y58{bottom:442.083840pt;}
.y121{bottom:444.175360pt;}
.y113{bottom:444.480000pt;}
.y139{bottom:447.200000pt;}
.y12b{bottom:451.361920pt;}
.y141{bottom:452.481920pt;}
.y142{bottom:452.643840pt;}
.yb9{bottom:458.240000pt;}
.ycd{bottom:458.744960pt;}
.y57{bottom:460.160000pt;}
.y112{bottom:462.400000pt;}
.y120{bottom:462.413440pt;}
.y104{bottom:465.760000pt;}
.yb{bottom:466.090880pt;}
.ye3{bottom:466.727680pt;}
.y70{bottom:468.160000pt;}
.y12a{bottom:469.600000pt;}
.y140{bottom:470.720000pt;}
.y3b{bottom:473.187840pt;}
.ya2{bottom:474.401920pt;}
.ycc{bottom:476.659200pt;}
.y56{bottom:478.247680pt;}
.y11f{bottom:480.489600pt;}
.y103{bottom:484.003840pt;}
.ye2{bottom:484.965760pt;}
.y25{bottom:489.922560pt;}
.y3a{bottom:491.425920pt;}
.ya1{bottom:492.640000pt;}
.ycb{bottom:494.735360pt;}
.y55{bottom:496.323840pt;}
.y111{bottom:496.332800pt;}
.yb8{bottom:497.127680pt;}
.ya{bottom:497.444480pt;}
.y11e{bottom:498.565760pt;}
.y129{bottom:499.520000pt;}
.y13f{bottom:500.640000pt;}
.y102{bottom:502.080000pt;}
.ye1{bottom:502.880000pt;}
.y39{bottom:509.502080pt;}
.yca{bottom:512.811520pt;}
.y128{bottom:513.600000pt;}
.y6f{bottom:514.261760pt;}
.y54{bottom:514.400000pt;}
.y110{bottom:514.570880pt;}
.y13e{bottom:514.720000pt;}
.yb7{bottom:515.203840pt;}
.y11d{bottom:516.480000pt;}
.y24{bottom:521.276160pt;}
.y38{bottom:527.578240pt;}
.y9{bottom:528.960000pt;}
.yc9{bottom:530.887680pt;}
.y6e{bottom:532.337920pt;}
.yb6{bottom:533.280000pt;}
.y101{bottom:536.003840pt;}
.ye0{bottom:538.560000pt;}
.y23{bottom:540.000000pt;}
.y53{bottom:545.618560pt;}
.y11c{bottom:546.400000pt;}
.y10f{bottom:548.485760pt;}
.yc8{bottom:548.963840pt;}
.yb5{bottom:551.369600pt;}
.y100{bottom:554.080000pt;}
.y37{bottom:558.784640pt;}
.y11b{bottom:560.480000pt;}
.y6d{bottom:563.691520pt;}
.y52{bottom:563.856640pt;}
.y10e{bottom:566.723840pt;}
.yc7{bottom:567.040000pt;}
.yb4{bottom:569.445760pt;}
.y164{bottom:573.132800pt;}
.yde{bottom:573.280000pt;}
.ya0{bottom:574.909440pt;}
.y36{bottom:577.022720pt;}
.y6c{bottom:581.767680pt;}
.y87{bottom:582.110720pt;}
.y8{bottom:583.040000pt;}
.y22{bottom:583.520000pt;}
.y10d{bottom:584.800000pt;}
.yc6{bottom:584.967040pt;}
.yb3{bottom:587.360000pt;}
.yff{bottom:588.005760pt;}
.ydd{bottom:590.560000pt;}
.y9f{bottom:593.147520pt;}
.y35{bottom:594.936960pt;}
.y51{bottom:595.063040pt;}
.y6b{bottom:599.843840pt;}
.y86{bottom:600.186880pt;}
.y163{bottom:604.486400pt;}
.ydb{bottom:604.640000pt;}
.yfe{bottom:606.243840pt;}
.y50{bottom:613.301120pt;}
.y10c{bottom:614.720000pt;}
.y21{bottom:616.640000pt;}
.y6a{bottom:617.920000pt;}
.yc5{bottom:618.881920pt;}
.yb2{bottom:621.440000pt;}
.yfd{bottom:624.320000pt;}
.y34{bottom:626.290560pt;}
.y9e{bottom:627.062400pt;}
.y10b{bottom:628.800000pt;}
.y7{bottom:629.276000pt;}
.y4f{bottom:631.215360pt;}
.y85{bottom:634.263680pt;}
.y162{bottom:635.840000pt;}
.yec{bottom:636.321920pt;}
.yc4{bottom:637.120000pt;}
.y33{bottom:644.366720pt;}
.y9d{bottom:645.300480pt;}
.y69{bottom:649.120000pt;}
.y4e{bottom:649.291520pt;}
.y20{bottom:649.760000pt;}
.yb1{bottom:651.520000pt;}
.y161{bottom:654.079360pt;}
.yeb{bottom:654.560000pt;}
.yfc{bottom:660.640000pt;}
.y32{bottom:662.442880pt;}
.y9c{bottom:663.376640pt;}
.y6{bottom:663.680000pt;}
.yb0{bottom:665.600000pt;}
.y68{bottom:667.360640pt;}
.y4d{bottom:667.367680pt;}
.y84{bottom:668.178560pt;}
.y160{bottom:672.155520pt;}
.yc3{bottom:672.800000pt;}
.y31{bottom:680.519040pt;}
.y9b{bottom:681.452800pt;}
.y1f{bottom:682.880000pt;}
.yea{bottom:684.480000pt;}
.ydc{bottom:684.640000pt;}
.y67{bottom:685.436800pt;}
.y83{bottom:686.416640pt;}
.ye9{bottom:698.560000pt;}
.y4c{bottom:698.574080pt;}
.y30{bottom:698.595200pt;}
.y9a{bottom:699.367040pt;}
.y15f{bottom:703.361920pt;}
.y66{bottom:703.512960pt;}
.y82{bottom:704.492800pt;}
.yfb{bottom:706.571520pt;}
.yc2{bottom:707.520000pt;}
.y1e{bottom:716.000000pt;}
.y2f{bottom:716.671360pt;}
.y4b{bottom:716.812160pt;}
.y99{bottom:717.443200pt;}
.yc1{bottom:721.600000pt;}
.y81{bottom:722.407040pt;}
.yfa{bottom:724.809600pt;}
.y5{bottom:724.960000pt;}
.y65{bottom:734.719360pt;}
.y2e{bottom:734.747520pt;}
.y4a{bottom:734.888320pt;}
.yf9{bottom:742.885760pt;}
.y98{bottom:751.520000pt;}
.y2d{bottom:752.661760pt;}
.y15e{bottom:752.800000pt;}
.y64{bottom:752.957440pt;}
.y80{bottom:756.321920pt;}
.y1d{bottom:759.680000pt;}
.yf8{bottom:760.800000pt;}
.y49{bottom:766.094720pt;}
.y63{bottom:771.033600pt;}
.y15d{bottom:771.040000pt;}
.y7f{bottom:774.560000pt;}
.y2c{bottom:784.015360pt;}
.y48{bottom:784.332800pt;}
.y97{bottom:785.462400pt;}
.y15c{bottom:788.960000pt;}
.y1c{bottom:792.640000pt;}
.yf7{bottom:794.887680pt;}
.yd9{bottom:800.640000pt;}
.y62{bottom:802.240000pt;}
.y2b{bottom:802.253440pt;}
.y96{bottom:803.700480pt;}
.y7e{bottom:804.480000pt;}
.y155{bottom:805.148160pt;}
.y15b{bottom:807.043840pt;}
.yf6{bottom:812.963840pt;}
.y47{bottom:815.539200pt;}
.y7c{bottom:818.560000pt;}
.y2a{bottom:820.167680pt;}
.y61{bottom:820.480000pt;}
.y95{bottom:821.776640pt;}
.y15a{bottom:825.120000pt;}
.y1b{bottom:825.760000pt;}
.yf5{bottom:831.040000pt;}
.y46{bottom:833.777280pt;}
.y29{bottom:838.243840pt;}
.y60{bottom:838.400000pt;}
.y154{bottom:839.224960pt;}
.y94{bottom:839.690880pt;}
.yf4{bottom:849.133440pt;}
.y45{bottom:851.853440pt;}
.y28{bottom:856.320000pt;}
.y159{bottom:856.325760pt;}
.y5f{bottom:856.480000pt;}
.y153{bottom:857.301120pt;}
.y1a{bottom:858.880000pt;}
.yf3{bottom:867.209600pt;}
.y44{bottom:869.929600pt;}
.y93{bottom:873.605760pt;}
.y5e{bottom:874.560000pt;}
.y158{bottom:874.563840pt;}
.y152{bottom:875.377280pt;}
.yf2{bottom:885.285760pt;}
.y43{bottom:887.843840pt;}
.y92{bottom:891.843840pt;}
.y157{bottom:892.640000pt;}
.y151{bottom:893.453440pt;}
.y27{bottom:894.080000pt;}
.y4{bottom:898.880000pt;}
.y19{bottom:902.560000pt;}
.yf1{bottom:903.200000pt;}
.y5d{bottom:905.760000pt;}
.y42{bottom:905.920000pt;}
.y91{bottom:909.920000pt;}
.y138{bottom:911.367680pt;}
.y150{bottom:911.529600pt;}
.y137{bottom:929.605760pt;}
.y156{bottom:930.400000pt;}
.y41{bottom:943.680000pt;}
.y26{bottom:944.000000pt;}
.y90{bottom:946.240000pt;}
.y18{bottom:946.400000pt;}
.y136{bottom:947.520000pt;}
.hc{height:14.080000pt;}
.h11{height:14.081333pt;}
.h2{height:15.200000pt;}
.h15{height:17.280000pt;}
.hf{height:37.401875pt;}
.h7{height:39.243750pt;}
.h5{height:41.765625pt;}
.h1{height:51.232500pt;}
.h1d{height:51.235060pt;}
.h3{height:51.692500pt;}
.ha{height:55.687500pt;}
.h6{height:56.187500pt;}
.h9{height:61.410000pt;}
.h8{height:65.154375pt;}
.h4{height:101.908125pt;}
.hd{height:143.040000pt;}
.hb{height:144.480000pt;}
.h13{height:160.960000pt;}
.h14{height:196.000000pt;}
.h17{height:236.960000pt;}
.h12{height:240.000000pt;}
.h16{height:263.040000pt;}
.h10{height:295.998667pt;}
.he{height:296.160000pt;}
.h18{height:332.800000pt;}
.h19{height:401.118667pt;}
.h1b{height:446.880000pt;}
.h1a{height:448.000000pt;}
.h1c{height:1055.974667pt;}
.h0{height:1056.000000pt;}
.w1{width:66.401333pt;}
.w4{width:300.800000pt;}
.w3{width:302.720000pt;}
.w2{width:598.560000pt;}
.w5{width:603.521333pt;}
.w6{width:815.934667pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x25{left:7.200000pt;}
.x1f{left:24.480000pt;}
.x3{left:28.800000pt;}
.x15{left:106.240000pt;}
.x1{left:113.440000pt;}
.x30{left:126.080000pt;}
.x13{left:137.448320pt;}
.x6{left:142.240000pt;}
.x12{left:150.720000pt;}
.xf{left:152.000000pt;}
.x10{left:161.435520pt;}
.x2a{left:166.880000pt;}
.x31{left:181.440000pt;}
.x14{left:199.200000pt;}
.x32{left:236.800000pt;}
.x1a{left:240.800000pt;}
.x29{left:256.640000pt;}
.x2d{left:268.160000pt;}
.x2f{left:270.560000pt;}
.x11{left:271.840000pt;}
.x24{left:274.240000pt;}
.x19{left:294.080000pt;}
.xe{left:295.680000pt;}
.x22{left:300.160000pt;}
.x23{left:301.120000pt;}
.x20{left:302.080000pt;}
.x7{left:326.557600pt;}
.x1b{left:328.480000pt;}
.xd{left:334.880000pt;}
.x8{left:336.640000pt;}
.x33{left:342.880000pt;}
.x26{left:350.560000pt;}
.x1e{left:369.600000pt;}
.x2{left:374.080000pt;}
.x4{left:408.000000pt;}
.x21{left:408.960000pt;}
.x18{left:501.600000pt;}
.x16{left:514.240000pt;}
.x17{left:515.200000pt;}
.x27{left:526.240000pt;}
.x1c{left:529.280000pt;}
.x2b{left:534.560000pt;}
.x5{left:546.880000pt;}
.x9{left:550.403200pt;}
.x1d{left:554.240000pt;}
.xa{left:558.558080pt;}
.x28{left:559.680000pt;}
.x2c{left:566.560000pt;}
.x2e{left:603.200000pt;}
.xb{left:670.076800pt;}
.xc{left:702.549120pt;}
}




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