
    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_d57deeef3f21048f7abd3629.woff')format("woff");}.ff1{font-family:ff1;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;}
@font-face{font-family:ff2;src:url('chunks/assets/font_1876d5027a14ff99bb5b46ac.woff')format("woff");}.ff2{font-family:ff2;line-height:0.873535;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_93a41f7a7184fd7b23ef7184.woff')format("woff");}.ff3{font-family:ff3;line-height:0.813477;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_d6d6b1dffe4e4f40159e57c3.woff')format("woff");}.ff4{font-family:ff4;line-height:0.914062;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_f4a23cc8c6631c259903bc40.woff')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_b79a82de9ae3255294cc164c.woff')format("woff");}.ff6{font-family:ff6;line-height:0.914062;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_d18861fe735072766e52e0f0.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_defca4745d71b77212ec84c0.woff')format("woff");}.ff8{font-family:ff8;line-height:1.003906;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_6f60d516b2c72e9241b1c703.woff')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_6ba9254ff75921e62008bd14.woff')format("woff");}.ffa{font-family:ffa;line-height:0.937988;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_130301694ab792f9947e2b7d.woff')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_ae68e5b4bdf5fbb104e63e14.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;}
.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);}
.m2{transform:matrix(0.371200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371200,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:-20.880000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:20.880000px;}
.v1{vertical-align:23.760000px;}
.ls31{letter-spacing:-2.214000px;}
.ls32{letter-spacing:-1.800000px;}
.ls16{letter-spacing:-1.494000px;}
.ls28{letter-spacing:-1.236000px;}
.ls29{letter-spacing:-1.182000px;}
.ls20{letter-spacing:-1.080000px;}
.ls17{letter-spacing:-0.774000px;}
.ls21{letter-spacing:-0.720000px;}
.ls33{letter-spacing:-0.666000px;}
.ls1d{letter-spacing:-0.612000px;}
.ls14{letter-spacing:-0.540000px;}
.ls18{letter-spacing:-0.460200px;}
.lsb{letter-spacing:-0.360000px;}
.ls25{letter-spacing:-0.259800px;}
.ls35{letter-spacing:-0.253200px;}
.ls26{letter-spacing:-0.206400px;}
.lsc{letter-spacing:-0.106800px;}
.lse{letter-spacing:-0.053280px;}
.ls9{letter-spacing:0.000000px;}
.ls19{letter-spacing:0.053280px;}
.lsf{letter-spacing:0.106800px;}
.ls10{letter-spacing:0.149760px;}
.ls22{letter-spacing:0.153600px;}
.ls7{letter-spacing:0.180000px;}
.ls15{letter-spacing:0.206400px;}
.lsa{letter-spacing:0.216000px;}
.ls13{letter-spacing:0.259800px;}
.ls6{letter-spacing:0.259920px;}
.ls0{letter-spacing:0.288000px;}
.ls2e{letter-spacing:0.298800px;}
.lsd{letter-spacing:0.306600px;}
.ls2{letter-spacing:0.360000px;}
.ls2c{letter-spacing:0.480000px;}
.ls8{letter-spacing:0.900000px;}
.ls30{letter-spacing:1.620000px;}
.ls1a{letter-spacing:2.340000px;}
.ls1f{letter-spacing:5.706720px;}
.ls2a{letter-spacing:7.146720px;}
.ls34{letter-spacing:7.380000px;}
.ls24{letter-spacing:9.306720px;}
.ls1c{letter-spacing:9.540000px;}
.ls1{letter-spacing:10.026720px;}
.ls2f{letter-spacing:10.260000px;}
.ls27{letter-spacing:10.746720px;}
.ls1b{letter-spacing:12.186720px;}
.ls23{letter-spacing:13.626720px;}
.ls11{letter-spacing:15.066720px;}
.ls1e{letter-spacing:16.506720px;}
.ls2d{letter-spacing:19.620000px;}
.ls12{letter-spacing:25.290720px;}
.ls4{letter-spacing:43.349760px;}
.ls5{letter-spacing:43.380000px;}
.ls3{letter-spacing:43.920000px;}
.ls2b{letter-spacing:46.026720px;}
.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;}
}
.ws2{word-spacing:-24.300000px;}
.ws17{word-spacing:-18.000000px;}
.ws1{word-spacing:-16.560000px;}
.ws0{word-spacing:-16.488000px;}
.ws5{word-spacing:-15.300000px;}
.ws9{word-spacing:-15.246600px;}
.wsd{word-spacing:-15.199800px;}
.wse{word-spacing:-15.146400px;}
.ws16{word-spacing:-15.093600px;}
.wsb{word-spacing:-15.046800px;}
.ws12{word-spacing:-14.993280px;}
.ws6{word-spacing:-14.940000px;}
.wsa{word-spacing:-14.886720px;}
.ws8{word-spacing:-14.833200px;}
.ws19{word-spacing:-14.733600px;}
.ws1f{word-spacing:-14.686800px;}
.ws18{word-spacing:-14.680200px;}
.ws7{word-spacing:-14.580000px;}
.ws11{word-spacing:-14.479800px;}
.ws13{word-spacing:-14.328000px;}
.ws1e{word-spacing:-14.274000px;}
.ws10{word-spacing:-14.166000px;}
.ws14{word-spacing:-13.860000px;}
.ws1b{word-spacing:-13.758000px;}
.ws1a{word-spacing:-13.704000px;}
.wsf{word-spacing:-13.446000px;}
.ws1d{word-spacing:-13.140000px;}
.ws1c{word-spacing:-12.726000px;}
.ws3{word-spacing:-10.440000px;}
.ws4{word-spacing:-9.720000px;}
.ws15{word-spacing:-9.000000px;}
.wsc{word-spacing:0.000000px;}
._17{margin-left:-7.140960px;}
._15{margin-left:-6.069120px;}
._5{margin-left:-4.438080px;}
._6{margin-left:-2.450400px;}
._2{margin-left:-1.152000px;}
._0{width:1.317600px;}
._3{width:3.094320px;}
._4{width:4.984080px;}
._10{width:6.156000px;}
._a{width:7.611120px;}
._7{width:8.962560px;}
._8{width:10.456320px;}
._9{width:12.489840px;}
._14{width:13.616640px;}
._f{width:16.069680px;}
._11{width:17.686080px;}
._12{width:18.946800px;}
._16{width:20.436960px;}
._e{width:22.168080px;}
._d{width:23.664960px;}
._18{width:29.529120px;}
._19{width:31.112880px;}
._1a{width:33.006480px;}
._13{width:36.035280px;}
._20{width:40.193280px;}
._1f{width:41.284560px;}
._b{width:43.332960px;}
._21{width:44.874240px;}
._2c{width:51.245040px;}
._1b{width:52.526160px;}
._1c{width:53.826240px;}
._27{width:54.916560px;}
._c{width:59.099760px;}
._23{width:62.729520px;}
._22{width:64.242000px;}
._24{width:66.911520px;}
._25{width:68.033760px;}
._26{width:73.902720px;}
._1d{width:77.389200px;}
._2a{width:95.678400px;}
._2b{width:97.908000px;}
._28{width:99.284880px;}
._29{width:100.440000px;}
._1e{width:107.302800px;}
._1{width:1100.028000px;}
.fc5{color:transparent;}
.fc4{color:rgb(0,112,192);}
.fc3{color:rgb(0,176,240);}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(91,155,213);}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:38.880000px;}
.fs5{font-size:41.760000px;}
.fs4{font-size:59.760000px;}
.fs2{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.fs3{font-size:95.760000px;}
.fs1{font-size:131.760000px;}
.y0{bottom:0.000000px;}
.y2{bottom:1.440000px;}
.y148{bottom:5.580000px;}
.y55{bottom:5.760000px;}
.y3c{bottom:5.940000px;}
.y12f{bottom:6.120000px;}
.ye8{bottom:6.300000px;}
.y124{bottom:6.480000px;}
.y11a{bottom:6.660000px;}
.y118{bottom:6.840000px;}
.y122{bottom:7.020000px;}
.y115{bottom:7.200000px;}
.y16c{bottom:7.230000px;}
.y7{bottom:8.100000px;}
.y3a{bottom:11.160000px;}
.ye5{bottom:25.560000px;}
.yf9{bottom:25.605000px;}
.y54{bottom:25.740000px;}
.y178{bottom:26.280000px;}
.y151{bottom:26.310000px;}
.y154{bottom:28.080000px;}
.y39{bottom:30.960000px;}
.y6{bottom:36.180000px;}
.y53{bottom:45.540000px;}
.y14b{bottom:46.980000px;}
.y38{bottom:50.760000px;}
.yb{bottom:57.420000px;}
.y5{bottom:58.140000px;}
.y52{bottom:65.340000px;}
.y37{bottom:70.560000px;}
.y1f{bottom:80.640000px;}
.y4{bottom:81.900000px;}
.y51{bottom:85.140000px;}
.y8d{bottom:85.680000px;}
.ye1{bottom:87.480000px;}
.y16f{bottom:88.380000px;}
.y108{bottom:88.920000px;}
.ycb{bottom:89.100000px;}
.y36{bottom:90.360000px;}
.y140{bottom:92.520000px;}
.y191{bottom:94.680000px;}
.yba{bottom:96.480000px;}
.y1e{bottom:100.620000px;}
.y50{bottom:104.940000px;}
.y8c{bottom:105.480000px;}
.ye0{bottom:107.280000px;}
.y16e{bottom:108.180000px;}
.y107{bottom:108.720000px;}
.y9{bottom:108.750000px;}
.yca{bottom:108.900000px;}
.y35{bottom:110.340000px;}
.y13f{bottom:112.320000px;}
.y190{bottom:114.480000px;}
.yb9{bottom:116.280000px;}
.y3{bottom:118.110000px;}
.y1d{bottom:120.420000px;}
.y16d{bottom:123.120000px;}
.y4f{bottom:124.965000px;}
.yc9{bottom:125.460000px;}
.ydf{bottom:127.260000px;}
.y106{bottom:128.520000px;}
.y34{bottom:130.185000px;}
.y8{bottom:130.710000px;}
.y13e{bottom:132.120000px;}
.y8b{bottom:134.280000px;}
.yb8{bottom:136.260000px;}
.y1c{bottom:140.220000px;}
.y4e{bottom:144.765000px;}
.y16b{bottom:145.260000px;}
.yde{bottom:147.060000px;}
.y105{bottom:148.320000px;}
.y33{bottom:149.985000px;}
.y13d{bottom:151.950000px;}
.y8a{bottom:154.290000px;}
.yb7{bottom:156.090000px;}
.y1b{bottom:160.050000px;}
.y4d{bottom:164.565000px;}
.ydd{bottom:166.890000px;}
.y104{bottom:168.150000px;}
.y32{bottom:169.785000px;}
.y13c{bottom:171.750000px;}
.y16a{bottom:173.190000px;}
.y89{bottom:174.090000px;}
.yb6{bottom:175.890000px;}
.y1a{bottom:179.850000px;}
.y4c{bottom:184.365000px;}
.ydc{bottom:186.690000px;}
.y103{bottom:188.130000px;}
.y31{bottom:189.585000px;}
.y13b{bottom:191.730000px;}
.y169{bottom:192.990000px;}
.y88{bottom:193.890000px;}
.yb5{bottom:195.690000px;}
.y19{bottom:199.830000px;}
.y4b{bottom:204.165000px;}
.ydb{bottom:206.490000px;}
.y102{bottom:207.930000px;}
.y30{bottom:209.565000px;}
.y13a{bottom:211.530000px;}
.y168{bottom:212.790000px;}
.y87{bottom:213.690000px;}
.yb4{bottom:215.490000px;}
.y18{bottom:219.630000px;}
.y4a{bottom:224.145000px;}
.y139{bottom:225.570000px;}
.yda{bottom:226.470000px;}
.y101{bottom:227.730000px;}
.y2f{bottom:229.365000px;}
.y167{bottom:232.590000px;}
.y86{bottom:233.490000px;}
.yb3{bottom:235.470000px;}
.y17{bottom:239.430000px;}
.y49{bottom:243.945000px;}
.yd9{bottom:246.270000px;}
.y138{bottom:246.810000px;}
.y100{bottom:247.530000px;}
.y2e{bottom:249.165000px;}
.y166{bottom:252.390000px;}
.y85{bottom:253.470000px;}
.yb2{bottom:255.270000px;}
.y16{bottom:259.230000px;}
.y48{bottom:263.745000px;}
.yd8{bottom:266.070000px;}
.y137{bottom:267.150000px;}
.yff{bottom:267.330000px;}
.y2d{bottom:268.965000px;}
.y165{bottom:272.370000px;}
.y84{bottom:273.270000px;}
.yb1{bottom:275.070000px;}
.y20{bottom:278.490000px;}
.y47{bottom:283.545000px;}
.yd7{bottom:285.870000px;}
.yfe{bottom:287.310000px;}
.y136{bottom:288.210000px;}
.y2c{bottom:288.765000px;}
.y164{bottom:292.170000px;}
.y83{bottom:293.070000px;}
.yb0{bottom:294.870000px;}
.y46{bottom:303.345000px;}
.yd6{bottom:305.670000px;}
.yfd{bottom:307.110000px;}
.y135{bottom:308.010000px;}
.y2b{bottom:308.745000px;}
.y163{bottom:311.970000px;}
.y82{bottom:312.870000px;}
.yaf{bottom:314.670000px;}
.yfc{bottom:321.870000px;}
.y45{bottom:323.325000px;}
.yd5{bottom:325.650000px;}
.y134{bottom:327.810000px;}
.y2a{bottom:328.545000px;}
.y162{bottom:331.770000px;}
.y81{bottom:332.670000px;}
.yae{bottom:334.650000px;}
.yfb{bottom:342.390000px;}
.y44{bottom:343.125000px;}
.yd4{bottom:345.450000px;}
.y29{bottom:348.345000px;}
.y133{bottom:348.870000px;}
.y161{bottom:351.570000px;}
.y80{bottom:352.650000px;}
.yc8{bottom:354.450000px;}
.y43{bottom:362.925000px;}
.yfa{bottom:363.090000px;}
.yad{bottom:363.450000px;}
.yd3{bottom:365.250000px;}
.y28{bottom:368.145000px;}
.y132{bottom:368.670000px;}
.y160{bottom:371.550000px;}
.y7f{bottom:372.450000px;}
.yc7{bottom:374.250000px;}
.y42{bottom:382.755000px;}
.yac{bottom:383.250000px;}
.yf8{bottom:383.610000px;}
.yd2{bottom:385.050000px;}
.y27{bottom:387.975000px;}
.y131{bottom:389.010000px;}
.y15f{bottom:391.350000px;}
.y7e{bottom:392.250000px;}
.yc6{bottom:394.050000px;}
.y41{bottom:402.555000px;}
.yab{bottom:403.095000px;}
.y26{bottom:407.955000px;}
.y130{bottom:410.115000px;}
.y15e{bottom:411.195000px;}
.y7d{bottom:412.095000px;}
.yc5{bottom:413.895000px;}
.y40{bottom:422.535000px;}
.yaa{bottom:422.895000px;}
.y25{bottom:427.755000px;}
.yf7{bottom:429.915000px;}
.y15d{bottom:430.995000px;}
.y7c{bottom:431.895000px;}
.yc4{bottom:433.875000px;}
.y3f{bottom:442.335000px;}
.ya9{bottom:442.875000px;}
.y24{bottom:447.555000px;}
.yf6{bottom:449.715000px;}
.y12e{bottom:450.615000px;}
.y15c{bottom:450.795000px;}
.y7b{bottom:451.875000px;}
.yc3{bottom:453.675000px;}
.y3e{bottom:462.135000px;}
.ya8{bottom:462.675000px;}
.y23{bottom:467.355000px;}
.yf5{bottom:469.515000px;}
.y15b{bottom:470.775000px;}
.y7a{bottom:471.675000px;}
.yc2{bottom:473.475000px;}
.y12d{bottom:476.535000px;}
.y3d{bottom:481.935000px;}
.ya7{bottom:482.475000px;}
.y22{bottom:487.155000px;}
.yf4{bottom:489.315000px;}
.y15a{bottom:490.575000px;}
.y79{bottom:491.475000px;}
.yc1{bottom:493.275000px;}
.y12c{bottom:496.515000px;}
.ya6{bottom:502.275000px;}
.y21{bottom:507.135000px;}
.yf3{bottom:509.295000px;}
.y159{bottom:510.375000px;}
.y78{bottom:511.275000px;}
.yc0{bottom:513.075000px;}
.y12b{bottom:516.315000px;}
.ya5{bottom:522.075000px;}
.y18f{bottom:526.035000px;}
.yf2{bottom:529.095000px;}
.y158{bottom:530.175000px;}
.y77{bottom:531.075000px;}
.ybf{bottom:533.055000px;}
.y12a{bottom:536.115000px;}
.ya4{bottom:542.055000px;}
.y18e{bottom:547.455000px;}
.yf1{bottom:548.895000px;}
.y157{bottom:549.975000px;}
.y76{bottom:551.055000px;}
.ybe{bottom:552.855000px;}
.y129{bottom:555.915000px;}
.ya3{bottom:561.855000px;}
.yf0{bottom:568.695000px;}
.y18d{bottom:568.875000px;}
.y156{bottom:569.775000px;}
.y75{bottom:570.855000px;}
.ybd{bottom:572.655000px;}
.y128{bottom:575.715000px;}
.ya2{bottom:581.655000px;}
.y153{bottom:587.415000px;}
.yef{bottom:588.495000px;}
.y74{bottom:590.655000px;}
.ybc{bottom:592.455000px;}
.y127{bottom:595.695000px;}
.y18c{bottom:596.235000px;}
.ya1{bottom:601.455000px;}
.yee{bottom:608.475000px;}
.y155{bottom:608.835000px;}
.y73{bottom:610.455000px;}
.ybb{bottom:612.255000px;}
.y126{bottom:615.495000px;}
.y18b{bottom:616.035000px;}
.ya0{bottom:621.255000px;}
.yed{bottom:628.275000px;}
.y72{bottom:630.255000px;}
.yd1{bottom:632.235000px;}
.y18a{bottom:635.835000px;}
.y9f{bottom:641.235000px;}
.yec{bottom:648.075000px;}
.y71{bottom:650.265000px;}
.y152{bottom:650.805000px;}
.y125{bottom:651.165000px;}
.yd0{bottom:652.065000px;}
.y189{bottom:655.845000px;}
.y9e{bottom:661.065000px;}
.yeb{bottom:667.905000px;}
.y70{bottom:670.065000px;}
.y123{bottom:671.505000px;}
.ycf{bottom:671.865000px;}
.y188{bottom:675.645000px;}
.y150{bottom:677.265000px;}
.y9d{bottom:680.865000px;}
.yea{bottom:687.705000px;}
.y6f{bottom:689.865000px;}
.yce{bottom:691.665000px;}
.y121{bottom:692.025000px;}
.y187{bottom:695.445000px;}
.y14f{bottom:697.065000px;}
.y9c{bottom:700.665000px;}
.ye9{bottom:707.685000px;}
.y6e{bottom:709.665000px;}
.ycd{bottom:711.465000px;}
.y120{bottom:713.085000px;}
.y186{bottom:715.245000px;}
.y14e{bottom:716.865000px;}
.y9b{bottom:720.465000px;}
.ye7{bottom:722.445000px;}
.y6d{bottom:729.465000px;}
.ycc{bottom:731.445000px;}
.y14a{bottom:731.625000px;}
.y11f{bottom:733.425000px;}
.y185{bottom:735.045000px;}
.y9a{bottom:740.445000px;}
.ye4{bottom:742.785000px;}
.y6c{bottom:749.445000px;}
.y14d{bottom:752.325000px;}
.y11e{bottom:754.125000px;}
.y184{bottom:755.025000px;}
.y99{bottom:760.245000px;}
.ye6{bottom:762.585000px;}
.y6b{bottom:769.245000px;}
.y14c{bottom:772.845000px;}
.y11d{bottom:774.825000px;}
.y3b{bottom:779.685000px;}
.y98{bottom:780.045000px;}
.ye3{bottom:782.385000px;}
.y6a{bottom:789.045000px;}
.y149{bottom:793.365000px;}
.y183{bottom:794.625000px;}
.y11c{bottom:795.705000px;}
.y97{bottom:799.845000px;}
.ye2{bottom:802.905000px;}
.y69{bottom:808.845000px;}
.y15{bottom:813.165000px;}
.y147{bottom:814.065000px;}
.y182{bottom:814.425000px;}
.y11b{bottom:816.045000px;}
.y96{bottom:819.645000px;}
.y68{bottom:828.645000px;}
.y181{bottom:834.225000px;}
.y119{bottom:836.745000px;}
.y14{bottom:838.365000px;}
.y95{bottom:839.625000px;}
.y146{bottom:846.465000px;}
.y67{bottom:848.625000px;}
.y180{bottom:854.205000px;}
.y117{bottom:857.445000px;}
.y13{bottom:858.165000px;}
.y94{bottom:859.425000px;}
.y145{bottom:861.225000px;}
.y66{bottom:868.425000px;}
.y17f{bottom:874.005000px;}
.y12{bottom:877.965000px;}
.y116{bottom:878.325000px;}
.y93{bottom:879.225000px;}
.y144{bottom:882.645000px;}
.y65{bottom:888.225000px;}
.y17e{bottom:893.805000px;}
.y11{bottom:897.810000px;}
.y114{bottom:898.710000px;}
.y92{bottom:899.070000px;}
.y143{bottom:904.110000px;}
.y64{bottom:908.070000px;}
.y17d{bottom:913.650000px;}
.y10{bottom:917.610000px;}
.y91{bottom:918.870000px;}
.y113{bottom:926.430000px;}
.y63{bottom:927.870000px;}
.y17c{bottom:928.410000px;}
.y142{bottom:930.570000px;}
.yf{bottom:932.910000px;}
.y90{bottom:938.850000px;}
.y112{bottom:946.230000px;}
.y62{bottom:947.850000px;}
.y17a{bottom:949.110000px;}
.y141{bottom:950.370000px;}
.ye{bottom:954.150000px;}
.y8f{bottom:958.650000px;}
.y111{bottom:966.030000px;}
.y61{bottom:967.650000px;}
.y17b{bottom:969.630000px;}
.yd{bottom:977.550000px;}
.y8e{bottom:978.450000px;}
.y110{bottom:986.010000px;}
.y60{bottom:987.450000px;}
.y177{bottom:990.330000px;}
.y10f{bottom:1005.810000px;}
.y5f{bottom:1007.250000px;}
.yc{bottom:1009.230000px;}
.y179{bottom:1010.850000px;}
.y10e{bottom:1025.610000px;}
.y5e{bottom:1027.050000px;}
.ya{bottom:1035.330000px;}
.y176{bottom:1037.130000px;}
.y10d{bottom:1040.370000px;}
.y5d{bottom:1047.030000px;}
.y1{bottom:1051.350000px;}
.y10c{bottom:1060.170000px;}
.y175{bottom:1063.050000px;}
.y5c{bottom:1066.830000px;}
.y10b{bottom:1080.150000px;}
.y174{bottom:1082.850000px;}
.y5b{bottom:1086.630000px;}
.y171{bottom:1097.610000px;}
.y10a{bottom:1099.950000px;}
.y5a{bottom:1106.430000px;}
.y173{bottom:1118.310000px;}
.y59{bottom:1126.230000px;}
.y172{bottom:1138.830000px;}
.y109{bottom:1139.550000px;}
.y58{bottom:1146.210000px;}
.y170{bottom:1159.380000px;}
.y57{bottom:1166.040000px;}
.y56{bottom:1194.840000px;}
.h12{height:19.800000px;}
.h16{height:19.836000px;}
.hf{height:19.980000px;}
.h1e{height:20.160000px;}
.h14{height:20.340000px;}
.h18{height:20.376000px;}
.h1c{height:20.520000px;}
.h1a{height:20.700000px;}
.h22{height:20.736000px;}
.h19{height:20.880000px;}
.h1d{height:20.916000px;}
.h1b{height:21.060000px;}
.h20{height:21.096000px;}
.h17{height:21.240000px;}
.h29{height:21.276000px;}
.h23{height:25.740000px;}
.ha{height:27.147656px;}
.h13{height:39.600000px;}
.h15{height:39.636000px;}
.h2c{height:40.320000px;}
.h26{height:40.356000px;}
.hb{height:41.726953px;}
.h27{height:42.120000px;}
.h8{height:42.164648px;}
.h21{height:43.156758px;}
.hc{height:43.506914px;}
.h5{height:46.251562px;}
.h1f{height:48.027656px;}
.h2b{height:48.147656px;}
.h11{height:49.255313px;}
.h6{height:50.273438px;}
.h28{height:52.417969px;}
.h9{height:53.224453px;}
.h25{height:61.020000px;}
.h2a{height:61.056000px;}
.he{height:65.884219px;}
.h24{height:65.924648px;}
.h7{height:67.565039px;}
.h3{height:73.722656px;}
.h4{height:105.060586px;}
.h2{height:156.810000px;}
.h10{height:495.975000px;}
.hd{height:521.175000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w30{width:54.396000px;}
.w39{width:54.576000px;}
.w45{width:56.880000px;}
.w21{width:57.420000px;}
.w3b{width:57.636000px;}
.w1d{width:58.536000px;}
.w23{width:58.896000px;}
.w2e{width:73.656000px;}
.w3c{width:74.340000px;}
.w2c{width:75.600000px;}
.w24{width:76.140000px;}
.w17{width:76.176000px;}
.w38{width:78.660000px;}
.w3d{width:79.056000px;}
.w42{width:79.416000px;}
.w25{width:80.676000px;}
.w35{width:84.456000px;}
.w3a{width:87.480000px;}
.w4d{width:94.140000px;}
.w31{width:94.500000px;}
.w4a{width:95.076000px;}
.w37{width:99.036000px;}
.w46{width:99.756000px;}
.w4f{width:100.656000px;}
.w36{width:102.960000px;}
.w44{width:105.300000px;}
.wd{width:105.480000px;}
.w4b{width:105.516000px;}
.w4c{width:106.416000px;}
.w2b{width:108.756000px;}
.w43{width:109.440000px;}
.w26{width:109.620000px;}
.w15{width:111.600000px;}
.w41{width:114.480000px;}
.w2f{width:115.380000px;}
.w54{width:115.920000px;}
.w53{width:115.956000px;}
.w51{width:116.100000px;}
.w52{width:116.136000px;}
.wf{width:117.216000px;}
.w14{width:121.716000px;}
.w12{width:126.936000px;}
.w2{width:127.656000px;}
.w50{width:131.976000px;}
.wa{width:133.416000px;}
.we{width:137.556000px;}
.w16{width:141.876000px;}
.w32{width:142.776000px;}
.w2a{width:149.616000px;}
.w13{width:152.130000px;}
.w47{width:153.390000px;}
.w2d{width:156.090000px;}
.w4{width:157.170000px;}
.w40{width:157.350000px;}
.w1f{width:162.930000px;}
.w49{width:166.500000px;}
.w34{width:169.410000px;}
.w20{width:174.090000px;}
.w1a{width:174.630000px;}
.w1b{width:174.810000px;}
.w18{width:175.350000px;}
.w19{width:175.530000px;}
.w3e{width:176.070000px;}
.w33{width:178.590000px;}
.w48{width:213.555000px;}
.w1e{width:242.490000px;}
.wc{width:243.795000px;}
.w6{width:285.555000px;}
.w3f{width:303.150000px;}
.wb{width:326.190000px;}
.w11{width:329.655000px;}
.w27{width:359.715000px;}
.w10{width:400.785000px;}
.w22{width:463.965000px;}
.w9{width:483.375000px;}
.w7{width:494.745000px;}
.w3{width:499.785000px;}
.w8{width:616.785000px;}
.w29{width:682.890000px;}
.w28{width:687.930000px;}
.w1c{width:695.490000px;}
.w4e{width:737.100000px;}
.w5{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x28{left:-15.840000px;}
.x0{left:0.000000px;}
.x2b{left:2.340000px;}
.x12{left:4.320000px;}
.x3c{left:6.660000px;}
.x6{left:8.100000px;}
.x32{left:9.900000px;}
.x30{left:12.816000px;}
.x4{left:34.020000px;}
.x1{left:54.000000px;}
.x36{left:66.779987px;}
.x35{left:71.099987px;}
.x11{left:74.340000px;}
.x17{left:80.460000px;}
.x1d{left:81.900000px;}
.x39{left:108.035987px;}
.x7{left:110.385000px;}
.x2{left:115.950000px;}
.x3a{left:121.896000px;}
.x4b{left:126.395987px;}
.x5{left:131.805000px;}
.x8{left:133.785000px;}
.xe{left:138.096000px;}
.x21{left:140.076000px;}
.x25{left:141.696000px;}
.x41{left:179.490000px;}
.x3{left:181.650000px;}
.x46{left:183.810000px;}
.x4c{left:187.409987px;}
.x4d{left:196.949987px;}
.x19{left:207.390000px;}
.x4e{left:208.649987px;}
.x37{left:215.490000px;}
.x26{left:218.550000px;}
.x31{left:225.930000px;}
.x2a{left:232.770000px;}
.x42{left:236.370000px;}
.x1e{left:257.250000px;}
.xb{left:272.234987px;}
.x3b{left:279.975000px;}
.x10{left:295.275000px;}
.x27{left:299.955000px;}
.x4f{left:304.094987px;}
.x47{left:316.515000px;}
.x13{left:318.855000px;}
.x34{left:325.875000px;}
.xd{left:340.454987px;}
.xa{left:342.795000px;}
.x50{left:356.654987px;}
.x1a{left:359.535000px;}
.x51{left:366.374987px;}
.x22{left:382.575000px;}
.x3d{left:395.175000px;}
.x2f{left:405.794987px;}
.x29{left:410.295000px;}
.x2c{left:418.575000px;}
.x52{left:421.454987px;}
.x14{left:425.055000px;}
.x53{left:431.174987px;}
.x1f{left:432.795000px;}
.x43{left:450.645000px;}
.x38{left:472.065000px;}
.x3e{left:475.485000px;}
.x18{left:481.245000px;}
.x54{left:491.684987px;}
.x55{left:501.404987px;}
.x23{left:545.505000px;}
.x48{left:550.185000px;}
.x56{left:554.144987px;}
.x15{left:563.325000px;}
.x2d{left:575.385000px;}
.x3f{left:585.645000px;}
.x1b{left:592.845000px;}
.x20{left:608.145000px;}
.x44{left:617.865000px;}
.xf{left:621.465000px;}
.x2e{left:649.950000px;}
.x33{left:660.570000px;}
.x40{left:665.970000px;}
.x49{left:667.050000px;}
.x9{left:681.450000px;}
.x16{left:701.610000px;}
.x45{left:713.670000px;}
.x24{left:719.610000px;}
.x1c{left:734.730000px;}
.xc{left:778.469987px;}
.x4a{left:839.159987px;}
@media print{
.v2{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:18.560000pt;}
.v1{vertical-align:21.120000pt;}
.ls31{letter-spacing:-1.968000pt;}
.ls32{letter-spacing:-1.600000pt;}
.ls16{letter-spacing:-1.328000pt;}
.ls28{letter-spacing:-1.098667pt;}
.ls29{letter-spacing:-1.050667pt;}
.ls20{letter-spacing:-0.960000pt;}
.ls17{letter-spacing:-0.688000pt;}
.ls21{letter-spacing:-0.640000pt;}
.ls33{letter-spacing:-0.592000pt;}
.ls1d{letter-spacing:-0.544000pt;}
.ls14{letter-spacing:-0.480000pt;}
.ls18{letter-spacing:-0.409067pt;}
.lsb{letter-spacing:-0.320000pt;}
.ls25{letter-spacing:-0.230933pt;}
.ls35{letter-spacing:-0.225067pt;}
.ls26{letter-spacing:-0.183467pt;}
.lsc{letter-spacing:-0.094933pt;}
.lse{letter-spacing:-0.047360pt;}
.ls9{letter-spacing:0.000000pt;}
.ls19{letter-spacing:0.047360pt;}
.lsf{letter-spacing:0.094933pt;}
.ls10{letter-spacing:0.133120pt;}
.ls22{letter-spacing:0.136533pt;}
.ls7{letter-spacing:0.160000pt;}
.ls15{letter-spacing:0.183467pt;}
.lsa{letter-spacing:0.192000pt;}
.ls13{letter-spacing:0.230933pt;}
.ls6{letter-spacing:0.231040pt;}
.ls0{letter-spacing:0.256000pt;}
.ls2e{letter-spacing:0.265600pt;}
.lsd{letter-spacing:0.272533pt;}
.ls2{letter-spacing:0.320000pt;}
.ls2c{letter-spacing:0.426667pt;}
.ls8{letter-spacing:0.800000pt;}
.ls30{letter-spacing:1.440000pt;}
.ls1a{letter-spacing:2.080000pt;}
.ls1f{letter-spacing:5.072640pt;}
.ls2a{letter-spacing:6.352640pt;}
.ls34{letter-spacing:6.560000pt;}
.ls24{letter-spacing:8.272640pt;}
.ls1c{letter-spacing:8.480000pt;}
.ls1{letter-spacing:8.912640pt;}
.ls2f{letter-spacing:9.120000pt;}
.ls27{letter-spacing:9.552640pt;}
.ls1b{letter-spacing:10.832640pt;}
.ls23{letter-spacing:12.112640pt;}
.ls11{letter-spacing:13.392640pt;}
.ls1e{letter-spacing:14.672640pt;}
.ls2d{letter-spacing:17.440000pt;}
.ls12{letter-spacing:22.480640pt;}
.ls4{letter-spacing:38.533120pt;}
.ls5{letter-spacing:38.560000pt;}
.ls3{letter-spacing:39.040000pt;}
.ls2b{letter-spacing:40.912640pt;}
.ws2{word-spacing:-21.600000pt;}
.ws17{word-spacing:-16.000000pt;}
.ws1{word-spacing:-14.720000pt;}
.ws0{word-spacing:-14.656000pt;}
.ws5{word-spacing:-13.600000pt;}
.ws9{word-spacing:-13.552533pt;}
.wsd{word-spacing:-13.510933pt;}
.wse{word-spacing:-13.463467pt;}
.ws16{word-spacing:-13.416533pt;}
.wsb{word-spacing:-13.374933pt;}
.ws12{word-spacing:-13.327360pt;}
.ws6{word-spacing:-13.280000pt;}
.wsa{word-spacing:-13.232640pt;}
.ws8{word-spacing:-13.185067pt;}
.ws19{word-spacing:-13.096533pt;}
.ws1f{word-spacing:-13.054933pt;}
.ws18{word-spacing:-13.049067pt;}
.ws7{word-spacing:-12.960000pt;}
.ws11{word-spacing:-12.870933pt;}
.ws13{word-spacing:-12.736000pt;}
.ws1e{word-spacing:-12.688000pt;}
.ws10{word-spacing:-12.592000pt;}
.ws14{word-spacing:-12.320000pt;}
.ws1b{word-spacing:-12.229333pt;}
.ws1a{word-spacing:-12.181333pt;}
.wsf{word-spacing:-11.952000pt;}
.ws1d{word-spacing:-11.680000pt;}
.ws1c{word-spacing:-11.312000pt;}
.ws3{word-spacing:-9.280000pt;}
.ws4{word-spacing:-8.640000pt;}
.ws15{word-spacing:-8.000000pt;}
.wsc{word-spacing:0.000000pt;}
._17{margin-left:-6.347520pt;}
._15{margin-left:-5.394773pt;}
._5{margin-left:-3.944960pt;}
._6{margin-left:-2.178133pt;}
._2{margin-left:-1.024000pt;}
._0{width:1.171200pt;}
._3{width:2.750507pt;}
._4{width:4.430293pt;}
._10{width:5.472000pt;}
._a{width:6.765440pt;}
._7{width:7.966720pt;}
._8{width:9.294507pt;}
._9{width:11.102080pt;}
._14{width:12.103680pt;}
._f{width:14.284160pt;}
._11{width:15.720960pt;}
._12{width:16.841600pt;}
._16{width:18.166187pt;}
._e{width:19.704960pt;}
._d{width:21.035520pt;}
._18{width:26.248107pt;}
._19{width:27.655893pt;}
._1a{width:29.339093pt;}
._13{width:32.031360pt;}
._20{width:35.727360pt;}
._1f{width:36.697387pt;}
._b{width:38.518187pt;}
._21{width:39.888213pt;}
._2c{width:45.551147pt;}
._1b{width:46.689920pt;}
._1c{width:47.845547pt;}
._27{width:48.814720pt;}
._c{width:52.533120pt;}
._23{width:55.759573pt;}
._22{width:57.104000pt;}
._24{width:59.476907pt;}
._25{width:60.474453pt;}
._26{width:65.691307pt;}
._1d{width:68.790400pt;}
._2a{width:85.047467pt;}
._2b{width:87.029333pt;}
._28{width:88.253227pt;}
._29{width:89.280000pt;}
._1e{width:95.380267pt;}
._1{width:977.802667pt;}
.fs6{font-size:34.560000pt;}
.fs5{font-size:37.120000pt;}
.fs4{font-size:53.120000pt;}
.fs2{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.fs3{font-size:85.120000pt;}
.fs1{font-size:117.120000pt;}
.y0{bottom:0.000000pt;}
.y2{bottom:1.280000pt;}
.y148{bottom:4.960000pt;}
.y55{bottom:5.120000pt;}
.y3c{bottom:5.280000pt;}
.y12f{bottom:5.440000pt;}
.ye8{bottom:5.600000pt;}
.y124{bottom:5.760000pt;}
.y11a{bottom:5.920000pt;}
.y118{bottom:6.080000pt;}
.y122{bottom:6.240000pt;}
.y115{bottom:6.400000pt;}
.y16c{bottom:6.426667pt;}
.y7{bottom:7.200000pt;}
.y3a{bottom:9.920000pt;}
.ye5{bottom:22.720000pt;}
.yf9{bottom:22.760000pt;}
.y54{bottom:22.880000pt;}
.y178{bottom:23.360000pt;}
.y151{bottom:23.386667pt;}
.y154{bottom:24.960000pt;}
.y39{bottom:27.520000pt;}
.y6{bottom:32.160000pt;}
.y53{bottom:40.480000pt;}
.y14b{bottom:41.760000pt;}
.y38{bottom:45.120000pt;}
.yb{bottom:51.040000pt;}
.y5{bottom:51.680000pt;}
.y52{bottom:58.080000pt;}
.y37{bottom:62.720000pt;}
.y1f{bottom:71.680000pt;}
.y4{bottom:72.800000pt;}
.y51{bottom:75.680000pt;}
.y8d{bottom:76.160000pt;}
.ye1{bottom:77.760000pt;}
.y16f{bottom:78.560000pt;}
.y108{bottom:79.040000pt;}
.ycb{bottom:79.200000pt;}
.y36{bottom:80.320000pt;}
.y140{bottom:82.240000pt;}
.y191{bottom:84.160000pt;}
.yba{bottom:85.760000pt;}
.y1e{bottom:89.440000pt;}
.y50{bottom:93.280000pt;}
.y8c{bottom:93.760000pt;}
.ye0{bottom:95.360000pt;}
.y16e{bottom:96.160000pt;}
.y107{bottom:96.640000pt;}
.y9{bottom:96.666667pt;}
.yca{bottom:96.800000pt;}
.y35{bottom:98.080000pt;}
.y13f{bottom:99.840000pt;}
.y190{bottom:101.760000pt;}
.yb9{bottom:103.360000pt;}
.y3{bottom:104.986667pt;}
.y1d{bottom:107.040000pt;}
.y16d{bottom:109.440000pt;}
.y4f{bottom:111.080000pt;}
.yc9{bottom:111.520000pt;}
.ydf{bottom:113.120000pt;}
.y106{bottom:114.240000pt;}
.y34{bottom:115.720000pt;}
.y8{bottom:116.186667pt;}
.y13e{bottom:117.440000pt;}
.y8b{bottom:119.360000pt;}
.yb8{bottom:121.120000pt;}
.y1c{bottom:124.640000pt;}
.y4e{bottom:128.680000pt;}
.y16b{bottom:129.120000pt;}
.yde{bottom:130.720000pt;}
.y105{bottom:131.840000pt;}
.y33{bottom:133.320000pt;}
.y13d{bottom:135.066667pt;}
.y8a{bottom:137.146667pt;}
.yb7{bottom:138.746667pt;}
.y1b{bottom:142.266667pt;}
.y4d{bottom:146.280000pt;}
.ydd{bottom:148.346667pt;}
.y104{bottom:149.466667pt;}
.y32{bottom:150.920000pt;}
.y13c{bottom:152.666667pt;}
.y16a{bottom:153.946667pt;}
.y89{bottom:154.746667pt;}
.yb6{bottom:156.346667pt;}
.y1a{bottom:159.866667pt;}
.y4c{bottom:163.880000pt;}
.ydc{bottom:165.946667pt;}
.y103{bottom:167.226667pt;}
.y31{bottom:168.520000pt;}
.y13b{bottom:170.426667pt;}
.y169{bottom:171.546667pt;}
.y88{bottom:172.346667pt;}
.yb5{bottom:173.946667pt;}
.y19{bottom:177.626667pt;}
.y4b{bottom:181.480000pt;}
.ydb{bottom:183.546667pt;}
.y102{bottom:184.826667pt;}
.y30{bottom:186.280000pt;}
.y13a{bottom:188.026667pt;}
.y168{bottom:189.146667pt;}
.y87{bottom:189.946667pt;}
.yb4{bottom:191.546667pt;}
.y18{bottom:195.226667pt;}
.y4a{bottom:199.240000pt;}
.y139{bottom:200.506667pt;}
.yda{bottom:201.306667pt;}
.y101{bottom:202.426667pt;}
.y2f{bottom:203.880000pt;}
.y167{bottom:206.746667pt;}
.y86{bottom:207.546667pt;}
.yb3{bottom:209.306667pt;}
.y17{bottom:212.826667pt;}
.y49{bottom:216.840000pt;}
.yd9{bottom:218.906667pt;}
.y138{bottom:219.386667pt;}
.y100{bottom:220.026667pt;}
.y2e{bottom:221.480000pt;}
.y166{bottom:224.346667pt;}
.y85{bottom:225.306667pt;}
.yb2{bottom:226.906667pt;}
.y16{bottom:230.426667pt;}
.y48{bottom:234.440000pt;}
.yd8{bottom:236.506667pt;}
.y137{bottom:237.466667pt;}
.yff{bottom:237.626667pt;}
.y2d{bottom:239.080000pt;}
.y165{bottom:242.106667pt;}
.y84{bottom:242.906667pt;}
.yb1{bottom:244.506667pt;}
.y20{bottom:247.546667pt;}
.y47{bottom:252.040000pt;}
.yd7{bottom:254.106667pt;}
.yfe{bottom:255.386667pt;}
.y136{bottom:256.186667pt;}
.y2c{bottom:256.680000pt;}
.y164{bottom:259.706667pt;}
.y83{bottom:260.506667pt;}
.yb0{bottom:262.106667pt;}
.y46{bottom:269.640000pt;}
.yd6{bottom:271.706667pt;}
.yfd{bottom:272.986667pt;}
.y135{bottom:273.786667pt;}
.y2b{bottom:274.440000pt;}
.y163{bottom:277.306667pt;}
.y82{bottom:278.106667pt;}
.yaf{bottom:279.706667pt;}
.yfc{bottom:286.106667pt;}
.y45{bottom:287.400000pt;}
.yd5{bottom:289.466667pt;}
.y134{bottom:291.386667pt;}
.y2a{bottom:292.040000pt;}
.y162{bottom:294.906667pt;}
.y81{bottom:295.706667pt;}
.yae{bottom:297.466667pt;}
.yfb{bottom:304.346667pt;}
.y44{bottom:305.000000pt;}
.yd4{bottom:307.066667pt;}
.y29{bottom:309.640000pt;}
.y133{bottom:310.106667pt;}
.y161{bottom:312.506667pt;}
.y80{bottom:313.466667pt;}
.yc8{bottom:315.066667pt;}
.y43{bottom:322.600000pt;}
.yfa{bottom:322.746667pt;}
.yad{bottom:323.066667pt;}
.yd3{bottom:324.666667pt;}
.y28{bottom:327.240000pt;}
.y132{bottom:327.706667pt;}
.y160{bottom:330.266667pt;}
.y7f{bottom:331.066667pt;}
.yc7{bottom:332.666667pt;}
.y42{bottom:340.226667pt;}
.yac{bottom:340.666667pt;}
.yf8{bottom:340.986667pt;}
.yd2{bottom:342.266667pt;}
.y27{bottom:344.866667pt;}
.y131{bottom:345.786667pt;}
.y15f{bottom:347.866667pt;}
.y7e{bottom:348.666667pt;}
.yc6{bottom:350.266667pt;}
.y41{bottom:357.826667pt;}
.yab{bottom:358.306667pt;}
.y26{bottom:362.626667pt;}
.y130{bottom:364.546667pt;}
.y15e{bottom:365.506667pt;}
.y7d{bottom:366.306667pt;}
.yc5{bottom:367.906667pt;}
.y40{bottom:375.586667pt;}
.yaa{bottom:375.906667pt;}
.y25{bottom:380.226667pt;}
.yf7{bottom:382.146667pt;}
.y15d{bottom:383.106667pt;}
.y7c{bottom:383.906667pt;}
.yc4{bottom:385.666667pt;}
.y3f{bottom:393.186667pt;}
.ya9{bottom:393.666667pt;}
.y24{bottom:397.826667pt;}
.yf6{bottom:399.746667pt;}
.y12e{bottom:400.546667pt;}
.y15c{bottom:400.706667pt;}
.y7b{bottom:401.666667pt;}
.yc3{bottom:403.266667pt;}
.y3e{bottom:410.786667pt;}
.ya8{bottom:411.266667pt;}
.y23{bottom:415.426667pt;}
.yf5{bottom:417.346667pt;}
.y15b{bottom:418.466667pt;}
.y7a{bottom:419.266667pt;}
.yc2{bottom:420.866667pt;}
.y12d{bottom:423.586667pt;}
.y3d{bottom:428.386667pt;}
.ya7{bottom:428.866667pt;}
.y22{bottom:433.026667pt;}
.yf4{bottom:434.946667pt;}
.y15a{bottom:436.066667pt;}
.y79{bottom:436.866667pt;}
.yc1{bottom:438.466667pt;}
.y12c{bottom:441.346667pt;}
.ya6{bottom:446.466667pt;}
.y21{bottom:450.786667pt;}
.yf3{bottom:452.706667pt;}
.y159{bottom:453.666667pt;}
.y78{bottom:454.466667pt;}
.yc0{bottom:456.066667pt;}
.y12b{bottom:458.946667pt;}
.ya5{bottom:464.066667pt;}
.y18f{bottom:467.586667pt;}
.yf2{bottom:470.306667pt;}
.y158{bottom:471.266667pt;}
.y77{bottom:472.066667pt;}
.ybf{bottom:473.826667pt;}
.y12a{bottom:476.546667pt;}
.ya4{bottom:481.826667pt;}
.y18e{bottom:486.626667pt;}
.yf1{bottom:487.906667pt;}
.y157{bottom:488.866667pt;}
.y76{bottom:489.826667pt;}
.ybe{bottom:491.426667pt;}
.y129{bottom:494.146667pt;}
.ya3{bottom:499.426667pt;}
.yf0{bottom:505.506667pt;}
.y18d{bottom:505.666667pt;}
.y156{bottom:506.466667pt;}
.y75{bottom:507.426667pt;}
.ybd{bottom:509.026667pt;}
.y128{bottom:511.746667pt;}
.ya2{bottom:517.026667pt;}
.y153{bottom:522.146667pt;}
.yef{bottom:523.106667pt;}
.y74{bottom:525.026667pt;}
.ybc{bottom:526.626667pt;}
.y127{bottom:529.506667pt;}
.y18c{bottom:529.986667pt;}
.ya1{bottom:534.626667pt;}
.yee{bottom:540.866667pt;}
.y155{bottom:541.186667pt;}
.y73{bottom:542.626667pt;}
.ybb{bottom:544.226667pt;}
.y126{bottom:547.106667pt;}
.y18b{bottom:547.586667pt;}
.ya0{bottom:552.226667pt;}
.yed{bottom:558.466667pt;}
.y72{bottom:560.226667pt;}
.yd1{bottom:561.986667pt;}
.y18a{bottom:565.186667pt;}
.y9f{bottom:569.986667pt;}
.yec{bottom:576.066667pt;}
.y71{bottom:578.013333pt;}
.y152{bottom:578.493333pt;}
.y125{bottom:578.813333pt;}
.yd0{bottom:579.613333pt;}
.y189{bottom:582.973333pt;}
.y9e{bottom:587.613333pt;}
.yeb{bottom:593.693333pt;}
.y70{bottom:595.613333pt;}
.y123{bottom:596.893333pt;}
.ycf{bottom:597.213333pt;}
.y188{bottom:600.573333pt;}
.y150{bottom:602.013333pt;}
.y9d{bottom:605.213333pt;}
.yea{bottom:611.293333pt;}
.y6f{bottom:613.213333pt;}
.yce{bottom:614.813333pt;}
.y121{bottom:615.133333pt;}
.y187{bottom:618.173333pt;}
.y14f{bottom:619.613333pt;}
.y9c{bottom:622.813333pt;}
.ye9{bottom:629.053333pt;}
.y6e{bottom:630.813333pt;}
.ycd{bottom:632.413333pt;}
.y120{bottom:633.853333pt;}
.y186{bottom:635.773333pt;}
.y14e{bottom:637.213333pt;}
.y9b{bottom:640.413333pt;}
.ye7{bottom:642.173333pt;}
.y6d{bottom:648.413333pt;}
.ycc{bottom:650.173333pt;}
.y14a{bottom:650.333333pt;}
.y11f{bottom:651.933333pt;}
.y185{bottom:653.373333pt;}
.y9a{bottom:658.173333pt;}
.ye4{bottom:660.253333pt;}
.y6c{bottom:666.173333pt;}
.y14d{bottom:668.733333pt;}
.y11e{bottom:670.333333pt;}
.y184{bottom:671.133333pt;}
.y99{bottom:675.773333pt;}
.ye6{bottom:677.853333pt;}
.y6b{bottom:683.773333pt;}
.y14c{bottom:686.973333pt;}
.y11d{bottom:688.733333pt;}
.y3b{bottom:693.053333pt;}
.y98{bottom:693.373333pt;}
.ye3{bottom:695.453333pt;}
.y6a{bottom:701.373333pt;}
.y149{bottom:705.213333pt;}
.y183{bottom:706.333333pt;}
.y11c{bottom:707.293333pt;}
.y97{bottom:710.973333pt;}
.ye2{bottom:713.693333pt;}
.y69{bottom:718.973333pt;}
.y15{bottom:722.813333pt;}
.y147{bottom:723.613333pt;}
.y182{bottom:723.933333pt;}
.y11b{bottom:725.373333pt;}
.y96{bottom:728.573333pt;}
.y68{bottom:736.573333pt;}
.y181{bottom:741.533333pt;}
.y119{bottom:743.773333pt;}
.y14{bottom:745.213333pt;}
.y95{bottom:746.333333pt;}
.y146{bottom:752.413333pt;}
.y67{bottom:754.333333pt;}
.y180{bottom:759.293333pt;}
.y117{bottom:762.173333pt;}
.y13{bottom:762.813333pt;}
.y94{bottom:763.933333pt;}
.y145{bottom:765.533333pt;}
.y66{bottom:771.933333pt;}
.y17f{bottom:776.893333pt;}
.y12{bottom:780.413333pt;}
.y116{bottom:780.733333pt;}
.y93{bottom:781.533333pt;}
.y144{bottom:784.573333pt;}
.y65{bottom:789.533333pt;}
.y17e{bottom:794.493333pt;}
.y11{bottom:798.053333pt;}
.y114{bottom:798.853333pt;}
.y92{bottom:799.173333pt;}
.y143{bottom:803.653333pt;}
.y64{bottom:807.173333pt;}
.y17d{bottom:812.133333pt;}
.y10{bottom:815.653333pt;}
.y91{bottom:816.773333pt;}
.y113{bottom:823.493333pt;}
.y63{bottom:824.773333pt;}
.y17c{bottom:825.253333pt;}
.y142{bottom:827.173333pt;}
.yf{bottom:829.253333pt;}
.y90{bottom:834.533333pt;}
.y112{bottom:841.093333pt;}
.y62{bottom:842.533333pt;}
.y17a{bottom:843.653333pt;}
.y141{bottom:844.773333pt;}
.ye{bottom:848.133333pt;}
.y8f{bottom:852.133333pt;}
.y111{bottom:858.693333pt;}
.y61{bottom:860.133333pt;}
.y17b{bottom:861.893333pt;}
.yd{bottom:868.933333pt;}
.y8e{bottom:869.733333pt;}
.y110{bottom:876.453333pt;}
.y60{bottom:877.733333pt;}
.y177{bottom:880.293333pt;}
.y10f{bottom:894.053333pt;}
.y5f{bottom:895.333333pt;}
.yc{bottom:897.093333pt;}
.y179{bottom:898.533333pt;}
.y10e{bottom:911.653333pt;}
.y5e{bottom:912.933333pt;}
.ya{bottom:920.293333pt;}
.y176{bottom:921.893333pt;}
.y10d{bottom:924.773333pt;}
.y5d{bottom:930.693333pt;}
.y1{bottom:934.533333pt;}
.y10c{bottom:942.373333pt;}
.y175{bottom:944.933333pt;}
.y5c{bottom:948.293333pt;}
.y10b{bottom:960.133333pt;}
.y174{bottom:962.533333pt;}
.y5b{bottom:965.893333pt;}
.y171{bottom:975.653333pt;}
.y10a{bottom:977.733333pt;}
.y5a{bottom:983.493333pt;}
.y173{bottom:994.053333pt;}
.y59{bottom:1001.093333pt;}
.y172{bottom:1012.293333pt;}
.y109{bottom:1012.933333pt;}
.y58{bottom:1018.853333pt;}
.y170{bottom:1030.560000pt;}
.y57{bottom:1036.480000pt;}
.y56{bottom:1062.080000pt;}
.h12{height:17.600000pt;}
.h16{height:17.632000pt;}
.hf{height:17.760000pt;}
.h1e{height:17.920000pt;}
.h14{height:18.080000pt;}
.h18{height:18.112000pt;}
.h1c{height:18.240000pt;}
.h1a{height:18.400000pt;}
.h22{height:18.432000pt;}
.h19{height:18.560000pt;}
.h1d{height:18.592000pt;}
.h1b{height:18.720000pt;}
.h20{height:18.752000pt;}
.h17{height:18.880000pt;}
.h29{height:18.912000pt;}
.h23{height:22.880000pt;}
.ha{height:24.131250pt;}
.h13{height:35.200000pt;}
.h15{height:35.232000pt;}
.h2c{height:35.840000pt;}
.h26{height:35.872000pt;}
.hb{height:37.090625pt;}
.h27{height:37.440000pt;}
.h8{height:37.479688pt;}
.h21{height:38.361562pt;}
.hc{height:38.672812pt;}
.h5{height:41.112500pt;}
.h1f{height:42.691250pt;}
.h2b{height:42.797917pt;}
.h11{height:43.782500pt;}
.h6{height:44.687500pt;}
.h28{height:46.593750pt;}
.h9{height:47.310625pt;}
.h25{height:54.240000pt;}
.h2a{height:54.272000pt;}
.he{height:58.563750pt;}
.h24{height:58.599688pt;}
.h7{height:60.057813pt;}
.h3{height:65.531250pt;}
.h4{height:93.387187pt;}
.h2{height:139.386667pt;}
.h10{height:440.866667pt;}
.hd{height:463.266667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w30{width:48.352000pt;}
.w39{width:48.512000pt;}
.w45{width:50.560000pt;}
.w21{width:51.040000pt;}
.w3b{width:51.232000pt;}
.w1d{width:52.032000pt;}
.w23{width:52.352000pt;}
.w2e{width:65.472000pt;}
.w3c{width:66.080000pt;}
.w2c{width:67.200000pt;}
.w24{width:67.680000pt;}
.w17{width:67.712000pt;}
.w38{width:69.920000pt;}
.w3d{width:70.272000pt;}
.w42{width:70.592000pt;}
.w25{width:71.712000pt;}
.w35{width:75.072000pt;}
.w3a{width:77.760000pt;}
.w4d{width:83.680000pt;}
.w31{width:84.000000pt;}
.w4a{width:84.512000pt;}
.w37{width:88.032000pt;}
.w46{width:88.672000pt;}
.w4f{width:89.472000pt;}
.w36{width:91.520000pt;}
.w44{width:93.600000pt;}
.wd{width:93.760000pt;}
.w4b{width:93.792000pt;}
.w4c{width:94.592000pt;}
.w2b{width:96.672000pt;}
.w43{width:97.280000pt;}
.w26{width:97.440000pt;}
.w15{width:99.200000pt;}
.w41{width:101.760000pt;}
.w2f{width:102.560000pt;}
.w54{width:103.040000pt;}
.w53{width:103.072000pt;}
.w51{width:103.200000pt;}
.w52{width:103.232000pt;}
.wf{width:104.192000pt;}
.w14{width:108.192000pt;}
.w12{width:112.832000pt;}
.w2{width:113.472000pt;}
.w50{width:117.312000pt;}
.wa{width:118.592000pt;}
.we{width:122.272000pt;}
.w16{width:126.112000pt;}
.w32{width:126.912000pt;}
.w2a{width:132.992000pt;}
.w13{width:135.226667pt;}
.w47{width:136.346667pt;}
.w2d{width:138.746667pt;}
.w4{width:139.706667pt;}
.w40{width:139.866667pt;}
.w1f{width:144.826667pt;}
.w49{width:148.000000pt;}
.w34{width:150.586667pt;}
.w20{width:154.746667pt;}
.w1a{width:155.226667pt;}
.w1b{width:155.386667pt;}
.w18{width:155.866667pt;}
.w19{width:156.026667pt;}
.w3e{width:156.506667pt;}
.w33{width:158.746667pt;}
.w48{width:189.826667pt;}
.w1e{width:215.546667pt;}
.wc{width:216.706667pt;}
.w6{width:253.826667pt;}
.w3f{width:269.466667pt;}
.wb{width:289.946667pt;}
.w11{width:293.026667pt;}
.w27{width:319.746667pt;}
.w10{width:356.253333pt;}
.w22{width:412.413333pt;}
.w9{width:429.666667pt;}
.w7{width:439.773333pt;}
.w3{width:444.253333pt;}
.w8{width:548.253333pt;}
.w29{width:607.013333pt;}
.w28{width:611.493333pt;}
.w1c{width:618.213333pt;}
.w4e{width:655.200000pt;}
.w5{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x28{left:-14.080000pt;}
.x0{left:0.000000pt;}
.x2b{left:2.080000pt;}
.x12{left:3.840000pt;}
.x3c{left:5.920000pt;}
.x6{left:7.200000pt;}
.x32{left:8.800000pt;}
.x30{left:11.392000pt;}
.x4{left:30.240000pt;}
.x1{left:48.000000pt;}
.x36{left:59.359988pt;}
.x35{left:63.199988pt;}
.x11{left:66.080000pt;}
.x17{left:71.520000pt;}
.x1d{left:72.800000pt;}
.x39{left:96.031988pt;}
.x7{left:98.120000pt;}
.x2{left:103.066667pt;}
.x3a{left:108.352000pt;}
.x4b{left:112.351988pt;}
.x5{left:117.160000pt;}
.x8{left:118.920000pt;}
.xe{left:122.752000pt;}
.x21{left:124.512000pt;}
.x25{left:125.952000pt;}
.x41{left:159.546667pt;}
.x3{left:161.466667pt;}
.x46{left:163.386667pt;}
.x4c{left:166.586655pt;}
.x4d{left:175.066655pt;}
.x19{left:184.346667pt;}
.x4e{left:185.466655pt;}
.x37{left:191.546667pt;}
.x26{left:194.266667pt;}
.x31{left:200.826667pt;}
.x2a{left:206.906667pt;}
.x42{left:210.106667pt;}
.x1e{left:228.666667pt;}
.xb{left:241.986655pt;}
.x3b{left:248.866667pt;}
.x10{left:262.466667pt;}
.x27{left:266.626667pt;}
.x4f{left:270.306655pt;}
.x47{left:281.346667pt;}
.x13{left:283.426667pt;}
.x34{left:289.666667pt;}
.xd{left:302.626655pt;}
.xa{left:304.706667pt;}
.x50{left:317.026655pt;}
.x1a{left:319.586667pt;}
.x51{left:325.666655pt;}
.x22{left:340.066667pt;}
.x3d{left:351.266667pt;}
.x2f{left:360.706655pt;}
.x29{left:364.706667pt;}
.x2c{left:372.066667pt;}
.x52{left:374.626655pt;}
.x14{left:377.826667pt;}
.x53{left:383.266655pt;}
.x1f{left:384.706667pt;}
.x43{left:400.573333pt;}
.x38{left:419.613333pt;}
.x3e{left:422.653333pt;}
.x18{left:427.773333pt;}
.x54{left:437.053322pt;}
.x55{left:445.693322pt;}
.x23{left:484.893333pt;}
.x48{left:489.053333pt;}
.x56{left:492.573322pt;}
.x15{left:500.733333pt;}
.x2d{left:511.453333pt;}
.x3f{left:520.573333pt;}
.x1b{left:526.973333pt;}
.x20{left:540.573333pt;}
.x44{left:549.213333pt;}
.xf{left:552.413333pt;}
.x2e{left:577.733333pt;}
.x33{left:587.173333pt;}
.x40{left:591.973333pt;}
.x49{left:592.933333pt;}
.x9{left:605.733333pt;}
.x16{left:623.653333pt;}
.x45{left:634.373333pt;}
.x24{left:639.653333pt;}
.x1c{left:653.093333pt;}
.xc{left:691.973322pt;}
.x4a{left:745.919988pt;}
}




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