
    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_1354eefbb5b0f277584eea91.woff')format("woff");}.ff1{font-family:ff1;line-height:1.172852;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_d9a235825d1a07d3021ee8e2.woff')format("woff");}.ff2{font-family:ff2;line-height:1.000977;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_feb1913cf720511bbf721df5.woff')format("woff");}.ff3{font-family:ff3;line-height:1.284668;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_8f4422e197a83202430b6470.woff')format("woff");}.ff4{font-family:ff4;line-height:1.311035;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_086cc8441fa3189cd0e62d28.woff')format("woff");}.ff5{font-family:ff5;line-height:1.331543;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_f0ca42871ea4710faeec828c.woff')format("woff");}.ff6{font-family:ff6;line-height:1.331331;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_f80784eaf8ba87fc58e07b1f.woff')format("woff");}.ff7{font-family:ff7;line-height:1.331331;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_7d62225752c072f3338fed4b.woff')format("woff");}.ff8{font-family:ff8;line-height:1.331543;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_82aa7add26d3e72a4a28ac5b.woff')format("woff");}.ff9{font-family:ff9;line-height:0.736816;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_b158022648921aeb894caeda.woff')format("woff");}.ffa{font-family:ffa;line-height:0.767090;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_7ffd22f7a899e62f7a1b0bca.woff')format("woff");}.ffb{font-family:ffb;line-height:1.284180;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_9c57614a72b88f73ef4d148c.woff')format("woff");}.ffc{font-family:ffc;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_c0c1fc760cf70644f01411cc.woff')format("woff");}.ffd{font-family:ffd;line-height:0.751953;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_1947a3265a8e7ee81f9e5ab0.woff')format("woff");}.ffe{font-family:ffe;line-height:0.966309;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_a9056294a7dc95da5acc7a3a.woff')format("woff");}.fff{font-family:fff;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1{transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-ms-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-webkit-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v2{vertical-align:-14.400000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:14.400000px;}
.ls31{letter-spacing:-9.107269px;}
.ls43{letter-spacing:-8.640000px;}
.ls7a{letter-spacing:-2.148000px;}
.ls6d{letter-spacing:-2.016000px;}
.ls6a{letter-spacing:-1.998000px;}
.ls64{letter-spacing:-1.758000px;}
.ls45{letter-spacing:-1.728000px;}
.ls61{letter-spacing:-1.590000px;}
.ls62{letter-spacing:-1.458000px;}
.ls48{letter-spacing:-1.344000px;}
.ls5f{letter-spacing:-1.302000px;}
.ls70{letter-spacing:-1.242000px;}
.ls5c{letter-spacing:-1.122000px;}
.ls4b{letter-spacing:-0.972000px;}
.ls7b{letter-spacing:-0.954000px;}
.ls49{letter-spacing:-0.822000px;}
.ls50{letter-spacing:-0.752615px;}
.ls39{letter-spacing:-0.746290px;}
.ls2c{letter-spacing:-0.720000px;}
.ls51{letter-spacing:-0.714668px;}
.ls3c{letter-spacing:-0.708000px;}
.ls7c{letter-spacing:-0.702000px;}
.ls24{letter-spacing:-0.630000px;}
.ls36{letter-spacing:-0.603989px;}
.ls6e{letter-spacing:-0.593400px;}
.ls46{letter-spacing:-0.573000px;}
.ls44{letter-spacing:-0.555600px;}
.ls6c{letter-spacing:-0.553200px;}
.ls2e{letter-spacing:-0.534420px;}
.ls47{letter-spacing:-0.507000px;}
.ls41{letter-spacing:-0.466800px;}
.ls76{letter-spacing:-0.333933px;}
.ls3e{letter-spacing:-0.316800px;}
.ls4c{letter-spacing:-0.288000px;}
.ls4f{letter-spacing:-0.234006px;}
.ls52{letter-spacing:-0.218827px;}
.ls34{letter-spacing:-0.200486px;}
.ls3d{letter-spacing:-0.190200px;}
.ls23{letter-spacing:-0.178800px;}
.ls5e{letter-spacing:-0.152400px;}
.ls2b{letter-spacing:-0.089400px;}
.ls4d{letter-spacing:-0.072000px;}
.ls2d{letter-spacing:-0.021250px;}
.ls3b{letter-spacing:-0.020160px;}
.ls21{letter-spacing:0.000000px;}
.ls1a{letter-spacing:0.020160px;}
.ls72{letter-spacing:0.021250px;}
.ls4a{letter-spacing:0.089400px;}
.ls38{letter-spacing:0.094235px;}
.ls42{letter-spacing:0.097800px;}
.ls35{letter-spacing:0.103089px;}
.ls5d{letter-spacing:0.135600px;}
.ls78{letter-spacing:0.141120px;}
.ls74{letter-spacing:0.144000px;}
.ls2a{letter-spacing:0.150000px;}
.ls33{letter-spacing:0.158112px;}
.ls28{letter-spacing:0.195600px;}
.ls5b{letter-spacing:0.294000px;}
.ls60{letter-spacing:0.316800px;}
.ls66{letter-spacing:0.368400px;}
.ls29{letter-spacing:0.388800px;}
.ls58{letter-spacing:0.397200px;}
.lse{letter-spacing:0.418681px;}
.ls6b{letter-spacing:0.423360px;}
.ls5{letter-spacing:0.427800px;}
.ls22{letter-spacing:0.452400px;}
.ls0{letter-spacing:0.466560px;}
.ls26{letter-spacing:0.466800px;}
.ls27{letter-spacing:0.486600px;}
.ls79{letter-spacing:0.486720px;}
.ls15{letter-spacing:0.491793px;}
.ls30{letter-spacing:0.492045px;}
.ls3{letter-spacing:0.493920px;}
.ls1d{letter-spacing:0.525186px;}
.ls71{letter-spacing:0.586560px;}
.ls3a{letter-spacing:0.596400px;}
.ls3f{letter-spacing:0.618000px;}
.ls16{letter-spacing:0.618282px;}
.ls32{letter-spacing:0.628655px;}
.ls4{letter-spacing:0.642240px;}
.ls1{letter-spacing:0.646560px;}
.ls37{letter-spacing:0.651423px;}
.ls1e{letter-spacing:0.661795px;}
.ls4e{letter-spacing:0.664072px;}
.ls2{letter-spacing:0.720000px;}
.ls25{letter-spacing:0.738000px;}
.ls63{letter-spacing:0.882000px;}
.ls20{letter-spacing:0.892512px;}
.ls40{letter-spacing:1.536000px;}
.ls2f{letter-spacing:1.619070px;}
.ls19{letter-spacing:1.906560px;}
.lsb{letter-spacing:2.009671px;}
.ls77{letter-spacing:2.026560px;}
.ls6f{letter-spacing:2.034000px;}
.ls73{letter-spacing:2.050560px;}
.ls75{letter-spacing:2.086560px;}
.lsd{letter-spacing:2.136160px;}
.ls1f{letter-spacing:2.179673px;}
.lsc{letter-spacing:2.199405px;}
.ls17{letter-spacing:3.346560px;}
.ls59{letter-spacing:3.490560px;}
.ls6{letter-spacing:3.527549px;}
.ls18{letter-spacing:4.786560px;}
.ls56{letter-spacing:4.966560px;}
.ls8{letter-spacing:5.045427px;}
.ls7{letter-spacing:5.171917px;}
.ls55{letter-spacing:6.226560px;}
.lsa{letter-spacing:6.563305px;}
.ls13{letter-spacing:6.689795px;}
.ls14{letter-spacing:6.753040px;}
.ls57{letter-spacing:7.666560px;}
.ls9{letter-spacing:8.081183px;}
.ls1c{letter-spacing:8.251185px;}
.ls5a{letter-spacing:9.106560px;}
.ls54{letter-spacing:9.226560px;}
.ls1b{letter-spacing:9.769063px;}
.ls65{letter-spacing:10.546560px;}
.ls53{letter-spacing:10.666560px;}
.ls68{letter-spacing:11.986560px;}
.ls69{letter-spacing:13.546560px;}
.ls10{letter-spacing:17.188452px;}
.ls11{letter-spacing:17.314941px;}
.ls12{letter-spacing:17.378186px;}
.lsf{letter-spacing:18.706330px;}
.ls67{letter-spacing:40.786560px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
.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;}
.sc1{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1{word-spacing:-23.670960px;}
.ws2{word-spacing:-22.588560px;}
.ws27{word-spacing:-20.336531px;}
.ws3a{word-spacing:-19.293120px;}
.ws3f{word-spacing:-18.847440px;}
.ws46{word-spacing:-18.374167px;}
.ws43{word-spacing:-18.351399px;}
.ws17{word-spacing:-18.349440px;}
.ws42{word-spacing:-17.701494px;}
.ws35{word-spacing:-17.695440px;}
.ws3{word-spacing:-17.551440px;}
.ws16{word-spacing:-17.431440px;}
.ws11{word-spacing:-17.409840px;}
.ws44{word-spacing:-17.388811px;}
.ws6{word-spacing:-17.300040px;}
.ws48{word-spacing:-17.280240px;}
.ws34{word-spacing:-17.210640px;}
.ws8{word-spacing:-17.202240px;}
.ws37{word-spacing:-17.181840px;}
.ws30{word-spacing:-17.130240px;}
.ws2b{word-spacing:-17.107440px;}
.ws7{word-spacing:-17.009040px;}
.ws9{word-spacing:-16.963440px;}
.ws2d{word-spacing:-16.949040px;}
.ws18{word-spacing:-16.911240px;}
.ws22{word-spacing:-16.902840px;}
.ws5{word-spacing:-16.813440px;}
.ws12{word-spacing:-16.793280px;}
.ws2e{word-spacing:-16.661040px;}
.ws14{word-spacing:-16.623240px;}
.ws0{word-spacing:-16.560000px;}
.ws23{word-spacing:-16.525440px;}
.ws15{word-spacing:-16.496640px;}
.ws3b{word-spacing:-16.346640px;}
.ws1e{word-spacing:-16.306440px;}
.ws3c{word-spacing:-16.260240px;}
.ws1a{word-spacing:-16.257840px;}
.ws1c{word-spacing:-16.240440px;}
.ws3e{word-spacing:-16.220040px;}
.ws4b{word-spacing:-16.111440px;}
.ws13{word-spacing:-16.105440px;}
.ws26{word-spacing:-16.034864px;}
.ws21{word-spacing:-15.991440px;}
.ws4a{word-spacing:-15.859440px;}
.ws49{word-spacing:-15.841440px;}
.ws2c{word-spacing:-15.691440px;}
.ws28{word-spacing:-15.606600px;}
.ws40{word-spacing:-15.571440px;}
.ws2f{word-spacing:-15.511440px;}
.ws1f{word-spacing:-15.469440px;}
.ws33{word-spacing:-15.355440px;}
.ws32{word-spacing:-15.223440px;}
.wsa{word-spacing:-15.120000px;}
.ws1b{word-spacing:-15.085440px;}
.ws36{word-spacing:-15.055440px;}
.ws39{word-spacing:-14.815440px;}
.ws3d{word-spacing:-14.797440px;}
.ws47{word-spacing:-14.665440px;}
.ws25{word-spacing:-13.050000px;}
.wsb{word-spacing:-11.160000px;}
.ws4{word-spacing:-10.808640px;}
.wsd{word-spacing:-10.440000px;}
.wsf{word-spacing:-9.865560px;}
.wsc{word-spacing:-9.720000px;}
.ws10{word-spacing:-9.437760px;}
.ws24{word-spacing:-8.928000px;}
.wse{word-spacing:-0.041760px;}
.ws29{word-spacing:0.000000px;}
.ws1d{word-spacing:7.646400px;}
.ws2a{word-spacing:7.766400px;}
.ws41{word-spacing:7.826400px;}
.ws19{word-spacing:9.086400px;}
.ws38{word-spacing:9.098400px;}
.ws31{word-spacing:9.206400px;}
.ws20{word-spacing:9.266400px;}
.ws45{word-spacing:9.577811px;}
._5{margin-left:-9.778560px;}
._7{margin-left:-8.482560px;}
._15{margin-left:-5.196720px;}
._9{margin-left:-4.155372px;}
._16{margin-left:-3.125113px;}
._3{margin-left:-2.119680px;}
._4{margin-left:-1.097280px;}
._1{width:1.244160px;}
._0{width:2.332800px;}
._2{width:3.404640px;}
._8{width:4.701155px;}
._e{width:6.162135px;}
._d{width:7.185600px;}
._6{width:8.588160px;}
._c{width:9.714809px;}
._11{width:10.797093px;}
._f{width:11.848800px;}
._10{width:12.921600px;}
._12{width:14.093280px;}
._b{width:16.439695px;}
._a{width:18.480007px;}
._14{width:118.725120px;}
._13{width:146.269440px;}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(0,112,192);}
.fc3{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:5.760000px;}
.fsa{font-size:30.240000px;}
.fs9{font-size:36.000000px;}
.fs5{font-size:38.880000px;}
.fs7{font-size:41.760000px;}
.fsb{font-size:54.720000px;}
.fs3{font-size:57.600000px;}
.fsc{font-size:57.679368px;}
.fs2{font-size:60.480000px;}
.fs8{font-size:63.750880px;}
.fs0{font-size:66.240000px;}
.fs4{font-size:83.520000px;}
.fsd{font-size:83.664000px;}
.fs1{font-size:155.520000px;}
.y0{bottom:0.000000px;}
.y4a{bottom:3.955500px;}
.ya9{bottom:4.305000px;}
.y5{bottom:4.320000px;}
.y4c{bottom:5.370000px;}
.y3e{bottom:6.475500px;}
.yac{bottom:6.825000px;}
.ybc{bottom:6.840000px;}
.yb5{bottom:6.870000px;}
.ya4{bottom:7.185000px;}
.ybb{bottom:7.200000px;}
.yec{bottom:7.215000px;}
.yb4{bottom:7.230000px;}
.yee{bottom:7.545000px;}
.yce{bottom:7.560000px;}
.y2{bottom:10.080000px;}
.ya2{bottom:12.585000px;}
.yaa{bottom:14.025000px;}
.yb8{bottom:14.040000px;}
.ydb{bottom:14.385000px;}
.y3d{bottom:14.395500px;}
.ye0{bottom:14.400000px;}
.y4{bottom:23.400000px;}
.y49{bottom:24.475500px;}
.yb7{bottom:24.480000px;}
.ya8{bottom:24.510000px;}
.y34{bottom:27.000000px;}
.y3c{bottom:43.951500px;}
.y3{bottom:47.880000px;}
.y48{bottom:48.634500px;}
.y33{bottom:50.400000px;}
.y3b{bottom:55.834500px;}
.y7{bottom:57.636000px;}
.y47{bottom:68.074500px;}
.y3a{bottom:68.794500px;}
.y32{bottom:70.560000px;}
.y39{bottom:82.114500px;}
.y46{bottom:91.474500px;}
.y31{bottom:93.240000px;}
.y113{bottom:99.396000px;}
.y9b{bottom:99.756000px;}
.y35{bottom:102.280500px;}
.y38{bottom:103.714500px;}
.y45{bottom:109.114500px;}
.yca{bottom:109.116000px;}
.y74{bottom:113.076000px;}
.y44{bottom:115.234500px;}
.yf3{bottom:115.236000px;}
.y30{bottom:119.565000px;}
.y9a{bottom:119.916000px;}
.y112{bottom:122.436000px;}
.yc9{bottom:129.276000px;}
.y43{bottom:131.074500px;}
.y73{bottom:139.356000px;}
.yf2{bottom:141.552000px;}
.y99{bottom:142.632000px;}
.y2f{bottom:142.965000px;}
.y111{bottom:145.512000px;}
.y42{bottom:146.554500px;}
.yc8{bottom:149.472000px;}
.y41{bottom:162.034500px;}
.yf1{bottom:162.090000px;}
.y72{bottom:165.315000px;}
.y2e{bottom:165.645000px;}
.y37{bottom:165.994500px;}
.y98{bottom:168.915000px;}
.yc7{bottom:169.635000px;}
.y36{bottom:176.824500px;}
.y40{bottom:177.904500px;}
.y110{bottom:189.075000px;}
.yc6{bottom:189.795000px;}
.yf0{bottom:189.810000px;}
.y71{bottom:191.595000px;}
.y2d{bottom:191.925000px;}
.y3f{bottom:193.024500px;}
.y97{bottom:194.835000px;}
.y10f{bottom:209.235000px;}
.yc5{bottom:209.955000px;}
.yef{bottom:217.530000px;}
.y70{bottom:217.875000px;}
.y2c{bottom:218.205000px;}
.y96{bottom:218.235000px;}
.y10e{bottom:231.915000px;}
.yc4{bottom:232.635000px;}
.y2b{bottom:241.275000px;}
.y6f{bottom:243.795000px;}
.yed{bottom:244.890000px;}
.y95{bottom:247.395000px;}
.y10d{bottom:255.315000px;}
.yc3{bottom:256.035000px;}
.y2a{bottom:261.435000px;}
.y6e{bottom:267.195000px;}
.y94{bottom:267.555000px;}
.yeb{bottom:272.610000px;}
.y1e{bottom:274.395000px;}
.y10c{bottom:275.505000px;}
.yc2{bottom:276.225000px;}
.y6d{bottom:290.265000px;}
.y93{bottom:290.625000px;}
.y29{bottom:293.475000px;}
.y10b{bottom:298.185000px;}
.y1d{bottom:298.875000px;}
.yc1{bottom:305.385000px;}
.yea{bottom:307.545000px;}
.y11{bottom:308.625000px;}
.y12d{bottom:312.585000px;}
.y6c{bottom:313.305000px;}
.y92{bottom:316.545000px;}
.y28{bottom:319.395000px;}
.y1c{bottom:322.995000px;}
.y10a{bottom:324.465000px;}
.yc0{bottom:328.065000px;}
.ye9{bottom:330.585000px;}
.y12c{bottom:335.265000px;}
.y6b{bottom:336.345000px;}
.y91{bottom:339.945000px;}
.y27{bottom:345.675000px;}
.y1b{bottom:347.115000px;}
.y109{bottom:347.865000px;}
.ybf{bottom:351.465000px;}
.ye8{bottom:353.625000px;}
.y12b{bottom:361.545000px;}
.y6a{bottom:362.625000px;}
.y108{bottom:368.025000px;}
.y90{bottom:369.105000px;}
.y1a{bottom:371.265000px;}
.y26{bottom:371.985000px;}
.ybe{bottom:374.505000px;}
.ye7{bottom:377.025000px;}
.y12a{bottom:387.825000px;}
.y69{bottom:388.545000px;}
.y8f{bottom:391.785000px;}
.ybd{bottom:395.025000px;}
.y19{bottom:395.385000px;}
.ye6{bottom:397.185000px;}
.y25{bottom:397.905000px;}
.y107{bottom:399.705000px;}
.y68{bottom:411.990000px;}
.y129{bottom:413.790000px;}
.y8e{bottom:415.230000px;}
.y18{bottom:419.505000px;}
.yba{bottom:422.790000px;}
.y24{bottom:424.185000px;}
.y106{bottom:426.030000px;}
.ye5{bottom:428.910000px;}
.y67{bottom:435.030000px;}
.y128{bottom:440.070000px;}
.y17{bottom:443.625000px;}
.y8d{bottom:444.390000px;}
.y23{bottom:450.105000px;}
.yb9{bottom:450.150000px;}
.y105{bottom:451.950000px;}
.ye4{bottom:455.190000px;}
.y66{bottom:460.950000px;}
.y127{bottom:465.990000px;}
.y8c{bottom:467.430000px;}
.y16{bottom:467.745000px;}
.y22{bottom:476.385000px;}
.y104{bottom:478.230000px;}
.ye3{bottom:481.110000px;}
.y65{bottom:487.230000px;}
.yb6{bottom:491.910000px;}
.y15{bottom:492.270000px;}
.y8b{bottom:493.350000px;}
.y21{bottom:502.710000px;}
.y103{bottom:504.510000px;}
.ye2{bottom:507.390000px;}
.y64{bottom:513.150000px;}
.y14{bottom:516.390000px;}
.y126{bottom:518.190000px;}
.y8a{bottom:519.630000px;}
.ye1{bottom:527.190000px;}
.y20{bottom:528.630000px;}
.y102{bottom:530.430000px;}
.yb3{bottom:533.670000px;}
.y63{bottom:539.460000px;}
.y13{bottom:540.510000px;}
.y89{bottom:543.060000px;}
.y125{bottom:544.500000px;}
.ydf{bottom:554.220000px;}
.y1f{bottom:554.910000px;}
.y101{bottom:556.740000px;}
.y12{bottom:564.630000px;}
.y62{bottom:565.740000px;}
.yb2{bottom:568.260000px;}
.y124{bottom:570.780000px;}
.y88{bottom:571.860000px;}
.y100{bottom:582.660000px;}
.y61{bottom:591.660000px;}
.y87{bottom:594.900000px;}
.yde{bottom:595.620000px;}
.y123{bottom:596.700000px;}
.yff{bottom:608.940000px;}
.yb1{bottom:614.700000px;}
.y60{bottom:615.060000px;}
.y86{bottom:621.180000px;}
.ydd{bottom:622.260000px;}
.y122{bottom:622.980000px;}
.yfe{bottom:635.220000px;}
.y5f{bottom:638.100000px;}
.y85{bottom:647.100000px;}
.y121{bottom:648.900000px;}
.ydc{bottom:649.260000px;}
.yb0{bottom:657.900000px;}
.yfd{bottom:661.140000px;}
.y5e{bottom:664.020000px;}
.y84{bottom:670.530000px;}
.y120{bottom:675.210000px;}
.yda{bottom:676.305000px;}
.yfc{bottom:687.450000px;}
.yaf{bottom:689.970000px;}
.y5d{bottom:690.330000px;}
.y83{bottom:693.570000px;}
.y11f{bottom:701.490000px;}
.yae{bottom:713.370000px;}
.y5c{bottom:716.250000px;}
.y82{bottom:719.490000px;}
.yd9{bottom:724.530000px;}
.y11e{bottom:727.410000px;}
.yad{bottom:736.050000px;}
.yfb{bottom:739.650000px;}
.y5b{bottom:742.530000px;}
.y81{bottom:742.890000px;}
.yd8{bottom:747.930000px;}
.y11d{bottom:753.690000px;}
.yab{bottom:756.945000px;}
.y80{bottom:763.050000px;}
.yfa{bottom:765.570000px;}
.yd7{bottom:768.090000px;}
.y5a{bottom:768.810000px;}
.y11c{bottom:779.610000px;}
.ya7{bottom:784.305000px;}
.yf9{bottom:788.970000px;}
.yd6{bottom:790.770000px;}
.y7f{bottom:791.850000px;}
.y59{bottom:794.730000px;}
.y11b{bottom:805.935000px;}
.yd5{bottom:814.215000px;}
.y7e{bottom:814.935000px;}
.yf8{bottom:818.175000px;}
.y58{bottom:821.055000px;}
.ya6{bottom:826.110000px;}
.y11a{bottom:832.215000px;}
.y7d{bottom:837.975000px;}
.yf7{bottom:841.215000px;}
.yd4{bottom:843.375000px;}
.y57{bottom:844.455000px;}
.ya5{bottom:853.830000px;}
.y119{bottom:858.135000px;}
.y7c{bottom:861.375000px;}
.yd3{bottom:866.055000px;}
.y56{bottom:867.135000px;}
.y10{bottom:885.495000px;}
.y7b{bottom:890.535000px;}
.yf{bottom:890.895000px;}
.yd2{bottom:892.335000px;}
.ya3{bottom:892.350000px;}
.y55{bottom:893.415000px;}
.ye{bottom:911.055000px;}
.y7a{bottom:913.575000px;}
.yf6{bottom:916.455000px;}
.y118{bottom:916.815000px;}
.yd1{bottom:918.615000px;}
.y54{bottom:919.335000px;}
.ya1{bottom:920.070000px;}
.yd0{bottom:939.165000px;}
.y79{bottom:939.525000px;}
.yf5{bottom:939.885000px;}
.yd{bottom:940.965000px;}
.y53{bottom:945.645000px;}
.y78{bottom:962.925000px;}
.yc{bottom:963.285000px;}
.ya0{bottom:965.805000px;}
.ycf{bottom:966.885000px;}
.y52{bottom:971.925000px;}
.y77{bottom:985.965000px;}
.y9f{bottom:989.205000px;}
.y117{bottom:991.725000px;}
.yb{bottom:993.165000px;}
.ycd{bottom:994.245000px;}
.yf4{bottom:994.965000px;}
.y51{bottom:997.845000px;}
.y9e{bottom:1011.885000px;}
.y76{bottom:1015.125000px;}
.ya{bottom:1015.845000px;}
.y116{bottom:1018.005000px;}
.y50{bottom:1021.245000px;}
.ycc{bottom:1021.965000px;}
.y75{bottom:1038.165000px;}
.y9{bottom:1040.685000px;}
.y4f{bottom:1041.405000px;}
.y115{bottom:1044.285000px;}
.ycb{bottom:1049.685000px;}
.y9d{bottom:1061.565000px;}
.y4e{bottom:1064.085000px;}
.y114{bottom:1067.370000px;}
.y8{bottom:1072.050000px;}
.y4b{bottom:1075.320000px;}
.y9c{bottom:1084.290000px;}
.y4d{bottom:1087.530000px;}
.y6{bottom:1108.050000px;}
.y1{bottom:1123.530000px;}
.hc{height:4.165313px;}
.h17{height:5.650313px;}
.h20{height:25.905000px;}
.h25{height:25.920000px;}
.h21{height:25.950000px;}
.h1d{height:26.265000px;}
.h24{height:26.280000px;}
.h27{height:26.310000px;}
.h23{height:26.316000px;}
.h1a{height:27.720000px;}
.h14{height:29.678906px;}
.h13{height:35.332031px;}
.h1e{height:37.065000px;}
.h1c{height:37.080000px;}
.h22{height:40.305000px;}
.h26{height:40.320000px;}
.h1f{height:40.341000px;}
.hf{height:40.985156px;}
.h10{height:41.535703px;}
.he{height:42.086250px;}
.ha{height:49.712344px;}
.h15{height:53.677969px;}
.h16{height:55.147500px;}
.h7{height:58.050000px;}
.h19{height:59.328281px;}
.h6{height:59.357813px;}
.hb{height:60.952500px;}
.h18{height:61.143509px;}
.h1b{height:63.565031px;}
.h9{height:64.112344px;}
.h5{height:65.010937px;}
.h3{height:65.884219px;}
.h11{height:67.579668px;}
.h2{height:84.990000px;}
.h8{height:88.536094px;}
.h4{height:116.640000px;}
.h12{height:205.605000px;}
.hd{height:573.990000px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.w8{width:101.916000px;}
.wb{width:102.276000px;}
.w2{width:103.702500px;}
.wc{width:104.061000px;}
.w14{width:105.156000px;}
.w9{width:106.581000px;}
.w12{width:108.741000px;}
.w10{width:108.750000px;}
.w11{width:109.152000px;}
.wa{width:113.112000px;}
.wd{width:119.190000px;}
.wf{width:119.901000px;}
.we{width:119.952000px;}
.w15{width:126.741000px;}
.w7{width:131.112000px;}
.w4{width:132.502500px;}
.w13{width:138.672000px;}
.w6{width:163.080000px;}
.w5{width:596.745000px;}
.w3{width:622.665000px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x26{left:6.876000px;}
.x1b{left:8.295000px;}
.x4{left:13.305000px;}
.x17{left:17.626500px;}
.x19{left:19.786500px;}
.x6{left:24.465000px;}
.x18{left:26.986500px;}
.x1f{left:29.146500px;}
.x3b{left:33.120000px;}
.x3d{left:40.320000px;}
.x12{left:43.906500px;}
.x38{left:45.720000px;}
.x1e{left:47.542500px;}
.x3a{left:48.945000px;}
.x13{left:50.782500px;}
.x11{left:55.102500px;}
.x21{left:57.262500px;}
.x3c{left:59.085000px;}
.x1c{left:62.295000px;}
.x20{left:66.265500px;}
.x1{left:78.529500px;}
.x16{left:80.305500px;}
.x15{left:83.905500px;}
.x7{left:86.436000px;}
.x2{left:95.425500px;}
.x22{left:102.985500px;}
.x1d{left:106.945500px;}
.x14{left:124.585500px;}
.x23{left:135.420000px;}
.x27{left:140.472000px;}
.x5{left:141.540000px;}
.x3{left:182.250000px;}
.x24{left:183.330000px;}
.x1a{left:218.970000px;}
.x4a{left:223.305000px;}
.x5e{left:226.545000px;}
.x51{left:227.625000px;}
.x53{left:230.145000px;}
.x40{left:235.185000px;}
.x44{left:236.265000px;}
.x57{left:243.105000px;}
.x42{left:250.305000px;}
.x37{left:260.745000px;}
.x30{left:266.145000px;}
.x28{left:276.225000px;}
.x34{left:282.705000px;}
.x2c{left:286.305000px;}
.xd{left:325.590000px;}
.x33{left:346.110000px;}
.x4b{left:350.070000px;}
.x2f{left:354.030000px;}
.x47{left:362.670000px;}
.x2b{left:364.110000px;}
.x4e{left:375.630000px;}
.x31{left:386.430000px;}
.x55{left:388.230000px;}
.x35{left:392.190000px;}
.x2d{left:400.140000px;}
.x58{left:404.100000px;}
.x29{left:408.060000px;}
.x4f{left:409.140000px;}
.x5b{left:411.660000px;}
.x45{left:419.220000px;}
.x5f{left:420.660000px;}
.x59{left:427.140000px;}
.x43{left:437.220000px;}
.x4c{left:441.900000px;}
.x54{left:446.940000px;}
.xe{left:449.460000px;}
.x52{left:457.740000px;}
.x48{left:459.180000px;}
.xb{left:464.940000px;}
.x5c{left:469.620000px;}
.x41{left:494.850000px;}
.x36{left:502.065000px;}
.x2e{left:503.145000px;}
.x39{left:506.025000px;}
.x32{left:507.465000px;}
.x2a{left:510.705000px;}
.x25{left:526.155000px;}
.x56{left:533.010000px;}
.x50{left:535.170000px;}
.xc{left:537.690000px;}
.x5a{left:551.370000px;}
.x5d{left:554.610000px;}
.x4d{left:556.050000px;}
.x49{left:575.850000px;}
.x46{left:587.775000px;}
.xf{left:616.215000px;}
.xa{left:625.575000px;}
.x3e{left:630.615000px;}
.x3f{left:658.335000px;}
.x9{left:766.050000px;}
.x8{left:791.970000px;}
.x10{left:807.090000px;}
@media print{
.v2{vertical-align:-12.800000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:12.800000pt;}
.ls31{letter-spacing:-8.095350pt;}
.ls43{letter-spacing:-7.680000pt;}
.ls7a{letter-spacing:-1.909333pt;}
.ls6d{letter-spacing:-1.792000pt;}
.ls6a{letter-spacing:-1.776000pt;}
.ls64{letter-spacing:-1.562667pt;}
.ls45{letter-spacing:-1.536000pt;}
.ls61{letter-spacing:-1.413333pt;}
.ls62{letter-spacing:-1.296000pt;}
.ls48{letter-spacing:-1.194667pt;}
.ls5f{letter-spacing:-1.157333pt;}
.ls70{letter-spacing:-1.104000pt;}
.ls5c{letter-spacing:-0.997333pt;}
.ls4b{letter-spacing:-0.864000pt;}
.ls7b{letter-spacing:-0.848000pt;}
.ls49{letter-spacing:-0.730667pt;}
.ls50{letter-spacing:-0.668991pt;}
.ls39{letter-spacing:-0.663369pt;}
.ls2c{letter-spacing:-0.640000pt;}
.ls51{letter-spacing:-0.635260pt;}
.ls3c{letter-spacing:-0.629333pt;}
.ls7c{letter-spacing:-0.624000pt;}
.ls24{letter-spacing:-0.560000pt;}
.ls36{letter-spacing:-0.536879pt;}
.ls6e{letter-spacing:-0.527467pt;}
.ls46{letter-spacing:-0.509333pt;}
.ls44{letter-spacing:-0.493867pt;}
.ls6c{letter-spacing:-0.491733pt;}
.ls2e{letter-spacing:-0.475040pt;}
.ls47{letter-spacing:-0.450667pt;}
.ls41{letter-spacing:-0.414933pt;}
.ls76{letter-spacing:-0.296829pt;}
.ls3e{letter-spacing:-0.281600pt;}
.ls4c{letter-spacing:-0.256000pt;}
.ls4f{letter-spacing:-0.208006pt;}
.ls52{letter-spacing:-0.194513pt;}
.ls34{letter-spacing:-0.178210pt;}
.ls3d{letter-spacing:-0.169067pt;}
.ls23{letter-spacing:-0.158933pt;}
.ls5e{letter-spacing:-0.135467pt;}
.ls2b{letter-spacing:-0.079467pt;}
.ls4d{letter-spacing:-0.064000pt;}
.ls2d{letter-spacing:-0.018889pt;}
.ls3b{letter-spacing:-0.017920pt;}
.ls21{letter-spacing:0.000000pt;}
.ls1a{letter-spacing:0.017920pt;}
.ls72{letter-spacing:0.018889pt;}
.ls4a{letter-spacing:0.079467pt;}
.ls38{letter-spacing:0.083764pt;}
.ls42{letter-spacing:0.086933pt;}
.ls35{letter-spacing:0.091635pt;}
.ls5d{letter-spacing:0.120533pt;}
.ls78{letter-spacing:0.125440pt;}
.ls74{letter-spacing:0.128000pt;}
.ls2a{letter-spacing:0.133333pt;}
.ls33{letter-spacing:0.140544pt;}
.ls28{letter-spacing:0.173867pt;}
.ls5b{letter-spacing:0.261333pt;}
.ls60{letter-spacing:0.281600pt;}
.ls66{letter-spacing:0.327467pt;}
.ls29{letter-spacing:0.345600pt;}
.ls58{letter-spacing:0.353067pt;}
.lse{letter-spacing:0.372161pt;}
.ls6b{letter-spacing:0.376320pt;}
.ls5{letter-spacing:0.380267pt;}
.ls22{letter-spacing:0.402133pt;}
.ls0{letter-spacing:0.414720pt;}
.ls26{letter-spacing:0.414933pt;}
.ls27{letter-spacing:0.432533pt;}
.ls79{letter-spacing:0.432640pt;}
.ls15{letter-spacing:0.437149pt;}
.ls30{letter-spacing:0.437374pt;}
.ls3{letter-spacing:0.439040pt;}
.ls1d{letter-spacing:0.466832pt;}
.ls71{letter-spacing:0.521387pt;}
.ls3a{letter-spacing:0.530133pt;}
.ls3f{letter-spacing:0.549333pt;}
.ls16{letter-spacing:0.549584pt;}
.ls32{letter-spacing:0.558804pt;}
.ls4{letter-spacing:0.570880pt;}
.ls1{letter-spacing:0.574720pt;}
.ls37{letter-spacing:0.579042pt;}
.ls1e{letter-spacing:0.588262pt;}
.ls4e{letter-spacing:0.590286pt;}
.ls2{letter-spacing:0.640000pt;}
.ls25{letter-spacing:0.656000pt;}
.ls63{letter-spacing:0.784000pt;}
.ls20{letter-spacing:0.793344pt;}
.ls40{letter-spacing:1.365333pt;}
.ls2f{letter-spacing:1.439173pt;}
.ls19{letter-spacing:1.694720pt;}
.lsb{letter-spacing:1.786374pt;}
.ls77{letter-spacing:1.801387pt;}
.ls6f{letter-spacing:1.808000pt;}
.ls73{letter-spacing:1.822720pt;}
.ls75{letter-spacing:1.854720pt;}
.lsd{letter-spacing:1.898809pt;}
.ls1f{letter-spacing:1.937487pt;}
.lsc{letter-spacing:1.955027pt;}
.ls17{letter-spacing:2.974720pt;}
.ls59{letter-spacing:3.102720pt;}
.ls6{letter-spacing:3.135599pt;}
.ls18{letter-spacing:4.254720pt;}
.ls56{letter-spacing:4.414720pt;}
.ls8{letter-spacing:4.484824pt;}
.ls7{letter-spacing:4.597259pt;}
.ls55{letter-spacing:5.534720pt;}
.lsa{letter-spacing:5.834049pt;}
.ls13{letter-spacing:5.946484pt;}
.ls14{letter-spacing:6.002702pt;}
.ls57{letter-spacing:6.814720pt;}
.ls9{letter-spacing:7.183274pt;}
.ls1c{letter-spacing:7.334387pt;}
.ls5a{letter-spacing:8.094720pt;}
.ls54{letter-spacing:8.201387pt;}
.ls1b{letter-spacing:8.683612pt;}
.ls65{letter-spacing:9.374720pt;}
.ls53{letter-spacing:9.481387pt;}
.ls68{letter-spacing:10.654720pt;}
.ls69{letter-spacing:12.041387pt;}
.ls10{letter-spacing:15.278624pt;}
.ls11{letter-spacing:15.391059pt;}
.ls12{letter-spacing:15.447277pt;}
.lsf{letter-spacing:16.627849pt;}
.ls67{letter-spacing:36.254720pt;}
.ws1{word-spacing:-21.040853pt;}
.ws2{word-spacing:-20.078720pt;}
.ws27{word-spacing:-18.076916pt;}
.ws3a{word-spacing:-17.149440pt;}
.ws3f{word-spacing:-16.753280pt;}
.ws46{word-spacing:-16.332593pt;}
.ws43{word-spacing:-16.312355pt;}
.ws17{word-spacing:-16.310613pt;}
.ws42{word-spacing:-15.734662pt;}
.ws35{word-spacing:-15.729280pt;}
.ws3{word-spacing:-15.601280pt;}
.ws16{word-spacing:-15.494613pt;}
.ws11{word-spacing:-15.475413pt;}
.ws44{word-spacing:-15.456721pt;}
.ws6{word-spacing:-15.377813pt;}
.ws48{word-spacing:-15.360213pt;}
.ws34{word-spacing:-15.298347pt;}
.ws8{word-spacing:-15.290880pt;}
.ws37{word-spacing:-15.272747pt;}
.ws30{word-spacing:-15.226880pt;}
.ws2b{word-spacing:-15.206613pt;}
.ws7{word-spacing:-15.119147pt;}
.ws9{word-spacing:-15.078613pt;}
.ws2d{word-spacing:-15.065813pt;}
.ws18{word-spacing:-15.032213pt;}
.ws22{word-spacing:-15.024747pt;}
.ws5{word-spacing:-14.945280pt;}
.ws12{word-spacing:-14.927360pt;}
.ws2e{word-spacing:-14.809813pt;}
.ws14{word-spacing:-14.776213pt;}
.ws0{word-spacing:-14.720000pt;}
.ws23{word-spacing:-14.689280pt;}
.ws15{word-spacing:-14.663680pt;}
.ws3b{word-spacing:-14.530347pt;}
.ws1e{word-spacing:-14.494613pt;}
.ws3c{word-spacing:-14.453547pt;}
.ws1a{word-spacing:-14.451413pt;}
.ws1c{word-spacing:-14.435947pt;}
.ws3e{word-spacing:-14.417813pt;}
.ws4b{word-spacing:-14.321280pt;}
.ws13{word-spacing:-14.315947pt;}
.ws26{word-spacing:-14.253213pt;}
.ws21{word-spacing:-14.214613pt;}
.ws4a{word-spacing:-14.097280pt;}
.ws49{word-spacing:-14.081280pt;}
.ws2c{word-spacing:-13.947947pt;}
.ws28{word-spacing:-13.872533pt;}
.ws40{word-spacing:-13.841280pt;}
.ws2f{word-spacing:-13.787947pt;}
.ws1f{word-spacing:-13.750613pt;}
.ws33{word-spacing:-13.649280pt;}
.ws32{word-spacing:-13.531947pt;}
.wsa{word-spacing:-13.440000pt;}
.ws1b{word-spacing:-13.409280pt;}
.ws36{word-spacing:-13.382613pt;}
.ws39{word-spacing:-13.169280pt;}
.ws3d{word-spacing:-13.153280pt;}
.ws47{word-spacing:-13.035947pt;}
.ws25{word-spacing:-11.600000pt;}
.wsb{word-spacing:-9.920000pt;}
.ws4{word-spacing:-9.607680pt;}
.wsd{word-spacing:-9.280000pt;}
.wsf{word-spacing:-8.769387pt;}
.wsc{word-spacing:-8.640000pt;}
.ws10{word-spacing:-8.389120pt;}
.ws24{word-spacing:-7.936000pt;}
.wse{word-spacing:-0.037120pt;}
.ws29{word-spacing:0.000000pt;}
.ws1d{word-spacing:6.796800pt;}
.ws2a{word-spacing:6.903467pt;}
.ws41{word-spacing:6.956800pt;}
.ws19{word-spacing:8.076800pt;}
.ws38{word-spacing:8.087467pt;}
.ws31{word-spacing:8.183467pt;}
.ws20{word-spacing:8.236800pt;}
.ws45{word-spacing:8.513610pt;}
._5{margin-left:-8.692053pt;}
._7{margin-left:-7.540053pt;}
._15{margin-left:-4.619307pt;}
._9{margin-left:-3.693664pt;}
._16{margin-left:-2.777878pt;}
._3{margin-left:-1.884160pt;}
._4{margin-left:-0.975360pt;}
._1{width:1.105920pt;}
._0{width:2.073600pt;}
._2{width:3.026347pt;}
._8{width:4.178804pt;}
._e{width:5.477453pt;}
._d{width:6.387200pt;}
._6{width:7.633920pt;}
._c{width:8.635386pt;}
._11{width:9.597416pt;}
._f{width:10.532267pt;}
._10{width:11.485867pt;}
._12{width:12.527360pt;}
._b{width:14.613062pt;}
._a{width:16.426673pt;}
._14{width:105.533440pt;}
._13{width:130.017280pt;}
.fs6{font-size:5.120000pt;}
.fsa{font-size:26.880000pt;}
.fs9{font-size:32.000000pt;}
.fs5{font-size:34.560000pt;}
.fs7{font-size:37.120000pt;}
.fsb{font-size:48.640000pt;}
.fs3{font-size:51.200000pt;}
.fsc{font-size:51.270549pt;}
.fs2{font-size:53.760000pt;}
.fs8{font-size:56.667449pt;}
.fs0{font-size:58.880000pt;}
.fs4{font-size:74.240000pt;}
.fsd{font-size:74.368000pt;}
.fs1{font-size:138.240000pt;}
.y0{bottom:0.000000pt;}
.y4a{bottom:3.516000pt;}
.ya9{bottom:3.826667pt;}
.y5{bottom:3.840000pt;}
.y4c{bottom:4.773333pt;}
.y3e{bottom:5.756000pt;}
.yac{bottom:6.066667pt;}
.ybc{bottom:6.080000pt;}
.yb5{bottom:6.106667pt;}
.ya4{bottom:6.386667pt;}
.ybb{bottom:6.400000pt;}
.yec{bottom:6.413333pt;}
.yb4{bottom:6.426667pt;}
.yee{bottom:6.706667pt;}
.yce{bottom:6.720000pt;}
.y2{bottom:8.960000pt;}
.ya2{bottom:11.186667pt;}
.yaa{bottom:12.466667pt;}
.yb8{bottom:12.480000pt;}
.ydb{bottom:12.786667pt;}
.y3d{bottom:12.796000pt;}
.ye0{bottom:12.800000pt;}
.y4{bottom:20.800000pt;}
.y49{bottom:21.756000pt;}
.yb7{bottom:21.760000pt;}
.ya8{bottom:21.786667pt;}
.y34{bottom:24.000000pt;}
.y3c{bottom:39.068000pt;}
.y3{bottom:42.560000pt;}
.y48{bottom:43.230667pt;}
.y33{bottom:44.800000pt;}
.y3b{bottom:49.630667pt;}
.y7{bottom:51.232000pt;}
.y47{bottom:60.510667pt;}
.y3a{bottom:61.150667pt;}
.y32{bottom:62.720000pt;}
.y39{bottom:72.990667pt;}
.y46{bottom:81.310667pt;}
.y31{bottom:82.880000pt;}
.y113{bottom:88.352000pt;}
.y9b{bottom:88.672000pt;}
.y35{bottom:90.916000pt;}
.y38{bottom:92.190667pt;}
.y45{bottom:96.990667pt;}
.yca{bottom:96.992000pt;}
.y74{bottom:100.512000pt;}
.y44{bottom:102.430667pt;}
.yf3{bottom:102.432000pt;}
.y30{bottom:106.280000pt;}
.y9a{bottom:106.592000pt;}
.y112{bottom:108.832000pt;}
.yc9{bottom:114.912000pt;}
.y43{bottom:116.510667pt;}
.y73{bottom:123.872000pt;}
.yf2{bottom:125.824000pt;}
.y99{bottom:126.784000pt;}
.y2f{bottom:127.080000pt;}
.y111{bottom:129.344000pt;}
.y42{bottom:130.270667pt;}
.yc8{bottom:132.864000pt;}
.y41{bottom:144.030667pt;}
.yf1{bottom:144.080000pt;}
.y72{bottom:146.946667pt;}
.y2e{bottom:147.240000pt;}
.y37{bottom:147.550667pt;}
.y98{bottom:150.146667pt;}
.yc7{bottom:150.786667pt;}
.y36{bottom:157.177333pt;}
.y40{bottom:158.137333pt;}
.y110{bottom:168.066667pt;}
.yc6{bottom:168.706667pt;}
.yf0{bottom:168.720000pt;}
.y71{bottom:170.306667pt;}
.y2d{bottom:170.600000pt;}
.y3f{bottom:171.577333pt;}
.y97{bottom:173.186667pt;}
.y10f{bottom:185.986667pt;}
.yc5{bottom:186.626667pt;}
.yef{bottom:193.360000pt;}
.y70{bottom:193.666667pt;}
.y2c{bottom:193.960000pt;}
.y96{bottom:193.986667pt;}
.y10e{bottom:206.146667pt;}
.yc4{bottom:206.786667pt;}
.y2b{bottom:214.466667pt;}
.y6f{bottom:216.706667pt;}
.yed{bottom:217.680000pt;}
.y95{bottom:219.906667pt;}
.y10d{bottom:226.946667pt;}
.yc3{bottom:227.586667pt;}
.y2a{bottom:232.386667pt;}
.y6e{bottom:237.506667pt;}
.y94{bottom:237.826667pt;}
.yeb{bottom:242.320000pt;}
.y1e{bottom:243.906667pt;}
.y10c{bottom:244.893333pt;}
.yc2{bottom:245.533333pt;}
.y6d{bottom:258.013333pt;}
.y93{bottom:258.333333pt;}
.y29{bottom:260.866667pt;}
.y10b{bottom:265.053333pt;}
.y1d{bottom:265.666667pt;}
.yc1{bottom:271.453333pt;}
.yea{bottom:273.373333pt;}
.y11{bottom:274.333333pt;}
.y12d{bottom:277.853333pt;}
.y6c{bottom:278.493333pt;}
.y92{bottom:281.373333pt;}
.y28{bottom:283.906667pt;}
.y1c{bottom:287.106667pt;}
.y10a{bottom:288.413333pt;}
.yc0{bottom:291.613333pt;}
.ye9{bottom:293.853333pt;}
.y12c{bottom:298.013333pt;}
.y6b{bottom:298.973333pt;}
.y91{bottom:302.173333pt;}
.y27{bottom:307.266667pt;}
.y1b{bottom:308.546667pt;}
.y109{bottom:309.213333pt;}
.ybf{bottom:312.413333pt;}
.ye8{bottom:314.333333pt;}
.y12b{bottom:321.373333pt;}
.y6a{bottom:322.333333pt;}
.y108{bottom:327.133333pt;}
.y90{bottom:328.093333pt;}
.y1a{bottom:330.013333pt;}
.y26{bottom:330.653333pt;}
.ybe{bottom:332.893333pt;}
.ye7{bottom:335.133333pt;}
.y12a{bottom:344.733333pt;}
.y69{bottom:345.373333pt;}
.y8f{bottom:348.253333pt;}
.ybd{bottom:351.133333pt;}
.y19{bottom:351.453333pt;}
.ye6{bottom:353.053333pt;}
.y25{bottom:353.693333pt;}
.y107{bottom:355.293333pt;}
.y68{bottom:366.213333pt;}
.y129{bottom:367.813333pt;}
.y8e{bottom:369.093333pt;}
.y18{bottom:372.893333pt;}
.yba{bottom:375.813333pt;}
.y24{bottom:377.053333pt;}
.y106{bottom:378.693333pt;}
.ye5{bottom:381.253333pt;}
.y67{bottom:386.693333pt;}
.y128{bottom:391.173333pt;}
.y17{bottom:394.333333pt;}
.y8d{bottom:395.013333pt;}
.y23{bottom:400.093333pt;}
.yb9{bottom:400.133333pt;}
.y105{bottom:401.733333pt;}
.ye4{bottom:404.613333pt;}
.y66{bottom:409.733333pt;}
.y127{bottom:414.213333pt;}
.y8c{bottom:415.493333pt;}
.y16{bottom:415.773333pt;}
.y22{bottom:423.453333pt;}
.y104{bottom:425.093333pt;}
.ye3{bottom:427.653333pt;}
.y65{bottom:433.093333pt;}
.yb6{bottom:437.253333pt;}
.y15{bottom:437.573333pt;}
.y8b{bottom:438.533333pt;}
.y21{bottom:446.853333pt;}
.y103{bottom:448.453333pt;}
.ye2{bottom:451.013333pt;}
.y64{bottom:456.133333pt;}
.y14{bottom:459.013333pt;}
.y126{bottom:460.613333pt;}
.y8a{bottom:461.893333pt;}
.ye1{bottom:468.613333pt;}
.y20{bottom:469.893333pt;}
.y102{bottom:471.493333pt;}
.yb3{bottom:474.373333pt;}
.y63{bottom:479.520000pt;}
.y13{bottom:480.453333pt;}
.y89{bottom:482.720000pt;}
.y125{bottom:484.000000pt;}
.ydf{bottom:492.640000pt;}
.y1f{bottom:493.253333pt;}
.y101{bottom:494.880000pt;}
.y12{bottom:501.893333pt;}
.y62{bottom:502.880000pt;}
.yb2{bottom:505.120000pt;}
.y124{bottom:507.360000pt;}
.y88{bottom:508.320000pt;}
.y100{bottom:517.920000pt;}
.y61{bottom:525.920000pt;}
.y87{bottom:528.800000pt;}
.yde{bottom:529.440000pt;}
.y123{bottom:530.400000pt;}
.yff{bottom:541.280000pt;}
.yb1{bottom:546.400000pt;}
.y60{bottom:546.720000pt;}
.y86{bottom:552.160000pt;}
.ydd{bottom:553.120000pt;}
.y122{bottom:553.760000pt;}
.yfe{bottom:564.640000pt;}
.y5f{bottom:567.200000pt;}
.y85{bottom:575.200000pt;}
.y121{bottom:576.800000pt;}
.ydc{bottom:577.120000pt;}
.yb0{bottom:584.800000pt;}
.yfd{bottom:587.680000pt;}
.y5e{bottom:590.240000pt;}
.y84{bottom:596.026667pt;}
.y120{bottom:600.186667pt;}
.yda{bottom:601.160000pt;}
.yfc{bottom:611.066667pt;}
.yaf{bottom:613.306667pt;}
.y5d{bottom:613.626667pt;}
.y83{bottom:616.506667pt;}
.y11f{bottom:623.546667pt;}
.yae{bottom:634.106667pt;}
.y5c{bottom:636.666667pt;}
.y82{bottom:639.546667pt;}
.yd9{bottom:644.026667pt;}
.y11e{bottom:646.586667pt;}
.yad{bottom:654.266667pt;}
.yfb{bottom:657.466667pt;}
.y5b{bottom:660.026667pt;}
.y81{bottom:660.346667pt;}
.yd8{bottom:664.826667pt;}
.y11d{bottom:669.946667pt;}
.yab{bottom:672.840000pt;}
.y80{bottom:678.266667pt;}
.yfa{bottom:680.506667pt;}
.yd7{bottom:682.746667pt;}
.y5a{bottom:683.386667pt;}
.y11c{bottom:692.986667pt;}
.ya7{bottom:697.160000pt;}
.yf9{bottom:701.306667pt;}
.yd6{bottom:702.906667pt;}
.y7f{bottom:703.866667pt;}
.y59{bottom:706.426667pt;}
.y11b{bottom:716.386667pt;}
.yd5{bottom:723.746667pt;}
.y7e{bottom:724.386667pt;}
.yf8{bottom:727.266667pt;}
.y58{bottom:729.826667pt;}
.ya6{bottom:734.320000pt;}
.y11a{bottom:739.746667pt;}
.y7d{bottom:744.866667pt;}
.yf7{bottom:747.746667pt;}
.yd4{bottom:749.666667pt;}
.y57{bottom:750.626667pt;}
.ya5{bottom:758.960000pt;}
.y119{bottom:762.786667pt;}
.y7c{bottom:765.666667pt;}
.yd3{bottom:769.826667pt;}
.y56{bottom:770.786667pt;}
.y10{bottom:787.106667pt;}
.y7b{bottom:791.586667pt;}
.yf{bottom:791.906667pt;}
.yd2{bottom:793.186667pt;}
.ya3{bottom:793.200000pt;}
.y55{bottom:794.146667pt;}
.ye{bottom:809.826667pt;}
.y7a{bottom:812.066667pt;}
.yf6{bottom:814.626667pt;}
.y118{bottom:814.946667pt;}
.yd1{bottom:816.546667pt;}
.y54{bottom:817.186667pt;}
.ya1{bottom:817.840000pt;}
.yd0{bottom:834.813333pt;}
.y79{bottom:835.133333pt;}
.yf5{bottom:835.453333pt;}
.yd{bottom:836.413333pt;}
.y53{bottom:840.573333pt;}
.y78{bottom:855.933333pt;}
.yc{bottom:856.253333pt;}
.ya0{bottom:858.493333pt;}
.ycf{bottom:859.453333pt;}
.y52{bottom:863.933333pt;}
.y77{bottom:876.413333pt;}
.y9f{bottom:879.293333pt;}
.y117{bottom:881.533333pt;}
.yb{bottom:882.813333pt;}
.ycd{bottom:883.773333pt;}
.yf4{bottom:884.413333pt;}
.y51{bottom:886.973333pt;}
.y9e{bottom:899.453333pt;}
.y76{bottom:902.333333pt;}
.ya{bottom:902.973333pt;}
.y116{bottom:904.893333pt;}
.y50{bottom:907.773333pt;}
.ycc{bottom:908.413333pt;}
.y75{bottom:922.813333pt;}
.y9{bottom:925.053333pt;}
.y4f{bottom:925.693333pt;}
.y115{bottom:928.253333pt;}
.ycb{bottom:933.053333pt;}
.y9d{bottom:943.613333pt;}
.y4e{bottom:945.853333pt;}
.y114{bottom:948.773333pt;}
.y8{bottom:952.933333pt;}
.y4b{bottom:955.840000pt;}
.y9c{bottom:963.813333pt;}
.y4d{bottom:966.693333pt;}
.y6{bottom:984.933333pt;}
.y1{bottom:998.693333pt;}
.hc{height:3.702500pt;}
.h17{height:5.022500pt;}
.h20{height:23.026667pt;}
.h25{height:23.040000pt;}
.h21{height:23.066667pt;}
.h1d{height:23.346667pt;}
.h24{height:23.360000pt;}
.h27{height:23.386667pt;}
.h23{height:23.392000pt;}
.h1a{height:24.640000pt;}
.h14{height:26.381250pt;}
.h13{height:31.406250pt;}
.h1e{height:32.946667pt;}
.h1c{height:32.960000pt;}
.h22{height:35.826667pt;}
.h26{height:35.840000pt;}
.h1f{height:35.858667pt;}
.hf{height:36.431250pt;}
.h10{height:36.920625pt;}
.he{height:37.410000pt;}
.ha{height:44.188750pt;}
.h15{height:47.713750pt;}
.h16{height:49.020000pt;}
.h7{height:51.600000pt;}
.h19{height:52.736250pt;}
.h6{height:52.762500pt;}
.hb{height:54.180000pt;}
.h18{height:54.349786pt;}
.h1b{height:56.502250pt;}
.h9{height:56.988750pt;}
.h5{height:57.787500pt;}
.h3{height:58.563750pt;}
.h11{height:60.070816pt;}
.h2{height:75.546667pt;}
.h8{height:78.698750pt;}
.h4{height:103.680000pt;}
.h12{height:182.760000pt;}
.hd{height:510.213333pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.w8{width:90.592000pt;}
.wb{width:90.912000pt;}
.w2{width:92.180000pt;}
.wc{width:92.498667pt;}
.w14{width:93.472000pt;}
.w9{width:94.738667pt;}
.w12{width:96.658667pt;}
.w10{width:96.666667pt;}
.w11{width:97.024000pt;}
.wa{width:100.544000pt;}
.wd{width:105.946667pt;}
.wf{width:106.578667pt;}
.we{width:106.624000pt;}
.w15{width:112.658667pt;}
.w7{width:116.544000pt;}
.w4{width:117.780000pt;}
.w13{width:123.264000pt;}
.w6{width:144.960000pt;}
.w5{width:530.440000pt;}
.w3{width:553.480000pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x26{left:6.112000pt;}
.x1b{left:7.373333pt;}
.x4{left:11.826667pt;}
.x17{left:15.668000pt;}
.x19{left:17.588000pt;}
.x6{left:21.746667pt;}
.x18{left:23.988000pt;}
.x1f{left:25.908000pt;}
.x3b{left:29.440000pt;}
.x3d{left:35.840000pt;}
.x12{left:39.028000pt;}
.x38{left:40.640000pt;}
.x1e{left:42.260000pt;}
.x3a{left:43.506667pt;}
.x13{left:45.140000pt;}
.x11{left:48.980000pt;}
.x21{left:50.900000pt;}
.x3c{left:52.520000pt;}
.x1c{left:55.373333pt;}
.x20{left:58.902667pt;}
.x1{left:69.804000pt;}
.x16{left:71.382667pt;}
.x15{left:74.582667pt;}
.x7{left:76.832000pt;}
.x2{left:84.822667pt;}
.x22{left:91.542667pt;}
.x1d{left:95.062667pt;}
.x14{left:110.742667pt;}
.x23{left:120.373333pt;}
.x27{left:124.864000pt;}
.x5{left:125.813333pt;}
.x3{left:162.000000pt;}
.x24{left:162.960000pt;}
.x1a{left:194.640000pt;}
.x4a{left:198.493333pt;}
.x5e{left:201.373333pt;}
.x51{left:202.333333pt;}
.x53{left:204.573333pt;}
.x40{left:209.053333pt;}
.x44{left:210.013333pt;}
.x57{left:216.093333pt;}
.x42{left:222.493333pt;}
.x37{left:231.773333pt;}
.x30{left:236.573333pt;}
.x28{left:245.533333pt;}
.x34{left:251.293333pt;}
.x2c{left:254.493333pt;}
.xd{left:289.413333pt;}
.x33{left:307.653333pt;}
.x4b{left:311.173333pt;}
.x2f{left:314.693333pt;}
.x47{left:322.373333pt;}
.x2b{left:323.653333pt;}
.x4e{left:333.893333pt;}
.x31{left:343.493333pt;}
.x55{left:345.093333pt;}
.x35{left:348.613333pt;}
.x2d{left:355.680000pt;}
.x58{left:359.200000pt;}
.x29{left:362.720000pt;}
.x4f{left:363.680000pt;}
.x5b{left:365.920000pt;}
.x45{left:372.640000pt;}
.x5f{left:373.920000pt;}
.x59{left:379.680000pt;}
.x43{left:388.640000pt;}
.x4c{left:392.800000pt;}
.x54{left:397.280000pt;}
.xe{left:399.520000pt;}
.x52{left:406.880000pt;}
.x48{left:408.160000pt;}
.xb{left:413.280000pt;}
.x5c{left:417.440000pt;}
.x41{left:439.866667pt;}
.x36{left:446.280000pt;}
.x2e{left:447.240000pt;}
.x39{left:449.800000pt;}
.x32{left:451.080000pt;}
.x2a{left:453.960000pt;}
.x25{left:467.693333pt;}
.x56{left:473.786667pt;}
.x50{left:475.706667pt;}
.xc{left:477.946667pt;}
.x5a{left:490.106667pt;}
.x5d{left:492.986667pt;}
.x4d{left:494.266667pt;}
.x49{left:511.866667pt;}
.x46{left:522.466667pt;}
.xf{left:547.746667pt;}
.xa{left:556.066667pt;}
.x3e{left:560.546667pt;}
.x3f{left:585.186667pt;}
.x9{left:680.933333pt;}
.x8{left:703.973333pt;}
.x10{left:717.413333pt;}
}




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