
    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_40c8b16403cc3e6f927c4580.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.938477;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_b446d5b1fe21c87dc2cdf861.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.748047;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_cde126f22fedda28bb5068bb.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_0250ec92fd33ef5e77af66b5.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_e9799f6ee7f174e0b8088166.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.106934;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_bbf7301d72cb2416178f6b39.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.112305;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_f50797dd04d6b603c3905b35.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_9f9e4e7d623b1f68fefa2dea.woff2')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_36bd58f786a5514984cfb1ac.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.893066;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_8c38f6a109d6c2079241879d.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_05fc00a38edb3b8f59284835.woff2')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_991a1d59f7fa008ab28dbe86.woff2')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_9c836c310a91442b42c299ff.woff2')format("woff");}.ffd{font-family:ffd;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;}
.m1{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,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);}
.m2{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:16.560000px;}
.v3{vertical-align:18.000000px;}
.v2{vertical-align:27.360000px;}
.v1{vertical-align:33.120000px;}
.ls16{letter-spacing:-1.386000px;}
.lse{letter-spacing:-1.134000px;}
.ls8{letter-spacing:-0.540000px;}
.ls1c{letter-spacing:-0.413400px;}
.lsd{letter-spacing:-0.360000px;}
.ls30{letter-spacing:-0.324000px;}
.ls33{letter-spacing:-0.220800px;}
.ls17{letter-spacing:-0.206400px;}
.ls2f{letter-spacing:-0.193800px;}
.lsa{letter-spacing:-0.100200px;}
.ls32{letter-spacing:-0.054720px;}
.ls9{letter-spacing:-0.053280px;}
.ls31{letter-spacing:-0.027360px;}
.ls5{letter-spacing:0.000000px;}
.ls1f{letter-spacing:0.012960px;}
.ls12{letter-spacing:0.053280px;}
.ls2e{letter-spacing:0.054720px;}
.ls15{letter-spacing:0.097800px;}
.ls4{letter-spacing:0.106560px;}
.ls7{letter-spacing:0.106800px;}
.ls29{letter-spacing:0.113760px;}
.ls10{letter-spacing:0.135600px;}
.ls3{letter-spacing:0.180000px;}
.ls24{letter-spacing:0.216576px;}
.ls34{letter-spacing:0.252000px;}
.lsc{letter-spacing:0.259800px;}
.ls1{letter-spacing:0.259920px;}
.ls23{letter-spacing:0.270000px;}
.ls28{letter-spacing:0.288000px;}
.ls2{letter-spacing:0.298800px;}
.ls1b{letter-spacing:0.305400px;}
.ls1a{letter-spacing:0.312000px;}
.ls27{letter-spacing:0.324000px;}
.ls0{letter-spacing:0.360000px;}
.ls20{letter-spacing:0.439920px;}
.ls6{letter-spacing:0.666000px;}
.lsb{letter-spacing:0.900000px;}
.lsf{letter-spacing:0.978000px;}
.ls25{letter-spacing:1.080000px;}
.ls26{letter-spacing:1.620000px;}
.ls11{letter-spacing:3.060000px;}
.ls18{letter-spacing:5.220000px;}
.ls2a{letter-spacing:7.380000px;}
.ls2d{letter-spacing:8.100000px;}
.ls2b{letter-spacing:8.820000px;}
.ls2c{letter-spacing:9.540000px;}
.ls1d{letter-spacing:13.140000px;}
.ls22{letter-spacing:13.860000px;}
.ls14{letter-spacing:18.900000px;}
.ls21{letter-spacing:19.620000px;}
.ls13{letter-spacing:21.780000px;}
.ls19{letter-spacing:28.260000px;}
.ls1e{letter-spacing:98.952960px;}
.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;}
}
.ws12{word-spacing:-59.760000px;}
.ws1{word-spacing:-48.240000px;}
.ws0{word-spacing:-23.976000px;}
.ws13{word-spacing:-16.865400px;}
.ws18{word-spacing:-16.020000px;}
.ws2{word-spacing:-15.606000px;}
.ws3{word-spacing:-15.300000px;}
.ws11{word-spacing:-15.252000px;}
.ws6{word-spacing:-15.238800px;}
.ws10{word-spacing:-15.199800px;}
.ws4{word-spacing:-15.046800px;}
.wse{word-spacing:-14.993280px;}
.ws5{word-spacing:-14.940000px;}
.ws7{word-spacing:-14.886720px;}
.ws15{word-spacing:-14.580000px;}
.ws14{word-spacing:-14.526600px;}
.ws24{word-spacing:-14.400000px;}
.ws1e{word-spacing:-14.274720px;}
.ws1d{word-spacing:-14.220000px;}
.ws21{word-spacing:-14.192640px;}
.ws22{word-spacing:-14.165280px;}
.ws1f{word-spacing:-14.026200px;}
.ws23{word-spacing:-13.999200px;}
.wsa{word-spacing:-13.860000px;}
.wsc{word-spacing:-13.806000px;}
.wsf{word-spacing:-13.554000px;}
.ws8{word-spacing:-13.500000px;}
.ws9{word-spacing:-13.140000px;}
.ws19{word-spacing:-11.880000px;}
.wsb{word-spacing:-9.720000px;}
.ws25{word-spacing:-9.252000px;}
.ws17{word-spacing:-8.870400px;}
.ws20{word-spacing:-8.676000px;}
.ws1c{word-spacing:-7.920000px;}
.wsd{word-spacing:0.000000px;}
.ws16{word-spacing:36.039840px;}
.ws1b{word-spacing:45.366000px;}
.ws1a{word-spacing:74.202000px;}
._2e{margin-left:-2.146560px;}
._2{margin-left:-1.126080px;}
._5{width:1.096560px;}
._e{width:2.288880px;}
._f{width:3.358560px;}
._19{width:4.599360px;}
._16{width:5.858640px;}
._14{width:6.981120px;}
._c{width:8.127360px;}
._d{width:9.586080px;}
._15{width:10.637280px;}
._12{width:11.709840px;}
._13{width:13.227840px;}
._17{width:16.493760px;}
._b{width:17.510160px;}
._3{width:18.900000px;}
._8{width:20.297520px;}
._7{width:21.877200px;}
._9{width:23.306400px;}
._a{width:24.390480px;}
._18{width:25.410960px;}
._22{width:27.394560px;}
._21{width:28.660320px;}
._24{width:29.760480px;}
._20{width:30.836160px;}
._2d{width:31.945680px;}
._2f{width:33.530400px;}
._23{width:34.541280px;}
._33{width:35.630640px;}
._25{width:36.696960px;}
._1d{width:38.143200px;}
._6{width:39.508800px;}
._4{width:40.573200px;}
._2b{width:41.772240px;}
._2c{width:42.810240px;}
._31{width:43.889280px;}
._30{width:44.999280px;}
._1b{width:48.076320px;}
._28{width:49.844160px;}
._11{width:50.986560px;}
._10{width:52.050960px;}
._1c{width:54.246000px;}
._1f{width:55.720080px;}
._1e{width:56.802240px;}
._34{width:58.095360px;}
._26{width:62.688240px;}
._27{width:64.182240px;}
._2a{width:65.700000px;}
._32{width:71.046000px;}
._29{width:82.500000px;}
._36{width:124.794720px;}
._37{width:126.135840px;}
._3b{width:134.220960px;}
._3a{width:168.762240px;}
._35{width:170.471520px;}
._1a{width:193.066320px;}
._39{width:242.279760px;}
._38{width:243.376560px;}
._1{width:1074.540000px;}
._0{width:1131.276000px;}
.fc2{color:rgb(0,0,255);}
.fc1{color:transparent;}
.fc0{color:rgb(0,0,0);}
.fs9{font-size:36.000000px;}
.fs6{font-size:38.880000px;}
.fs7{font-size:40.320000px;}
.fs1{font-size:48.240000px;}
.fs4{font-size:54.000000px;}
.fs8{font-size:54.144000px;}
.fsa{font-size:56.880000px;}
.fs3{font-size:59.760000px;}
.fs2{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.fs5{font-size:95.760000px;}
.yf8{bottom:-70.380000px;}
.yf7{bottom:-49.680000px;}
.y9f{bottom:-35.467500px;}
.yf6{bottom:-20.700000px;}
.y9e{bottom:-14.767500px;}
.ye0{bottom:-14.587500px;}
.y0{bottom:0.000000px;}
.yc9{bottom:3.240000px;}
.ye5{bottom:3.420000px;}
.y8c{bottom:3.600000px;}
.y79{bottom:3.780000px;}
.y9d{bottom:5.932500px;}
.ydf{bottom:6.112500px;}
.ycb{bottom:7.020000px;}
.yce{bottom:7.200000px;}
.ycc{bottom:7.380000px;}
.ycf{bottom:7.560000px;}
.y13a{bottom:8.130000px;}
.y75{bottom:11.700000px;}
.ydd{bottom:11.880000px;}
.y7e{bottom:12.060000px;}
.y56{bottom:16.920000px;}
.y7b{bottom:20.520000px;}
.y9a{bottom:20.694000px;}
.y77{bottom:20.700000px;}
.y92{bottom:20.745000px;}
.y7c{bottom:20.880000px;}
.y9b{bottom:21.054000px;}
.y78{bottom:21.060000px;}
.y93{bottom:21.105000px;}
.y112{bottom:22.575000px;}
.yfe{bottom:23.392500px;}
.y157{bottom:25.200000px;}
.yde{bottom:26.092500px;}
.y9c{bottom:26.632500px;}
.y139{bottom:28.110000px;}
.y8b{bottom:37.800000px;}
.y87{bottom:37.830000px;}
.y84{bottom:37.980000px;}
.y82{bottom:38.160000px;}
.y88{bottom:38.190000px;}
.y85{bottom:38.340000px;}
.yfd{bottom:39.052500px;}
.y138{bottom:43.590000px;}
.y100{bottom:44.640000px;}
.y155{bottom:45.540000px;}
.y55{bottom:46.260000px;}
.yfc{bottom:54.532500px;}
.y80{bottom:55.080000px;}
.y96{bottom:55.260000px;}
.y81{bottom:55.440000px;}
.y97{bottom:55.620000px;}
.y3{bottom:57.600000px;}
.y137{bottom:59.250000px;}
.y14d{bottom:62.565000px;}
.y54{bottom:66.090000px;}
.y101{bottom:74.625000px;}
.ye1{bottom:75.276000px;}
.y14a{bottom:76.395000px;}
.y147{bottom:76.530000px;}
.yfb{bottom:79.546500px;}
.y14c{bottom:80.205000px;}
.y14b{bottom:80.310000px;}
.y13e{bottom:82.410000px;}
.y145{bottom:83.190000px;}
.y136{bottom:84.090000px;}
.y53{bottom:86.070000px;}
.y146{bottom:89.895000px;}
.y1d{bottom:90.216000px;}
.y132{bottom:90.756000px;}
.yc6{bottom:93.643500px;}
.yf9{bottom:94.183500px;}
.y143{bottom:95.430000px;}
.y144{bottom:95.910000px;}
.y102{bottom:96.735000px;}
.y13d{bottom:98.925000px;}
.y149{bottom:99.435000px;}
.y72{bottom:101.023500px;}
.yfa{bottom:102.046500px;}
.y148{bottom:104.190000px;}
.y52{bottom:105.870000px;}
.y135{bottom:106.770000px;}
.y1c{bottom:107.316000px;}
.y131{bottom:108.036000px;}
.y36{bottom:109.116000px;}
.y141{bottom:111.270000px;}
.y14e{bottom:114.990000px;}
.y140{bottom:116.490000px;}
.y103{bottom:118.875000px;}
.y1b{bottom:124.596000px;}
.y142{bottom:125.310000px;}
.y130{bottom:125.316000px;}
.y51{bottom:125.670000px;}
.y35{bottom:126.396000px;}
.ydc{bottom:135.576000px;}
.y104{bottom:140.970000px;}
.y1a{bottom:141.876000px;}
.y12f{bottom:142.596000px;}
.y34{bottom:143.676000px;}
.y50{bottom:145.470000px;}
.y99{bottom:146.016000px;}
.y19{bottom:159.150000px;}
.y12e{bottom:159.870000px;}
.y33{bottom:160.950000px;}
.y105{bottom:163.080000px;}
.y4f{bottom:165.270000px;}
.y14f{bottom:167.400000px;}
.y18{bottom:176.430000px;}
.y12d{bottom:177.150000px;}
.y32{bottom:178.050000px;}
.y98{bottom:180.570000px;}
.y106{bottom:185.190000px;}
.y4e{bottom:185.250000px;}
.ydb{bottom:186.510000px;}
.y17{bottom:193.710000px;}
.y12c{bottom:194.250000px;}
.y31{bottom:195.330000px;}
.yff{bottom:196.380000px;}
.y4d{bottom:205.050000px;}
.y107{bottom:207.285000px;}
.y16{bottom:210.810000px;}
.y12b{bottom:211.530000px;}
.yda{bottom:212.070000px;}
.y30{bottom:212.610000px;}
.y95{bottom:214.950000px;}
.y150{bottom:219.780000px;}
.y4c{bottom:224.850000px;}
.y156{bottom:227.550000px;}
.y13f{bottom:228.030000px;}
.y15{bottom:228.090000px;}
.y12a{bottom:228.810000px;}
.y108{bottom:229.395000px;}
.y2f{bottom:229.890000px;}
.yd9{bottom:237.450000px;}
.y4b{bottom:244.650000px;}
.y14{bottom:245.370000px;}
.y129{bottom:246.090000px;}
.y2e{bottom:247.170000px;}
.y113{bottom:249.015000px;}
.y109{bottom:251.490000px;}
.y13{bottom:262.650000px;}
.yd8{bottom:263.010000px;}
.y128{bottom:263.370000px;}
.y2d{bottom:264.270000px;}
.y4a{bottom:264.450000px;}
.y1aa{bottom:266.070000px;}
.y151{bottom:272.190000px;}
.y10a{bottom:273.630000px;}
.y115{bottom:276.405000px;}
.y12{bottom:279.930000px;}
.y127{bottom:280.470000px;}
.y2c{bottom:281.550000px;}
.y176{bottom:282.990000px;}
.y94{bottom:284.070000px;}
.y49{bottom:284.430000px;}
.yd7{bottom:288.570000px;}
.y10b{bottom:295.740000px;}
.y11{bottom:297.210000px;}
.y126{bottom:297.750000px;}
.y2b{bottom:298.830000px;}
.y175{bottom:299.370000px;}
.y1a9{bottom:299.550000px;}
.y48{bottom:304.230000px;}
.y114{bottom:305.820000px;}
.yd6{bottom:313.950000px;}
.y10{bottom:314.310000px;}
.y125{bottom:315.030000px;}
.y174{bottom:315.750000px;}
.y2a{bottom:316.110000px;}
.y1a8{bottom:316.830000px;}
.y10c{bottom:317.850000px;}
.y91{bottom:318.450000px;}
.y47{bottom:324.075000px;}
.y152{bottom:324.615000px;}
.yf{bottom:331.635000px;}
.y173{bottom:332.175000px;}
.y124{bottom:332.355000px;}
.y29{bottom:333.435000px;}
.y1a7{bottom:334.155000px;}
.yd5{bottom:339.555000px;}
.y10d{bottom:339.945000px;}
.y46{bottom:343.875000px;}
.y172{bottom:348.555000px;}
.ye{bottom:348.915000px;}
.y123{bottom:349.635000px;}
.y28{bottom:350.715000px;}
.y1a6{bottom:351.435000px;}
.y90{bottom:353.055000px;}
.y10e{bottom:362.055000px;}
.y171{bottom:364.935000px;}
.yd4{bottom:365.115000px;}
.yd{bottom:366.195000px;}
.y122{bottom:366.915000px;}
.y27{bottom:367.815000px;}
.y45{bottom:368.535000px;}
.y1a5{bottom:368.715000px;}
.y153{bottom:377.025000px;}
.y170{bottom:381.315000px;}
.yc{bottom:383.475000px;}
.y121{bottom:384.015000px;}
.y10f{bottom:384.150000px;}
.y26{bottom:385.095000px;}
.y1a4{bottom:385.995000px;}
.y8f{bottom:387.615000px;}
.y44{bottom:388.155000px;}
.yd3{bottom:390.495000px;}
.y16f{bottom:397.695000px;}
.y13c{bottom:400.245000px;}
.yb{bottom:400.575000px;}
.y120{bottom:401.295000px;}
.y25{bottom:402.375000px;}
.y1a3{bottom:403.095000px;}
.ye3{bottom:404.535000px;}
.y110{bottom:406.260000px;}
.y43{bottom:408.495000px;}
.y16e{bottom:414.075000px;}
.yd2{bottom:416.055000px;}
.ya{bottom:417.855000px;}
.y11f{bottom:418.575000px;}
.y24{bottom:419.655000px;}
.y1a2{bottom:420.375000px;}
.y8e{bottom:421.995000px;}
.y111{bottom:428.370000px;}
.y154{bottom:429.405000px;}
.y16d{bottom:430.455000px;}
.y42{bottom:430.815000px;}
.y9{bottom:435.135000px;}
.y11e{bottom:435.855000px;}
.y23{bottom:436.935000px;}
.y1a1{bottom:437.655000px;}
.yd1{bottom:441.615000px;}
.y16c{bottom:446.835000px;}
.y8d{bottom:447.555000px;}
.y8{bottom:452.415000px;}
.y11d{bottom:453.135000px;}
.y22{bottom:454.215000px;}
.y1a0{bottom:454.935000px;}
.y41{bottom:456.195000px;}
.y16b{bottom:463.215000px;}
.yd0{bottom:466.995000px;}
.y7{bottom:469.695000px;}
.y11c{bottom:470.415000px;}
.y21{bottom:471.315000px;}
.y19f{bottom:472.215000px;}
.y16a{bottom:479.595000px;}
.y40{bottom:481.575000px;}
.y8a{bottom:482.115000px;}
.y6{bottom:486.975000px;}
.y11b{bottom:487.515000px;}
.y20{bottom:488.595000px;}
.y19e{bottom:489.315000px;}
.ycd{bottom:492.555000px;}
.y169{bottom:495.975000px;}
.y5{bottom:504.075000px;}
.y11a{bottom:504.795000px;}
.yc7{bottom:505.321500px;}
.y1f{bottom:505.875000px;}
.y19d{bottom:506.595000px;}
.y3f{bottom:506.955000px;}
.y168{bottom:512.355000px;}
.yca{bottom:518.115000px;}
.y4{bottom:521.355000px;}
.y119{bottom:522.075000px;}
.y1e{bottom:523.155000px;}
.y19c{bottom:523.875000px;}
.y167{bottom:528.735000px;}
.y3e{bottom:529.995000px;}
.y89{bottom:533.775000px;}
.y118{bottom:539.355000px;}
.y19b{bottom:540.615000px;}
.y37{bottom:541.335000px;}
.yc8{bottom:545.115000px;}
.y3d{bottom:545.475000px;}
.y117{bottom:556.635000px;}
.y19a{bottom:556.995000px;}
.y134{bottom:558.285000px;}
.y3c{bottom:560.955000px;}
.y166{bottom:561.495000px;}
.y86{bottom:568.335000px;}
.y116{bottom:573.915000px;}
.y3b{bottom:576.615000px;}
.y165{bottom:577.875000px;}
.y199{bottom:591.195000px;}
.y3a{bottom:592.125000px;}
.y133{bottom:592.815000px;}
.y164{bottom:594.645000px;}
.y39{bottom:607.245000px;}
.y198{bottom:608.505000px;}
.y163{bottom:613.545000px;}
.y83{bottom:620.025000px;}
.y38{bottom:622.725000px;}
.y197{bottom:625.605000px;}
.y162{bottom:630.825000px;}
.y196{bottom:642.525000px;}
.y161{bottom:648.105000px;}
.yb6{bottom:653.505000px;}
.y195{bottom:658.905000px;}
.y160{bottom:665.385000px;}
.yb5{bottom:670.785000px;}
.y7f{bottom:671.865000px;}
.y194{bottom:675.465000px;}
.y15f{bottom:682.665000px;}
.yc5{bottom:684.285000px;}
.yb4{bottom:688.065000px;}
.y193{bottom:691.845000px;}
.y15e{bottom:699.945000px;}
.y13b{bottom:700.560000px;}
.yc4{bottom:701.565000px;}
.yb3{bottom:705.345000px;}
.y192{bottom:708.225000px;}
.y15d{bottom:717.045000px;}
.yc3{bottom:718.845000px;}
.yb2{bottom:722.445000px;}
.y191{bottom:724.605000px;}
.y15c{bottom:734.325000px;}
.yc2{bottom:736.125000px;}
.yb1{bottom:739.725000px;}
.y7d{bottom:740.805000px;}
.y190{bottom:740.985000px;}
.ye2{bottom:742.245000px;}
.yf5{bottom:746.385000px;}
.y15b{bottom:751.605000px;}
.yc1{bottom:753.405000px;}
.yb0{bottom:757.005000px;}
.y18f{bottom:757.365000px;}
.yf4{bottom:765.105000px;}
.y7a{bottom:766.365000px;}
.y15a{bottom:768.885000px;}
.yc0{bottom:770.505000px;}
.y18e{bottom:773.745000px;}
.yaf{bottom:774.285000px;}
.y73{bottom:776.266500px;}
.y159{bottom:786.165000px;}
.yf3{bottom:786.885000px;}
.ybf{bottom:787.785000px;}
.y18d{bottom:790.125000px;}
.yae{bottom:791.565000px;}
.y76{bottom:800.745000px;}
.y158{bottom:803.265000px;}
.ybe{bottom:805.065000px;}
.y18c{bottom:806.505000px;}
.yf2{bottom:808.485000px;}
.yad{bottom:808.665000px;}
.ybd{bottom:822.345000px;}
.y18b{bottom:822.885000px;}
.yac{bottom:827.565000px;}
.yf1{bottom:830.265000px;}
.y74{bottom:836.745000px;}
.y18a{bottom:839.265000px;}
.ybc{bottom:839.625000px;}
.yab{bottom:846.645000px;}
.yf0{bottom:852.045000px;}
.y189{bottom:855.645000px;}
.ybb{bottom:856.905000px;}
.yaa{bottom:863.970000px;}
.y188{bottom:872.070000px;}
.yef{bottom:873.870000px;}
.yba{bottom:874.050000px;}
.ya9{bottom:881.250000px;}
.y187{bottom:888.450000px;}
.yb9{bottom:891.330000px;}
.yee{bottom:895.650000px;}
.ya8{bottom:898.170000px;}
.y186{bottom:904.830000px;}
.yb8{bottom:908.610000px;}
.yed{bottom:917.430000px;}
.y185{bottom:921.210000px;}
.y64{bottom:924.090000px;}
.ya7{bottom:924.810000px;}
.yb7{bottom:925.890000px;}
.y184{bottom:937.590000px;}
.yec{bottom:939.030000px;}
.y71{bottom:941.370000px;}
.ya6{bottom:941.910000px;}
.y63{bottom:943.170000px;}
.y183{bottom:953.970000px;}
.y70{bottom:958.650000px;}
.ya5{bottom:959.190000px;}
.y62{bottom:960.450000px;}
.yeb{bottom:960.810000px;}
.y182{bottom:970.350000px;}
.y6f{bottom:975.930000px;}
.ya4{bottom:976.470000px;}
.y61{bottom:977.550000px;}
.yea{bottom:982.590000px;}
.y181{bottom:986.730000px;}
.y6e{bottom:993.210000px;}
.ya3{bottom:993.750000px;}
.y60{bottom:994.830000px;}
.y180{bottom:1003.110000px;}
.ye9{bottom:1004.370000px;}
.y6d{bottom:1010.310000px;}
.ya2{bottom:1011.030000px;}
.y5f{bottom:1012.110000px;}
.y17f{bottom:1019.490000px;}
.ye8{bottom:1026.150000px;}
.y6c{bottom:1027.590000px;}
.ya1{bottom:1028.310000px;}
.y5e{bottom:1029.390000px;}
.y17e{bottom:1035.870000px;}
.y6b{bottom:1044.870000px;}
.ya0{bottom:1045.410000px;}
.y5d{bottom:1046.670000px;}
.ye7{bottom:1047.750000px;}
.y17d{bottom:1052.250000px;}
.y6a{bottom:1062.150000px;}
.y5c{bottom:1063.770000px;}
.y17c{bottom:1068.630000px;}
.ye6{bottom:1069.530000px;}
.y69{bottom:1079.430000px;}
.y5b{bottom:1081.050000px;}
.y17b{bottom:1085.010000px;}
.ye4{bottom:1092.750000px;}
.y68{bottom:1096.710000px;}
.y5a{bottom:1098.330000px;}
.y17a{bottom:1101.390000px;}
.y67{bottom:1113.810000px;}
.y59{bottom:1115.610000px;}
.y179{bottom:1117.950000px;}
.y66{bottom:1131.120000px;}
.y58{bottom:1132.920000px;}
.y178{bottom:1134.360000px;}
.y65{bottom:1148.400000px;}
.y57{bottom:1150.200000px;}
.y177{bottom:1150.740000px;}
.y2{bottom:1168.200000px;}
.y1{bottom:1189.980000px;}
.h24{height:17.100000px;}
.h22{height:21.600000px;}
.h21{height:21.780000px;}
.h23{height:21.816000px;}
.h1e{height:25.380000px;}
.h14{height:25.560000px;}
.h11{height:25.596000px;}
.h13{height:34.380000px;}
.h12{height:34.560000px;}
.h19{height:34.596000px;}
.h2c{height:37.731445px;}
.h2d{height:37.832062px;}
.h2e{height:37.863281px;}
.h1d{height:38.880000px;}
.h20{height:39.096000px;}
.h27{height:41.756133px;}
.h2f{height:41.802188px;}
.h29{height:41.902031px;}
.h28{height:46.271250px;}
.h33{height:50.992031px;}
.h18{height:51.660000px;}
.h17{height:51.696000px;}
.h16{height:51.840000px;}
.ha{height:52.417969px;}
.h9{height:52.998047px;}
.h1b{height:53.573906px;}
.h8{height:54.421875px;}
.h31{height:55.796836px;}
.h34{height:55.824609px;}
.h32{height:57.324375px;}
.h5{height:58.651172px;}
.h6{height:60.226875px;}
.h35{height:62.674453px;}
.h36{height:62.692031px;}
.hd{height:65.518594px;}
.h30{height:65.698594px;}
.he{height:66.543750px;}
.hf{height:66.663750px;}
.h4{height:66.757500px;}
.h2{height:68.357812px;}
.h15{height:68.940000px;}
.h1a{height:69.120000px;}
.hb{height:69.715898px;}
.h3{height:70.664062px;}
.hc{height:93.936445px;}
.h1f{height:427.035000px;}
.h2b{height:446.040000px;}
.h26{height:519.480000px;}
.h1c{height:527.827500px;}
.h2a{height:574.485000px;}
.h25{height:621.607500px;}
.h7{height:635.325000px;}
.h10{height:798.750000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w4{width:42.516000px;}
.w6{width:95.616000px;}
.w5{width:106.380000px;}
.wf{width:138.276000px;}
.wb{width:143.496000px;}
.wd{width:148.896000px;}
.w9{width:151.590000px;}
.wa{width:167.400000px;}
.we{width:170.100000px;}
.w7{width:495.795000px;}
.w11{width:613.800000px;}
.w13{width:686.160000px;}
.w12{width:742.455000px;}
.w10{width:743.895000px;}
.w2{width:747.315000px;}
.w8{width:754.515000px;}
.wc{width:774.495000px;}
.w3{width:786.195000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1c{left:8.100000px;}
.x12{left:10.080000px;}
.x1b{left:11.700000px;}
.x1d{left:13.140000px;}
.x19{left:15.480000px;}
.x20{left:16.740000px;}
.x16{left:17.820000px;}
.x10{left:19.978500px;}
.x1f{left:21.600000px;}
.x22{left:22.680000px;}
.x1e{left:24.840000px;}
.x14{left:27.360000px;}
.x24{left:32.394000px;}
.x25{left:35.274000px;}
.x23{left:37.254000px;}
.x32{left:39.090000px;}
.x1a{left:40.314000px;}
.x21{left:42.654000px;}
.x2a{left:46.440000px;}
.x28{left:47.700000px;}
.x31{left:49.140000px;}
.xf{left:54.361500px;}
.x34{left:56.010000px;}
.x2c{left:58.530000px;}
.x2b{left:63.000000px;}
.x2f{left:64.261500px;}
.x2d{left:67.905000px;}
.x35{left:70.605000px;}
.x2e{left:71.670000px;}
.x2{left:74.340000px;}
.x38{left:75.600000px;}
.x11{left:77.400000px;}
.x3b{left:81.361500px;}
.x4f{left:84.960000px;}
.xc{left:99.388500px;}
.x4d{left:100.590000px;}
.x3e{left:107.565000px;}
.x3d{left:109.080000px;}
.x13{left:119.916000px;}
.x37{left:141.120000px;}
.x3f{left:142.560000px;}
.x26{left:147.636000px;}
.xe{left:157.348500px;}
.x40{left:174.570000px;}
.x1{left:179.490000px;}
.x18{left:190.470000px;}
.x39{left:193.035000px;}
.x41{left:206.565000px;}
.x15{left:226.290000px;}
.x42{left:238.575000px;}
.xd{left:241.993500px;}
.x4e{left:248.250000px;}
.x43{left:270.540000px;}
.x30{left:297.435000px;}
.x27{left:299.235000px;}
.x44{left:302.550000px;}
.x17{left:321.915000px;}
.x45{left:334.545000px;}
.x46{left:366.555000px;}
.xb{left:373.573500px;}
.x47{left:398.550000px;}
.x7{left:424.903500px;}
.x48{left:430.560000px;}
.x3a{left:438.450000px;}
.x3{left:462.495000px;}
.x29{left:466.815000px;}
.x50{left:473.145000px;}
.x6{left:480.703500px;}
.x4{left:493.843500px;}
.x8{left:511.663500px;}
.x49{left:526.575000px;}
.x4a{left:558.540000px;}
.x4b{left:590.550000px;}
.x33{left:605.805000px;}
.x9{left:609.988500px;}
.x4c{left:622.545000px;}
.xa{left:637.888500px;}
.x5{left:656.968500px;}
.x36{left:679.468500px;}
.x3c{left:714.748500px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:14.720000pt;}
.v3{vertical-align:16.000000pt;}
.v2{vertical-align:24.320000pt;}
.v1{vertical-align:29.440000pt;}
.ls16{letter-spacing:-1.232000pt;}
.lse{letter-spacing:-1.008000pt;}
.ls8{letter-spacing:-0.480000pt;}
.ls1c{letter-spacing:-0.367467pt;}
.lsd{letter-spacing:-0.320000pt;}
.ls30{letter-spacing:-0.288000pt;}
.ls33{letter-spacing:-0.196267pt;}
.ls17{letter-spacing:-0.183467pt;}
.ls2f{letter-spacing:-0.172267pt;}
.lsa{letter-spacing:-0.089067pt;}
.ls32{letter-spacing:-0.048640pt;}
.ls9{letter-spacing:-0.047360pt;}
.ls31{letter-spacing:-0.024320pt;}
.ls5{letter-spacing:0.000000pt;}
.ls1f{letter-spacing:0.011520pt;}
.ls12{letter-spacing:0.047360pt;}
.ls2e{letter-spacing:0.048640pt;}
.ls15{letter-spacing:0.086933pt;}
.ls4{letter-spacing:0.094720pt;}
.ls7{letter-spacing:0.094933pt;}
.ls29{letter-spacing:0.101120pt;}
.ls10{letter-spacing:0.120533pt;}
.ls3{letter-spacing:0.160000pt;}
.ls24{letter-spacing:0.192512pt;}
.ls34{letter-spacing:0.224000pt;}
.lsc{letter-spacing:0.230933pt;}
.ls1{letter-spacing:0.231040pt;}
.ls23{letter-spacing:0.240000pt;}
.ls28{letter-spacing:0.256000pt;}
.ls2{letter-spacing:0.265600pt;}
.ls1b{letter-spacing:0.271467pt;}
.ls1a{letter-spacing:0.277333pt;}
.ls27{letter-spacing:0.288000pt;}
.ls0{letter-spacing:0.320000pt;}
.ls20{letter-spacing:0.391040pt;}
.ls6{letter-spacing:0.592000pt;}
.lsb{letter-spacing:0.800000pt;}
.lsf{letter-spacing:0.869333pt;}
.ls25{letter-spacing:0.960000pt;}
.ls26{letter-spacing:1.440000pt;}
.ls11{letter-spacing:2.720000pt;}
.ls18{letter-spacing:4.640000pt;}
.ls2a{letter-spacing:6.560000pt;}
.ls2d{letter-spacing:7.200000pt;}
.ls2b{letter-spacing:7.840000pt;}
.ls2c{letter-spacing:8.480000pt;}
.ls1d{letter-spacing:11.680000pt;}
.ls22{letter-spacing:12.320000pt;}
.ls14{letter-spacing:16.800000pt;}
.ls21{letter-spacing:17.440000pt;}
.ls13{letter-spacing:19.360000pt;}
.ls19{letter-spacing:25.120000pt;}
.ls1e{letter-spacing:87.958187pt;}
.ws12{word-spacing:-53.120000pt;}
.ws1{word-spacing:-42.880000pt;}
.ws0{word-spacing:-21.312000pt;}
.ws13{word-spacing:-14.991467pt;}
.ws18{word-spacing:-14.240000pt;}
.ws2{word-spacing:-13.872000pt;}
.ws3{word-spacing:-13.600000pt;}
.ws11{word-spacing:-13.557333pt;}
.ws6{word-spacing:-13.545600pt;}
.ws10{word-spacing:-13.510933pt;}
.ws4{word-spacing:-13.374933pt;}
.wse{word-spacing:-13.327360pt;}
.ws5{word-spacing:-13.280000pt;}
.ws7{word-spacing:-13.232640pt;}
.ws15{word-spacing:-12.960000pt;}
.ws14{word-spacing:-12.912533pt;}
.ws24{word-spacing:-12.800000pt;}
.ws1e{word-spacing:-12.688640pt;}
.ws1d{word-spacing:-12.640000pt;}
.ws21{word-spacing:-12.615680pt;}
.ws22{word-spacing:-12.591360pt;}
.ws1f{word-spacing:-12.467733pt;}
.ws23{word-spacing:-12.443733pt;}
.wsa{word-spacing:-12.320000pt;}
.wsc{word-spacing:-12.272000pt;}
.wsf{word-spacing:-12.048000pt;}
.ws8{word-spacing:-12.000000pt;}
.ws9{word-spacing:-11.680000pt;}
.ws19{word-spacing:-10.560000pt;}
.wsb{word-spacing:-8.640000pt;}
.ws25{word-spacing:-8.224000pt;}
.ws17{word-spacing:-7.884800pt;}
.ws20{word-spacing:-7.712000pt;}
.ws1c{word-spacing:-7.040000pt;}
.wsd{word-spacing:0.000000pt;}
.ws16{word-spacing:32.035413pt;}
.ws1b{word-spacing:40.325333pt;}
.ws1a{word-spacing:65.957333pt;}
._2e{margin-left:-1.908053pt;}
._2{margin-left:-1.000960pt;}
._5{width:0.974720pt;}
._e{width:2.034560pt;}
._f{width:2.985387pt;}
._19{width:4.088320pt;}
._16{width:5.207680pt;}
._14{width:6.205440pt;}
._c{width:7.224320pt;}
._d{width:8.520960pt;}
._15{width:9.455360pt;}
._12{width:10.408747pt;}
._13{width:11.758080pt;}
._17{width:14.661120pt;}
._b{width:15.564587pt;}
._3{width:16.800000pt;}
._8{width:18.042240pt;}
._7{width:19.446400pt;}
._9{width:20.716800pt;}
._a{width:21.680427pt;}
._18{width:22.587520pt;}
._22{width:24.350720pt;}
._21{width:25.475840pt;}
._24{width:26.453760pt;}
._20{width:27.409920pt;}
._2d{width:28.396160pt;}
._2f{width:29.804800pt;}
._23{width:30.703360pt;}
._33{width:31.671680pt;}
._25{width:32.619520pt;}
._1d{width:33.905067pt;}
._6{width:35.118933pt;}
._4{width:36.065067pt;}
._2b{width:37.130880pt;}
._2c{width:38.053547pt;}
._31{width:39.012693pt;}
._30{width:39.999360pt;}
._1b{width:42.734507pt;}
._28{width:44.305920pt;}
._11{width:45.321387pt;}
._10{width:46.267520pt;}
._1c{width:48.218667pt;}
._1f{width:49.528960pt;}
._1e{width:50.490880pt;}
._34{width:51.640320pt;}
._26{width:55.722880pt;}
._27{width:57.050880pt;}
._2a{width:58.400000pt;}
._32{width:63.152000pt;}
._29{width:73.333333pt;}
._36{width:110.928640pt;}
._37{width:112.120747pt;}
._3b{width:119.307520pt;}
._3a{width:150.010880pt;}
._35{width:151.530240pt;}
._1a{width:171.614507pt;}
._39{width:215.359787pt;}
._38{width:216.334720pt;}
._1{width:955.146667pt;}
._0{width:1005.578667pt;}
.fs9{font-size:32.000000pt;}
.fs6{font-size:34.560000pt;}
.fs7{font-size:35.840000pt;}
.fs1{font-size:42.880000pt;}
.fs4{font-size:48.000000pt;}
.fs8{font-size:48.128000pt;}
.fsa{font-size:50.560000pt;}
.fs3{font-size:53.120000pt;}
.fs2{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.fs5{font-size:85.120000pt;}
.yf8{bottom:-62.560000pt;}
.yf7{bottom:-44.160000pt;}
.y9f{bottom:-31.526667pt;}
.yf6{bottom:-18.400000pt;}
.y9e{bottom:-13.126667pt;}
.ye0{bottom:-12.966667pt;}
.y0{bottom:0.000000pt;}
.yc9{bottom:2.880000pt;}
.ye5{bottom:3.040000pt;}
.y8c{bottom:3.200000pt;}
.y79{bottom:3.360000pt;}
.y9d{bottom:5.273333pt;}
.ydf{bottom:5.433333pt;}
.ycb{bottom:6.240000pt;}
.yce{bottom:6.400000pt;}
.ycc{bottom:6.560000pt;}
.ycf{bottom:6.720000pt;}
.y13a{bottom:7.226667pt;}
.y75{bottom:10.400000pt;}
.ydd{bottom:10.560000pt;}
.y7e{bottom:10.720000pt;}
.y56{bottom:15.040000pt;}
.y7b{bottom:18.240000pt;}
.y9a{bottom:18.394667pt;}
.y77{bottom:18.400000pt;}
.y92{bottom:18.440000pt;}
.y7c{bottom:18.560000pt;}
.y9b{bottom:18.714667pt;}
.y78{bottom:18.720000pt;}
.y93{bottom:18.760000pt;}
.y112{bottom:20.066667pt;}
.yfe{bottom:20.793333pt;}
.y157{bottom:22.400000pt;}
.yde{bottom:23.193333pt;}
.y9c{bottom:23.673333pt;}
.y139{bottom:24.986667pt;}
.y8b{bottom:33.600000pt;}
.y87{bottom:33.626667pt;}
.y84{bottom:33.760000pt;}
.y82{bottom:33.920000pt;}
.y88{bottom:33.946667pt;}
.y85{bottom:34.080000pt;}
.yfd{bottom:34.713333pt;}
.y138{bottom:38.746667pt;}
.y100{bottom:39.680000pt;}
.y155{bottom:40.480000pt;}
.y55{bottom:41.120000pt;}
.yfc{bottom:48.473333pt;}
.y80{bottom:48.960000pt;}
.y96{bottom:49.120000pt;}
.y81{bottom:49.280000pt;}
.y97{bottom:49.440000pt;}
.y3{bottom:51.200000pt;}
.y137{bottom:52.666667pt;}
.y14d{bottom:55.613333pt;}
.y54{bottom:58.746667pt;}
.y101{bottom:66.333333pt;}
.ye1{bottom:66.912000pt;}
.y14a{bottom:67.906667pt;}
.y147{bottom:68.026667pt;}
.yfb{bottom:70.708000pt;}
.y14c{bottom:71.293333pt;}
.y14b{bottom:71.386667pt;}
.y13e{bottom:73.253333pt;}
.y145{bottom:73.946667pt;}
.y136{bottom:74.746667pt;}
.y53{bottom:76.506667pt;}
.y146{bottom:79.906667pt;}
.y1d{bottom:80.192000pt;}
.y132{bottom:80.672000pt;}
.yc6{bottom:83.238667pt;}
.yf9{bottom:83.718667pt;}
.y143{bottom:84.826667pt;}
.y144{bottom:85.253333pt;}
.y102{bottom:85.986667pt;}
.y13d{bottom:87.933333pt;}
.y149{bottom:88.386667pt;}
.y72{bottom:89.798667pt;}
.yfa{bottom:90.708000pt;}
.y148{bottom:92.613333pt;}
.y52{bottom:94.106667pt;}
.y135{bottom:94.906667pt;}
.y1c{bottom:95.392000pt;}
.y131{bottom:96.032000pt;}
.y36{bottom:96.992000pt;}
.y141{bottom:98.906667pt;}
.y14e{bottom:102.213333pt;}
.y140{bottom:103.546667pt;}
.y103{bottom:105.666667pt;}
.y1b{bottom:110.752000pt;}
.y142{bottom:111.386667pt;}
.y130{bottom:111.392000pt;}
.y51{bottom:111.706667pt;}
.y35{bottom:112.352000pt;}
.ydc{bottom:120.512000pt;}
.y104{bottom:125.306667pt;}
.y1a{bottom:126.112000pt;}
.y12f{bottom:126.752000pt;}
.y34{bottom:127.712000pt;}
.y50{bottom:129.306667pt;}
.y99{bottom:129.792000pt;}
.y19{bottom:141.466667pt;}
.y12e{bottom:142.106667pt;}
.y33{bottom:143.066667pt;}
.y105{bottom:144.960000pt;}
.y4f{bottom:146.906667pt;}
.y14f{bottom:148.800000pt;}
.y18{bottom:156.826667pt;}
.y12d{bottom:157.466667pt;}
.y32{bottom:158.266667pt;}
.y98{bottom:160.506667pt;}
.y106{bottom:164.613333pt;}
.y4e{bottom:164.666667pt;}
.ydb{bottom:165.786667pt;}
.y17{bottom:172.186667pt;}
.y12c{bottom:172.666667pt;}
.y31{bottom:173.626667pt;}
.yff{bottom:174.560000pt;}
.y4d{bottom:182.266667pt;}
.y107{bottom:184.253333pt;}
.y16{bottom:187.386667pt;}
.y12b{bottom:188.026667pt;}
.yda{bottom:188.506667pt;}
.y30{bottom:188.986667pt;}
.y95{bottom:191.066667pt;}
.y150{bottom:195.360000pt;}
.y4c{bottom:199.866667pt;}
.y156{bottom:202.266667pt;}
.y13f{bottom:202.693333pt;}
.y15{bottom:202.746667pt;}
.y12a{bottom:203.386667pt;}
.y108{bottom:203.906667pt;}
.y2f{bottom:204.346667pt;}
.yd9{bottom:211.066667pt;}
.y4b{bottom:217.466667pt;}
.y14{bottom:218.106667pt;}
.y129{bottom:218.746667pt;}
.y2e{bottom:219.706667pt;}
.y113{bottom:221.346667pt;}
.y109{bottom:223.546667pt;}
.y13{bottom:233.466667pt;}
.yd8{bottom:233.786667pt;}
.y128{bottom:234.106667pt;}
.y2d{bottom:234.906667pt;}
.y4a{bottom:235.066667pt;}
.y1aa{bottom:236.506667pt;}
.y151{bottom:241.946667pt;}
.y10a{bottom:243.226667pt;}
.y115{bottom:245.693333pt;}
.y12{bottom:248.826667pt;}
.y127{bottom:249.306667pt;}
.y2c{bottom:250.266667pt;}
.y176{bottom:251.546667pt;}
.y94{bottom:252.506667pt;}
.y49{bottom:252.826667pt;}
.yd7{bottom:256.506667pt;}
.y10b{bottom:262.880000pt;}
.y11{bottom:264.186667pt;}
.y126{bottom:264.666667pt;}
.y2b{bottom:265.626667pt;}
.y175{bottom:266.106667pt;}
.y1a9{bottom:266.266667pt;}
.y48{bottom:270.426667pt;}
.y114{bottom:271.840000pt;}
.yd6{bottom:279.066667pt;}
.y10{bottom:279.386667pt;}
.y125{bottom:280.026667pt;}
.y174{bottom:280.666667pt;}
.y2a{bottom:280.986667pt;}
.y1a8{bottom:281.626667pt;}
.y10c{bottom:282.533333pt;}
.y91{bottom:283.066667pt;}
.y47{bottom:288.066667pt;}
.y152{bottom:288.546667pt;}
.yf{bottom:294.786667pt;}
.y173{bottom:295.266667pt;}
.y124{bottom:295.426667pt;}
.y29{bottom:296.386667pt;}
.y1a7{bottom:297.026667pt;}
.yd5{bottom:301.826667pt;}
.y10d{bottom:302.173333pt;}
.y46{bottom:305.666667pt;}
.y172{bottom:309.826667pt;}
.ye{bottom:310.146667pt;}
.y123{bottom:310.786667pt;}
.y28{bottom:311.746667pt;}
.y1a6{bottom:312.386667pt;}
.y90{bottom:313.826667pt;}
.y10e{bottom:321.826667pt;}
.y171{bottom:324.386667pt;}
.yd4{bottom:324.546667pt;}
.yd{bottom:325.506667pt;}
.y122{bottom:326.146667pt;}
.y27{bottom:326.946667pt;}
.y45{bottom:327.586667pt;}
.y1a5{bottom:327.746667pt;}
.y153{bottom:335.133333pt;}
.y170{bottom:338.946667pt;}
.yc{bottom:340.866667pt;}
.y121{bottom:341.346667pt;}
.y10f{bottom:341.466667pt;}
.y26{bottom:342.306667pt;}
.y1a4{bottom:343.106667pt;}
.y8f{bottom:344.546667pt;}
.y44{bottom:345.026667pt;}
.yd3{bottom:347.106667pt;}
.y16f{bottom:353.506667pt;}
.y13c{bottom:355.773333pt;}
.yb{bottom:356.066667pt;}
.y120{bottom:356.706667pt;}
.y25{bottom:357.666667pt;}
.y1a3{bottom:358.306667pt;}
.ye3{bottom:359.586667pt;}
.y110{bottom:361.120000pt;}
.y43{bottom:363.106667pt;}
.y16e{bottom:368.066667pt;}
.yd2{bottom:369.826667pt;}
.ya{bottom:371.426667pt;}
.y11f{bottom:372.066667pt;}
.y24{bottom:373.026667pt;}
.y1a2{bottom:373.666667pt;}
.y8e{bottom:375.106667pt;}
.y111{bottom:380.773333pt;}
.y154{bottom:381.693333pt;}
.y16d{bottom:382.626667pt;}
.y42{bottom:382.946667pt;}
.y9{bottom:386.786667pt;}
.y11e{bottom:387.426667pt;}
.y23{bottom:388.386667pt;}
.y1a1{bottom:389.026667pt;}
.yd1{bottom:392.546667pt;}
.y16c{bottom:397.186667pt;}
.y8d{bottom:397.826667pt;}
.y8{bottom:402.146667pt;}
.y11d{bottom:402.786667pt;}
.y22{bottom:403.746667pt;}
.y1a0{bottom:404.386667pt;}
.y41{bottom:405.506667pt;}
.y16b{bottom:411.746667pt;}
.yd0{bottom:415.106667pt;}
.y7{bottom:417.506667pt;}
.y11c{bottom:418.146667pt;}
.y21{bottom:418.946667pt;}
.y19f{bottom:419.746667pt;}
.y16a{bottom:426.306667pt;}
.y40{bottom:428.066667pt;}
.y8a{bottom:428.546667pt;}
.y6{bottom:432.866667pt;}
.y11b{bottom:433.346667pt;}
.y20{bottom:434.306667pt;}
.y19e{bottom:434.946667pt;}
.ycd{bottom:437.826667pt;}
.y169{bottom:440.866667pt;}
.y5{bottom:448.066667pt;}
.y11a{bottom:448.706667pt;}
.yc7{bottom:449.174667pt;}
.y1f{bottom:449.666667pt;}
.y19d{bottom:450.306667pt;}
.y3f{bottom:450.626667pt;}
.y168{bottom:455.426667pt;}
.yca{bottom:460.546667pt;}
.y4{bottom:463.426667pt;}
.y119{bottom:464.066667pt;}
.y1e{bottom:465.026667pt;}
.y19c{bottom:465.666667pt;}
.y167{bottom:469.986667pt;}
.y3e{bottom:471.106667pt;}
.y89{bottom:474.466667pt;}
.y118{bottom:479.426667pt;}
.y19b{bottom:480.546667pt;}
.y37{bottom:481.186667pt;}
.yc8{bottom:484.546667pt;}
.y3d{bottom:484.866667pt;}
.y117{bottom:494.786667pt;}
.y19a{bottom:495.106667pt;}
.y134{bottom:496.253333pt;}
.y3c{bottom:498.626667pt;}
.y166{bottom:499.106667pt;}
.y86{bottom:505.186667pt;}
.y116{bottom:510.146667pt;}
.y3b{bottom:512.546667pt;}
.y165{bottom:513.666667pt;}
.y199{bottom:525.506667pt;}
.y3a{bottom:526.333333pt;}
.y133{bottom:526.946667pt;}
.y164{bottom:528.573333pt;}
.y39{bottom:539.773333pt;}
.y198{bottom:540.893333pt;}
.y163{bottom:545.373333pt;}
.y83{bottom:551.133333pt;}
.y38{bottom:553.533333pt;}
.y197{bottom:556.093333pt;}
.y162{bottom:560.733333pt;}
.y196{bottom:571.133333pt;}
.y161{bottom:576.093333pt;}
.yb6{bottom:580.893333pt;}
.y195{bottom:585.693333pt;}
.y160{bottom:591.453333pt;}
.yb5{bottom:596.253333pt;}
.y7f{bottom:597.213333pt;}
.y194{bottom:600.413333pt;}
.y15f{bottom:606.813333pt;}
.yc5{bottom:608.253333pt;}
.yb4{bottom:611.613333pt;}
.y193{bottom:614.973333pt;}
.y15e{bottom:622.173333pt;}
.y13b{bottom:622.720000pt;}
.yc4{bottom:623.613333pt;}
.yb3{bottom:626.973333pt;}
.y192{bottom:629.533333pt;}
.y15d{bottom:637.373333pt;}
.yc3{bottom:638.973333pt;}
.yb2{bottom:642.173333pt;}
.y191{bottom:644.093333pt;}
.y15c{bottom:652.733333pt;}
.yc2{bottom:654.333333pt;}
.yb1{bottom:657.533333pt;}
.y7d{bottom:658.493333pt;}
.y190{bottom:658.653333pt;}
.ye2{bottom:659.773333pt;}
.yf5{bottom:663.453333pt;}
.y15b{bottom:668.093333pt;}
.yc1{bottom:669.693333pt;}
.yb0{bottom:672.893333pt;}
.y18f{bottom:673.213333pt;}
.yf4{bottom:680.093333pt;}
.y7a{bottom:681.213333pt;}
.y15a{bottom:683.453333pt;}
.yc0{bottom:684.893333pt;}
.y18e{bottom:687.773333pt;}
.yaf{bottom:688.253333pt;}
.y73{bottom:690.014667pt;}
.y159{bottom:698.813333pt;}
.yf3{bottom:699.453333pt;}
.ybf{bottom:700.253333pt;}
.y18d{bottom:702.333333pt;}
.yae{bottom:703.613333pt;}
.y76{bottom:711.773333pt;}
.y158{bottom:714.013333pt;}
.ybe{bottom:715.613333pt;}
.y18c{bottom:716.893333pt;}
.yf2{bottom:718.653333pt;}
.yad{bottom:718.813333pt;}
.ybd{bottom:730.973333pt;}
.y18b{bottom:731.453333pt;}
.yac{bottom:735.613333pt;}
.yf1{bottom:738.013333pt;}
.y74{bottom:743.773333pt;}
.y18a{bottom:746.013333pt;}
.ybc{bottom:746.333333pt;}
.yab{bottom:752.573333pt;}
.yf0{bottom:757.373333pt;}
.y189{bottom:760.573333pt;}
.ybb{bottom:761.693333pt;}
.yaa{bottom:767.973333pt;}
.y188{bottom:775.173333pt;}
.yef{bottom:776.773333pt;}
.yba{bottom:776.933333pt;}
.ya9{bottom:783.333333pt;}
.y187{bottom:789.733333pt;}
.yb9{bottom:792.293333pt;}
.yee{bottom:796.133333pt;}
.ya8{bottom:798.373333pt;}
.y186{bottom:804.293333pt;}
.yb8{bottom:807.653333pt;}
.yed{bottom:815.493333pt;}
.y185{bottom:818.853333pt;}
.y64{bottom:821.413333pt;}
.ya7{bottom:822.053333pt;}
.yb7{bottom:823.013333pt;}
.y184{bottom:833.413333pt;}
.yec{bottom:834.693333pt;}
.y71{bottom:836.773333pt;}
.ya6{bottom:837.253333pt;}
.y63{bottom:838.373333pt;}
.y183{bottom:847.973333pt;}
.y70{bottom:852.133333pt;}
.ya5{bottom:852.613333pt;}
.y62{bottom:853.733333pt;}
.yeb{bottom:854.053333pt;}
.y182{bottom:862.533333pt;}
.y6f{bottom:867.493333pt;}
.ya4{bottom:867.973333pt;}
.y61{bottom:868.933333pt;}
.yea{bottom:873.413333pt;}
.y181{bottom:877.093333pt;}
.y6e{bottom:882.853333pt;}
.ya3{bottom:883.333333pt;}
.y60{bottom:884.293333pt;}
.y180{bottom:891.653333pt;}
.ye9{bottom:892.773333pt;}
.y6d{bottom:898.053333pt;}
.ya2{bottom:898.693333pt;}
.y5f{bottom:899.653333pt;}
.y17f{bottom:906.213333pt;}
.ye8{bottom:912.133333pt;}
.y6c{bottom:913.413333pt;}
.ya1{bottom:914.053333pt;}
.y5e{bottom:915.013333pt;}
.y17e{bottom:920.773333pt;}
.y6b{bottom:928.773333pt;}
.ya0{bottom:929.253333pt;}
.y5d{bottom:930.373333pt;}
.ye7{bottom:931.333333pt;}
.y17d{bottom:935.333333pt;}
.y6a{bottom:944.133333pt;}
.y5c{bottom:945.573333pt;}
.y17c{bottom:949.893333pt;}
.ye6{bottom:950.693333pt;}
.y69{bottom:959.493333pt;}
.y5b{bottom:960.933333pt;}
.y17b{bottom:964.453333pt;}
.ye4{bottom:971.333333pt;}
.y68{bottom:974.853333pt;}
.y5a{bottom:976.293333pt;}
.y17a{bottom:979.013333pt;}
.y67{bottom:990.053333pt;}
.y59{bottom:991.653333pt;}
.y179{bottom:993.733333pt;}
.y66{bottom:1005.440000pt;}
.y58{bottom:1007.040000pt;}
.y178{bottom:1008.320000pt;}
.y65{bottom:1020.800000pt;}
.y57{bottom:1022.400000pt;}
.y177{bottom:1022.880000pt;}
.y2{bottom:1038.400000pt;}
.y1{bottom:1057.760000pt;}
.h24{height:15.200000pt;}
.h22{height:19.200000pt;}
.h21{height:19.360000pt;}
.h23{height:19.392000pt;}
.h1e{height:22.560000pt;}
.h14{height:22.720000pt;}
.h11{height:22.752000pt;}
.h13{height:30.560000pt;}
.h12{height:30.720000pt;}
.h19{height:30.752000pt;}
.h2c{height:33.539062pt;}
.h2d{height:33.628500pt;}
.h2e{height:33.656250pt;}
.h1d{height:34.560000pt;}
.h20{height:34.752000pt;}
.h27{height:37.116563pt;}
.h2f{height:37.157500pt;}
.h29{height:37.246250pt;}
.h28{height:41.130000pt;}
.h33{height:45.326250pt;}
.h18{height:45.920000pt;}
.h17{height:45.952000pt;}
.h16{height:46.080000pt;}
.ha{height:46.593750pt;}
.h9{height:47.109375pt;}
.h1b{height:47.621250pt;}
.h8{height:48.375000pt;}
.h31{height:49.597187pt;}
.h34{height:49.621875pt;}
.h32{height:50.955000pt;}
.h5{height:52.134375pt;}
.h6{height:53.535000pt;}
.h35{height:55.710625pt;}
.h36{height:55.726250pt;}
.hd{height:58.238750pt;}
.h30{height:58.398750pt;}
.he{height:59.150000pt;}
.hf{height:59.256667pt;}
.h4{height:59.340000pt;}
.h2{height:60.762500pt;}
.h15{height:61.280000pt;}
.h1a{height:61.440000pt;}
.hb{height:61.969687pt;}
.h3{height:62.812500pt;}
.hc{height:83.499062pt;}
.h1f{height:379.586667pt;}
.h2b{height:396.480000pt;}
.h26{height:461.760000pt;}
.h1c{height:469.180000pt;}
.h2a{height:510.653333pt;}
.h25{height:552.540000pt;}
.h7{height:564.733333pt;}
.h10{height:710.000000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w4{width:37.792000pt;}
.w6{width:84.992000pt;}
.w5{width:94.560000pt;}
.wf{width:122.912000pt;}
.wb{width:127.552000pt;}
.wd{width:132.352000pt;}
.w9{width:134.746667pt;}
.wa{width:148.800000pt;}
.we{width:151.200000pt;}
.w7{width:440.706667pt;}
.w11{width:545.600000pt;}
.w13{width:609.920000pt;}
.w12{width:659.960000pt;}
.w10{width:661.240000pt;}
.w2{width:664.280000pt;}
.w8{width:670.680000pt;}
.wc{width:688.440000pt;}
.w3{width:698.840000pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1c{left:7.200000pt;}
.x12{left:8.960000pt;}
.x1b{left:10.400000pt;}
.x1d{left:11.680000pt;}
.x19{left:13.760000pt;}
.x20{left:14.880000pt;}
.x16{left:15.840000pt;}
.x10{left:17.758667pt;}
.x1f{left:19.200000pt;}
.x22{left:20.160000pt;}
.x1e{left:22.080000pt;}
.x14{left:24.320000pt;}
.x24{left:28.794667pt;}
.x25{left:31.354667pt;}
.x23{left:33.114667pt;}
.x32{left:34.746667pt;}
.x1a{left:35.834667pt;}
.x21{left:37.914667pt;}
.x2a{left:41.280000pt;}
.x28{left:42.400000pt;}
.x31{left:43.680000pt;}
.xf{left:48.321333pt;}
.x34{left:49.786667pt;}
.x2c{left:52.026667pt;}
.x2b{left:56.000000pt;}
.x2f{left:57.121333pt;}
.x2d{left:60.360000pt;}
.x35{left:62.760000pt;}
.x2e{left:63.706667pt;}
.x2{left:66.080000pt;}
.x38{left:67.200000pt;}
.x11{left:68.800000pt;}
.x3b{left:72.321333pt;}
.x4f{left:75.520000pt;}
.xc{left:88.345333pt;}
.x4d{left:89.413333pt;}
.x3e{left:95.613333pt;}
.x3d{left:96.960000pt;}
.x13{left:106.592000pt;}
.x37{left:125.440000pt;}
.x3f{left:126.720000pt;}
.x26{left:131.232000pt;}
.xe{left:139.865333pt;}
.x40{left:155.173333pt;}
.x1{left:159.546667pt;}
.x18{left:169.306667pt;}
.x39{left:171.586667pt;}
.x41{left:183.613333pt;}
.x15{left:201.146667pt;}
.x42{left:212.066667pt;}
.xd{left:215.105333pt;}
.x4e{left:220.666667pt;}
.x43{left:240.480000pt;}
.x30{left:264.386667pt;}
.x27{left:265.986667pt;}
.x44{left:268.933333pt;}
.x17{left:286.146667pt;}
.x45{left:297.373333pt;}
.x46{left:325.826667pt;}
.xb{left:332.065333pt;}
.x47{left:354.266667pt;}
.x7{left:377.692000pt;}
.x48{left:382.720000pt;}
.x3a{left:389.733333pt;}
.x3{left:411.106667pt;}
.x29{left:414.946667pt;}
.x50{left:420.573333pt;}
.x6{left:427.292000pt;}
.x4{left:438.972000pt;}
.x8{left:454.812000pt;}
.x49{left:468.066667pt;}
.x4a{left:496.480000pt;}
.x4b{left:524.933333pt;}
.x33{left:538.493333pt;}
.x9{left:542.212000pt;}
.x4c{left:553.373333pt;}
.xa{left:567.012000pt;}
.x5{left:583.972000pt;}
.x36{left:603.972000pt;}
.x3c{left:635.332000pt;}
}




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