
    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_ea4f0e6619a4a224a4c3ec5c.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.172363;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_f2a99f16ca3237c079377e26.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.000977;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_5f26c0b7bc0f336c97470b78.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_3127d7918e2be1685ac3b444.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_111b58c29842e4bc17c5c456.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.736816;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_847aa3820e4336c2f63ca842.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_4f4a23c2a9100584973c4d48.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_8587c3f98fcf8da2a5eb9546.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_7cbf4495640e317c08a0de53.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_803222b4c8dfe2416bf42526.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.966309;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_58985701b4c755d552b4c977.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.910156;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_fbf2979078a9db0f05067d9b.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.435059;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_d2b515acd834b99a192cb867.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.202148;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);}
.m4{transform:matrix(0.272725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272725,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,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);}
.v4{vertical-align:-70.560000px;}
.v14{vertical-align:-67.680000px;}
.v2{vertical-align:-61.920000px;}
.v1{vertical-align:-60.480000px;}
.v5{vertical-align:-59.040000px;}
.v8{vertical-align:-18.540000px;}
.v7{vertical-align:-15.240000px;}
.v6{vertical-align:-14.220000px;}
.vd{vertical-align:-7.740000px;}
.va{vertical-align:-4.740000px;}
.v9{vertical-align:-2.580000px;}
.v0{vertical-align:0.000000px;}
.v10{vertical-align:2.040000px;}
.vb{vertical-align:3.840000px;}
.v13{vertical-align:6.060000px;}
.ve{vertical-align:7.800000px;}
.vc{vertical-align:11.520000px;}
.v12{vertical-align:16.020000px;}
.v11{vertical-align:19.860000px;}
.v3{vertical-align:24.480000px;}
.vf{vertical-align:27.900000px;}
.ls18{letter-spacing:-1.908000px;}
.ls11{letter-spacing:-1.440000px;}
.lsa{letter-spacing:-0.720000px;}
.ls2c{letter-spacing:-0.654000px;}
.lsd{letter-spacing:-0.630000px;}
.ls21{letter-spacing:-0.456000px;}
.ls1f{letter-spacing:-0.382800px;}
.ls22{letter-spacing:-0.360000px;}
.ls17{letter-spacing:-0.288000px;}
.ls23{letter-spacing:-0.267600px;}
.ls20{letter-spacing:-0.238800px;}
.ls9{letter-spacing:-0.089400px;}
.lsc{letter-spacing:-0.072000px;}
.ls8{letter-spacing:0.000000px;}
.ls12{letter-spacing:0.020160px;}
.ls6{letter-spacing:0.072000px;}
.ls16{letter-spacing:0.288000px;}
.ls24{letter-spacing:0.387600px;}
.ls4{letter-spacing:0.432000px;}
.ls29{letter-spacing:0.458400px;}
.ls1{letter-spacing:0.493920px;}
.ls0{letter-spacing:0.720000px;}
.ls7{letter-spacing:0.869760px;}
.ls2{letter-spacing:1.080000px;}
.lsb{letter-spacing:1.512000px;}
.ls13{letter-spacing:2.160000px;}
.ls3{letter-spacing:16.560000px;}
.ls14{letter-spacing:30.384000px;}
.lse{letter-spacing:33.264000px;}
.ls15{letter-spacing:37.584000px;}
.ls10{letter-spacing:46.546560px;}
.lsf{letter-spacing:63.826560px;}
.ls1e{letter-spacing:70.973280px;}
.ls1d{letter-spacing:71.000736px;}
.ls1c{letter-spacing:71.033280px;}
.ls5{letter-spacing:89.746560px;}
.ls2b{letter-spacing:171.780000px;}
.ls28{letter-spacing:248.040480px;}
.ls27{letter-spacing:248.160480px;}
.ls26{letter-spacing:248.220480px;}
.ls19{letter-spacing:353.640000px;}
.ls25{letter-spacing:501.036000px;}
.ls1a{letter-spacing:940.416000px;}
.ls2a{letter-spacing:1079.736000px;}
.ls1b{letter-spacing:1108.896000px;}
.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;}
}
.wsb{word-spacing:-60.480000px;}
.wsd{word-spacing:-18.288000px;}
.wsa{word-spacing:-18.000000px;}
.wse{word-spacing:-17.712000px;}
.wsc{word-spacing:-15.140160px;}
.ws0{word-spacing:-15.120000px;}
.ws4{word-spacing:-13.680000px;}
.wsf{word-spacing:-13.212000px;}
.ws8{word-spacing:-13.050000px;}
.ws11{word-spacing:-12.127920px;}
.ws10{word-spacing:-11.983920px;}
.ws12{word-spacing:-11.943264px;}
.ws1{word-spacing:-11.160000px;}
.ws18{word-spacing:-11.127120px;}
.ws14{word-spacing:-10.772064px;}
.ws13{word-spacing:-10.739520px;}
.ws5{word-spacing:-10.512000px;}
.ws2{word-spacing:-10.440000px;}
.ws3{word-spacing:-9.720000px;}
.ws6{word-spacing:-9.072000px;}
.ws7{word-spacing:-8.928000px;}
.ws9{word-spacing:0.000000px;}
.ws17{word-spacing:59.548800px;}
.ws15{word-spacing:130.647840px;}
.ws1a{word-spacing:148.680000px;}
.ws16{word-spacing:155.982240px;}
.ws19{word-spacing:198.811920px;}
._10{margin-left:-3.482400px;}
._4{margin-left:-2.453760px;}
._3{margin-left:-1.391040px;}
._1{width:1.244160px;}
._0{width:2.332800px;}
._2{width:3.404640px;}
._b{width:4.478400px;}
._c{width:5.661600px;}
._9{width:6.900480px;}
._a{width:7.957440px;}
._11{width:8.967360px;}
._6{width:10.013760px;}
._5{width:11.168640px;}
._7{width:12.170880px;}
._f{width:13.633920px;}
._e{width:16.503360px;}
._d{width:17.683200px;}
._8{width:36.305280px;}
._17{width:92.608320px;}
._12{width:129.327360px;}
._13{width:190.995840px;}
._15{width:208.155840px;}
._14{width:209.220000px;}
._16{width:227.760000px;}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(0,112,192);}
.fc4{color:rgb(64,64,64);}
.fc3{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:5.760000px;}
.fsc{font-size:18.720000px;}
.fs3{font-size:24.480000px;}
.fsa{font-size:30.240000px;}
.fs9{font-size:36.000000px;}
.fs7{font-size:41.760000px;}
.fsf{font-size:47.520000px;}
.fse{font-size:47.664000px;}
.fs8{font-size:54.720000px;}
.fsd{font-size:54.864000px;}
.fs4{font-size:57.600000px;}
.fs2{font-size:60.480000px;}
.fs10{font-size:63.360000px;}
.fs11{font-size:63.504000px;}
.fs0{font-size:66.240000px;}
.fsb{font-size:72.000000px;}
.fs5{font-size:83.520000px;}
.fs1{font-size:155.520000px;}
.y133{bottom:-4.684500px;}
.y11d{bottom:-4.680000px;}
.y0{bottom:0.000000px;}
.y4b{bottom:2.875500px;}
.yc0{bottom:3.585000px;}
.y134{bottom:3.595500px;}
.y3b{bottom:3.600000px;}
.ydb{bottom:3.630000px;}
.yc2{bottom:3.945000px;}
.y130{bottom:3.946500px;}
.yc8{bottom:3.955500px;}
.y5{bottom:3.960000px;}
.yf0{bottom:3.991500px;}
.y59{bottom:5.370000px;}
.y2{bottom:7.920000px;}
.y4a{bottom:10.795500px;}
.y105{bottom:11.370000px;}
.y16f{bottom:11.910000px;}
.yea{bottom:12.225000px;}
.y129{bottom:12.240000px;}
.yd9{bottom:12.270000px;}
.y56{bottom:14.755500px;}
.y140{bottom:15.840000px;}
.y10f{bottom:15.915000px;}
.y13d{bottom:17.100000px;}
.yeb{bottom:20.865000px;}
.y41{bottom:20.880000px;}
.yda{bottom:20.910000px;}
.y4{bottom:21.240000px;}
.y170{bottom:30.630000px;}
.y100{bottom:31.650000px;}
.y55{bottom:32.035500px;}
.y40{bottom:38.160000px;}
.y102{bottom:40.170000px;}
.y49{bottom:40.351500px;}
.y13f{bottom:40.605000px;}
.y141{bottom:41.730000px;}
.y10d{bottom:43.050000px;}
.y171{bottom:43.380000px;}
.yff{bottom:43.635000px;}
.y3{bottom:44.280000px;}
.y13b{bottom:45.285000px;}
.y101{bottom:47.955000px;}
.yfe{bottom:48.495000px;}
.yfc{bottom:48.930000px;}
.y48{bottom:52.234500px;}
.y104{bottom:52.305000px;}
.y54{bottom:53.674500px;}
.y103{bottom:55.470000px;}
.y172{bottom:56.160000px;}
.y7{bottom:57.636000px;}
.y10a{bottom:57.750000px;}
.y138{bottom:60.870000px;}
.yfd{bottom:62.490000px;}
.yfb{bottom:63.210000px;}
.y47{bottom:65.194500px;}
.y142{bottom:67.605000px;}
.y173{bottom:68.910000px;}
.y53{bottom:72.754500px;}
.y10b{bottom:77.040000px;}
.y109{bottom:77.145000px;}
.y46{bottom:78.154500px;}
.y137{bottom:79.770000px;}
.yf6{bottom:80.100000px;}
.y174{bottom:81.690000px;}
.y139{bottom:85.830000px;}
.y52{bottom:88.594500px;}
.yf7{bottom:90.720000px;}
.y57{bottom:91.116000px;}
.y143{bottom:92.370000px;}
.y175{bottom:94.425000px;}
.y91{bottom:95.436000px;}
.y136{bottom:96.270000px;}
.y10c{bottom:96.330000px;}
.y108{bottom:96.450000px;}
.y51{bottom:97.594500px;}
.y132{bottom:97.960500px;}
.y45{bottom:99.754500px;}
.yf8{bottom:101.310000px;}
.yf5{bottom:101.730000px;}
.yc9{bottom:104.440500px;}
.y42{bottom:105.160500px;}
.y176{bottom:107.205000px;}
.yf2{bottom:108.756000px;}
.y13a{bottom:110.775000px;}
.yf9{bottom:111.930000px;}
.y90{bottom:112.716000px;}
.yf1{bottom:115.960500px;}
.y50{bottom:116.674500px;}
.y144{bottom:118.695000px;}
.y131{bottom:120.640500px;}
.y10e{bottom:121.830000px;}
.yfa{bottom:122.550000px;}
.yf4{bottom:125.745000px;}
.yc7{bottom:127.120500px;}
.y8f{bottom:129.996000px;}
.y4f{bottom:132.154500px;}
.y13c{bottom:137.370000px;}
.y177{bottom:138.525000px;}
.yef{bottom:139.000500px;}
.y12f{bottom:143.725500px;}
.y8e{bottom:147.312000px;}
.y4e{bottom:147.634500px;}
.y106{bottom:149.400000px;}
.yc6{bottom:150.210000px;}
.yee{bottom:161.730000px;}
.y44{bottom:162.394500px;}
.y4d{bottom:163.114500px;}
.y8d{bottom:164.595000px;}
.y12e{bottom:166.410000px;}
.y39{bottom:171.045000px;}
.y43{bottom:172.864500px;}
.yc5{bottom:172.890000px;}
.y4c{bottom:178.264500px;}
.y16d{bottom:180.435000px;}
.y8c{bottom:181.875000px;}
.yed{bottom:184.770000px;}
.y38{bottom:188.325000px;}
.y12d{bottom:189.450000px;}
.yc4{bottom:195.930000px;}
.y16c{bottom:198.075000px;}
.y8b{bottom:199.155000px;}
.y37{bottom:205.605000px;}
.yec{bottom:207.450000px;}
.y12c{bottom:212.490000px;}
.y16b{bottom:214.995000px;}
.y8a{bottom:216.435000px;}
.yc3{bottom:218.610000px;}
.y36{bottom:222.885000px;}
.ye9{bottom:230.490000px;}
.y89{bottom:233.715000px;}
.y16a{bottom:235.155000px;}
.y12b{bottom:235.170000px;}
.y35{bottom:240.195000px;}
.yc1{bottom:241.650000px;}
.y88{bottom:250.995000px;}
.y169{bottom:252.435000px;}
.y34{bottom:257.475000px;}
.y12a{bottom:258.210000px;}
.ybf{bottom:263.970000px;}
.y87{bottom:268.275000px;}
.ye8{bottom:269.355000px;}
.y168{bottom:272.595000px;}
.y33{bottom:274.755000px;}
.y128{bottom:280.905000px;}
.y86{bottom:285.225000px;}
.ybe{bottom:285.585000px;}
.y167{bottom:289.905000px;}
.y32{bottom:291.675000px;}
.ye7{bottom:292.065000px;}
.ybd{bottom:302.145000px;}
.y85{bottom:302.505000px;}
.yd{bottom:307.905000px;}
.y31{bottom:308.955000px;}
.ye6{bottom:308.985000px;}
.y166{bottom:309.705000px;}
.y127{bottom:320.145000px;}
.y84{bottom:320.865000px;}
.y30{bottom:325.875000px;}
.y165{bottom:326.985000px;}
.ybc{bottom:328.785000px;}
.ye5{bottom:335.265000px;}
.y126{bottom:336.705000px;}
.y83{bottom:338.145000px;}
.ybb{bottom:346.065000px;}
.y164{bottom:347.145000px;}
.y2f{bottom:352.155000px;}
.ye4{bottom:352.545000px;}
.y82{bottom:358.305000px;}
.y3f{bottom:362.985000px;}
.yba{bottom:363.345000px;}
.y163{bottom:364.425000px;}
.ye3{bottom:374.865000px;}
.y1b{bottom:375.945000px;}
.y2e{bottom:376.665000px;}
.y107{bottom:376.920000px;}
.y81{bottom:378.105000px;}
.yb9{bottom:378.825000px;}
.y125{bottom:380.265000px;}
.y162{bottom:384.585000px;}
.y3e{bottom:385.665000px;}
.yb8{bottom:386.745000px;}
.y2d{bottom:392.145000px;}
.y80{bottom:398.265000px;}
.y1a{bottom:400.065000px;}
.y161{bottom:401.505000px;}
.yb7{bottom:406.590000px;}
.y2c{bottom:407.625000px;}
.y3d{bottom:408.750000px;}
.y7f{bottom:418.470000px;}
.y160{bottom:421.350000px;}
.y2b{bottom:423.105000px;}
.y124{bottom:423.870000px;}
.y19{bottom:424.185000px;}
.yb6{bottom:426.750000px;}
.y3c{bottom:431.430000px;}
.y7e{bottom:433.950000px;}
.y2a{bottom:438.585000px;}
.y15f{bottom:438.990000px;}
.y123{bottom:441.150000px;}
.y7d{bottom:441.870000px;}
.yb5{bottom:444.030000px;}
.y18{bottom:448.305000px;}
.y29{bottom:454.065000px;}
.y3a{bottom:454.470000px;}
.y15e{bottom:456.270000px;}
.y122{bottom:458.430000px;}
.y7c{bottom:459.150000px;}
.yb4{bottom:464.190000px;}
.y28{bottom:469.545000px;}
.y17{bottom:472.425000px;}
.y15d{bottom:473.550000px;}
.y121{bottom:475.710000px;}
.y7b{bottom:476.430000px;}
.yb3{bottom:484.350000px;}
.y27{bottom:485.385000px;}
.y120{bottom:489.030000px;}
.y15c{bottom:490.830000px;}
.y13e{bottom:492.840000px;}
.y7a{bottom:493.710000px;}
.y16{bottom:496.590000px;}
.y26{bottom:500.910000px;}
.yb2{bottom:501.270000px;}
.y15b{bottom:508.110000px;}
.y79{bottom:510.990000px;}
.y25{bottom:516.390000px;}
.yb1{bottom:518.550000px;}
.y15{bottom:521.070000px;}
.y78{bottom:526.470000px;}
.ye2{bottom:526.830000px;}
.y15a{bottom:528.270000px;}
.y24{bottom:531.870000px;}
.y77{bottom:534.390000px;}
.yb0{bottom:535.830000px;}
.y14{bottom:545.190000px;}
.y159{bottom:545.220000px;}
.ye1{bottom:549.180000px;}
.yaf{bottom:553.140000px;}
.y76{bottom:554.580000px;}
.ye0{bottom:556.020000px;}
.y158{bottom:562.500000px;}
.y23{bottom:562.830000px;}
.y13{bottom:569.310000px;}
.yae{bottom:570.420000px;}
.y75{bottom:574.380000px;}
.y22{bottom:578.310000px;}
.ydf{bottom:578.700000px;}
.y157{bottom:579.780000px;}
.yad{bottom:587.700000px;}
.y12{bottom:593.430000px;}
.y21{bottom:593.790000px;}
.y74{bottom:594.540000px;}
.y156{bottom:597.060000px;}
.yde{bottom:601.020000px;}
.yac{bottom:604.980000px;}
.y20{bottom:609.630000px;}
.y155{bottom:614.340000px;}
.y73{bottom:614.700000px;}
.y11{bottom:617.550000px;}
.yab{bottom:622.260000px;}
.ydd{bottom:623.700000px;}
.y1f{bottom:625.140000px;}
.y72{bottom:634.500000px;}
.y11f{bottom:638.820000px;}
.yaa{bottom:639.540000px;}
.y1e{bottom:640.620000px;}
.y10{bottom:641.700000px;}
.ydc{bottom:646.020000px;}
.y11e{bottom:646.380000px;}
.y154{bottom:651.780000px;}
.y71{bottom:654.660000px;}
.y1d{bottom:656.100000px;}
.ya9{bottom:656.820000px;}
.y11c{bottom:663.300000px;}
.yf{bottom:665.820000px;}
.yd8{bottom:668.700000px;}
.y70{bottom:674.850000px;}
.ya8{bottom:675.210000px;}
.y11b{bottom:686.385000px;}
.y1c{bottom:686.700000px;}
.y153{bottom:688.890000px;}
.ye{bottom:689.940000px;}
.ya7{bottom:692.130000px;}
.y6f{bottom:695.010000px;}
.y152{bottom:706.170000px;}
.yd7{bottom:707.610000px;}
.y11a{bottom:709.065000px;}
.ya6{bottom:709.410000px;}
.y6e{bottom:714.810000px;}
.yd6{bottom:715.170000px;}
.y151{bottom:723.450000px;}
.ya5{bottom:726.690000px;}
.y119{bottom:732.105000px;}
.y6d{bottom:734.970000px;}
.y150{bottom:743.610000px;}
.ya4{bottom:743.970000px;}
.yd5{bottom:750.090000px;}
.y6c{bottom:752.250000px;}
.y118{bottom:754.785000px;}
.y14f{bottom:760.890000px;}
.ya3{bottom:761.250000px;}
.yd4{bottom:767.370000px;}
.y6b{bottom:770.610000px;}
.y117{bottom:777.825000px;}
.y14e{bottom:778.170000px;}
.ya2{bottom:778.530000px;}
.yd3{bottom:784.650000px;}
.y6a{bottom:788.970000px;}
.y14d{bottom:795.090000px;}
.ya1{bottom:795.810000px;}
.y116{bottom:800.505000px;}
.yd2{bottom:801.975000px;}
.y69{bottom:807.375000px;}
.ya0{bottom:813.135000px;}
.y14c{bottom:815.295000px;}
.yd1{bottom:819.255000px;}
.y68{bottom:825.735000px;}
.y9f{bottom:830.415000px;}
.yd0{bottom:832.575000px;}
.yf3{bottom:834.480000px;}
.y115{bottom:839.775000px;}
.y14b{bottom:841.575000px;}
.y67{bottom:844.095000px;}
.y9e{bottom:847.695000px;}
.y14a{bottom:858.855000px;}
.y66{bottom:862.095000px;}
.y9d{bottom:864.975000px;}
.y149{bottom:876.135000px;}
.y65{bottom:882.255000px;}
.y114{bottom:891.255000px;}
.y148{bottom:893.415000px;}
.y9c{bottom:899.175000px;}
.y64{bottom:902.415000px;}
.y113{bottom:908.535000px;}
.y147{bottom:915.735000px;}
.y9b{bottom:916.455000px;}
.y16e{bottom:917.640000px;}
.y63{bottom:922.215000px;}
.y112{bottom:925.815000px;}
.y9a{bottom:933.765000px;}
.y62{bottom:942.405000px;}
.y111{bottom:948.165000px;}
.y135{bottom:950.040000px;}
.y99{bottom:951.045000px;}
.y61{bottom:962.565000px;}
.y98{bottom:968.325000px;}
.y60{bottom:982.365000px;}
.y97{bottom:985.605000px;}
.y5f{bottom:1002.525000px;}
.y96{bottom:1002.885000px;}
.yc{bottom:1010.085000px;}
.ycf{bottom:1013.685000px;}
.yb{bottom:1015.485000px;}
.y95{bottom:1020.165000px;}
.y5e{bottom:1022.685000px;}
.yce{bottom:1031.325000px;}
.ya{bottom:1032.405000px;}
.y94{bottom:1037.445000px;}
.y5d{bottom:1042.485000px;}
.ycd{bottom:1046.085000px;}
.ycc{bottom:1053.285000px;}
.y93{bottom:1054.725000px;}
.y9{bottom:1059.765000px;}
.y5c{bottom:1062.645000px;}
.y92{bottom:1072.050000px;}
.ycb{bottom:1076.370000px;}
.y146{bottom:1081.410000px;}
.y8{bottom:1088.250000px;}
.y5b{bottom:1088.970000px;}
.y58{bottom:1091.520000px;}
.yca{bottom:1099.050000px;}
.y145{bottom:1105.890000px;}
.y5a{bottom:1106.250000px;}
.y110{bottom:1115.610000px;}
.y6{bottom:1121.730000px;}
.y1{bottom:1127.130000px;}
.hb{height:4.165313px;}
.h16{height:5.650313px;}
.h21{height:16.905000px;}
.h31{height:16.920000px;}
.h1e{height:17.265000px;}
.h32{height:17.266500px;}
.h20{height:17.275500px;}
.h12{height:17.280000px;}
.h2f{height:17.301000px;}
.h22{height:17.310000px;}
.h1f{height:17.311500px;}
.h30{height:17.316000px;}
.h1b{height:18.372656px;}
.h1d{height:18.866250px;}
.h7{height:24.348516px;}
.h18{height:27.720000px;}
.h14{height:29.678906px;}
.h24{height:34.545000px;}
.h23{height:34.596000px;}
.he{height:40.985156px;}
.hd{height:42.086250px;}
.h2d{height:46.638281px;}
.h28{height:47.264766px;}
.h27{height:47.407992px;}
.hf{height:53.677969px;}
.h26{height:54.426094px;}
.h15{height:55.147500px;}
.h38{height:56.029219px;}
.h8{height:58.050000px;}
.h2c{height:58.158281px;}
.h17{height:59.328281px;}
.h5{height:59.357813px;}
.h10{height:59.794453px;}
.h6{height:60.155156px;}
.ha{height:60.952500px;}
.h11{height:62.163910px;}
.h19{height:63.455625px;}
.h39{height:64.000125px;}
.h29{height:64.875938px;}
.h3{height:65.884219px;}
.h2b{height:65.898281px;}
.h2e{height:66.757500px;}
.h36{height:67.824844px;}
.h35{height:69.344766px;}
.h3a{height:70.664062px;}
.h1a{height:74.004654px;}
.h1c{height:74.953125px;}
.h2{height:81.390000px;}
.h9{height:84.172500px;}
.h34{height:99.104766px;}
.h4{height:116.640000px;}
.h37{height:144.720000px;}
.h2a{height:148.680000px;}
.h3b{height:162.360000px;}
.h33{height:164.520000px;}
.h25{height:175.680000px;}
.h13{height:201.645000px;}
.hc{height:699.285000px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.w10{width:37.425000px;}
.w17{width:37.470000px;}
.w14{width:37.785000px;}
.w9{width:40.680000px;}
.w1d{width:41.790000px;}
.w7{width:47.160000px;}
.w20{width:49.710000px;}
.w8{width:53.316000px;}
.w11{width:54.750000px;}
.w15{width:55.110000px;}
.w13{width:57.945000px;}
.w16{width:58.305000px;}
.we{width:73.110000px;}
.wb{width:73.470000px;}
.w18{width:75.630000px;}
.w12{width:82.476000px;}
.w1a{width:82.821000px;}
.w1f{width:96.141000px;}
.w22{width:99.381000px;}
.w2{width:103.702500px;}
.w19{width:107.316000px;}
.w6{width:124.272000px;}
.wf{width:126.750000px;}
.wc{width:127.110000px;}
.w4{width:132.502500px;}
.w21{width:135.792000px;}
.w1e{width:136.110000px;}
.wd{width:158.475000px;}
.wa{width:163.080000px;}
.w24{width:247.320000px;}
.w1c{width:369.720000px;}
.w25{width:432.360000px;}
.w23{width:440.640000px;}
.w1b{width:479.880000px;}
.w5{width:596.745000px;}
.w3{width:622.665000px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1a{left:3.240000px;}
.x3c{left:5.040000px;}
.x27{left:6.876000px;}
.x16{left:8.295000px;}
.x4d{left:10.110000px;}
.x3f{left:11.865000px;}
.x4{left:13.305000px;}
.x64{left:15.525000px;}
.x14{left:16.546500px;}
.x1d{left:18.390000px;}
.x5{left:19.425000px;}
.x40{left:21.225000px;}
.x6b{left:22.350000px;}
.x43{left:23.400000px;}
.x1e{left:24.870000px;}
.x67{left:28.080000px;}
.x13{left:29.146500px;}
.x49{left:30.240000px;}
.x41{left:31.680000px;}
.x2f{left:32.760000px;}
.x4a{left:33.825000px;}
.x34{left:35.280000px;}
.x2d{left:36.360000px;}
.x42{left:37.440000px;}
.x68{left:38.505000px;}
.x35{left:40.680000px;}
.x5f{left:41.760000px;}
.x6{left:43.575000px;}
.x72{left:44.670000px;}
.x18{left:45.750000px;}
.x22{left:47.542500px;}
.x36{left:49.680000px;}
.xe{left:50.782500px;}
.x33{left:52.560000px;}
.x30{left:53.640000px;}
.xd{left:55.102500px;}
.x24{left:57.262500px;}
.x5a{left:59.070000px;}
.x69{left:61.050000px;}
.x31{left:64.110000px;}
.x23{left:66.265500px;}
.x32{left:68.070000px;}
.x73{left:69.480000px;}
.x11{left:73.105500px;}
.x4e{left:74.910000px;}
.x10{left:76.705500px;}
.x1{left:78.529500px;}
.x12{left:80.305500px;}
.x6a{left:82.950000px;}
.x7{left:86.436000px;}
.x2{left:95.425500px;}
.x4c{left:101.730000px;}
.x25{left:102.985500px;}
.x21{left:106.945500px;}
.x28{left:113.436000px;}
.x20{left:115.260000px;}
.x4f{left:116.280000px;}
.xf{left:124.585500px;}
.x58{left:126.000000px;}
.x6c{left:131.835000px;}
.x26{left:140.472000px;}
.x5b{left:150.585000px;}
.x6d{left:156.270000px;}
.x50{left:157.650000px;}
.x6f{left:163.290000px;}
.x3{left:182.250000px;}
.x51{left:199.005000px;}
.x62{left:204.555000px;}
.x4b{left:205.560000px;}
.x15{left:218.970000px;}
.x1f{left:224.010000px;}
.x71{left:229.320000px;}
.x52{left:240.405000px;}
.x59{left:260.640000px;}
.x2b{left:266.505000px;}
.x53{left:281.775000px;}
.x29{left:290.625000px;}
.x46{left:293.505000px;}
.x63{left:303.225000px;}
.x39{left:309.345000px;}
.x54{left:315.825000px;}
.x6e{left:321.480000px;}
.x3a{left:329.190000px;}
.x55{left:330.585000px;}
.x37{left:332.430000px;}
.x2c{left:340.710000px;}
.x5d{left:351.510000px;}
.x65{left:354.030000px;}
.x60{left:356.910000px;}
.x44{left:361.590000px;}
.x56{left:364.500000px;}
.x3b{left:367.350000px;}
.xb{left:372.390000px;}
.x17{left:383.190000px;}
.x57{left:405.900000px;}
.x47{left:408.780000px;}
.x3d{left:423.180000px;}
.x2a{left:446.580000px;}
.x2e{left:468.540000px;}
.x5e{left:488.385000px;}
.x66{left:490.905000px;}
.x3e{left:506.385000px;}
.x19{left:508.530000px;}
.x48{left:517.185000px;}
.x1b{left:556.770000px;}
.x61{left:571.530000px;}
.x1c{left:611.175000px;}
.xa{left:621.255000px;}
.x45{left:632.415000px;}
.x70{left:663.735000px;}
.x5c{left:668.445000px;}
.x38{left:687.525000px;}
.x9{left:766.050000px;}
.x8{left:784.770000px;}
.xc{left:807.090000px;}
@media print{
.v4{vertical-align:-62.720000pt;}
.v14{vertical-align:-60.160000pt;}
.v2{vertical-align:-55.040000pt;}
.v1{vertical-align:-53.760000pt;}
.v5{vertical-align:-52.480000pt;}
.v8{vertical-align:-16.480000pt;}
.v7{vertical-align:-13.546667pt;}
.v6{vertical-align:-12.640000pt;}
.vd{vertical-align:-6.880000pt;}
.va{vertical-align:-4.213333pt;}
.v9{vertical-align:-2.293333pt;}
.v0{vertical-align:0.000000pt;}
.v10{vertical-align:1.813333pt;}
.vb{vertical-align:3.413333pt;}
.v13{vertical-align:5.386667pt;}
.ve{vertical-align:6.933333pt;}
.vc{vertical-align:10.240000pt;}
.v12{vertical-align:14.240000pt;}
.v11{vertical-align:17.653333pt;}
.v3{vertical-align:21.760000pt;}
.vf{vertical-align:24.800000pt;}
.ls18{letter-spacing:-1.696000pt;}
.ls11{letter-spacing:-1.280000pt;}
.lsa{letter-spacing:-0.640000pt;}
.ls2c{letter-spacing:-0.581333pt;}
.lsd{letter-spacing:-0.560000pt;}
.ls21{letter-spacing:-0.405333pt;}
.ls1f{letter-spacing:-0.340267pt;}
.ls22{letter-spacing:-0.320000pt;}
.ls17{letter-spacing:-0.256000pt;}
.ls23{letter-spacing:-0.237867pt;}
.ls20{letter-spacing:-0.212267pt;}
.ls9{letter-spacing:-0.079467pt;}
.lsc{letter-spacing:-0.064000pt;}
.ls8{letter-spacing:0.000000pt;}
.ls12{letter-spacing:0.017920pt;}
.ls6{letter-spacing:0.064000pt;}
.ls16{letter-spacing:0.256000pt;}
.ls24{letter-spacing:0.344533pt;}
.ls4{letter-spacing:0.384000pt;}
.ls29{letter-spacing:0.407467pt;}
.ls1{letter-spacing:0.439040pt;}
.ls0{letter-spacing:0.640000pt;}
.ls7{letter-spacing:0.773120pt;}
.ls2{letter-spacing:0.960000pt;}
.lsb{letter-spacing:1.344000pt;}
.ls13{letter-spacing:1.920000pt;}
.ls3{letter-spacing:14.720000pt;}
.ls14{letter-spacing:27.008000pt;}
.lse{letter-spacing:29.568000pt;}
.ls15{letter-spacing:33.408000pt;}
.ls10{letter-spacing:41.374720pt;}
.lsf{letter-spacing:56.734720pt;}
.ls1e{letter-spacing:63.087360pt;}
.ls1d{letter-spacing:63.111765pt;}
.ls1c{letter-spacing:63.140693pt;}
.ls5{letter-spacing:79.774720pt;}
.ls2b{letter-spacing:152.693333pt;}
.ls28{letter-spacing:220.480427pt;}
.ls27{letter-spacing:220.587093pt;}
.ls26{letter-spacing:220.640427pt;}
.ls19{letter-spacing:314.346667pt;}
.ls25{letter-spacing:445.365333pt;}
.ls1a{letter-spacing:835.925333pt;}
.ls2a{letter-spacing:959.765333pt;}
.ls1b{letter-spacing:985.685333pt;}
.wsb{word-spacing:-53.760000pt;}
.wsd{word-spacing:-16.256000pt;}
.wsa{word-spacing:-16.000000pt;}
.wse{word-spacing:-15.744000pt;}
.wsc{word-spacing:-13.457920pt;}
.ws0{word-spacing:-13.440000pt;}
.ws4{word-spacing:-12.160000pt;}
.wsf{word-spacing:-11.744000pt;}
.ws8{word-spacing:-11.600000pt;}
.ws11{word-spacing:-10.780373pt;}
.ws10{word-spacing:-10.652373pt;}
.ws12{word-spacing:-10.616235pt;}
.ws1{word-spacing:-9.920000pt;}
.ws18{word-spacing:-9.890773pt;}
.ws14{word-spacing:-9.575168pt;}
.ws13{word-spacing:-9.546240pt;}
.ws5{word-spacing:-9.344000pt;}
.ws2{word-spacing:-9.280000pt;}
.ws3{word-spacing:-8.640000pt;}
.ws6{word-spacing:-8.064000pt;}
.ws7{word-spacing:-7.936000pt;}
.ws9{word-spacing:0.000000pt;}
.ws17{word-spacing:52.932267pt;}
.ws15{word-spacing:116.131413pt;}
.ws1a{word-spacing:132.160000pt;}
.ws16{word-spacing:138.650880pt;}
.ws19{word-spacing:176.721707pt;}
._10{margin-left:-3.095467pt;}
._4{margin-left:-2.181120pt;}
._3{margin-left:-1.236480pt;}
._1{width:1.105920pt;}
._0{width:2.073600pt;}
._2{width:3.026347pt;}
._b{width:3.980800pt;}
._c{width:5.032533pt;}
._9{width:6.133760pt;}
._a{width:7.073280pt;}
._11{width:7.970987pt;}
._6{width:8.901120pt;}
._5{width:9.927680pt;}
._7{width:10.818560pt;}
._f{width:12.119040pt;}
._e{width:14.669653pt;}
._d{width:15.718400pt;}
._8{width:32.271360pt;}
._17{width:82.318507pt;}
._12{width:114.957653pt;}
._13{width:169.774080pt;}
._15{width:185.027413pt;}
._14{width:185.973333pt;}
._16{width:202.453333pt;}
.fs6{font-size:5.120000pt;}
.fsc{font-size:16.640000pt;}
.fs3{font-size:21.760000pt;}
.fsa{font-size:26.880000pt;}
.fs9{font-size:32.000000pt;}
.fs7{font-size:37.120000pt;}
.fsf{font-size:42.240000pt;}
.fse{font-size:42.368000pt;}
.fs8{font-size:48.640000pt;}
.fsd{font-size:48.768000pt;}
.fs4{font-size:51.200000pt;}
.fs2{font-size:53.760000pt;}
.fs10{font-size:56.320000pt;}
.fs11{font-size:56.448000pt;}
.fs0{font-size:58.880000pt;}
.fsb{font-size:64.000000pt;}
.fs5{font-size:74.240000pt;}
.fs1{font-size:138.240000pt;}
.y133{bottom:-4.164000pt;}
.y11d{bottom:-4.160000pt;}
.y0{bottom:0.000000pt;}
.y4b{bottom:2.556000pt;}
.yc0{bottom:3.186667pt;}
.y134{bottom:3.196000pt;}
.y3b{bottom:3.200000pt;}
.ydb{bottom:3.226667pt;}
.yc2{bottom:3.506667pt;}
.y130{bottom:3.508000pt;}
.yc8{bottom:3.516000pt;}
.y5{bottom:3.520000pt;}
.yf0{bottom:3.548000pt;}
.y59{bottom:4.773333pt;}
.y2{bottom:7.040000pt;}
.y4a{bottom:9.596000pt;}
.y105{bottom:10.106667pt;}
.y16f{bottom:10.586667pt;}
.yea{bottom:10.866667pt;}
.y129{bottom:10.880000pt;}
.yd9{bottom:10.906667pt;}
.y56{bottom:13.116000pt;}
.y140{bottom:14.080000pt;}
.y10f{bottom:14.146667pt;}
.y13d{bottom:15.200000pt;}
.yeb{bottom:18.546667pt;}
.y41{bottom:18.560000pt;}
.yda{bottom:18.586667pt;}
.y4{bottom:18.880000pt;}
.y170{bottom:27.226667pt;}
.y100{bottom:28.133333pt;}
.y55{bottom:28.476000pt;}
.y40{bottom:33.920000pt;}
.y102{bottom:35.706667pt;}
.y49{bottom:35.868000pt;}
.y13f{bottom:36.093333pt;}
.y141{bottom:37.093333pt;}
.y10d{bottom:38.266667pt;}
.y171{bottom:38.560000pt;}
.yff{bottom:38.786667pt;}
.y3{bottom:39.360000pt;}
.y13b{bottom:40.253333pt;}
.y101{bottom:42.626667pt;}
.yfe{bottom:43.106667pt;}
.yfc{bottom:43.493333pt;}
.y48{bottom:46.430667pt;}
.y104{bottom:46.493333pt;}
.y54{bottom:47.710667pt;}
.y103{bottom:49.306667pt;}
.y172{bottom:49.920000pt;}
.y7{bottom:51.232000pt;}
.y10a{bottom:51.333333pt;}
.y138{bottom:54.106667pt;}
.yfd{bottom:55.546667pt;}
.yfb{bottom:56.186667pt;}
.y47{bottom:57.950667pt;}
.y142{bottom:60.093333pt;}
.y173{bottom:61.253333pt;}
.y53{bottom:64.670667pt;}
.y10b{bottom:68.480000pt;}
.y109{bottom:68.573333pt;}
.y46{bottom:69.470667pt;}
.y137{bottom:70.906667pt;}
.yf6{bottom:71.200000pt;}
.y174{bottom:72.613333pt;}
.y139{bottom:76.293333pt;}
.y52{bottom:78.750667pt;}
.yf7{bottom:80.640000pt;}
.y57{bottom:80.992000pt;}
.y143{bottom:82.106667pt;}
.y175{bottom:83.933333pt;}
.y91{bottom:84.832000pt;}
.y136{bottom:85.573333pt;}
.y10c{bottom:85.626667pt;}
.y108{bottom:85.733333pt;}
.y51{bottom:86.750667pt;}
.y132{bottom:87.076000pt;}
.y45{bottom:88.670667pt;}
.yf8{bottom:90.053333pt;}
.yf5{bottom:90.426667pt;}
.yc9{bottom:92.836000pt;}
.y42{bottom:93.476000pt;}
.y176{bottom:95.293333pt;}
.yf2{bottom:96.672000pt;}
.y13a{bottom:98.466667pt;}
.yf9{bottom:99.493333pt;}
.y90{bottom:100.192000pt;}
.yf1{bottom:103.076000pt;}
.y50{bottom:103.710667pt;}
.y144{bottom:105.506667pt;}
.y131{bottom:107.236000pt;}
.y10e{bottom:108.293333pt;}
.yfa{bottom:108.933333pt;}
.yf4{bottom:111.773333pt;}
.yc7{bottom:112.996000pt;}
.y8f{bottom:115.552000pt;}
.y4f{bottom:117.470667pt;}
.y13c{bottom:122.106667pt;}
.y177{bottom:123.133333pt;}
.yef{bottom:123.556000pt;}
.y12f{bottom:127.756000pt;}
.y8e{bottom:130.944000pt;}
.y4e{bottom:131.230667pt;}
.y106{bottom:132.800000pt;}
.yc6{bottom:133.520000pt;}
.yee{bottom:143.760000pt;}
.y44{bottom:144.350667pt;}
.y4d{bottom:144.990667pt;}
.y8d{bottom:146.306667pt;}
.y12e{bottom:147.920000pt;}
.y39{bottom:152.040000pt;}
.y43{bottom:153.657333pt;}
.yc5{bottom:153.680000pt;}
.y4c{bottom:158.457333pt;}
.y16d{bottom:160.386667pt;}
.y8c{bottom:161.666667pt;}
.yed{bottom:164.240000pt;}
.y38{bottom:167.400000pt;}
.y12d{bottom:168.400000pt;}
.yc4{bottom:174.160000pt;}
.y16c{bottom:176.066667pt;}
.y8b{bottom:177.026667pt;}
.y37{bottom:182.760000pt;}
.yec{bottom:184.400000pt;}
.y12c{bottom:188.880000pt;}
.y16b{bottom:191.106667pt;}
.y8a{bottom:192.386667pt;}
.yc3{bottom:194.320000pt;}
.y36{bottom:198.120000pt;}
.ye9{bottom:204.880000pt;}
.y89{bottom:207.746667pt;}
.y16a{bottom:209.026667pt;}
.y12b{bottom:209.040000pt;}
.y35{bottom:213.506667pt;}
.yc1{bottom:214.800000pt;}
.y88{bottom:223.106667pt;}
.y169{bottom:224.386667pt;}
.y34{bottom:228.866667pt;}
.y12a{bottom:229.520000pt;}
.ybf{bottom:234.640000pt;}
.y87{bottom:238.466667pt;}
.ye8{bottom:239.426667pt;}
.y168{bottom:242.306667pt;}
.y33{bottom:244.226667pt;}
.y128{bottom:249.693333pt;}
.y86{bottom:253.533333pt;}
.ybe{bottom:253.853333pt;}
.y167{bottom:257.693333pt;}
.y32{bottom:259.266667pt;}
.ye7{bottom:259.613333pt;}
.ybd{bottom:268.573333pt;}
.y85{bottom:268.893333pt;}
.yd{bottom:273.693333pt;}
.y31{bottom:274.626667pt;}
.ye6{bottom:274.653333pt;}
.y166{bottom:275.293333pt;}
.y127{bottom:284.573333pt;}
.y84{bottom:285.213333pt;}
.y30{bottom:289.666667pt;}
.y165{bottom:290.653333pt;}
.ybc{bottom:292.253333pt;}
.ye5{bottom:298.013333pt;}
.y126{bottom:299.293333pt;}
.y83{bottom:300.573333pt;}
.ybb{bottom:307.613333pt;}
.y164{bottom:308.573333pt;}
.y2f{bottom:313.026667pt;}
.ye4{bottom:313.373333pt;}
.y82{bottom:318.493333pt;}
.y3f{bottom:322.653333pt;}
.yba{bottom:322.973333pt;}
.y163{bottom:323.933333pt;}
.ye3{bottom:333.213333pt;}
.y1b{bottom:334.173333pt;}
.y2e{bottom:334.813333pt;}
.y107{bottom:335.040000pt;}
.y81{bottom:336.093333pt;}
.yb9{bottom:336.733333pt;}
.y125{bottom:338.013333pt;}
.y162{bottom:341.853333pt;}
.y3e{bottom:342.813333pt;}
.yb8{bottom:343.773333pt;}
.y2d{bottom:348.573333pt;}
.y80{bottom:354.013333pt;}
.y1a{bottom:355.613333pt;}
.y161{bottom:356.893333pt;}
.yb7{bottom:361.413333pt;}
.y2c{bottom:362.333333pt;}
.y3d{bottom:363.333333pt;}
.y7f{bottom:371.973333pt;}
.y160{bottom:374.533333pt;}
.y2b{bottom:376.093333pt;}
.y124{bottom:376.773333pt;}
.y19{bottom:377.053333pt;}
.yb6{bottom:379.333333pt;}
.y3c{bottom:383.493333pt;}
.y7e{bottom:385.733333pt;}
.y2a{bottom:389.853333pt;}
.y15f{bottom:390.213333pt;}
.y123{bottom:392.133333pt;}
.y7d{bottom:392.773333pt;}
.yb5{bottom:394.693333pt;}
.y18{bottom:398.493333pt;}
.y29{bottom:403.613333pt;}
.y3a{bottom:403.973333pt;}
.y15e{bottom:405.573333pt;}
.y122{bottom:407.493333pt;}
.y7c{bottom:408.133333pt;}
.yb4{bottom:412.613333pt;}
.y28{bottom:417.373333pt;}
.y17{bottom:419.933333pt;}
.y15d{bottom:420.933333pt;}
.y121{bottom:422.853333pt;}
.y7b{bottom:423.493333pt;}
.yb3{bottom:430.533333pt;}
.y27{bottom:431.453333pt;}
.y120{bottom:434.693333pt;}
.y15c{bottom:436.293333pt;}
.y13e{bottom:438.080000pt;}
.y7a{bottom:438.853333pt;}
.y16{bottom:441.413333pt;}
.y26{bottom:445.253333pt;}
.yb2{bottom:445.573333pt;}
.y15b{bottom:451.653333pt;}
.y79{bottom:454.213333pt;}
.y25{bottom:459.013333pt;}
.yb1{bottom:460.933333pt;}
.y15{bottom:463.173333pt;}
.y78{bottom:467.973333pt;}
.ye2{bottom:468.293333pt;}
.y15a{bottom:469.573333pt;}
.y24{bottom:472.773333pt;}
.y77{bottom:475.013333pt;}
.yb0{bottom:476.293333pt;}
.y14{bottom:484.613333pt;}
.y159{bottom:484.640000pt;}
.ye1{bottom:488.160000pt;}
.yaf{bottom:491.680000pt;}
.y76{bottom:492.960000pt;}
.ye0{bottom:494.240000pt;}
.y158{bottom:500.000000pt;}
.y23{bottom:500.293333pt;}
.y13{bottom:506.053333pt;}
.yae{bottom:507.040000pt;}
.y75{bottom:510.560000pt;}
.y22{bottom:514.053333pt;}
.ydf{bottom:514.400000pt;}
.y157{bottom:515.360000pt;}
.yad{bottom:522.400000pt;}
.y12{bottom:527.493333pt;}
.y21{bottom:527.813333pt;}
.y74{bottom:528.480000pt;}
.y156{bottom:530.720000pt;}
.yde{bottom:534.240000pt;}
.yac{bottom:537.760000pt;}
.y20{bottom:541.893333pt;}
.y155{bottom:546.080000pt;}
.y73{bottom:546.400000pt;}
.y11{bottom:548.933333pt;}
.yab{bottom:553.120000pt;}
.ydd{bottom:554.400000pt;}
.y1f{bottom:555.680000pt;}
.y72{bottom:564.000000pt;}
.y11f{bottom:567.840000pt;}
.yaa{bottom:568.480000pt;}
.y1e{bottom:569.440000pt;}
.y10{bottom:570.400000pt;}
.ydc{bottom:574.240000pt;}
.y11e{bottom:574.560000pt;}
.y154{bottom:579.360000pt;}
.y71{bottom:581.920000pt;}
.y1d{bottom:583.200000pt;}
.ya9{bottom:583.840000pt;}
.y11c{bottom:589.600000pt;}
.yf{bottom:591.840000pt;}
.yd8{bottom:594.400000pt;}
.y70{bottom:599.866667pt;}
.ya8{bottom:600.186667pt;}
.y11b{bottom:610.120000pt;}
.y1c{bottom:610.400000pt;}
.y153{bottom:612.346667pt;}
.ye{bottom:613.280000pt;}
.ya7{bottom:615.226667pt;}
.y6f{bottom:617.786667pt;}
.y152{bottom:627.706667pt;}
.yd7{bottom:628.986667pt;}
.y11a{bottom:630.280000pt;}
.ya6{bottom:630.586667pt;}
.y6e{bottom:635.386667pt;}
.yd6{bottom:635.706667pt;}
.y151{bottom:643.066667pt;}
.ya5{bottom:645.946667pt;}
.y119{bottom:650.760000pt;}
.y6d{bottom:653.306667pt;}
.y150{bottom:660.986667pt;}
.ya4{bottom:661.306667pt;}
.yd5{bottom:666.746667pt;}
.y6c{bottom:668.666667pt;}
.y118{bottom:670.920000pt;}
.y14f{bottom:676.346667pt;}
.ya3{bottom:676.666667pt;}
.yd4{bottom:682.106667pt;}
.y6b{bottom:684.986667pt;}
.y117{bottom:691.400000pt;}
.y14e{bottom:691.706667pt;}
.ya2{bottom:692.026667pt;}
.yd3{bottom:697.466667pt;}
.y6a{bottom:701.306667pt;}
.y14d{bottom:706.746667pt;}
.ya1{bottom:707.386667pt;}
.y116{bottom:711.560000pt;}
.yd2{bottom:712.866667pt;}
.y69{bottom:717.666667pt;}
.ya0{bottom:722.786667pt;}
.y14c{bottom:724.706667pt;}
.yd1{bottom:728.226667pt;}
.y68{bottom:733.986667pt;}
.y9f{bottom:738.146667pt;}
.yd0{bottom:740.066667pt;}
.yf3{bottom:741.760000pt;}
.y115{bottom:746.466667pt;}
.y14b{bottom:748.066667pt;}
.y67{bottom:750.306667pt;}
.y9e{bottom:753.506667pt;}
.y14a{bottom:763.426667pt;}
.y66{bottom:766.306667pt;}
.y9d{bottom:768.866667pt;}
.y149{bottom:778.786667pt;}
.y65{bottom:784.226667pt;}
.y114{bottom:792.226667pt;}
.y148{bottom:794.146667pt;}
.y9c{bottom:799.266667pt;}
.y64{bottom:802.146667pt;}
.y113{bottom:807.586667pt;}
.y147{bottom:813.986667pt;}
.y9b{bottom:814.626667pt;}
.y16e{bottom:815.680000pt;}
.y63{bottom:819.746667pt;}
.y112{bottom:822.946667pt;}
.y9a{bottom:830.013333pt;}
.y62{bottom:837.693333pt;}
.y111{bottom:842.813333pt;}
.y135{bottom:844.480000pt;}
.y99{bottom:845.373333pt;}
.y61{bottom:855.613333pt;}
.y98{bottom:860.733333pt;}
.y60{bottom:873.213333pt;}
.y97{bottom:876.093333pt;}
.y5f{bottom:891.133333pt;}
.y96{bottom:891.453333pt;}
.yc{bottom:897.853333pt;}
.ycf{bottom:901.053333pt;}
.yb{bottom:902.653333pt;}
.y95{bottom:906.813333pt;}
.y5e{bottom:909.053333pt;}
.yce{bottom:916.733333pt;}
.ya{bottom:917.693333pt;}
.y94{bottom:922.173333pt;}
.y5d{bottom:926.653333pt;}
.ycd{bottom:929.853333pt;}
.ycc{bottom:936.253333pt;}
.y93{bottom:937.533333pt;}
.y9{bottom:942.013333pt;}
.y5c{bottom:944.573333pt;}
.y92{bottom:952.933333pt;}
.ycb{bottom:956.773333pt;}
.y146{bottom:961.253333pt;}
.y8{bottom:967.333333pt;}
.y5b{bottom:967.973333pt;}
.y58{bottom:970.240000pt;}
.yca{bottom:976.933333pt;}
.y145{bottom:983.013333pt;}
.y5a{bottom:983.333333pt;}
.y110{bottom:991.653333pt;}
.y6{bottom:997.093333pt;}
.y1{bottom:1001.893333pt;}
.hb{height:3.702500pt;}
.h16{height:5.022500pt;}
.h21{height:15.026667pt;}
.h31{height:15.040000pt;}
.h1e{height:15.346667pt;}
.h32{height:15.348000pt;}
.h20{height:15.356000pt;}
.h12{height:15.360000pt;}
.h2f{height:15.378667pt;}
.h22{height:15.386667pt;}
.h1f{height:15.388000pt;}
.h30{height:15.392000pt;}
.h1b{height:16.331250pt;}
.h1d{height:16.770000pt;}
.h7{height:21.643125pt;}
.h18{height:24.640000pt;}
.h14{height:26.381250pt;}
.h24{height:30.706667pt;}
.h23{height:30.752000pt;}
.he{height:36.431250pt;}
.hd{height:37.410000pt;}
.h2d{height:41.456250pt;}
.h28{height:42.013125pt;}
.h27{height:42.140437pt;}
.hf{height:47.713750pt;}
.h26{height:48.378750pt;}
.h15{height:49.020000pt;}
.h38{height:49.803750pt;}
.h8{height:51.600000pt;}
.h2c{height:51.696250pt;}
.h17{height:52.736250pt;}
.h5{height:52.762500pt;}
.h10{height:53.150625pt;}
.h6{height:53.471250pt;}
.ha{height:54.180000pt;}
.h11{height:55.256809pt;}
.h19{height:56.405000pt;}
.h39{height:56.889000pt;}
.h29{height:57.667500pt;}
.h3{height:58.563750pt;}
.h2b{height:58.576250pt;}
.h2e{height:59.340000pt;}
.h36{height:60.288750pt;}
.h35{height:61.639792pt;}
.h3a{height:62.812500pt;}
.h1a{height:65.781915pt;}
.h1c{height:66.625000pt;}
.h2{height:72.346667pt;}
.h9{height:74.820000pt;}
.h34{height:88.093125pt;}
.h4{height:103.680000pt;}
.h37{height:128.640000pt;}
.h2a{height:132.160000pt;}
.h3b{height:144.320000pt;}
.h33{height:146.240000pt;}
.h25{height:156.160000pt;}
.h13{height:179.240000pt;}
.hc{height:621.586667pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.w10{width:33.266667pt;}
.w17{width:33.306667pt;}
.w14{width:33.586667pt;}
.w9{width:36.160000pt;}
.w1d{width:37.146667pt;}
.w7{width:41.920000pt;}
.w20{width:44.186667pt;}
.w8{width:47.392000pt;}
.w11{width:48.666667pt;}
.w15{width:48.986667pt;}
.w13{width:51.506667pt;}
.w16{width:51.826667pt;}
.we{width:64.986667pt;}
.wb{width:65.306667pt;}
.w18{width:67.226667pt;}
.w12{width:73.312000pt;}
.w1a{width:73.618667pt;}
.w1f{width:85.458667pt;}
.w22{width:88.338667pt;}
.w2{width:92.180000pt;}
.w19{width:95.392000pt;}
.w6{width:110.464000pt;}
.wf{width:112.666667pt;}
.wc{width:112.986667pt;}
.w4{width:117.780000pt;}
.w21{width:120.704000pt;}
.w1e{width:120.986667pt;}
.wd{width:140.866667pt;}
.wa{width:144.960000pt;}
.w24{width:219.840000pt;}
.w1c{width:328.640000pt;}
.w25{width:384.320000pt;}
.w23{width:391.680000pt;}
.w1b{width:426.560000pt;}
.w5{width:530.440000pt;}
.w3{width:553.480000pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1a{left:2.880000pt;}
.x3c{left:4.480000pt;}
.x27{left:6.112000pt;}
.x16{left:7.373333pt;}
.x4d{left:8.986667pt;}
.x3f{left:10.546667pt;}
.x4{left:11.826667pt;}
.x64{left:13.800000pt;}
.x14{left:14.708000pt;}
.x1d{left:16.346667pt;}
.x5{left:17.266667pt;}
.x40{left:18.866667pt;}
.x6b{left:19.866667pt;}
.x43{left:20.800000pt;}
.x1e{left:22.106667pt;}
.x67{left:24.960000pt;}
.x13{left:25.908000pt;}
.x49{left:26.880000pt;}
.x41{left:28.160000pt;}
.x2f{left:29.120000pt;}
.x4a{left:30.066667pt;}
.x34{left:31.360000pt;}
.x2d{left:32.320000pt;}
.x42{left:33.280000pt;}
.x68{left:34.226667pt;}
.x35{left:36.160000pt;}
.x5f{left:37.120000pt;}
.x6{left:38.733333pt;}
.x72{left:39.706667pt;}
.x18{left:40.666667pt;}
.x22{left:42.260000pt;}
.x36{left:44.160000pt;}
.xe{left:45.140000pt;}
.x33{left:46.720000pt;}
.x30{left:47.680000pt;}
.xd{left:48.980000pt;}
.x24{left:50.900000pt;}
.x5a{left:52.506667pt;}
.x69{left:54.266667pt;}
.x31{left:56.986667pt;}
.x23{left:58.902667pt;}
.x32{left:60.506667pt;}
.x73{left:61.760000pt;}
.x11{left:64.982667pt;}
.x4e{left:66.586667pt;}
.x10{left:68.182667pt;}
.x1{left:69.804000pt;}
.x12{left:71.382667pt;}
.x6a{left:73.733333pt;}
.x7{left:76.832000pt;}
.x2{left:84.822667pt;}
.x4c{left:90.426667pt;}
.x25{left:91.542667pt;}
.x21{left:95.062667pt;}
.x28{left:100.832000pt;}
.x20{left:102.453333pt;}
.x4f{left:103.360000pt;}
.xf{left:110.742667pt;}
.x58{left:112.000000pt;}
.x6c{left:117.186667pt;}
.x26{left:124.864000pt;}
.x5b{left:133.853333pt;}
.x6d{left:138.906667pt;}
.x50{left:140.133333pt;}
.x6f{left:145.146667pt;}
.x3{left:162.000000pt;}
.x51{left:176.893333pt;}
.x62{left:181.826667pt;}
.x4b{left:182.720000pt;}
.x15{left:194.640000pt;}
.x1f{left:199.120000pt;}
.x71{left:203.840000pt;}
.x52{left:213.693333pt;}
.x59{left:231.680000pt;}
.x2b{left:236.893333pt;}
.x53{left:250.466667pt;}
.x29{left:258.333333pt;}
.x46{left:260.893333pt;}
.x63{left:269.533333pt;}
.x39{left:274.973333pt;}
.x54{left:280.733333pt;}
.x6e{left:285.760000pt;}
.x3a{left:292.613333pt;}
.x55{left:293.853333pt;}
.x37{left:295.493333pt;}
.x2c{left:302.853333pt;}
.x5d{left:312.453333pt;}
.x65{left:314.693333pt;}
.x60{left:317.253333pt;}
.x44{left:321.413333pt;}
.x56{left:324.000000pt;}
.x3b{left:326.533333pt;}
.xb{left:331.013333pt;}
.x17{left:340.613333pt;}
.x57{left:360.800000pt;}
.x47{left:363.360000pt;}
.x3d{left:376.160000pt;}
.x2a{left:396.960000pt;}
.x2e{left:416.480000pt;}
.x5e{left:434.120000pt;}
.x66{left:436.360000pt;}
.x3e{left:450.120000pt;}
.x19{left:452.026667pt;}
.x48{left:459.720000pt;}
.x1b{left:494.906667pt;}
.x61{left:508.026667pt;}
.x1c{left:543.266667pt;}
.xa{left:552.226667pt;}
.x45{left:562.146667pt;}
.x70{left:589.986667pt;}
.x5c{left:594.173333pt;}
.x38{left:611.133333pt;}
.x9{left:680.933333pt;}
.x8{left:697.573333pt;}
.xc{left:717.413333pt;}
}




    .paper-inline-ad { box-sizing: border-box; margin: 13px auto; max-width: 100%; min-height: 120px; background: #fff; border: 1px solid #e5e7eb; overflow: hidden; }
    .paper-inline-ad-label { padding: 6px 10px 0 10px; font: 10px system-ui, sans-serif; color: #9ca3af; text-transform: uppercase; letter-spacing: .04em; }
    .paper-inline-ad-slot { min-height: 100px; }
    .paper-inline-ad--internal { padding: 0; }
    .paper-internal-promo { padding: 14px 16px 16px 16px; font: 13px system-ui, sans-serif; line-height: 1.45; color: #374151; }
    .paper-internal-promo-title { font-size: 17px; font-weight: 800; color: #111827; margin-bottom: 7px; }
    .paper-internal-promo-body { margin-bottom: 12px; }
    .paper-internal-promo-actions { display: flex; flex-wrap: wrap; gap: 8px; }
    .paper-internal-promo-actions a { display: inline-block; padding: 7px 10px; border: 1px solid #d1d5db; border-radius: 8px; text-decoration: none; color: #111827; background: #f9fafb; font-weight: 700; }
  