
    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_b947747dacf4258dd524671a.woff')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_99f81c894f99456fcb744275.woff')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_defca4745d71b77212ec84c0.woff')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_e5e4447f62e329dd87debaa3.woff')format("woff");}.ff4{font-family:ff4;line-height:0.938965;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_6806c1c6024172a8b8116a40.woff')format("woff");}.ff5{font-family:ff5;line-height:0.938965;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_ddb64498bde728ddd383a367.woff')format("woff");}.ff6{font-family:ff6;line-height:0.708008;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_82b9a768071f6a1a57e94f2e.woff')format("woff");}.ff7{font-family:ff7;line-height:0.708008;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_dc81cf37214e8bdefd4fa977.woff')format("woff");}.ff8{font-family:ff8;line-height:0.690918;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_59c517336c79b347652981a6.woff')format("woff");}.ff9{font-family:ff9;line-height:0.758789;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_130301694ab792f9947e2b7d.woff')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_51d7697c73b3f292a1678398.woff')format("woff");}.ffb{font-family:ffb;line-height:0.682617;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_5d123772bb4c8abe91c34807.woff')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_1b1feca483e06a93db47309b.woff')format("woff");}.ffd{font-family:ffd;line-height:0.946777;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(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);}
.v0{vertical-align:0.000000px;}
.ls9{letter-spacing:-15.660000px;}
.lsf{letter-spacing:-0.460200px;}
.ls12{letter-spacing:-0.360000px;}
.ls11{letter-spacing:-0.106800px;}
.ls8{letter-spacing:-0.053280px;}
.ls5{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.017280px;}
.ls6{letter-spacing:0.053280px;}
.lsa{letter-spacing:0.109440px;}
.ls2{letter-spacing:0.120000px;}
.ls13{letter-spacing:0.135600px;}
.lsc{letter-spacing:0.144000px;}
.ls4{letter-spacing:0.153600px;}
.ls15{letter-spacing:0.156000px;}
.ls1{letter-spacing:0.180000px;}
.ls7{letter-spacing:0.259800px;}
.ls10{letter-spacing:0.298800px;}
.ls3{letter-spacing:0.360000px;}
.ls16{letter-spacing:16.506720px;}
.ls14{letter-spacing:46.026720px;}
.lsd{letter-spacing:55.530720px;}
.lse{letter-spacing:64.026720px;}
.lsb{letter-spacing:64.170720px;}
.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;}
}
.ws6{word-spacing:-59.760000px;}
.ws0{word-spacing:-16.560000px;}
.ws9{word-spacing:-15.300000px;}
.wsa{word-spacing:-15.238800px;}
.ws8{word-spacing:-15.120000px;}
.ws4{word-spacing:-15.093600px;}
.ws1{word-spacing:-14.993280px;}
.ws2{word-spacing:-14.940000px;}
.ws3{word-spacing:-14.886720px;}
.wsb{word-spacing:-14.833200px;}
.ws7{word-spacing:-14.479800px;}
.ws5{word-spacing:0.000000px;}
._1e{margin-left:-2279.653440px;}
._7{margin-left:-1951.836480px;}
._b{margin-left:-1804.893600px;}
._9{margin-left:-675.803520px;}
._8{margin-left:-590.784480px;}
._39{margin-left:-7.884240px;}
._1{margin-left:-6.094080px;}
._36{margin-left:-4.471920px;}
._4{margin-left:-3.444480px;}
._11{margin-left:-2.410080px;}
._2{margin-left:-1.391040px;}
._0{width:1.010880px;}
._a{width:2.278560px;}
._10{width:4.252320px;}
._f{width:5.602080px;}
._e{width:6.812640px;}
._14{width:7.887360px;}
._d{width:9.545040px;}
._c{width:11.430720px;}
._28{width:12.493440px;}
._1b{width:13.565520px;}
._1c{width:15.960960px;}
._13{width:17.069040px;}
._12{width:18.308880px;}
._16{width:19.362240px;}
._15{width:20.497680px;}
._19{width:21.877200px;}
._24{width:22.968000px;}
._18{width:24.795360px;}
._1d{width:25.942320px;}
._17{width:26.956800px;}
._27{width:28.684800px;}
._21{width:29.880000px;}
._33{width:31.106880px;}
._22{width:32.150880px;}
._23{width:33.943680px;}
._32{width:35.143920px;}
._2b{width:36.398880px;}
._20{width:37.871280px;}
._1f{width:38.903760px;}
._2c{width:40.875840px;}
._2e{width:42.489360px;}
._2d{width:44.282160px;}
._2f{width:45.422640px;}
._26{width:46.634400px;}
._25{width:47.808000px;}
._34{width:49.062960px;}
._31{width:51.453360px;}
._29{width:52.593840px;}
._3d{width:54.308880px;}
._2a{width:55.337760px;}
._30{width:58.510080px;}
._3c{width:62.748000px;}
._3b{width:63.823680px;}
._37{width:66.192480px;}
._38{width:68.038560px;}
._35{width:71.652240px;}
._3e{width:73.026720px;}
._3f{width:74.216160px;}
._1a{width:81.398160px;}
._40{width:83.549520px;}
._3a{width:142.293600px;}
._6{width:202.500000px;}
._5{width:345.365760px;}
._3{width:631.448160px;}
.fc2{color:rgb(0,78,154);}
.fc1{color:transparent;}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:54.000000px;}
.fs4{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs2{font-size:72.000000px;}
.fs0{font-size:77.760000px;}
.fs5{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.yca{bottom:5.760000px;}
.yce{bottom:5.940000px;}
.y8{bottom:6.300000px;}
.y7{bottom:6.480000px;}
.y198{bottom:7.740000px;}
.y19a{bottom:7.920000px;}
.y17a{bottom:9.720000px;}
.ycc{bottom:9.900000px;}
.y176{bottom:10.080000px;}
.y132{bottom:10.440000px;}
.y15d{bottom:11.880000px;}
.y139{bottom:12.060000px;}
.y1a6{bottom:12.240000px;}
.y1ac{bottom:12.270000px;}
.y16a{bottom:13.005000px;}
.y160{bottom:13.140000px;}
.y11a{bottom:14.220000px;}
.y149{bottom:14.400000px;}
.y121{bottom:14.580000px;}
.y116{bottom:15.660000px;}
.y11f{bottom:15.690000px;}
.y12f{bottom:15.840000px;}
.yef{bottom:16.020000px;}
.y133{bottom:20.340000px;}
.y15b{bottom:21.780000px;}
.y166{bottom:21.960000px;}
.y162{bottom:21.990000px;}
.y11b{bottom:24.120000px;}
.y14a{bottom:24.300000px;}
.y135{bottom:25.560000px;}
.y117{bottom:25.740000px;}
.y11e{bottom:25.770000px;}
.yfa{bottom:26.460000px;}
.y131{bottom:30.420000px;}
.y15c{bottom:31.680000px;}
.y165{bottom:31.860000px;}
.y161{bottom:31.890000px;}
.y119{bottom:34.020000px;}
.y148{bottom:34.200000px;}
.yf2{bottom:36.540000px;}
.yf6{bottom:36.720000px;}
.y9{bottom:51.120000px;}
.y6{bottom:66.780000px;}
.y89{bottom:93.240000px;}
.y3c{bottom:96.300000px;}
.yf9{bottom:97.740000px;}
.y11c{bottom:99.360000px;}
.y73{bottom:102.240000px;}
.y177{bottom:103.680000px;}
.y91{bottom:104.040000px;}
.y37{bottom:105.300000px;}
.y14c{bottom:106.200000px;}
.yc7{bottom:108.000000px;}
.y1d2{bottom:109.440000px;}
.y1aa{bottom:111.240000px;}
.y88{bottom:113.040000px;}
.y3b{bottom:116.100000px;}
.yfc{bottom:118.260000px;}
.y72{bottom:122.040000px;}
.y36{bottom:125.100000px;}
.yc6{bottom:127.800000px;}
.y1d1{bottom:129.240000px;}
.y1a9{bottom:131.760000px;}
.y175{bottom:132.480000px;}
.y87{bottom:133.020000px;}
.y3a{bottom:136.080000px;}
.yfb{bottom:138.960000px;}
.y71{bottom:142.020000px;}
.y35{bottom:145.080000px;}
.yc5{bottom:147.780000px;}
.y1d0{bottom:149.040000px;}
.y1a8{bottom:152.490000px;}
.y86{bottom:152.850000px;}
.y39{bottom:155.910000px;}
.y118{bottom:156.630000px;}
.yf5{bottom:159.510000px;}
.y174{bottom:161.670000px;}
.y70{bottom:161.850000px;}
.y14b{bottom:163.650000px;}
.y34{bottom:164.910000px;}
.yc4{bottom:167.610000px;}
.y1cf{bottom:169.050000px;}
.y85{bottom:172.650000px;}
.y1a7{bottom:173.010000px;}
.y38{bottom:175.710000px;}
.yf8{bottom:180.030000px;}
.y6f{bottom:181.650000px;}
.y33{bottom:184.710000px;}
.yc3{bottom:187.410000px;}
.y1ce{bottom:188.850000px;}
.y173{bottom:190.470000px;}
.y84{bottom:192.450000px;}
.y1a5{bottom:193.530000px;}
.yf7{bottom:200.730000px;}
.y6e{bottom:201.450000px;}
.y147{bottom:201.810000px;}
.y32{bottom:204.510000px;}
.yc2{bottom:207.210000px;}
.y1cd{bottom:208.650000px;}
.y83{bottom:212.250000px;}
.y115{bottom:213.870000px;}
.y6d{bottom:221.250000px;}
.y31{bottom:224.310000px;}
.y172{bottom:225.030000px;}
.yc1{bottom:227.010000px;}
.y1cc{bottom:228.450000px;}
.y82{bottom:232.230000px;}
.y1a4{bottom:232.770000px;}
.y6c{bottom:241.230000px;}
.yf1{bottom:241.950000px;}
.y30{bottom:244.290000px;}
.y171{bottom:244.830000px;}
.yc0{bottom:246.990000px;}
.y1cb{bottom:248.250000px;}
.y81{bottom:252.030000px;}
.y1a3{bottom:252.570000px;}
.y146{bottom:259.230000px;}
.y114{bottom:260.130000px;}
.y6b{bottom:261.030000px;}
.yf4{bottom:262.470000px;}
.y2f{bottom:264.090000px;}
.y170{bottom:264.630000px;}
.ybf{bottom:266.790000px;}
.y1ca{bottom:268.230000px;}
.y80{bottom:271.830000px;}
.y1a2{bottom:272.370000px;}
.y113{bottom:279.930000px;}
.y6a{bottom:280.830000px;}
.yf3{bottom:282.990000px;}
.y2e{bottom:283.890000px;}
.y16f{bottom:284.430000px;}
.ybe{bottom:286.590000px;}
.y1c9{bottom:288.030000px;}
.y7f{bottom:291.630000px;}
.y1a1{bottom:292.350000px;}
.y112{bottom:299.730000px;}
.y69{bottom:300.630000px;}
.y2d{bottom:303.690000px;}
.y16e{bottom:304.410000px;}
.y145{bottom:305.490000px;}
.ybd{bottom:306.390000px;}
.y1c8{bottom:307.830000px;}
.y7e{bottom:311.430000px;}
.y1a0{bottom:312.150000px;}
.y111{bottom:319.710000px;}
.y68{bottom:320.430000px;}
.y2c{bottom:323.490000px;}
.yee{bottom:324.210000px;}
.y144{bottom:325.290000px;}
.ybc{bottom:326.190000px;}
.y1c7{bottom:327.630000px;}
.y7d{bottom:331.410000px;}
.y19f{bottom:331.950000px;}
.y110{bottom:339.510000px;}
.y67{bottom:340.410000px;}
.y2b{bottom:343.470000px;}
.y16d{bottom:344.010000px;}
.yf0{bottom:344.730000px;}
.y143{bottom:345.090000px;}
.ybb{bottom:346.170000px;}
.y1c6{bottom:347.430000px;}
.y7c{bottom:351.210000px;}
.y19e{bottom:351.750000px;}
.y10f{bottom:359.310000px;}
.y66{bottom:360.210000px;}
.y2a{bottom:363.270000px;}
.y16c{bottom:363.810000px;}
.y142{bottom:365.070000px;}
.yed{bottom:365.430000px;}
.yba{bottom:365.970000px;}
.y1c5{bottom:367.410000px;}
.y7b{bottom:371.010000px;}
.y19d{bottom:371.550000px;}
.y10e{bottom:379.110000px;}
.y65{bottom:380.010000px;}
.y29{bottom:383.070000px;}
.y16b{bottom:383.610000px;}
.y141{bottom:384.870000px;}
.yb9{bottom:385.770000px;}
.y1c4{bottom:387.210000px;}
.yec{bottom:389.190000px;}
.y19c{bottom:391.530000px;}
.y169{bottom:398.550000px;}
.y10d{bottom:398.910000px;}
.y64{bottom:399.810000px;}
.y28{bottom:402.915000px;}
.y140{bottom:404.715000px;}
.yb8{bottom:405.615000px;}
.yeb{bottom:406.515000px;}
.y1c3{bottom:407.055000px;}
.y19b{bottom:411.375000px;}
.y10c{bottom:418.935000px;}
.y63{bottom:419.655000px;}
.y27{bottom:422.715000px;}
.y13f{bottom:424.515000px;}
.yb7{bottom:425.415000px;}
.y199{bottom:426.135000px;}
.yea{bottom:426.315000px;}
.y1c2{bottom:426.855000px;}
.y168{bottom:433.695000px;}
.y10b{bottom:435.495000px;}
.y62{bottom:439.635000px;}
.y26{bottom:442.695000px;}
.y13e{bottom:444.315000px;}
.yb6{bottom:445.395000px;}
.ye9{bottom:446.115000px;}
.y1c1{bottom:446.655000px;}
.y197{bottom:450.975000px;}
.y61{bottom:459.435000px;}
.y25{bottom:462.495000px;}
.y13d{bottom:464.295000px;}
.yb5{bottom:465.195000px;}
.ye8{bottom:465.915000px;}
.y1c0{bottom:466.635000px;}
.y1e0{bottom:468.435000px;}
.y196{bottom:475.455000px;}
.y60{bottom:479.235000px;}
.y24{bottom:482.295000px;}
.y13c{bottom:484.095000px;}
.yb4{bottom:484.995000px;}
.ye7{bottom:485.895000px;}
.y1bf{bottom:486.435000px;}
.y167{bottom:486.615000px;}
.y1df{bottom:488.235000px;}
.y195{bottom:496.155000px;}
.y5f{bottom:499.035000px;}
.y23{bottom:502.095000px;}
.y13b{bottom:503.895000px;}
.yb3{bottom:504.795000px;}
.ye6{bottom:505.695000px;}
.y1be{bottom:506.235000px;}
.y1de{bottom:508.035000px;}
.y194{bottom:516.675000px;}
.y13a{bottom:518.655000px;}
.y5e{bottom:518.835000px;}
.y22{bottom:521.895000px;}
.yb2{bottom:524.595000px;}
.ye5{bottom:525.495000px;}
.y1bd{bottom:526.035000px;}
.y164{bottom:526.935000px;}
.y1dd{bottom:527.835000px;}
.y5d{bottom:538.815000px;}
.y21{bottom:541.875000px;}
.yb1{bottom:544.575000px;}
.ye4{bottom:545.295000px;}
.y1bc{bottom:545.835000px;}
.y1dc{bottom:547.815000px;}
.y5c{bottom:558.615000px;}
.y138{bottom:559.155000px;}
.y20{bottom:561.675000px;}
.y193{bottom:562.935000px;}
.yb0{bottom:564.375000px;}
.ye3{bottom:565.095000px;}
.y1bb{bottom:565.815000px;}
.y1db{bottom:567.615000px;}
.y5b{bottom:578.415000px;}
.y163{bottom:579.855000px;}
.ye2{bottom:580.035000px;}
.y1f{bottom:581.475000px;}
.y192{bottom:582.735000px;}
.yaf{bottom:584.175000px;}
.y1ba{bottom:585.615000px;}
.y1da{bottom:587.415000px;}
.y137{bottom:592.275000px;}
.y5a{bottom:598.215000px;}
.ye1{bottom:600.555000px;}
.y1e{bottom:601.275000px;}
.y191{bottom:602.535000px;}
.yae{bottom:603.975000px;}
.y1b9{bottom:605.415000px;}
.y1d9{bottom:607.215000px;}
.y59{bottom:618.015000px;}
.y1d{bottom:621.075000px;}
.y1b8{bottom:621.975000px;}
.y190{bottom:622.335000px;}
.yad{bottom:623.775000px;}
.y1d8{bottom:627.015000px;}
.y136{bottom:632.595000px;}
.y58{bottom:637.995000px;}
.ye0{bottom:641.775000px;}
.y18f{bottom:642.135000px;}
.y1c{bottom:643.215000px;}
.yac{bottom:643.755000px;}
.y1d7{bottom:646.995000px;}
.y57{bottom:657.825000px;}
.y18e{bottom:662.145000px;}
.ydf{bottom:662.325000px;}
.y1b{bottom:663.045000px;}
.yab{bottom:663.585000px;}
.y1d6{bottom:666.825000px;}
.y134{bottom:673.125000px;}
.y56{bottom:677.625000px;}
.y18d{bottom:681.945000px;}
.y1a{bottom:682.845000px;}
.yaa{bottom:683.385000px;}
.y15f{bottom:685.365000px;}
.y1d5{bottom:686.625000px;}
.y18c{bottom:696.705000px;}
.y55{bottom:697.425000px;}
.y19{bottom:702.825000px;}
.ya9{bottom:703.185000px;}
.yde{bottom:703.545000px;}
.y1d4{bottom:706.425000px;}
.y130{bottom:713.445000px;}
.y54{bottom:717.225000px;}
.y15e{bottom:720.645000px;}
.y18{bottom:722.625000px;}
.ya8{bottom:722.985000px;}
.y1d3{bottom:726.225000px;}
.ydd{bottom:727.305000px;}
.y53{bottom:737.205000px;}
.y18b{bottom:737.925000px;}
.y17{bottom:742.425000px;}
.ya7{bottom:742.965000px;}
.ydc{bottom:744.585000px;}
.y7a{bottom:746.205000px;}
.y52{bottom:757.005000px;}
.y18a{bottom:758.445000px;}
.y15a{bottom:761.145000px;}
.y16{bottom:762.225000px;}
.ya6{bottom:762.765000px;}
.y12e{bottom:763.125000px;}
.ydb{bottom:764.385000px;}
.y79{bottom:766.005000px;}
.y51{bottom:776.805000px;}
.y15{bottom:782.025000px;}
.ya5{bottom:782.565000px;}
.yda{bottom:784.185000px;}
.y189{bottom:784.905000px;}
.y78{bottom:785.805000px;}
.y50{bottom:796.605000px;}
.y14{bottom:802.005000px;}
.ya4{bottom:802.365000px;}
.yd9{bottom:803.985000px;}
.y188{bottom:804.705000px;}
.y77{bottom:805.605000px;}
.y12d{bottom:809.385000px;}
.y4f{bottom:816.405000px;}
.y159{bottom:819.645000px;}
.y13{bottom:821.805000px;}
.ya3{bottom:822.165000px;}
.yd8{bottom:823.965000px;}
.y187{bottom:824.505000px;}
.y76{bottom:825.405000px;}
.y12c{bottom:829.185000px;}
.y4e{bottom:836.385000px;}
.y158{bottom:839.445000px;}
.y12{bottom:841.605000px;}
.ya2{bottom:842.145000px;}
.yd7{bottom:843.765000px;}
.y186{bottom:844.305000px;}
.y75{bottom:845.385000px;}
.y12b{bottom:848.985000px;}
.y4d{bottom:856.185000px;}
.y157{bottom:859.425000px;}
.y11{bottom:861.405000px;}
.ya1{bottom:861.945000px;}
.yd6{bottom:863.565000px;}
.y185{bottom:864.105000px;}
.y74{bottom:865.185000px;}
.y12a{bottom:868.965000px;}
.y90{bottom:875.985000px;}
.y156{bottom:879.225000px;}
.y10{bottom:881.205000px;}
.ya0{bottom:881.745000px;}
.yd5{bottom:883.365000px;}
.y184{bottom:884.085000px;}
.y4c{bottom:884.985000px;}
.y129{bottom:888.765000px;}
.y8f{bottom:895.785000px;}
.y155{bottom:899.070000px;}
.y10a{bottom:900.330000px;}
.yf{bottom:901.050000px;}
.y9f{bottom:901.590000px;}
.y1b7{bottom:902.490000px;}
.yd4{bottom:903.210000px;}
.y183{bottom:903.930000px;}
.y4b{bottom:904.830000px;}
.y128{bottom:908.610000px;}
.y8e{bottom:915.630000px;}
.yd3{bottom:918.150000px;}
.y154{bottom:918.870000px;}
.y109{bottom:920.130000px;}
.y9e{bottom:921.390000px;}
.y1b6{bottom:922.290000px;}
.ye{bottom:923.190000px;}
.y182{bottom:923.730000px;}
.y4a{bottom:924.630000px;}
.y127{bottom:928.410000px;}
.y8d{bottom:935.610000px;}
.y181{bottom:938.490000px;}
.yd2{bottom:938.670000px;}
.y108{bottom:940.110000px;}
.y1b5{bottom:942.090000px;}
.y9d{bottom:942.450000px;}
.yd{bottom:943.170000px;}
.y49{bottom:944.610000px;}
.y126{bottom:948.210000px;}
.y8c{bottom:955.410000px;}
.y153{bottom:958.650000px;}
.yd1{bottom:959.190000px;}
.y107{bottom:959.910000px;}
.y1b4{bottom:961.890000px;}
.y9c{bottom:962.250000px;}
.yc{bottom:963.510000px;}
.y48{bottom:964.410000px;}
.y125{bottom:968.190000px;}
.y8b{bottom:975.210000px;}
.y152{bottom:978.450000px;}
.y106{bottom:979.710000px;}
.yd0{bottom:979.890000px;}
.y1b3{bottom:981.690000px;}
.y9b{bottom:982.050000px;}
.y47{bottom:984.210000px;}
.y180{bottom:985.470000px;}
.y124{bottom:987.990000px;}
.y8a{bottom:995.010000px;}
.y151{bottom:998.250000px;}
.y105{bottom:999.510000px;}
.ycf{bottom:1000.410000px;}
.y1b2{bottom:1001.670000px;}
.y9a{bottom:1001.850000px;}
.y123{bottom:1002.750000px;}
.y46{bottom:1004.010000px;}
.y17f{bottom:1005.270000px;}
.yb{bottom:1006.350000px;}
.y150{bottom:1013.010000px;}
.y104{bottom:1019.310000px;}
.ycd{bottom:1020.930000px;}
.y1b1{bottom:1021.470000px;}
.y99{bottom:1021.650000px;}
.y45{bottom:1023.810000px;}
.y17e{bottom:1025.250000px;}
.ya{bottom:1038.030000px;}
.y103{bottom:1039.290000px;}
.y122{bottom:1040.910000px;}
.y1b0{bottom:1041.270000px;}
.ycb{bottom:1041.630000px;}
.y98{bottom:1042.710000px;}
.y44{bottom:1043.790000px;}
.y17d{bottom:1045.050000px;}
.y14f{bottom:1053.510000px;}
.y1af{bottom:1056.030000px;}
.y102{bottom:1059.090000px;}
.yc9{bottom:1062.150000px;}
.y97{bottom:1062.510000px;}
.y43{bottom:1063.590000px;}
.y5{bottom:1064.850000px;}
.yfe{bottom:1073.850000px;}
.y96{bottom:1082.310000px;}
.y42{bottom:1083.390000px;}
.y17c{bottom:1084.650000px;}
.yc8{bottom:1085.910000px;}
.y1ae{bottom:1089.330000px;}
.y101{bottom:1094.370000px;}
.y120{bottom:1098.150000px;}
.y4{bottom:1101.570000px;}
.y95{bottom:1102.110000px;}
.y41{bottom:1103.190000px;}
.y17b{bottom:1104.450000px;}
.y14e{bottom:1110.750000px;}
.y100{bottom:1115.070000px;}
.y179{bottom:1119.390000px;}
.y94{bottom:1121.910000px;}
.y1ad{bottom:1122.810000px;}
.y40{bottom:1122.990000px;}
.y3{bottom:1130.010000px;}
.yff{bottom:1135.590000px;}
.y11d{bottom:1136.310000px;}
.y93{bottom:1141.890000px;}
.y3f{bottom:1142.790000px;}
.y1ab{bottom:1143.330000px;}
.y178{bottom:1148.040000px;}
.yfd{bottom:1156.140000px;}
.y2{bottom:1158.480000px;}
.y92{bottom:1161.720000px;}
.y3e{bottom:1162.800000px;}
.y14d{bottom:1183.500000px;}
.y1{bottom:1189.260000px;}
.y3d{bottom:1192.140000px;}
.hd{height:19.800000px;}
.hf{height:19.836000px;}
.he{height:19.980000px;}
.h2a{height:20.016000px;}
.h6{height:21.780000px;}
.h27{height:23.760000px;}
.h28{height:24.120000px;}
.h23{height:27.900000px;}
.h26{height:27.936000px;}
.h24{height:28.080000px;}
.h25{height:28.476000px;}
.h1b{height:32.400000px;}
.h2c{height:32.580000px;}
.h29{height:32.760000px;}
.h2b{height:32.796000px;}
.h22{height:34.416000px;}
.h1f{height:34.560000px;}
.h18{height:37.440000px;}
.h1a{height:39.600000px;}
.h14{height:39.780000px;}
.h17{height:39.816000px;}
.h10{height:40.500000px;}
.ha{height:42.164648px;}
.h9{height:43.215117px;}
.hc{height:43.506914px;}
.h2d{height:43.681992px;}
.hb{height:44.265586px;}
.h3{height:46.736719px;}
.h7{height:47.901094px;}
.h19{height:48.960000px;}
.h4{height:50.800781px;}
.h1e{height:52.020000px;}
.h20{height:52.056000px;}
.h21{height:52.200000px;}
.h2{height:54.864844px;}
.h15{height:56.520000px;}
.h16{height:56.556000px;}
.h1c{height:56.700000px;}
.h1d{height:56.736000px;}
.h12{height:61.056000px;}
.h5{height:65.884219px;}
.h8{height:67.565039px;}
.h11{height:81.540000px;}
.h13{height:81.576000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w2c{width:37.980000px;}
.w34{width:41.760000px;}
.w26{width:49.176000px;}
.w3{width:51.336000px;}
.w11{width:52.236000px;}
.w25{width:56.340000px;}
.w2e{width:56.700000px;}
.w1e{width:61.740000px;}
.w37{width:61.920000px;}
.w1a{width:62.640000px;}
.wa{width:63.036000px;}
.w16{width:63.360000px;}
.w12{width:64.260000px;}
.w32{width:68.400000px;}
.w27{width:75.960000px;}
.w35{width:79.236000px;}
.w2a{width:82.116000px;}
.w2f{width:100.656000px;}
.w2d{width:101.736000px;}
.w22{width:102.096000px;}
.we{width:106.020000px;}
.w23{width:106.776000px;}
.w20{width:112.320000px;}
.w1c{width:113.400000px;}
.w18{width:114.660000px;}
.wf{width:115.056000px;}
.w2b{width:116.280000px;}
.w14{width:116.316000px;}
.w6{width:124.776000px;}
.wb{width:131.760000px;}
.w7{width:133.380000px;}
.wd{width:137.916000px;}
.w28{width:138.096000px;}
.w1f{width:141.516000px;}
.w1b{width:143.856000px;}
.w17{width:146.376000px;}
.w13{width:149.076000px;}
.w24{width:153.360000px;}
.w33{width:166.710000px;}
.w31{width:173.190000px;}
.w39{width:177.690000px;}
.w38{width:178.590000px;}
.wc{width:180.930000px;}
.w29{width:182.550000px;}
.w9{width:220.530000px;}
.w30{width:229.935000px;}
.w8{width:235.830000px;}
.w36{width:242.310000px;}
.w19{width:333.210000px;}
.w21{width:334.290000px;}
.w1d{width:335.370000px;}
.w15{width:336.450000px;}
.w10{width:340.995000px;}
.w5{width:411.735000px;}
.w4{width:733.110000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x4{left:8.100000px;}
.x1{left:52.919987px;}
.x3{left:54.000000px;}
.xf{left:59.039987px;}
.x38{left:64.980000px;}
.x43{left:80.999987px;}
.x1e{left:83.700000px;}
.x10{left:86.075987px;}
.x7{left:88.595987px;}
.x23{left:92.376000px;}
.x26{left:93.456000px;}
.x2a{left:97.236000px;}
.x5{left:106.056000px;}
.x44{left:108.035987px;}
.x13{left:110.916000px;}
.x3d{left:115.236000px;}
.x16{left:119.916000px;}
.xd{left:165.629987px;}
.x1a{left:175.530000px;}
.xe{left:178.229987px;}
.x2e{left:194.070000px;}
.x33{left:196.950000px;}
.xa{left:224.669987px;}
.x2f{left:251.130000px;}
.x1d{left:258.689987px;}
.x6{left:279.939000px;}
.x39{left:295.635000px;}
.x30{left:301.035000px;}
.x42{left:348.914987px;}
.x17{left:356.475000px;}
.x3e{left:358.275000px;}
.x9{left:367.094987px;}
.x31{left:377.715000px;}
.x8{left:379.514987px;}
.x34{left:396.975000px;}
.x3f{left:420.915000px;}
.x1f{left:425.415000px;}
.x27{left:429.555000px;}
.x2b{left:432.255000px;}
.x35{left:435.675000px;}
.x3a{left:469.725000px;}
.xc{left:473.144987px;}
.x11{left:478.184987px;}
.x24{left:479.265000px;}
.x28{left:482.505000px;}
.x1b{left:495.825000px;}
.x45{left:500.144987px;}
.x12{left:505.184987px;}
.x32{left:516.525000px;}
.x14{left:523.365000px;}
.x46{left:527.144987px;}
.x2c{left:535.065000px;}
.x36{left:538.125000px;}
.x20{left:543.345000px;}
.x29{left:545.145000px;}
.x18{left:577.725000px;}
.x37{left:595.545000px;}
.x40{left:600.225000px;}
.x1c{left:602.565000px;}
.x19{left:641.490000px;}
.x2d{left:642.570000px;}
.x15{left:648.870000px;}
.x25{left:687.390000px;}
.x22{left:689.910000px;}
.x21{left:693.150000px;}
.x3b{left:706.470000px;}
.x3c{left:748.950000px;}
.x41{left:776.129987px;}
.x2{left:829.439987px;}
.xb{left:831.059987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls9{letter-spacing:-13.920000pt;}
.lsf{letter-spacing:-0.409067pt;}
.ls12{letter-spacing:-0.320000pt;}
.ls11{letter-spacing:-0.094933pt;}
.ls8{letter-spacing:-0.047360pt;}
.ls5{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.015360pt;}
.ls6{letter-spacing:0.047360pt;}
.lsa{letter-spacing:0.097280pt;}
.ls2{letter-spacing:0.106667pt;}
.ls13{letter-spacing:0.120533pt;}
.lsc{letter-spacing:0.128000pt;}
.ls4{letter-spacing:0.136533pt;}
.ls15{letter-spacing:0.138667pt;}
.ls1{letter-spacing:0.160000pt;}
.ls7{letter-spacing:0.230933pt;}
.ls10{letter-spacing:0.265600pt;}
.ls3{letter-spacing:0.320000pt;}
.ls16{letter-spacing:14.672640pt;}
.ls14{letter-spacing:40.912640pt;}
.lsd{letter-spacing:49.360640pt;}
.lse{letter-spacing:56.912640pt;}
.lsb{letter-spacing:57.040640pt;}
.ws6{word-spacing:-53.120000pt;}
.ws0{word-spacing:-14.720000pt;}
.ws9{word-spacing:-13.600000pt;}
.wsa{word-spacing:-13.545600pt;}
.ws8{word-spacing:-13.440000pt;}
.ws4{word-spacing:-13.416533pt;}
.ws1{word-spacing:-13.327360pt;}
.ws2{word-spacing:-13.280000pt;}
.ws3{word-spacing:-13.232640pt;}
.wsb{word-spacing:-13.185067pt;}
.ws7{word-spacing:-12.870933pt;}
.ws5{word-spacing:0.000000pt;}
._1e{margin-left:-2026.358613pt;}
._7{margin-left:-1734.965760pt;}
._b{margin-left:-1604.349867pt;}
._9{margin-left:-600.714240pt;}
._8{margin-left:-525.141760pt;}
._39{margin-left:-7.008213pt;}
._1{margin-left:-5.416960pt;}
._36{margin-left:-3.975040pt;}
._4{margin-left:-3.061760pt;}
._11{margin-left:-2.142293pt;}
._2{margin-left:-1.236480pt;}
._0{width:0.898560pt;}
._a{width:2.025387pt;}
._10{width:3.779840pt;}
._f{width:4.979627pt;}
._e{width:6.055680pt;}
._14{width:7.010987pt;}
._d{width:8.484480pt;}
._c{width:10.160640pt;}
._28{width:11.105280pt;}
._1b{width:12.058240pt;}
._1c{width:14.187520pt;}
._13{width:15.172480pt;}
._12{width:16.274560pt;}
._16{width:17.210880pt;}
._15{width:18.220160pt;}
._19{width:19.446400pt;}
._24{width:20.416000pt;}
._18{width:22.040320pt;}
._1d{width:23.059840pt;}
._17{width:23.961600pt;}
._27{width:25.497600pt;}
._21{width:26.560000pt;}
._33{width:27.650560pt;}
._22{width:28.578560pt;}
._23{width:30.172160pt;}
._32{width:31.239040pt;}
._2b{width:32.354560pt;}
._20{width:33.663360pt;}
._1f{width:34.581120pt;}
._2c{width:36.334080pt;}
._2e{width:37.768320pt;}
._2d{width:39.361920pt;}
._2f{width:40.375680pt;}
._26{width:41.452800pt;}
._25{width:42.496000pt;}
._34{width:43.611520pt;}
._31{width:45.736320pt;}
._29{width:46.750080pt;}
._3d{width:48.274560pt;}
._2a{width:49.189120pt;}
._30{width:52.008960pt;}
._3c{width:55.776000pt;}
._3b{width:56.732160pt;}
._37{width:58.837760pt;}
._38{width:60.478720pt;}
._35{width:63.690880pt;}
._3e{width:64.912640pt;}
._3f{width:65.969920pt;}
._1a{width:72.353920pt;}
._40{width:74.266240pt;}
._3a{width:126.483200pt;}
._6{width:180.000000pt;}
._5{width:306.991787pt;}
._3{width:561.287253pt;}
.fs3{font-size:48.000000pt;}
.fs4{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs2{font-size:64.000000pt;}
.fs0{font-size:69.120000pt;}
.fs5{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.yca{bottom:5.120000pt;}
.yce{bottom:5.280000pt;}
.y8{bottom:5.600000pt;}
.y7{bottom:5.760000pt;}
.y198{bottom:6.880000pt;}
.y19a{bottom:7.040000pt;}
.y17a{bottom:8.640000pt;}
.ycc{bottom:8.800000pt;}
.y176{bottom:8.960000pt;}
.y132{bottom:9.280000pt;}
.y15d{bottom:10.560000pt;}
.y139{bottom:10.720000pt;}
.y1a6{bottom:10.880000pt;}
.y1ac{bottom:10.906667pt;}
.y16a{bottom:11.560000pt;}
.y160{bottom:11.680000pt;}
.y11a{bottom:12.640000pt;}
.y149{bottom:12.800000pt;}
.y121{bottom:12.960000pt;}
.y116{bottom:13.920000pt;}
.y11f{bottom:13.946667pt;}
.y12f{bottom:14.080000pt;}
.yef{bottom:14.240000pt;}
.y133{bottom:18.080000pt;}
.y15b{bottom:19.360000pt;}
.y166{bottom:19.520000pt;}
.y162{bottom:19.546667pt;}
.y11b{bottom:21.440000pt;}
.y14a{bottom:21.600000pt;}
.y135{bottom:22.720000pt;}
.y117{bottom:22.880000pt;}
.y11e{bottom:22.906667pt;}
.yfa{bottom:23.520000pt;}
.y131{bottom:27.040000pt;}
.y15c{bottom:28.160000pt;}
.y165{bottom:28.320000pt;}
.y161{bottom:28.346667pt;}
.y119{bottom:30.240000pt;}
.y148{bottom:30.400000pt;}
.yf2{bottom:32.480000pt;}
.yf6{bottom:32.640000pt;}
.y9{bottom:45.440000pt;}
.y6{bottom:59.360000pt;}
.y89{bottom:82.880000pt;}
.y3c{bottom:85.600000pt;}
.yf9{bottom:86.880000pt;}
.y11c{bottom:88.320000pt;}
.y73{bottom:90.880000pt;}
.y177{bottom:92.160000pt;}
.y91{bottom:92.480000pt;}
.y37{bottom:93.600000pt;}
.y14c{bottom:94.400000pt;}
.yc7{bottom:96.000000pt;}
.y1d2{bottom:97.280000pt;}
.y1aa{bottom:98.880000pt;}
.y88{bottom:100.480000pt;}
.y3b{bottom:103.200000pt;}
.yfc{bottom:105.120000pt;}
.y72{bottom:108.480000pt;}
.y36{bottom:111.200000pt;}
.yc6{bottom:113.600000pt;}
.y1d1{bottom:114.880000pt;}
.y1a9{bottom:117.120000pt;}
.y175{bottom:117.760000pt;}
.y87{bottom:118.240000pt;}
.y3a{bottom:120.960000pt;}
.yfb{bottom:123.520000pt;}
.y71{bottom:126.240000pt;}
.y35{bottom:128.960000pt;}
.yc5{bottom:131.360000pt;}
.y1d0{bottom:132.480000pt;}
.y1a8{bottom:135.546667pt;}
.y86{bottom:135.866667pt;}
.y39{bottom:138.586667pt;}
.y118{bottom:139.226667pt;}
.yf5{bottom:141.786667pt;}
.y174{bottom:143.706667pt;}
.y70{bottom:143.866667pt;}
.y14b{bottom:145.466667pt;}
.y34{bottom:146.586667pt;}
.yc4{bottom:148.986667pt;}
.y1cf{bottom:150.266667pt;}
.y85{bottom:153.466667pt;}
.y1a7{bottom:153.786667pt;}
.y38{bottom:156.186667pt;}
.yf8{bottom:160.026667pt;}
.y6f{bottom:161.466667pt;}
.y33{bottom:164.186667pt;}
.yc3{bottom:166.586667pt;}
.y1ce{bottom:167.866667pt;}
.y173{bottom:169.306667pt;}
.y84{bottom:171.066667pt;}
.y1a5{bottom:172.026667pt;}
.yf7{bottom:178.426667pt;}
.y6e{bottom:179.066667pt;}
.y147{bottom:179.386667pt;}
.y32{bottom:181.786667pt;}
.yc2{bottom:184.186667pt;}
.y1cd{bottom:185.466667pt;}
.y83{bottom:188.666667pt;}
.y115{bottom:190.106667pt;}
.y6d{bottom:196.666667pt;}
.y31{bottom:199.386667pt;}
.y172{bottom:200.026667pt;}
.yc1{bottom:201.786667pt;}
.y1cc{bottom:203.066667pt;}
.y82{bottom:206.426667pt;}
.y1a4{bottom:206.906667pt;}
.y6c{bottom:214.426667pt;}
.yf1{bottom:215.066667pt;}
.y30{bottom:217.146667pt;}
.y171{bottom:217.626667pt;}
.yc0{bottom:219.546667pt;}
.y1cb{bottom:220.666667pt;}
.y81{bottom:224.026667pt;}
.y1a3{bottom:224.506667pt;}
.y146{bottom:230.426667pt;}
.y114{bottom:231.226667pt;}
.y6b{bottom:232.026667pt;}
.yf4{bottom:233.306667pt;}
.y2f{bottom:234.746667pt;}
.y170{bottom:235.226667pt;}
.ybf{bottom:237.146667pt;}
.y1ca{bottom:238.426667pt;}
.y80{bottom:241.626667pt;}
.y1a2{bottom:242.106667pt;}
.y113{bottom:248.826667pt;}
.y6a{bottom:249.626667pt;}
.yf3{bottom:251.546667pt;}
.y2e{bottom:252.346667pt;}
.y16f{bottom:252.826667pt;}
.ybe{bottom:254.746667pt;}
.y1c9{bottom:256.026667pt;}
.y7f{bottom:259.226667pt;}
.y1a1{bottom:259.866667pt;}
.y112{bottom:266.426667pt;}
.y69{bottom:267.226667pt;}
.y2d{bottom:269.946667pt;}
.y16e{bottom:270.586667pt;}
.y145{bottom:271.546667pt;}
.ybd{bottom:272.346667pt;}
.y1c8{bottom:273.626667pt;}
.y7e{bottom:276.826667pt;}
.y1a0{bottom:277.466667pt;}
.y111{bottom:284.186667pt;}
.y68{bottom:284.826667pt;}
.y2c{bottom:287.546667pt;}
.yee{bottom:288.186667pt;}
.y144{bottom:289.146667pt;}
.ybc{bottom:289.946667pt;}
.y1c7{bottom:291.226667pt;}
.y7d{bottom:294.586667pt;}
.y19f{bottom:295.066667pt;}
.y110{bottom:301.786667pt;}
.y67{bottom:302.586667pt;}
.y2b{bottom:305.306667pt;}
.y16d{bottom:305.786667pt;}
.yf0{bottom:306.426667pt;}
.y143{bottom:306.746667pt;}
.ybb{bottom:307.706667pt;}
.y1c6{bottom:308.826667pt;}
.y7c{bottom:312.186667pt;}
.y19e{bottom:312.666667pt;}
.y10f{bottom:319.386667pt;}
.y66{bottom:320.186667pt;}
.y2a{bottom:322.906667pt;}
.y16c{bottom:323.386667pt;}
.y142{bottom:324.506667pt;}
.yed{bottom:324.826667pt;}
.yba{bottom:325.306667pt;}
.y1c5{bottom:326.586667pt;}
.y7b{bottom:329.786667pt;}
.y19d{bottom:330.266667pt;}
.y10e{bottom:336.986667pt;}
.y65{bottom:337.786667pt;}
.y29{bottom:340.506667pt;}
.y16b{bottom:340.986667pt;}
.y141{bottom:342.106667pt;}
.yb9{bottom:342.906667pt;}
.y1c4{bottom:344.186667pt;}
.yec{bottom:345.946667pt;}
.y19c{bottom:348.026667pt;}
.y169{bottom:354.266667pt;}
.y10d{bottom:354.586667pt;}
.y64{bottom:355.386667pt;}
.y28{bottom:358.146667pt;}
.y140{bottom:359.746667pt;}
.yb8{bottom:360.546667pt;}
.yeb{bottom:361.346667pt;}
.y1c3{bottom:361.826667pt;}
.y19b{bottom:365.666667pt;}
.y10c{bottom:372.386667pt;}
.y63{bottom:373.026667pt;}
.y27{bottom:375.746667pt;}
.y13f{bottom:377.346667pt;}
.yb7{bottom:378.146667pt;}
.y199{bottom:378.786667pt;}
.yea{bottom:378.946667pt;}
.y1c2{bottom:379.426667pt;}
.y168{bottom:385.506667pt;}
.y10b{bottom:387.106667pt;}
.y62{bottom:390.786667pt;}
.y26{bottom:393.506667pt;}
.y13e{bottom:394.946667pt;}
.yb6{bottom:395.906667pt;}
.ye9{bottom:396.546667pt;}
.y1c1{bottom:397.026667pt;}
.y197{bottom:400.866667pt;}
.y61{bottom:408.386667pt;}
.y25{bottom:411.106667pt;}
.y13d{bottom:412.706667pt;}
.yb5{bottom:413.506667pt;}
.ye8{bottom:414.146667pt;}
.y1c0{bottom:414.786667pt;}
.y1e0{bottom:416.386667pt;}
.y196{bottom:422.626667pt;}
.y60{bottom:425.986667pt;}
.y24{bottom:428.706667pt;}
.y13c{bottom:430.306667pt;}
.yb4{bottom:431.106667pt;}
.ye7{bottom:431.906667pt;}
.y1bf{bottom:432.386667pt;}
.y167{bottom:432.546667pt;}
.y1df{bottom:433.986667pt;}
.y195{bottom:441.026667pt;}
.y5f{bottom:443.586667pt;}
.y23{bottom:446.306667pt;}
.y13b{bottom:447.906667pt;}
.yb3{bottom:448.706667pt;}
.ye6{bottom:449.506667pt;}
.y1be{bottom:449.986667pt;}
.y1de{bottom:451.586667pt;}
.y194{bottom:459.266667pt;}
.y13a{bottom:461.026667pt;}
.y5e{bottom:461.186667pt;}
.y22{bottom:463.906667pt;}
.yb2{bottom:466.306667pt;}
.ye5{bottom:467.106667pt;}
.y1bd{bottom:467.586667pt;}
.y164{bottom:468.386667pt;}
.y1dd{bottom:469.186667pt;}
.y5d{bottom:478.946667pt;}
.y21{bottom:481.666667pt;}
.yb1{bottom:484.066667pt;}
.ye4{bottom:484.706667pt;}
.y1bc{bottom:485.186667pt;}
.y1dc{bottom:486.946667pt;}
.y5c{bottom:496.546667pt;}
.y138{bottom:497.026667pt;}
.y20{bottom:499.266667pt;}
.y193{bottom:500.386667pt;}
.yb0{bottom:501.666667pt;}
.ye3{bottom:502.306667pt;}
.y1bb{bottom:502.946667pt;}
.y1db{bottom:504.546667pt;}
.y5b{bottom:514.146667pt;}
.y163{bottom:515.426667pt;}
.ye2{bottom:515.586667pt;}
.y1f{bottom:516.866667pt;}
.y192{bottom:517.986667pt;}
.yaf{bottom:519.266667pt;}
.y1ba{bottom:520.546667pt;}
.y1da{bottom:522.146667pt;}
.y137{bottom:526.466667pt;}
.y5a{bottom:531.746667pt;}
.ye1{bottom:533.826667pt;}
.y1e{bottom:534.466667pt;}
.y191{bottom:535.586667pt;}
.yae{bottom:536.866667pt;}
.y1b9{bottom:538.146667pt;}
.y1d9{bottom:539.746667pt;}
.y59{bottom:549.346667pt;}
.y1d{bottom:552.066667pt;}
.y1b8{bottom:552.866667pt;}
.y190{bottom:553.186667pt;}
.yad{bottom:554.466667pt;}
.y1d8{bottom:557.346667pt;}
.y136{bottom:562.306667pt;}
.y58{bottom:567.106667pt;}
.ye0{bottom:570.466667pt;}
.y18f{bottom:570.786667pt;}
.y1c{bottom:571.746667pt;}
.yac{bottom:572.226667pt;}
.y1d7{bottom:575.106667pt;}
.y57{bottom:584.733333pt;}
.y18e{bottom:588.573333pt;}
.ydf{bottom:588.733333pt;}
.y1b{bottom:589.373333pt;}
.yab{bottom:589.853333pt;}
.y1d6{bottom:592.733333pt;}
.y134{bottom:598.333333pt;}
.y56{bottom:602.333333pt;}
.y18d{bottom:606.173333pt;}
.y1a{bottom:606.973333pt;}
.yaa{bottom:607.453333pt;}
.y15f{bottom:609.213333pt;}
.y1d5{bottom:610.333333pt;}
.y18c{bottom:619.293333pt;}
.y55{bottom:619.933333pt;}
.y19{bottom:624.733333pt;}
.ya9{bottom:625.053333pt;}
.yde{bottom:625.373333pt;}
.y1d4{bottom:627.933333pt;}
.y130{bottom:634.173333pt;}
.y54{bottom:637.533333pt;}
.y15e{bottom:640.573333pt;}
.y18{bottom:642.333333pt;}
.ya8{bottom:642.653333pt;}
.y1d3{bottom:645.533333pt;}
.ydd{bottom:646.493333pt;}
.y53{bottom:655.293333pt;}
.y18b{bottom:655.933333pt;}
.y17{bottom:659.933333pt;}
.ya7{bottom:660.413333pt;}
.ydc{bottom:661.853333pt;}
.y7a{bottom:663.293333pt;}
.y52{bottom:672.893333pt;}
.y18a{bottom:674.173333pt;}
.y15a{bottom:676.573333pt;}
.y16{bottom:677.533333pt;}
.ya6{bottom:678.013333pt;}
.y12e{bottom:678.333333pt;}
.ydb{bottom:679.453333pt;}
.y79{bottom:680.893333pt;}
.y51{bottom:690.493333pt;}
.y15{bottom:695.133333pt;}
.ya5{bottom:695.613333pt;}
.yda{bottom:697.053333pt;}
.y189{bottom:697.693333pt;}
.y78{bottom:698.493333pt;}
.y50{bottom:708.093333pt;}
.y14{bottom:712.893333pt;}
.ya4{bottom:713.213333pt;}
.yd9{bottom:714.653333pt;}
.y188{bottom:715.293333pt;}
.y77{bottom:716.093333pt;}
.y12d{bottom:719.453333pt;}
.y4f{bottom:725.693333pt;}
.y159{bottom:728.573333pt;}
.y13{bottom:730.493333pt;}
.ya3{bottom:730.813333pt;}
.yd8{bottom:732.413333pt;}
.y187{bottom:732.893333pt;}
.y76{bottom:733.693333pt;}
.y12c{bottom:737.053333pt;}
.y4e{bottom:743.453333pt;}
.y158{bottom:746.173333pt;}
.y12{bottom:748.093333pt;}
.ya2{bottom:748.573333pt;}
.yd7{bottom:750.013333pt;}
.y186{bottom:750.493333pt;}
.y75{bottom:751.453333pt;}
.y12b{bottom:754.653333pt;}
.y4d{bottom:761.053333pt;}
.y157{bottom:763.933333pt;}
.y11{bottom:765.693333pt;}
.ya1{bottom:766.173333pt;}
.yd6{bottom:767.613333pt;}
.y185{bottom:768.093333pt;}
.y74{bottom:769.053333pt;}
.y12a{bottom:772.413333pt;}
.y90{bottom:778.653333pt;}
.y156{bottom:781.533333pt;}
.y10{bottom:783.293333pt;}
.ya0{bottom:783.773333pt;}
.yd5{bottom:785.213333pt;}
.y184{bottom:785.853333pt;}
.y4c{bottom:786.653333pt;}
.y129{bottom:790.013333pt;}
.y8f{bottom:796.253333pt;}
.y155{bottom:799.173333pt;}
.y10a{bottom:800.293333pt;}
.yf{bottom:800.933333pt;}
.y9f{bottom:801.413333pt;}
.y1b7{bottom:802.213333pt;}
.yd4{bottom:802.853333pt;}
.y183{bottom:803.493333pt;}
.y4b{bottom:804.293333pt;}
.y128{bottom:807.653333pt;}
.y8e{bottom:813.893333pt;}
.yd3{bottom:816.133333pt;}
.y154{bottom:816.773333pt;}
.y109{bottom:817.893333pt;}
.y9e{bottom:819.013333pt;}
.y1b6{bottom:819.813333pt;}
.ye{bottom:820.613333pt;}
.y182{bottom:821.093333pt;}
.y4a{bottom:821.893333pt;}
.y127{bottom:825.253333pt;}
.y8d{bottom:831.653333pt;}
.y181{bottom:834.213333pt;}
.yd2{bottom:834.373333pt;}
.y108{bottom:835.653333pt;}
.y1b5{bottom:837.413333pt;}
.y9d{bottom:837.733333pt;}
.yd{bottom:838.373333pt;}
.y49{bottom:839.653333pt;}
.y126{bottom:842.853333pt;}
.y8c{bottom:849.253333pt;}
.y153{bottom:852.133333pt;}
.yd1{bottom:852.613333pt;}
.y107{bottom:853.253333pt;}
.y1b4{bottom:855.013333pt;}
.y9c{bottom:855.333333pt;}
.yc{bottom:856.453333pt;}
.y48{bottom:857.253333pt;}
.y125{bottom:860.613333pt;}
.y8b{bottom:866.853333pt;}
.y152{bottom:869.733333pt;}
.y106{bottom:870.853333pt;}
.yd0{bottom:871.013333pt;}
.y1b3{bottom:872.613333pt;}
.y9b{bottom:872.933333pt;}
.y47{bottom:874.853333pt;}
.y180{bottom:875.973333pt;}
.y124{bottom:878.213333pt;}
.y8a{bottom:884.453333pt;}
.y151{bottom:887.333333pt;}
.y105{bottom:888.453333pt;}
.ycf{bottom:889.253333pt;}
.y1b2{bottom:890.373333pt;}
.y9a{bottom:890.533333pt;}
.y123{bottom:891.333333pt;}
.y46{bottom:892.453333pt;}
.y17f{bottom:893.573333pt;}
.yb{bottom:894.533333pt;}
.y150{bottom:900.453333pt;}
.y104{bottom:906.053333pt;}
.ycd{bottom:907.493333pt;}
.y1b1{bottom:907.973333pt;}
.y99{bottom:908.133333pt;}
.y45{bottom:910.053333pt;}
.y17e{bottom:911.333333pt;}
.ya{bottom:922.693333pt;}
.y103{bottom:923.813333pt;}
.y122{bottom:925.253333pt;}
.y1b0{bottom:925.573333pt;}
.ycb{bottom:925.893333pt;}
.y98{bottom:926.853333pt;}
.y44{bottom:927.813333pt;}
.y17d{bottom:928.933333pt;}
.y14f{bottom:936.453333pt;}
.y1af{bottom:938.693333pt;}
.y102{bottom:941.413333pt;}
.yc9{bottom:944.133333pt;}
.y97{bottom:944.453333pt;}
.y43{bottom:945.413333pt;}
.y5{bottom:946.533333pt;}
.yfe{bottom:954.533333pt;}
.y96{bottom:962.053333pt;}
.y42{bottom:963.013333pt;}
.y17c{bottom:964.133333pt;}
.yc8{bottom:965.253333pt;}
.y1ae{bottom:968.293333pt;}
.y101{bottom:972.773333pt;}
.y120{bottom:976.133333pt;}
.y4{bottom:979.173333pt;}
.y95{bottom:979.653333pt;}
.y41{bottom:980.613333pt;}
.y17b{bottom:981.733333pt;}
.y14e{bottom:987.333333pt;}
.y100{bottom:991.173333pt;}
.y179{bottom:995.013333pt;}
.y94{bottom:997.253333pt;}
.y1ad{bottom:998.053333pt;}
.y40{bottom:998.213333pt;}
.y3{bottom:1004.453333pt;}
.yff{bottom:1009.413333pt;}
.y11d{bottom:1010.053333pt;}
.y93{bottom:1015.013333pt;}
.y3f{bottom:1015.813333pt;}
.y1ab{bottom:1016.293333pt;}
.y178{bottom:1020.480000pt;}
.yfd{bottom:1027.680000pt;}
.y2{bottom:1029.760000pt;}
.y92{bottom:1032.640000pt;}
.y3e{bottom:1033.600000pt;}
.y14d{bottom:1052.000000pt;}
.y1{bottom:1057.120000pt;}
.y3d{bottom:1059.680000pt;}
.hd{height:17.600000pt;}
.hf{height:17.632000pt;}
.he{height:17.760000pt;}
.h2a{height:17.792000pt;}
.h6{height:19.360000pt;}
.h27{height:21.120000pt;}
.h28{height:21.440000pt;}
.h23{height:24.800000pt;}
.h26{height:24.832000pt;}
.h24{height:24.960000pt;}
.h25{height:25.312000pt;}
.h1b{height:28.800000pt;}
.h2c{height:28.960000pt;}
.h29{height:29.120000pt;}
.h2b{height:29.152000pt;}
.h22{height:30.592000pt;}
.h1f{height:30.720000pt;}
.h18{height:33.280000pt;}
.h1a{height:35.200000pt;}
.h14{height:35.360000pt;}
.h17{height:35.392000pt;}
.h10{height:36.000000pt;}
.ha{height:37.479688pt;}
.h9{height:38.413438pt;}
.hc{height:38.672812pt;}
.h2d{height:38.828437pt;}
.hb{height:39.347188pt;}
.h3{height:41.543750pt;}
.h7{height:42.578750pt;}
.h19{height:43.520000pt;}
.h4{height:45.156250pt;}
.h1e{height:46.240000pt;}
.h20{height:46.272000pt;}
.h21{height:46.400000pt;}
.h2{height:48.768750pt;}
.h15{height:50.240000pt;}
.h16{height:50.272000pt;}
.h1c{height:50.400000pt;}
.h1d{height:50.432000pt;}
.h12{height:54.272000pt;}
.h5{height:58.563750pt;}
.h8{height:60.057813pt;}
.h11{height:72.480000pt;}
.h13{height:72.512000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w2c{width:33.760000pt;}
.w34{width:37.120000pt;}
.w26{width:43.712000pt;}
.w3{width:45.632000pt;}
.w11{width:46.432000pt;}
.w25{width:50.080000pt;}
.w2e{width:50.400000pt;}
.w1e{width:54.880000pt;}
.w37{width:55.040000pt;}
.w1a{width:55.680000pt;}
.wa{width:56.032000pt;}
.w16{width:56.320000pt;}
.w12{width:57.120000pt;}
.w32{width:60.800000pt;}
.w27{width:67.520000pt;}
.w35{width:70.432000pt;}
.w2a{width:72.992000pt;}
.w2f{width:89.472000pt;}
.w2d{width:90.432000pt;}
.w22{width:90.752000pt;}
.we{width:94.240000pt;}
.w23{width:94.912000pt;}
.w20{width:99.840000pt;}
.w1c{width:100.800000pt;}
.w18{width:101.920000pt;}
.wf{width:102.272000pt;}
.w2b{width:103.360000pt;}
.w14{width:103.392000pt;}
.w6{width:110.912000pt;}
.wb{width:117.120000pt;}
.w7{width:118.560000pt;}
.wd{width:122.592000pt;}
.w28{width:122.752000pt;}
.w1f{width:125.792000pt;}
.w1b{width:127.872000pt;}
.w17{width:130.112000pt;}
.w13{width:132.512000pt;}
.w24{width:136.320000pt;}
.w33{width:148.186667pt;}
.w31{width:153.946667pt;}
.w39{width:157.946667pt;}
.w38{width:158.746667pt;}
.wc{width:160.826667pt;}
.w29{width:162.266667pt;}
.w9{width:196.026667pt;}
.w30{width:204.386667pt;}
.w8{width:209.626667pt;}
.w36{width:215.386667pt;}
.w19{width:296.186667pt;}
.w21{width:297.146667pt;}
.w1d{width:298.106667pt;}
.w15{width:299.066667pt;}
.w10{width:303.106667pt;}
.w5{width:365.986667pt;}
.w4{width:651.653333pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x4{left:7.200000pt;}
.x1{left:47.039988pt;}
.x3{left:48.000000pt;}
.xf{left:52.479988pt;}
.x38{left:57.760000pt;}
.x43{left:71.999988pt;}
.x1e{left:74.400000pt;}
.x10{left:76.511988pt;}
.x7{left:78.751988pt;}
.x23{left:82.112000pt;}
.x26{left:83.072000pt;}
.x2a{left:86.432000pt;}
.x5{left:94.272000pt;}
.x44{left:96.031988pt;}
.x13{left:98.592000pt;}
.x3d{left:102.432000pt;}
.x16{left:106.592000pt;}
.xd{left:147.226655pt;}
.x1a{left:156.026667pt;}
.xe{left:158.426655pt;}
.x2e{left:172.506667pt;}
.x33{left:175.066667pt;}
.xa{left:199.706655pt;}
.x2f{left:223.226667pt;}
.x1d{left:229.946655pt;}
.x6{left:248.834667pt;}
.x39{left:262.786667pt;}
.x30{left:267.586667pt;}
.x42{left:310.146655pt;}
.x17{left:316.866667pt;}
.x3e{left:318.466667pt;}
.x9{left:326.306655pt;}
.x31{left:335.746667pt;}
.x8{left:337.346655pt;}
.x34{left:352.866667pt;}
.x3f{left:374.146667pt;}
.x1f{left:378.146667pt;}
.x27{left:381.826667pt;}
.x2b{left:384.226667pt;}
.x35{left:387.266667pt;}
.x3a{left:417.533333pt;}
.xc{left:420.573322pt;}
.x11{left:425.053322pt;}
.x24{left:426.013333pt;}
.x28{left:428.893333pt;}
.x1b{left:440.733333pt;}
.x45{left:444.573322pt;}
.x12{left:449.053322pt;}
.x32{left:459.133333pt;}
.x14{left:465.213333pt;}
.x46{left:468.573322pt;}
.x2c{left:475.613333pt;}
.x36{left:478.333333pt;}
.x20{left:482.973333pt;}
.x29{left:484.573333pt;}
.x18{left:513.533333pt;}
.x37{left:529.373333pt;}
.x40{left:533.533333pt;}
.x1c{left:535.613333pt;}
.x19{left:570.213333pt;}
.x2d{left:571.173333pt;}
.x15{left:576.773333pt;}
.x25{left:611.013333pt;}
.x22{left:613.253333pt;}
.x21{left:616.133333pt;}
.x3b{left:627.973333pt;}
.x3c{left:665.733333pt;}
.x41{left:689.893322pt;}
.x2{left:737.279988pt;}
.xb{left:738.719988pt;}
}




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