
    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_0ea5d5324fd5def366cd2b56.woff')format("woff");}.ff1{font-family:ff1;line-height:0.682617;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_3b0ede1151d11052b8799740.woff')format("woff");}.ff2{font-family:ff2;line-height:0.899414;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_7675b95deb31e47895ad5b8e.woff')format("woff");}.ff3{font-family:ff3;line-height:0.899414;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_4d9b1075559a8c7ce7f88c0c.woff')format("woff");}.ff4{font-family:ff4;line-height:1.082031;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_7ffae0f108c7e63cd47935ac.woff')format("woff");}.ff5{font-family:ff5;line-height:0.899414;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_4f39498e5c8bf86f93f3f627.woff')format("woff");}.ff6{font-family:ff6;line-height:0.851000;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_ad662e6dbc3fa80526c7f561.woff')format("woff");}.ff7{font-family:ff7;line-height:1.090332;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_b089bee3fd1ba9eff31d423e.woff')format("woff");}.ff8{font-family:ff8;line-height:0.700000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_fcf4c7c5fe1de20ae279c457.woff')format("woff");}.ff9{font-family:ff9;line-height:0.678711;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_90540cc4fc54ab42b231e84c.woff')format("woff");}.ffa{font-family:ffa;line-height:1.003000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_45d7f228b4bdc00fb09b5d2d.woff')format("woff");}.ffb{font-family:ffb;line-height:0.900000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_ddb327ce740511a415b0c96e.woff')format("woff");}.ffc{font-family:ffc;line-height:0.899414;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);}
