
    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_0ecb10385a71882056ffa1cd.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.919434;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_69d5d5a2e942efd22c2572fe.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.925293;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_9e74c9ab5c37d21ca5e01220.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_1f90f3bb42af62b8a46679cc.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_8026e2dcec75421e24670e54.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.675781;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_200473fd285e1c710fca2f0a.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.919922;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_1006d9eb748a94018844922b.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.913086;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_3a7290b7b26bed1f9a729a47.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.919434;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_70a234fb6f8f7338340fe4ec.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.706543;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_77c8c6ed5e33b7dfb052f28e.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.680176;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_e8f4ac3a5481983a21fcd33c.woff2')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_43f05f86deaa7f4af70a7efb.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_91451efd14c81e63149a561a.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.432129;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:ffe;src:url('chunks/assets/font_ee345abc4a42772c5b1c5c0a.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.919434;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:fff;src:url('chunks/assets/font_3d077e09b362521822888666.woff2')format("woff");}.fff{font-family:fff;line-height:0.675781;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:ff10;src:url('chunks/assets/font_989824e49b630ce8ace8b85c.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.706543;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:ff11;src:url('chunks/assets/font_ec6f45f1ed08bba11531a7d3.woff2')format("woff");}.ff11{font-family:ff11;line-height:1.435059;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff12;src:url('chunks/assets/font_1f6b776bb7729d6d1aed858f.woff2')format("woff");}.ff12{font-family:ff12;line-height:1.435059;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m2{transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-ms-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-webkit-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.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);}
.v5{vertical-align:-51.840000px;}
.v4{vertical-align:-15.120000px;}
.v2{vertical-align:-12.240000px;}
.v0{vertical-align:0.000000px;}
.v6{vertical-align:5.760000px;}
.v3{vertical-align:15.120000px;}
.v1{vertical-align:33.300000px;}
.ls2f{letter-spacing:-0.672000px;}
.ls34{letter-spacing:-0.540000px;}
.lsa{letter-spacing:-0.334200px;}
.ls23{letter-spacing:-0.227400px;}
.ls17{letter-spacing:-0.172800px;}
.ls24{letter-spacing:-0.152400px;}
.lsc{letter-spacing:-0.112200px;}
.ls22{letter-spacing:-0.103800px;}
.lsd{letter-spacing:-0.090000px;}
.lsb{letter-spacing:-0.069000px;}
.ls8{letter-spacing:-0.018000px;}
.ls9{letter-spacing:0.000000px;}
.ls12{letter-spacing:0.023040px;}
.ls16{letter-spacing:0.054000px;}
.ls32{letter-spacing:0.069000px;}
.ls0{letter-spacing:0.072000px;}
.ls2b{letter-spacing:0.089400px;}
.ls1e{letter-spacing:0.100800px;}
.ls2c{letter-spacing:0.106800px;}
.lse{letter-spacing:0.108000px;}
.ls1f{letter-spacing:0.123840px;}
.ls25{letter-spacing:0.147000px;}
.ls2d{letter-spacing:0.168480px;}
.ls19{letter-spacing:0.172800px;}
.ls4{letter-spacing:0.180000px;}
.ls20{letter-spacing:0.204480px;}
.ls18{letter-spacing:0.204600px;}
.ls6{letter-spacing:0.216000px;}
.ls1{letter-spacing:0.252000px;}
.ls1b{letter-spacing:0.262080px;}
.ls2a{letter-spacing:0.265200px;}
.ls7{letter-spacing:0.288000px;}
.ls26{letter-spacing:0.305400px;}
.ls29{letter-spacing:0.316800px;}
.ls2{letter-spacing:0.324000px;}
.ls1a{letter-spacing:0.328320px;}
.ls1d{letter-spacing:0.348480px;}
.ls13{letter-spacing:0.352800px;}
.ls3{letter-spacing:0.360000px;}
.ls11{letter-spacing:0.385920px;}
.ls21{letter-spacing:0.469440px;}
.ls28{letter-spacing:3.600000px;}
.ls15{letter-spacing:7.882560px;}
.ls30{letter-spacing:10.908000px;}
.ls27{letter-spacing:25.747200px;}
.ls31{letter-spacing:38.340000px;}
.ls2e{letter-spacing:41.148000px;}
.ls14{letter-spacing:66.067200px;}
.ls10{letter-spacing:73.025280px;}
.lsf{letter-spacing:75.804480px;}
.ls33{letter-spacing:132.761280px;}
.ls1c{letter-spacing:171.809280px;}
.ls5{letter-spacing:420.660000px;}
.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;}
}
.ws5{word-spacing:-48.240000px;}
.wsb{word-spacing:-19.710000px;}
.ws11{word-spacing:-16.560000px;}
.wse{word-spacing:-15.228000px;}
.wsd{word-spacing:-15.120000px;}
.wsc{word-spacing:-15.012000px;}
.ws16{word-spacing:-14.889600px;}
.ws17{word-spacing:-14.838000px;}
.ws14{word-spacing:-14.673600px;}
.ws15{word-spacing:-14.662200px;}
.ws1a{word-spacing:-14.641800px;}
.ws8{word-spacing:-14.572800px;}
.ws9{word-spacing:-14.503800px;}
.ws13{word-spacing:-14.469000px;}
.ws7{word-spacing:-14.238600px;}
.ws18{word-spacing:-13.500000px;}
.ws2{word-spacing:-12.204000px;}
.ws4{word-spacing:-12.168000px;}
.ws3{word-spacing:-12.132000px;}
.ws10{word-spacing:-11.952000px;}
.ws1{word-spacing:-11.880000px;}
.ws0{word-spacing:-11.862000px;}
.ws12{word-spacing:-9.187200px;}
.wsa{word-spacing:-9.075000px;}
.ws6{word-spacing:-7.920000px;}
.wsf{word-spacing:0.000000px;}
.ws19{word-spacing:138.438000px;}
._2b{margin-left:-198.000000px;}
._3f{margin-left:-78.724800px;}
._40{margin-left:-72.457200px;}
._32{margin-left:-49.628400px;}
._3{margin-left:-37.897920px;}
._41{margin-left:-32.220000px;}
._29{margin-left:-8.350320px;}
._3a{margin-left:-2.085360px;}
._1{margin-left:-1.080000px;}
._0{width:1.074000px;}
._f{width:2.687520px;}
._13{width:4.656960px;}
._14{width:5.793360px;}
._d{width:6.822720px;}
._e{width:8.692320px;}
._9{width:9.737280px;}
._a{width:11.128320px;}
._10{width:12.922800px;}
._1b{width:14.634000px;}
._2{width:15.709680px;}
._1a{width:17.288640px;}
._c{width:19.301760px;}
._b{width:20.396160px;}
._4{width:21.600000px;}
._1c{width:22.858560px;}
._1e{width:23.912640px;}
._1d{width:24.966960px;}
._15{width:26.236560px;}
._27{width:27.570240px;}
._19{width:29.013120px;}
._18{width:30.225600px;}
._20{width:31.446720px;}
._21{width:33.318720px;}
._30{width:34.974720px;}
._12{width:36.167040px;}
._36{width:37.226880px;}
._2f{width:38.314560px;}
._1f{width:39.530880px;}
._17{width:40.579200px;}
._16{width:41.664960px;}
._2a{width:42.747840px;}
._2d{width:44.049600px;}
._2e{width:45.129600px;}
._11{width:46.719360px;}
._5{width:48.084480px;}
._6{width:49.764000px;}
._8{width:52.793280px;}
._7{width:54.184320px;}
._35{width:56.090880px;}
._28{width:57.098880px;}
._3d{width:58.147200px;}
._42{width:59.181120px;}
._33{width:61.470720px;}
._34{width:62.484480px;}
._3c{width:63.967680px;}
._26{width:65.980800px;}
._22{width:67.299840px;}
._31{width:74.520000px;}
._39{width:75.988800px;}
._25{width:80.216640px;}
._23{width:89.622720px;}
._24{width:90.682560px;}
._3e{width:99.144000px;}
._44{width:102.499440px;}
._38{width:107.792640px;}
._37{width:108.964800px;}
._3b{width:115.257600px;}
._43{width:169.468080px;}
._2c{width:181.584000px;}
.fc7{color:rgb(255,0,0);}
.fc4{color:transparent;}
.fc2{color:rgb(0,0,255);}
.fc6{color:rgb(255,255,255);}
.fc5{color:rgb(64,64,64);}
.fc3{color:rgb(34,34,34);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(79,129,189);}
.fsb{font-size:5.760000px;}
.fs7{font-size:30.240000px;}
.fs6{font-size:36.000000px;}
.fs9{font-size:41.760000px;}
.fs5{font-size:48.240000px;}
.fs0{font-size:54.000000px;}
.fs2{font-size:59.760000px;}
.fs8{font-size:66.240000px;}
.fsc{font-size:69.822393px;}
.fs1{font-size:72.000000px;}
.fsa{font-size:90.000000px;}
.fs4{font-size:102.240000px;}
.fs3{font-size:108.000000px;}
.y4d{bottom:-16.200000px;}
.y0{bottom:0.000000px;}
.y6e{bottom:3.060000px;}
.y5c{bottom:3.240000px;}
.y19e{bottom:3.585000px;}
.y1a3{bottom:3.592500px;}
.y127{bottom:3.780000px;}
.y125{bottom:4.860000px;}
.y131{bottom:6.300000px;}
.y133{bottom:6.840000px;}
.y129{bottom:11.880000px;}
.y137{bottom:13.680000px;}
.y4c{bottom:16.020000px;}
.y4b{bottom:17.820000px;}
.y6d{bottom:18.900000px;}
.y5b{bottom:19.260000px;}
.y4a{bottom:19.440000px;}
.y19a{bottom:21.585000px;}
.y1a0{bottom:21.586500px;}
.y18e{bottom:21.600000px;}
.y191{bottom:21.630000px;}
.y195{bottom:21.780000px;}
.y49{bottom:22.860000px;}
.y19d{bottom:23.025000px;}
.y1a2{bottom:23.032500px;}
.y123{bottom:23.040000px;}
.y132{bottom:25.560000px;}
.y130{bottom:25.740000px;}
.y128{bottom:31.320000px;}
.y121{bottom:32.760000px;}
.y136{bottom:33.120000px;}
.y48{bottom:34.380000px;}
.y6c{bottom:34.740000px;}
.y5a{bottom:35.130000px;}
.y193{bottom:41.040000px;}
.y190{bottom:41.070000px;}
.y122{bottom:42.480000px;}
.y12d{bottom:42.525000px;}
.y6b{bottom:50.580000px;}
.y59{bottom:50.970000px;}
.y135{bottom:52.380000px;}
.ya{bottom:55.980000px;}
.y70{bottom:56.520000px;}
.y47{bottom:60.840000px;}
.y126{bottom:61.740000px;}
.y12c{bottom:61.785000px;}
.y6a{bottom:66.420000px;}
.y58{bottom:66.810000px;}
.y9{bottom:71.856000px;}
.y57{bottom:79.590000px;}
.y11f{bottom:80.856000px;}
.y118{bottom:82.116000px;}
.y69{bottom:82.290000px;}
.y46{bottom:85.680000px;}
.y1a4{bottom:86.616000px;}
.y8{bottom:87.696000px;}
.y176{bottom:88.956000px;}
.y100{bottom:89.496000px;}
.y163{bottom:92.736000px;}
.y9f{bottom:97.956000px;}
.y68{bottom:98.130000px;}
.y56{bottom:98.490000px;}
.y11e{bottom:100.116000px;}
.y117{bottom:101.556000px;}
.ydf{bottom:102.096000px;}
.y7{bottom:103.536000px;}
.y1a1{bottom:103.903500px;}
.y45{bottom:104.610000px;}
.y175{bottom:107.136000px;}
.ybf{bottom:108.756000px;}
.y162{bottom:111.996000px;}
.y67{bottom:113.970000px;}
.y55{bottom:114.330000px;}
.y9e{bottom:117.396000px;}
.y6{bottom:119.376000px;}
.y11d{bottom:119.556000px;}
.y116{bottom:120.816000px;}
.yde{bottom:121.356000px;}
.y174{bottom:125.496000px;}
.ybe{bottom:128.196000px;}
.y66{bottom:129.810000px;}
.y54{bottom:130.170000px;}
.y161{bottom:131.256000px;}
.y5{bottom:135.216000px;}
.y9d{bottom:136.656000px;}
.y11c{bottom:138.816000px;}
.y115{bottom:140.256000px;}
.ydd{bottom:140.796000px;}
.y173{bottom:143.676000px;}
.y19f{bottom:144.043500px;}
.y65{bottom:145.650000px;}
.y53{bottom:145.830000px;}
.yff{bottom:146.196000px;}
.ybd{bottom:147.456000px;}
.y160{bottom:150.690000px;}
.y4{bottom:151.050000px;}
.y9c{bottom:156.090000px;}
.y11b{bottom:158.250000px;}
.y52{bottom:158.610000px;}
.ydc{bottom:160.050000px;}
.y64{bottom:161.310000px;}
.yfe{bottom:165.450000px;}
.y3{bottom:166.890000px;}
.y51{bottom:169.050000px;}
.y15f{bottom:169.950000px;}
.y9b{bottom:175.350000px;}
.y63{bottom:177.150000px;}
.y114{bottom:177.510000px;}
.y172{bottom:178.050000px;}
.y50{bottom:179.490000px;}
.y19c{bottom:182.925000px;}
.ybc{bottom:186.150000px;}
.y15e{bottom:189.390000px;}
.y3b{bottom:191.550000px;}
.y62{bottom:192.990000px;}
.y9a{bottom:194.790000px;}
.y113{bottom:196.950000px;}
.y4f{bottom:197.130000px;}
.ydb{bottom:198.750000px;}
.yfd{bottom:202.890000px;}
.ybb{bottom:205.410000px;}
.y61{bottom:205.770000px;}
.y15d{bottom:208.650000px;}
.y3a{bottom:210.810000px;}
.y99{bottom:214.050000px;}
.y171{bottom:215.490000px;}
.y60{bottom:216.210000px;}
.yda{bottom:218.190000px;}
.yfc{bottom:222.150000px;}
.y19b{bottom:223.065000px;}
.y5f{bottom:226.650000px;}
.y15c{bottom:228.090000px;}
.y39{bottom:230.250000px;}
.y98{bottom:233.490000px;}
.y170{bottom:234.750000px;}
.y112{bottom:235.470000px;}
.yd9{bottom:237.450000px;}
.yfb{bottom:241.410000px;}
.yba{bottom:242.850000px;}
.y5e{bottom:244.110000px;}
.y15b{bottom:247.350000px;}
.y38{bottom:249.510000px;}
.y97{bottom:252.750000px;}
.y16f{bottom:254.190000px;}
.y111{bottom:254.910000px;}
.yd8{bottom:256.890000px;}
.y199{bottom:261.945000px;}
.y15a{bottom:266.790000px;}
.y43{bottom:267.510000px;}
.y37{bottom:268.950000px;}
.y96{bottom:272.190000px;}
.y16e{bottom:273.450000px;}
.y110{bottom:274.170000px;}
.yd7{bottom:276.150000px;}
.yfa{bottom:278.850000px;}
.yb9{bottom:280.110000px;}
.y159{bottom:286.050000px;}
.y42{bottom:286.950000px;}
.y36{bottom:288.210000px;}
.y95{bottom:291.450000px;}
.y10f{bottom:293.610000px;}
.yf9{bottom:298.110000px;}
.yb8{bottom:299.910000px;}
.y198{bottom:300.825000px;}
.y158{bottom:305.490000px;}
.y41{bottom:306.210000px;}
.y35{bottom:307.650000px;}
.y94{bottom:310.890000px;}
.y10e{bottom:312.870000px;}
.yd6{bottom:313.410000px;}
.yf8{bottom:317.595000px;}
.yb7{bottom:318.855000px;}
.y157{bottom:324.795000px;}
.y40{bottom:325.695000px;}
.y34{bottom:326.955000px;}
.y93{bottom:330.195000px;}
.y10d{bottom:332.355000px;}
.yf7{bottom:337.215000px;}
.yb6{bottom:338.295000px;}
.y197{bottom:339.555000px;}
.y156{bottom:344.235000px;}
.y3f{bottom:344.955000px;}
.y33{bottom:346.395000px;}
.y92{bottom:349.455000px;}
.yd5{bottom:350.895000px;}
.y10c{bottom:351.615000px;}
.y155{bottom:363.495000px;}
.y3e{bottom:364.395000px;}
.y32{bottom:365.655000px;}
.y91{bottom:368.895000px;}
.yd4{bottom:370.155000px;}
.y10b{bottom:371.055000px;}
.yf6{bottom:374.295000px;}
.yb5{bottom:375.555000px;}
.y196{bottom:378.435000px;}
.y154{bottom:382.935000px;}
.y3d{bottom:383.655000px;}
.y16d{bottom:386.715000px;}
.y90{bottom:388.155000px;}
.yd3{bottom:389.595000px;}
.y10a{bottom:390.315000px;}
.yf5{bottom:393.555000px;}
.y153{bottom:402.195000px;}
.y31{bottom:403.095000px;}
.y8f{bottom:407.595000px;}
.yd2{bottom:408.855000px;}
.y109{bottom:409.755000px;}
.yb4{bottom:412.995000px;}
.y152{bottom:421.455000px;}
.y30{bottom:422.355000px;}
.y16c{bottom:425.595000px;}
.y108{bottom:429.015000px;}
.yb3{bottom:432.255000px;}
.y194{bottom:436.575000px;}
.y3c{bottom:441.615000px;}
.y2f{bottom:441.975000px;}
.y8e{bottom:444.855000px;}
.yd1{bottom:446.295000px;}
.y107{bottom:448.455000px;}
.yf4{bottom:451.695000px;}
.y151{bottom:458.895000px;}
.y2e{bottom:461.055000px;}
.y16b{bottom:462.855000px;}
.yd0{bottom:465.555000px;}
.y106{bottom:467.715000px;}
.yb2{bottom:470.055000px;}
.yf3{bottom:470.955000px;}
.y2d{bottom:476.715000px;}
.y150{bottom:478.155000px;}
.y8d{bottom:482.295000px;}
.ycf{bottom:484.995000px;}
.y11a{bottom:485.715000px;}
.y105{bottom:487.155000px;}
.yb1{bottom:488.955000px;}
.y5d{bottom:490.395000px;}
.y192{bottom:494.895000px;}
.y14f{bottom:497.595000px;}
.y2c{bottom:497.775000px;}
.y8c{bottom:501.555000px;}
.yce{bottom:504.255000px;}
.y119{bottom:505.155000px;}
.y2b{bottom:506.595000px;}
.yb0{bottom:508.395000px;}
.yf2{bottom:509.655000px;}
.y2a{bottom:515.415000px;}
.y14e{bottom:516.855000px;}
.y8b{bottom:520.995000px;}
.y29{bottom:524.235000px;}
.y104{bottom:524.415000px;}
.yf1{bottom:529.095000px;}
.y28{bottom:533.055000px;}
.y14d{bottom:536.295000px;}
.y4e{bottom:537.375000px;}
.y8a{bottom:540.255000px;}
.ycd{bottom:541.695000px;}
.y27{bottom:541.875000px;}
.yaf{bottom:546.015000px;}
.yf0{bottom:548.355000px;}
.y26{bottom:552.855000px;}
.y18f{bottom:553.035000px;}
.y14c{bottom:555.555000px;}
.y16a{bottom:558.255000px;}
.y89{bottom:559.695000px;}
.ycc{bottom:560.955000px;}
.y103{bottom:562.035000px;}
.yae{bottom:565.095000px;}
.yef{bottom:567.615000px;}
.y21{bottom:573.225000px;}
.y14b{bottom:575.025000px;}
.y25{bottom:577.545000px;}
.y134{bottom:577.905000px;}
.y88{bottom:578.985000px;}
.ycb{bottom:580.425000px;}
.y20{bottom:590.865000px;}
.y14a{bottom:594.285000px;}
.y169{bottom:596.985000px;}
.y87{bottom:598.425000px;}
.y24{bottom:598.605000px;}
.yca{bottom:599.685000px;}
.yad{bottom:602.745000px;}
.yee{bottom:605.085000px;}
.y1f{bottom:608.505000px;}
.y18d{bottom:613.185000px;}
.y149{bottom:613.725000px;}
.y23{bottom:619.665000px;}
.yac{bottom:621.645000px;}
.y1e{bottom:626.145000px;}
.y148{bottom:632.985000px;}
.y168{bottom:634.425000px;}
.y86{bottom:635.685000px;}
.yc9{bottom:637.125000px;}
.y22{bottom:640.725000px;}
.yab{bottom:641.085000px;}
.yed{bottom:642.345000px;}
.y1d{bottom:643.605000px;}
.y147{bottom:652.425000px;}
.y167{bottom:653.685000px;}
.y85{bottom:655.125000px;}
.yc8{bottom:656.385000px;}
.y12f{bottom:656.745000px;}
.y1c{bottom:661.245000px;}
.yec{bottom:661.785000px;}
.y146{bottom:671.685000px;}
.y166{bottom:673.125000px;}
.y18c{bottom:673.665000px;}
.y84{bottom:674.385000px;}
.yc7{bottom:675.645000px;}
.yaa{bottom:678.345000px;}
.y1b{bottom:678.885000px;}
.y145{bottom:691.125000px;}
.y165{bottom:692.385000px;}
.y83{bottom:693.645000px;}
.yc6{bottom:695.085000px;}
.y1a{bottom:696.345000px;}
.yeb{bottom:699.045000px;}
.y12e{bottom:701.385000px;}
.y144{bottom:710.385000px;}
.y164{bottom:711.645000px;}
.y82{bottom:713.085000px;}
.y18b{bottom:713.805000px;}
.y19{bottom:713.985000px;}
.yc5{bottom:714.345000px;}
.ya9{bottom:715.785000px;}
.yea{bottom:718.485000px;}
.y143{bottom:729.645000px;}
.y81{bottom:732.345000px;}
.yc4{bottom:733.785000px;}
.ya8{bottom:735.045000px;}
.y18a{bottom:735.225000px;}
.y18{bottom:746.385000px;}
.y142{bottom:749.085000px;}
.y80{bottom:751.785000px;}
.yc3{bottom:753.045000px;}
.y189{bottom:753.225000px;}
.ye9{bottom:755.745000px;}
.y141{bottom:768.345000px;}
.y17{bottom:770.145000px;}
.y7f{bottom:771.045000px;}
.y188{bottom:771.405000px;}
.ya7{bottom:772.485000px;}
.ye8{bottom:775.185000px;}
.y12b{bottom:779.505000px;}
.y16{bottom:785.985000px;}
.y140{bottom:787.785000px;}
.y187{bottom:789.585000px;}
.y7e{bottom:790.485000px;}
.ya6{bottom:792.105000px;}
.y13f{bottom:807.045000px;}
.y186{bottom:807.765000px;}
.y7d{bottom:809.745000px;}
.ye7{bottom:812.445000px;}
.y15{bottom:817.665000px;}
.y185{bottom:825.990000px;}
.y13e{bottom:826.530000px;}
.y7c{bottom:829.230000px;}
.ye6{bottom:831.930000px;}
.y184{bottom:844.170000px;}
.y13d{bottom:845.790000px;}
.yc2{bottom:847.230000px;}
.ya5{bottom:848.490000px;}
.y12a{bottom:857.670000px;}
.y14{bottom:858.030000px;}
.y183{bottom:862.350000px;}
.y13c{bottom:865.230000px;}
.y7b{bottom:866.490000px;}
.ya4{bottom:867.930000px;}
.ye5{bottom:869.190000px;}
.y182{bottom:880.710000px;}
.y13b{bottom:884.490000px;}
.y7a{bottom:885.930000px;}
.ya3{bottom:887.190000px;}
.y13{bottom:887.910000px;}
.ye4{bottom:888.630000px;}
.y181{bottom:898.890000px;}
.y13a{bottom:903.930000px;}
.y79{bottom:905.190000px;}
.ye3{bottom:907.890000px;}
.y180{bottom:917.070000px;}
.y12{bottom:918.510000px;}
.y139{bottom:923.190000px;}
.y78{bottom:924.630000px;}
.y17f{bottom:935.250000px;}
.y120{bottom:935.790000px;}
.y138{bottom:942.630000px;}
.y77{bottom:943.890000px;}
.ye2{bottom:945.330000px;}
.y11{bottom:949.650000px;}
.y17e{bottom:953.430000px;}
.ya2{bottom:961.890000px;}
.y76{bottom:963.330000px;}
.ye1{bottom:964.590000px;}
.y17d{bottom:971.610000px;}
.y44{bottom:973.050000px;}
.ya1{bottom:981.330000px;}
.y10{bottom:982.410000px;}
.y75{bottom:982.590000px;}
.ye0{bottom:983.850000px;}
.y17c{bottom:989.790000px;}
.y124{bottom:991.590000px;}
.ya0{bottom:1000.590000px;}
.yc1{bottom:1001.850000px;}
.yf{bottom:1004.010000px;}
.y17b{bottom:1007.970000px;}
.y74{bottom:1019.850000px;}
.yc0{bottom:1021.290000px;}
.ye{bottom:1025.790000px;}
.y17a{bottom:1026.150000px;}
.y73{bottom:1039.290000px;}
.y179{bottom:1044.510000px;}
.yd{bottom:1047.570000px;}
.y72{bottom:1058.550000px;}
.y178{bottom:1062.690000px;}
.yc{bottom:1069.350000px;}
.y71{bottom:1078.020000px;}
.y177{bottom:1080.900000px;}
.yb{bottom:1091.160000px;}
.y102{bottom:1105.020000px;}
.y6f{bottom:1112.220000px;}
.y2{bottom:1112.400000px;}
.y101{bottom:1127.880000px;}
.y1{bottom:1128.060000px;}
.h10{height:3.839063px;}
.h11{height:4.480313px;}
.hf{height:20.155078px;}
.ha{height:21.203437px;}
.h1f{height:21.600000px;}
.h8{height:25.623281px;}
.h2c{height:37.245000px;}
.h2f{height:37.252500px;}
.h27{height:37.260000px;}
.h2b{height:37.281000px;}
.h2a{height:37.425000px;}
.h1{height:37.863281px;}
.h3{height:38.179688px;}
.h2e{height:38.685000px;}
.h30{height:38.692500px;}
.h9{height:41.902031px;}
.h22{height:43.920000px;}
.h18{height:46.283906px;}
.h1a{height:46.413281px;}
.hb{height:46.445625px;}
.h19{height:46.536897px;}
.h16{height:46.833750px;}
.h17{height:47.184664px;}
.h2{height:50.484375px;}
.h24{height:52.205625px;}
.h15{height:52.998047px;}
.h20{height:55.080000px;}
.h26{height:55.503491px;}
.h25{height:56.320312px;}
.h29{height:56.685000px;}
.h28{height:56.730000px;}
.h4{height:58.651172px;}
.he{height:63.105469px;}
.hc{height:68.084282px;}
.h2d{height:68.956875px;}
.h1c{height:69.086250px;}
.h12{height:70.664062px;}
.h6{height:71.687812px;}
.h1b{height:71.766417px;}
.h7{height:72.562500px;}
.h1d{height:72.686202px;}
.h1e{height:77.400000px;}
.h21{height:77.436000px;}
.h23{height:78.120000px;}
.h5{height:105.996094px;}
.hd{height:117.210000px;}
.h13{height:211.350000px;}
.h14{height:258.330000px;}
.h0{height:1188.000000px;}
.wa{width:52.380000px;}
.w9{width:55.440000px;}
.wd{width:82.260000px;}
.wc{width:82.620000px;}
.w5{width:92.340000px;}
.w8{width:93.096000px;}
.wb{width:93.276000px;}
.w11{width:102.420000px;}
.w4{width:113.796000px;}
.w14{width:120.585000px;}
.w12{width:127.116000px;}
.w13{width:131.421000px;}
.w7{width:176.430000px;}
.w6{width:176.610000px;}
.w10{width:223.399500px;}
.w2{width:230.115000px;}
.w15{width:253.635000px;}
.w3{width:526.200000px;}
.w1{width:544.230000px;}
.wf{width:711.090000px;}
.we{width:764.610000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x1b{left:7.740000px;}
.xc{left:10.785000px;}
.xd{left:65.704500px;}
.x1a{left:67.860000px;}
.x1{left:75.600000px;}
.xb{left:76.845000px;}
.x16{left:79.560000px;}
.x26{left:95.976000px;}
.xa{left:98.985000px;}
.x27{left:103.546500px;}
.x8{left:122.970000px;}
.x2{left:128.736000px;}
.x7{left:180.225000px;}
.x1c{left:182.370000px;}
.xe{left:219.445500px;}
.x9{left:272.010000px;}
.x1d{left:275.430000px;}
.xf{left:328.395000px;}
.x5{left:340.815000px;}
.x22{left:369.435000px;}
.x28{left:432.255000px;}
.x1e{left:452.775000px;}
.x3{left:459.075000px;}
.x6{left:485.565000px;}
.x13{left:494.745000px;}
.x12{left:500.505000px;}
.x24{left:505.905000px;}
.x14{left:508.425000px;}
.x11{left:509.865000px;}
.x10{left:515.415000px;}
.x25{left:539.565000px;}
.x23{left:546.945000px;}
.x29{left:561.000000px;}
.x17{left:593.925000px;}
.x18{left:598.605000px;}
.x1f{left:630.105000px;}
.x15{left:646.125000px;}
.x19{left:666.825000px;}
.x2a{left:694.050000px;}
.x20{left:723.930000px;}
.x21{left:780.090000px;}
.x4{left:842.550000px;}
@media print{
.v5{vertical-align:-46.080000pt;}
.v4{vertical-align:-13.440000pt;}
.v2{vertical-align:-10.880000pt;}
.v0{vertical-align:0.000000pt;}
.v6{vertical-align:5.120000pt;}
.v3{vertical-align:13.440000pt;}
.v1{vertical-align:29.600000pt;}
.ls2f{letter-spacing:-0.597333pt;}
.ls34{letter-spacing:-0.480000pt;}
.lsa{letter-spacing:-0.297067pt;}
.ls23{letter-spacing:-0.202133pt;}
.ls17{letter-spacing:-0.153600pt;}
.ls24{letter-spacing:-0.135467pt;}
.lsc{letter-spacing:-0.099733pt;}
.ls22{letter-spacing:-0.092267pt;}
.lsd{letter-spacing:-0.080000pt;}
.lsb{letter-spacing:-0.061333pt;}
.ls8{letter-spacing:-0.016000pt;}
.ls9{letter-spacing:0.000000pt;}
.ls12{letter-spacing:0.020480pt;}
.ls16{letter-spacing:0.048000pt;}
.ls32{letter-spacing:0.061333pt;}
.ls0{letter-spacing:0.064000pt;}
.ls2b{letter-spacing:0.079467pt;}
.ls1e{letter-spacing:0.089600pt;}
.ls2c{letter-spacing:0.094933pt;}
.lse{letter-spacing:0.096000pt;}
.ls1f{letter-spacing:0.110080pt;}
.ls25{letter-spacing:0.130667pt;}
.ls2d{letter-spacing:0.149760pt;}
.ls19{letter-spacing:0.153600pt;}
.ls4{letter-spacing:0.160000pt;}
.ls20{letter-spacing:0.181760pt;}
.ls18{letter-spacing:0.181867pt;}
.ls6{letter-spacing:0.192000pt;}
.ls1{letter-spacing:0.224000pt;}
.ls1b{letter-spacing:0.232960pt;}
.ls2a{letter-spacing:0.235733pt;}
.ls7{letter-spacing:0.256000pt;}
.ls26{letter-spacing:0.271467pt;}
.ls29{letter-spacing:0.281600pt;}
.ls2{letter-spacing:0.288000pt;}
.ls1a{letter-spacing:0.291840pt;}
.ls1d{letter-spacing:0.309760pt;}
.ls13{letter-spacing:0.313600pt;}
.ls3{letter-spacing:0.320000pt;}
.ls11{letter-spacing:0.343040pt;}
.ls21{letter-spacing:0.417280pt;}
.ls28{letter-spacing:3.200000pt;}
.ls15{letter-spacing:7.006720pt;}
.ls30{letter-spacing:9.696000pt;}
.ls27{letter-spacing:22.886400pt;}
.ls31{letter-spacing:34.080000pt;}
.ls2e{letter-spacing:36.576000pt;}
.ls14{letter-spacing:58.726400pt;}
.ls10{letter-spacing:64.911360pt;}
.lsf{letter-spacing:67.381760pt;}
.ls33{letter-spacing:118.010027pt;}
.ls1c{letter-spacing:152.719360pt;}
.ls5{letter-spacing:373.920000pt;}
.ws5{word-spacing:-42.880000pt;}
.wsb{word-spacing:-17.520000pt;}
.ws11{word-spacing:-14.720000pt;}
.wse{word-spacing:-13.536000pt;}
.wsd{word-spacing:-13.440000pt;}
.wsc{word-spacing:-13.344000pt;}
.ws16{word-spacing:-13.235200pt;}
.ws17{word-spacing:-13.189333pt;}
.ws14{word-spacing:-13.043200pt;}
.ws15{word-spacing:-13.033067pt;}
.ws1a{word-spacing:-13.014933pt;}
.ws8{word-spacing:-12.953600pt;}
.ws9{word-spacing:-12.892267pt;}
.ws13{word-spacing:-12.861333pt;}
.ws7{word-spacing:-12.656533pt;}
.ws18{word-spacing:-12.000000pt;}
.ws2{word-spacing:-10.848000pt;}
.ws4{word-spacing:-10.816000pt;}
.ws3{word-spacing:-10.784000pt;}
.ws10{word-spacing:-10.624000pt;}
.ws1{word-spacing:-10.560000pt;}
.ws0{word-spacing:-10.544000pt;}
.ws12{word-spacing:-8.166400pt;}
.wsa{word-spacing:-8.066667pt;}
.ws6{word-spacing:-7.040000pt;}
.wsf{word-spacing:0.000000pt;}
.ws19{word-spacing:123.056000pt;}
._2b{margin-left:-176.000000pt;}
._3f{margin-left:-69.977600pt;}
._40{margin-left:-64.406400pt;}
._32{margin-left:-44.114133pt;}
._3{margin-left:-33.687040pt;}
._41{margin-left:-28.640000pt;}
._29{margin-left:-7.422507pt;}
._3a{margin-left:-1.853653pt;}
._1{margin-left:-0.960000pt;}
._0{width:0.954667pt;}
._f{width:2.388907pt;}
._13{width:4.139520pt;}
._14{width:5.149653pt;}
._d{width:6.064640pt;}
._e{width:7.726507pt;}
._9{width:8.655360pt;}
._a{width:9.891840pt;}
._10{width:11.486933pt;}
._1b{width:13.008000pt;}
._2{width:13.964160pt;}
._1a{width:15.367680pt;}
._c{width:17.157120pt;}
._b{width:18.129920pt;}
._4{width:19.200000pt;}
._1c{width:20.318720pt;}
._1e{width:21.255680pt;}
._1d{width:22.192853pt;}
._15{width:23.321387pt;}
._27{width:24.506880pt;}
._19{width:25.789440pt;}
._18{width:26.867200pt;}
._20{width:27.952640pt;}
._21{width:29.616640pt;}
._30{width:31.088640pt;}
._12{width:32.148480pt;}
._36{width:33.090560pt;}
._2f{width:34.057387pt;}
._1f{width:35.138560pt;}
._17{width:36.070400pt;}
._16{width:37.035520pt;}
._2a{width:37.998080pt;}
._2d{width:39.155200pt;}
._2e{width:40.115200pt;}
._11{width:41.528320pt;}
._5{width:42.741760pt;}
._6{width:44.234667pt;}
._8{width:46.927360pt;}
._7{width:48.163840pt;}
._35{width:49.858560pt;}
._28{width:50.754560pt;}
._3d{width:51.686400pt;}
._42{width:52.605440pt;}
._33{width:54.640640pt;}
._34{width:55.541760pt;}
._3c{width:56.860160pt;}
._26{width:58.649600pt;}
._22{width:59.822080pt;}
._31{width:66.240000pt;}
._39{width:67.545600pt;}
._25{width:71.303680pt;}
._23{width:79.664640pt;}
._24{width:80.606720pt;}
._3e{width:88.128000pt;}
._44{width:91.110613pt;}
._38{width:95.815680pt;}
._37{width:96.857600pt;}
._3b{width:102.451200pt;}
._43{width:150.638293pt;}
._2c{width:161.408000pt;}
.fsb{font-size:5.120000pt;}
.fs7{font-size:26.880000pt;}
.fs6{font-size:32.000000pt;}
.fs9{font-size:37.120000pt;}
.fs5{font-size:42.880000pt;}
.fs0{font-size:48.000000pt;}
.fs2{font-size:53.120000pt;}
.fs8{font-size:58.880000pt;}
.fsc{font-size:62.064349pt;}
.fs1{font-size:64.000000pt;}
.fsa{font-size:80.000000pt;}
.fs4{font-size:90.880000pt;}
.fs3{font-size:96.000000pt;}
.y4d{bottom:-14.400000pt;}
.y0{bottom:0.000000pt;}
.y6e{bottom:2.720000pt;}
.y5c{bottom:2.880000pt;}
.y19e{bottom:3.186667pt;}
.y1a3{bottom:3.193333pt;}
.y127{bottom:3.360000pt;}
.y125{bottom:4.320000pt;}
.y131{bottom:5.600000pt;}
.y133{bottom:6.080000pt;}
.y129{bottom:10.560000pt;}
.y137{bottom:12.160000pt;}
.y4c{bottom:14.240000pt;}
.y4b{bottom:15.840000pt;}
.y6d{bottom:16.800000pt;}
.y5b{bottom:17.120000pt;}
.y4a{bottom:17.280000pt;}
.y19a{bottom:19.186667pt;}
.y1a0{bottom:19.188000pt;}
.y18e{bottom:19.200000pt;}
.y191{bottom:19.226667pt;}
.y195{bottom:19.360000pt;}
.y49{bottom:20.320000pt;}
.y19d{bottom:20.466667pt;}
.y1a2{bottom:20.473333pt;}
.y123{bottom:20.480000pt;}
.y132{bottom:22.720000pt;}
.y130{bottom:22.880000pt;}
.y128{bottom:27.840000pt;}
.y121{bottom:29.120000pt;}
.y136{bottom:29.440000pt;}
.y48{bottom:30.560000pt;}
.y6c{bottom:30.880000pt;}
.y5a{bottom:31.226667pt;}
.y193{bottom:36.480000pt;}
.y190{bottom:36.506667pt;}
.y122{bottom:37.760000pt;}
.y12d{bottom:37.800000pt;}
.y6b{bottom:44.960000pt;}
.y59{bottom:45.306667pt;}
.y135{bottom:46.560000pt;}
.ya{bottom:49.760000pt;}
.y70{bottom:50.240000pt;}
.y47{bottom:54.080000pt;}
.y126{bottom:54.880000pt;}
.y12c{bottom:54.920000pt;}
.y6a{bottom:59.040000pt;}
.y58{bottom:59.386667pt;}
.y9{bottom:63.872000pt;}
.y57{bottom:70.746667pt;}
.y11f{bottom:71.872000pt;}
.y118{bottom:72.992000pt;}
.y69{bottom:73.146667pt;}
.y46{bottom:76.160000pt;}
.y1a4{bottom:76.992000pt;}
.y8{bottom:77.952000pt;}
.y176{bottom:79.072000pt;}
.y100{bottom:79.552000pt;}
.y163{bottom:82.432000pt;}
.y9f{bottom:87.072000pt;}
.y68{bottom:87.226667pt;}
.y56{bottom:87.546667pt;}
.y11e{bottom:88.992000pt;}
.y117{bottom:90.272000pt;}
.ydf{bottom:90.752000pt;}
.y7{bottom:92.032000pt;}
.y1a1{bottom:92.358667pt;}
.y45{bottom:92.986667pt;}
.y175{bottom:95.232000pt;}
.ybf{bottom:96.672000pt;}
.y162{bottom:99.552000pt;}
.y67{bottom:101.306667pt;}
.y55{bottom:101.626667pt;}
.y9e{bottom:104.352000pt;}
.y6{bottom:106.112000pt;}
.y11d{bottom:106.272000pt;}
.y116{bottom:107.392000pt;}
.yde{bottom:107.872000pt;}
.y174{bottom:111.552000pt;}
.ybe{bottom:113.952000pt;}
.y66{bottom:115.386667pt;}
.y54{bottom:115.706667pt;}
.y161{bottom:116.672000pt;}
.y5{bottom:120.192000pt;}
.y9d{bottom:121.472000pt;}
.y11c{bottom:123.392000pt;}
.y115{bottom:124.672000pt;}
.ydd{bottom:125.152000pt;}
.y173{bottom:127.712000pt;}
.y19f{bottom:128.038667pt;}
.y65{bottom:129.466667pt;}
.y53{bottom:129.626667pt;}
.yff{bottom:129.952000pt;}
.ybd{bottom:131.072000pt;}
.y160{bottom:133.946667pt;}
.y4{bottom:134.266667pt;}
.y9c{bottom:138.746667pt;}
.y11b{bottom:140.666667pt;}
.y52{bottom:140.986667pt;}
.ydc{bottom:142.266667pt;}
.y64{bottom:143.386667pt;}
.yfe{bottom:147.066667pt;}
.y3{bottom:148.346667pt;}
.y51{bottom:150.266667pt;}
.y15f{bottom:151.066667pt;}
.y9b{bottom:155.866667pt;}
.y63{bottom:157.466667pt;}
.y114{bottom:157.786667pt;}
.y172{bottom:158.266667pt;}
.y50{bottom:159.546667pt;}
.y19c{bottom:162.600000pt;}
.ybc{bottom:165.466667pt;}
.y15e{bottom:168.346667pt;}
.y3b{bottom:170.266667pt;}
.y62{bottom:171.546667pt;}
.y9a{bottom:173.146667pt;}
.y113{bottom:175.066667pt;}
.y4f{bottom:175.226667pt;}
.ydb{bottom:176.666667pt;}
.yfd{bottom:180.346667pt;}
.ybb{bottom:182.586667pt;}
.y61{bottom:182.906667pt;}
.y15d{bottom:185.466667pt;}
.y3a{bottom:187.386667pt;}
.y99{bottom:190.266667pt;}
.y171{bottom:191.546667pt;}
.y60{bottom:192.186667pt;}
.yda{bottom:193.946667pt;}
.yfc{bottom:197.466667pt;}
.y19b{bottom:198.280000pt;}
.y5f{bottom:201.466667pt;}
.y15c{bottom:202.746667pt;}
.y39{bottom:204.666667pt;}
.y98{bottom:207.546667pt;}
.y170{bottom:208.666667pt;}
.y112{bottom:209.306667pt;}
.yd9{bottom:211.066667pt;}
.yfb{bottom:214.586667pt;}
.yba{bottom:215.866667pt;}
.y5e{bottom:216.986667pt;}
.y15b{bottom:219.866667pt;}
.y38{bottom:221.786667pt;}
.y97{bottom:224.666667pt;}
.y16f{bottom:225.946667pt;}
.y111{bottom:226.586667pt;}
.yd8{bottom:228.346667pt;}
.y199{bottom:232.840000pt;}
.y15a{bottom:237.146667pt;}
.y43{bottom:237.786667pt;}
.y37{bottom:239.066667pt;}
.y96{bottom:241.946667pt;}
.y16e{bottom:243.066667pt;}
.y110{bottom:243.706667pt;}
.yd7{bottom:245.466667pt;}
.yfa{bottom:247.866667pt;}
.yb9{bottom:248.986667pt;}
.y159{bottom:254.266667pt;}
.y42{bottom:255.066667pt;}
.y36{bottom:256.186667pt;}
.y95{bottom:259.066667pt;}
.y10f{bottom:260.986667pt;}
.yf9{bottom:264.986667pt;}
.yb8{bottom:266.586667pt;}
.y198{bottom:267.400000pt;}
.y158{bottom:271.546667pt;}
.y41{bottom:272.186667pt;}
.y35{bottom:273.466667pt;}
.y94{bottom:276.346667pt;}
.y10e{bottom:278.106667pt;}
.yd6{bottom:278.586667pt;}
.yf8{bottom:282.306667pt;}
.yb7{bottom:283.426667pt;}
.y157{bottom:288.706667pt;}
.y40{bottom:289.506667pt;}
.y34{bottom:290.626667pt;}
.y93{bottom:293.506667pt;}
.y10d{bottom:295.426667pt;}
.yf7{bottom:299.746667pt;}
.yb6{bottom:300.706667pt;}
.y197{bottom:301.826667pt;}
.y156{bottom:305.986667pt;}
.y3f{bottom:306.626667pt;}
.y33{bottom:307.906667pt;}
.y92{bottom:310.626667pt;}
.yd5{bottom:311.906667pt;}
.y10c{bottom:312.546667pt;}
.y155{bottom:323.106667pt;}
.y3e{bottom:323.906667pt;}
.y32{bottom:325.026667pt;}
.y91{bottom:327.906667pt;}
.yd4{bottom:329.026667pt;}
.y10b{bottom:329.826667pt;}
.yf6{bottom:332.706667pt;}
.yb5{bottom:333.826667pt;}
.y196{bottom:336.386667pt;}
.y154{bottom:340.386667pt;}
.y3d{bottom:341.026667pt;}
.y16d{bottom:343.746667pt;}
.y90{bottom:345.026667pt;}
.yd3{bottom:346.306667pt;}
.y10a{bottom:346.946667pt;}
.yf5{bottom:349.826667pt;}
.y153{bottom:357.506667pt;}
.y31{bottom:358.306667pt;}
.y8f{bottom:362.306667pt;}
.yd2{bottom:363.426667pt;}
.y109{bottom:364.226667pt;}
.yb4{bottom:367.106667pt;}
.y152{bottom:374.626667pt;}
.y30{bottom:375.426667pt;}
.y16c{bottom:378.306667pt;}
.y108{bottom:381.346667pt;}
.yb3{bottom:384.226667pt;}
.y194{bottom:388.066667pt;}
.y3c{bottom:392.546667pt;}
.y2f{bottom:392.866667pt;}
.y8e{bottom:395.426667pt;}
.yd1{bottom:396.706667pt;}
.y107{bottom:398.626667pt;}
.yf4{bottom:401.506667pt;}
.y151{bottom:407.906667pt;}
.y2e{bottom:409.826667pt;}
.y16b{bottom:411.426667pt;}
.yd0{bottom:413.826667pt;}
.y106{bottom:415.746667pt;}
.yb2{bottom:417.826667pt;}
.yf3{bottom:418.626667pt;}
.y2d{bottom:423.746667pt;}
.y150{bottom:425.026667pt;}
.y8d{bottom:428.706667pt;}
.ycf{bottom:431.106667pt;}
.y11a{bottom:431.746667pt;}
.y105{bottom:433.026667pt;}
.yb1{bottom:434.626667pt;}
.y5d{bottom:435.906667pt;}
.y192{bottom:439.906667pt;}
.y14f{bottom:442.306667pt;}
.y2c{bottom:442.466667pt;}
.y8c{bottom:445.826667pt;}
.yce{bottom:448.226667pt;}
.y119{bottom:449.026667pt;}
.y2b{bottom:450.306667pt;}
.yb0{bottom:451.906667pt;}
.yf2{bottom:453.026667pt;}
.y2a{bottom:458.146667pt;}
.y14e{bottom:459.426667pt;}
.y8b{bottom:463.106667pt;}
.y29{bottom:465.986667pt;}
.y104{bottom:466.146667pt;}
.yf1{bottom:470.306667pt;}
.y28{bottom:473.826667pt;}
.y14d{bottom:476.706667pt;}
.y4e{bottom:477.666667pt;}
.y8a{bottom:480.226667pt;}
.ycd{bottom:481.506667pt;}
.y27{bottom:481.666667pt;}
.yaf{bottom:485.346667pt;}
.yf0{bottom:487.426667pt;}
.y26{bottom:491.426667pt;}
.y18f{bottom:491.586667pt;}
.y14c{bottom:493.826667pt;}
.y16a{bottom:496.226667pt;}
.y89{bottom:497.506667pt;}
.ycc{bottom:498.626667pt;}
.y103{bottom:499.586667pt;}
.yae{bottom:502.306667pt;}
.yef{bottom:504.546667pt;}
.y21{bottom:509.533333pt;}
.y14b{bottom:511.133333pt;}
.y25{bottom:513.373333pt;}
.y134{bottom:513.693333pt;}
.y88{bottom:514.653333pt;}
.ycb{bottom:515.933333pt;}
.y20{bottom:525.213333pt;}
.y14a{bottom:528.253333pt;}
.y169{bottom:530.653333pt;}
.y87{bottom:531.933333pt;}
.y24{bottom:532.093333pt;}
.yca{bottom:533.053333pt;}
.yad{bottom:535.773333pt;}
.yee{bottom:537.853333pt;}
.y1f{bottom:540.893333pt;}
.y18d{bottom:545.053333pt;}
.y149{bottom:545.533333pt;}
.y23{bottom:550.813333pt;}
.yac{bottom:552.573333pt;}
.y1e{bottom:556.573333pt;}
.y148{bottom:562.653333pt;}
.y168{bottom:563.933333pt;}
.y86{bottom:565.053333pt;}
.yc9{bottom:566.333333pt;}
.y22{bottom:569.533333pt;}
.yab{bottom:569.853333pt;}
.yed{bottom:570.973333pt;}
.y1d{bottom:572.093333pt;}
.y147{bottom:579.933333pt;}
.y167{bottom:581.053333pt;}
.y85{bottom:582.333333pt;}
.yc8{bottom:583.453333pt;}
.y12f{bottom:583.773333pt;}
.y1c{bottom:587.773333pt;}
.yec{bottom:588.253333pt;}
.y146{bottom:597.053333pt;}
.y166{bottom:598.333333pt;}
.y18c{bottom:598.813333pt;}
.y84{bottom:599.453333pt;}
.yc7{bottom:600.573333pt;}
.yaa{bottom:602.973333pt;}
.y1b{bottom:603.453333pt;}
.y145{bottom:614.333333pt;}
.y165{bottom:615.453333pt;}
.y83{bottom:616.573333pt;}
.yc6{bottom:617.853333pt;}
.y1a{bottom:618.973333pt;}
.yeb{bottom:621.373333pt;}
.y12e{bottom:623.453333pt;}
.y144{bottom:631.453333pt;}
.y164{bottom:632.573333pt;}
.y82{bottom:633.853333pt;}
.y18b{bottom:634.493333pt;}
.y19{bottom:634.653333pt;}
.yc5{bottom:634.973333pt;}
.ya9{bottom:636.253333pt;}
.yea{bottom:638.653333pt;}
.y143{bottom:648.573333pt;}
.y81{bottom:650.973333pt;}
.yc4{bottom:652.253333pt;}
.ya8{bottom:653.373333pt;}
.y18a{bottom:653.533333pt;}
.y18{bottom:663.453333pt;}
.y142{bottom:665.853333pt;}
.y80{bottom:668.253333pt;}
.yc3{bottom:669.373333pt;}
.y189{bottom:669.533333pt;}
.ye9{bottom:671.773333pt;}
.y141{bottom:682.973333pt;}
.y17{bottom:684.573333pt;}
.y7f{bottom:685.373333pt;}
.y188{bottom:685.693333pt;}
.ya7{bottom:686.653333pt;}
.ye8{bottom:689.053333pt;}
.y12b{bottom:692.893333pt;}
.y16{bottom:698.653333pt;}
.y140{bottom:700.253333pt;}
.y187{bottom:701.853333pt;}
.y7e{bottom:702.653333pt;}
.ya6{bottom:704.093333pt;}
.y13f{bottom:717.373333pt;}
.y186{bottom:718.013333pt;}
.y7d{bottom:719.773333pt;}
.ye7{bottom:722.173333pt;}
.y15{bottom:726.813333pt;}
.y185{bottom:734.213333pt;}
.y13e{bottom:734.693333pt;}
.y7c{bottom:737.093333pt;}
.ye6{bottom:739.493333pt;}
.y184{bottom:750.373333pt;}
.y13d{bottom:751.813333pt;}
.yc2{bottom:753.093333pt;}
.ya5{bottom:754.213333pt;}
.y12a{bottom:762.373333pt;}
.y14{bottom:762.693333pt;}
.y183{bottom:766.533333pt;}
.y13c{bottom:769.093333pt;}
.y7b{bottom:770.213333pt;}
.ya4{bottom:771.493333pt;}
.ye5{bottom:772.613333pt;}
.y182{bottom:782.853333pt;}
.y13b{bottom:786.213333pt;}
.y7a{bottom:787.493333pt;}
.ya3{bottom:788.613333pt;}
.y13{bottom:789.253333pt;}
.ye4{bottom:789.893333pt;}
.y181{bottom:799.013333pt;}
.y13a{bottom:803.493333pt;}
.y79{bottom:804.613333pt;}
.ye3{bottom:807.013333pt;}
.y180{bottom:815.173333pt;}
.y12{bottom:816.453333pt;}
.y139{bottom:820.613333pt;}
.y78{bottom:821.893333pt;}
.y17f{bottom:831.333333pt;}
.y120{bottom:831.813333pt;}
.y138{bottom:837.893333pt;}
.y77{bottom:839.013333pt;}
.ye2{bottom:840.293333pt;}
.y11{bottom:844.133333pt;}
.y17e{bottom:847.493333pt;}
.ya2{bottom:855.013333pt;}
.y76{bottom:856.293333pt;}
.ye1{bottom:857.413333pt;}
.y17d{bottom:863.653333pt;}
.y44{bottom:864.933333pt;}
.ya1{bottom:872.293333pt;}
.y10{bottom:873.253333pt;}
.y75{bottom:873.413333pt;}
.ye0{bottom:874.533333pt;}
.y17c{bottom:879.813333pt;}
.y124{bottom:881.413333pt;}
.ya0{bottom:889.413333pt;}
.yc1{bottom:890.533333pt;}
.yf{bottom:892.453333pt;}
.y17b{bottom:895.973333pt;}
.y74{bottom:906.533333pt;}
.yc0{bottom:907.813333pt;}
.ye{bottom:911.813333pt;}
.y17a{bottom:912.133333pt;}
.y73{bottom:923.813333pt;}
.y179{bottom:928.453333pt;}
.yd{bottom:931.173333pt;}
.y72{bottom:940.933333pt;}
.y178{bottom:944.613333pt;}
.yc{bottom:950.533333pt;}
.y71{bottom:958.240000pt;}
.y177{bottom:960.800000pt;}
.yb{bottom:969.920000pt;}
.y102{bottom:982.240000pt;}
.y6f{bottom:988.640000pt;}
.y2{bottom:988.800000pt;}
.y101{bottom:1002.560000pt;}
.y1{bottom:1002.720000pt;}
.h10{height:3.412500pt;}
.h11{height:3.982500pt;}
.hf{height:17.915625pt;}
.ha{height:18.847500pt;}
.h1f{height:19.200000pt;}
.h8{height:22.776250pt;}
.h2c{height:33.106667pt;}
.h2f{height:33.113333pt;}
.h27{height:33.120000pt;}
.h2b{height:33.138667pt;}
.h2a{height:33.266667pt;}
.h1{height:33.656250pt;}
.h3{height:33.937500pt;}
.h2e{height:34.386667pt;}
.h30{height:34.393333pt;}
.h9{height:37.246250pt;}
.h22{height:39.040000pt;}
.h18{height:41.141250pt;}
.h1a{height:41.256250pt;}
.hb{height:41.285000pt;}
.h19{height:41.366131pt;}
.h16{height:41.630000pt;}
.h17{height:41.941923pt;}
.h2{height:44.875000pt;}
.h24{height:46.405000pt;}
.h15{height:47.109375pt;}
.h20{height:48.960000pt;}
.h26{height:49.336436pt;}
.h25{height:50.062500pt;}
.h29{height:50.386667pt;}
.h28{height:50.426667pt;}
.h4{height:52.134375pt;}
.he{height:56.093750pt;}
.hc{height:60.519362pt;}
.h2d{height:61.295000pt;}
.h1c{height:61.410000pt;}
.h12{height:62.812500pt;}
.h6{height:63.722500pt;}
.h1b{height:63.792371pt;}
.h7{height:64.500000pt;}
.h1d{height:64.609957pt;}
.h1e{height:68.800000pt;}
.h21{height:68.832000pt;}
.h23{height:69.440000pt;}
.h5{height:94.218750pt;}
.hd{height:104.186667pt;}
.h13{height:187.866667pt;}
.h14{height:229.626667pt;}
.h0{height:1056.000000pt;}
.wa{width:46.560000pt;}
.w9{width:49.280000pt;}
.wd{width:73.120000pt;}
.wc{width:73.440000pt;}
.w5{width:82.080000pt;}
.w8{width:82.752000pt;}
.wb{width:82.912000pt;}
.w11{width:91.040000pt;}
.w4{width:101.152000pt;}
.w14{width:107.186667pt;}
.w12{width:112.992000pt;}
.w13{width:116.818667pt;}
.w7{width:156.826667pt;}
.w6{width:156.986667pt;}
.w10{width:198.577333pt;}
.w2{width:204.546667pt;}
.w15{width:225.453333pt;}
.w3{width:467.733333pt;}
.w1{width:483.760000pt;}
.wf{width:632.080000pt;}
.we{width:679.653333pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x1b{left:6.880000pt;}
.xc{left:9.586667pt;}
.xd{left:58.404000pt;}
.x1a{left:60.320000pt;}
.x1{left:67.200000pt;}
.xb{left:68.306667pt;}
.x16{left:70.720000pt;}
.x26{left:85.312000pt;}
.xa{left:87.986667pt;}
.x27{left:92.041333pt;}
.x8{left:109.306667pt;}
.x2{left:114.432000pt;}
.x7{left:160.200000pt;}
.x1c{left:162.106667pt;}
.xe{left:195.062667pt;}
.x9{left:241.786667pt;}
.x1d{left:244.826667pt;}
.xf{left:291.906667pt;}
.x5{left:302.946667pt;}
.x22{left:328.386667pt;}
.x28{left:384.226667pt;}
.x1e{left:402.466667pt;}
.x3{left:408.066667pt;}
.x6{left:431.613333pt;}
.x13{left:439.773333pt;}
.x12{left:444.893333pt;}
.x24{left:449.693333pt;}
.x14{left:451.933333pt;}
.x11{left:453.213333pt;}
.x10{left:458.146667pt;}
.x25{left:479.613333pt;}
.x23{left:486.173333pt;}
.x29{left:498.666667pt;}
.x17{left:527.933333pt;}
.x18{left:532.093333pt;}
.x1f{left:560.093333pt;}
.x15{left:574.333333pt;}
.x19{left:592.733333pt;}
.x2a{left:616.933333pt;}
.x20{left:643.493333pt;}
.x21{left:693.413333pt;}
.x4{left:748.933333pt;}
}




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