
    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_db80275d9e837461ba1491b6.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_f090cb7b603523b92a98ac86.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.172852;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_65522a4db8e72a2a45795528.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_b6d5dad195b96b524b54a587.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.741211;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_57d2369c9fbf6e9ea45af18e.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_4541a6e6850b0983fb475f59.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.091309;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_0db1346c5d9b7980b168b34b.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_cc23c0e49dc118a5f4e2d395.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_a356a440992cebd66d7fbda0.woff2')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_3d3368c837a3aa4ea4177d89.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_ff0dcfca1ea0ef7fd47230ff.woff2')format("woff");}.ffb{font-family:ffb;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);}
.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);}
.v1{vertical-align:-73.440000px;}
.v3{vertical-align:-55.440000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:23.760000px;}
.ls8{letter-spacing:-2.700000px;}
.ls7{letter-spacing:-2.520000px;}
.ls9{letter-spacing:-1.980000px;}
.ls15{letter-spacing:-0.936000px;}
.ls1a{letter-spacing:-0.828000px;}
.ls1b{letter-spacing:-0.540000px;}
.lse{letter-spacing:-0.360000px;}
.ls4{letter-spacing:-0.269400px;}
.lsb{letter-spacing:-0.216000px;}
.lsf{letter-spacing:-0.108000px;}
.ls3{letter-spacing:0.000000px;}
.ls6{letter-spacing:0.018000px;}
.lsd{letter-spacing:0.108000px;}
.ls1{letter-spacing:0.180000px;}
.ls19{letter-spacing:0.234000px;}
.ls5{letter-spacing:0.256200px;}
.ls12{letter-spacing:0.324000px;}
.ls2{letter-spacing:0.360000px;}
.ls14{letter-spacing:0.468000px;}
.lsc{letter-spacing:0.504000px;}
.ls17{letter-spacing:0.594000px;}
.ls10{letter-spacing:0.612000px;}
.lsa{letter-spacing:0.738000px;}
.ls18{letter-spacing:25.308000px;}
.ls13{letter-spacing:49.788000px;}
.ls16{letter-spacing:52.668000px;}
.ls0{letter-spacing:1064.460000px;}
.ls11{letter-spacing:1100.280000px;}
.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;}
}
.ws3{word-spacing:-15.226440px;}
.ws0{word-spacing:-14.970240px;}
.wse{word-spacing:-14.112000px;}
.ws10{word-spacing:-14.094000px;}
.ws7{word-spacing:-14.004000px;}
.ws6{word-spacing:-13.860000px;}
.ws9{word-spacing:-13.608000px;}
.wsf{word-spacing:-13.518000px;}
.ws1{word-spacing:-13.500000px;}
.ws8{word-spacing:-13.284000px;}
.ws11{word-spacing:-12.672000px;}
.wsd{word-spacing:-12.420000px;}
.wsc{word-spacing:-12.060000px;}
.ws2{word-spacing:-11.790600px;}
.wsb{word-spacing:-11.700000px;}
.ws5{word-spacing:-10.980000px;}
.ws4{word-spacing:-9.000000px;}
.wsa{word-spacing:0.000000px;}
._4{margin-left:-3.307680px;}
._5{margin-left:-2.205600px;}
._1{margin-left:-1.192320px;}
._0{width:1.254960px;}
._a{width:2.430000px;}
._9{width:3.510000px;}
._b{width:4.806000px;}
._c{width:6.318000px;}
._16{width:7.659360px;}
._f{width:8.959680px;}
._e{width:10.098000px;}
._d{width:11.448000px;}
._11{width:13.230720px;}
._6{width:14.544000px;}
._7{width:15.822000px;}
._18{width:16.930080px;}
._8{width:18.522000px;}
._15{width:20.520000px;}
._14{width:21.708000px;}
._10{width:23.193360px;}
._17{width:24.956640px;}
._21{width:26.092080px;}
._1c{width:27.216000px;}
._1f{width:28.756080px;}
._23{width:29.797200px;}
._27{width:30.834000px;}
._13{width:31.968000px;}
._22{width:33.210000px;}
._29{width:34.240320px;}
._24{width:35.478000px;}
._26{width:36.653040px;}
._2a{width:37.908000px;}
._1b{width:39.690000px;}
._20{width:40.770000px;}
._28{width:42.408000px;}
._1d{width:43.488000px;}
._1e{width:44.812080px;}
._2c{width:46.638000px;}
._12{width:50.544000px;}
._25{width:52.542000px;}
._30{width:53.634000px;}
._2e{width:58.648320px;}
._3e{width:59.850000px;}
._19{width:61.344000px;}
._3c{width:62.424000px;}
._2d{width:64.098000px;}
._2b{width:68.643600px;}
._33{width:72.887040px;}
._34{width:77.922000px;}
._1a{width:80.028000px;}
._45{width:89.388000px;}
._4b{width:92.124000px;}
._39{width:93.312000px;}
._3a{width:94.541040px;}
._3f{width:100.260000px;}
._38{width:117.990000px;}
._47{width:125.538000px;}
._31{width:126.858000px;}
._4a{width:211.734000px;}
._3{width:229.774320px;}
._41{width:334.098000px;}
._42{width:335.142000px;}
._36{width:342.306000px;}
._35{width:343.660320px;}
._40{width:349.596000px;}
._3d{width:360.504000px;}
._2{width:391.163760px;}
._44{width:399.762000px;}
._43{width:590.214000px;}
._3b{width:665.370000px;}
._32{width:666.738000px;}
._46{width:744.804000px;}
._49{width:766.404000px;}
._48{width:952.398000px;}
._2f{width:966.330000px;}
._37{width:992.952000px;}
.fc5{color:transparent;}
.fc4{color:rgb(31,72,124);}
.fc3{color:rgb(0,32,96);}
.fc1{color:rgb(0,0,255);}
.fc2{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs8{font-size:5.760000px;}
.fsa{font-size:12.240000px;}
.fs9{font-size:18.000000px;}
.fsb{font-size:23.760000px;}
.fs6{font-size:36.000000px;}
.fs3{font-size:48.240000px;}
.fs2{font-size:54.000000px;}
.fs0{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs4{font-size:66.384000px;}
.fs7{font-size:72.000000px;}
.fs5{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.y1b4{bottom:2.340000px;}
.y16c{bottom:2.505000px;}
.y26{bottom:5.580000px;}
.y70{bottom:10.260000px;}
.y11b{bottom:14.400000px;}
.y10c{bottom:18.900000px;}
.y25{bottom:23.400000px;}
.y110{bottom:31.500000px;}
.y114{bottom:31.545000px;}
.y111{bottom:31.680000px;}
.y11a{bottom:32.220000px;}
.y11c{bottom:32.400000px;}
.y10b{bottom:36.720000px;}
.y10d{bottom:36.900000px;}
.y10f{bottom:49.320000px;}
.y113{bottom:49.365000px;}
.y117{bottom:49.500000px;}
.y115{bottom:49.545000px;}
.y118{bottom:49.680000px;}
.y24{bottom:50.220000px;}
.y60{bottom:58.500000px;}
.y23{bottom:68.040000px;}
.y4{bottom:76.860000px;}
.y5f{bottom:77.220000px;}
.y22{bottom:85.860000px;}
.y177{bottom:93.780000px;}
.y165{bottom:94.320000px;}
.yc1{bottom:96.840000px;}
.y141{bottom:97.020000px;}
.y107{bottom:97.380000px;}
.y21{bottom:103.860000px;}
.y6{bottom:105.120000px;}
.y188{bottom:105.840000px;}
.y1f4{bottom:106.380000px;}
.y47{bottom:108.000000px;}
.y1de{bottom:108.540000px;}
.y8e{bottom:109.440000px;}
.y176{bottom:111.600000px;}
.y164{bottom:112.140000px;}
.yc0{bottom:114.840000px;}
.yff{bottom:115.020000px;}
.y106{bottom:115.200000px;}
.y20{bottom:121.680000px;}
.y187{bottom:123.660000px;}
.y1f3{bottom:124.200000px;}
.y46{bottom:125.820000px;}
.y1dd{bottom:126.360000px;}
.y8d{bottom:127.260000px;}
.y14{bottom:128.160000px;}
.y175{bottom:129.600000px;}
.y163{bottom:129.960000px;}
.ybf{bottom:132.660000px;}
.yfe{bottom:132.840000px;}
.y105{bottom:133.020000px;}
.y1f{bottom:139.500000px;}
.y186{bottom:141.660000px;}
.y140{bottom:142.020000px;}
.y45{bottom:143.640000px;}
.y1dc{bottom:144.180000px;}
.y8c{bottom:145.080000px;}
.y174{bottom:147.420000px;}
.y162{bottom:147.780000px;}
.ybe{bottom:150.480000px;}
.y104{bottom:150.840000px;}
.y13{bottom:154.980000px;}
.y1e{bottom:157.320000px;}
.yfd{bottom:159.480000px;}
.y1f2{bottom:159.840000px;}
.y13f{bottom:160.020000px;}
.y44{bottom:161.640000px;}
.y1db{bottom:162.000000px;}
.y8b{bottom:162.900000px;}
.y173{bottom:165.240000px;}
.y161{bottom:165.780000px;}
.ybd{bottom:168.300000px;}
.y103{bottom:168.840000px;}
.y5c{bottom:170.640000px;}
.y1d{bottom:175.140000px;}
.yfc{bottom:177.300000px;}
.y13e{bottom:177.840000px;}
.y43{bottom:179.460000px;}
.y1da{bottom:179.820000px;}
.y8a{bottom:180.720000px;}
.y12{bottom:182.025000px;}
.y172{bottom:183.060000px;}
.y160{bottom:183.600000px;}
.ybc{bottom:186.120000px;}
.y102{bottom:186.660000px;}
.y5b{bottom:188.460000px;}
.y1c{bottom:193.185000px;}
.y185{bottom:195.120000px;}
.y13d{bottom:195.660000px;}
.y42{bottom:197.280000px;}
.y1d9{bottom:197.640000px;}
.y89{bottom:198.720000px;}
.y171{bottom:200.880000px;}
.ybb{bottom:203.940000px;}
.yfb{bottom:204.480000px;}
.y5a{bottom:206.310000px;}
.y11{bottom:208.485000px;}
.y15f{bottom:210.090000px;}
.y1b{bottom:211.005000px;}
.y184{bottom:212.970000px;}
.y13c{bottom:213.510000px;}
.y41{bottom:215.130000px;}
.y1d8{bottom:215.670000px;}
.y88{bottom:216.570000px;}
.y170{bottom:218.730000px;}
.yfa{bottom:222.330000px;}
.y59{bottom:224.130000px;}
.y1a{bottom:228.825000px;}
.y183{bottom:230.790000px;}
.yba{bottom:230.970000px;}
.y13b{bottom:231.330000px;}
.y40{bottom:232.950000px;}
.y1d7{bottom:233.490000px;}
.y87{bottom:234.390000px;}
.y10{bottom:235.665000px;}
.y15e{bottom:238.710000px;}
.yf9{bottom:240.150000px;}
.y58{bottom:241.950000px;}
.y16f{bottom:245.730000px;}
.y19{bottom:246.645000px;}
.yb9{bottom:248.790000px;}
.y1f1{bottom:249.150000px;}
.y13a{bottom:249.330000px;}
.y3f{bottom:250.950000px;}
.y1d6{bottom:251.310000px;}
.y86{bottom:252.210000px;}
.yf8{bottom:257.970000px;}
.y57{bottom:259.950000px;}
.yf{bottom:262.485000px;}
.y16e{bottom:263.550000px;}
.y18{bottom:264.465000px;}
.yb8{bottom:266.610000px;}
.y1f0{bottom:266.970000px;}
.y139{bottom:267.150000px;}
.y3e{bottom:268.770000px;}
.y1d5{bottom:269.130000px;}
.y85{bottom:270.030000px;}
.yf7{bottom:275.970000px;}
.y56{bottom:277.770000px;}
.y16d{bottom:281.010000px;}
.y17{bottom:282.285000px;}
.yb7{bottom:284.430000px;}
.y138{bottom:284.970000px;}
.y3d{bottom:286.590000px;}
.y1d4{bottom:286.950000px;}
.y1b2{bottom:287.490000px;}
.y84{bottom:287.850000px;}
.y15d{bottom:288.030000px;}
.y182{bottom:293.430000px;}
.yf6{bottom:293.790000px;}
.ye{bottom:294.345000px;}
.y55{bottom:295.590000px;}
.y16{bottom:300.285000px;}
.yb6{bottom:302.250000px;}
.y137{bottom:302.790000px;}
.y3c{bottom:304.410000px;}
.y1d3{bottom:304.950000px;}
.y1b1{bottom:305.310000px;}
.y15c{bottom:305.850000px;}
.y181{bottom:311.250000px;}
.yf5{bottom:311.610000px;}
.y54{bottom:313.410000px;}
.y83{bottom:314.850000px;}
.yd{bottom:317.745000px;}
.y15{bottom:318.105000px;}
.y136{bottom:320.610000px;}
.y3b{bottom:322.230000px;}
.y1d2{bottom:322.770000px;}
.y1b0{bottom:323.130000px;}
.y15b{bottom:323.670000px;}
.yb5{bottom:329.070000px;}
.yf4{bottom:329.430000px;}
.y53{bottom:331.230000px;}
.y82{bottom:332.670000px;}
.y135{bottom:338.430000px;}
.y1d1{bottom:340.590000px;}
.y1af{bottom:341.130000px;}
.y15a{bottom:341.490000px;}
.yb4{bottom:347.070000px;}
.yf3{bottom:347.250000px;}
.y3a{bottom:349.050000px;}
.y81{bottom:350.490000px;}
.y1ef{bottom:356.250000px;}
.y134{bottom:356.430000px;}
.y1d0{bottom:358.410000px;}
.y1ae{bottom:358.950000px;}
.y159{bottom:359.310000px;}
.yb3{bottom:364.890000px;}
.yf2{bottom:365.250000px;}
.y39{bottom:367.050000px;}
.y80{bottom:368.310000px;}
.y1ee{bottom:374.070000px;}
.y133{bottom:374.250000px;}
.y1ad{bottom:376.770000px;}
.y158{bottom:377.130000px;}
.yb2{bottom:382.710000px;}
.yf1{bottom:383.070000px;}
.y38{bottom:384.870000px;}
.y7f{bottom:386.130000px;}
.y1cf{bottom:386.670000px;}
.y132{bottom:392.070000px;}
.y1ac{bottom:394.590000px;}
.y157{bottom:395.130000px;}
.yb1{bottom:400.530000px;}
.yf0{bottom:400.890000px;}
.y37{bottom:402.690000px;}
.y7e{bottom:404.130000px;}
.y131{bottom:409.890000px;}
.y1ab{bottom:412.410000px;}
.y156{bottom:412.950000px;}
.y1ce{bottom:417.990000px;}
.yb0{bottom:418.350000px;}
.yef{bottom:418.710000px;}
.y36{bottom:420.510000px;}
.y7d{bottom:421.950000px;}
.y130{bottom:427.710000px;}
.y1aa{bottom:430.410000px;}
.y155{bottom:430.770000px;}
.y1cd{bottom:435.990000px;}
.y180{bottom:436.170000px;}
.yaf{bottom:436.350000px;}
.yee{bottom:436.530000px;}
.y35{bottom:438.330000px;}
.y7c{bottom:439.770000px;}
.y1ed{bottom:445.575000px;}
.y12f{bottom:445.755000px;}
.y1a9{bottom:448.275000px;}
.y154{bottom:448.635000px;}
.y1f7{bottom:452.055000px;}
.y1cc{bottom:453.855000px;}
.yae{bottom:454.215000px;}
.yed{bottom:454.395000px;}
.y34{bottom:456.375000px;}
.y7b{bottom:457.635000px;}
.y1ec{bottom:463.395000px;}
.y12e{bottom:463.575000px;}
.y52{bottom:465.375000px;}
.y1a8{bottom:466.095000px;}
.y153{bottom:466.455000px;}
.y1cb{bottom:471.675000px;}
.yad{bottom:472.035000px;}
.yec{bottom:472.395000px;}
.y33{bottom:474.195000px;}
.y7a{bottom:475.455000px;}
.y12d{bottom:481.395000px;}
.y51{bottom:483.195000px;}
.y1f6{bottom:483.555000px;}
.y1a7{bottom:483.915000px;}
.y152{bottom:484.455000px;}
.y1ca{bottom:489.495000px;}
.y17f{bottom:489.855000px;}
.yeb{bottom:490.215000px;}
.y32{bottom:492.015000px;}
.y79{bottom:493.275000px;}
.yac{bottom:498.495000px;}
.y12c{bottom:499.215000px;}
.y50{bottom:501.015000px;}
.y1a6{bottom:501.735000px;}
.y151{bottom:502.275000px;}
.y1f5{bottom:505.335000px;}
.y1c9{bottom:507.315000px;}
.y16b{bottom:507.855000px;}
.yea{bottom:508.035000px;}
.y31{bottom:509.835000px;}
.y78{bottom:511.275000px;}
.yab{bottom:516.315000px;}
.y17e{bottom:516.675000px;}
.y12b{bottom:517.035000px;}
.y4f{bottom:518.835000px;}
.y1a5{bottom:519.555000px;}
.y150{bottom:520.095000px;}
.y1c8{bottom:525.315000px;}
.y16a{bottom:525.675000px;}
.ye9{bottom:525.855000px;}
.y30{bottom:527.655000px;}
.y77{bottom:529.095000px;}
.y17d{bottom:534.495000px;}
.y12a{bottom:534.855000px;}
.y4e{bottom:536.655000px;}
.y1a4{bottom:537.555000px;}
.y14f{bottom:537.915000px;}
.y1c7{bottom:543.135000px;}
.yaa{bottom:543.495000px;}
.y2f{bottom:545.475000px;}
.y76{bottom:546.915000px;}
.ye8{bottom:552.315000px;}
.y101{bottom:552.675000px;}
.y129{bottom:552.855000px;}
.y4d{bottom:554.475000px;}
.y1a3{bottom:555.375000px;}
.y14e{bottom:555.735000px;}
.y1c6{bottom:560.955000px;}
.y169{bottom:561.315000px;}
.ya9{bottom:561.495000px;}
.y2e{bottom:563.475000px;}
.ye7{bottom:570.135000px;}
.y17c{bottom:570.315000px;}
.y100{bottom:570.495000px;}
.y128{bottom:570.675000px;}
.y4c{bottom:572.475000px;}
.y1a2{bottom:573.195000px;}
.y75{bottom:573.375000px;}
.y14d{bottom:573.555000px;}
.y1c5{bottom:578.775000px;}
.ya8{bottom:579.315000px;}
.y2d{bottom:581.295000px;}
.y17b{bottom:588.135000px;}
.y127{bottom:588.495000px;}
.y4b{bottom:590.295000px;}
.y1a1{bottom:591.015000px;}
.y74{bottom:591.195000px;}
.y14c{bottom:591.555000px;}
.y1c4{bottom:596.595000px;}
.ya7{bottom:597.135000px;}
.ye6{bottom:597.495000px;}
.y2c{bottom:599.115000px;}
.y17a{bottom:605.955000px;}
.y126{bottom:606.315000px;}
.y4a{bottom:608.115000px;}
.y14b{bottom:609.375000px;}
.y1c3{bottom:614.415000px;}
.ya6{bottom:614.955000px;}
.y2b{bottom:616.935000px;}
.y1a0{bottom:617.835000px;}
.y73{bottom:618.195000px;}
.ye5{bottom:619.455000px;}
.y179{bottom:623.775000px;}
.y125{bottom:624.135000px;}
.y49{bottom:625.935000px;}
.y14a{bottom:627.195000px;}
.y1c2{bottom:632.415000px;}
.ya5{bottom:632.775000px;}
.y2a{bottom:634.755000px;}
.y19f{bottom:635.655000px;}
.y178{bottom:641.595000px;}
.y1eb{bottom:641.955000px;}
.y124{bottom:642.135000px;}
.y48{bottom:643.755000px;}
.y149{bottom:645.015000px;}
.y72{bottom:645.375000px;}
.y168{bottom:650.595000px;}
.ya4{bottom:650.775000px;}
.y19e{bottom:653.655000px;}
.y29{bottom:656.535000px;}
.y1c1{bottom:659.235000px;}
.y1ea{bottom:659.775000px;}
.y123{bottom:659.955000px;}
.y28{bottom:661.935000px;}
.y148{bottom:662.835000px;}
.y71{bottom:663.195000px;}
.ya3{bottom:668.595000px;}
.y19d{bottom:671.475000px;}
.y1c0{bottom:677.085000px;}
.y122{bottom:677.805000px;}
.y147{bottom:680.865000px;}
.y6f{bottom:685.185000px;}
.ya2{bottom:686.445000px;}
.y27{bottom:688.245000px;}
.y19c{bottom:689.325000px;}
.y1bf{bottom:694.905000px;}
.y121{bottom:695.625000px;}
.y146{bottom:698.685000px;}
.ya1{bottom:704.265000px;}
.y19b{bottom:707.145000px;}
.y1be{bottom:712.725000px;}
.y1e9{bottom:713.445000px;}
.y145{bottom:716.505000px;}
.ya0{bottom:722.085000px;}
.y120{bottom:722.445000px;}
.y19a{bottom:724.965000px;}
.y1bd{bottom:730.725000px;}
.y1e8{bottom:731.265000px;}
.yc{bottom:733.785000px;}
.y144{bottom:734.325000px;}
.y9f{bottom:739.905000px;}
.y11f{bottom:740.265000px;}
.y199{bottom:742.965000px;}
.ye4{bottom:743.505000px;}
.y1bc{bottom:748.545000px;}
.y1e7{bottom:749.085000px;}
.yd5{bottom:751.965000px;}
.y167{bottom:757.725000px;}
.y9e{bottom:757.905000px;}
.y198{bottom:760.785000px;}
.y143{bottom:761.145000px;}
.y1bb{bottom:766.365000px;}
.y11e{bottom:766.905000px;}
.yd4{bottom:769.785000px;}
.y9d{bottom:775.725000px;}
.y197{bottom:778.605000px;}
.y142{bottom:778.965000px;}
.y1ba{bottom:784.185000px;}
.y11d{bottom:784.725000px;}
.y1e6{bottom:784.905000px;}
.yd3{bottom:787.605000px;}
.y9c{bottom:793.545000px;}
.y196{bottom:796.425000px;}
.y119{bottom:801.105000px;}
.y1b9{bottom:802.005000px;}
.ye3{bottom:802.545000px;}
.y1e5{bottom:802.725000px;}
.yd2{bottom:805.425000px;}
.y166{bottom:806.685000px;}
.y9b{bottom:811.365000px;}
.y195{bottom:814.245000px;}
.y1b8{bottom:819.825000px;}
.ye2{bottom:820.365000px;}
.y1e4{bottom:820.545000px;}
.yd1{bottom:823.245000px;}
.y9a{bottom:829.185000px;}
.y194{bottom:832.065000px;}
.ye1{bottom:838.185000px;}
.y1e3{bottom:838.365000px;}
.yd0{bottom:841.065000px;}
.y116{bottom:846.285000px;}
.y1b7{bottom:846.825000px;}
.y99{bottom:847.185000px;}
.y193{bottom:850.065000px;}
.ye0{bottom:856.185000px;}
.ycf{bottom:859.065000px;}
.y1b6{bottom:864.645000px;}
.y98{bottom:865.005000px;}
.y192{bottom:867.885000px;}
.ydf{bottom:874.005000px;}
.y1e2{bottom:874.185000px;}
.yce{bottom:876.885000px;}
.y1b5{bottom:882.465000px;}
.y97{bottom:891.825000px;}
.y1e1{bottom:892.005000px;}
.ycd{bottom:894.705000px;}
.y1b3{bottom:895.425000px;}
.yde{bottom:900.825000px;}
.y112{bottom:908.745000px;}
.y96{bottom:909.645000px;}
.y1e0{bottom:909.825000px;}
.y191{bottom:912.570000px;}
.ydd{bottom:918.690000px;}
.ycc{bottom:921.570000px;}
.y95{bottom:927.510000px;}
.y1df{bottom:927.690000px;}
.y190{bottom:930.390000px;}
.ydc{bottom:936.510000px;}
.ycb{bottom:939.390000px;}
.y94{bottom:945.330000px;}
.y6e{bottom:945.510000px;}
.y18f{bottom:948.390000px;}
.ydb{bottom:954.330000px;}
.yca{bottom:957.390000px;}
.y6d{bottom:963.330000px;}
.y18e{bottom:966.210000px;}
.y10e{bottom:971.250000px;}
.yda{bottom:972.330000px;}
.yc9{bottom:975.210000px;}
.y93{bottom:981.150000px;}
.y6c{bottom:981.330000px;}
.y18d{bottom:984.030000px;}
.yd9{bottom:990.150000px;}
.yc8{bottom:993.030000px;}
.y92{bottom:998.970000px;}
.y6b{bottom:999.150000px;}
.y18c{bottom:1001.850000px;}
.yd8{bottom:1007.970000px;}
.yc7{bottom:1010.850000px;}
.y91{bottom:1016.790000px;}
.y6a{bottom:1016.970000px;}
.y18b{bottom:1019.670000px;}
.yd7{bottom:1025.790000px;}
.yc6{bottom:1028.670000px;}
.y10a{bottom:1033.530000px;}
.y90{bottom:1034.610000px;}
.y69{bottom:1034.790000px;}
.yd6{bottom:1043.610000px;}
.y18a{bottom:1046.130000px;}
.yc5{bottom:1046.490000px;}
.y68{bottom:1052.610000px;}
.yc4{bottom:1064.490000px;}
.y67{bottom:1070.610000px;}
.y189{bottom:1074.930000px;}
.y8f{bottom:1079.070000px;}
.yb{bottom:1079.430000px;}
.yc3{bottom:1082.310000px;}
.y109{bottom:1086.090000px;}
.y66{bottom:1088.430000px;}
.y108{bottom:1096.890000px;}
.ya{bottom:1105.890000px;}
.y65{bottom:1106.250000px;}
.yc2{bottom:1110.570000px;}
.y5{bottom:1112.940000px;}
.y64{bottom:1124.070000px;}
.y9{bottom:1132.350000px;}
.y63{bottom:1141.890000px;}
.y62{bottom:1159.740000px;}
.y8{bottom:1164.420000px;}
.y3{bottom:1166.040000px;}
.y61{bottom:1177.740000px;}
.y2{bottom:1181.520000px;}
.y5e{bottom:1191.060000px;}
.y7{bottom:1191.240000px;}
.y1{bottom:1196.820000px;}
.y5d{bottom:1198.080000px;}
.h12{height:5.805000px;}
.h17{height:12.012891px;}
.h14{height:17.666016px;}
.h1b{height:23.307539px;}
.h20{height:44.460000px;}
.h10{height:44.640000px;}
.hf{height:47.276367px;}
.h5{height:47.344922px;}
.h13{height:47.980898px;}
.h7{height:48.256875px;}
.h8{height:48.361781px;}
.h1c{height:49.305000px;}
.h16{height:52.971680px;}
.he{height:52.998047px;}
.hd{height:54.421875px;}
.h1a{height:55.503491px;}
.h2{height:58.651172px;}
.hb{height:59.092031px;}
.ha{height:60.041250px;}
.h1d{height:61.545000px;}
.h1e{height:61.582500px;}
.h1f{height:61.740000px;}
.h4{height:65.010937px;}
.h3{height:65.884219px;}
.h19{height:66.757500px;}
.h11{height:72.562500px;}
.h9{height:84.898125px;}
.h18{height:95.250000px;}
.h6{height:149.940000px;}
.h22{height:207.195000px;}
.h15{height:254.010000px;}
.h23{height:293.655000px;}
.hc{height:339.330000px;}
.h21{height:346.755000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w2{width:-79.560000px;}
.w8{width:184.699500px;}
.wa{width:209.715000px;}
.w3{width:210.133500px;}
.w9{width:250.230000px;}
.wc{width:334.873500px;}
.w6{width:356.473500px;}
.wd{width:358.620000px;}
.w4{width:536.505000px;}
.wb{width:560.070000px;}
.w7{width:711.315000px;}
.w5{width:747.358500px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xa{left:8.098500px;}
.x3{left:12.090000px;}
.x1{left:54.000000px;}
.x11{left:58.501500px;}
.x1c{left:61.723500px;}
.x26{left:67.860000px;}
.x23{left:69.301500px;}
.x9{left:72.901500px;}
.x1f{left:81.000000px;}
.x6{left:84.060000px;}
.x14{left:90.946500px;}
.xc{left:95.256000px;}
.x13{left:99.576000px;}
.x22{left:105.696000px;}
.x19{left:108.036000px;}
.x27{left:122.256000px;}
.x1b{left:123.526500px;}
.x16{left:130.896000px;}
.x20{left:166.545000px;}
.x25{left:236.730000px;}
.x1a{left:265.035000px;}
.xb{left:283.755000px;}
.x1d{left:308.955000px;}
.x24{left:327.133500px;}
.x29{left:350.700000px;}
.x12{left:352.873500px;}
.x7{left:376.455000px;}
.x8{left:383.655000px;}
.x10{left:438.195000px;}
.x28{left:465.960000px;}
.xd{left:473.505000px;}
.x2c{left:474.945000px;}
.x17{left:500.505000px;}
.x2b{left:503.745000px;}
.xe{left:514.725000px;}
.x18{left:527.505000px;}
.x21{left:552.345000px;}
.x1e{left:559.920000px;}
.x2a{left:656.250000px;}
.xf{left:668.490000px;}
.x15{left:703.393500px;}
.x2{left:972.540000px;}
.x4{left:997.050000px;}
.x5{left:1004.070000px;}
@media print{
.v1{vertical-align:-65.280000pt;}
.v3{vertical-align:-49.280000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:21.120000pt;}
.ls8{letter-spacing:-2.400000pt;}
.ls7{letter-spacing:-2.240000pt;}
.ls9{letter-spacing:-1.760000pt;}
.ls15{letter-spacing:-0.832000pt;}
.ls1a{letter-spacing:-0.736000pt;}
.ls1b{letter-spacing:-0.480000pt;}
.lse{letter-spacing:-0.320000pt;}
.ls4{letter-spacing:-0.239467pt;}
.lsb{letter-spacing:-0.192000pt;}
.lsf{letter-spacing:-0.096000pt;}
.ls3{letter-spacing:0.000000pt;}
.ls6{letter-spacing:0.016000pt;}
.lsd{letter-spacing:0.096000pt;}
.ls1{letter-spacing:0.160000pt;}
.ls19{letter-spacing:0.208000pt;}
.ls5{letter-spacing:0.227733pt;}
.ls12{letter-spacing:0.288000pt;}
.ls2{letter-spacing:0.320000pt;}
.ls14{letter-spacing:0.416000pt;}
.lsc{letter-spacing:0.448000pt;}
.ls17{letter-spacing:0.528000pt;}
.ls10{letter-spacing:0.544000pt;}
.lsa{letter-spacing:0.656000pt;}
.ls18{letter-spacing:22.496000pt;}
.ls13{letter-spacing:44.256000pt;}
.ls16{letter-spacing:46.816000pt;}
.ls0{letter-spacing:946.186667pt;}
.ls11{letter-spacing:978.026667pt;}
.ws3{word-spacing:-13.534613pt;}
.ws0{word-spacing:-13.306880pt;}
.wse{word-spacing:-12.544000pt;}
.ws10{word-spacing:-12.528000pt;}
.ws7{word-spacing:-12.448000pt;}
.ws6{word-spacing:-12.320000pt;}
.ws9{word-spacing:-12.096000pt;}
.wsf{word-spacing:-12.016000pt;}
.ws1{word-spacing:-12.000000pt;}
.ws8{word-spacing:-11.808000pt;}
.ws11{word-spacing:-11.264000pt;}
.wsd{word-spacing:-11.040000pt;}
.wsc{word-spacing:-10.720000pt;}
.ws2{word-spacing:-10.480533pt;}
.wsb{word-spacing:-10.400000pt;}
.ws5{word-spacing:-9.760000pt;}
.ws4{word-spacing:-8.000000pt;}
.wsa{word-spacing:0.000000pt;}
._4{margin-left:-2.940160pt;}
._5{margin-left:-1.960533pt;}
._1{margin-left:-1.059840pt;}
._0{width:1.115520pt;}
._a{width:2.160000pt;}
._9{width:3.120000pt;}
._b{width:4.272000pt;}
._c{width:5.616000pt;}
._16{width:6.808320pt;}
._f{width:7.964160pt;}
._e{width:8.976000pt;}
._d{width:10.176000pt;}
._11{width:11.760640pt;}
._6{width:12.928000pt;}
._7{width:14.064000pt;}
._18{width:15.048960pt;}
._8{width:16.464000pt;}
._15{width:18.240000pt;}
._14{width:19.296000pt;}
._10{width:20.616320pt;}
._17{width:22.183680pt;}
._21{width:23.192960pt;}
._1c{width:24.192000pt;}
._1f{width:25.560960pt;}
._23{width:26.486400pt;}
._27{width:27.408000pt;}
._13{width:28.416000pt;}
._22{width:29.520000pt;}
._29{width:30.435840pt;}
._24{width:31.536000pt;}
._26{width:32.580480pt;}
._2a{width:33.696000pt;}
._1b{width:35.280000pt;}
._20{width:36.240000pt;}
._28{width:37.696000pt;}
._1d{width:38.656000pt;}
._1e{width:39.832960pt;}
._2c{width:41.456000pt;}
._12{width:44.928000pt;}
._25{width:46.704000pt;}
._30{width:47.674667pt;}
._2e{width:52.131840pt;}
._3e{width:53.200000pt;}
._19{width:54.528000pt;}
._3c{width:55.488000pt;}
._2d{width:56.976000pt;}
._2b{width:61.016533pt;}
._33{width:64.788480pt;}
._34{width:69.264000pt;}
._1a{width:71.136000pt;}
._45{width:79.456000pt;}
._4b{width:81.888000pt;}
._39{width:82.944000pt;}
._3a{width:84.036480pt;}
._3f{width:89.120000pt;}
._38{width:104.880000pt;}
._47{width:111.589333pt;}
._31{width:112.762667pt;}
._4a{width:188.208000pt;}
._3{width:204.243840pt;}
._41{width:296.976000pt;}
._42{width:297.904000pt;}
._36{width:304.272000pt;}
._35{width:305.475840pt;}
._40{width:310.752000pt;}
._3d{width:320.448000pt;}
._2{width:347.701120pt;}
._44{width:355.344000pt;}
._43{width:524.634667pt;}
._3b{width:591.440000pt;}
._32{width:592.656000pt;}
._46{width:662.048000pt;}
._49{width:681.248000pt;}
._48{width:846.576000pt;}
._2f{width:858.960000pt;}
._37{width:882.624000pt;}
.fs8{font-size:5.120000pt;}
.fsa{font-size:10.880000pt;}
.fs9{font-size:16.000000pt;}
.fsb{font-size:21.120000pt;}
.fs6{font-size:32.000000pt;}
.fs3{font-size:42.880000pt;}
.fs2{font-size:48.000000pt;}
.fs0{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs4{font-size:59.008000pt;}
.fs7{font-size:64.000000pt;}
.fs5{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.y1b4{bottom:2.080000pt;}
.y16c{bottom:2.226667pt;}
.y26{bottom:4.960000pt;}
.y70{bottom:9.120000pt;}
.y11b{bottom:12.800000pt;}
.y10c{bottom:16.800000pt;}
.y25{bottom:20.800000pt;}
.y110{bottom:28.000000pt;}
.y114{bottom:28.040000pt;}
.y111{bottom:28.160000pt;}
.y11a{bottom:28.640000pt;}
.y11c{bottom:28.800000pt;}
.y10b{bottom:32.640000pt;}
.y10d{bottom:32.800000pt;}
.y10f{bottom:43.840000pt;}
.y113{bottom:43.880000pt;}
.y117{bottom:44.000000pt;}
.y115{bottom:44.040000pt;}
.y118{bottom:44.160000pt;}
.y24{bottom:44.640000pt;}
.y60{bottom:52.000000pt;}
.y23{bottom:60.480000pt;}
.y4{bottom:68.320000pt;}
.y5f{bottom:68.640000pt;}
.y22{bottom:76.320000pt;}
.y177{bottom:83.360000pt;}
.y165{bottom:83.840000pt;}
.yc1{bottom:86.080000pt;}
.y141{bottom:86.240000pt;}
.y107{bottom:86.560000pt;}
.y21{bottom:92.320000pt;}
.y6{bottom:93.440000pt;}
.y188{bottom:94.080000pt;}
.y1f4{bottom:94.560000pt;}
.y47{bottom:96.000000pt;}
.y1de{bottom:96.480000pt;}
.y8e{bottom:97.280000pt;}
.y176{bottom:99.200000pt;}
.y164{bottom:99.680000pt;}
.yc0{bottom:102.080000pt;}
.yff{bottom:102.240000pt;}
.y106{bottom:102.400000pt;}
.y20{bottom:108.160000pt;}
.y187{bottom:109.920000pt;}
.y1f3{bottom:110.400000pt;}
.y46{bottom:111.840000pt;}
.y1dd{bottom:112.320000pt;}
.y8d{bottom:113.120000pt;}
.y14{bottom:113.920000pt;}
.y175{bottom:115.200000pt;}
.y163{bottom:115.520000pt;}
.ybf{bottom:117.920000pt;}
.yfe{bottom:118.080000pt;}
.y105{bottom:118.240000pt;}
.y1f{bottom:124.000000pt;}
.y186{bottom:125.920000pt;}
.y140{bottom:126.240000pt;}
.y45{bottom:127.680000pt;}
.y1dc{bottom:128.160000pt;}
.y8c{bottom:128.960000pt;}
.y174{bottom:131.040000pt;}
.y162{bottom:131.360000pt;}
.ybe{bottom:133.760000pt;}
.y104{bottom:134.080000pt;}
.y13{bottom:137.760000pt;}
.y1e{bottom:139.840000pt;}
.yfd{bottom:141.760000pt;}
.y1f2{bottom:142.080000pt;}
.y13f{bottom:142.240000pt;}
.y44{bottom:143.680000pt;}
.y1db{bottom:144.000000pt;}
.y8b{bottom:144.800000pt;}
.y173{bottom:146.880000pt;}
.y161{bottom:147.360000pt;}
.ybd{bottom:149.600000pt;}
.y103{bottom:150.080000pt;}
.y5c{bottom:151.680000pt;}
.y1d{bottom:155.680000pt;}
.yfc{bottom:157.600000pt;}
.y13e{bottom:158.080000pt;}
.y43{bottom:159.520000pt;}
.y1da{bottom:159.840000pt;}
.y8a{bottom:160.640000pt;}
.y12{bottom:161.800000pt;}
.y172{bottom:162.720000pt;}
.y160{bottom:163.200000pt;}
.ybc{bottom:165.440000pt;}
.y102{bottom:165.920000pt;}
.y5b{bottom:167.520000pt;}
.y1c{bottom:171.720000pt;}
.y185{bottom:173.440000pt;}
.y13d{bottom:173.920000pt;}
.y42{bottom:175.360000pt;}
.y1d9{bottom:175.680000pt;}
.y89{bottom:176.640000pt;}
.y171{bottom:178.560000pt;}
.ybb{bottom:181.280000pt;}
.yfb{bottom:181.760000pt;}
.y5a{bottom:183.386667pt;}
.y11{bottom:185.320000pt;}
.y15f{bottom:186.746667pt;}
.y1b{bottom:187.560000pt;}
.y184{bottom:189.306667pt;}
.y13c{bottom:189.786667pt;}
.y41{bottom:191.226667pt;}
.y1d8{bottom:191.706667pt;}
.y88{bottom:192.506667pt;}
.y170{bottom:194.426667pt;}
.yfa{bottom:197.626667pt;}
.y59{bottom:199.226667pt;}
.y1a{bottom:203.400000pt;}
.y183{bottom:205.146667pt;}
.yba{bottom:205.306667pt;}
.y13b{bottom:205.626667pt;}
.y40{bottom:207.066667pt;}
.y1d7{bottom:207.546667pt;}
.y87{bottom:208.346667pt;}
.y10{bottom:209.480000pt;}
.y15e{bottom:212.186667pt;}
.yf9{bottom:213.466667pt;}
.y58{bottom:215.066667pt;}
.y16f{bottom:218.426667pt;}
.y19{bottom:219.240000pt;}
.yb9{bottom:221.146667pt;}
.y1f1{bottom:221.466667pt;}
.y13a{bottom:221.626667pt;}
.y3f{bottom:223.066667pt;}
.y1d6{bottom:223.386667pt;}
.y86{bottom:224.186667pt;}
.yf8{bottom:229.306667pt;}
.y57{bottom:231.066667pt;}
.yf{bottom:233.320000pt;}
.y16e{bottom:234.266667pt;}
.y18{bottom:235.080000pt;}
.yb8{bottom:236.986667pt;}
.y1f0{bottom:237.306667pt;}
.y139{bottom:237.466667pt;}
.y3e{bottom:238.906667pt;}
.y1d5{bottom:239.226667pt;}
.y85{bottom:240.026667pt;}
.yf7{bottom:245.306667pt;}
.y56{bottom:246.906667pt;}
.y16d{bottom:249.786667pt;}
.y17{bottom:250.920000pt;}
.yb7{bottom:252.826667pt;}
.y138{bottom:253.306667pt;}
.y3d{bottom:254.746667pt;}
.y1d4{bottom:255.066667pt;}
.y1b2{bottom:255.546667pt;}
.y84{bottom:255.866667pt;}
.y15d{bottom:256.026667pt;}
.y182{bottom:260.826667pt;}
.yf6{bottom:261.146667pt;}
.ye{bottom:261.640000pt;}
.y55{bottom:262.746667pt;}
.y16{bottom:266.920000pt;}
.yb6{bottom:268.666667pt;}
.y137{bottom:269.146667pt;}
.y3c{bottom:270.586667pt;}
.y1d3{bottom:271.066667pt;}
.y1b1{bottom:271.386667pt;}
.y15c{bottom:271.866667pt;}
.y181{bottom:276.666667pt;}
.yf5{bottom:276.986667pt;}
.y54{bottom:278.586667pt;}
.y83{bottom:279.866667pt;}
.yd{bottom:282.440000pt;}
.y15{bottom:282.760000pt;}
.y136{bottom:284.986667pt;}
.y3b{bottom:286.426667pt;}
.y1d2{bottom:286.906667pt;}
.y1b0{bottom:287.226667pt;}
.y15b{bottom:287.706667pt;}
.yb5{bottom:292.506667pt;}
.yf4{bottom:292.826667pt;}
.y53{bottom:294.426667pt;}
.y82{bottom:295.706667pt;}
.y135{bottom:300.826667pt;}
.y1d1{bottom:302.746667pt;}
.y1af{bottom:303.226667pt;}
.y15a{bottom:303.546667pt;}
.yb4{bottom:308.506667pt;}
.yf3{bottom:308.666667pt;}
.y3a{bottom:310.266667pt;}
.y81{bottom:311.546667pt;}
.y1ef{bottom:316.666667pt;}
.y134{bottom:316.826667pt;}
.y1d0{bottom:318.586667pt;}
.y1ae{bottom:319.066667pt;}
.y159{bottom:319.386667pt;}
.yb3{bottom:324.346667pt;}
.yf2{bottom:324.666667pt;}
.y39{bottom:326.266667pt;}
.y80{bottom:327.386667pt;}
.y1ee{bottom:332.506667pt;}
.y133{bottom:332.666667pt;}
.y1ad{bottom:334.906667pt;}
.y158{bottom:335.226667pt;}
.yb2{bottom:340.186667pt;}
.yf1{bottom:340.506667pt;}
.y38{bottom:342.106667pt;}
.y7f{bottom:343.226667pt;}
.y1cf{bottom:343.706667pt;}
.y132{bottom:348.506667pt;}
.y1ac{bottom:350.746667pt;}
.y157{bottom:351.226667pt;}
.yb1{bottom:356.026667pt;}
.yf0{bottom:356.346667pt;}
.y37{bottom:357.946667pt;}
.y7e{bottom:359.226667pt;}
.y131{bottom:364.346667pt;}
.y1ab{bottom:366.586667pt;}
.y156{bottom:367.066667pt;}
.y1ce{bottom:371.546667pt;}
.yb0{bottom:371.866667pt;}
.yef{bottom:372.186667pt;}
.y36{bottom:373.786667pt;}
.y7d{bottom:375.066667pt;}
.y130{bottom:380.186667pt;}
.y1aa{bottom:382.586667pt;}
.y155{bottom:382.906667pt;}
.y1cd{bottom:387.546667pt;}
.y180{bottom:387.706667pt;}
.yaf{bottom:387.866667pt;}
.yee{bottom:388.026667pt;}
.y35{bottom:389.626667pt;}
.y7c{bottom:390.906667pt;}
.y1ed{bottom:396.066667pt;}
.y12f{bottom:396.226667pt;}
.y1a9{bottom:398.466667pt;}
.y154{bottom:398.786667pt;}
.y1f7{bottom:401.826667pt;}
.y1cc{bottom:403.426667pt;}
.yae{bottom:403.746667pt;}
.yed{bottom:403.906667pt;}
.y34{bottom:405.666667pt;}
.y7b{bottom:406.786667pt;}
.y1ec{bottom:411.906667pt;}
.y12e{bottom:412.066667pt;}
.y52{bottom:413.666667pt;}
.y1a8{bottom:414.306667pt;}
.y153{bottom:414.626667pt;}
.y1cb{bottom:419.266667pt;}
.yad{bottom:419.586667pt;}
.yec{bottom:419.906667pt;}
.y33{bottom:421.506667pt;}
.y7a{bottom:422.626667pt;}
.y12d{bottom:427.906667pt;}
.y51{bottom:429.506667pt;}
.y1f6{bottom:429.826667pt;}
.y1a7{bottom:430.146667pt;}
.y152{bottom:430.626667pt;}
.y1ca{bottom:435.106667pt;}
.y17f{bottom:435.426667pt;}
.yeb{bottom:435.746667pt;}
.y32{bottom:437.346667pt;}
.y79{bottom:438.466667pt;}
.yac{bottom:443.106667pt;}
.y12c{bottom:443.746667pt;}
.y50{bottom:445.346667pt;}
.y1a6{bottom:445.986667pt;}
.y151{bottom:446.466667pt;}
.y1f5{bottom:449.186667pt;}
.y1c9{bottom:450.946667pt;}
.y16b{bottom:451.426667pt;}
.yea{bottom:451.586667pt;}
.y31{bottom:453.186667pt;}
.y78{bottom:454.466667pt;}
.yab{bottom:458.946667pt;}
.y17e{bottom:459.266667pt;}
.y12b{bottom:459.586667pt;}
.y4f{bottom:461.186667pt;}
.y1a5{bottom:461.826667pt;}
.y150{bottom:462.306667pt;}
.y1c8{bottom:466.946667pt;}
.y16a{bottom:467.266667pt;}
.ye9{bottom:467.426667pt;}
.y30{bottom:469.026667pt;}
.y77{bottom:470.306667pt;}
.y17d{bottom:475.106667pt;}
.y12a{bottom:475.426667pt;}
.y4e{bottom:477.026667pt;}
.y1a4{bottom:477.826667pt;}
.y14f{bottom:478.146667pt;}
.y1c7{bottom:482.786667pt;}
.yaa{bottom:483.106667pt;}
.y2f{bottom:484.866667pt;}
.y76{bottom:486.146667pt;}
.ye8{bottom:490.946667pt;}
.y101{bottom:491.266667pt;}
.y129{bottom:491.426667pt;}
.y4d{bottom:492.866667pt;}
.y1a3{bottom:493.666667pt;}
.y14e{bottom:493.986667pt;}
.y1c6{bottom:498.626667pt;}
.y169{bottom:498.946667pt;}
.ya9{bottom:499.106667pt;}
.y2e{bottom:500.866667pt;}
.ye7{bottom:506.786667pt;}
.y17c{bottom:506.946667pt;}
.y100{bottom:507.106667pt;}
.y128{bottom:507.266667pt;}
.y4c{bottom:508.866667pt;}
.y1a2{bottom:509.506667pt;}
.y75{bottom:509.666667pt;}
.y14d{bottom:509.826667pt;}
.y1c5{bottom:514.466667pt;}
.ya8{bottom:514.946667pt;}
.y2d{bottom:516.706667pt;}
.y17b{bottom:522.786667pt;}
.y127{bottom:523.106667pt;}
.y4b{bottom:524.706667pt;}
.y1a1{bottom:525.346667pt;}
.y74{bottom:525.506667pt;}
.y14c{bottom:525.826667pt;}
.y1c4{bottom:530.306667pt;}
.ya7{bottom:530.786667pt;}
.ye6{bottom:531.106667pt;}
.y2c{bottom:532.546667pt;}
.y17a{bottom:538.626667pt;}
.y126{bottom:538.946667pt;}
.y4a{bottom:540.546667pt;}
.y14b{bottom:541.666667pt;}
.y1c3{bottom:546.146667pt;}
.ya6{bottom:546.626667pt;}
.y2b{bottom:548.386667pt;}
.y1a0{bottom:549.186667pt;}
.y73{bottom:549.506667pt;}
.ye5{bottom:550.626667pt;}
.y179{bottom:554.466667pt;}
.y125{bottom:554.786667pt;}
.y49{bottom:556.386667pt;}
.y14a{bottom:557.506667pt;}
.y1c2{bottom:562.146667pt;}
.ya5{bottom:562.466667pt;}
.y2a{bottom:564.226667pt;}
.y19f{bottom:565.026667pt;}
.y178{bottom:570.306667pt;}
.y1eb{bottom:570.626667pt;}
.y124{bottom:570.786667pt;}
.y48{bottom:572.226667pt;}
.y149{bottom:573.346667pt;}
.y72{bottom:573.666667pt;}
.y168{bottom:578.306667pt;}
.ya4{bottom:578.466667pt;}
.y19e{bottom:581.026667pt;}
.y29{bottom:583.586667pt;}
.y1c1{bottom:585.986667pt;}
.y1ea{bottom:586.466667pt;}
.y123{bottom:586.626667pt;}
.y28{bottom:588.386667pt;}
.y148{bottom:589.186667pt;}
.y71{bottom:589.506667pt;}
.ya3{bottom:594.306667pt;}
.y19d{bottom:596.866667pt;}
.y1c0{bottom:601.853333pt;}
.y122{bottom:602.493333pt;}
.y147{bottom:605.213333pt;}
.y6f{bottom:609.053333pt;}
.ya2{bottom:610.173333pt;}
.y27{bottom:611.773333pt;}
.y19c{bottom:612.733333pt;}
.y1bf{bottom:617.693333pt;}
.y121{bottom:618.333333pt;}
.y146{bottom:621.053333pt;}
.ya1{bottom:626.013333pt;}
.y19b{bottom:628.573333pt;}
.y1be{bottom:633.533333pt;}
.y1e9{bottom:634.173333pt;}
.y145{bottom:636.893333pt;}
.ya0{bottom:641.853333pt;}
.y120{bottom:642.173333pt;}
.y19a{bottom:644.413333pt;}
.y1bd{bottom:649.533333pt;}
.y1e8{bottom:650.013333pt;}
.yc{bottom:652.253333pt;}
.y144{bottom:652.733333pt;}
.y9f{bottom:657.693333pt;}
.y11f{bottom:658.013333pt;}
.y199{bottom:660.413333pt;}
.ye4{bottom:660.893333pt;}
.y1bc{bottom:665.373333pt;}
.y1e7{bottom:665.853333pt;}
.yd5{bottom:668.413333pt;}
.y167{bottom:673.533333pt;}
.y9e{bottom:673.693333pt;}
.y198{bottom:676.253333pt;}
.y143{bottom:676.573333pt;}
.y1bb{bottom:681.213333pt;}
.y11e{bottom:681.693333pt;}
.yd4{bottom:684.253333pt;}
.y9d{bottom:689.533333pt;}
.y197{bottom:692.093333pt;}
.y142{bottom:692.413333pt;}
.y1ba{bottom:697.053333pt;}
.y11d{bottom:697.533333pt;}
.y1e6{bottom:697.693333pt;}
.yd3{bottom:700.093333pt;}
.y9c{bottom:705.373333pt;}
.y196{bottom:707.933333pt;}
.y119{bottom:712.093333pt;}
.y1b9{bottom:712.893333pt;}
.ye3{bottom:713.373333pt;}
.y1e5{bottom:713.533333pt;}
.yd2{bottom:715.933333pt;}
.y166{bottom:717.053333pt;}
.y9b{bottom:721.213333pt;}
.y195{bottom:723.773333pt;}
.y1b8{bottom:728.733333pt;}
.ye2{bottom:729.213333pt;}
.y1e4{bottom:729.373333pt;}
.yd1{bottom:731.773333pt;}
.y9a{bottom:737.053333pt;}
.y194{bottom:739.613333pt;}
.ye1{bottom:745.053333pt;}
.y1e3{bottom:745.213333pt;}
.yd0{bottom:747.613333pt;}
.y116{bottom:752.253333pt;}
.y1b7{bottom:752.733333pt;}
.y99{bottom:753.053333pt;}
.y193{bottom:755.613333pt;}
.ye0{bottom:761.053333pt;}
.ycf{bottom:763.613333pt;}
.y1b6{bottom:768.573333pt;}
.y98{bottom:768.893333pt;}
.y192{bottom:771.453333pt;}
.ydf{bottom:776.893333pt;}
.y1e2{bottom:777.053333pt;}
.yce{bottom:779.453333pt;}
.y1b5{bottom:784.413333pt;}
.y97{bottom:792.733333pt;}
.y1e1{bottom:792.893333pt;}
.ycd{bottom:795.293333pt;}
.y1b3{bottom:795.933333pt;}
.yde{bottom:800.733333pt;}
.y112{bottom:807.773333pt;}
.y96{bottom:808.573333pt;}
.y1e0{bottom:808.733333pt;}
.y191{bottom:811.173333pt;}
.ydd{bottom:816.613333pt;}
.ycc{bottom:819.173333pt;}
.y95{bottom:824.453333pt;}
.y1df{bottom:824.613333pt;}
.y190{bottom:827.013333pt;}
.ydc{bottom:832.453333pt;}
.ycb{bottom:835.013333pt;}
.y94{bottom:840.293333pt;}
.y6e{bottom:840.453333pt;}
.y18f{bottom:843.013333pt;}
.ydb{bottom:848.293333pt;}
.yca{bottom:851.013333pt;}
.y6d{bottom:856.293333pt;}
.y18e{bottom:858.853333pt;}
.y10e{bottom:863.333333pt;}
.yda{bottom:864.293333pt;}
.yc9{bottom:866.853333pt;}
.y93{bottom:872.133333pt;}
.y6c{bottom:872.293333pt;}
.y18d{bottom:874.693333pt;}
.yd9{bottom:880.133333pt;}
.yc8{bottom:882.693333pt;}
.y92{bottom:887.973333pt;}
.y6b{bottom:888.133333pt;}
.y18c{bottom:890.533333pt;}
.yd8{bottom:895.973333pt;}
.yc7{bottom:898.533333pt;}
.y91{bottom:903.813333pt;}
.y6a{bottom:903.973333pt;}
.y18b{bottom:906.373333pt;}
.yd7{bottom:911.813333pt;}
.yc6{bottom:914.373333pt;}
.y10a{bottom:918.693333pt;}
.y90{bottom:919.653333pt;}
.y69{bottom:919.813333pt;}
.yd6{bottom:927.653333pt;}
.y18a{bottom:929.893333pt;}
.yc5{bottom:930.213333pt;}
.y68{bottom:935.653333pt;}
.yc4{bottom:946.213333pt;}
.y67{bottom:951.653333pt;}
.y189{bottom:955.493333pt;}
.y8f{bottom:959.173333pt;}
.yb{bottom:959.493333pt;}
.yc3{bottom:962.053333pt;}
.y109{bottom:965.413333pt;}
.y66{bottom:967.493333pt;}
.y108{bottom:975.013333pt;}
.ya{bottom:983.013333pt;}
.y65{bottom:983.333333pt;}
.yc2{bottom:987.173333pt;}
.y5{bottom:989.280000pt;}
.y64{bottom:999.173333pt;}
.y9{bottom:1006.533333pt;}
.y63{bottom:1015.013333pt;}
.y62{bottom:1030.880000pt;}
.y8{bottom:1035.040000pt;}
.y3{bottom:1036.480000pt;}
.y61{bottom:1046.880000pt;}
.y2{bottom:1050.240000pt;}
.y5e{bottom:1058.720000pt;}
.y7{bottom:1058.880000pt;}
.y1{bottom:1063.840000pt;}
.y5d{bottom:1064.960000pt;}
.h12{height:5.160000pt;}
.h17{height:10.678125pt;}
.h14{height:15.703125pt;}
.h1b{height:20.717812pt;}
.h20{height:39.520000pt;}
.h10{height:39.680000pt;}
.hf{height:42.023438pt;}
.h5{height:42.084375pt;}
.h13{height:42.649687pt;}
.h7{height:42.895000pt;}
.h8{height:42.988250pt;}
.h1c{height:43.826667pt;}
.h16{height:47.085938pt;}
.he{height:47.109375pt;}
.hd{height:48.375000pt;}
.h1a{height:49.336436pt;}
.h2{height:52.134375pt;}
.hb{height:52.526250pt;}
.ha{height:53.370000pt;}
.h1d{height:54.706667pt;}
.h1e{height:54.740000pt;}
.h1f{height:54.880000pt;}
.h4{height:57.787500pt;}
.h3{height:58.563750pt;}
.h19{height:59.340000pt;}
.h11{height:64.500000pt;}
.h9{height:75.465000pt;}
.h18{height:84.666667pt;}
.h6{height:133.280000pt;}
.h22{height:184.173333pt;}
.h15{height:225.786667pt;}
.h23{height:261.026667pt;}
.hc{height:301.626667pt;}
.h21{height:308.226667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w2{width:-70.720000pt;}
.w8{width:164.177333pt;}
.wa{width:186.413333pt;}
.w3{width:186.785333pt;}
.w9{width:222.426667pt;}
.wc{width:297.665333pt;}
.w6{width:316.865333pt;}
.wd{width:318.773333pt;}
.w4{width:476.893333pt;}
.wb{width:497.840000pt;}
.w7{width:632.280000pt;}
.w5{width:664.318667pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xa{left:7.198667pt;}
.x3{left:10.746667pt;}
.x1{left:48.000000pt;}
.x11{left:52.001333pt;}
.x1c{left:54.865333pt;}
.x26{left:60.320000pt;}
.x23{left:61.601333pt;}
.x9{left:64.801333pt;}
.x1f{left:72.000000pt;}
.x6{left:74.720000pt;}
.x14{left:80.841333pt;}
.xc{left:84.672000pt;}
.x13{left:88.512000pt;}
.x22{left:93.952000pt;}
.x19{left:96.032000pt;}
.x27{left:108.672000pt;}
.x1b{left:109.801333pt;}
.x16{left:116.352000pt;}
.x20{left:148.040000pt;}
.x25{left:210.426667pt;}
.x1a{left:235.586667pt;}
.xb{left:252.226667pt;}
.x1d{left:274.626667pt;}
.x24{left:290.785333pt;}
.x29{left:311.733333pt;}
.x12{left:313.665333pt;}
.x7{left:334.626667pt;}
.x8{left:341.026667pt;}
.x10{left:389.506667pt;}
.x28{left:414.186667pt;}
.xd{left:420.893333pt;}
.x2c{left:422.173333pt;}
.x17{left:444.893333pt;}
.x2b{left:447.773333pt;}
.xe{left:457.533333pt;}
.x18{left:468.893333pt;}
.x21{left:490.973333pt;}
.x1e{left:497.706667pt;}
.x2a{left:583.333333pt;}
.xf{left:594.213333pt;}
.x15{left:625.238667pt;}
.x2{left:864.480000pt;}
.x4{left:886.266667pt;}
.x5{left:892.506667pt;}
}




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