.v3{vertical-align:-16.830000px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:19.804200px;}
.v2{vertical-align:23.760000px;}
.v1{vertical-align:176.400000px;}
.ls28{letter-spacing:-9.840000px;}
.ls41{letter-spacing:-7.416000px;}
.ls13{letter-spacing:-7.200000px;}
.ls3b{letter-spacing:-6.264000px;}
.ls3f{letter-spacing:-2.340000px;}
.ls43{letter-spacing:-1.656000px;}
.ls12{letter-spacing:-1.368000px;}
.ls11{letter-spacing:-1.296000px;}
.ls3d{letter-spacing:-0.936000px;}
.ls3e{letter-spacing:-0.864000px;}
.ls3a{letter-spacing:-0.792000px;}
.ls21{letter-spacing:-0.720000px;}
.ls22{letter-spacing:-0.648000px;}
.ls1d{letter-spacing:-0.600000px;}
.ls20{letter-spacing:-0.576000px;}
.ls23{letter-spacing:-0.504000px;}
.ls24{letter-spacing:-0.432000px;}
.ls14{letter-spacing:-0.360000px;}
.ls3c{letter-spacing:-0.300000px;}
.ls17{letter-spacing:-0.288000px;}
.ls27{letter-spacing:-0.252000px;}
.lse{letter-spacing:-0.240000px;}
.lsc{letter-spacing:-0.216000px;}
.ls37{letter-spacing:-0.151200px;}
.ls18{letter-spacing:-0.144000px;}
.ls19{letter-spacing:-0.072000px;}
.lsa{letter-spacing:0.000000px;}
.ls33{letter-spacing:0.028800px;}
.ls4{letter-spacing:0.072000px;}
.ls2f{letter-spacing:0.121800px;}
.ls1c{letter-spacing:0.144000px;}
.ls2b{letter-spacing:0.172800px;}
.ls2a{letter-spacing:0.187200px;}
.ls29{letter-spacing:0.201600px;}
.lsd{letter-spacing:0.216000px;}
.ls46{letter-spacing:0.240000px;}
.ls6{letter-spacing:0.247200px;}
.ls16{letter-spacing:0.251400px;}
.ls15{letter-spacing:0.252000px;}
.ls5{letter-spacing:0.288000px;}
.ls3{letter-spacing:0.360000px;}
.ls1a{letter-spacing:0.432000px;}
.ls1e{letter-spacing:0.504000px;}
.ls2e{letter-spacing:0.561600px;}
.ls7{letter-spacing:0.576000px;}
.ls2d{letter-spacing:0.619200px;}
.ls2c{letter-spacing:0.648000px;}
.ls10{letter-spacing:0.720000px;}
.ls1b{letter-spacing:0.792000px;}
.ls8{letter-spacing:0.864000px;}
.ls1f{letter-spacing:0.936000px;}
.ls39{letter-spacing:0.993600px;}
.ls30{letter-spacing:1.008000px;}
.ls31{letter-spacing:1.152000px;}
.ls26{letter-spacing:1.224000px;}
.ls38{letter-spacing:1.944000px;}
.ls35{letter-spacing:2.304000px;}
.ls9{letter-spacing:2.688000px;}
.ls1{letter-spacing:2.850000px;}
.ls44{letter-spacing:3.600000px;}
.lsf{letter-spacing:4.260000px;}
.ls32{letter-spacing:4.363200px;}
.ls45{letter-spacing:4.752000px;}
.ls34{letter-spacing:5.040000px;}
.lsb{letter-spacing:8.343024px;}
.ls0{letter-spacing:8.436000px;}
.ls25{letter-spacing:8.640000px;}
.ls40{letter-spacing:9.273600px;}
.ls36{letter-spacing:9.288000px;}
.ls42{letter-spacing:10.224000px;}
.ls2{letter-spacing:10.740000px;}
.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;}
}
.ws14{word-spacing:-20.232000px;}
.ws1{word-spacing:-18.867000px;}
.ws41{word-spacing:-18.648000px;}
.ws4b{word-spacing:-18.432000px;}
.ws27{word-spacing:-18.216000px;}
.ws20{word-spacing:-18.144000px;}
.ws3a{word-spacing:-18.072000px;}
.ws42{word-spacing:-17.928000px;}
.ws4a{word-spacing:-17.856000px;}
.ws1f{word-spacing:-17.784000px;}
.ws28{word-spacing:-17.712000px;}
.ws3b{word-spacing:-17.568000px;}
.ws38{word-spacing:-17.424000px;}
.ws2b{word-spacing:-17.352000px;}
.ws2a{word-spacing:-17.280000px;}
.ws29{word-spacing:-17.208000px;}
.ws12{word-spacing:-16.860000px;}
.ws55{word-spacing:-16.128000px;}
.ws52{word-spacing:-14.820000px;}
.ws3{word-spacing:-14.162400px;}
.ws43{word-spacing:-14.011200px;}
.ws39{word-spacing:-13.910400px;}
.ws59{word-spacing:-13.248000px;}
.ws58{word-spacing:-12.336000px;}
.ws22{word-spacing:-11.856000px;}
.ws21{word-spacing:-11.802000px;}
.ws4{word-spacing:-11.616000px;}
.ws57{word-spacing:-10.224000px;}
.ws48{word-spacing:-9.288000px;}
.ws2{word-spacing:-8.760175px;}
.ws35{word-spacing:-8.640000px;}
.ws0{word-spacing:-8.496000px;}
.ws56{word-spacing:-3.600000px;}
.ws47{word-spacing:-2.304000px;}
.ws31{word-spacing:-2.016000px;}
.ws40{word-spacing:-1.224000px;}
.ws46{word-spacing:-1.008000px;}
.ws2c{word-spacing:-0.936000px;}
.wsf{word-spacing:-0.864000px;}
.ws24{word-spacing:-0.792000px;}
.ws16{word-spacing:-0.720000px;}
.ws44{word-spacing:-0.648000px;}
.wse{word-spacing:-0.576000px;}
.ws2f{word-spacing:-0.504000px;}
.ws23{word-spacing:-0.432000px;}
.ws9{word-spacing:-0.360000px;}
.wsd{word-spacing:-0.288000px;}
.ws5a{word-spacing:-0.240000px;}
.wsc{word-spacing:-0.216000px;}
.ws25{word-spacing:-0.144000px;}
.wsa{word-spacing:-0.072000px;}
.ws4f{word-spacing:-0.060000px;}
.ws3c{word-spacing:-0.048000px;}
.ws7{word-spacing:0.000000px;}
.ws1d{word-spacing:0.072000px;}
.ws1c{word-spacing:0.144000px;}
.wsb{word-spacing:0.216000px;}
.ws10{word-spacing:0.240000px;}
.ws1b{word-spacing:0.288000px;}
.ws4e{word-spacing:0.300000px;}
.ws1a{word-spacing:0.360000px;}
.ws34{word-spacing:0.432000px;}
.ws33{word-spacing:0.504000px;}
.ws2d{word-spacing:0.576000px;}
.ws26{word-spacing:0.600000px;}
.ws32{word-spacing:0.648000px;}
.ws2e{word-spacing:0.720000px;}
.ws4c{word-spacing:0.792000px;}
.ws51{word-spacing:0.864000px;}
.ws50{word-spacing:0.936000px;}
.ws36{word-spacing:1.080000px;}
.ws13{word-spacing:1.224000px;}
.ws17{word-spacing:1.296000px;}
.ws18{word-spacing:1.368000px;}
.ws8{word-spacing:1.800000px;}
.ws49{word-spacing:2.160000px;}
.ws53{word-spacing:2.340000px;}
.ws30{word-spacing:2.376000px;}
.ws37{word-spacing:2.400000px;}
.ws1e{word-spacing:3.360000px;}
.ws3f{word-spacing:4.104000px;}
.ws5{word-spacing:4.200000px;}
.ws3e{word-spacing:4.752000px;}
.ws45{word-spacing:5.040000px;}
.ws3d{word-spacing:6.192000px;}
.ws4d{word-spacing:6.264000px;}
.ws19{word-spacing:7.200000px;}
.ws54{word-spacing:7.416000px;}
.ws6{word-spacing:8.400000px;}
.ws15{word-spacing:73.140000px;}
.ws11{word-spacing:146.196000px;}
._0{margin-left:-948.820800px;}
._11{margin-left:-68.880000px;}
._12{margin-left:-21.096000px;}
._14{margin-left:-19.632000px;}
._13{margin-left:-15.242400px;}
._15{margin-left:-13.920000px;}
._16{margin-left:-11.755200px;}
._18{margin-left:-10.144800px;}
._b{margin-left:-8.569200px;}
._e{margin-left:-7.018800px;}
._1{margin-left:-5.964000px;}
._d{margin-left:-4.842000px;}
._4{margin-left:-3.576000px;}
._c{margin-left:-2.259600px;}
._3{margin-left:-1.248000px;}
._2{width:1.878000px;}
._5{width:3.720000px;}
._7{width:5.179200px;}
._8{width:6.888000px;}
._6{width:8.400000px;}
._a{width:9.878400px;}
._9{width:10.909200px;}
._f{width:11.942400px;}
._17{width:13.796100px;}
._10{width:31.646100px;}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:35.700000px;}
.fs8{font-size:42.000000px;}
.fs7{font-size:48.000000px;}
.fs5{font-size:50.400000px;}
.fs1{font-size:57.000000px;}
.fs0{font-size:60.000000px;}
.fs3{font-size:72.000000px;}
.fs2{font-size:120.000000px;}
.fs4{font-size:417.151200px;}
.y0{bottom:0.000000px;}
.y23{bottom:55.500000px;}
.y1{bottom:72.000000px;}
.y68{bottom:117.000000px;}
.y11c{bottom:118.534200px;}
.yfe{bottom:120.902550px;}
.y22{bottom:121.207500px;}
.y189{bottom:121.286100px;}
.y164{bottom:122.018400px;}
.y140{bottom:122.816100px;}
.y8c{bottom:132.000000px;}
.y67{bottom:136.207500px;}
.y11b{bottom:137.134200px;}
.y21{bottom:139.500000px;}
.yfd{bottom:139.652550px;}
.y188{bottom:143.642100px;}
.y163{bottom:144.374400px;}
.y13f{bottom:145.622100px;}
.y8b{bottom:147.000000px;}
.y1ac{bottom:151.207500px;}
.y20{bottom:154.500000px;}
.y11a{bottom:155.734200px;}
.y66{bottom:158.707500px;}
.yac{bottom:162.000000px;}
.y187{bottom:165.998100px;}
.y8a{bottom:166.207500px;}
.y162{bottom:166.730400px;}
.yfc{bottom:166.907550px;}
.y13e{bottom:168.428100px;}
.y1f{bottom:169.500000px;}
.y65{bottom:181.207500px;}
.y119{bottom:182.808150px;}
.y1e{bottom:184.500000px;}
.yfb{bottom:185.657550px;}
.y186{bottom:188.354100px;}
.y13d{bottom:191.234100px;}
.y1ab{bottom:194.862000px;}
.y161{bottom:197.584200px;}
.y1d{bottom:199.500000px;}
.yec{bottom:202.530000px;}
.yce{bottom:203.707500px;}
.yfa{bottom:204.407550px;}
.y118{bottom:205.164150px;}
.y89{bottom:206.130150px;}
.yab{bottom:207.000000px;}
.y185{bottom:210.710100px;}
.y13c{bottom:214.040100px;}
.y1c{bottom:214.500000px;}
.y160{bottom:216.184200px;}
.y1aa{bottom:217.056000px;}
.y64{bottom:221.850000px;}
.yeb{bottom:225.174000px;}
.y117{bottom:227.520150px;}
.y88{bottom:228.324150px;}
.y43{bottom:229.500000px;}
.y1cc{bottom:230.622000px;}
.yf9{bottom:231.661350px;}
.y184{bottom:233.066100px;}
.y1b{bottom:233.707500px;}
.y15f{bottom:234.784200px;}
.y13b{bottom:236.846100px;}
.ycd{bottom:238.050000px;}
.y1a9{bottom:239.250000px;}
.y63{bottom:243.900000px;}
.yea{bottom:247.818000px;}
.y42{bottom:248.707500px;}
.y1cb{bottom:249.372000px;}
.y116{bottom:249.876150px;}
.y87{bottom:250.518150px;}
.yaa{bottom:252.000000px;}
.y15e{bottom:253.384200px;}
.yf8{bottom:254.161350px;}
.y183{bottom:255.422100px;}
.y13a{bottom:259.652100px;}
.ycc{bottom:261.000000px;}
.y1a8{bottom:261.444000px;}
.y62{bottom:265.950000px;}
.y1ca{bottom:268.122000px;}
.ye9{bottom:270.462000px;}
.y15d{bottom:271.984200px;}
.y115{bottom:272.232150px;}
.y86{bottom:272.712150px;}
.y1a{bottom:273.941700px;}
.ya9{bottom:274.500000px;}
.yf7{bottom:276.661350px;}
.y182{bottom:277.778100px;}
.y139{bottom:282.458100px;}
.y1a7{bottom:283.638000px;}
.ycb{bottom:283.950000px;}
.y1c9{bottom:286.872000px;}
.y41{bottom:287.064150px;}
.y61{bottom:288.000000px;}
.y15c{bottom:290.584200px;}
.ye8{bottom:293.106000px;}
.y114{bottom:294.588150px;}
.y85{bottom:294.906150px;}
.y19{bottom:295.991700px;}
.ya8{bottom:297.000000px;}
.yf6{bottom:299.161350px;}
.y181{bottom:300.134100px;}
.y138{bottom:305.264100px;}
.y1a6{bottom:305.832000px;}
.yca{bottom:306.900000px;}
.y40{bottom:309.564150px;}
.y60{bottom:310.050000px;}
.ye7{bottom:315.858000px;}
.y1c8{bottom:316.872000px;}
.y84{bottom:317.100150px;}
.y15b{bottom:317.718150px;}
.y18{bottom:318.041700px;}
.ya7{bottom:319.500000px;}
.yf5{bottom:321.661350px;}
.y180{bottom:322.490100px;}
.y113{bottom:325.441050px;}
.y1a5{bottom:328.026000px;}
.y137{bottom:328.070100px;}
.yc9{bottom:329.850000px;}
.y3f{bottom:331.920150px;}
.y5f{bottom:332.100000px;}
.ye6{bottom:338.502000px;}
.y83{bottom:339.294150px;}
.y15a{bottom:339.912150px;}
.y17{bottom:340.091700px;}
.ya6{bottom:342.000000px;}
.y112{bottom:344.041050px;}
.yf4{bottom:344.161350px;}
.y17f{bottom:344.846100px;}
.y1a4{bottom:350.220000px;}
.y136{bottom:350.876100px;}
.yc8{bottom:352.800000px;}
.y5e{bottom:354.150000px;}
.y3e{bottom:354.276150px;}
.y1c7{bottom:358.128000px;}
.ye5{bottom:361.146000px;}
.y82{bottom:361.488150px;}
.y159{bottom:362.106150px;}
.y16{bottom:362.141700px;}
.y111{bottom:362.641050px;}
.ya5{bottom:364.500000px;}
.yae{bottom:365.700900px;}
.yf3{bottom:366.661350px;}
.y17e{bottom:367.202100px;}
.y1a3{bottom:372.414000px;}
.y1c6{bottom:373.128000px;}
.y135{bottom:373.682100px;}
.yc7{bottom:375.750000px;}
.y5d{bottom:376.200000px;}
.y3d{bottom:376.632150px;}
.ye4{bottom:383.790000px;}
.y15{bottom:384.191700px;}
.y158{bottom:384.300150px;}
.ya4{bottom:387.000000px;}
.y1c5{bottom:388.128000px;}
.yf2{bottom:389.161350px;}
.y17d{bottom:389.558100px;}
.y110{bottom:389.746050px;}
.y81{bottom:392.191050px;}
.y1a2{bottom:394.608000px;}
.y134{bottom:396.488100px;}
.y5c{bottom:398.250000px;}
.yc6{bottom:398.700000px;}
.y3c{bottom:398.988150px;}
.y1c4{bottom:403.128000px;}
.y14{bottom:406.241700px;}
.ye3{bottom:406.434000px;}
.y157{bottom:406.494150px;}
.y10f{bottom:408.346050px;}
.ya3{bottom:409.500000px;}
.y80{bottom:410.641050px;}
.yf1{bottom:411.661350px;}
.y17c{bottom:411.914100px;}
.y1a1{bottom:416.802000px;}
.y1c3{bottom:418.128000px;}
.y133{bottom:419.294100px;}
.y5b{bottom:420.300000px;}
.yc5{bottom:421.650000px;}
.y13{bottom:428.291700px;}
.y156{bottom:428.688150px;}
.ye2{bottom:429.078000px;}
.y7f{bottom:429.091050px;}
.y3b{bottom:429.841050px;}
.ya2{bottom:432.000000px;}
.y1c2{bottom:433.128000px;}
.yf0{bottom:434.161350px;}
.y17b{bottom:434.270100px;}
.y10e{bottom:435.318000px;}
.y1a0{bottom:438.996000px;}
.y132{bottom:442.100100px;}
.y5a{bottom:442.350000px;}
.yc4{bottom:444.600000px;}
.y1c1{bottom:448.128000px;}
.y3a{bottom:448.441050px;}
.y12{bottom:450.341700px;}
.ye1{bottom:451.722000px;}
.ya1{bottom:454.500000px;}
.y7e{bottom:456.046050px;}
.y17a{bottom:456.626100px;}
.yef{bottom:456.661350px;}
.y10d{bottom:457.674000px;}
.y155{bottom:459.391050px;}
.y19f{bottom:461.190000px;}
.y1c0{bottom:463.128000px;}
.y59{bottom:464.400000px;}
.y131{bottom:464.906100px;}
.y39{bottom:467.041050px;}
.yc3{bottom:467.550000px;}
.y11{bottom:472.391700px;}
.ye0{bottom:474.366000px;}
.ya0{bottom:477.000000px;}
.y154{bottom:477.991050px;}
.y1bf{bottom:478.128000px;}
.y179{bottom:478.982100px;}
.yee{bottom:479.161350px;}
.y10c{bottom:480.030000px;}
.y7d{bottom:483.120000px;}
.y19e{bottom:483.384000px;}
.y38{bottom:485.641050px;}
.y58{bottom:486.450000px;}
.y130{bottom:487.712100px;}
.yc2{bottom:490.500000px;}
.y1be{bottom:493.128000px;}
.y10{bottom:494.441700px;}
.ydf{bottom:497.010000px;}
.y9f{bottom:499.500000px;}
.y178{bottom:501.338100px;}
.yed{bottom:501.661350px;}
.y10b{bottom:502.386000px;}
.y153{bottom:505.096050px;}
.y7c{bottom:505.314000px;}
.y19d{bottom:505.578000px;}
.y1bd{bottom:508.128000px;}
.y57{bottom:508.500000px;}
.y12f{bottom:510.518100px;}
.y37{bottom:512.746050px;}
.yc1{bottom:513.450000px;}
.yf{bottom:516.491700px;}
.yde{bottom:519.654000px;}
.y9e{bottom:522.000000px;}
.y1bc{bottom:523.128000px;}
.y177{bottom:523.694100px;}
.y152{bottom:523.696050px;}
.y10a{bottom:524.742000px;}
.y7b{bottom:527.508000px;}
.y19c{bottom:527.772000px;}
.y56{bottom:530.550000px;}
.y36{bottom:531.346050px;}
.y12e{bottom:533.324100px;}
.yc0{bottom:536.400000px;}
.y1bb{bottom:538.128000px;}
.ye{bottom:538.541700px;}
.y151{bottom:542.296050px;}
.ydd{bottom:542.298000px;}
.y9d{bottom:544.500000px;}
.y176{bottom:546.050100px;}
.y109{bottom:547.098000px;}
.y7a{bottom:549.702000px;}
.y35{bottom:549.946050px;}
.y19b{bottom:549.966000px;}
.y55{bottom:552.600000px;}
.y1ba{bottom:553.128000px;}
.y12d{bottom:556.130100px;}
.ybf{bottom:559.350000px;}
.yd{bottom:560.591700px;}
.ydc{bottom:564.942000px;}
.y9c{bottom:567.000000px;}
.y1b9{bottom:568.128000px;}
.y175{bottom:568.406100px;}
.y34{bottom:568.546050px;}
.y150{bottom:569.304000px;}
.y108{bottom:569.454000px;}
.y79{bottom:571.896000px;}
.y19a{bottom:572.160000px;}
.y54{bottom:574.650000px;}
.y12c{bottom:578.936100px;}
.ybe{bottom:582.300000px;}
.yc{bottom:582.641700px;}
.y1b8{bottom:583.128000px;}
.y33{bottom:587.146050px;}
.ydb{bottom:587.586000px;}
.y9b{bottom:589.500000px;}
.y174{bottom:590.762100px;}
.y14f{bottom:591.660000px;}
.y107{bottom:591.810000px;}
.y78{bottom:594.090000px;}
.y199{bottom:594.354000px;}
.y53{bottom:596.700000px;}
.y1b7{bottom:598.128000px;}
.y12b{bottom:601.742100px;}
.yb{bottom:604.691700px;}
.ybd{bottom:605.250000px;}
.yda{bottom:610.230000px;}
.y9a{bottom:612.000000px;}
.y173{bottom:613.118100px;}
.y1b6{bottom:613.128000px;}
.y14e{bottom:614.016000px;}
.y106{bottom:614.166000px;}
.y32{bottom:614.220000px;}
.y77{bottom:616.284000px;}
.y198{bottom:616.548000px;}
.y52{bottom:618.750000px;}
.ya{bottom:626.741700px;}
.y1b5{bottom:628.128000px;}
.ybc{bottom:628.200000px;}
.yad{bottom:628.440900px;}
.yd9{bottom:632.874000px;}
.y12a{bottom:633.046050px;}
.y99{bottom:634.500000px;}
.y172{bottom:635.474100px;}
.y14d{bottom:636.372000px;}
.y105{bottom:636.522000px;}
.y31{bottom:636.576000px;}
.y76{bottom:638.478000px;}
.y197{bottom:638.742000px;}
.y51{bottom:640.800000px;}
.y1b4{bottom:643.128000px;}
.y9{bottom:648.791700px;}
.y101{bottom:650.622000px;}
.ybb{bottom:651.150000px;}
.y129{bottom:652.096050px;}
.yd8{bottom:655.518000px;}
.y98{bottom:657.000000px;}
.y171{bottom:657.830100px;}
.y1b3{bottom:658.128000px;}
.y14c{bottom:658.728000px;}
.y104{bottom:658.878000px;}
.y30{bottom:658.932000px;}
.y75{bottom:660.672000px;}
.y196{bottom:660.936000px;}
.y50{bottom:662.850000px;}
.y7{bottom:670.841700px;}
.y128{bottom:671.146050px;}
.y1b2{bottom:673.128000px;}
.yba{bottom:674.100000px;}
.yd7{bottom:678.162000px;}
.y97{bottom:679.500000px;}
.y170{bottom:680.186100px;}
.y14b{bottom:681.084000px;}
.y103{bottom:681.234000px;}
.y2f{bottom:681.288000px;}
.y74{bottom:682.866000px;}
.y195{bottom:683.130000px;}
.y4f{bottom:684.900000px;}
.y1b1{bottom:688.128000px;}
.y8{bottom:692.891700px;}
.yb9{bottom:697.050000px;}
.y127{bottom:698.640000px;}
.yd6{bottom:700.806000px;}
.y96{bottom:702.000000px;}
.y16f{bottom:702.542100px;}
.y1b0{bottom:703.128000px;}
.y14a{bottom:703.440000px;}
.y102{bottom:703.590000px;}
.y2e{bottom:703.644000px;}
.y73{bottom:705.060000px;}
.y194{bottom:705.324000px;}
.y4e{bottom:706.950000px;}
.y1af{bottom:718.128000px;}
.yb8{bottom:720.000000px;}
.y126{bottom:721.446000px;}
.yd5{bottom:723.492000px;}
.y95{bottom:724.500000px;}
.y149{bottom:725.796000px;}
.y2d{bottom:725.946000px;}
.y72{bottom:727.254000px;}
.y193{bottom:727.518000px;}
.y4d{bottom:729.000000px;}
.y1ae{bottom:733.128000px;}
.y16e{bottom:733.396050px;}
.yb7{bottom:742.950000px;}
.y125{bottom:744.252000px;}
.yd4{bottom:746.136000px;}
.y94{bottom:747.000000px;}
.y1ad{bottom:748.128000px;}
.y148{bottom:748.152000px;}
.y2c{bottom:748.302000px;}
.y71{bottom:749.448000px;}
.y192{bottom:749.712000px;}
.y4c{bottom:751.050000px;}
.y16d{bottom:751.996050px;}
.y6{bottom:760.377450px;}
.yb6{bottom:765.900000px;}
.y124{bottom:767.058000px;}
.yd3{bottom:768.780000px;}
.y93{bottom:769.500000px;}
.y147{bottom:770.508000px;}
.y16c{bottom:770.596050px;}
.y2b{bottom:770.658000px;}
.y70{bottom:771.642000px;}
.y191{bottom:771.906000px;}
.y4b{bottom:773.100000px;}
.y5{bottom:782.877450px;}
.y100{bottom:786.543300px;}
.yb5{bottom:788.850000px;}
.y16b{bottom:789.196050px;}
.y123{bottom:789.864000px;}
.yd2{bottom:791.424000px;}
.y92{bottom:792.000000px;}
.y146{bottom:792.864000px;}
.y2a{bottom:793.014000px;}
.y6f{bottom:793.836000px;}
.y190{bottom:794.136000px;}
.y4a{bottom:795.150000px;}
.yb4{bottom:811.800000px;}
.y122{bottom:812.670000px;}
.yd1{bottom:814.068000px;}
.y91{bottom:814.500000px;}
.y145{bottom:815.220000px;}
.y29{bottom:815.370000px;}
.y6e{bottom:816.030000px;}
.y16a{bottom:816.270000px;}
.y18f{bottom:816.330000px;}
.y49{bottom:817.200000px;}
.yb3{bottom:834.750000px;}
.y121{bottom:835.476000px;}
.yd0{bottom:836.712000px;}
.y90{bottom:837.000000px;}
.y144{bottom:837.576000px;}
.y28{bottom:837.726000px;}
.y6d{bottom:838.224000px;}
.y18e{bottom:838.524000px;}
.y169{bottom:838.626000px;}
.y48{bottom:839.250000px;}
.y4{bottom:850.023150px;}
.yb2{bottom:857.700000px;}
.y120{bottom:858.282000px;}
.ycf{bottom:859.356000px;}
.y8f{bottom:859.500000px;}
.y143{bottom:859.932000px;}
.y27{bottom:860.082000px;}
.y6c{bottom:860.418000px;}
.y18d{bottom:860.718000px;}
.y168{bottom:860.982000px;}
.y47{bottom:861.300000px;}
.y3{bottom:880.023150px;}
.yb1{bottom:880.650000px;}
.y11f{bottom:881.088000px;}
.y8e{bottom:882.000000px;}
.y142{bottom:882.288000px;}
.y26{bottom:882.438000px;}
.y6b{bottom:882.612000px;}
.y18c{bottom:882.912000px;}
.y167{bottom:883.338000px;}
.y46{bottom:883.350000px;}
.yb0{bottom:903.600000px;}
.y11e{bottom:903.894000px;}
.y8d{bottom:904.500000px;}
.y141{bottom:904.644000px;}
.y25{bottom:904.794000px;}
.y6a{bottom:904.806000px;}
.y18b{bottom:905.106000px;}
.y45{bottom:905.400000px;}
.y166{bottom:905.694000px;}
.yaf{bottom:926.550000px;}
.y11d{bottom:926.700000px;}
.y69{bottom:927.000000px;}
.yff{bottom:927.002550px;}
.y24{bottom:927.150000px;}
.y18a{bottom:927.300000px;}
.y44{bottom:927.450000px;}
.y165{bottom:927.600000px;}
.y2{bottom:940.023150px;}
.h8{height:23.927812px;}
.hd{height:30.313623px;}
.h2{height:37.990723px;}
.h10{height:38.544000px;}
.h1{height:39.990234px;}
.h9{height:40.757812px;}
.hf{height:48.180000px;}
.h5{height:50.580000px;}
.ha{height:50.947266px;}
.he{height:55.467286px;}
.h6{height:61.136719px;}
.hb{height:61.256719px;}
.hc{height:66.555703px;}
.h3{height:79.980469px;}
.h4{height:101.894531px;}
.h7{height:292.005840px;}
.h0{height:1017.000000px;}
.w0{width:720.000000px;}
.x0{left:0.000000px;}
.x6{left:67.500000px;}
.x8{left:82.386000px;}
.x9{left:97.263750px;}
.x2{left:112.500000px;}
.x5{left:127.380150px;}
.x7{left:135.000000px;}
.x3{left:142.263750px;}
.xa{left:180.531450px;}
.x4{left:198.955350px;}
.x1{left:625.781250px;}
@media print{
.v3{vertical-align:-14.960000pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:17.603733pt;}
.v2{vertical-align:21.120000pt;}
.v1{vertical-align:156.800000pt;}
.ls28{letter-spacing:-8.746667pt;}
.ls41{letter-spacing:-6.592000pt;}
.ls13{letter-spacing:-6.400000pt;}
.ls3b{letter-spacing:-5.568000pt;}
.ls3f{letter-spacing:-2.080000pt;}
.ls43{letter-spacing:-1.472000pt;}
.ls12{letter-spacing:-1.216000pt;}
.ls11{letter-spacing:-1.152000pt;}
.ls3d{letter-spacing:-0.832000pt;}
.ls3e{letter-spacing:-0.768000pt;}
.ls3a{letter-spacing:-0.704000pt;}
.ls21{letter-spacing:-0.640000pt;}
.ls22{letter-spacing:-0.576000pt;}
.ls1d{letter-spacing:-0.533333pt;}
.ls20{letter-spacing:-0.512000pt;}
.ls23{letter-spacing:-0.448000pt;}
.ls24{letter-spacing:-0.384000pt;}
.ls14{letter-spacing:-0.320000pt;}
.ls3c{letter-spacing:-0.266667pt;}
.ls17{letter-spacing:-0.256000pt;}
.ls27{letter-spacing:-0.224000pt;}
.lse{letter-spacing:-0.213333pt;}
.lsc{letter-spacing:-0.192000pt;}
.ls37{letter-spacing:-0.134400pt;}
.ls18{letter-spacing:-0.128000pt;}
.ls19{letter-spacing:-0.064000pt;}
.lsa{letter-spacing:0.000000pt;}
.ls33{letter-spacing:0.025600pt;}
.ls4{letter-spacing:0.064000pt;}
.ls2f{letter-spacing:0.108267pt;}
.ls1c{letter-spacing:0.128000pt;}
.ls2b{letter-spacing:0.153600pt;}
.ls2a{letter-spacing:0.166400pt;}
.ls29{letter-spacing:0.179200pt;}
.lsd{letter-spacing:0.192000pt;}
.ls46{letter-spacing:0.213333pt;}
.ls6{letter-spacing:0.219733pt;}
.ls16{letter-spacing:0.223467pt;}
.ls15{letter-spacing:0.224000pt;}
.ls5{letter-spacing:0.256000pt;}
.ls3{letter-spacing:0.320000pt;}
.ls1a{letter-spacing:0.384000pt;}
.ls1e{letter-spacing:0.448000pt;}
.ls2e{letter-spacing:0.499200pt;}
.ls7{letter-spacing:0.512000pt;}
.ls2d{letter-spacing:0.550400pt;}
.ls2c{letter-spacing:0.576000pt;}
.ls10{letter-spacing:0.640000pt;}
.ls1b{letter-spacing:0.704000pt;}
.ls8{letter-spacing:0.768000pt;}
.ls1f{letter-spacing:0.832000pt;}
.ls39{letter-spacing:0.883200pt;}
.ls30{letter-spacing:0.896000pt;}
.ls31{letter-spacing:1.024000pt;}
.ls26{letter-spacing:1.088000pt;}
.ls38{letter-spacing:1.728000pt;}
.ls35{letter-spacing:2.048000pt;}
.ls9{letter-spacing:2.389333pt;}
.ls1{letter-spacing:2.533333pt;}
.ls44{letter-spacing:3.200000pt;}
.lsf{letter-spacing:3.786667pt;}
.ls32{letter-spacing:3.878400pt;}
.ls45{letter-spacing:4.224000pt;}
.ls34{letter-spacing:4.480000pt;}
.lsb{letter-spacing:7.416021pt;}
.ls0{letter-spacing:7.498667pt;}
.ls25{letter-spacing:7.680000pt;}
.ls40{letter-spacing:8.243200pt;}
.ls36{letter-spacing:8.256000pt;}
.ls42{letter-spacing:9.088000pt;}
.ls2{letter-spacing:9.546667pt;}
.ws14{word-spacing:-17.984000pt;}
.ws1{word-spacing:-16.770667pt;}
.ws41{word-spacing:-16.576000pt;}
.ws4b{word-spacing:-16.384000pt;}
.ws27{word-spacing:-16.192000pt;}
.ws20{word-spacing:-16.128000pt;}
.ws3a{word-spacing:-16.064000pt;}
.ws42{word-spacing:-15.936000pt;}
.ws4a{word-spacing:-15.872000pt;}
.ws1f{word-spacing:-15.808000pt;}
.ws28{word-spacing:-15.744000pt;}
.ws3b{word-spacing:-15.616000pt;}
.ws38{word-spacing:-15.488000pt;}
.ws2b{word-spacing:-15.424000pt;}
.ws2a{word-spacing:-15.360000pt;}
.ws29{word-spacing:-15.296000pt;}
.ws12{word-spacing:-14.986667pt;}
.ws55{word-spacing:-14.336000pt;}
.ws52{word-spacing:-13.173333pt;}
.ws3{word-spacing:-12.588800pt;}
.ws43{word-spacing:-12.454400pt;}
.ws39{word-spacing:-12.364800pt;}
.ws59{word-spacing:-11.776000pt;}
.ws58{word-spacing:-10.965333pt;}
.ws22{word-spacing:-10.538667pt;}
.ws21{word-spacing:-10.490667pt;}
.ws4{word-spacing:-10.325333pt;}
.ws57{word-spacing:-9.088000pt;}
.ws48{word-spacing:-8.256000pt;}
.ws2{word-spacing:-7.786822pt;}
.ws35{word-spacing:-7.680000pt;}
.ws0{word-spacing:-7.552000pt;}
.ws56{word-spacing:-3.200000pt;}
.ws47{word-spacing:-2.048000pt;}
.ws31{word-spacing:-1.792000pt;}
.ws40{word-spacing:-1.088000pt;}
.ws46{word-spacing:-0.896000pt;}
.ws2c{word-spacing:-0.832000pt;}
.wsf{word-spacing:-0.768000pt;}
.ws24{word-spacing:-0.704000pt;}
.ws16{word-spacing:-0.640000pt;}
.ws44{word-spacing:-0.576000pt;}
.wse{word-spacing:-0.512000pt;}
.ws2f{word-spacing:-0.448000pt;}
.ws23{word-spacing:-0.384000pt;}
.ws9{word-spacing:-0.320000pt;}
.wsd{word-spacing:-0.256000pt;}
.ws5a{word-spacing:-0.213333pt;}
.wsc{word-spacing:-0.192000pt;}
.ws25{word-spacing:-0.128000pt;}
.wsa{word-spacing:-0.064000pt;}
.ws4f{word-spacing:-0.053333pt;}
.ws3c{word-spacing:-0.042667pt;}
.ws7{word-spacing:0.000000pt;}
.ws1d{word-spacing:0.064000pt;}
.ws1c{word-spacing:0.128000pt;}
.wsb{word-spacing:0.192000pt;}
.ws10{word-spacing:0.213333pt;}
.ws1b{word-spacing:0.256000pt;}
.ws4e{word-spacing:0.266667pt;}
.ws1a{word-spacing:0.320000pt;}
.ws34{word-spacing:0.384000pt;}
.ws33{word-spacing:0.448000pt;}
.ws2d{word-spacing:0.512000pt;}
.ws26{word-spacing:0.533333pt;}
.ws32{word-spacing:0.576000pt;}
.ws2e{word-spacing:0.640000pt;}
.ws4c{word-spacing:0.704000pt;}
.ws51{word-spacing:0.768000pt;}
.ws50{word-spacing:0.832000pt;}
.ws36{word-spacing:0.960000pt;}
.ws13{word-spacing:1.088000pt;}
.ws17{word-spacing:1.152000pt;}
.ws18{word-spacing:1.216000pt;}
.ws8{word-spacing:1.600000pt;}
.ws49{word-spacing:1.920000pt;}
.ws53{word-spacing:2.080000pt;}
.ws30{word-spacing:2.112000pt;}
.ws37{word-spacing:2.133333pt;}
.ws1e{word-spacing:2.986667pt;}
.ws3f{word-spacing:3.648000pt;}
.ws5{word-spacing:3.733333pt;}
.ws3e{word-spacing:4.224000pt;}
.ws45{word-spacing:4.480000pt;}
.ws3d{word-spacing:5.504000pt;}
.ws4d{word-spacing:5.568000pt;}
.ws19{word-spacing:6.400000pt;}
.ws54{word-spacing:6.592000pt;}
.ws6{word-spacing:7.466667pt;}
.ws15{word-spacing:65.013333pt;}
.ws11{word-spacing:129.952000pt;}
._0{margin-left:-843.396267pt;}
._11{margin-left:-61.226667pt;}
._12{margin-left:-18.752000pt;}
._14{margin-left:-17.450667pt;}
._13{margin-left:-13.548800pt;}
._15{margin-left:-12.373333pt;}
._16{margin-left:-10.449067pt;}
._18{margin-left:-9.017600pt;}
._b{margin-left:-7.617067pt;}
._e{margin-left:-6.238933pt;}
._1{margin-left:-5.301333pt;}
._d{margin-left:-4.304000pt;}
._4{margin-left:-3.178667pt;}
._c{margin-left:-2.008533pt;}
._3{margin-left:-1.109333pt;}
._2{width:1.669333pt;}
._5{width:3.306667pt;}
._7{width:4.603733pt;}
._8{width:6.122667pt;}
._6{width:7.466667pt;}
._a{width:8.780800pt;}
._9{width:9.697067pt;}
._f{width:10.615467pt;}
._17{width:12.263200pt;}
._10{width:28.129867pt;}
.fs6{font-size:31.733333pt;}
.fs8{font-size:37.333333pt;}
.fs7{font-size:42.666667pt;}
.fs5{font-size:44.800000pt;}
.fs1{font-size:50.666667pt;}
.fs0{font-size:53.333333pt;}
.fs3{font-size:64.000000pt;}
.fs2{font-size:106.666667pt;}
.fs4{font-size:370.801067pt;}
.y0{bottom:0.000000pt;}
.y23{bottom:49.333333pt;}
.y1{bottom:64.000000pt;}
.y68{bottom:104.000000pt;}
.y11c{bottom:105.363733pt;}
.yfe{bottom:107.468933pt;}
.y22{bottom:107.740000pt;}
.y189{bottom:107.809867pt;}
.y164{bottom:108.460800pt;}
.y140{bottom:109.169867pt;}
.y8c{bottom:117.333333pt;}
.y67{bottom:121.073333pt;}
.y11b{bottom:121.897067pt;}
.y21{bottom:124.000000pt;}
.yfd{bottom:124.135600pt;}
.y188{bottom:127.681867pt;}
.y163{bottom:128.332800pt;}
.y13f{bottom:129.441867pt;}
.y8b{bottom:130.666667pt;}
.y1ac{bottom:134.406667pt;}
.y20{bottom:137.333333pt;}
.y11a{bottom:138.430400pt;}
.y66{bottom:141.073333pt;}
.yac{bottom:144.000000pt;}
.y187{bottom:147.553867pt;}
.y8a{bottom:147.740000pt;}
.y162{bottom:148.204800pt;}
.yfc{bottom:148.362267pt;}
.y13e{bottom:149.713867pt;}
.y1f{bottom:150.666667pt;}
.y65{bottom:161.073333pt;}
.y119{bottom:162.496133pt;}
.y1e{bottom:164.000000pt;}
.yfb{bottom:165.028933pt;}
.y186{bottom:167.425867pt;}
.y13d{bottom:169.985867pt;}
.y1ab{bottom:173.210667pt;}
.y161{bottom:175.630400pt;}
.y1d{bottom:177.333333pt;}
.yec{bottom:180.026667pt;}
.yce{bottom:181.073333pt;}
.yfa{bottom:181.695600pt;}
.y118{bottom:182.368133pt;}
.y89{bottom:183.226800pt;}
.yab{bottom:184.000000pt;}
.y185{bottom:187.297867pt;}
.y13c{bottom:190.257867pt;}
.y1c{bottom:190.666667pt;}
.y160{bottom:192.163733pt;}
.y1aa{bottom:192.938667pt;}
.y64{bottom:197.200000pt;}
.yeb{bottom:200.154667pt;}
.y117{bottom:202.240133pt;}
.y88{bottom:202.954800pt;}
.y43{bottom:204.000000pt;}
.y1cc{bottom:204.997333pt;}
.yf9{bottom:205.921200pt;}
.y184{bottom:207.169867pt;}
.y1b{bottom:207.740000pt;}
.y15f{bottom:208.697067pt;}
.y13b{bottom:210.529867pt;}
.ycd{bottom:211.600000pt;}
.y1a9{bottom:212.666667pt;}
.y63{bottom:216.800000pt;}
.yea{bottom:220.282667pt;}
.y42{bottom:221.073333pt;}
.y1cb{bottom:221.664000pt;}
.y116{bottom:222.112133pt;}
.y87{bottom:222.682800pt;}
.yaa{bottom:224.000000pt;}
.y15e{bottom:225.230400pt;}
.yf8{bottom:225.921200pt;}
.y183{bottom:227.041867pt;}
.y13a{bottom:230.801867pt;}
.ycc{bottom:232.000000pt;}
.y1a8{bottom:232.394667pt;}
.y62{bottom:236.400000pt;}
.y1ca{bottom:238.330667pt;}
.ye9{bottom:240.410667pt;}
.y15d{bottom:241.763733pt;}
.y115{bottom:241.984133pt;}
.y86{bottom:242.410800pt;}
.y1a{bottom:243.503733pt;}
.ya9{bottom:244.000000pt;}
.yf7{bottom:245.921200pt;}
.y182{bottom:246.913867pt;}
.y139{bottom:251.073867pt;}
.y1a7{bottom:252.122667pt;}
.ycb{bottom:252.400000pt;}
.y1c9{bottom:254.997333pt;}
.y41{bottom:255.168133pt;}
.y61{bottom:256.000000pt;}
.y15c{bottom:258.297067pt;}
.ye8{bottom:260.538667pt;}
.y114{bottom:261.856133pt;}
.y85{bottom:262.138800pt;}
.y19{bottom:263.103733pt;}
.ya8{bottom:264.000000pt;}
.yf6{bottom:265.921200pt;}
.y181{bottom:266.785867pt;}
.y138{bottom:271.345867pt;}
.y1a6{bottom:271.850667pt;}
.yca{bottom:272.800000pt;}
.y40{bottom:275.168133pt;}
.y60{bottom:275.600000pt;}
.ye7{bottom:280.762667pt;}
.y1c8{bottom:281.664000pt;}
.y84{bottom:281.866800pt;}
.y15b{bottom:282.416133pt;}
.y18{bottom:282.703733pt;}
.ya7{bottom:284.000000pt;}
.yf5{bottom:285.921200pt;}
.y180{bottom:286.657867pt;}
.y113{bottom:289.280933pt;}
.y1a5{bottom:291.578667pt;}
.y137{bottom:291.617867pt;}
.yc9{bottom:293.200000pt;}
.y3f{bottom:295.040133pt;}
.y5f{bottom:295.200000pt;}
.ye6{bottom:300.890667pt;}
.y83{bottom:301.594800pt;}
.y15a{bottom:302.144133pt;}
.y17{bottom:302.303733pt;}
.ya6{bottom:304.000000pt;}
.y112{bottom:305.814267pt;}
.yf4{bottom:305.921200pt;}
.y17f{bottom:306.529867pt;}
.y1a4{bottom:311.306667pt;}
.y136{bottom:311.889867pt;}
.yc8{bottom:313.600000pt;}
.y5e{bottom:314.800000pt;}
.y3e{bottom:314.912133pt;}
.y1c7{bottom:318.336000pt;}
.ye5{bottom:321.018667pt;}
.y82{bottom:321.322800pt;}
.y159{bottom:321.872133pt;}
.y16{bottom:321.903733pt;}
.y111{bottom:322.347600pt;}
.ya5{bottom:324.000000pt;}
.yae{bottom:325.067467pt;}
.yf3{bottom:325.921200pt;}
.y17e{bottom:326.401867pt;}
.y1a3{bottom:331.034667pt;}
.y1c6{bottom:331.669333pt;}
.y135{bottom:332.161867pt;}
.yc7{bottom:334.000000pt;}
.y5d{bottom:334.400000pt;}
.y3d{bottom:334.784133pt;}
.ye4{bottom:341.146667pt;}
.y15{bottom:341.503733pt;}
.y158{bottom:341.600133pt;}
.ya4{bottom:344.000000pt;}
.y1c5{bottom:345.002667pt;}
.yf2{bottom:345.921200pt;}
.y17d{bottom:346.273867pt;}
.y110{bottom:346.440933pt;}
.y81{bottom:348.614267pt;}
.y1a2{bottom:350.762667pt;}
.y134{bottom:352.433867pt;}
.y5c{bottom:354.000000pt;}
.yc6{bottom:354.400000pt;}
.y3c{bottom:354.656133pt;}
.y1c4{bottom:358.336000pt;}
.y14{bottom:361.103733pt;}
.ye3{bottom:361.274667pt;}
.y157{bottom:361.328133pt;}
.y10f{bottom:362.974267pt;}
.ya3{bottom:364.000000pt;}
.y80{bottom:365.014267pt;}
.yf1{bottom:365.921200pt;}
.y17c{bottom:366.145867pt;}
.y1a1{bottom:370.490667pt;}
.y1c3{bottom:371.669333pt;}
.y133{bottom:372.705867pt;}
.y5b{bottom:373.600000pt;}
.yc5{bottom:374.800000pt;}
.y13{bottom:380.703733pt;}
.y156{bottom:381.056133pt;}
.ye2{bottom:381.402667pt;}
.y7f{bottom:381.414267pt;}
.y3b{bottom:382.080933pt;}
.ya2{bottom:384.000000pt;}
.y1c2{bottom:385.002667pt;}
.yf0{bottom:385.921200pt;}
.y17b{bottom:386.017867pt;}
.y10e{bottom:386.949333pt;}
.y1a0{bottom:390.218667pt;}
.y132{bottom:392.977867pt;}
.y5a{bottom:393.200000pt;}
.yc4{bottom:395.200000pt;}
.y1c1{bottom:398.336000pt;}
.y3a{bottom:398.614267pt;}
.y12{bottom:400.303733pt;}
.ye1{bottom:401.530667pt;}
.ya1{bottom:404.000000pt;}
.y7e{bottom:405.374267pt;}
.y17a{bottom:405.889867pt;}
.yef{bottom:405.921200pt;}
.y10d{bottom:406.821333pt;}
.y155{bottom:408.347600pt;}
.y19f{bottom:409.946667pt;}
.y1c0{bottom:411.669333pt;}
.y59{bottom:412.800000pt;}
.y131{bottom:413.249867pt;}
.y39{bottom:415.147600pt;}
.yc3{bottom:415.600000pt;}
.y11{bottom:419.903733pt;}
.ye0{bottom:421.658667pt;}
.ya0{bottom:424.000000pt;}
.y154{bottom:424.880933pt;}
.y1bf{bottom:425.002667pt;}
.y179{bottom:425.761867pt;}
.yee{bottom:425.921200pt;}
.y10c{bottom:426.693333pt;}
.y7d{bottom:429.440000pt;}
.y19e{bottom:429.674667pt;}
.y38{bottom:431.680933pt;}
.y58{bottom:432.400000pt;}
.y130{bottom:433.521867pt;}
.yc2{bottom:436.000000pt;}
.y1be{bottom:438.336000pt;}
.y10{bottom:439.503733pt;}
.ydf{bottom:441.786667pt;}
.y9f{bottom:444.000000pt;}
.y178{bottom:445.633867pt;}
.yed{bottom:445.921200pt;}
.y10b{bottom:446.565333pt;}
.y153{bottom:448.974267pt;}
.y7c{bottom:449.168000pt;}
.y19d{bottom:449.402667pt;}
.y1bd{bottom:451.669333pt;}
.y57{bottom:452.000000pt;}
.y12f{bottom:453.793867pt;}
.y37{bottom:455.774267pt;}
.yc1{bottom:456.400000pt;}
.yf{bottom:459.103733pt;}
.yde{bottom:461.914667pt;}
.y9e{bottom:464.000000pt;}
.y1bc{bottom:465.002667pt;}
.y177{bottom:465.505867pt;}
.y152{bottom:465.507600pt;}
.y10a{bottom:466.437333pt;}
.y7b{bottom:468.896000pt;}
.y19c{bottom:469.130667pt;}
.y56{bottom:471.600000pt;}
.y36{bottom:472.307600pt;}
.y12e{bottom:474.065867pt;}
.yc0{bottom:476.800000pt;}
.y1bb{bottom:478.336000pt;}
.ye{bottom:478.703733pt;}
.y151{bottom:482.040933pt;}
.ydd{bottom:482.042667pt;}
.y9d{bottom:484.000000pt;}
.y176{bottom:485.377867pt;}
.y109{bottom:486.309333pt;}
.y7a{bottom:488.624000pt;}
.y35{bottom:488.840933pt;}
.y19b{bottom:488.858667pt;}
.y55{bottom:491.200000pt;}
.y1ba{bottom:491.669333pt;}
.y12d{bottom:494.337867pt;}
.ybf{bottom:497.200000pt;}
.yd{bottom:498.303733pt;}
.ydc{bottom:502.170667pt;}
.y9c{bottom:504.000000pt;}
.y1b9{bottom:505.002667pt;}
.y175{bottom:505.249867pt;}
.y34{bottom:505.374267pt;}
.y150{bottom:506.048000pt;}
.y108{bottom:506.181333pt;}
.y79{bottom:508.352000pt;}
.y19a{bottom:508.586667pt;}
.y54{bottom:510.800000pt;}
.y12c{bottom:514.609867pt;}
.ybe{bottom:517.600000pt;}
.yc{bottom:517.903733pt;}
.y1b8{bottom:518.336000pt;}
.y33{bottom:521.907600pt;}
.ydb{bottom:522.298667pt;}
.y9b{bottom:524.000000pt;}
.y174{bottom:525.121867pt;}
.y14f{bottom:525.920000pt;}
.y107{bottom:526.053333pt;}
.y78{bottom:528.080000pt;}
.y199{bottom:528.314667pt;}
.y53{bottom:530.400000pt;}
.y1b7{bottom:531.669333pt;}
.y12b{bottom:534.881867pt;}
.yb{bottom:537.503733pt;}
.ybd{bottom:538.000000pt;}
.yda{bottom:542.426667pt;}
.y9a{bottom:544.000000pt;}
.y173{bottom:544.993867pt;}
.y1b6{bottom:545.002667pt;}
.y14e{bottom:545.792000pt;}
.y106{bottom:545.925333pt;}
.y32{bottom:545.973333pt;}
.y77{bottom:547.808000pt;}
.y198{bottom:548.042667pt;}
.y52{bottom:550.000000pt;}
.ya{bottom:557.103733pt;}
.y1b5{bottom:558.336000pt;}
.ybc{bottom:558.400000pt;}
.yad{bottom:558.614133pt;}
.yd9{bottom:562.554667pt;}
.y12a{bottom:562.707600pt;}
.y99{bottom:564.000000pt;}
.y172{bottom:564.865867pt;}
.y14d{bottom:565.664000pt;}
.y105{bottom:565.797333pt;}
.y31{bottom:565.845333pt;}
.y76{bottom:567.536000pt;}
.y197{bottom:567.770667pt;}
.y51{bottom:569.600000pt;}
.y1b4{bottom:571.669333pt;}
.y9{bottom:576.703733pt;}
.y101{bottom:578.330667pt;}
.ybb{bottom:578.800000pt;}
.y129{bottom:579.640933pt;}
.yd8{bottom:582.682667pt;}
.y98{bottom:584.000000pt;}
.y171{bottom:584.737867pt;}
.y1b3{bottom:585.002667pt;}
.y14c{bottom:585.536000pt;}
.y104{bottom:585.669333pt;}
.y30{bottom:585.717333pt;}
.y75{bottom:587.264000pt;}
.y196{bottom:587.498667pt;}
.y50{bottom:589.200000pt;}
.y7{bottom:596.303733pt;}
.y128{bottom:596.574267pt;}
.y1b2{bottom:598.336000pt;}
.yba{bottom:599.200000pt;}
.yd7{bottom:602.810667pt;}
.y97{bottom:604.000000pt;}
.y170{bottom:604.609867pt;}
.y14b{bottom:605.408000pt;}
.y103{bottom:605.541333pt;}
.y2f{bottom:605.589333pt;}
.y74{bottom:606.992000pt;}
.y195{bottom:607.226667pt;}
.y4f{bottom:608.800000pt;}
.y1b1{bottom:611.669333pt;}
.y8{bottom:615.903733pt;}
.yb9{bottom:619.600000pt;}
.y127{bottom:621.013333pt;}
.yd6{bottom:622.938667pt;}
.y96{bottom:624.000000pt;}
.y16f{bottom:624.481867pt;}
.y1b0{bottom:625.002667pt;}
.y14a{bottom:625.280000pt;}
.y102{bottom:625.413333pt;}
.y2e{bottom:625.461333pt;}
.y73{bottom:626.720000pt;}
.y194{bottom:626.954667pt;}
.y4e{bottom:628.400000pt;}
.y1af{bottom:638.336000pt;}
.yb8{bottom:640.000000pt;}
.y126{bottom:641.285333pt;}
.yd5{bottom:643.104000pt;}
.y95{bottom:644.000000pt;}
.y149{bottom:645.152000pt;}
.y2d{bottom:645.285333pt;}
.y72{bottom:646.448000pt;}
.y193{bottom:646.682667pt;}
.y4d{bottom:648.000000pt;}
.y1ae{bottom:651.669333pt;}
.y16e{bottom:651.907600pt;}
.yb7{bottom:660.400000pt;}
.y125{bottom:661.557333pt;}
.yd4{bottom:663.232000pt;}
.y94{bottom:664.000000pt;}
.y1ad{bottom:665.002667pt;}
.y148{bottom:665.024000pt;}
.y2c{bottom:665.157333pt;}
.y71{bottom:666.176000pt;}
.y192{bottom:666.410667pt;}
.y4c{bottom:667.600000pt;}
.y16d{bottom:668.440933pt;}
.y6{bottom:675.891067pt;}
.yb6{bottom:680.800000pt;}
.y124{bottom:681.829333pt;}
.yd3{bottom:683.360000pt;}
.y93{bottom:684.000000pt;}
.y147{bottom:684.896000pt;}
.y16c{bottom:684.974267pt;}
.y2b{bottom:685.029333pt;}
.y70{bottom:685.904000pt;}
.y191{bottom:686.138667pt;}
.y4b{bottom:687.200000pt;}
.y5{bottom:695.891067pt;}
.y100{bottom:699.149600pt;}
.yb5{bottom:701.200000pt;}
.y16b{bottom:701.507600pt;}
.y123{bottom:702.101333pt;}
.yd2{bottom:703.488000pt;}
.y92{bottom:704.000000pt;}
.y146{bottom:704.768000pt;}
.y2a{bottom:704.901333pt;}
.y6f{bottom:705.632000pt;}
.y190{bottom:705.898667pt;}
.y4a{bottom:706.800000pt;}
.yb4{bottom:721.600000pt;}
.y122{bottom:722.373333pt;}
.yd1{bottom:723.616000pt;}
.y91{bottom:724.000000pt;}
.y145{bottom:724.640000pt;}
.y29{bottom:724.773333pt;}
.y6e{bottom:725.360000pt;}
.y16a{bottom:725.573333pt;}
.y18f{bottom:725.626667pt;}
.y49{bottom:726.400000pt;}
.yb3{bottom:742.000000pt;}
.y121{bottom:742.645333pt;}
.yd0{bottom:743.744000pt;}
.y90{bottom:744.000000pt;}
.y144{bottom:744.512000pt;}
.y28{bottom:744.645333pt;}
.y6d{bottom:745.088000pt;}
.y18e{bottom:745.354667pt;}
.y169{bottom:745.445333pt;}
.y48{bottom:746.000000pt;}
.y4{bottom:755.576133pt;}
.yb2{bottom:762.400000pt;}
.y120{bottom:762.917333pt;}
.ycf{bottom:763.872000pt;}
.y8f{bottom:764.000000pt;}
.y143{bottom:764.384000pt;}
.y27{bottom:764.517333pt;}
.y6c{bottom:764.816000pt;}
.y18d{bottom:765.082667pt;}
.y168{bottom:765.317333pt;}
.y47{bottom:765.600000pt;}
.y3{bottom:782.242800pt;}
.yb1{bottom:782.800000pt;}
.y11f{bottom:783.189333pt;}
.y8e{bottom:784.000000pt;}
.y142{bottom:784.256000pt;}
.y26{bottom:784.389333pt;}
.y6b{bottom:784.544000pt;}
.y18c{bottom:784.810667pt;}
.y167{bottom:785.189333pt;}
.y46{bottom:785.200000pt;}
.yb0{bottom:803.200000pt;}
.y11e{bottom:803.461333pt;}
.y8d{bottom:804.000000pt;}
.y141{bottom:804.128000pt;}
.y25{bottom:804.261333pt;}
.y6a{bottom:804.272000pt;}
.y18b{bottom:804.538667pt;}
.y45{bottom:804.800000pt;}
.y166{bottom:805.061333pt;}
.yaf{bottom:823.600000pt;}
.y11d{bottom:823.733333pt;}
.y69{bottom:824.000000pt;}
.yff{bottom:824.002267pt;}
.y24{bottom:824.133333pt;}
.y18a{bottom:824.266667pt;}
.y44{bottom:824.400000pt;}
.y165{bottom:824.533333pt;}
.y2{bottom:835.576133pt;}
.h8{height:21.269167pt;}
.hd{height:26.945443pt;}
.h2{height:33.769531pt;}
.h10{height:34.261333pt;}
.h1{height:35.546875pt;}
.h9{height:36.229167pt;}
.hf{height:42.826667pt;}
.h5{height:44.960000pt;}
.ha{height:45.286458pt;}
.he{height:49.304254pt;}
.h6{height:54.343750pt;}
.hb{height:54.450417pt;}
.hc{height:59.160625pt;}
.h3{height:71.093750pt;}
.h4{height:90.572917pt;}
.h7{height:259.560747pt;}
.h0{height:904.000000pt;}
.w0{width:640.000000pt;}
.x0{left:0.000000pt;}
.x6{left:60.000000pt;}
.x8{left:73.232000pt;}
.x9{left:86.456667pt;}
.x2{left:100.000000pt;}
.x5{left:113.226800pt;}
.x7{left:120.000000pt;}
.x3{left:126.456667pt;}
.xa{left:160.472400pt;}
.x4{left:176.849200pt;}
.x1{left:556.250000pt;}
}




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