
    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_c7afba682896cfe67b9ae463.woff')format("woff");}.ff1{font-family:ff1;line-height:1.040039;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_1d5be489776734f8a612d56d.woff')format("woff");}.ff2{font-family:ff2;line-height:1.049805;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_1625ecb99b2c9c2bb7582216.woff')format("woff");}.ff3{font-family:ff3;line-height:0.921387;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_bae84f65399f75f18284a9a1.woff')format("woff");}.ff4{font-family:ff4;line-height:0.999512;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_b4feb020e884746ba36338c3.woff')format("woff");}.ff5{font-family:ff5;line-height:0.739746;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_ec1837c01af5cfeea9593d63.woff')format("woff");}.ff6{font-family:ff6;line-height:0.740234;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_cf9f6d16430008c58f469fb1.woff')format("woff");}.ff7{font-family:ff7;line-height:0.739746;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_b84d12132aff8e9aead04232.woff')format("woff");}.ff8{font-family:ff8;line-height:1.049805;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_c1c9ad4a3edf78338252dd39.woff')format("woff");}.ff9{font-family:ff9;line-height:0.758789;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_6a887f2bf04694a7a45e7e18.woff')format("woff");}.ffa{font-family:ffa;line-height:1.120605;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_c35d48d86efa060b3e97f462.woff')format("woff");}.ffb{font-family:ffb;line-height:0.999512;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_640fddf5d5d61d7ae15ac9bc.woff')format("woff");}.ffc{font-family:ffc;line-height:1.040039;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;}
