
    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_2b57b21c22c6e1d30efd708e.woff')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_ddbc3f53cabaa04b560b313d.woff')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_5b6c31ed4a4ad9b19251bcf1.woff')format("woff");}.ff3{font-family:ff3;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_28ed29108683554632d0846b.woff')format("woff");}.ff4{font-family:ff4;line-height:0.910645;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_3213a5bb578d6a5dd3b12df0.woff')format("woff");}.ff5{font-family:ff5;line-height:0.871094;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_4afab6c9e89e1c5c975039aa.woff')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_2c2546bdcc67aad95e353a0d.woff')format("woff");}.ff7{font-family:ff7;line-height:0.896973;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_dd7231c11fa24837274131cd.woff')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_e92670a09a4fec94539c41f3.woff')format("woff");}.ff9{font-family:ff9;line-height:0.956543;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_76629d7865836188743e0a54.woff')format("woff");}.ffa{font-family:ffa;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;}
.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);}
.mc{transform:matrix(0.252349,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252349,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252349,0.000000,0.000000,0.250000,0,0);}
.mf{transform:matrix(0.253334,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253334,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253334,0.000000,0.000000,0.250000,0,0);}
.me{transform:matrix(0.253395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253395,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(0.253878,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253878,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253878,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.254112,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254112,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254112,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.254176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254176,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.254419,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254419,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254419,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.254845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254845,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.255184,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255184,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255184,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.255224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255224,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.255392,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255392,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255392,0.000000,0.000000,0.250000,0,0);}
.md{transform:matrix(0.255780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255780,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.258270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258270,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.258802,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258802,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258802,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.259376,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259376,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259376,0.000000,0.000000,0.250000,0,0);}
.v1b{vertical-align:-90.720000px;}
.v10{vertical-align:-78.360000px;}
.v12{vertical-align:-76.620000px;}
.v16{vertical-align:-42.600000px;}
.v18{vertical-align:-35.160000px;}
.va{vertical-align:-29.100000px;}
.v1a{vertical-align:-26.160000px;}
.v19{vertical-align:-22.560000px;}
.v13{vertical-align:-20.760000px;}
.vf{vertical-align:-15.420000px;}
.v7{vertical-align:-9.360000px;}
.v11{vertical-align:-7.740000px;}
.v0{vertical-align:0.000000px;}
.vc{vertical-align:1.560000px;}
.v17{vertical-align:3.300000px;}
.v14{vertical-align:4.740000px;}
.ve{vertical-align:9.960000px;}
.v4{vertical-align:12.009146px;}
.v2{vertical-align:16.639177px;}
.vb{vertical-align:22.620000px;}
.v5{vertical-align:30.239896px;}
.v15{vertical-align:31.920000px;}
.v1{vertical-align:33.120000px;}
.v3{vertical-align:45.287501px;}
.v6{vertical-align:62.216055px;}
.vd{vertical-align:65.220000px;}
.v8{vertical-align:66.540000px;}
.v9{vertical-align:77.940000px;}
.ls36{letter-spacing:-7.800000px;}
.ls38{letter-spacing:-6.180000px;}
.ls20{letter-spacing:-2.685419px;}
.ls21{letter-spacing:-2.112452px;}
.ls39{letter-spacing:-0.720000px;}
.ls37{letter-spacing:-0.576000px;}
.ls28{letter-spacing:-0.504000px;}
.ls14{letter-spacing:-0.360000px;}
.ls16{letter-spacing:-0.288000px;}
.ls2f{letter-spacing:-0.216000px;}
.ls15{letter-spacing:-0.144000px;}
.ls30{letter-spacing:-0.109200px;}
.ls13{letter-spacing:-0.053280px;}
.ls12{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.072000px;}
.ls23{letter-spacing:0.138901px;}
.ls22{letter-spacing:0.144000px;}
.ls25{letter-spacing:0.152400px;}
.ls0{letter-spacing:0.180000px;}
.ls2{letter-spacing:0.216000px;}
.ls1f{letter-spacing:0.288000px;}
.ls1{letter-spacing:0.360000px;}
.ls24{letter-spacing:0.504000px;}
.ls26{letter-spacing:0.720000px;}
.lsa{letter-spacing:1.080000px;}
.ls1c{letter-spacing:1.336922px;}
.ls9{letter-spacing:1.440000px;}
.ls10{letter-spacing:2.160000px;}
.ls2e{letter-spacing:2.880000px;}
.ls2a{letter-spacing:3.600000px;}
.ls1a{letter-spacing:4.320000px;}
.ls1e{letter-spacing:5.760000px;}
.ls8{letter-spacing:6.480000px;}
.ls17{letter-spacing:7.920000px;}
.ls32{letter-spacing:8.640000px;}
.ls19{letter-spacing:10.080000px;}
.ls2c{letter-spacing:10.800000px;}
.lsb{letter-spacing:11.520000px;}
.ls27{letter-spacing:12.240000px;}
.ls33{letter-spacing:12.960000px;}
.ls6{letter-spacing:14.400000px;}
.lsc{letter-spacing:15.120000px;}
.lse{letter-spacing:15.840000px;}
.lsd{letter-spacing:18.720000px;}
.ls11{letter-spacing:19.440000px;}
.ls2b{letter-spacing:21.600000px;}
.ls7{letter-spacing:25.920000px;}
.ls4{letter-spacing:29.520000px;}
.ls5{letter-spacing:29.700000px;}
.lsf{letter-spacing:30.240000px;}
.ls2d{letter-spacing:36.720000px;}
.ls31{letter-spacing:41.040000px;}
.ls29{letter-spacing:53.280000px;}
.ls18{letter-spacing:97.200000px;}
.ls34{letter-spacing:102.240000px;}
.ls1b{letter-spacing:585.440352px;}
.ls1d{letter-spacing:585.874417px;}
.ls35{letter-spacing:1174.476000px;}
.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;}
}
.ws18{word-spacing:-59.844663px;}
.ws26{word-spacing:-59.833890px;}
.ws10{word-spacing:-59.705762px;}
.ws5{word-spacing:-18.360000px;}
.ws1a{word-spacing:-18.288000px;}
.ws3b{word-spacing:-18.144000px;}
.ws3{word-spacing:-18.000000px;}
.ws4{word-spacing:-17.856000px;}
.ws3a{word-spacing:-17.784000px;}
.ws7{word-spacing:-17.712000px;}
.ws1d{word-spacing:-16.712400px;}
.ws1b{word-spacing:-16.560000px;}
.ws36{word-spacing:-16.450800px;}
.ws37{word-spacing:-15.840000px;}
.ws2{word-spacing:-15.300000px;}
.ws0{word-spacing:-14.940000px;}
.ws1{word-spacing:-14.580000px;}
.ws6{word-spacing:-12.060000px;}
.ws39{word-spacing:-11.820000px;}
.ws31{word-spacing:-10.695953px;}
.ws28{word-spacing:-10.579707px;}
.wsc{word-spacing:-10.557052px;}
.ws1c{word-spacing:-10.440000px;}
.ws38{word-spacing:-10.200000px;}
.wsf{word-spacing:-0.072454px;}
.ws8{word-spacing:0.000000px;}
.ws12{word-spacing:2.070224px;}
.wse{word-spacing:2.643190px;}
.ws19{word-spacing:42.696433px;}
.ws11{word-spacing:46.059572px;}
.wsb{word-spacing:46.732239px;}
.ws15{word-spacing:46.905866px;}
.ws2b{word-spacing:46.934722px;}
.ws32{word-spacing:47.384419px;}
.ws17{word-spacing:47.545910px;}
.ws33{word-spacing:47.958459px;}
.ws35{word-spacing:48.037102px;}
.ws34{word-spacing:48.078924px;}
.ws2c{word-spacing:49.117428px;}
.ws20{word-spacing:49.423365px;}
.ws21{word-spacing:49.539115px;}
.wsd{word-spacing:49.736135px;}
.ws2d{word-spacing:49.835083px;}
.ws16{word-spacing:50.025512px;}
.ws30{word-spacing:50.569235px;}
.ws25{word-spacing:51.703593px;}
.ws22{word-spacing:51.721821px;}
.ws27{word-spacing:51.814548px;}
.ws23{word-spacing:52.439476px;}
.ws2f{word-spacing:53.867700px;}
.ws29{word-spacing:225.573758px;}
.ws1e{word-spacing:233.097560px;}
.wsa{word-spacing:399.144282px;}
.ws14{word-spacing:399.723036px;}
.ws9{word-spacing:515.389454px;}
.ws13{word-spacing:515.968208px;}
.ws2a{word-spacing:1118.761218px;}
.ws1f{word-spacing:1138.120540px;}
.ws2e{word-spacing:1661.505216px;}
.ws24{word-spacing:1693.770752px;}
._2f{margin-left:-817.709853px;}
._39{margin-left:-805.382393px;}
._37{margin-left:-449.804774px;}
._31{margin-left:-438.950085px;}
._28{margin-left:-435.904682px;}
._32{margin-left:-434.457797px;}
._30{margin-left:-433.417197px;}
._3b{margin-left:-431.426283px;}
._3a{margin-left:-428.671414px;}
._3c{margin-left:-427.223372px;}
._27{margin-left:-425.175740px;}
._38{margin-left:-422.319427px;}
._42{margin-left:-417.447841px;}
._41{margin-left:-414.795625px;}
._2b{margin-left:-410.670631px;}
._35{margin-left:-409.543294px;}
._2a{margin-left:-408.047003px;}
._36{margin-left:-404.013511px;}
._3f{margin-left:-401.703859px;}
._34{margin-left:-397.389460px;}
._40{margin-left:-396.237739px;}
._3e{margin-left:-392.643677px;}
._2c{margin-left:-391.208367px;}
._29{margin-left:-390.166610px;}
._6{margin-left:-10.296000px;}
._8{margin-left:-8.064000px;}
._2{margin-left:-7.056000px;}
._5{margin-left:-5.352000px;}
._7{margin-left:-3.744000px;}
._3{margin-left:-2.544000px;}
._4{margin-left:-1.080000px;}
._0{width:1.208640px;}
._13{width:2.268000px;}
._18{width:3.848640px;}
._10{width:5.211360px;}
._f{width:6.672000px;}
._1a{width:8.136000px;}
._19{width:9.144000px;}
._14{width:10.944000px;}
._15{width:12.312000px;}
._b{width:14.184000px;}
._16{width:15.264000px;}
._c{width:16.777440px;}
._17{width:19.362720px;}
._12{width:20.688000px;}
._11{width:21.768000px;}
._4c{width:22.950720px;}
._e{width:24.440640px;}
._d{width:25.710720px;}
._2d{width:27.552000px;}
._20{width:28.743360px;}
._9{width:30.375360px;}
._2e{width:31.599360px;}
._26{width:32.631360px;}
._1b{width:34.128000px;}
._1c{width:35.136000px;}
._1d{width:36.984000px;}
._4b{width:39.212640px;}
._49{width:40.851360px;}
._48{width:41.856000px;}
._25{width:44.605440px;}
._24{width:45.720000px;}
._4d{width:47.400000px;}
._46{width:49.560000px;}
._4a{width:51.279360px;}
._43{width:53.364000px;}
._4f{width:55.488000px;}
._21{width:56.919360px;}
._44{width:58.056000px;}
._4e{width:60.864000px;}
._1f{width:64.614720px;}
._1e{width:65.640000px;}
._a{width:76.968000px;}
._47{width:81.404640px;}
._45{width:83.220000px;}
._23{width:96.994080px;}
._22{width:98.280000px;}
._1{width:1083.154560px;}
._3d{width:1654.413550px;}
._33{width:1683.293375px;}
.fc4{color:transparent;}
.fc3{color:rgb(192,80,77);}
.fc2{color:rgb(192,0,0);}
.fc1{color:rgb(85,142,213);}
.fc0{color:rgb(0,0,0);}
.fs2{font-size:5.760000px;}
.fs7{font-size:36.000000px;}
.fs9{font-size:41.760000px;}
.fs6{font-size:42.228207px;}
.fsc{font-size:42.318828px;}
.fs3{font-size:48.240000px;}
.fs0{font-size:59.760000px;}
.fsd{font-size:63.360000px;}
.fs8{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.fs5{font-size:72.454213px;}
.fsa{font-size:72.609699px;}
.fs4{font-size:108.753664px;}
.fsb{font-size:108.987048px;}
.y0{bottom:0.000000px;}
.yd5{bottom:2.160000px;}
.y75{bottom:4.140000px;}
.y58{bottom:4.485343px;}
.y92{bottom:4.494969px;}
.y9{bottom:4.500000px;}
.y53{bottom:4.521516px;}
.y72{bottom:6.300000px;}
.yd3{bottom:7.230000px;}
.yc7{bottom:7.530000px;}
.y3{bottom:7.740000px;}
.y57{bottom:7.849351px;}
.y91{bottom:7.866196px;}
.y52{bottom:7.921695px;}
.yf2{bottom:9.900000px;}
.y59{bottom:12.081490px;}
.y90{bottom:12.107416px;}
.y74{bottom:23.040000px;}
.y54{bottom:23.403365px;}
.y8{bottom:25.200000px;}
.y2{bottom:26.820000px;}
.y5{bottom:29.016000px;}
.yf1{bottom:30.600000px;}
.yef{bottom:104.796000px;}
.y37{bottom:108.036000px;}
.yc5{bottom:109.725000px;}
.y6c{bottom:120.276000px;}
.yb9{bottom:125.136000px;}
.yee{bottom:127.656000px;}
.yce{bottom:129.315000px;}
.y36{bottom:130.716000px;}
.yc1{bottom:135.615000px;}
.y9f{bottom:138.456000px;}
.ya0{bottom:138.540000px;}
.yc4{bottom:140.865000px;}
.yd1{bottom:142.305000px;}
.y6b{bottom:143.136000px;}
.yb8{bottom:145.656000px;}
.yc0{bottom:148.755000px;}
.ycf{bottom:149.910000px;}
.yed{bottom:150.330000px;}
.y35{bottom:153.570000px;}
.yc3{bottom:164.370000px;}
.yb7{bottom:164.550000px;}
.y6a{bottom:165.810000px;}
.yec{bottom:173.190000px;}
.ybb{bottom:174.810000px;}
.y34{bottom:176.250000px;}
.ybf{bottom:178.635000px;}
.y9e{bottom:179.130000px;}
.y9d{bottom:179.190000px;}
.yb6{bottom:181.650000px;}
.yc8{bottom:181.800000px;}
.yc9{bottom:188.310000px;}
.y69{bottom:188.670000px;}
.yc2{bottom:192.060000px;}
.ycd{bottom:192.270000px;}
.yd0{bottom:194.730000px;}
.yeb{bottom:195.870000px;}
.y33{bottom:199.110000px;}
.ybe{bottom:203.370000px;}
.y68{bottom:211.350000px;}
.ycc{bottom:214.950000px;}
.yea{bottom:218.550000px;}
.y9c{bottom:219.810000px;}
.y9b{bottom:219.840000px;}
.y32{bottom:221.790000px;}
.yca{bottom:229.755000px;}
.ybd{bottom:233.745000px;}
.y67{bottom:234.210000px;}
.ye9{bottom:241.410000px;}
.y31{bottom:244.650000px;}
.y66{bottom:256.890000px;}
.y65{bottom:256.965000px;}
.ybc{bottom:259.125000px;}
.y9a{bottom:260.670000px;}
.y99{bottom:260.715000px;}
.ycb{bottom:261.690000px;}
.ye8{bottom:264.090000px;}
.y30{bottom:267.330000px;}
.ye7{bottom:286.995000px;}
.y2f{bottom:290.235000px;}
.y98{bottom:297.075000px;}
.y97{bottom:297.090000px;}
.y64{bottom:297.615000px;}
.ye6{bottom:309.675000px;}
.y2e{bottom:312.915000px;}
.ye5{bottom:332.535000px;}
.y96{bottom:335.055000px;}
.y2d{bottom:335.775000px;}
.y63{bottom:338.295000px;}
.y62{bottom:338.340000px;}
.y95{bottom:349.635000px;}
.ye4{bottom:355.215000px;}
.y2c{bottom:358.455000px;}
.yfe{bottom:363.135000px;}
.y94{bottom:369.255000px;}
.y61{bottom:374.835000px;}
.y60{bottom:374.865000px;}
.ye3{bottom:378.075000px;}
.y2b{bottom:381.315000px;}
.y8f{bottom:383.640000px;}
.y93{bottom:383.655000px;}
.yfd{bottom:385.815000px;}
.ye2{bottom:400.755000px;}
.y2a{bottom:403.995000px;}
.yfc{bottom:408.675000px;}
.y5f{bottom:415.875000px;}
.yd2{bottom:418.860000px;}
.ye1{bottom:423.615000px;}
.y8e{bottom:424.335000px;}
.y8d{bottom:424.365000px;}
.y29{bottom:426.855000px;}
.yfb{bottom:429.375000px;}
.y5e{bottom:438.735000px;}
.ye0{bottom:446.295000px;}
.y28{bottom:449.535000px;}
.yfa{bottom:452.055000px;}
.y8c{bottom:460.875000px;}
.y8b{bottom:460.890000px;}
.y5d{bottom:461.415000px;}
.yb5{bottom:464.475000px;}
.ydf{bottom:469.155000px;}
.y27{bottom:472.395000px;}
.yf9{bottom:472.935000px;}
.yb4{bottom:483.555000px;}
.y5c{bottom:484.095000px;}
.y5b{bottom:484.140000px;}
.yde{bottom:491.835000px;}
.yf8{bottom:493.635000px;}
.y26{bottom:495.075000px;}
.y8a{bottom:498.855000px;}
.yb3{bottom:500.655000px;}
.yb2{bottom:510.735000px;}
.yba{bottom:511.020000px;}
.y89{bottom:513.435000px;}
.yf7{bottom:514.335000px;}
.ydd{bottom:514.695000px;}
.y25{bottom:517.935000px;}
.y5a{bottom:524.775000px;}
.y56{bottom:524.790000px;}
.yf6{bottom:535.035000px;}
.y88{bottom:536.115000px;}
.ydc{bottom:537.375000px;}
.y24{bottom:540.615000px;}
.yf5{bottom:557.565000px;}
.y87{bottom:558.825000px;}
.ydb{bottom:560.265000px;}
.y51{bottom:561.315000px;}
.y55{bottom:561.345000px;}
.y23{bottom:563.505000px;}
.yf4{bottom:580.425000px;}
.y86{bottom:581.685000px;}
.yda{bottom:582.945000px;}
.y22{bottom:586.185000px;}
.yf3{bottom:601.305000px;}
.y50{bottom:602.385000px;}
.y85{bottom:604.365000px;}
.yd9{bottom:605.805000px;}
.y21{bottom:609.045000px;}
.yf0{bottom:617.505000px;}
.y4f{bottom:625.245000px;}
.y84{bottom:627.225000px;}
.yd8{bottom:628.485000px;}
.y20{bottom:631.725000px;}
.y4e{bottom:647.925000px;}
.yd7{bottom:649.005000px;}
.y83{bottom:649.905000px;}
.y1f{bottom:654.585000px;}
.y82{bottom:667.185000px;}
.yd6{bottom:670.245000px;}
.y4d{bottom:670.785000px;}
.y1e{bottom:677.265000px;}
.yd4{bottom:686.625000px;}
.y81{bottom:689.145000px;}
.y4c{bottom:693.465000px;}
.y1d{bottom:700.125000px;}
.y80{bottom:711.285000px;}
.y4b{bottom:716.325000px;}
.y1c{bottom:722.805000px;}
.y7f{bottom:733.245000px;}
.y4a{bottom:739.005000px;}
.yc6{bottom:741.960000px;}
.y1b{bottom:745.665000px;}
.y7e{bottom:755.385000px;}
.y49{bottom:761.865000px;}
.y1a{bottom:768.345000px;}
.y7d{bottom:777.345000px;}
.y48{bottom:784.545000px;}
.y19{bottom:791.205000px;}
.yb1{bottom:794.265000px;}
.y7c{bottom:799.485000px;}
.y47{bottom:807.405000px;}
.y18{bottom:813.885000px;}
.yb0{bottom:816.945000px;}
.y7b{bottom:821.445000px;}
.y46{bottom:830.085000px;}
.y17{bottom:836.745000px;}
.yaf{bottom:839.850000px;}
.y7a{bottom:843.630000px;}
.y45{bottom:852.990000px;}
.y16{bottom:857.670000px;}
.yae{bottom:862.530000px;}
.y79{bottom:865.590000px;}
.y44{bottom:875.670000px;}
.y15{bottom:878.370000px;}
.yad{bottom:885.390000px;}
.y78{bottom:887.730000px;}
.y43{bottom:898.530000px;}
.y14{bottom:899.070000px;}
.yac{bottom:908.070000px;}
.y77{bottom:909.690000px;}
.y13{bottom:919.770000px;}
.y42{bottom:921.210000px;}
.yab{bottom:930.930000px;}
.y76{bottom:931.830000px;}
.y12{bottom:940.110000px;}
.y41{bottom:944.070000px;}
.yaa{bottom:953.610000px;}
.y73{bottom:953.790000px;}
.y11{bottom:960.810000px;}
.y40{bottom:966.750000px;}
.ya9{bottom:976.470000px;}
.y10{bottom:981.870000px;}
.y3f{bottom:989.610000px;}
.y71{bottom:992.490000px;}
.ya8{bottom:999.150000px;}
.yf{bottom:1002.570000px;}
.y3e{bottom:1012.290000px;}
.y70{bottom:1016.790000px;}
.ya7{bottom:1022.010000px;}
.ye{bottom:1023.270000px;}
.y6f{bottom:1028.850000px;}
.y3d{bottom:1035.150000px;}
.yd{bottom:1043.970000px;}
.ya6{bottom:1044.690000px;}
.y6e{bottom:1047.930000px;}
.y3c{bottom:1057.830000px;}
.yc{bottom:1064.310000px;}
.y6d{bottom:1066.110000px;}
.ya5{bottom:1067.550000px;}
.y3b{bottom:1080.690000px;}
.yb{bottom:1085.010000px;}
.ya4{bottom:1090.140000px;}
.ya3{bottom:1090.230000px;}
.y3a{bottom:1103.370000px;}
.ya{bottom:1106.070000px;}
.y7{bottom:1122.300000px;}
.y39{bottom:1126.260000px;}
.ya2{bottom:1130.865000px;}
.ya1{bottom:1130.940000px;}
.y38{bottom:1148.940000px;}
.y6{bottom:1164.060000px;}
.y4{bottom:1171.800000px;}
.y1{bottom:1191.420000px;}
.h6{height:5.650313px;}
.h19{height:21.225000px;}
.h1f{height:21.240000px;}
.h1e{height:21.262500px;}
.h32{height:26.100000px;}
.h2c{height:27.180000px;}
.hf{height:29.341181px;}
.hc{height:34.725240px;}
.h21{height:34.799760px;}
.h17{height:35.332031px;}
.h1a{height:37.965000px;}
.he{height:41.350326px;}
.h7{height:41.400000px;}
.h14{height:41.495015px;}
.h24{height:41.584063px;}
.h2{height:42.660000px;}
.h1c{height:45.992812px;}
.h35{height:46.800000px;}
.ha{height:50.027344px;}
.h12{height:53.598510px;}
.h20{height:53.668477px;}
.h22{height:53.783649px;}
.h3{height:58.621992px;}
.h4{height:58.651172px;}
.h2f{height:62.153438px;}
.h33{height:62.184375px;}
.h1b{height:64.978594px;}
.h18{height:65.010937px;}
.h9{height:70.628906px;}
.h5{height:70.664062px;}
.h13{height:71.109848px;}
.h27{height:71.201156px;}
.h1d{height:71.204766px;}
.h26{height:71.225156px;}
.h25{height:71.262449px;}
.h8{height:72.562500px;}
.h2b{height:74.938594px;}
.h16{height:80.440922px;}
.hb{height:80.464922px;}
.hd{height:91.267859px;}
.h11{height:91.557236px;}
.h23{height:91.753717px;}
.h30{height:94.073438px;}
.h10{height:101.349744px;}
.h15{height:101.494433px;}
.h2e{height:124.973437px;}
.h31{height:129.113437px;}
.h2a{height:174.958594px;}
.h29{height:209.458594px;}
.h34{height:250.950000px;}
.h28{height:276.840000px;}
.h2d{height:278.820000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w7{width:77.927687px;}
.w8{width:78.002209px;}
.wa{width:79.724500px;}
.w17{width:80.773271px;}
.w9{width:80.847789px;}
.w18{width:81.745868px;}
.w1a{width:83.551288px;}
.w19{width:87.296844px;}
.w14{width:92.998271px;}
.w15{width:93.073870px;}
.wd{width:122.974500px;}
.wf{width:123.120000px;}
.we{width:123.141000px;}
.w10{width:123.156000px;}
.w12{width:123.285000px;}
.w11{width:123.321000px;}
.w1f{width:205.740000px;}
.w1c{width:215.460000px;}
.w1d{width:223.740000px;}
.w23{width:244.290000px;}
.w22{width:246.493500px;}
.w24{width:248.235000px;}
.w3{width:260.655000px;}
.w6{width:262.941041px;}
.w20{width:355.933500px;}
.wb{width:369.253500px;}
.w5{width:369.435000px;}
.w4{width:369.613500px;}
.wc{width:369.795000px;}
.w21{width:383.115000px;}
.w2{width:453.883500px;}
.w16{width:541.943974px;}
.w13{width:555.154372px;}
.w1e{width:717.480000px;}
.w1b{width:749.340000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1e{left:2.573023px;}
.xa{left:7.918500px;}
.x6{left:9.885000px;}
.x32{left:15.120000px;}
.x2f{left:20.325000px;}
.x1b{left:21.924957px;}
.x60{left:24.084000px;}
.x2{left:27.934500px;}
.x35{left:30.585000px;}
.x57{left:32.076000px;}
.x30{left:36.525000px;}
.x2d{left:39.274500px;}
.x1f{left:40.764415px;}
.x25{left:42.849784px;}
.x4e{left:44.449644px;}
.xc{left:50.250000px;}
.x6b{left:65.865000px;}
.x9{left:77.041500px;}
.x64{left:78.045000px;}
.x5{left:79.185000px;}
.x15{left:84.960000px;}
.x1{left:87.661500px;}
.x5d{left:92.490000px;}
.x6c{left:104.436000px;}
.x45{left:112.506323px;}
.x1a{left:114.478230px;}
.x7{left:127.476000px;}
.x61{left:132.045000px;}
.x67{left:136.905000px;}
.x3{left:138.988500px;}
.x5f{left:143.490000px;}
.xf{left:144.756000px;}
.x8{left:153.570000px;}
.x2c{left:167.968500px;}
.x62{left:182.085000px;}
.x18{left:184.915219px;}
.x37{left:190.140000px;}
.x40{left:196.665000px;}
.x2e{left:200.025000px;}
.x19{left:204.077882px;}
.x4b{left:207.210000px;}
.x12{left:209.190000px;}
.x14{left:232.410000px;}
.x4f{left:236.010000px;}
.xd{left:237.450000px;}
.x10{left:238.530000px;}
.x2b{left:239.970000px;}
.xe{left:256.170000px;}
.x5b{left:261.870000px;}
.x13{left:270.030000px;}
.x53{left:278.940000px;}
.x44{left:294.967185px;}
.x3a{left:300.574766px;}
.x11{left:309.675000px;}
.x58{left:311.685000px;}
.x26{left:319.065000px;}
.x3c{left:322.140000px;}
.x31{left:323.175000px;}
.x47{left:328.740000px;}
.x16{left:337.035000px;}
.x63{left:348.015000px;}
.x54{left:359.715000px;}
.x1d{left:362.265000px;}
.x23{left:363.840000px;}
.x3e{left:366.015000px;}
.x59{left:367.590000px;}
.x41{left:370.008347px;}
.x49{left:372.690000px;}
.x21{left:373.740000px;}
.x38{left:377.133289px;}
.x17{left:385.815000px;}
.x42{left:389.435170px;}
.x27{left:396.975000px;}
.x3d{left:415.155000px;}
.x48{left:421.815000px;}
.x4c{left:423.465000px;}
.x5a{left:429.630000px;}
.x68{left:432.975000px;}
.x20{left:440.175000px;}
.x24{left:441.795000px;}
.x69{left:443.415000px;}
.xb{left:446.655000px;}
.x22{left:451.695000px;}
.x3f{left:459.075000px;}
.x4a{left:465.735000px;}
.x36{left:467.715000px;}
.x43{left:483.304025px;}
.x39{left:492.541510px;}
.x4d{left:504.285000px;}
.x4{left:544.800000px;}
.x52{left:546.225000px;}
.x65{left:558.900000px;}
.x6a{left:567.840000px;}
.x33{left:569.460000px;}
.x5c{left:580.320000px;}
.x28{left:586.365000px;}
.x66{left:589.680000px;}
.x1c{left:599.145000px;}
.x5e{left:610.560000px;}
.x50{left:639.615000px;}
.x29{left:666.150000px;}
.x34{left:692.790000px;}
.x51{left:727.350000px;}
.x46{left:738.690000px;}
.x3b{left:745.350000px;}
.x2a{left:748.950000px;}
.x56{left:805.110000px;}
.x55{left:834.450000px;}
@media print{
.v1b{vertical-align:-80.640000pt;}
.v10{vertical-align:-69.653333pt;}
.v12{vertical-align:-68.106667pt;}
.v16{vertical-align:-37.866667pt;}
.v18{vertical-align:-31.253333pt;}
.va{vertical-align:-25.866667pt;}
.v1a{vertical-align:-23.253333pt;}
.v19{vertical-align:-20.053333pt;}
.v13{vertical-align:-18.453333pt;}
.vf{vertical-align:-13.706667pt;}
.v7{vertical-align:-8.320000pt;}
.v11{vertical-align:-6.880000pt;}
.v0{vertical-align:0.000000pt;}
.vc{vertical-align:1.386667pt;}
.v17{vertical-align:2.933333pt;}
.v14{vertical-align:4.213333pt;}
.ve{vertical-align:8.853333pt;}
.v4{vertical-align:10.674796pt;}
.v2{vertical-align:14.790380pt;}
.vb{vertical-align:20.106667pt;}
.v5{vertical-align:26.879908pt;}
.v15{vertical-align:28.373333pt;}
.v1{vertical-align:29.440000pt;}
.v3{vertical-align:40.255556pt;}
.v6{vertical-align:55.303160pt;}
.vd{vertical-align:57.973333pt;}
.v8{vertical-align:59.146667pt;}
.v9{vertical-align:69.280000pt;}
.ls36{letter-spacing:-6.933333pt;}
.ls38{letter-spacing:-5.493333pt;}
.ls20{letter-spacing:-2.387039pt;}
.ls21{letter-spacing:-1.877735pt;}
.ls39{letter-spacing:-0.640000pt;}
.ls37{letter-spacing:-0.512000pt;}
.ls28{letter-spacing:-0.448000pt;}
.ls14{letter-spacing:-0.320000pt;}
.ls16{letter-spacing:-0.256000pt;}
.ls2f{letter-spacing:-0.192000pt;}
.ls15{letter-spacing:-0.128000pt;}
.ls30{letter-spacing:-0.097067pt;}
.ls13{letter-spacing:-0.047360pt;}
.ls12{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.064000pt;}
.ls23{letter-spacing:0.123468pt;}
.ls22{letter-spacing:0.128000pt;}
.ls25{letter-spacing:0.135467pt;}
.ls0{letter-spacing:0.160000pt;}
.ls2{letter-spacing:0.192000pt;}
.ls1f{letter-spacing:0.256000pt;}
.ls1{letter-spacing:0.320000pt;}
.ls24{letter-spacing:0.448000pt;}
.ls26{letter-spacing:0.640000pt;}
.lsa{letter-spacing:0.960000pt;}
.ls1c{letter-spacing:1.188375pt;}
.ls9{letter-spacing:1.280000pt;}
.ls10{letter-spacing:1.920000pt;}
.ls2e{letter-spacing:2.560000pt;}
.ls2a{letter-spacing:3.200000pt;}
.ls1a{letter-spacing:3.840000pt;}
.ls1e{letter-spacing:5.120000pt;}
.ls8{letter-spacing:5.760000pt;}
.ls17{letter-spacing:7.040000pt;}
.ls32{letter-spacing:7.680000pt;}
.ls19{letter-spacing:8.960000pt;}
.ls2c{letter-spacing:9.600000pt;}
.lsb{letter-spacing:10.240000pt;}
.ls27{letter-spacing:10.880000pt;}
.ls33{letter-spacing:11.520000pt;}
.ls6{letter-spacing:12.800000pt;}
.lsc{letter-spacing:13.440000pt;}
.lse{letter-spacing:14.080000pt;}
.lsd{letter-spacing:16.640000pt;}
.ls11{letter-spacing:17.280000pt;}
.ls2b{letter-spacing:19.200000pt;}
.ls7{letter-spacing:23.040000pt;}
.ls4{letter-spacing:26.240000pt;}
.ls5{letter-spacing:26.400000pt;}
.lsf{letter-spacing:26.880000pt;}
.ls2d{letter-spacing:32.640000pt;}
.ls31{letter-spacing:36.480000pt;}
.ls29{letter-spacing:47.360000pt;}
.ls18{letter-spacing:86.400000pt;}
.ls34{letter-spacing:90.880000pt;}
.ls1b{letter-spacing:520.391424pt;}
.ls1d{letter-spacing:520.777260pt;}
.ls35{letter-spacing:1043.978667pt;}
.ws18{word-spacing:-53.195256pt;}
.ws26{word-spacing:-53.185680pt;}
.ws10{word-spacing:-53.071788pt;}
.ws5{word-spacing:-16.320000pt;}
.ws1a{word-spacing:-16.256000pt;}
.ws3b{word-spacing:-16.128000pt;}
.ws3{word-spacing:-16.000000pt;}
.ws4{word-spacing:-15.872000pt;}
.ws3a{word-spacing:-15.808000pt;}
.ws7{word-spacing:-15.744000pt;}
.ws1d{word-spacing:-14.855467pt;}
.ws1b{word-spacing:-14.720000pt;}
.ws36{word-spacing:-14.622933pt;}
.ws37{word-spacing:-14.080000pt;}
.ws2{word-spacing:-13.600000pt;}
.ws0{word-spacing:-13.280000pt;}
.ws1{word-spacing:-12.960000pt;}
.ws6{word-spacing:-10.720000pt;}
.ws39{word-spacing:-10.506667pt;}
.ws31{word-spacing:-9.507513pt;}
.ws28{word-spacing:-9.404184pt;}
.wsc{word-spacing:-9.384046pt;}
.ws1c{word-spacing:-9.280000pt;}
.ws38{word-spacing:-9.066667pt;}
.wsf{word-spacing:-0.064404pt;}
.ws8{word-spacing:0.000000pt;}
.ws12{word-spacing:1.840199pt;}
.wse{word-spacing:2.349503pt;}
.ws19{word-spacing:37.952385pt;}
.ws11{word-spacing:40.941842pt;}
.wsb{word-spacing:41.539768pt;}
.ws15{word-spacing:41.694103pt;}
.ws2b{word-spacing:41.719753pt;}
.ws32{word-spacing:42.119483pt;}
.ws17{word-spacing:42.263031pt;}
.ws33{word-spacing:42.629742pt;}
.ws35{word-spacing:42.699646pt;}
.ws34{word-spacing:42.736821pt;}
.ws2c{word-spacing:43.659936pt;}
.ws20{word-spacing:43.931880pt;}
.ws21{word-spacing:44.034769pt;}
.wsd{word-spacing:44.209898pt;}
.ws2d{word-spacing:44.297852pt;}
.ws16{word-spacing:44.467122pt;}
.ws30{word-spacing:44.950431pt;}
.ws25{word-spacing:45.958749pt;}
.ws22{word-spacing:45.974952pt;}
.ws27{word-spacing:46.057376pt;}
.ws23{word-spacing:46.612868pt;}
.ws2f{word-spacing:47.882400pt;}
.ws29{word-spacing:200.510008pt;}
.ws1e{word-spacing:207.197832pt;}
.wsa{word-spacing:354.794918pt;}
.ws14{word-spacing:355.309366pt;}
.ws9{word-spacing:458.123959pt;}
.ws13{word-spacing:458.638407pt;}
.ws2a{word-spacing:994.454416pt;}
.ws1f{word-spacing:1011.662702pt;}
.ws2e{word-spacing:1476.893526pt;}
.ws24{word-spacing:1505.574002pt;}
._2f{margin-left:-726.853203pt;}
._39{margin-left:-715.895460pt;}
._37{margin-left:-399.826465pt;}
._31{margin-left:-390.177854pt;}
._28{margin-left:-387.470828pt;}
._32{margin-left:-386.184708pt;}
._30{margin-left:-385.259731pt;}
._3b{margin-left:-383.490030pt;}
._3a{margin-left:-381.041257pt;}
._3c{margin-left:-379.754108pt;}
._27{margin-left:-377.933991pt;}
._38{margin-left:-375.395046pt;}
._42{margin-left:-371.064747pt;}
._41{margin-left:-368.707222pt;}
._2b{margin-left:-365.040561pt;}
._35{margin-left:-364.038483pt;}
._2a{margin-left:-362.708447pt;}
._36{margin-left:-359.123121pt;}
._3f{margin-left:-357.070097pt;}
._34{margin-left:-353.235075pt;}
._40{margin-left:-352.211324pt;}
._3e{margin-left:-349.016602pt;}
._2c{margin-left:-347.740771pt;}
._29{margin-left:-346.814764pt;}
._6{margin-left:-9.152000pt;}
._8{margin-left:-7.168000pt;}
._2{margin-left:-6.272000pt;}
._5{margin-left:-4.757333pt;}
._7{margin-left:-3.328000pt;}
._3{margin-left:-2.261333pt;}
._4{margin-left:-0.960000pt;}
._0{width:1.074347pt;}
._13{width:2.016000pt;}
._18{width:3.421013pt;}
._10{width:4.632320pt;}
._f{width:5.930667pt;}
._1a{width:7.232000pt;}
._19{width:8.128000pt;}
._14{width:9.728000pt;}
._15{width:10.944000pt;}
._b{width:12.608000pt;}
._16{width:13.568000pt;}
._c{width:14.913280pt;}
._17{width:17.211307pt;}
._12{width:18.389333pt;}
._11{width:19.349333pt;}
._4c{width:20.400640pt;}
._e{width:21.725013pt;}
._d{width:22.853973pt;}
._2d{width:24.490667pt;}
._20{width:25.549653pt;}
._9{width:27.000320pt;}
._2e{width:28.088320pt;}
._26{width:29.005653pt;}
._1b{width:30.336000pt;}
._1c{width:31.232000pt;}
._1d{width:32.874667pt;}
._4b{width:34.855680pt;}
._49{width:36.312320pt;}
._48{width:37.205333pt;}
._25{width:39.649280pt;}
._24{width:40.640000pt;}
._4d{width:42.133333pt;}
._46{width:44.053333pt;}
._4a{width:45.581653pt;}
._43{width:47.434667pt;}
._4f{width:49.322667pt;}
._21{width:50.594987pt;}
._44{width:51.605333pt;}
._4e{width:54.101333pt;}
._1f{width:57.435307pt;}
._1e{width:58.346667pt;}
._a{width:68.416000pt;}
._47{width:72.359680pt;}
._45{width:73.973333pt;}
._23{width:86.216960pt;}
._22{width:87.360000pt;}
._1{width:962.804053pt;}
._3d{width:1470.589822pt;}
._33{width:1496.260778pt;}
.fs2{font-size:5.120000pt;}
.fs7{font-size:32.000000pt;}
.fs9{font-size:37.120000pt;}
.fs6{font-size:37.536184pt;}
.fsc{font-size:37.616736pt;}
.fs3{font-size:42.880000pt;}
.fs0{font-size:53.120000pt;}
.fsd{font-size:56.320000pt;}
.fs8{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.fs5{font-size:64.403745pt;}
.fsa{font-size:64.541955pt;}
.fs4{font-size:96.669924pt;}
.fsb{font-size:96.877376pt;}
.y0{bottom:0.000000pt;}
.yd5{bottom:1.920000pt;}
.y75{bottom:3.680000pt;}
.y58{bottom:3.986972pt;}
.y92{bottom:3.995528pt;}
.y9{bottom:4.000000pt;}
.y53{bottom:4.019125pt;}
.y72{bottom:5.600000pt;}
.yd3{bottom:6.426667pt;}
.yc7{bottom:6.693333pt;}
.y3{bottom:6.880000pt;}
.y57{bottom:6.977201pt;}
.y91{bottom:6.992174pt;}
.y52{bottom:7.041507pt;}
.yf2{bottom:8.800000pt;}
.y59{bottom:10.739102pt;}
.y90{bottom:10.762148pt;}
.y74{bottom:20.480000pt;}
.y54{bottom:20.802991pt;}
.y8{bottom:22.400000pt;}
.y2{bottom:23.840000pt;}
.y5{bottom:25.792000pt;}
.yf1{bottom:27.200000pt;}
.yef{bottom:93.152000pt;}
.y37{bottom:96.032000pt;}
.yc5{bottom:97.533333pt;}
.y6c{bottom:106.912000pt;}
.yb9{bottom:111.232000pt;}
.yee{bottom:113.472000pt;}
.yce{bottom:114.946667pt;}
.y36{bottom:116.192000pt;}
.yc1{bottom:120.546667pt;}
.y9f{bottom:123.072000pt;}
.ya0{bottom:123.146667pt;}
.yc4{bottom:125.213333pt;}
.yd1{bottom:126.493333pt;}
.y6b{bottom:127.232000pt;}
.yb8{bottom:129.472000pt;}
.yc0{bottom:132.226667pt;}
.ycf{bottom:133.253333pt;}
.yed{bottom:133.626667pt;}
.y35{bottom:136.506667pt;}
.yc3{bottom:146.106667pt;}
.yb7{bottom:146.266667pt;}
.y6a{bottom:147.386667pt;}
.yec{bottom:153.946667pt;}
.ybb{bottom:155.386667pt;}
.y34{bottom:156.666667pt;}
.ybf{bottom:158.786667pt;}
.y9e{bottom:159.226667pt;}
.y9d{bottom:159.280000pt;}
.yb6{bottom:161.466667pt;}
.yc8{bottom:161.600000pt;}
.yc9{bottom:167.386667pt;}
.y69{bottom:167.706667pt;}
.yc2{bottom:170.720000pt;}
.ycd{bottom:170.906667pt;}
.yd0{bottom:173.093333pt;}
.yeb{bottom:174.106667pt;}
.y33{bottom:176.986667pt;}
.ybe{bottom:180.773333pt;}
.y68{bottom:187.866667pt;}
.ycc{bottom:191.066667pt;}
.yea{bottom:194.266667pt;}
.y9c{bottom:195.386667pt;}
.y9b{bottom:195.413333pt;}
.y32{bottom:197.146667pt;}
.yca{bottom:204.226667pt;}
.ybd{bottom:207.773333pt;}
.y67{bottom:208.186667pt;}
.ye9{bottom:214.586667pt;}
.y31{bottom:217.466667pt;}
.y66{bottom:228.346667pt;}
.y65{bottom:228.413333pt;}
.ybc{bottom:230.333333pt;}
.y9a{bottom:231.706667pt;}
.y99{bottom:231.746667pt;}
.ycb{bottom:232.613333pt;}
.ye8{bottom:234.746667pt;}
.y30{bottom:237.626667pt;}
.ye7{bottom:255.106667pt;}
.y2f{bottom:257.986667pt;}
.y98{bottom:264.066667pt;}
.y97{bottom:264.080000pt;}
.y64{bottom:264.546667pt;}
.ye6{bottom:275.266667pt;}
.y2e{bottom:278.146667pt;}
.ye5{bottom:295.586667pt;}
.y96{bottom:297.826667pt;}
.y2d{bottom:298.466667pt;}
.y63{bottom:300.706667pt;}
.y62{bottom:300.746667pt;}
.y95{bottom:310.786667pt;}
.ye4{bottom:315.746667pt;}
.y2c{bottom:318.626667pt;}
.yfe{bottom:322.786667pt;}
.y94{bottom:328.226667pt;}
.y61{bottom:333.186667pt;}
.y60{bottom:333.213333pt;}
.ye3{bottom:336.066667pt;}
.y2b{bottom:338.946667pt;}
.y8f{bottom:341.013333pt;}
.y93{bottom:341.026667pt;}
.yfd{bottom:342.946667pt;}
.ye2{bottom:356.226667pt;}
.y2a{bottom:359.106667pt;}
.yfc{bottom:363.266667pt;}
.y5f{bottom:369.666667pt;}
.yd2{bottom:372.320000pt;}
.ye1{bottom:376.546667pt;}
.y8e{bottom:377.186667pt;}
.y8d{bottom:377.213333pt;}
.y29{bottom:379.426667pt;}
.yfb{bottom:381.666667pt;}
.y5e{bottom:389.986667pt;}
.ye0{bottom:396.706667pt;}
.y28{bottom:399.586667pt;}
.yfa{bottom:401.826667pt;}
.y8c{bottom:409.666667pt;}
.y8b{bottom:409.680000pt;}
.y5d{bottom:410.146667pt;}
.yb5{bottom:412.866667pt;}
.ydf{bottom:417.026667pt;}
.y27{bottom:419.906667pt;}
.yf9{bottom:420.386667pt;}
.yb4{bottom:429.826667pt;}
.y5c{bottom:430.306667pt;}
.y5b{bottom:430.346667pt;}
.yde{bottom:437.186667pt;}
.yf8{bottom:438.786667pt;}
.y26{bottom:440.066667pt;}
.y8a{bottom:443.426667pt;}
.yb3{bottom:445.026667pt;}
.yb2{bottom:453.986667pt;}
.yba{bottom:454.240000pt;}
.y89{bottom:456.386667pt;}
.yf7{bottom:457.186667pt;}
.ydd{bottom:457.506667pt;}
.y25{bottom:460.386667pt;}
.y5a{bottom:466.466667pt;}
.y56{bottom:466.480000pt;}
.yf6{bottom:475.586667pt;}
.y88{bottom:476.546667pt;}
.ydc{bottom:477.666667pt;}
.y24{bottom:480.546667pt;}
.yf5{bottom:495.613333pt;}
.y87{bottom:496.733333pt;}
.ydb{bottom:498.013333pt;}
.y51{bottom:498.946667pt;}
.y55{bottom:498.973333pt;}
.y23{bottom:500.893333pt;}
.yf4{bottom:515.933333pt;}
.y86{bottom:517.053333pt;}
.yda{bottom:518.173333pt;}
.y22{bottom:521.053333pt;}
.yf3{bottom:534.493333pt;}
.y50{bottom:535.453333pt;}
.y85{bottom:537.213333pt;}
.yd9{bottom:538.493333pt;}
.y21{bottom:541.373333pt;}
.yf0{bottom:548.893333pt;}
.y4f{bottom:555.773333pt;}
.y84{bottom:557.533333pt;}
.yd8{bottom:558.653333pt;}
.y20{bottom:561.533333pt;}
.y4e{bottom:575.933333pt;}
.yd7{bottom:576.893333pt;}
.y83{bottom:577.693333pt;}
.y1f{bottom:581.853333pt;}
.y82{bottom:593.053333pt;}
.yd6{bottom:595.773333pt;}
.y4d{bottom:596.253333pt;}
.y1e{bottom:602.013333pt;}
.yd4{bottom:610.333333pt;}
.y81{bottom:612.573333pt;}
.y4c{bottom:616.413333pt;}
.y1d{bottom:622.333333pt;}
.y80{bottom:632.253333pt;}
.y4b{bottom:636.733333pt;}
.y1c{bottom:642.493333pt;}
.y7f{bottom:651.773333pt;}
.y4a{bottom:656.893333pt;}
.yc6{bottom:659.520000pt;}
.y1b{bottom:662.813333pt;}
.y7e{bottom:671.453333pt;}
.y49{bottom:677.213333pt;}
.y1a{bottom:682.973333pt;}
.y7d{bottom:690.973333pt;}
.y48{bottom:697.373333pt;}
.y19{bottom:703.293333pt;}
.yb1{bottom:706.013333pt;}
.y7c{bottom:710.653333pt;}
.y47{bottom:717.693333pt;}
.y18{bottom:723.453333pt;}
.yb0{bottom:726.173333pt;}
.y7b{bottom:730.173333pt;}
.y46{bottom:737.853333pt;}
.y17{bottom:743.773333pt;}
.yaf{bottom:746.533333pt;}
.y7a{bottom:749.893333pt;}
.y45{bottom:758.213333pt;}
.y16{bottom:762.373333pt;}
.yae{bottom:766.693333pt;}
.y79{bottom:769.413333pt;}
.y44{bottom:778.373333pt;}
.y15{bottom:780.773333pt;}
.yad{bottom:787.013333pt;}
.y78{bottom:789.093333pt;}
.y43{bottom:798.693333pt;}
.y14{bottom:799.173333pt;}
.yac{bottom:807.173333pt;}
.y77{bottom:808.613333pt;}
.y13{bottom:817.573333pt;}
.y42{bottom:818.853333pt;}
.yab{bottom:827.493333pt;}
.y76{bottom:828.293333pt;}
.y12{bottom:835.653333pt;}
.y41{bottom:839.173333pt;}
.yaa{bottom:847.653333pt;}
.y73{bottom:847.813333pt;}
.y11{bottom:854.053333pt;}
.y40{bottom:859.333333pt;}
.ya9{bottom:867.973333pt;}
.y10{bottom:872.773333pt;}
.y3f{bottom:879.653333pt;}
.y71{bottom:882.213333pt;}
.ya8{bottom:888.133333pt;}
.yf{bottom:891.173333pt;}
.y3e{bottom:899.813333pt;}
.y70{bottom:903.813333pt;}
.ya7{bottom:908.453333pt;}
.ye{bottom:909.573333pt;}
.y6f{bottom:914.533333pt;}
.y3d{bottom:920.133333pt;}
.yd{bottom:927.973333pt;}
.ya6{bottom:928.613333pt;}
.y6e{bottom:931.493333pt;}
.y3c{bottom:940.293333pt;}
.yc{bottom:946.053333pt;}
.y6d{bottom:947.653333pt;}
.ya5{bottom:948.933333pt;}
.y3b{bottom:960.613333pt;}
.yb{bottom:964.453333pt;}
.ya4{bottom:969.013333pt;}
.ya3{bottom:969.093333pt;}
.y3a{bottom:980.773333pt;}
.ya{bottom:983.173333pt;}
.y7{bottom:997.600000pt;}
.y39{bottom:1001.120000pt;}
.ya2{bottom:1005.213333pt;}
.ya1{bottom:1005.280000pt;}
.y38{bottom:1021.280000pt;}
.y6{bottom:1034.720000pt;}
.y4{bottom:1041.600000pt;}
.y1{bottom:1059.040000pt;}
.h6{height:5.022500pt;}
.h19{height:18.866667pt;}
.h1f{height:18.880000pt;}
.h1e{height:18.900000pt;}
.h32{height:23.200000pt;}
.h2c{height:24.160000pt;}
.hf{height:26.081050pt;}
.hc{height:30.866880pt;}
.h21{height:30.933120pt;}
.h17{height:31.406250pt;}
.h1a{height:33.746667pt;}
.he{height:36.755846pt;}
.h7{height:36.800000pt;}
.h14{height:36.884458pt;}
.h24{height:36.963611pt;}
.h2{height:37.920000pt;}
.h1c{height:40.882500pt;}
.h35{height:41.600000pt;}
.ha{height:44.468750pt;}
.h12{height:47.643120pt;}
.h20{height:47.705313pt;}
.h22{height:47.807688pt;}
.h3{height:52.108438pt;}
.h4{height:52.134375pt;}
.h2f{height:55.247500pt;}
.h33{height:55.275000pt;}
.h1b{height:57.758750pt;}
.h18{height:57.787500pt;}
.h9{height:62.781250pt;}
.h5{height:62.812500pt;}
.h13{height:63.208754pt;}
.h27{height:63.289917pt;}
.h1d{height:63.293125pt;}
.h26{height:63.311250pt;}
.h25{height:63.344399pt;}
.h8{height:64.500000pt;}
.h2b{height:66.612083pt;}
.h16{height:71.503042pt;}
.hb{height:71.524375pt;}
.hd{height:81.126986pt;}
.h11{height:81.384210pt;}
.h23{height:81.558859pt;}
.h30{height:83.620833pt;}
.h10{height:90.088662pt;}
.h15{height:90.217274pt;}
.h2e{height:111.087500pt;}
.h31{height:114.767500pt;}
.h2a{height:155.518750pt;}
.h29{height:186.185417pt;}
.h34{height:223.066667pt;}
.h28{height:246.080000pt;}
.h2d{height:247.840000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w7{width:69.269055pt;}
.w8{width:69.335297pt;}
.wa{width:70.866222pt;}
.w17{width:71.798463pt;}
.w9{width:71.864702pt;}
.w18{width:72.662994pt;}
.w1a{width:74.267812pt;}
.w19{width:77.597195pt;}
.w14{width:82.665130pt;}
.w15{width:82.732329pt;}
.wd{width:109.310667pt;}
.wf{width:109.440000pt;}
.we{width:109.458667pt;}
.w10{width:109.472000pt;}
.w12{width:109.586667pt;}
.w11{width:109.618667pt;}
.w1f{width:182.880000pt;}
.w1c{width:191.520000pt;}
.w1d{width:198.880000pt;}
.w23{width:217.146667pt;}
.w22{width:219.105333pt;}
.w24{width:220.653333pt;}
.w3{width:231.693333pt;}
.w6{width:233.725369pt;}
.w20{width:316.385333pt;}
.wb{width:328.225333pt;}
.w5{width:328.386667pt;}
.w4{width:328.545333pt;}
.wc{width:328.706667pt;}
.w21{width:340.546667pt;}
.w2{width:403.452000pt;}
.w16{width:481.727977pt;}
.w13{width:493.470553pt;}
.w1e{width:637.760000pt;}
.w1b{width:666.080000pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1e{left:2.287131pt;}
.xa{left:7.038667pt;}
.x6{left:8.786667pt;}
.x32{left:13.440000pt;}
.x2f{left:18.066667pt;}
.x1b{left:19.488851pt;}
.x60{left:21.408000pt;}
.x2{left:24.830667pt;}
.x35{left:27.186667pt;}
.x57{left:28.512000pt;}
.x30{left:32.466667pt;}
.x2d{left:34.910667pt;}
.x1f{left:36.235036pt;}
.x25{left:38.088697pt;}
.x4e{left:39.510795pt;}
.xc{left:44.666667pt;}
.x6b{left:58.546667pt;}
.x9{left:68.481333pt;}
.x64{left:69.373333pt;}
.x5{left:70.386667pt;}
.x15{left:75.520000pt;}
.x1{left:77.921333pt;}
.x5d{left:82.213333pt;}
.x6c{left:92.832000pt;}
.x45{left:100.005620pt;}
.x1a{left:101.758427pt;}
.x7{left:113.312000pt;}
.x61{left:117.373333pt;}
.x67{left:121.693333pt;}
.x3{left:123.545333pt;}
.x5f{left:127.546667pt;}
.xf{left:128.672000pt;}
.x8{left:136.506667pt;}
.x2c{left:149.305333pt;}
.x62{left:161.853333pt;}
.x18{left:164.369083pt;}
.x37{left:169.013333pt;}
.x40{left:174.813333pt;}
.x2e{left:177.800000pt;}
.x19{left:181.402562pt;}
.x4b{left:184.186667pt;}
.x12{left:185.946667pt;}
.x14{left:206.586667pt;}
.x4f{left:209.786667pt;}
.xd{left:211.066667pt;}
.x10{left:212.026667pt;}
.x2b{left:213.306667pt;}
.xe{left:227.706667pt;}
.x5b{left:232.773333pt;}
.x13{left:240.026667pt;}
.x53{left:247.946667pt;}
.x44{left:262.193053pt;}
.x3a{left:267.177570pt;}
.x11{left:275.266667pt;}
.x58{left:277.053333pt;}
.x26{left:283.613333pt;}
.x3c{left:286.346667pt;}
.x31{left:287.266667pt;}
.x47{left:292.213333pt;}
.x16{left:299.586667pt;}
.x63{left:309.346667pt;}
.x54{left:319.746667pt;}
.x1d{left:322.013333pt;}
.x23{left:323.413333pt;}
.x3e{left:325.346667pt;}
.x59{left:326.746667pt;}
.x41{left:328.896308pt;}
.x49{left:331.280000pt;}
.x21{left:332.213333pt;}
.x38{left:335.229590pt;}
.x17{left:342.946667pt;}
.x42{left:346.164596pt;}
.x27{left:352.866667pt;}
.x3d{left:369.026667pt;}
.x48{left:374.946667pt;}
.x4c{left:376.413333pt;}
.x5a{left:381.893333pt;}
.x68{left:384.866667pt;}
.x20{left:391.266667pt;}
.x24{left:392.706667pt;}
.x69{left:394.146667pt;}
.xb{left:397.026667pt;}
.x22{left:401.506667pt;}
.x3f{left:408.066667pt;}
.x4a{left:413.986667pt;}
.x36{left:415.746667pt;}
.x43{left:429.603578pt;}
.x39{left:437.814675pt;}
.x4d{left:448.253333pt;}
.x4{left:484.266667pt;}
.x52{left:485.533333pt;}
.x65{left:496.800000pt;}
.x6a{left:504.746667pt;}
.x33{left:506.186667pt;}
.x5c{left:515.840000pt;}
.x28{left:521.213333pt;}
.x66{left:524.160000pt;}
.x1c{left:532.573333pt;}
.x5e{left:542.720000pt;}
.x50{left:568.546667pt;}
.x29{left:592.133333pt;}
.x34{left:615.813333pt;}
.x51{left:646.533333pt;}
.x46{left:656.613333pt;}
.x3b{left:662.533333pt;}
.x2a{left:665.733333pt;}
.x56{left:715.653333pt;}
.x55{left:741.733333pt;}
}




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