
    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_b234df7208c6cda092efec17.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.575000;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_a02b8f0f1184c9b894c51f8e.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.575000;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_ab5738f08496b04e0e1916c2.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_4554a3946ab001ac98bd6b9b.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.722656;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_fa116a8a70b23da70f62ef00.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.250105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250105,0.000000,0.000000,0.250000,0,0);}
.v1{vertical-align:-7.093800px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:46.800000px;}
.v3{vertical-align:69.840000px;}
.ls2b{letter-spacing:-0.956160px;}
.ls7{letter-spacing:-0.627120px;}
.lsc{letter-spacing:-0.360000px;}
.ls1d{letter-spacing:-0.358560px;}
.ls49{letter-spacing:-0.358297px;}
.ls31{letter-spacing:-0.324000px;}
.lse{letter-spacing:-0.288000px;}
.ls30{letter-spacing:-0.270000px;}
.ls22{letter-spacing:-0.239040px;}
.lsa{letter-spacing:-0.216000px;}
.ls9{letter-spacing:-0.191520px;}
.ls1e{letter-spacing:-0.179280px;}
.ls4a{letter-spacing:-0.179149px;}
.ls42{letter-spacing:-0.162000px;}
.lsd{letter-spacing:-0.144000px;}
.ls34{letter-spacing:-0.119520px;}
.ls41{letter-spacing:-0.108000px;}
.ls1c{letter-spacing:-0.096480px;}
.ls21{letter-spacing:-0.059760px;}
.ls32{letter-spacing:-0.054000px;}
.ls6{letter-spacing:-0.048240px;}
.ls3{letter-spacing:0.000000px;}
.ls2f{letter-spacing:0.054000px;}
.ls23{letter-spacing:0.059760px;}
.ls0{letter-spacing:0.095760px;}
.ls8{letter-spacing:0.096480px;}
.ls4{letter-spacing:0.108000px;}
.lsb{letter-spacing:0.144000px;}
.ls4b{letter-spacing:0.179280px;}
.ls1{letter-spacing:0.216000px;}
.ls1f{letter-spacing:0.239040px;}
.ls5{letter-spacing:0.270000px;}
.lsf{letter-spacing:0.288000px;}
.ls20{letter-spacing:0.298800px;}
.ls35{letter-spacing:0.313200px;}
.ls2e{letter-spacing:0.324000px;}
.ls1b{letter-spacing:0.337680px;}
.ls48{letter-spacing:0.358297px;}
.ls13{letter-spacing:0.358560px;}
.ls10{letter-spacing:0.360000px;}
.ls28{letter-spacing:0.537840px;}
.ls3f{letter-spacing:0.711144px;}
.ls29{letter-spacing:0.717120px;}
.ls2d{letter-spacing:0.776880px;}
.ls18{letter-spacing:1.434240px;}
.ls33{letter-spacing:1.541808px;}
.ls4e{letter-spacing:2.426256px;}
.ls27{letter-spacing:2.474064px;}
.ls1a{letter-spacing:2.868480px;}
.ls24{letter-spacing:3.585600px;}
.ls4c{letter-spacing:5.079600px;}
.ls43{letter-spacing:6.513840px;}
.ls4d{letter-spacing:6.549696px;}
.ls11{letter-spacing:7.230960px;}
.ls4f{letter-spacing:7.948080px;}
.ls25{letter-spacing:8.665200px;}
.ls2c{letter-spacing:10.129320px;}
.ls16{letter-spacing:11.533680px;}
.ls15{letter-spacing:11.539656px;}
.ls19{letter-spacing:12.250800px;}
.ls44{letter-spacing:14.659128px;}
.ls2a{letter-spacing:15.119280px;}
.ls14{letter-spacing:16.553520px;}
.ls17{letter-spacing:18.704880px;}
.ls26{letter-spacing:40.278240px;}
.ls12{letter-spacing:40.995360px;}
.ls2{letter-spacing:43.344000px;}
.ls39{letter-spacing:64.368000px;}
.ls3c{letter-spacing:64.404000px;}
.ls38{letter-spacing:78.786000px;}
.ls3b{letter-spacing:93.186000px;}
.ls45{letter-spacing:93.204000px;}
.ls37{letter-spacing:93.906000px;}
.ls47{letter-spacing:141.249900px;}
.ls46{letter-spacing:141.250499px;}
.ls40{letter-spacing:141.354360px;}
.ls3e{letter-spacing:278.226000px;}
.ls3a{letter-spacing:628.146000px;}
.ls3d{letter-spacing:663.408000px;}
.ls36{letter-spacing:711.662400px;}
.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;}
}
.ws1{word-spacing:-28.919520px;}
.ws4{word-spacing:-21.960000px;}
.ws5{word-spacing:-21.816000px;}
.ws2{word-spacing:-21.528000px;}
.ws3{word-spacing:-21.384000px;}
.ws6{word-spacing:-21.312000px;}
.ws6d{word-spacing:-18.346320px;}
.ws19{word-spacing:-18.286560px;}
.ws16{word-spacing:-18.226800px;}
.ws1b{word-spacing:-18.047520px;}
.ws18{word-spacing:-17.987760px;}
.ws17{word-spacing:-17.928000px;}
.ws1a{word-spacing:-17.808480px;}
.ws7d{word-spacing:-17.795428px;}
.ws1c{word-spacing:-17.748720px;}
.ws75{word-spacing:-17.629200px;}
.ws7c{word-spacing:-17.616279px;}
.ws65{word-spacing:-16.308000px;}
.ws62{word-spacing:-16.200000px;}
.ws63{word-spacing:-16.038000px;}
.ws74{word-spacing:-15.984000px;}
.ws64{word-spacing:-15.930000px;}
.ws0{word-spacing:-14.616720px;}
.ws15{word-spacing:-14.423760px;}
.ws5b{word-spacing:-0.776880px;}
.ws4d{word-spacing:-0.537840px;}
.ws1d{word-spacing:-0.482400px;}
.ws12{word-spacing:-0.432000px;}
.ws14{word-spacing:-0.360000px;}
.ws3e{word-spacing:-0.358560px;}
.ws80{word-spacing:-0.358297px;}
.ws35{word-spacing:-0.298800px;}
.ws13{word-spacing:-0.288000px;}
.wsc{word-spacing:-0.241200px;}
.ws46{word-spacing:-0.239040px;}
.ws10{word-spacing:-0.216000px;}
.ws82{word-spacing:-0.179280px;}
.ws9{word-spacing:-0.108000px;}
.wsa{word-spacing:-0.096480px;}
.ws43{word-spacing:-0.059760px;}
.ws76{word-spacing:-0.054000px;}
.ws7{word-spacing:0.000000px;}
.ws3f{word-spacing:0.059760px;}
.ws7e{word-spacing:0.096480px;}
.ws7a{word-spacing:0.108000px;}
.ws73{word-spacing:0.119520px;}
.wsf{word-spacing:0.144000px;}
.ws8{word-spacing:0.162000px;}
.ws24{word-spacing:0.179280px;}
.wsd{word-spacing:0.191520px;}
.ws67{word-spacing:0.216000px;}
.ws31{word-spacing:0.239040px;}
.ws6b{word-spacing:0.270000px;}
.ws11{word-spacing:0.288000px;}
.ws70{word-spacing:0.324000px;}
.ws81{word-spacing:0.358297px;}
.ws1e{word-spacing:0.358560px;}
.ws77{word-spacing:0.378000px;}
.ws22{word-spacing:0.418320px;}
.ws78{word-spacing:0.432000px;}
.wsb{word-spacing:0.482400px;}
.ws69{word-spacing:0.486000px;}
.ws68{word-spacing:0.540000px;}
.wse{word-spacing:0.574560px;}
.ws6a{word-spacing:0.594000px;}
.ws23{word-spacing:0.896400px;}
.ws57{word-spacing:0.956160px;}
.ws52{word-spacing:1.075680px;}
.ws34{word-spacing:1.135440px;}
.ws32{word-spacing:1.613520px;}
.ws79{word-spacing:1.792800px;}
.ws5c{word-spacing:1.852560px;}
.ws2c{word-spacing:2.330640px;}
.ws6f{word-spacing:2.390400px;}
.ws50{word-spacing:2.569680px;}
.ws39{word-spacing:3.047760px;}
.ws56{word-spacing:3.286800px;}
.ws3a{word-spacing:3.764880px;}
.ws59{word-spacing:4.003920px;}
.ws49{word-spacing:4.063680px;}
.ws8a{word-spacing:4.422240px;}
.ws48{word-spacing:4.482000px;}
.ws44{word-spacing:4.661280px;}
.ws85{word-spacing:4.721040px;}
.ws21{word-spacing:5.199120px;}
.ws54{word-spacing:5.796720px;}
.ws53{word-spacing:5.916240px;}
.ws7b{word-spacing:6.155280px;}
.ws47{word-spacing:6.215040px;}
.ws3b{word-spacing:6.633360px;}
.ws20{word-spacing:6.872400px;}
.ws1f{word-spacing:7.350480px;}
.ws7f{word-spacing:7.410240px;}
.ws5f{word-spacing:7.649280px;}
.ws4a{word-spacing:8.127360px;}
.ws87{word-spacing:8.366400px;}
.ws42{word-spacing:8.426160px;}
.ws61{word-spacing:8.605440px;}
.ws41{word-spacing:8.844480px;}
.ws83{word-spacing:9.083520px;}
.ws33{word-spacing:9.561600px;}
.ws26{word-spacing:9.800640px;}
.ws27{word-spacing:10.278720px;}
.ws4c{word-spacing:10.517760px;}
.ws51{word-spacing:10.577520px;}
.ws4b{word-spacing:10.995840px;}
.ws2d{word-spacing:11.234880px;}
.ws3d{word-spacing:11.294640px;}
.ws2e{word-spacing:11.712960px;}
.ws6e{word-spacing:11.892240px;}
.ws38{word-spacing:11.952000px;}
.ws37{word-spacing:12.430080px;}
.ws36{word-spacing:12.489840px;}
.ws86{word-spacing:12.669120px;}
.ws4e{word-spacing:13.147200px;}
.ws89{word-spacing:13.386240px;}
.ws25{word-spacing:13.864320px;}
.ws72{word-spacing:14.103360px;}
.ws45{word-spacing:14.641200px;}
.ws4f{word-spacing:15.298560px;}
.ws58{word-spacing:15.537600px;}
.ws28{word-spacing:16.015680px;}
.ws29{word-spacing:16.075440px;}
.ws60{word-spacing:16.732800px;}
.ws2b{word-spacing:16.971840px;}
.ws2a{word-spacing:17.449920px;}
.ws3c{word-spacing:17.509680px;}
.ws5d{word-spacing:17.688960px;}
.ws5e{word-spacing:17.748720px;}
.ws8c{word-spacing:18.167040px;}
.ws2f{word-spacing:18.406080px;}
.ws30{word-spacing:18.884160px;}
.ws88{word-spacing:19.123200px;}
.ws71{word-spacing:19.840320px;}
.ws5a{word-spacing:20.318400px;}
.ws84{word-spacing:20.557440px;}
.ws66{word-spacing:21.035520px;}
.ws55{word-spacing:23.246640px;}
.ws40{word-spacing:26.115120px;}
.ws8b{word-spacing:28.505520px;}
.ws6c{word-spacing:295.763376px;}
._0{margin-left:-1.204200px;}
._1{width:1.831320px;}
._4{width:3.123360px;}
._9{width:4.732920px;}
._7{width:6.582600px;}
._e{width:8.050320px;}
._8{width:10.569960px;}
._5{width:13.291920px;}
._6{width:14.367600px;}
._c{width:63.886680px;}
._a{width:291.036000px;}
._b{width:318.924480px;}
._2{width:383.491800px;}
._d{width:1295.871120px;}
._3{width:1321.100640px;}
.fc1{color:rgb(206,8,29);}
.fc3{color:rgb(255,255,255);}
.fc2{color:rgb(128,128,128);}
.fc0{color:rgb(0,0,0);}
.fs0{font-size:48.240000px;}
.fs1{font-size:54.000000px;}
.fs5{font-size:59.716200px;}
.fs2{font-size:59.760000px;}
.fs4{font-size:72.000000px;}
.fs3{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.ybd{bottom:4.320000px;}
.ybf{bottom:4.500000px;}
.ye8{bottom:11.700000px;}
.ye6{bottom:11.880000px;}
.y10b{bottom:12.922800px;}
.y145{bottom:12.979350px;}
.y144{bottom:12.979500px;}
.yd5{bottom:13.057650px;}
.y10a{bottom:30.382800px;}
.y143{bottom:30.426600px;}
.yca{bottom:31.758900px;}
.yed{bottom:35.280000px;}
.yea{bottom:35.460000px;}
.y102{bottom:49.084050px;}
.y139{bottom:49.114050px;}
.y12f{bottom:58.680000px;}
.ycb{bottom:58.853400px;}
.yf2{bottom:58.860000px;}
.y7{bottom:63.540000px;}
.y13a{bottom:77.263200px;}
.y118{bottom:82.260000px;}
.y121{bottom:82.440000px;}
.y103{bottom:85.302600px;}
.ycc{bottom:85.947900px;}
.y14a{bottom:104.621550px;}
.y110{bottom:104.632500px;}
.y13b{bottom:105.412500px;}
.ycd{bottom:113.042250px;}
.y136{bottom:115.739460px;}
.y67{bottom:115.960140px;}
.ya1{bottom:116.836020px;}
.y104{bottom:121.521150px;}
.ye3{bottom:122.049540px;}
.y15c{bottom:122.949720px;}
.y168{bottom:125.835480px;}
.y127{bottom:129.420000px;}
.y149{bottom:130.843050px;}
.y10f{bottom:130.873200px;}
.y13c{bottom:133.561800px;}
.yc8{bottom:134.146200px;}
.y111{bottom:137.340000px;}
.y101{bottom:137.805000px;}
.yce{bottom:140.136750px;}
.y135{bottom:141.839640px;}
.y66{bottom:142.239600px;}
.ya0{bottom:142.936200px;}
.ye2{bottom:148.149720px;}
.y47{bottom:151.935660px;}
.y148{bottom:157.064400px;}
.y10e{bottom:157.114050px;}
.y105{bottom:157.739700px;}
.y15b{bottom:158.223060px;}
.yc4{bottom:159.300000px;}
.y1f{bottom:159.480000px;}
.y7e{bottom:160.199460px;}
.y13d{bottom:161.711100px;}
.ycf{bottom:167.231400px;}
.y134{bottom:167.939820px;}
.ye1{bottom:174.249900px;}
.yc3{bottom:176.040000px;}
.y65{bottom:177.333660px;}
.y9f{bottom:178.209540px;}
.y46{bottom:178.215120px;}
.y147{bottom:183.285900px;}
.y10d{bottom:183.354750px;}
.y15a{bottom:184.323240px;}
.y7d{bottom:186.299640px;}
.y13e{bottom:189.860250px;}
.y106{bottom:193.958250px;}
.y133{bottom:194.040000px;}
.yd0{bottom:194.325900px;}
.yc2{bottom:197.460000px;}
.ye0{bottom:200.350080px;}
.y64{bottom:203.433840px;}
.y9e{bottom:204.309720px;}
.y45{bottom:204.315300px;}
.y1e{bottom:205.920000px;}
.y132{bottom:207.360000px;}
.y146{bottom:209.507250px;}
.y10c{bottom:209.595600px;}
.y159{bottom:210.423420px;}
.y7c{bottom:212.399820px;}
.y13f{bottom:218.009400px;}
.yc1{bottom:219.060000px;}
.yd1{bottom:221.420400px;}
.ydf{bottom:226.450260px;}
.y63{bottom:229.534020px;}
.y107{bottom:230.176950px;}
.y9d{bottom:230.409900px;}
.y44{bottom:230.415480px;}
.y12e{bottom:230.940000px;}
.y158{bottom:236.523600px;}
.y1d{bottom:237.240000px;}
.y7b{bottom:238.500000px;}
.yc0{bottom:240.480000px;}
.y131{bottom:242.635500px;}
.y140{bottom:246.158700px;}
.yd2{bottom:248.514900px;}
.yde{bottom:252.550440px;}
.y9c{bottom:256.510080px;}
.y43{bottom:256.515660px;}
.y174{bottom:257.397120px;}
.ybe{bottom:262.080000px;}
.y157{bottom:262.623780px;}
.y7a{bottom:264.600000px;}
.y62{bottom:264.628080px;}
.y130{bottom:266.220000px;}
.y108{bottom:266.395350px;}
.y1c{bottom:268.560000px;}
.y141{bottom:274.308000px;}
.yd3{bottom:275.609250px;}
.y9b{bottom:282.610260px;}
.y42{bottom:282.615840px;}
.y173{bottom:283.497300px;}
.ybc{bottom:283.680000px;}
.ydd{bottom:287.644500px;}
.y156{bottom:288.723960px;}
.y61{bottom:290.728260px;}
.yc9{bottom:292.786500px;}
.y79{bottom:299.699820px;}
.y1b{bottom:299.880000px;}
.y126{bottom:301.320000px;}
.y142{bottom:302.457300px;}
.y109{bottom:302.614050px;}
.yd4{bottom:302.703750px;}
.y9a{bottom:308.710440px;}
.y41{bottom:308.716020px;}
.y172{bottom:309.597480px;}
.ybb{bottom:310.144500px;}
.y12c{bottom:313.200000px;}
.ydc{bottom:313.923960px;}
.y155{bottom:314.824140px;}
.y60{bottom:316.828440px;}
.y78{bottom:325.800000px;}
.yba{bottom:328.140000px;}
.y99{bottom:334.810620px;}
.y167{bottom:334.816200px;}
.y171{bottom:335.697660px;}
.y12b{bottom:336.780000px;}
.y1a{bottom:340.200000px;}
.y154{bottom:341.103600px;}
.y5f{bottom:343.107900px;}
.y40{bottom:343.810080px;}
.ydb{bottom:349.018020px;}
.y77{bottom:352.079460px;}
.yb9{bottom:352.803960px;}
.y12a{bottom:360.180000px;}
.y98{bottom:361.090080px;}
.y166{bottom:361.095660px;}
.y170{bottom:361.797840px;}
.y153{bottom:367.203780px;}
.y5e{bottom:369.208080px;}
.y3f{bottom:370.089540px;}
.y12d{bottom:372.060000px;}
.yda{bottom:375.118200px;}
.y76{bottom:378.179640px;}
.yb8{bottom:379.083420px;}
.y19{bottom:380.700000px;}
.y129{bottom:383.760000px;}
.y97{bottom:387.190260px;}
.y165{bottom:387.195840px;}
.y16f{bottom:388.077300px;}
.y152{bottom:393.303960px;}
.y5d{bottom:395.308260px;}
.y3e{bottom:396.189720px;}
.yd9{bottom:401.218380px;}
.y75{bottom:404.279820px;}
.yb7{bottom:405.183600px;}
.y128{bottom:407.340000px;}
.y96{bottom:413.290440px;}
.y164{bottom:413.296020px;}
.y16e{bottom:414.177480px;}
.y151{bottom:419.404140px;}
.y18{bottom:421.020000px;}
.y5c{bottom:421.408440px;}
.y3d{bottom:422.289900px;}
.yd8{bottom:427.318560px;}
.y74{bottom:430.380000px;}
.yb6{bottom:431.283780px;}
.y95{bottom:439.390620px;}
.y163{bottom:439.396200px;}
.y16d{bottom:440.277660px;}
.y120{bottom:442.440000px;}
.y3c{bottom:448.390080px;}
.yd7{bottom:453.418740px;}
.y124{bottom:454.320000px;}
.y150{bottom:454.498200px;}
.y73{bottom:456.480180px;}
.y5b{bottom:456.502500px;}
.yb5{bottom:457.383960px;}
.y17{bottom:461.340000px;}
.y94{bottom:465.490800px;}
.y162{bottom:465.496380px;}
.y16c{bottom:466.377840px;}
.y100{bottom:468.364500px;}
.y3b{bottom:474.490260px;}
.y123{bottom:477.715500px;}
.yd6{bottom:479.518920px;}
.y14f{bottom:480.598380px;}
.y72{bottom:482.580360px;}
.y5a{bottom:482.602680px;}
.yb4{bottom:483.484140px;}
.yff{bottom:486.360000px;}
.y125{bottom:489.600000px;}
.y93{bottom:491.590980px;}
.y161{bottom:491.596560px;}
.y16b{bottom:492.478020px;}
.y3a{bottom:500.590440px;}
.y122{bottom:501.300000px;}
.y16{bottom:501.660000px;}
.yc7{bottom:501.900000px;}
.y14e{bottom:506.698560px;}
.y71{bottom:508.680540px;}
.y59{bottom:508.702860px;}
.yb3{bottom:509.584320px;}
.yfe{bottom:511.019640px;}
.y92{bottom:517.691160px;}
.y160{bottom:517.696740px;}
.y16a{bottom:518.578200px;}
.y39{bottom:526.690620px;}
.y14d{bottom:532.978020px;}
.y70{bottom:534.960000px;}
.y58{bottom:534.982320px;}
.yb2{bottom:535.684500px;}
.y11d{bottom:536.580000px;}
.yfd{bottom:537.119820px;}
.y91{bottom:543.970620px;}
.y15f{bottom:543.976200px;}
.y169{bottom:544.678380px;}
.y15{bottom:548.100000px;}
.y11f{bottom:548.280000px;}
.y38{bottom:552.970080px;}
.y14c{bottom:559.078200px;}
.y6f{bottom:561.060000px;}
.y57{bottom:561.082500px;}
.yfc{bottom:563.220000px;}
.y90{bottom:570.070800px;}
.yb1{bottom:570.957840px;}
.y11e{bottom:571.860000px;}
.y37{bottom:579.070260px;}
.y14{bottom:579.420000px;}
.y14b{bottom:581.040000px;}
.y138{bottom:581.520000px;}
.y56{bottom:587.182680px;}
.yfb{bottom:589.499460px;}
.y6e{bottom:596.159820px;}
.y8f{bottom:596.170980px;}
.yb0{bottom:597.058020px;}
.y36{bottom:605.170440px;}
.y117{bottom:607.140000px;}
.y13{bottom:610.740000px;}
.y55{bottom:613.282860px;}
.yfa{bottom:615.599640px;}
.y11b{bottom:618.840000px;}
.y6d{bottom:622.260000px;}
.y8e{bottom:622.271160px;}
.yaf{bottom:623.158200px;}
.y35{bottom:631.270620px;}
.yf9{bottom:641.699820px;}
.y12{bottom:642.060000px;}
.y11a{bottom:642.424500px;}
.y6c{bottom:648.360180px;}
.y8d{bottom:648.371340px;}
.y54{bottom:648.376920px;}
.yae{bottom:649.258380px;}
.y11c{bottom:654.120000px;}
.y34{bottom:657.370800px;}
.y119{bottom:665.820000px;}
.yf8{bottom:667.800000px;}
.y11{bottom:673.380000px;}
.y6b{bottom:674.460360px;}
.y8c{bottom:674.471520px;}
.y53{bottom:674.477100px;}
.yad{bottom:675.358560px;}
.yf7{bottom:681.120000px;}
.y33{bottom:683.470980px;}
.y6a{bottom:700.560540px;}
.y8b{bottom:700.571700px;}
.y52{bottom:700.577280px;}
.y116{bottom:701.100000px;}
.yac{bottom:701.458740px;}
.yf5{bottom:704.700000px;}
.y32{bottom:709.571160px;}
.y10{bottom:713.700000px;}
.yf6{bottom:716.400000px;}
.y115{bottom:724.680000px;}
.y69{bottom:726.840000px;}
.y8a{bottom:726.851160px;}
.yab{bottom:727.558920px;}
.y31{bottom:735.850620px;}
.y15e{bottom:744.844500px;}
.yf{bottom:745.200000px;}
.yf1{bottom:751.680000px;}
.y68{bottom:752.940000px;}
.y89{bottom:752.951340px;}
.yaa{bottom:753.838380px;}
.y114{bottom:754.384500px;}
.y30{bottom:761.950800px;}
.yf4{bottom:763.560000px;}
.y15d{bottom:770.944680px;}
.y113{bottom:772.380000px;}
.y88{bottom:779.051520px;}
.ya9{bottom:779.938560px;}
.yf3{bottom:786.960000px;}
.y2f{bottom:788.050980px;}
.ye{bottom:791.460000px;}
.y112{bottom:797.044860px;}
.ya8{bottom:806.038740px;}
.y87{bottom:814.145580px;}
.y2e{bottom:814.151160px;}
.yef{bottom:822.240000px;}
.yd{bottom:822.780000px;}
.y51{bottom:823.145040px;}
.ya7{bottom:832.138920px;}
.yc6{bottom:832.684500px;}
.yf0{bottom:833.940000px;}
.y86{bottom:840.245760px;}
.y2d{bottom:840.251340px;}
.y50{bottom:849.245220px;}
.yc5{bottom:850.680000px;}
.yc{bottom:854.100000px;}
.ya6{bottom:858.239100px;}
.y2c{bottom:866.351520px;}
.yec{bottom:869.220000px;}
.y85{bottom:875.339820px;}
.y4f{bottom:875.345400px;}
.yee{bottom:881.100000px;}
.ya5{bottom:884.339280px;}
.yb{bottom:890.665920px;}
.y2b{bottom:892.451700px;}
.y84{bottom:901.440000px;}
.y4e{bottom:901.445580px;}
.ya4{bottom:910.439460px;}
.y137{bottom:911.880000px;}
.ye9{bottom:916.200000px;}
.y2a{bottom:918.731160px;}
.y83{bottom:927.719460px;}
.y4d{bottom:927.725040px;}
.yeb{bottom:928.080000px;}
.ya{bottom:932.417280px;}
.ya3{bottom:936.718920px;}
.y29{bottom:944.831340px;}
.y82{bottom:953.819640px;}
.y4c{bottom:953.825220px;}
.ya2{bottom:962.819100px;}
.ye7{bottom:963.360000px;}
.y9{bottom:974.168640px;}
.y81{bottom:979.919820px;}
.y28{bottom:979.925400px;}
.ye5{bottom:986.760000px;}
.y4b{bottom:988.919280px;}
.y80{bottom:1006.020000px;}
.y27{bottom:1006.025580px;}
.y4a{bottom:1015.019460px;}
.y8{bottom:1015.920000px;}
.ye4{bottom:1016.460000px;}
.y7f{bottom:1032.120000px;}
.y26{bottom:1032.125760px;}
.y49{bottom:1041.119640px;}
.y6{bottom:1050.300000px;}
.y25{bottom:1058.225940px;}
.y48{bottom:1067.219820px;}
.y1{bottom:1083.240000px;}
.y5{bottom:1092.064320px;}
.y24{bottom:1093.320000px;}
.y4{bottom:1108.080000px;}
.y23{bottom:1119.600000px;}
.y3{bottom:1124.824500px;}
.y20{bottom:1132.920000px;}
.y2{bottom:1142.820000px;}
.y22{bottom:1144.804320px;}
.y21{bottom:1160.820000px;}
.hb{height:16.920000px;}
.h9{height:16.921500px;}
.hc{height:17.098500px;}
.ha{height:17.100000px;}
.hf{height:23.400000px;}
.he{height:23.580000px;}
.h7{height:45.000000px;}
.h12{height:46.980000px;}
.h10{height:47.160000px;}
.h2{height:51.472080px;}
.h3{height:57.618000px;}
.h1c{height:63.717185px;}
.h4{height:63.763920px;}
.h8{height:64.779840px;}
.h1a{height:70.380000px;}
.h17{height:70.558500px;}
.h14{height:70.560000px;}
.h6{height:76.824000px;}
.h16{height:93.960000px;}
.h18{height:94.141500px;}
.h5{height:102.175920px;}
.h11{height:104.418000px;}
.h13{height:105.138000px;}
.h1d{height:133.505585px;}
.h1e{height:133.506185px;}
.h15{height:133.603920px;}
.h19{height:141.120000px;}
.h1b{height:323.761500px;}
.hd{height:324.000000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w9{width:25.380000px;}
.w8{width:42.480000px;}
.w7{width:42.660000px;}
.w6{width:212.760000px;}
.w3{width:268.561500px;}
.w4{width:268.738500px;}
.w2{width:382.680000px;}
.wa{width:403.920000px;}
.wb{width:429.300000px;}
.wc{width:539.830500px;}
.w5{width:540.000000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x14{left:1.080000px;}
.x2d{left:8.100000px;}
.x21{left:9.840000px;}
.x27{left:12.240000px;}
.x32{left:17.752500px;}
.x20{left:23.212500px;}
.x33{left:52.592250px;}
.x1f{left:68.055300px;}
.x26{left:72.900000px;}
.x34{left:78.692250px;}
.x3{left:106.380000px;}
.x8{left:117.000000px;}
.x22{left:123.718800px;}
.x2c{left:125.460000px;}
.xe{left:127.609740px;}
.x24{left:133.560000px;}
.x3b{left:147.822600px;}
.xf{left:148.854420px;}
.xb{left:150.120000px;}
.x2e{left:158.940000px;}
.x39{left:165.060000px;}
.x16{left:167.400000px;}
.x10{left:170.248500px;}
.x13{left:176.760000px;}
.x17{left:181.440000px;}
.x3a{left:187.560000px;}
.x1c{left:194.040000px;}
.x19{left:199.080000px;}
.x1a{left:206.460000px;}
.x1b{left:211.680000px;}
.x6{left:212.769540px;}
.x35{left:217.226550px;}
.x18{left:219.060000px;}
.x12{left:250.209000px;}
.x30{left:270.900000px;}
.x31{left:277.029000px;}
.x36{left:286.493700px;}
.x1d{left:290.880000px;}
.x11{left:296.460000px;}
.x5{left:322.390800px;}
.x7{left:350.640000px;}
.x1{left:353.880000px;}
.x37{left:355.760850px;}
.x1e{left:418.096350px;}
.x38{left:429.344250px;}
.x4{left:446.400000px;}
.x15{left:447.480000px;}
.x2{left:539.460000px;}
.x25{left:554.760000px;}
.x2f{left:568.440000px;}
.x9{left:571.320000px;}
.x28{left:597.420000px;}
.xa{left:598.860000px;}
.xd{left:616.134420px;}
.xc{left:634.140000px;}
.x29{left:639.900000px;}
.x2a{left:682.380000px;}
.x23{left:716.760000px;}
.x2b{left:724.860000px;}
@media print{
.v1{vertical-align:-6.305600pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:41.600000pt;}
.v3{vertical-align:62.080000pt;}
.ls2b{letter-spacing:-0.849920pt;}
.ls7{letter-spacing:-0.557440pt;}
.lsc{letter-spacing:-0.320000pt;}
.ls1d{letter-spacing:-0.318720pt;}
.ls49{letter-spacing:-0.318486pt;}
.ls31{letter-spacing:-0.288000pt;}
.lse{letter-spacing:-0.256000pt;}
.ls30{letter-spacing:-0.240000pt;}
.ls22{letter-spacing:-0.212480pt;}
.lsa{letter-spacing:-0.192000pt;}
.ls9{letter-spacing:-0.170240pt;}
.ls1e{letter-spacing:-0.159360pt;}
.ls4a{letter-spacing:-0.159243pt;}
.ls42{letter-spacing:-0.144000pt;}
.lsd{letter-spacing:-0.128000pt;}
.ls34{letter-spacing:-0.106240pt;}
.ls41{letter-spacing:-0.096000pt;}
.ls1c{letter-spacing:-0.085760pt;}
.ls21{letter-spacing:-0.053120pt;}
.ls32{letter-spacing:-0.048000pt;}
.ls6{letter-spacing:-0.042880pt;}
.ls3{letter-spacing:0.000000pt;}
.ls2f{letter-spacing:0.048000pt;}
.ls23{letter-spacing:0.053120pt;}
.ls0{letter-spacing:0.085120pt;}
.ls8{letter-spacing:0.085760pt;}
.ls4{letter-spacing:0.096000pt;}
.lsb{letter-spacing:0.128000pt;}
.ls4b{letter-spacing:0.159360pt;}
.ls1{letter-spacing:0.192000pt;}
.ls1f{letter-spacing:0.212480pt;}
.ls5{letter-spacing:0.240000pt;}
.lsf{letter-spacing:0.256000pt;}
.ls20{letter-spacing:0.265600pt;}
.ls35{letter-spacing:0.278400pt;}
.ls2e{letter-spacing:0.288000pt;}
.ls1b{letter-spacing:0.300160pt;}
.ls48{letter-spacing:0.318486pt;}
.ls13{letter-spacing:0.318720pt;}
.ls10{letter-spacing:0.320000pt;}
.ls28{letter-spacing:0.478080pt;}
.ls3f{letter-spacing:0.632128pt;}
.ls29{letter-spacing:0.637440pt;}
.ls2d{letter-spacing:0.690560pt;}
.ls18{letter-spacing:1.274880pt;}
.ls33{letter-spacing:1.370496pt;}
.ls4e{letter-spacing:2.156672pt;}
.ls27{letter-spacing:2.199168pt;}
.ls1a{letter-spacing:2.549760pt;}
.ls24{letter-spacing:3.187200pt;}
.ls4c{letter-spacing:4.515200pt;}
.ls43{letter-spacing:5.790080pt;}
.ls4d{letter-spacing:5.821952pt;}
.ls11{letter-spacing:6.427520pt;}
.ls4f{letter-spacing:7.064960pt;}
.ls25{letter-spacing:7.702400pt;}
.ls2c{letter-spacing:9.003840pt;}
.ls16{letter-spacing:10.252160pt;}
.ls15{letter-spacing:10.257472pt;}
.ls19{letter-spacing:10.889600pt;}
.ls44{letter-spacing:13.030336pt;}
.ls2a{letter-spacing:13.439360pt;}
.ls14{letter-spacing:14.714240pt;}
.ls17{letter-spacing:16.626560pt;}
.ls26{letter-spacing:35.802880pt;}
.ls12{letter-spacing:36.440320pt;}
.ls2{letter-spacing:38.528000pt;}
.ls39{letter-spacing:57.216000pt;}
.ls3c{letter-spacing:57.248000pt;}
.ls38{letter-spacing:70.032000pt;}
.ls3b{letter-spacing:82.832000pt;}
.ls45{letter-spacing:82.848000pt;}
.ls37{letter-spacing:83.472000pt;}
.ls47{letter-spacing:125.555466pt;}
.ls46{letter-spacing:125.555999pt;}
.ls40{letter-spacing:125.648320pt;}
.ls3e{letter-spacing:247.312000pt;}
.ls3a{letter-spacing:558.352000pt;}
.ls3d{letter-spacing:589.696000pt;}
.ls36{letter-spacing:632.588800pt;}
.ws1{word-spacing:-25.706240pt;}
.ws4{word-spacing:-19.520000pt;}
.ws5{word-spacing:-19.392000pt;}
.ws2{word-spacing:-19.136000pt;}
.ws3{word-spacing:-19.008000pt;}
.ws6{word-spacing:-18.944000pt;}
.ws6d{word-spacing:-16.307840pt;}
.ws19{word-spacing:-16.254720pt;}
.ws16{word-spacing:-16.201600pt;}
.ws1b{word-spacing:-16.042240pt;}
.ws18{word-spacing:-15.989120pt;}
.ws17{word-spacing:-15.936000pt;}
.ws1a{word-spacing:-15.829760pt;}
.ws7d{word-spacing:-15.818158pt;}
.ws1c{word-spacing:-15.776640pt;}
.ws75{word-spacing:-15.670400pt;}
.ws7c{word-spacing:-15.658915pt;}
.ws65{word-spacing:-14.496000pt;}
.ws62{word-spacing:-14.400000pt;}
.ws63{word-spacing:-14.256000pt;}
.ws74{word-spacing:-14.208000pt;}
.ws64{word-spacing:-14.160000pt;}
.ws0{word-spacing:-12.992640pt;}
.ws15{word-spacing:-12.821120pt;}
.ws5b{word-spacing:-0.690560pt;}
.ws4d{word-spacing:-0.478080pt;}
.ws1d{word-spacing:-0.428800pt;}
.ws12{word-spacing:-0.384000pt;}
.ws14{word-spacing:-0.320000pt;}
.ws3e{word-spacing:-0.318720pt;}
.ws80{word-spacing:-0.318486pt;}
.ws35{word-spacing:-0.265600pt;}
.ws13{word-spacing:-0.256000pt;}
.wsc{word-spacing:-0.214400pt;}
.ws46{word-spacing:-0.212480pt;}
.ws10{word-spacing:-0.192000pt;}
.ws82{word-spacing:-0.159360pt;}
.ws9{word-spacing:-0.096000pt;}
.wsa{word-spacing:-0.085760pt;}
.ws43{word-spacing:-0.053120pt;}
.ws76{word-spacing:-0.048000pt;}
.ws7{word-spacing:0.000000pt;}
.ws3f{word-spacing:0.053120pt;}
.ws7e{word-spacing:0.085760pt;}
.ws7a{word-spacing:0.096000pt;}
.ws73{word-spacing:0.106240pt;}
.wsf{word-spacing:0.128000pt;}
.ws8{word-spacing:0.144000pt;}
.ws24{word-spacing:0.159360pt;}
.wsd{word-spacing:0.170240pt;}
.ws67{word-spacing:0.192000pt;}
.ws31{word-spacing:0.212480pt;}
.ws6b{word-spacing:0.240000pt;}
.ws11{word-spacing:0.256000pt;}
.ws70{word-spacing:0.288000pt;}
.ws81{word-spacing:0.318486pt;}
.ws1e{word-spacing:0.318720pt;}
.ws77{word-spacing:0.336000pt;}
.ws22{word-spacing:0.371840pt;}
.ws78{word-spacing:0.384000pt;}
.wsb{word-spacing:0.428800pt;}
.ws69{word-spacing:0.432000pt;}
.ws68{word-spacing:0.480000pt;}
.wse{word-spacing:0.510720pt;}
.ws6a{word-spacing:0.528000pt;}
.ws23{word-spacing:0.796800pt;}
.ws57{word-spacing:0.849920pt;}
.ws52{word-spacing:0.956160pt;}
.ws34{word-spacing:1.009280pt;}
.ws32{word-spacing:1.434240pt;}
.ws79{word-spacing:1.593600pt;}
.ws5c{word-spacing:1.646720pt;}
.ws2c{word-spacing:2.071680pt;}
.ws6f{word-spacing:2.124800pt;}
.ws50{word-spacing:2.284160pt;}
.ws39{word-spacing:2.709120pt;}
.ws56{word-spacing:2.921600pt;}
.ws3a{word-spacing:3.346560pt;}
.ws59{word-spacing:3.559040pt;}
.ws49{word-spacing:3.612160pt;}
.ws8a{word-spacing:3.930880pt;}
.ws48{word-spacing:3.984000pt;}
.ws44{word-spacing:4.143360pt;}
.ws85{word-spacing:4.196480pt;}
.ws21{word-spacing:4.621440pt;}
.ws54{word-spacing:5.152640pt;}
.ws53{word-spacing:5.258880pt;}
.ws7b{word-spacing:5.471360pt;}
.ws47{word-spacing:5.524480pt;}
.ws3b{word-spacing:5.896320pt;}
.ws20{word-spacing:6.108800pt;}
.ws1f{word-spacing:6.533760pt;}
.ws7f{word-spacing:6.586880pt;}
.ws5f{word-spacing:6.799360pt;}
.ws4a{word-spacing:7.224320pt;}
.ws87{word-spacing:7.436800pt;}
.ws42{word-spacing:7.489920pt;}
.ws61{word-spacing:7.649280pt;}
.ws41{word-spacing:7.861760pt;}
.ws83{word-spacing:8.074240pt;}
.ws33{word-spacing:8.499200pt;}
.ws26{word-spacing:8.711680pt;}
.ws27{word-spacing:9.136640pt;}
.ws4c{word-spacing:9.349120pt;}
.ws51{word-spacing:9.402240pt;}
.ws4b{word-spacing:9.774080pt;}
.ws2d{word-spacing:9.986560pt;}
.ws3d{word-spacing:10.039680pt;}
.ws2e{word-spacing:10.411520pt;}
.ws6e{word-spacing:10.570880pt;}
.ws38{word-spacing:10.624000pt;}
.ws37{word-spacing:11.048960pt;}
.ws36{word-spacing:11.102080pt;}
.ws86{word-spacing:11.261440pt;}
.ws4e{word-spacing:11.686400pt;}
.ws89{word-spacing:11.898880pt;}
.ws25{word-spacing:12.323840pt;}
.ws72{word-spacing:12.536320pt;}
.ws45{word-spacing:13.014400pt;}
.ws4f{word-spacing:13.598720pt;}
.ws58{word-spacing:13.811200pt;}
.ws28{word-spacing:14.236160pt;}
.ws29{word-spacing:14.289280pt;}
.ws60{word-spacing:14.873600pt;}
.ws2b{word-spacing:15.086080pt;}
.ws2a{word-spacing:15.511040pt;}
.ws3c{word-spacing:15.564160pt;}
.ws5d{word-spacing:15.723520pt;}
.ws5e{word-spacing:15.776640pt;}
.ws8c{word-spacing:16.148480pt;}
.ws2f{word-spacing:16.360960pt;}
.ws30{word-spacing:16.785920pt;}
.ws88{word-spacing:16.998400pt;}
.ws71{word-spacing:17.635840pt;}
.ws5a{word-spacing:18.060800pt;}
.ws84{word-spacing:18.273280pt;}
.ws66{word-spacing:18.698240pt;}
.ws55{word-spacing:20.663680pt;}
.ws40{word-spacing:23.213440pt;}
.ws8b{word-spacing:25.338240pt;}
.ws6c{word-spacing:262.900779pt;}
._0{margin-left:-1.070400pt;}
._1{width:1.627840pt;}
._4{width:2.776320pt;}
._9{width:4.207040pt;}
._7{width:5.851200pt;}
._e{width:7.155840pt;}
._8{width:9.395520pt;}
._5{width:11.815040pt;}
._6{width:12.771200pt;}
._c{width:56.788160pt;}
._a{width:258.698667pt;}
._b{width:283.488427pt;}
._2{width:340.881600pt;}
._d{width:1151.885440pt;}
._3{width:1174.311680pt;}
.fs0{font-size:42.880000pt;}
.fs1{font-size:48.000000pt;}
.fs5{font-size:53.081067pt;}
.fs2{font-size:53.120000pt;}
.fs4{font-size:64.000000pt;}
.fs3{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.ybd{bottom:3.840000pt;}
.ybf{bottom:4.000000pt;}
.ye8{bottom:10.400000pt;}
.ye6{bottom:10.560000pt;}
.y10b{bottom:11.486933pt;}
.y145{bottom:11.537200pt;}
.y144{bottom:11.537333pt;}
.yd5{bottom:11.606800pt;}
.y10a{bottom:27.006933pt;}
.y143{bottom:27.045867pt;}
.yca{bottom:28.230133pt;}
.yed{bottom:31.360000pt;}
.yea{bottom:31.520000pt;}
.y102{bottom:43.630267pt;}
.y139{bottom:43.656933pt;}
.y12f{bottom:52.160000pt;}
.ycb{bottom:52.314133pt;}
.yf2{bottom:52.320000pt;}
.y7{bottom:56.480000pt;}
.y13a{bottom:68.678400pt;}
.y118{bottom:73.120000pt;}
.y121{bottom:73.280000pt;}
.y103{bottom:75.824533pt;}
.ycc{bottom:76.398133pt;}
.y14a{bottom:92.996933pt;}
.y110{bottom:93.006667pt;}
.y13b{bottom:93.700000pt;}
.ycd{bottom:100.482000pt;}
.y136{bottom:102.879520pt;}
.y67{bottom:103.075680pt;}
.ya1{bottom:103.854240pt;}
.y104{bottom:108.018800pt;}
.ye3{bottom:108.488480pt;}
.y15c{bottom:109.288640pt;}
.y168{bottom:111.853760pt;}
.y127{bottom:115.040000pt;}
.y149{bottom:116.304933pt;}
.y10f{bottom:116.331733pt;}
.y13c{bottom:118.721600pt;}
.yc8{bottom:119.241067pt;}
.y111{bottom:122.080000pt;}
.y101{bottom:122.493333pt;}
.yce{bottom:124.566000pt;}
.y135{bottom:126.079680pt;}
.y66{bottom:126.435200pt;}
.ya0{bottom:127.054400pt;}
.ye2{bottom:131.688640pt;}
.y47{bottom:135.053920pt;}
.y148{bottom:139.612800pt;}
.y10e{bottom:139.656933pt;}
.y105{bottom:140.213067pt;}
.y15b{bottom:140.642720pt;}
.yc4{bottom:141.600000pt;}
.y1f{bottom:141.760000pt;}
.y7e{bottom:142.399520pt;}
.y13d{bottom:143.743200pt;}
.ycf{bottom:148.650133pt;}
.y134{bottom:149.279840pt;}
.ye1{bottom:154.888800pt;}
.yc3{bottom:156.480000pt;}
.y65{bottom:157.629920pt;}
.y9f{bottom:158.408480pt;}
.y46{bottom:158.413440pt;}
.y147{bottom:162.920800pt;}
.y10d{bottom:162.982000pt;}
.y15a{bottom:163.842880pt;}
.y7d{bottom:165.599680pt;}
.y13e{bottom:168.764667pt;}
.y106{bottom:172.407333pt;}
.y133{bottom:172.480000pt;}
.yd0{bottom:172.734133pt;}
.yc2{bottom:175.520000pt;}
.ye0{bottom:178.088960pt;}
.y64{bottom:180.830080pt;}
.y9e{bottom:181.608640pt;}
.y45{bottom:181.613600pt;}
.y1e{bottom:183.040000pt;}
.y132{bottom:184.320000pt;}
.y146{bottom:186.228667pt;}
.y10c{bottom:186.307200pt;}
.y159{bottom:187.043040pt;}
.y7c{bottom:188.799840pt;}
.y13f{bottom:193.786133pt;}
.yc1{bottom:194.720000pt;}
.yd1{bottom:196.818133pt;}
.ydf{bottom:201.289120pt;}
.y63{bottom:204.030240pt;}
.y107{bottom:204.601733pt;}
.y9d{bottom:204.808800pt;}
.y44{bottom:204.813760pt;}
.y12e{bottom:205.280000pt;}
.y158{bottom:210.243200pt;}
.y1d{bottom:210.880000pt;}
.y7b{bottom:212.000000pt;}
.yc0{bottom:213.760000pt;}
.y131{bottom:215.676000pt;}
.y140{bottom:218.807733pt;}
.yd2{bottom:220.902133pt;}
.yde{bottom:224.489280pt;}
.y9c{bottom:228.008960pt;}
.y43{bottom:228.013920pt;}
.y174{bottom:228.797440pt;}
.ybe{bottom:232.960000pt;}
.y157{bottom:233.443360pt;}
.y7a{bottom:235.200000pt;}
.y62{bottom:235.224960pt;}
.y130{bottom:236.640000pt;}
.y108{bottom:236.795867pt;}
.y1c{bottom:238.720000pt;}
.y141{bottom:243.829333pt;}
.yd3{bottom:244.986000pt;}
.y9b{bottom:251.209120pt;}
.y42{bottom:251.214080pt;}
.y173{bottom:251.997600pt;}
.ybc{bottom:252.160000pt;}
.ydd{bottom:255.684000pt;}
.y156{bottom:256.643520pt;}
.y61{bottom:258.425120pt;}
.yc9{bottom:260.254667pt;}
.y79{bottom:266.399840pt;}
.y1b{bottom:266.560000pt;}
.y126{bottom:267.840000pt;}
.y142{bottom:268.850933pt;}
.y109{bottom:268.990267pt;}
.yd4{bottom:269.070000pt;}
.y9a{bottom:274.409280pt;}
.y41{bottom:274.414240pt;}
.y172{bottom:275.197760pt;}
.ybb{bottom:275.684000pt;}
.y12c{bottom:278.400000pt;}
.ydc{bottom:279.043520pt;}
.y155{bottom:279.843680pt;}
.y60{bottom:281.625280pt;}
.y78{bottom:289.600000pt;}
.yba{bottom:291.680000pt;}
.y99{bottom:297.609440pt;}
.y167{bottom:297.614400pt;}
.y171{bottom:298.397920pt;}
.y12b{bottom:299.360000pt;}
.y1a{bottom:302.400000pt;}
.y154{bottom:303.203200pt;}
.y5f{bottom:304.984800pt;}
.y40{bottom:305.608960pt;}
.ydb{bottom:310.238240pt;}
.y77{bottom:312.959520pt;}
.yb9{bottom:313.603520pt;}
.y12a{bottom:320.160000pt;}
.y98{bottom:320.968960pt;}
.y166{bottom:320.973920pt;}
.y170{bottom:321.598080pt;}
.y153{bottom:326.403360pt;}
.y5e{bottom:328.184960pt;}
.y3f{bottom:328.968480pt;}
.y12d{bottom:330.720000pt;}
.yda{bottom:333.438400pt;}
.y76{bottom:336.159680pt;}
.yb8{bottom:336.963040pt;}
.y19{bottom:338.400000pt;}
.y129{bottom:341.120000pt;}
.y97{bottom:344.169120pt;}
.y165{bottom:344.174080pt;}
.y16f{bottom:344.957600pt;}
.y152{bottom:349.603520pt;}
.y5d{bottom:351.385120pt;}
.y3e{bottom:352.168640pt;}
.yd9{bottom:356.638560pt;}
.y75{bottom:359.359840pt;}
.yb7{bottom:360.163200pt;}
.y128{bottom:362.080000pt;}
.y96{bottom:367.369280pt;}
.y164{bottom:367.374240pt;}
.y16e{bottom:368.157760pt;}
.y151{bottom:372.803680pt;}
.y18{bottom:374.240000pt;}
.y5c{bottom:374.585280pt;}
.y3d{bottom:375.368800pt;}
.yd8{bottom:379.838720pt;}
.y74{bottom:382.560000pt;}
.yb6{bottom:383.363360pt;}
.y95{bottom:390.569440pt;}
.y163{bottom:390.574400pt;}
.y16d{bottom:391.357920pt;}
.y120{bottom:393.280000pt;}
.y3c{bottom:398.568960pt;}
.yd7{bottom:403.038880pt;}
.y124{bottom:403.840000pt;}
.y150{bottom:403.998400pt;}
.y73{bottom:405.760160pt;}
.y5b{bottom:405.780000pt;}
.yb5{bottom:406.563520pt;}
.y17{bottom:410.080000pt;}
.y94{bottom:413.769600pt;}
.y162{bottom:413.774560pt;}
.y16c{bottom:414.558080pt;}
.y100{bottom:416.324000pt;}
.y3b{bottom:421.769120pt;}
.y123{bottom:424.636000pt;}
.yd6{bottom:426.239040pt;}
.y14f{bottom:427.198560pt;}
.y72{bottom:428.960320pt;}
.y5a{bottom:428.980160pt;}
.yb4{bottom:429.763680pt;}
.yff{bottom:432.320000pt;}
.y125{bottom:435.200000pt;}
.y93{bottom:436.969760pt;}
.y161{bottom:436.974720pt;}
.y16b{bottom:437.758240pt;}
.y3a{bottom:444.969280pt;}
.y122{bottom:445.600000pt;}
.y16{bottom:445.920000pt;}
.yc7{bottom:446.133333pt;}
.y14e{bottom:450.398720pt;}
.y71{bottom:452.160480pt;}
.y59{bottom:452.180320pt;}
.yb3{bottom:452.963840pt;}
.yfe{bottom:454.239680pt;}
.y92{bottom:460.169920pt;}
.y160{bottom:460.174880pt;}
.y16a{bottom:460.958400pt;}
.y39{bottom:468.169440pt;}
.y14d{bottom:473.758240pt;}
.y70{bottom:475.520000pt;}
.y58{bottom:475.539840pt;}
.yb2{bottom:476.164000pt;}
.y11d{bottom:476.960000pt;}
.yfd{bottom:477.439840pt;}
.y91{bottom:483.529440pt;}
.y15f{bottom:483.534400pt;}
.y169{bottom:484.158560pt;}
.y15{bottom:487.200000pt;}
.y11f{bottom:487.360000pt;}
.y38{bottom:491.528960pt;}
.y14c{bottom:496.958400pt;}
.y6f{bottom:498.720000pt;}
.y57{bottom:498.740000pt;}
.yfc{bottom:500.640000pt;}
.y90{bottom:506.729600pt;}
.yb1{bottom:507.518080pt;}
.y11e{bottom:508.320000pt;}
.y37{bottom:514.729120pt;}
.y14{bottom:515.040000pt;}
.y14b{bottom:516.480000pt;}
.y138{bottom:516.906667pt;}
.y56{bottom:521.940160pt;}
.yfb{bottom:523.999520pt;}
.y6e{bottom:529.919840pt;}
.y8f{bottom:529.929760pt;}
.yb0{bottom:530.718240pt;}
.y36{bottom:537.929280pt;}
.y117{bottom:539.680000pt;}
.y13{bottom:542.880000pt;}
.y55{bottom:545.140320pt;}
.yfa{bottom:547.199680pt;}
.y11b{bottom:550.080000pt;}
.y6d{bottom:553.120000pt;}
.y8e{bottom:553.129920pt;}
.yaf{bottom:553.918400pt;}
.y35{bottom:561.129440pt;}
.yf9{bottom:570.399840pt;}
.y12{bottom:570.720000pt;}
.y11a{bottom:571.044000pt;}
.y6c{bottom:576.320160pt;}
.y8d{bottom:576.330080pt;}
.y54{bottom:576.335040pt;}
.yae{bottom:577.118560pt;}
.y11c{bottom:581.440000pt;}
.y34{bottom:584.329600pt;}
.y119{bottom:591.840000pt;}
.yf8{bottom:593.600000pt;}
.y11{bottom:598.560000pt;}
.y6b{bottom:599.520320pt;}
.y8c{bottom:599.530240pt;}
.y53{bottom:599.535200pt;}
.yad{bottom:600.318720pt;}
.yf7{bottom:605.440000pt;}
.y33{bottom:607.529760pt;}
.y6a{bottom:622.720480pt;}
.y8b{bottom:622.730400pt;}
.y52{bottom:622.735360pt;}
.y116{bottom:623.200000pt;}
.yac{bottom:623.518880pt;}
.yf5{bottom:626.400000pt;}
.y32{bottom:630.729920pt;}
.y10{bottom:634.400000pt;}
.yf6{bottom:636.800000pt;}
.y115{bottom:644.160000pt;}
.y69{bottom:646.080000pt;}
.y8a{bottom:646.089920pt;}
.yab{bottom:646.719040pt;}
.y31{bottom:654.089440pt;}
.y15e{bottom:662.084000pt;}
.yf{bottom:662.400000pt;}
.yf1{bottom:668.160000pt;}
.y68{bottom:669.280000pt;}
.y89{bottom:669.290080pt;}
.yaa{bottom:670.078560pt;}
.y114{bottom:670.564000pt;}
.y30{bottom:677.289600pt;}
.yf4{bottom:678.720000pt;}
.y15d{bottom:685.284160pt;}
.y113{bottom:686.560000pt;}
.y88{bottom:692.490240pt;}
.ya9{bottom:693.278720pt;}
.yf3{bottom:699.520000pt;}
.y2f{bottom:700.489760pt;}
.ye{bottom:703.520000pt;}
.y112{bottom:708.484320pt;}
.ya8{bottom:716.478880pt;}
.y87{bottom:723.684960pt;}
.y2e{bottom:723.689920pt;}
.yef{bottom:730.880000pt;}
.yd{bottom:731.360000pt;}
.y51{bottom:731.684480pt;}
.ya7{bottom:739.679040pt;}
.yc6{bottom:740.164000pt;}
.yf0{bottom:741.280000pt;}
.y86{bottom:746.885120pt;}
.y2d{bottom:746.890080pt;}
.y50{bottom:754.884640pt;}
.yc5{bottom:756.160000pt;}
.yc{bottom:759.200000pt;}
.ya6{bottom:762.879200pt;}
.y2c{bottom:770.090240pt;}
.yec{bottom:772.640000pt;}
.y85{bottom:778.079840pt;}
.y4f{bottom:778.084800pt;}
.yee{bottom:783.200000pt;}
.ya5{bottom:786.079360pt;}
.yb{bottom:791.703040pt;}
.y2b{bottom:793.290400pt;}
.y84{bottom:801.280000pt;}
.y4e{bottom:801.284960pt;}
.ya4{bottom:809.279520pt;}
.y137{bottom:810.560000pt;}
.ye9{bottom:814.400000pt;}
.y2a{bottom:816.649920pt;}
.y83{bottom:824.639520pt;}
.y4d{bottom:824.644480pt;}
.yeb{bottom:824.960000pt;}
.ya{bottom:828.815360pt;}
.ya3{bottom:832.639040pt;}
.y29{bottom:839.850080pt;}
.y82{bottom:847.839680pt;}
.y4c{bottom:847.844640pt;}
.ya2{bottom:855.839200pt;}
.ye7{bottom:856.320000pt;}
.y9{bottom:865.927680pt;}
.y81{bottom:871.039840pt;}
.y28{bottom:871.044800pt;}
.ye5{bottom:877.120000pt;}
.y4b{bottom:879.039360pt;}
.y80{bottom:894.240000pt;}
.y27{bottom:894.244960pt;}
.y4a{bottom:902.239520pt;}
.y8{bottom:903.040000pt;}
.ye4{bottom:903.520000pt;}
.y7f{bottom:917.440000pt;}
.y26{bottom:917.445120pt;}
.y49{bottom:925.439680pt;}
.y6{bottom:933.600000pt;}
.y25{bottom:940.645280pt;}
.y48{bottom:948.639840pt;}
.y1{bottom:962.880000pt;}
.y5{bottom:970.723840pt;}
.y24{bottom:971.840000pt;}
.y4{bottom:984.960000pt;}
.y23{bottom:995.200000pt;}
.y3{bottom:999.844000pt;}
.y20{bottom:1007.040000pt;}
.y2{bottom:1015.840000pt;}
.y22{bottom:1017.603840pt;}
.y21{bottom:1031.840000pt;}
.hb{height:15.040000pt;}
.h9{height:15.041333pt;}
.hc{height:15.198667pt;}
.ha{height:15.200000pt;}
.hf{height:20.800000pt;}
.he{height:20.960000pt;}
.h7{height:40.000000pt;}
.h12{height:41.760000pt;}
.h10{height:41.920000pt;}
.h2{height:45.752960pt;}
.h3{height:51.216000pt;}
.h1c{height:56.637498pt;}
.h4{height:56.679040pt;}
.h8{height:57.582080pt;}
.h1a{height:62.560000pt;}
.h17{height:62.718667pt;}
.h14{height:62.720000pt;}
.h6{height:68.288000pt;}
.h16{height:83.520000pt;}
.h18{height:83.681333pt;}
.h5{height:90.823040pt;}
.h11{height:92.816000pt;}
.h13{height:93.456000pt;}
.h1d{height:118.671631pt;}
.h1e{height:118.672165pt;}
.h15{height:118.759040pt;}
.h19{height:125.440000pt;}
.h1b{height:287.788000pt;}
.hd{height:288.000000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w9{width:22.560000pt;}
.w8{width:37.760000pt;}
.w7{width:37.920000pt;}
.w6{width:189.120000pt;}
.w3{width:238.721333pt;}
.w4{width:238.878667pt;}
.w2{width:340.160000pt;}
.wa{width:359.040000pt;}
.wb{width:381.600000pt;}
.wc{width:479.849333pt;}
.w5{width:480.000000pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x14{left:0.960000pt;}
.x2d{left:7.200000pt;}
.x21{left:8.746667pt;}
.x27{left:10.880000pt;}
.x32{left:15.780000pt;}
.x20{left:20.633333pt;}
.x33{left:46.748667pt;}
.x1f{left:60.493600pt;}
.x26{left:64.800000pt;}
.x34{left:69.948667pt;}
.x3{left:94.560000pt;}
.x8{left:104.000000pt;}
.x22{left:109.972267pt;}
.x2c{left:111.520000pt;}
.xe{left:113.430880pt;}
.x24{left:118.720000pt;}
.x3b{left:131.397867pt;}
.xf{left:132.315040pt;}
.xb{left:133.440000pt;}
.x2e{left:141.280000pt;}
.x39{left:146.720000pt;}
.x16{left:148.800000pt;}
.x10{left:151.332000pt;}
.x13{left:157.120000pt;}
.x17{left:161.280000pt;}
.x3a{left:166.720000pt;}
.x1c{left:172.480000pt;}
.x19{left:176.960000pt;}
.x1a{left:183.520000pt;}
.x1b{left:188.160000pt;}
.x6{left:189.128480pt;}
.x35{left:193.090267pt;}
.x18{left:194.720000pt;}
.x12{left:222.408000pt;}
.x30{left:240.800000pt;}
.x31{left:246.248000pt;}
.x36{left:254.661067pt;}
.x1d{left:258.560000pt;}
.x11{left:263.520000pt;}
.x5{left:286.569600pt;}
.x7{left:311.680000pt;}
.x1{left:314.560000pt;}
.x37{left:316.231867pt;}
.x1e{left:371.641200pt;}
.x38{left:381.639333pt;}
.x4{left:396.800000pt;}
.x15{left:397.760000pt;}
.x2{left:479.520000pt;}
.x25{left:493.120000pt;}
.x2f{left:505.280000pt;}
.x9{left:507.840000pt;}
.x28{left:531.040000pt;}
.xa{left:532.320000pt;}
.xd{left:547.675040pt;}
.xc{left:563.680000pt;}
.x29{left:568.800000pt;}
.x2a{left:606.560000pt;}
.x23{left:637.120000pt;}
.x2b{left:644.320000pt;}
}




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