.m2{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,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);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-23.040000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:20.880000px;}
.ls3a{letter-spacing:-1.980000px;}
.ls2e{letter-spacing:-1.800000px;}
.ls27{letter-spacing:-1.542000px;}
.ls20{letter-spacing:-1.416000px;}
.ls1e{letter-spacing:-1.080000px;}
.ls37{letter-spacing:-0.990000px;}
.ls35{letter-spacing:-0.942000px;}
.ls21{letter-spacing:-0.774000px;}
.ls15{letter-spacing:-0.720000px;}
.ls39{letter-spacing:-0.672000px;}
.ls2f{letter-spacing:-0.583800px;}
.ls30{letter-spacing:-0.540000px;}
.ls31{letter-spacing:-0.538800px;}
.ls36{letter-spacing:-0.450600px;}
.lsb{letter-spacing:-0.360000px;}
.ls33{letter-spacing:-0.269400px;}
.ls38{letter-spacing:-0.223800px;}
.ls9{letter-spacing:-0.216000px;}
.lsc{letter-spacing:-0.206400px;}
.ls14{letter-spacing:-0.152400px;}
.ls17{letter-spacing:-0.053280px;}
.ls2b{letter-spacing:-0.045360px;}
.ls8{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.053280px;}
.ls1a{letter-spacing:0.070560px;}
.ls18{letter-spacing:0.106800px;}
.ls0{letter-spacing:0.119520px;}
.lse{letter-spacing:0.144000px;}
.ls4{letter-spacing:0.179280px;}
.ls1c{letter-spacing:0.180000px;}
.ls2d{letter-spacing:0.181200px;}
.ls1d{letter-spacing:0.206400px;}
.ls2c{letter-spacing:0.223800px;}
.ls19{letter-spacing:0.259800px;}
.ls32{letter-spacing:0.269400px;}
.ls16{letter-spacing:0.306600px;}
.ls1{letter-spacing:0.360000px;}
.lsa{letter-spacing:0.378600px;}
.ls22{letter-spacing:0.480000px;}
.ls1f{letter-spacing:0.497400px;}
.ls28{letter-spacing:1.026000px;}
.ls3{letter-spacing:3.060000px;}
.ls12{letter-spacing:13.860000px;}
.ls1b{letter-spacing:17.226720px;}
.ls34{letter-spacing:33.300000px;}
.ls2a{letter-spacing:56.429280px;}
.ls29{letter-spacing:80.909280px;}
.ls5{letter-spacing:91.386720px;}
.ls6{letter-spacing:109.362720px;}
.ls10{letter-spacing:118.200000px;}
.ls11{letter-spacing:121.800000px;}
.lsf{letter-spacing:137.640000px;}
.ls26{letter-spacing:144.180000px;}
.ls7{letter-spacing:154.002720px;}
.ls25{letter-spacing:157.116000px;}
.ls13{letter-spacing:157.602720px;}
.lsd{letter-spacing:157.800000px;}
.ls23{letter-spacing:164.082720px;}
.ls24{letter-spacing:167.682720px;}
.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;}
}
.ws1d{word-spacing:-48.240000px;}
.ws1{word-spacing:-26.784000px;}
.ws2{word-spacing:-21.438600px;}
.wsa{word-spacing:-18.144000px;}
.wsb{word-spacing:-18.000000px;}
.ws8{word-spacing:-16.407600px;}
.ws1b{word-spacing:-15.966000px;}
.ws9{word-spacing:-15.840000px;}
.ws0{word-spacing:-15.300000px;}
.wsc{word-spacing:-15.246600px;}
.ws18{word-spacing:-15.199800px;}
.ws10{word-spacing:-15.146400px;}
.wse{word-spacing:-15.046800px;}
.ws3{word-spacing:-14.993280px;}
.ws5{word-spacing:-14.940000px;}
.wsd{word-spacing:-14.886720px;}
.ws6{word-spacing:-14.733600px;}
.ws4{word-spacing:-14.580000px;}
.ws17{word-spacing:-14.166000px;}
.ws19{word-spacing:-13.860000px;}
.ws1a{word-spacing:-13.398000px;}
.ws12{word-spacing:-12.420000px;}
.ws24{word-spacing:-12.329400px;}
.ws1e{word-spacing:-12.283800px;}
.ws1f{word-spacing:-12.241200px;}
.ws11{word-spacing:-12.060000px;}
.ws1c{word-spacing:-12.014640px;}
.ws29{word-spacing:-11.836200px;}
.ws25{word-spacing:-11.790600px;}
.ws20{word-spacing:-11.700000px;}
.ws27{word-spacing:-11.609400px;}
.ws23{word-spacing:-11.521200px;}
.ws22{word-spacing:-11.476200px;}
.ws15{word-spacing:-11.399640px;}
.ws2a{word-spacing:-11.388000px;}
.ws26{word-spacing:-11.118000px;}
.ws28{word-spacing:-11.070000px;}
.ws13{word-spacing:-10.980000px;}
.ws14{word-spacing:-10.902240px;}
.ws21{word-spacing:-10.260000px;}
.ws2b{word-spacing:-10.080000px;}
.wsf{word-spacing:-9.720000px;}
.ws16{word-spacing:-9.486240px;}
.ws7{word-spacing:0.000000px;}
._13{margin-left:-4.003200px;}
._2{margin-left:-2.823840px;}
._0{margin-left:-1.391040px;}
._3{width:1.103040px;}
._6{width:2.753520px;}
._8{width:3.764880px;}
._7{width:5.112000px;}
._1{width:6.444240px;}
._9{width:7.771200px;}
._f{width:9.205680px;}
._b{width:11.118720px;}
._a{width:12.189360px;}
._e{width:13.418640px;}
._2f{width:14.602320px;}
._5{width:16.669200px;}
._4{width:17.742720px;}
._d{width:19.064400px;}
._c{width:20.079120px;}
._12{width:22.140240px;}
._2e{width:23.212560px;}
._10{width:24.447360px;}
._14{width:25.585200px;}
._11{width:26.591760px;}
._15{width:28.916640px;}
._25{width:29.972880px;}
._2d{width:40.712400px;}
._27{width:48.990240px;}
._1f{width:52.920720px;}
._28{width:63.376560px;}
._19{width:76.333440px;}
._20{width:82.126080px;}
._29{width:99.614880px;}
._2c{width:101.131200px;}
._23{width:115.999680px;}
._2b{width:119.689200px;}
._1a{width:124.921680px;}
._2a{width:131.828880px;}
._1e{width:137.066880px;}
._17{width:143.870400px;}
._22{width:158.400000px;}
._18{width:165.179280px;}
._1b{width:167.370480px;}
._26{width:170.737680px;}
._1d{width:173.979840px;}
._24{width:183.983760px;}
._16{width:201.036000px;}
._21{width:1281.154080px;}
._1c{width:1334.744400px;}
.fc2{color:rgb(32,32,32);}
.fc1{color:rgb(35,35,35);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:38.880000px;}
.fs6{font-size:48.240000px;}
.fs1{font-size:59.760000px;}
.fs0{font-size:66.240000px;}
.fs4{font-size:72.000000px;}
.fs3{font-size:84.240000px;}
.fs2{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y11a{bottom:7.380000px;}
.y104{bottom:7.560000px;}
.y106{bottom:7.740000px;}
.y140{bottom:7.770000px;}
.y121{bottom:7.920000px;}
.ybc{bottom:11.340000px;}
.yb7{bottom:11.520000px;}
.yc1{bottom:11.700000px;}
.y103{bottom:11.880000px;}
.y13f{bottom:11.910000px;}
.y10d{bottom:11.925000px;}
.y10a{bottom:12.060000px;}
.yce{bottom:27.900000px;}
.yca{bottom:43.920000px;}
.yd5{bottom:46.080000px;}
.y101{bottom:64.080000px;}
.y100{bottom:77.970000px;}
.y5{bottom:88.380000px;}
.yff{bottom:91.650000px;}
.y78{bottom:112.140000px;}
.y1a2{bottom:113.400000px;}
.y144{bottom:113.760000px;}
.y3c{bottom:114.300000px;}
.ycb{bottom:121.680000px;}
.yaf{bottom:123.300000px;}
.yfd{bottom:123.480000px;}
.y11b{bottom:123.840000px;}
.y171{bottom:125.820000px;}
.y1a1{bottom:127.260000px;}
.y77{bottom:129.420000px;}
.y3b{bottom:131.580000px;}
.y143{bottom:137.700000px;}
.yae{bottom:140.580000px;}
.yfc{bottom:140.760000px;}
.y1a0{bottom:141.120000px;}
.yb5{bottom:142.560000px;}
.y170{bottom:142.920000px;}
.yc8{bottom:145.440000px;}
.y76{bottom:146.700000px;}
.y119{bottom:147.960000px;}
.y3a{bottom:148.860000px;}
.y19f{bottom:154.800000px;}
.yad{bottom:157.860000px;}
.yfb{bottom:158.040000px;}
.y16f{bottom:160.200000px;}
.y142{bottom:161.640000px;}
.y75{bottom:163.800000px;}
.y39{bottom:166.140000px;}
.y19e{bottom:168.660000px;}
.yd1{bottom:169.380000px;}
.y118{bottom:171.720000px;}
.yac{bottom:175.140000px;}
.y16e{bottom:177.480000px;}
.y74{bottom:181.080000px;}
.y19d{bottom:182.340000px;}
.y38{bottom:183.420000px;}
.y141{bottom:185.580000px;}
.yab{bottom:192.420000px;}
.yd0{bottom:193.320000px;}
.y16d{bottom:194.760000px;}
.y117{bottom:195.660000px;}
.y19c{bottom:196.200000px;}
.y73{bottom:198.360000px;}
.y37{bottom:200.520000px;}
.yaa{bottom:209.520000px;}
.yfa{bottom:209.730000px;}
.y19b{bottom:210.090000px;}
.y16c{bottom:212.070000px;}
.y72{bottom:215.670000px;}
.ycf{bottom:217.290000px;}
.y36{bottom:217.830000px;}
.y116{bottom:219.630000px;}
.y19a{bottom:223.770000px;}
.ya9{bottom:226.830000px;}
.yf9{bottom:227.010000px;}
.yc9{bottom:227.730000px;}
.y16b{bottom:229.350000px;}
.y71{bottom:232.950000px;}
.y13e{bottom:233.490000px;}
.y35{bottom:235.110000px;}
.y199{bottom:237.630000px;}
.ycc{bottom:241.230000px;}
.y115{bottom:243.570000px;}
.ya8{bottom:244.110000px;}
.yf8{bottom:244.290000px;}
.y16a{bottom:246.450000px;}
.y70{bottom:250.230000px;}
.y198{bottom:251.490000px;}
.y34{bottom:252.390000px;}
.y13d{bottom:257.430000px;}
.ya7{bottom:261.390000px;}
.yf7{bottom:261.570000px;}
.y169{bottom:263.730000px;}
.y197{bottom:265.170000px;}
.y6f{bottom:267.330000px;}
.y114{bottom:267.510000px;}
.y33{bottom:269.670000px;}
.ya6{bottom:278.670000px;}
.y196{bottom:279.030000px;}
.y168{bottom:281.010000px;}
.ycd{bottom:281.370000px;}
.y6e{bottom:284.610000px;}
.y32{bottom:286.770000px;}
.y113{bottom:291.630000px;}
.y195{bottom:292.890000px;}
.ya5{bottom:295.770000px;}
.yf6{bottom:295.950000px;}
.y167{bottom:298.290000px;}
.y6d{bottom:301.890000px;}
.y31{bottom:304.050000px;}
.yc6{bottom:305.310000px;}
.y194{bottom:306.570000px;}
.ya4{bottom:313.050000px;}
.yf5{bottom:313.230000px;}
.y112{bottom:315.570000px;}
.y6c{bottom:319.170000px;}
.y193{bottom:320.430000px;}
.y30{bottom:321.330000px;}
.y13c{bottom:329.430000px;}
.ya3{bottom:330.330000px;}
.yf4{bottom:330.510000px;}
.y166{bottom:332.850000px;}
.y192{bottom:334.290000px;}
.y6b{bottom:336.450000px;}
.y2f{bottom:338.610000px;}
.y111{bottom:339.510000px;}
.ya2{bottom:347.610000px;}
.yf3{bottom:347.790000px;}
.y191{bottom:347.970000px;}
.y165{bottom:349.950000px;}
.y13b{bottom:353.370000px;}
.y6a{bottom:353.730000px;}
.y2e{bottom:355.890000px;}
.yc7{bottom:361.650000px;}
.y190{bottom:361.830000px;}
.y110{bottom:363.450000px;}
.ya1{bottom:364.890000px;}
.yf2{bottom:365.070000px;}
.y164{bottom:367.230000px;}
.y69{bottom:370.830000px;}
.y2d{bottom:373.170000px;}
.y18f{bottom:375.690000px;}
.y13a{bottom:377.310000px;}
.ya0{bottom:382.170000px;}
.y163{bottom:384.510000px;}
.yc5{bottom:385.590000px;}
.y10f{bottom:387.210000px;}
.y68{bottom:388.110000px;}
.y18e{bottom:389.370000px;}
.y2c{bottom:390.270000px;}
.y9f{bottom:399.270000px;}
.yf1{bottom:399.450000px;}
.y139{bottom:401.250000px;}
.y162{bottom:401.790000px;}
.y18d{bottom:403.230000px;}
.y67{bottom:405.390000px;}
.y2b{bottom:407.550000px;}
.yc4{bottom:409.530000px;}
.y10e{bottom:411.150000px;}
.y9e{bottom:416.550000px;}
.yf0{bottom:416.730000px;}
.y18c{bottom:417.090000px;}
.y161{bottom:419.070000px;}
.y66{bottom:422.670000px;}
.y2a{bottom:424.830000px;}
.y138{bottom:425.190000px;}
.y18b{bottom:430.770000px;}
.yc3{bottom:433.290000px;}
.y9d{bottom:433.830000px;}
.yef{bottom:434.010000px;}
.y10c{bottom:435.270000px;}
.y65{bottom:439.950000px;}
.y29{bottom:442.110000px;}
.y160{bottom:444.090000px;}
.y18a{bottom:444.450000px;}
.y137{bottom:449.175000px;}
.y9c{bottom:451.155000px;}
.yee{bottom:451.335000px;}
.y64{bottom:457.275000px;}
.y189{bottom:457.995000px;}
.y10b{bottom:459.255000px;}
.y28{bottom:459.435000px;}
.yc2{bottom:460.515000px;}
.y15f{bottom:461.415000px;}
.y9b{bottom:468.435000px;}
.yed{bottom:468.615000px;}
.y188{bottom:471.495000px;}
.y136{bottom:473.295000px;}
.y63{bottom:474.375000px;}
.yc0{bottom:475.635000px;}
.y27{bottom:476.715000px;}
.y15e{bottom:481.395000px;}
.y109{bottom:483.195000px;}
.y187{bottom:485.175000px;}
.y9a{bottom:485.715000px;}
.y62{bottom:491.655000px;}
.y26{bottom:493.815000px;}
.y135{bottom:497.055000px;}
.y15d{bottom:498.675000px;}
.y186{bottom:499.035000px;}
.ybf{bottom:499.755000px;}
.y99{bottom:502.815000px;}
.yec{bottom:502.995000px;}
.y108{bottom:507.135000px;}
.y61{bottom:508.935000px;}
.y25{bottom:511.095000px;}
.y185{bottom:512.895000px;}
.y98{bottom:520.095000px;}
.yeb{bottom:520.275000px;}
.y134{bottom:520.815000px;}
.ybe{bottom:523.515000px;}
.y60{bottom:526.215000px;}
.y184{bottom:526.575000px;}
.y24{bottom:528.375000px;}
.y107{bottom:531.075000px;}
.y15c{bottom:536.835000px;}
.y97{bottom:537.375000px;}
.yea{bottom:537.555000px;}
.y183{bottom:540.435000px;}
.y5f{bottom:543.495000px;}
.y133{bottom:544.935000px;}
.y23{bottom:545.655000px;}
.ybd{bottom:547.455000px;}
.y15b{bottom:554.115000px;}
.y182{bottom:554.295000px;}
.y96{bottom:554.655000px;}
.ye9{bottom:554.835000px;}
.y105{bottom:555.015000px;}
.y5e{bottom:560.595000px;}
.y22{bottom:562.935000px;}
.y181{bottom:567.975000px;}
.y132{bottom:568.875000px;}
.ybb{bottom:571.395000px;}
.y95{bottom:571.935000px;}
.y5d{bottom:577.875000px;}
.y102{bottom:578.955000px;}
.y21{bottom:580.215000px;}
.y180{bottom:581.835000px;}
.y94{bottom:589.215000px;}
.y15a{bottom:591.375000px;}
.y131{bottom:592.815000px;}
.y5c{bottom:595.155000px;}
.y17f{bottom:595.695000px;}
.y20{bottom:597.315000px;}
.yfe{bottom:602.895000px;}
.y93{bottom:606.315000px;}
.ye8{bottom:606.495000px;}
.y17e{bottom:609.375000px;}
.y5b{bottom:612.435000px;}
.y1f{bottom:614.595000px;}
.y130{bottom:616.935000px;}
.yba{bottom:618.915000px;}
.y92{bottom:623.595000px;}
.ye7{bottom:623.775000px;}
.y17d{bottom:624.675000px;}
.y159{bottom:626.295000px;}
.y5a{bottom:629.715000px;}
.y1e{bottom:631.875000px;}
.y91{bottom:640.875000px;}
.ye6{bottom:641.055000px;}
.yb9{bottom:642.855000px;}
.y17c{bottom:643.575000px;}
.y59{bottom:646.995000px;}
.y1d{bottom:649.155000px;}
.y158{bottom:651.495000px;}
.y17b{bottom:657.435000px;}
.y90{bottom:658.155000px;}
.ye5{bottom:658.335000px;}
.y58{bottom:664.095000px;}
.y12f{bottom:664.815000px;}
.y1c{bottom:666.435000px;}
.yb8{bottom:666.795000px;}
.y157{bottom:668.595000px;}
.y17a{bottom:671.115000px;}
.y8f{bottom:675.435000px;}
.y57{bottom:681.405000px;}
.y1b{bottom:683.565000px;}
.y179{bottom:685.005000px;}
.y156{bottom:685.905000px;}
.y12e{bottom:688.785000px;}
.yb6{bottom:690.765000px;}
.y8e{bottom:692.565000px;}
.ye4{bottom:692.745000px;}
.y56{bottom:698.685000px;}
.y178{bottom:698.865000px;}
.y1a{bottom:700.845000px;}
.y155{bottom:703.185000px;}
.y8d{bottom:709.845000px;}
.ye3{bottom:710.025000px;}
.y177{bottom:712.545000px;}
.y12d{bottom:712.725000px;}
.yb4{bottom:714.705000px;}
.y55{bottom:715.965000px;}
.y19{bottom:718.125000px;}
.y154{bottom:720.465000px;}
.y176{bottom:726.405000px;}
.y8c{bottom:727.125000px;}
.ye2{bottom:727.305000px;}
.y1bf{bottom:727.665000px;}
.y54{bottom:733.245000px;}
.y18{bottom:735.405000px;}
.y12c{bottom:736.665000px;}
.y153{bottom:737.745000px;}
.y175{bottom:740.265000px;}
.y1be{bottom:741.345000px;}
.y8b{bottom:744.405000px;}
.ye1{bottom:744.585000px;}
.y53{bottom:750.525000px;}
.y17{bottom:752.685000px;}
.y174{bottom:753.945000px;}
.y152{bottom:755.025000px;}
.y1bd{bottom:755.205000px;}
.y12b{bottom:760.785000px;}
.y8a{bottom:761.685000px;}
.ye0{bottom:761.865000px;}
.y52{bottom:767.625000px;}
.y173{bottom:767.805000px;}
.y1bc{bottom:768.885000px;}
.y16{bottom:769.965000px;}
.y89{bottom:778.965000px;}
.y151{bottom:780.225000px;}
.y172{bottom:781.665000px;}
.y1bb{bottom:782.745000px;}
.y12a{bottom:784.545000px;}
.y51{bottom:784.905000px;}
.y15{bottom:787.065000px;}
.y88{bottom:796.065000px;}
.ydf{bottom:796.245000px;}
.y1ba{bottom:796.605000px;}
.y150{bottom:797.325000px;}
.y50{bottom:802.185000px;}
.y14{bottom:804.345000px;}
.y129{bottom:808.485000px;}
.y1b9{bottom:810.285000px;}
.y87{bottom:813.345000px;}
.yde{bottom:813.525000px;}
.y14f{bottom:814.605000px;}
.y4f{bottom:819.465000px;}
.y13{bottom:821.625000px;}
.y1b8{bottom:824.145000px;}
.y86{bottom:830.625000px;}
.ydd{bottom:830.805000px;}
.y14e{bottom:831.885000px;}
.y128{bottom:832.425000px;}
.y4e{bottom:836.745000px;}
.y1b7{bottom:838.005000px;}
.y12{bottom:838.905000px;}
.y85{bottom:847.905000px;}
.ydc{bottom:848.085000px;}
.y14d{bottom:849.165000px;}
.y1b6{bottom:851.685000px;}
.y4d{bottom:853.845000px;}
.y11{bottom:856.185000px;}
.y127{bottom:859.605000px;}
.y84{bottom:865.185000px;}
.y1b5{bottom:865.545000px;}
.y14c{bottom:866.445000px;}
.y4c{bottom:871.125000px;}
.yb3{bottom:872.925000px;}
.y10{bottom:873.465000px;}
.y126{bottom:874.545000px;}
.y1b4{bottom:879.405000px;}
.y83{bottom:882.465000px;}
.y14b{bottom:883.725000px;}
.y4b{bottom:888.405000px;}
.yb2{bottom:890.205000px;}
.yf{bottom:890.565000px;}
.y1b3{bottom:893.085000px;}
.y125{bottom:898.485000px;}
.y82{bottom:899.565000px;}
.ydb{bottom:899.745000px;}
.y4a{bottom:905.685000px;}
.y1b2{bottom:906.945000px;}
.yb1{bottom:907.485000px;}
.ye{bottom:907.845000px;}
.y81{bottom:916.890000px;}
.yda{bottom:917.070000px;}
.y1b1{bottom:920.850000px;}
.y124{bottom:922.290000px;}
.y49{bottom:923.010000px;}
.yb0{bottom:924.810000px;}
.yd{bottom:925.170000px;}
.y80{bottom:934.170000px;}
.yd9{bottom:934.350000px;}
.y48{bottom:940.290000px;}
.yc{bottom:944.610000px;}
.y14a{bottom:946.230000px;}
.y123{bottom:946.410000px;}
.y1b0{bottom:947.310000px;}
.y7f{bottom:951.450000px;}
.yd8{bottom:951.630000px;}
.y47{bottom:960.270000px;}
.y1af{bottom:960.990000px;}
.yb{bottom:961.890000px;}
.y7e{bottom:968.730000px;}
.y149{bottom:970.170000px;}
.y122{bottom:970.350000px;}
.y1ae{bottom:974.850000px;}
.y46{bottom:977.550000px;}
.ya{bottom:980.070000px;}
.yd7{bottom:984.030000px;}
.y7d{bottom:985.830000px;}
.y1ad{bottom:988.710000px;}
.y120{bottom:994.290000px;}
.y45{bottom:997.530000px;}
.y9{bottom:1000.410000px;}
.y1ac{bottom:1002.390000px;}
.y7c{bottom:1003.110000px;}
.yd6{bottom:1007.790000px;}
.y44{bottom:1014.810000px;}
.y1ab{bottom:1016.250000px;}
.y148{bottom:1018.230000px;}
.y11f{bottom:1018.410000px;}
.y7b{bottom:1020.390000px;}
.y8{bottom:1020.750000px;}
.y1aa{bottom:1030.110000px;}
.yd4{bottom:1031.730000px;}
.y43{bottom:1034.790000px;}
.y7a{bottom:1037.670000px;}
.y147{bottom:1042.170000px;}
.y11e{bottom:1042.350000px;}
.y7{bottom:1042.710000px;}
.y1a9{bottom:1043.790000px;}
.y42{bottom:1052.250000px;}
.y79{bottom:1054.950000px;}
.y1a8{bottom:1057.650000px;}
.y11d{bottom:1065.930000px;}
.y146{bottom:1066.290000px;}
.y1a7{bottom:1071.510000px;}
.y41{bottom:1072.230000px;}
.y6{bottom:1073.850000px;}
.y1a6{bottom:1085.190000px;}
.y40{bottom:1089.330000px;}
.y11c{bottom:1090.050000px;}
.yd3{bottom:1090.230000px;}
.y1a5{bottom:1099.050000px;}
.y4{bottom:1102.650000px;}
.y3f{bottom:1106.610000px;}
.y1a4{bottom:1112.910000px;}
.y145{bottom:1113.810000px;}
.yd2{bottom:1113.990000px;}
.y3{bottom:1123.710000px;}
.y3e{bottom:1123.890000px;}
.y1a3{bottom:1126.590000px;}
.y2{bottom:1142.790000px;}
.y3d{bottom:1161.720000px;}
.y1{bottom:1161.900000px;}
.h13{height:22.500000px;}
.h12{height:22.680000px;}
.h15{height:22.716000px;}
.h10{height:22.860000px;}
.h11{height:22.896000px;}
.h14{height:23.040000px;}
.h24{height:23.076000px;}
.h21{height:23.220000px;}
.h22{height:23.256000px;}
.h23{height:23.400000px;}
.h1c{height:39.060000px;}
.hf{height:39.760312px;}
.he{height:40.231406px;}
.h6{height:42.164648px;}
.ha{height:43.506914px;}
.h9{height:45.024258px;}
.h17{height:47.980898px;}
.h8{height:49.255313px;}
.h4{height:49.838906px;}
.hc{height:50.172891px;}
.h1f{height:53.305313px;}
.h2{height:54.596250px;}
.h3{height:55.243125px;}
.h19{height:55.260000px;}
.h1e{height:57.420000px;}
.h7{height:59.436914px;}
.hb{height:60.046875px;}
.h5{height:76.201172px;}
.h1d{height:81.180000px;}
.h20{height:102.996000px;}
.h16{height:103.140000px;}
.h1b{height:119.340000px;}
.hd{height:153.900000px;}
.h1a{height:238.890000px;}
.h18{height:239.070000px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.wb{width:40.860000px;}
.w8{width:41.076000px;}
.w6{width:46.440000px;}
.w9{width:48.420000px;}
.wc{width:48.456000px;}
.w7{width:48.780000px;}
.wa{width:48.960000px;}
.w4{width:54.360000px;}
.wd{width:56.160000px;}
.w3{width:58.320000px;}
.we{width:59.400000px;}
.w5{width:63.576000px;}
.wf{width:201.990000px;}
.w10{width:203.070000px;}
.w11{width:204.150000px;}
.w2{width:893.159987px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x21{left:4.320000px;}
.x20{left:7.020000px;}
.x16{left:11.520000px;}
.x18{left:25.605000px;}
.x27{left:39.780000px;}
.x28{left:54.000000px;}
.x29{left:68.220000px;}
.x31{left:78.480000px;}
.x2c{left:81.360000px;}
.x2a{left:83.160000px;}
.x32{left:85.680000px;}
.x25{left:88.734000px;}
.x30{left:90.765000px;}
.x2f{left:92.025000px;}
.x2d{left:93.825000px;}
.x2e{left:98.145000px;}
.x1{left:108.035987px;}
.x2{left:113.255987px;}
.xf{left:128.375987px;}
.x14{left:132.876000px;}
.x24{left:141.336000px;}
.x3{left:149.435987px;}
.x9{left:162.029987px;}
.x6{left:169.769987px;}
.xa{left:171.749987px;}
.x15{left:192.270000px;}
.x35{left:207.029987px;}
.x33{left:212.069987px;}
.x23{left:213.149987px;}
.x34{left:217.109987px;}
.x7{left:238.349987px;}
.x13{left:245.009987px;}
.x17{left:247.890000px;}
.x22{left:255.089987px;}
.x11{left:284.654987px;}
.xb{left:297.074987px;}
.x10{left:304.094987px;}
.x12{left:312.734987px;}
.xc{left:327.854987px;}
.xd{left:338.114987px;}
.x26{left:344.055000px;}
.xe{left:356.474987px;}
.x8{left:360.974987px;}
.x5{left:368.534987px;}
.x36{left:378.434987px;}
.x37{left:397.514987px;}
.x19{left:410.115000px;}
.x4{left:445.604987px;}
.x1a{left:452.445000px;}
.x1b{left:502.125000px;}
.x2b{left:547.845000px;}
.x1c{left:552.165000px;}
.x1d{left:594.105000px;}
.x1e{left:643.650000px;}
.x1f{left:700.890000px;}
@media print{
.v2{vertical-align:-20.480000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:18.560000pt;}
.ls3a{letter-spacing:-1.760000pt;}
.ls2e{letter-spacing:-1.600000pt;}
.ls27{letter-spacing:-1.370667pt;}
.ls20{letter-spacing:-1.258667pt;}
.ls1e{letter-spacing:-0.960000pt;}
.ls37{letter-spacing:-0.880000pt;}
.ls35{letter-spacing:-0.837333pt;}
.ls21{letter-spacing:-0.688000pt;}
.ls15{letter-spacing:-0.640000pt;}
.ls39{letter-spacing:-0.597333pt;}
.ls2f{letter-spacing:-0.518933pt;}
.ls30{letter-spacing:-0.480000pt;}
.ls31{letter-spacing:-0.478933pt;}
.ls36{letter-spacing:-0.400533pt;}
.lsb{letter-spacing:-0.320000pt;}
.ls33{letter-spacing:-0.239467pt;}
.ls38{letter-spacing:-0.198933pt;}
.ls9{letter-spacing:-0.192000pt;}
.lsc{letter-spacing:-0.183467pt;}
.ls14{letter-spacing:-0.135467pt;}
.ls17{letter-spacing:-0.047360pt;}
.ls2b{letter-spacing:-0.040320pt;}
.ls8{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.047360pt;}
.ls1a{letter-spacing:0.062720pt;}
.ls18{letter-spacing:0.094933pt;}
.ls0{letter-spacing:0.106240pt;}
.lse{letter-spacing:0.128000pt;}
.ls4{letter-spacing:0.159360pt;}
.ls1c{letter-spacing:0.160000pt;}
.ls2d{letter-spacing:0.161067pt;}
.ls1d{letter-spacing:0.183467pt;}
.ls2c{letter-spacing:0.198933pt;}
.ls19{letter-spacing:0.230933pt;}
.ls32{letter-spacing:0.239467pt;}
.ls16{letter-spacing:0.272533pt;}
.ls1{letter-spacing:0.320000pt;}
.lsa{letter-spacing:0.336533pt;}
.ls22{letter-spacing:0.426667pt;}
.ls1f{letter-spacing:0.442133pt;}
.ls28{letter-spacing:0.912000pt;}
.ls3{letter-spacing:2.720000pt;}
.ls12{letter-spacing:12.320000pt;}
.ls1b{letter-spacing:15.312640pt;}
.ls34{letter-spacing:29.600000pt;}
.ls2a{letter-spacing:50.159360pt;}
.ls29{letter-spacing:71.919360pt;}
.ls5{letter-spacing:81.232640pt;}
.ls6{letter-spacing:97.211307pt;}
.ls10{letter-spacing:105.066667pt;}
.ls11{letter-spacing:108.266667pt;}
.lsf{letter-spacing:122.346667pt;}
.ls26{letter-spacing:128.160000pt;}
.ls7{letter-spacing:136.891307pt;}
.ls25{letter-spacing:139.658667pt;}
.ls13{letter-spacing:140.091307pt;}
.lsd{letter-spacing:140.266667pt;}
.ls23{letter-spacing:145.851307pt;}
.ls24{letter-spacing:149.051307pt;}
.ws1d{word-spacing:-42.880000pt;}
.ws1{word-spacing:-23.808000pt;}
.ws2{word-spacing:-19.056533pt;}
.wsa{word-spacing:-16.128000pt;}
.wsb{word-spacing:-16.000000pt;}
.ws8{word-spacing:-14.584533pt;}
.ws1b{word-spacing:-14.192000pt;}
.ws9{word-spacing:-14.080000pt;}
.ws0{word-spacing:-13.600000pt;}
.wsc{word-spacing:-13.552533pt;}
.ws18{word-spacing:-13.510933pt;}
.ws10{word-spacing:-13.463467pt;}
.wse{word-spacing:-13.374933pt;}
.ws3{word-spacing:-13.327360pt;}
.ws5{word-spacing:-13.280000pt;}
.wsd{word-spacing:-13.232640pt;}
.ws6{word-spacing:-13.096533pt;}
.ws4{word-spacing:-12.960000pt;}
.ws17{word-spacing:-12.592000pt;}
.ws19{word-spacing:-12.320000pt;}
.ws1a{word-spacing:-11.909333pt;}
.ws12{word-spacing:-11.040000pt;}
.ws24{word-spacing:-10.959467pt;}
.ws1e{word-spacing:-10.918933pt;}
.ws1f{word-spacing:-10.881067pt;}
.ws11{word-spacing:-10.720000pt;}
.ws1c{word-spacing:-10.679680pt;}
.ws29{word-spacing:-10.521067pt;}
.ws25{word-spacing:-10.480533pt;}
.ws20{word-spacing:-10.400000pt;}
.ws27{word-spacing:-10.319467pt;}
.ws23{word-spacing:-10.241067pt;}
.ws22{word-spacing:-10.201067pt;}
.ws15{word-spacing:-10.133013pt;}
.ws2a{word-spacing:-10.122667pt;}
.ws26{word-spacing:-9.882667pt;}
.ws28{word-spacing:-9.840000pt;}
.ws13{word-spacing:-9.760000pt;}
.ws14{word-spacing:-9.690880pt;}
.ws21{word-spacing:-9.120000pt;}
.ws2b{word-spacing:-8.960000pt;}
.wsf{word-spacing:-8.640000pt;}
.ws16{word-spacing:-8.432213pt;}
.ws7{word-spacing:0.000000pt;}
._13{margin-left:-3.558400pt;}
._2{margin-left:-2.510080pt;}
._0{margin-left:-1.236480pt;}
._3{width:0.980480pt;}
._6{width:2.447573pt;}
._8{width:3.346560pt;}
._7{width:4.544000pt;}
._1{width:5.728213pt;}
._9{width:6.907733pt;}
._f{width:8.182827pt;}
._b{width:9.883307pt;}
._a{width:10.834987pt;}
._e{width:11.927680pt;}
._2f{width:12.979840pt;}
._5{width:14.817067pt;}
._4{width:15.771307pt;}
._d{width:16.946133pt;}
._c{width:17.848107pt;}
._12{width:19.680213pt;}
._2e{width:20.633387pt;}
._10{width:21.730987pt;}
._14{width:22.742400pt;}
._11{width:23.637120pt;}
._15{width:25.703680pt;}
._25{width:26.642560pt;}
._2d{width:36.188800pt;}
._27{width:43.546880pt;}
._1f{width:47.040640pt;}
._28{width:56.334720pt;}
._19{width:67.851947pt;}
._20{width:73.000960pt;}
._29{width:88.546560pt;}
._2c{width:89.894400pt;}
._23{width:103.110827pt;}
._2b{width:106.390400pt;}
._1a{width:111.041493pt;}
._2a{width:117.181227pt;}
._1e{width:121.837227pt;}
._17{width:127.884800pt;}
._22{width:140.800000pt;}
._18{width:146.826027pt;}
._1b{width:148.773760pt;}
._26{width:151.766827pt;}
._1d{width:154.648747pt;}
._24{width:163.541120pt;}
._16{width:178.698667pt;}
._21{width:1138.803627pt;}
._1c{width:1186.439467pt;}
.fs5{font-size:34.560000pt;}
.fs6{font-size:42.880000pt;}
.fs1{font-size:53.120000pt;}
.fs0{font-size:58.880000pt;}
.fs4{font-size:64.000000pt;}
.fs3{font-size:74.880000pt;}
.fs2{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y11a{bottom:6.560000pt;}
.y104{bottom:6.720000pt;}
.y106{bottom:6.880000pt;}
.y140{bottom:6.906667pt;}
.y121{bottom:7.040000pt;}
.ybc{bottom:10.080000pt;}
.yb7{bottom:10.240000pt;}
.yc1{bottom:10.400000pt;}
.y103{bottom:10.560000pt;}
.y13f{bottom:10.586667pt;}
.y10d{bottom:10.600000pt;}
.y10a{bottom:10.720000pt;}
.yce{bottom:24.800000pt;}
.yca{bottom:39.040000pt;}
.yd5{bottom:40.960000pt;}
.y101{bottom:56.960000pt;}
.y100{bottom:69.306667pt;}
.y5{bottom:78.560000pt;}
.yff{bottom:81.466667pt;}
.y78{bottom:99.680000pt;}
.y1a2{bottom:100.800000pt;}
.y144{bottom:101.120000pt;}
.y3c{bottom:101.600000pt;}
.ycb{bottom:108.160000pt;}
.yaf{bottom:109.600000pt;}
.yfd{bottom:109.760000pt;}
.y11b{bottom:110.080000pt;}
.y171{bottom:111.840000pt;}
.y1a1{bottom:113.120000pt;}
.y77{bottom:115.040000pt;}
.y3b{bottom:116.960000pt;}
.y143{bottom:122.400000pt;}
.yae{bottom:124.960000pt;}
.yfc{bottom:125.120000pt;}
.y1a0{bottom:125.440000pt;}
.yb5{bottom:126.720000pt;}
.y170{bottom:127.040000pt;}
.yc8{bottom:129.280000pt;}
.y76{bottom:130.400000pt;}
.y119{bottom:131.520000pt;}
.y3a{bottom:132.320000pt;}
.y19f{bottom:137.600000pt;}
.yad{bottom:140.320000pt;}
.yfb{bottom:140.480000pt;}
.y16f{bottom:142.400000pt;}
.y142{bottom:143.680000pt;}
.y75{bottom:145.600000pt;}
.y39{bottom:147.680000pt;}
.y19e{bottom:149.920000pt;}
.yd1{bottom:150.560000pt;}
.y118{bottom:152.640000pt;}
.yac{bottom:155.680000pt;}
.y16e{bottom:157.760000pt;}
.y74{bottom:160.960000pt;}
.y19d{bottom:162.080000pt;}
.y38{bottom:163.040000pt;}
.y141{bottom:164.960000pt;}
.yab{bottom:171.040000pt;}
.yd0{bottom:171.840000pt;}
.y16d{bottom:173.120000pt;}
.y117{bottom:173.920000pt;}
.y19c{bottom:174.400000pt;}
.y73{bottom:176.320000pt;}
.y37{bottom:178.240000pt;}
.yaa{bottom:186.240000pt;}
.yfa{bottom:186.426667pt;}
.y19b{bottom:186.746667pt;}
.y16c{bottom:188.506667pt;}
.y72{bottom:191.706667pt;}
.ycf{bottom:193.146667pt;}
.y36{bottom:193.626667pt;}
.y116{bottom:195.226667pt;}
.y19a{bottom:198.906667pt;}
.ya9{bottom:201.626667pt;}
.yf9{bottom:201.786667pt;}
.yc9{bottom:202.426667pt;}
.y16b{bottom:203.866667pt;}
.y71{bottom:207.066667pt;}
.y13e{bottom:207.546667pt;}
.y35{bottom:208.986667pt;}
.y199{bottom:211.226667pt;}
.ycc{bottom:214.426667pt;}
.y115{bottom:216.506667pt;}
.ya8{bottom:216.986667pt;}
.yf8{bottom:217.146667pt;}
.y16a{bottom:219.066667pt;}
.y70{bottom:222.426667pt;}
.y198{bottom:223.546667pt;}
.y34{bottom:224.346667pt;}
.y13d{bottom:228.826667pt;}
.ya7{bottom:232.346667pt;}
.yf7{bottom:232.506667pt;}
.y169{bottom:234.426667pt;}
.y197{bottom:235.706667pt;}
.y6f{bottom:237.626667pt;}
.y114{bottom:237.786667pt;}
.y33{bottom:239.706667pt;}
.ya6{bottom:247.706667pt;}
.y196{bottom:248.026667pt;}
.y168{bottom:249.786667pt;}
.ycd{bottom:250.106667pt;}
.y6e{bottom:252.986667pt;}
.y32{bottom:254.906667pt;}
.y113{bottom:259.226667pt;}
.y195{bottom:260.346667pt;}
.ya5{bottom:262.906667pt;}
.yf6{bottom:263.066667pt;}
.y167{bottom:265.146667pt;}
.y6d{bottom:268.346667pt;}
.y31{bottom:270.266667pt;}
.yc6{bottom:271.386667pt;}
.y194{bottom:272.506667pt;}
.ya4{bottom:278.266667pt;}
.yf5{bottom:278.426667pt;}
.y112{bottom:280.506667pt;}
.y6c{bottom:283.706667pt;}
.y193{bottom:284.826667pt;}
.y30{bottom:285.626667pt;}
.y13c{bottom:292.826667pt;}
.ya3{bottom:293.626667pt;}
.yf4{bottom:293.786667pt;}
.y166{bottom:295.866667pt;}
.y192{bottom:297.146667pt;}
.y6b{bottom:299.066667pt;}
.y2f{bottom:300.986667pt;}
.y111{bottom:301.786667pt;}
.ya2{bottom:308.986667pt;}
.yf3{bottom:309.146667pt;}
.y191{bottom:309.306667pt;}
.y165{bottom:311.066667pt;}
.y13b{bottom:314.106667pt;}
.y6a{bottom:314.426667pt;}
.y2e{bottom:316.346667pt;}
.yc7{bottom:321.466667pt;}
.y190{bottom:321.626667pt;}
.y110{bottom:323.066667pt;}
.ya1{bottom:324.346667pt;}
.yf2{bottom:324.506667pt;}
.y164{bottom:326.426667pt;}
.y69{bottom:329.626667pt;}
.y2d{bottom:331.706667pt;}
.y18f{bottom:333.946667pt;}
.y13a{bottom:335.386667pt;}
.ya0{bottom:339.706667pt;}
.y163{bottom:341.786667pt;}
.yc5{bottom:342.746667pt;}
.y10f{bottom:344.186667pt;}
.y68{bottom:344.986667pt;}
.y18e{bottom:346.106667pt;}
.y2c{bottom:346.906667pt;}
.y9f{bottom:354.906667pt;}
.yf1{bottom:355.066667pt;}
.y139{bottom:356.666667pt;}
.y162{bottom:357.146667pt;}
.y18d{bottom:358.426667pt;}
.y67{bottom:360.346667pt;}
.y2b{bottom:362.266667pt;}
.yc4{bottom:364.026667pt;}
.y10e{bottom:365.466667pt;}
.y9e{bottom:370.266667pt;}
.yf0{bottom:370.426667pt;}
.y18c{bottom:370.746667pt;}
.y161{bottom:372.506667pt;}
.y66{bottom:375.706667pt;}
.y2a{bottom:377.626667pt;}
.y138{bottom:377.946667pt;}
.y18b{bottom:382.906667pt;}
.yc3{bottom:385.146667pt;}
.y9d{bottom:385.626667pt;}
.yef{bottom:385.786667pt;}
.y10c{bottom:386.906667pt;}
.y65{bottom:391.066667pt;}
.y29{bottom:392.986667pt;}
.y160{bottom:394.746667pt;}
.y18a{bottom:395.066667pt;}
.y137{bottom:399.266667pt;}
.y9c{bottom:401.026667pt;}
.yee{bottom:401.186667pt;}
.y64{bottom:406.466667pt;}
.y189{bottom:407.106667pt;}
.y10b{bottom:408.226667pt;}
.y28{bottom:408.386667pt;}
.yc2{bottom:409.346667pt;}
.y15f{bottom:410.146667pt;}
.y9b{bottom:416.386667pt;}
.yed{bottom:416.546667pt;}
.y188{bottom:419.106667pt;}
.y136{bottom:420.706667pt;}
.y63{bottom:421.666667pt;}
.yc0{bottom:422.786667pt;}
.y27{bottom:423.746667pt;}
.y15e{bottom:427.906667pt;}
.y109{bottom:429.506667pt;}
.y187{bottom:431.266667pt;}
.y9a{bottom:431.746667pt;}
.y62{bottom:437.026667pt;}
.y26{bottom:438.946667pt;}
.y135{bottom:441.826667pt;}
.y15d{bottom:443.266667pt;}
.y186{bottom:443.586667pt;}
.ybf{bottom:444.226667pt;}
.y99{bottom:446.946667pt;}
.yec{bottom:447.106667pt;}
.y108{bottom:450.786667pt;}
.y61{bottom:452.386667pt;}
.y25{bottom:454.306667pt;}
.y185{bottom:455.906667pt;}
.y98{bottom:462.306667pt;}
.yeb{bottom:462.466667pt;}
.y134{bottom:462.946667pt;}
.ybe{bottom:465.346667pt;}
.y60{bottom:467.746667pt;}
.y184{bottom:468.066667pt;}
.y24{bottom:469.666667pt;}
.y107{bottom:472.066667pt;}
.y15c{bottom:477.186667pt;}
.y97{bottom:477.666667pt;}
.yea{bottom:477.826667pt;}
.y183{bottom:480.386667pt;}
.y5f{bottom:483.106667pt;}
.y133{bottom:484.386667pt;}
.y23{bottom:485.026667pt;}
.ybd{bottom:486.626667pt;}
.y15b{bottom:492.546667pt;}
.y182{bottom:492.706667pt;}
.y96{bottom:493.026667pt;}
.ye9{bottom:493.186667pt;}
.y105{bottom:493.346667pt;}
.y5e{bottom:498.306667pt;}
.y22{bottom:500.386667pt;}
.y181{bottom:504.866667pt;}
.y132{bottom:505.666667pt;}
.ybb{bottom:507.906667pt;}
.y95{bottom:508.386667pt;}
.y5d{bottom:513.666667pt;}
.y102{bottom:514.626667pt;}
.y21{bottom:515.746667pt;}
.y180{bottom:517.186667pt;}
.y94{bottom:523.746667pt;}
.y15a{bottom:525.666667pt;}
.y131{bottom:526.946667pt;}
.y5c{bottom:529.026667pt;}
.y17f{bottom:529.506667pt;}
.y20{bottom:530.946667pt;}
.yfe{bottom:535.906667pt;}
.y93{bottom:538.946667pt;}
.ye8{bottom:539.106667pt;}
.y17e{bottom:541.666667pt;}
.y5b{bottom:544.386667pt;}
.y1f{bottom:546.306667pt;}
.y130{bottom:548.386667pt;}
.yba{bottom:550.146667pt;}
.y92{bottom:554.306667pt;}
.ye7{bottom:554.466667pt;}
.y17d{bottom:555.266667pt;}
.y159{bottom:556.706667pt;}
.y5a{bottom:559.746667pt;}
.y1e{bottom:561.666667pt;}
.y91{bottom:569.666667pt;}
.ye6{bottom:569.826667pt;}
.yb9{bottom:571.426667pt;}
.y17c{bottom:572.066667pt;}
.y59{bottom:575.106667pt;}
.y1d{bottom:577.026667pt;}
.y158{bottom:579.106667pt;}
.y17b{bottom:584.386667pt;}
.y90{bottom:585.026667pt;}
.ye5{bottom:585.186667pt;}
.y58{bottom:590.306667pt;}
.y12f{bottom:590.946667pt;}
.y1c{bottom:592.386667pt;}
.yb8{bottom:592.706667pt;}
.y157{bottom:594.306667pt;}
.y17a{bottom:596.546667pt;}
.y8f{bottom:600.386667pt;}
.y57{bottom:605.693333pt;}
.y1b{bottom:607.613333pt;}
.y179{bottom:608.893333pt;}
.y156{bottom:609.693333pt;}
.y12e{bottom:612.253333pt;}
.yb6{bottom:614.013333pt;}
.y8e{bottom:615.613333pt;}
.ye4{bottom:615.773333pt;}
.y56{bottom:621.053333pt;}
.y178{bottom:621.213333pt;}
.y1a{bottom:622.973333pt;}
.y155{bottom:625.053333pt;}
.y8d{bottom:630.973333pt;}
.ye3{bottom:631.133333pt;}
.y177{bottom:633.373333pt;}
.y12d{bottom:633.533333pt;}
.yb4{bottom:635.293333pt;}
.y55{bottom:636.413333pt;}
.y19{bottom:638.333333pt;}
.y154{bottom:640.413333pt;}
.y176{bottom:645.693333pt;}
.y8c{bottom:646.333333pt;}
.ye2{bottom:646.493333pt;}
.y1bf{bottom:646.813333pt;}
.y54{bottom:651.773333pt;}
.y18{bottom:653.693333pt;}
.y12c{bottom:654.813333pt;}
.y153{bottom:655.773333pt;}
.y175{bottom:658.013333pt;}
.y1be{bottom:658.973333pt;}
.y8b{bottom:661.693333pt;}
.ye1{bottom:661.853333pt;}
.y53{bottom:667.133333pt;}
.y17{bottom:669.053333pt;}
.y174{bottom:670.173333pt;}
.y152{bottom:671.133333pt;}
.y1bd{bottom:671.293333pt;}
.y12b{bottom:676.253333pt;}
.y8a{bottom:677.053333pt;}
.ye0{bottom:677.213333pt;}
.y52{bottom:682.333333pt;}
.y173{bottom:682.493333pt;}
.y1bc{bottom:683.453333pt;}
.y16{bottom:684.413333pt;}
.y89{bottom:692.413333pt;}
.y151{bottom:693.533333pt;}
.y172{bottom:694.813333pt;}
.y1bb{bottom:695.773333pt;}
.y12a{bottom:697.373333pt;}
.y51{bottom:697.693333pt;}
.y15{bottom:699.613333pt;}
.y88{bottom:707.613333pt;}
.ydf{bottom:707.773333pt;}
.y1ba{bottom:708.093333pt;}
.y150{bottom:708.733333pt;}
.y50{bottom:713.053333pt;}
.y14{bottom:714.973333pt;}
.y129{bottom:718.653333pt;}
.y1b9{bottom:720.253333pt;}
.y87{bottom:722.973333pt;}
.yde{bottom:723.133333pt;}
.y14f{bottom:724.093333pt;}
.y4f{bottom:728.413333pt;}
.y13{bottom:730.333333pt;}
.y1b8{bottom:732.573333pt;}
.y86{bottom:738.333333pt;}
.ydd{bottom:738.493333pt;}
.y14e{bottom:739.453333pt;}
.y128{bottom:739.933333pt;}
.y4e{bottom:743.773333pt;}
.y1b7{bottom:744.893333pt;}
.y12{bottom:745.693333pt;}
.y85{bottom:753.693333pt;}
.ydc{bottom:753.853333pt;}
.y14d{bottom:754.813333pt;}
.y1b6{bottom:757.053333pt;}
.y4d{bottom:758.973333pt;}
.y11{bottom:761.053333pt;}
.y127{bottom:764.093333pt;}
.y84{bottom:769.053333pt;}
.y1b5{bottom:769.373333pt;}
.y14c{bottom:770.173333pt;}
.y4c{bottom:774.333333pt;}
.yb3{bottom:775.933333pt;}
.y10{bottom:776.413333pt;}
.y126{bottom:777.373333pt;}
.y1b4{bottom:781.693333pt;}
.y83{bottom:784.413333pt;}
.y14b{bottom:785.533333pt;}
.y4b{bottom:789.693333pt;}
.yb2{bottom:791.293333pt;}
.yf{bottom:791.613333pt;}
.y1b3{bottom:793.853333pt;}
.y125{bottom:798.653333pt;}
.y82{bottom:799.613333pt;}
.ydb{bottom:799.773333pt;}
.y4a{bottom:805.053333pt;}
.y1b2{bottom:806.173333pt;}
.yb1{bottom:806.653333pt;}
.ye{bottom:806.973333pt;}
.y81{bottom:815.013333pt;}
.yda{bottom:815.173333pt;}
.y1b1{bottom:818.533333pt;}
.y124{bottom:819.813333pt;}
.y49{bottom:820.453333pt;}
.yb0{bottom:822.053333pt;}
.yd{bottom:822.373333pt;}
.y80{bottom:830.373333pt;}
.yd9{bottom:830.533333pt;}
.y48{bottom:835.813333pt;}
.yc{bottom:839.653333pt;}
.y14a{bottom:841.093333pt;}
.y123{bottom:841.253333pt;}
.y1b0{bottom:842.053333pt;}
.y7f{bottom:845.733333pt;}
.yd8{bottom:845.893333pt;}
.y47{bottom:853.573333pt;}
.y1af{bottom:854.213333pt;}
.yb{bottom:855.013333pt;}
.y7e{bottom:861.093333pt;}
.y149{bottom:862.373333pt;}
.y122{bottom:862.533333pt;}
.y1ae{bottom:866.533333pt;}
.y46{bottom:868.933333pt;}
.ya{bottom:871.173333pt;}
.yd7{bottom:874.693333pt;}
.y7d{bottom:876.293333pt;}
.y1ad{bottom:878.853333pt;}
.y120{bottom:883.813333pt;}
.y45{bottom:886.693333pt;}
.y9{bottom:889.253333pt;}
.y1ac{bottom:891.013333pt;}
.y7c{bottom:891.653333pt;}
.yd6{bottom:895.813333pt;}
.y44{bottom:902.053333pt;}
.y1ab{bottom:903.333333pt;}
.y148{bottom:905.093333pt;}
.y11f{bottom:905.253333pt;}
.y7b{bottom:907.013333pt;}
.y8{bottom:907.333333pt;}
.y1aa{bottom:915.653333pt;}
.yd4{bottom:917.093333pt;}
.y43{bottom:919.813333pt;}
.y7a{bottom:922.373333pt;}
.y147{bottom:926.373333pt;}
.y11e{bottom:926.533333pt;}
.y7{bottom:926.853333pt;}
.y1a9{bottom:927.813333pt;}
.y42{bottom:935.333333pt;}
.y79{bottom:937.733333pt;}
.y1a8{bottom:940.133333pt;}
.y11d{bottom:947.493333pt;}
.y146{bottom:947.813333pt;}
.y1a7{bottom:952.453333pt;}
.y41{bottom:953.093333pt;}
.y6{bottom:954.533333pt;}
.y1a6{bottom:964.613333pt;}
.y40{bottom:968.293333pt;}
.y11c{bottom:968.933333pt;}
.yd3{bottom:969.093333pt;}
.y1a5{bottom:976.933333pt;}
.y4{bottom:980.133333pt;}
.y3f{bottom:983.653333pt;}
.y1a4{bottom:989.253333pt;}
.y145{bottom:990.053333pt;}
.yd2{bottom:990.213333pt;}
.y3{bottom:998.853333pt;}
.y3e{bottom:999.013333pt;}
.y1a3{bottom:1001.413333pt;}
.y2{bottom:1015.813333pt;}
.y3d{bottom:1032.640000pt;}
.y1{bottom:1032.800000pt;}
.h13{height:20.000000pt;}
.h12{height:20.160000pt;}
.h15{height:20.192000pt;}
.h10{height:20.320000pt;}
.h11{height:20.352000pt;}
.h14{height:20.480000pt;}
.h24{height:20.512000pt;}
.h21{height:20.640000pt;}
.h22{height:20.672000pt;}
.h23{height:20.800000pt;}
.h1c{height:34.720000pt;}
.hf{height:35.342500pt;}
.he{height:35.761250pt;}
.h6{height:37.479688pt;}
.ha{height:38.672812pt;}
.h9{height:40.021563pt;}
.h17{height:42.649687pt;}
.h8{height:43.782500pt;}
.h4{height:44.301250pt;}
.hc{height:44.598125pt;}
.h1f{height:47.382500pt;}
.h2{height:48.530000pt;}
.h3{height:49.105000pt;}
.h19{height:49.120000pt;}
.h1e{height:51.040000pt;}
.h7{height:52.832812pt;}
.hb{height:53.375000pt;}
.h5{height:67.734375pt;}
.h1d{height:72.160000pt;}
.h20{height:91.552000pt;}
.h16{height:91.680000pt;}
.h1b{height:106.080000pt;}
.hd{height:136.800000pt;}
.h1a{height:212.346667pt;}
.h18{height:212.506667pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.wb{width:36.320000pt;}
.w8{width:36.512000pt;}
.w6{width:41.280000pt;}
.w9{width:43.040000pt;}
.wc{width:43.072000pt;}
.w7{width:43.360000pt;}
.wa{width:43.520000pt;}
.w4{width:48.320000pt;}
.wd{width:49.920000pt;}
.w3{width:51.840000pt;}
.we{width:52.800000pt;}
.w5{width:56.512000pt;}
.wf{width:179.546667pt;}
.w10{width:180.506667pt;}
.w11{width:181.466667pt;}
.w2{width:793.919988pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x21{left:3.840000pt;}
.x20{left:6.240000pt;}
.x16{left:10.240000pt;}
.x18{left:22.760000pt;}
.x27{left:35.360000pt;}
.x28{left:48.000000pt;}
.x29{left:60.640000pt;}
.x31{left:69.760000pt;}
.x2c{left:72.320000pt;}
.x2a{left:73.920000pt;}
.x32{left:76.160000pt;}
.x25{left:78.874667pt;}
.x30{left:80.680000pt;}
.x2f{left:81.800000pt;}
.x2d{left:83.400000pt;}
.x2e{left:87.240000pt;}
.x1{left:96.031988pt;}
.x2{left:100.671988pt;}
.xf{left:114.111988pt;}
.x14{left:118.112000pt;}
.x24{left:125.632000pt;}
.x3{left:132.831988pt;}
.x9{left:144.026655pt;}
.x6{left:150.906655pt;}
.xa{left:152.666655pt;}
.x15{left:170.906667pt;}
.x35{left:184.026655pt;}
.x33{left:188.506655pt;}
.x23{left:189.466655pt;}
.x34{left:192.986655pt;}
.x7{left:211.866655pt;}
.x13{left:217.786655pt;}
.x17{left:220.346667pt;}
.x22{left:226.746655pt;}
.x11{left:253.026655pt;}
.xb{left:264.066655pt;}
.x10{left:270.306655pt;}
.x12{left:277.986655pt;}
.xc{left:291.426655pt;}
.xd{left:300.546655pt;}
.x26{left:305.826667pt;}
.xe{left:316.866655pt;}
.x8{left:320.866655pt;}
.x5{left:327.586655pt;}
.x36{left:336.386655pt;}
.x37{left:353.346655pt;}
.x19{left:364.546667pt;}
.x4{left:396.093322pt;}
.x1a{left:402.173333pt;}
.x1b{left:446.333333pt;}
.x2b{left:486.973333pt;}
.x1c{left:490.813333pt;}
.x1d{left:528.093333pt;}
.x1e{left:572.133333pt;}
.x1f{left:623.013333pt;}
}




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