
    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_b8c327195112a0643c21cae7.woff')format("woff");}.ff1{font-family:ff1;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_83949a7f90f6f7bea210c193.woff')format("woff");}.ff2{font-family:ff2;line-height:1.115234;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_e06732f03217e450d8027636.woff')format("woff");}.ff3{font-family:ff3;line-height:1.109375;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_29a420739450728266de3d85.woff')format("woff");}.ff4{font-family:ff4;line-height:1.064941;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_a3c7330a63109f64aa98e26a.woff')format("woff");}.ff5{font-family:ff5;line-height:1.109375;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_0d7977583206d26dc695f81b.woff')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_37ced97949aaec7902a68a59.woff')format("woff");}.ff7{font-family:ff7;line-height:0.854492;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_98f3962de5f9f54765500027.woff')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_65f9f3722bcf8ab9aa85e286.woff')format("woff");}.ff9{font-family:ff9;line-height:1.372070;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_0d378d8f6555b1f255ba4e39.woff')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_532a6ac884fc307a028c5bb2.woff')format("woff");}.ffb{font-family:ffb;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;}
.m3{transform:matrix(0.249885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249885,0.000000,0.000000,0.250000,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);}
.m5{transform:matrix(0.251556,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251556,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251556,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.252326,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252326,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252326,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.252326,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252326,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252326,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:-28.249745px;}
.v1{vertical-align:-20.880000px;}
.v3{vertical-align:-15.120000px;}
.v4{vertical-align:-10.986339px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:15.120000px;}
.lsa{letter-spacing:-0.444000px;}
.ls20{letter-spacing:-0.310800px;}
.ls22{letter-spacing:-0.266400px;}
.ls11{letter-spacing:-0.186600px;}
.ls18{letter-spacing:-0.141600px;}
.ls7{letter-spacing:-0.135000px;}
.ls1f{letter-spacing:-0.125400px;}
.lsd{letter-spacing:-0.121200px;}
.ls6{letter-spacing:-0.090000px;}
.lsb{letter-spacing:-0.084600px;}
.ls9{letter-spacing:-0.063600px;}
.ls4{letter-spacing:0.000000px;}
.ls13{letter-spacing:0.019080px;}
.ls8{letter-spacing:0.045000px;}
.lsf{letter-spacing:0.045360px;}
.ls10{letter-spacing:0.048960px;}
.ls1a{letter-spacing:0.060480px;}
.ls1e{letter-spacing:0.060600px;}
.ls3{letter-spacing:0.065520px;}
.ls2{letter-spacing:0.090000px;}
.ls1{letter-spacing:0.093600px;}
.ls21{letter-spacing:0.097800px;}
.ls19{letter-spacing:0.098400px;}
.ls1d{letter-spacing:0.113400px;}
.ls17{letter-spacing:0.115800px;}
.ls14{letter-spacing:0.118200px;}
.ls1c{letter-spacing:0.127200px;}
.ls5{letter-spacing:0.144000px;}
.ls12{letter-spacing:0.173400px;}
.ls24{letter-spacing:0.180000px;}
.ls1b{letter-spacing:0.181200px;}
.ls0{letter-spacing:0.360000px;}
.lsc{letter-spacing:0.473400px;}
.lse{letter-spacing:4.773600px;}
.ls25{letter-spacing:47.726640px;}
.ls23{letter-spacing:80.846640px;}
.ls15{letter-spacing:311.499410px;}
.ls16{letter-spacing:313.934473px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc1{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.ws6{word-spacing:-14.493600px;}
.wsa{word-spacing:-14.372400px;}
.ws9{word-spacing:-13.399800px;}
.ws18{word-spacing:-13.342200px;}
.ws17{word-spacing:-13.324800px;}
.wsb{word-spacing:-13.275360px;}
.ws4{word-spacing:-13.226400px;}
.wse{word-spacing:-13.162800px;}
.ws16{word-spacing:-13.084800px;}
.ws8{word-spacing:-13.039800px;}
.ws0{word-spacing:-9.810000px;}
.ws1{word-spacing:-9.765000px;}
.ws14{word-spacing:-9.406923px;}
.wsf{word-spacing:-9.380485px;}
.ws2{word-spacing:-9.266400px;}
.ws11{word-spacing:-9.251848px;}
.ws19{word-spacing:-8.614200px;}
.ws3{word-spacing:-8.553600px;}
.wsc{word-spacing:-0.079200px;}
.wsd{word-spacing:-0.060120px;}
.ws7{word-spacing:0.000000px;}
.ws5{word-spacing:4.304880px;}
.ws13{word-spacing:303.368257px;}
.ws10{word-spacing:303.377445px;}
.ws15{word-spacing:304.206550px;}
.ws12{word-spacing:307.168844px;}
._17{margin-left:-49.663310px;}
._10{margin-left:-3.727440px;}
._6{margin-left:-2.409000px;}
._0{margin-left:-1.110000px;}
._2{width:1.091363px;}
._9{width:2.196823px;}
._13{width:3.366720px;}
._12{width:4.569120px;}
._4{width:5.837760px;}
._11{width:6.843360px;}
._5{width:7.875600px;}
._14{width:9.792194px;}
._3{width:10.877760px;}
._b{width:11.996041px;}
._7{width:14.609400px;}
._1f{width:15.751440px;}
._f{width:17.494920px;}
._8{width:18.817800px;}
._a{width:20.260200px;}
._c{width:21.462840px;}
._d{width:22.564118px;}
._e{width:24.028882px;}
._1c{width:25.609080px;}
._1{width:29.609388px;}
._20{width:54.655440px;}
._16{width:65.711160px;}
._1e{width:72.992040px;}
._19{width:78.515400px;}
._15{width:97.695000px;}
._18{width:132.264000px;}
._1a{width:202.773600px;}
._1b{width:236.512080px;}
._1d{width:2507.013600px;}
.fc2{color:transparent;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fsc{font-size:25.356211px;}
.fsa{font-size:25.895600px;}
.fse{font-size:25.968584px;}
.fsb{font-size:33.280028px;}
.fs9{font-size:33.742751px;}
.fsd{font-size:33.837852px;}
.fs0{font-size:38.880000px;}
.fs6{font-size:42.120000px;}
.fs3{font-size:45.000000px;}
.fs2{font-size:54.000000px;}
.fs1{font-size:60.120000px;}
.fs5{font-size:63.000000px;}
.fs7{font-size:65.880000px;}
.fs8{font-size:72.000000px;}
.fs4{font-size:83.880000px;}
.y0{bottom:0.000000px;}
.y83{bottom:1.177109px;}
.yd2{bottom:1.180341px;}
.y97{bottom:1.386676px;}
.ya9{bottom:3.923617px;}
.y82{bottom:3.923632px;}
.yc0{bottom:3.923648px;}
.yd1{bottom:3.934601px;}
.y96{bottom:4.160020px;}
.y8a{bottom:4.500000px;}
.y77{bottom:7.830000px;}
.y101{bottom:7.860000px;}
.ydb{bottom:7.920000px;}
.yea{bottom:10.170000px;}
.yec{bottom:16.650000px;}
.ye6{bottom:18.900000px;}
.y76{bottom:25.380000px;}
.yed{bottom:25.470000px;}
.yef{bottom:27.630000px;}
.ye7{bottom:27.720000px;}
.yf5{bottom:27.750000px;}
.yf0{bottom:29.880000px;}
.y100{bottom:29.910000px;}
.yda{bottom:29.970000px;}
.yf7{bottom:30.000000px;}
.ye5{bottom:36.540000px;}
.yb2{bottom:36.810000px;}
.ye9{bottom:45.270000px;}
.ye8{bottom:47.520000px;}
.yf6{bottom:47.550000px;}
.yf3{bottom:47.610000px;}
.y109{bottom:52.020000px;}
.y10b{bottom:52.110000px;}
.ya6{bottom:52.772314px;}
.ybd{bottom:52.772346px;}
.yc1{bottom:52.772356px;}
.y7f{bottom:52.772460px;}
.y84{bottom:52.772470px;}
.yce{bottom:52.920859px;}
.y93{bottom:53.485362px;}
.yb1{bottom:58.980000px;}
.y2{bottom:73.380000px;}
.y111{bottom:74.070000px;}
.y10e{bottom:74.100000px;}
.y108{bottom:74.160000px;}
.y29{bottom:74.190000px;}
.ya7{bottom:77.098483px;}
.ybe{bottom:77.098510px;}
.y81{bottom:77.098641px;}
.yd0{bottom:77.315606px;}
.y95{bottom:78.049184px;}
.yb0{bottom:81.030000px;}
.ya4{bottom:94.530000px;}
.y7d{bottom:94.590000px;}
.y107{bottom:96.210000px;}
.y91{bottom:97.200000px;}
.y1{bottom:101.640000px;}
.yaf{bottom:103.080000px;}
.yba{bottom:103.140000px;}
.yca{bottom:104.760531px;}
.y9f{bottom:105.840000px;}
.y86{bottom:106.129786px;}
.ya3{bottom:112.080000px;}
.y7c{bottom:112.140000px;}
.y112{bottom:113.250000px;}
.y90{bottom:114.840000px;}
.yae{bottom:120.720000px;}
.y8b{bottom:125.190000px;}
.ycb{bottom:125.220000px;}
.yb9{bottom:125.280000px;}
.y4b{bottom:125.310000px;}
.y9e{bottom:127.890000px;}
.y7b{bottom:129.690000px;}
.ya2{bottom:129.720000px;}
.yb6{bottom:129.780000px;}
.y153{bottom:130.800000px;}
.y8f{bottom:132.390000px;}
.y5e{bottom:134.310000px;}
.y11e{bottom:134.580000px;}
.y181{bottom:134.940000px;}
.y87{bottom:136.145197px;}
.yaa{bottom:136.149115px;}
.yc2{bottom:136.149153px;}
.yd4{bottom:136.531805px;}
.y130{bottom:137.190000px;}
.y98{bottom:137.678385px;}
.y1aa{bottom:140.970000px;}
.y135{bottom:142.050000px;}
.yad{bottom:142.770000px;}
.yc6{bottom:142.830000px;}
.y4a{bottom:142.950000px;}
.y9d{bottom:145.530000px;}
.ya1{bottom:147.270000px;}
.yb5{bottom:147.330000px;}
.yc5{bottom:147.331318px;}
.y7a{bottom:147.360000px;}
.y152{bottom:148.440000px;}
.y8e{bottom:150.030000px;}
.yd8{bottom:152.400000px;}
.y180{bottom:152.580000px;}
.y8c{bottom:152.670000px;}
.y89{bottom:155.959240px;}
.yac{bottom:155.963156px;}
.yc4{bottom:155.963196px;}
.yd6{bottom:156.401731px;}
.y9c{bottom:156.497439px;}
.y92{bottom:157.296968px;}
.y94{bottom:157.296976px;}
.y9a{bottom:157.686012px;}
.y27{bottom:158.430000px;}
.y49{bottom:160.500000px;}
.yb4{bottom:164.880000px;}
.y79{bottom:164.910000px;}
.y151{bottom:165.990000px;}
.y88{bottom:166.552886px;}
.yab{bottom:166.556810px;}
.yc3{bottom:166.556843px;}
.yd5{bottom:167.025243px;}
.y1a9{bottom:167.520000px;}
.y8d{bottom:167.580000px;}
.y99{bottom:168.383172px;}
.y12f{bottom:169.410000px;}
.y5d{bottom:169.860000px;}
.y9b{bottom:169.967927px;}
.y11d{bottom:170.220000px;}
.y26{bottom:175.980000px;}
.y134{bottom:177.690000px;}
.y48{bottom:178.050000px;}
.yfc{bottom:179.130000px;}
.y150{bottom:183.630000px;}
.y110{bottom:184.800000px;}
.y1a8{bottom:185.070000px;}
.y17f{bottom:188.130000px;}
.yd7{bottom:194.070000px;}
.y14f{bottom:201.180000px;}
.y11c{bottom:202.440000px;}
.y47{bottom:204.690000px;}
.y5c{bottom:205.500000px;}
.y17e{bottom:205.680000px;}
.y133{bottom:209.910000px;}
.y25{bottom:211.620000px;}
.y1a7{bottom:211.710000px;}
.y14e{bottom:218.730000px;}
.y17d{bottom:223.320000px;}
.yfb{bottom:228.540000px;}
.y24{bottom:229.170000px;}
.y1a6{bottom:229.260000px;}
.ycc{bottom:232.680000px;}
.y14d{bottom:236.370000px;}
.ycf{bottom:237.421683px;}
.ycd{bottom:237.421699px;}
.yd3{bottom:237.421723px;}
.y5b{bottom:237.720000px;}
.y46{bottom:240.600000px;}
.y17c{bottom:240.870000px;}
.y23{bottom:246.810000px;}
.y14c{bottom:253.920000px;}
.y1a5{bottom:255.900000px;}
.y17b{bottom:258.510000px;}
.y22{bottom:264.360000px;}
.y14b{bottom:271.560000px;}
.y1a4{bottom:273.450000px;}
.y17a{bottom:285.060000px;}
.y126{bottom:286.860000px;}
.y45{bottom:288.840000px;}
.y14a{bottom:289.110000px;}
.y21{bottom:291.270000px;}
.y12c{bottom:300.000000px;}
.y10f{bottom:300.450000px;}
.y179{bottom:302.610000px;}
.y44{bottom:306.480000px;}
.y149{bottom:306.660000px;}
.yfa{bottom:316.920000px;}
.y1a3{bottom:317.640000px;}
.y125{bottom:322.500000px;}
.y148{bottom:324.300000px;}
.y12b{bottom:335.550000px;}
.y178{bottom:338.250000px;}
.y43{bottom:338.700000px;}
.y78{bottom:339.690000px;}
.y20{bottom:339.870000px;}
.yf9{bottom:340.860000px;}
.y147{bottom:341.850000px;}
.y1a2{bottom:344.190000px;}
.y80{bottom:344.676497px;}
.y7e{bottom:344.676514px;}
.y85{bottom:344.676538px;}
.y124{bottom:354.720000px;}
.y177{bottom:355.800000px;}
.y146{bottom:359.490000px;}
.y1a1{bottom:361.830000px;}
.y12a{bottom:367.770000px;}
.y176{bottom:373.440000px;}
.y1f{bottom:376.860000px;}
.y145{bottom:377.040000px;}
.yf8{bottom:385.770000px;}
.y1a0{bottom:388.380000px;}
.y175{bottom:390.990000px;}
.y1e{bottom:394.500000px;}
.y144{bottom:394.590000px;}
.y19f{bottom:405.930000px;}
.y174{bottom:408.540000px;}
.y1d{bottom:412.050000px;}
.y143{bottom:412.230000px;}
.y10d{bottom:416.190000px;}
.yc7{bottom:417.090000px;}
.yc8{bottom:422.162456px;}
.yc9{bottom:422.162473px;}
.y1c{bottom:429.600000px;}
.y142{bottom:429.780000px;}
.y19e{bottom:432.570000px;}
.y173{bottom:435.180000px;}
.y1b{bottom:447.240000px;}
.y141{bottom:447.420000px;}
.y19d{bottom:450.120000px;}
.y172{bottom:452.730000px;}
.yf4{bottom:452.820000px;}
.y1a{bottom:464.790000px;}
.y140{bottom:464.970000px;}
.y19c{bottom:476.790000px;}
.y19{bottom:482.460000px;}
.y13f{bottom:482.550000px;}
.y171{bottom:488.400000px;}
.y19b{bottom:494.340000px;}
.y18{bottom:500.010000px;}
.y13e{bottom:500.190000px;}
.y11b{bottom:500.550000px;}
.y170{bottom:505.950000px;}
.y10c{bottom:509.730000px;}
.y17{bottom:517.560000px;}
.y13d{bottom:517.740000px;}
.yf2{bottom:519.810000px;}
.y19a{bottom:520.890000px;}
.y16f{bottom:523.500000px;}
.y75{bottom:524.130000px;}
.y16{bottom:535.200000px;}
.y13c{bottom:535.290000px;}
.y11a{bottom:536.190000px;}
.y199{bottom:538.530000px;}
.y16e{bottom:541.140000px;}
.y15{bottom:552.750000px;}
.y13b{bottom:552.930000px;}
.y16d{bottom:558.690000px;}
.y198{bottom:565.080000px;}
.y14{bottom:570.390000px;}
.y13a{bottom:570.480000px;}
.y119{bottom:571.740000px;}
.y16c{bottom:576.330000px;}
.y197{bottom:582.630000px;}
.yf1{bottom:586.860000px;}
.y13{bottom:587.940000px;}
.y139{bottom:588.120000px;}
.y74{bottom:590.370000px;}
.y16b{bottom:593.880000px;}
.y42{bottom:598.560000px;}
.ybb{bottom:601.440000px;}
.y10a{bottom:603.330000px;}
.y118{bottom:603.960000px;}
.y12{bottom:605.490000px;}
.ybc{bottom:606.512456px;}
.ybf{bottom:606.512473px;}
.y196{bottom:609.270000px;}
.y138{bottom:615.030000px;}
.y73{bottom:617.010000px;}
.y16a{bottom:620.430000px;}
.y123{bottom:623.580000px;}
.y195{bottom:626.820000px;}
.y41{bottom:630.780000px;}
.y11{bottom:632.400000px;}
.y169{bottom:638.070000px;}
.y132{bottom:640.770000px;}
.y72{bottom:652.830000px;}
.y194{bottom:653.730000px;}
.yee{bottom:653.910000px;}
.y122{bottom:655.800000px;}
.y12e{bottom:656.520000px;}
.y137{bottom:663.270000px;}
.y131{bottom:672.990000px;}
.y168{bottom:673.620000px;}
.y10{bottom:680.730000px;}
.y12d{bottom:688.740000px;}
.y167{bottom:691.260000px;}
.y136{bottom:695.490000px;}
.y106{bottom:696.930000px;}
.y71{bottom:701.160000px;}
.y193{bottom:702.060000px;}
.y166{bottom:708.810000px;}
.yf{bottom:716.280000px;}
.y70{bottom:718.710000px;}
.y192{bottom:719.610000px;}
.yeb{bottom:720.870000px;}
.y165{bottom:726.360000px;}
.y40{bottom:735.360000px;}
.y5a{bottom:736.080000px;}
.y164{bottom:744.000000px;}
.y6f{bottom:745.350000px;}
.y191{bottom:746.520000px;}
.ye{bottom:752.100000px;}
.y3f{bottom:753.000000px;}
.y163{bottom:761.550000px;}
.ye4{bottom:765.780000px;}
.y3e{bottom:770.550000px;}
.y59{bottom:771.720000px;}
.y162{bottom:779.190000px;}
.y6e{bottom:780.900000px;}
.y190{bottom:783.510000px;}
.yb3{bottom:785.760000px;}
.y3d{bottom:788.190000px;}
.y58{bottom:789.270000px;}
.yb7{bottom:790.862498px;}
.yb8{bottom:790.862515px;}
.yd{bottom:791.880000px;}
.y6d{bottom:798.450000px;}
.y129{bottom:798.720000px;}
.y3c{bottom:805.740000px;}
.yc{bottom:809.880000px;}
.y18f{bottom:810.420000px;}
.y105{bottom:812.670000px;}
.y57{bottom:815.820000px;}
.y6c{bottom:816.090000px;}
.y3b{bottom:823.290000px;}
.yb{bottom:824.100000px;}
.y117{bottom:825.180000px;}
.y6b{bottom:833.640000px;}
.y128{bottom:834.270000px;}
.y3a{bottom:840.930000px;}
.ya{bottom:845.880000px;}
.y18e{bottom:847.500000px;}
.y56{bottom:851.460000px;}
.ye3{bottom:854.160000px;}
.y39{bottom:858.480000px;}
.y161{bottom:858.930000px;}
.y9{bottom:860.100000px;}
.y6a{bottom:860.280000px;}
.y116{bottom:863.340000px;}
.y18d{bottom:865.050000px;}
.y127{bottom:866.490000px;}
.y55{bottom:869.010000px;}
.y121{bottom:870.720000px;}
.y38{bottom:876.030000px;}
.y160{bottom:876.480000px;}
.ye2{bottom:878.100000px;}
.y8{bottom:881.880000px;}
.y104{bottom:883.410000px;}
.y54{bottom:886.560000px;}
.y18c{bottom:891.960000px;}
.y37{bottom:893.670000px;}
.y15f{bottom:894.030000px;}
.y115{bottom:895.560000px;}
.y69{bottom:895.830000px;}
.y7{bottom:896.100000px;}
.y53{bottom:904.650000px;}
.ye1{bottom:905.460000px;}
.y120{bottom:906.270000px;}
.y103{bottom:907.350000px;}
.y36{bottom:911.220000px;}
.y15e{bottom:911.670000px;}
.y68{bottom:913.380000px;}
.y6{bottom:917.880000px;}
.y52{bottom:925.350000px;}
.y35{bottom:928.860000px;}
.y15d{bottom:929.220000px;}
.y18b{bottom:929.310000px;}
.y67{bottom:931.020000px;}
.ye0{bottom:932.820000px;}
.y11f{bottom:938.490000px;}
.y34{bottom:946.410000px;}
.y15c{bottom:946.860000px;}
.y5{bottom:950.010000px;}
.y51{bottom:954.600000px;}
.y102{bottom:956.850000px;}
.y66{bottom:957.570000px;}
.ydf{bottom:960.180000px;}
.y33{bottom:963.960000px;}
.y15b{bottom:964.410000px;}
.ya0{bottom:970.170000px;}
.ya5{bottom:975.212498px;}
.ya8{bottom:975.212515px;}
.y18a{bottom:977.550000px;}
.y32{bottom:981.600000px;}
.y15a{bottom:981.960000px;}
.yde{bottom:987.450000px;}
.y4{bottom:987.630000px;}
.y50{bottom:990.150000px;}
.y65{bottom:993.210000px;}
.y189{bottom:995.190000px;}
.y31{bottom:999.150000px;}
.y159{bottom:999.600000px;}
.yff{bottom:1006.260000px;}
.y4f{bottom:1007.790000px;}
.y64{bottom:1010.790000px;}
.y3{bottom:1012.320000px;}
.y188{bottom:1012.770000px;}
.ydd{bottom:1014.840000px;}
.y30{bottom:1016.820000px;}
.y158{bottom:1017.180000px;}
.y4e{bottom:1025.370000px;}
.y63{bottom:1028.340000px;}
.y187{bottom:1030.320000px;}
.y2f{bottom:1034.370000px;}
.y157{bottom:1034.820000px;}
.ydc{bottom:1042.200000px;}
.y4d{bottom:1042.920000px;}
.y62{bottom:1045.980000px;}
.y186{bottom:1047.960000px;}
.y2e{bottom:1051.920000px;}
.y156{bottom:1052.370000px;}
.yfe{bottom:1055.700000px;}
.y4c{bottom:1060.560000px;}
.y61{bottom:1063.530000px;}
.y185{bottom:1065.510000px;}
.yd9{bottom:1069.470000px;}
.y2d{bottom:1069.560000px;}
.y155{bottom:1069.920000px;}
.y1ac{bottom:1078.560000px;}
.y60{bottom:1081.170000px;}
.y184{bottom:1083.150000px;}
.y114{bottom:1085.400000px;}
.y2c{bottom:1087.110000px;}
.y154{bottom:1087.560000px;}
.y1ab{bottom:1096.110000px;}
.y183{bottom:1100.700000px;}
.yfd{bottom:1105.110000px;}
.y5f{bottom:1107.720000px;}
.y113{bottom:1109.610000px;}
.y2b{bottom:1122.750000px;}
.y182{bottom:1127.610000px;}
.y2a{bottom:1140.300000px;}
.y28{bottom:1194.300000px;}
.h1b{height:26.445736px;}
.h29{height:26.550000px;}
.h2b{height:26.640000px;}
.h2a{height:26.670000px;}
.h15{height:27.008301px;}
.h25{height:27.084421px;}
.h2{height:33.016641px;}
.h19{height:34.710029px;}
.h13{height:35.192635px;}
.h22{height:35.291822px;}
.h24{height:35.292150px;}
.h6{height:35.782383px;}
.h3{height:40.100098px;}
.h10{height:44.100000px;}
.h2d{height:44.190000px;}
.h31{height:48.600000px;}
.h30{height:48.630000px;}
.h28{height:48.690000px;}
.h7{height:50.902383px;}
.h8{height:53.573730px;}
.hb{height:53.896641px;}
.h36{height:55.779258px;}
.h5{height:56.140137px;}
.h9{height:59.060391px;}
.hf{height:59.973223px;}
.hd{height:62.585859px;}
.h37{height:62.703281px;}
.ha{height:64.546875px;}
.h2c{height:66.240000px;}
.h2f{height:66.270000px;}
.h2e{height:66.330000px;}
.hc{height:68.582109px;}
.he{height:70.664062px;}
.h35{height:70.830000px;}
.h4{height:74.746582px;}
.h27{height:74.953125px;}
.h34{height:92.820000px;}
.h33{height:92.880000px;}
.h32{height:114.930000px;}
.h1d{height:174.011604px;}
.h1c{height:174.011620px;}
.h20{height:174.011646px;}
.h1f{height:174.011662px;}
.h16{height:174.097580px;}
.h12{height:174.097605px;}
.h14{height:174.097621px;}
.h26{height:174.402657px;}
.h21{height:174.402682px;}
.h23{height:174.402698px;}
.h1a{height:177.206663px;}
.h18{height:177.206671px;}
.h1e{height:183.600000px;}
.h11{height:183.630000px;}
.h17{height:186.300000px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.w1b{width:35.460000px;}
.w15{width:35.730000px;}
.w3{width:40.590000px;}
.w14{width:41.220000px;}
.w13{width:42.120000px;}
.w24{width:50.490000px;}
.w16{width:53.100000px;}
.wc{width:55.890000px;}
.w12{width:56.280000px;}
.wb{width:60.030000px;}
.wa{width:63.090000px;}
.w1a{width:65.430000px;}
.w10{width:68.400000px;}
.w11{width:75.060000px;}
.w18{width:76.080000px;}
.w19{width:81.000000px;}
.wd{width:84.780000px;}
.w1c{width:84.960000px;}
.w1d{width:90.450000px;}
.w9{width:90.480000px;}
.w23{width:97.830000px;}
.w17{width:100.800000px;}
.w1e{width:102.180000px;}
.w22{width:105.390000px;}
.w25{width:112.500000px;}
.w26{width:112.770000px;}
.w1f{width:115.020000px;}
.w21{width:117.120000px;}
.w8{width:118.798629px;}
.w7{width:118.802396px;}
.w5{width:119.070000px;}
.w20{width:123.120000px;}
.we{width:129.270000px;}
.w4{width:154.650000px;}
.wf{width:165.600000px;}
.w27{width:270.660000px;}
.w6{width:439.230000px;}
.w2{width:893.159987px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x26{left:1.080000px;}
.x17{left:2.859592px;}
.x31{left:5.400000px;}
.xc{left:7.740000px;}
.x34{left:9.450000px;}
.x15{left:10.779670px;}
.x33{left:11.970000px;}
.x35{left:15.390000px;}
.x2f{left:17.190000px;}
.x37{left:21.510000px;}
.x32{left:23.760000px;}
.x2d{left:25.830000px;}
.x16{left:27.213995px;}
.x11{left:28.600036px;}
.x2b{left:30.540000px;}
.x29{left:31.680000px;}
.x36{left:36.360000px;}
.x13{left:40.678284px;}
.x12{left:42.856318px;}
.x19{left:56.224050px;}
.x14{left:57.706612px;}
.x1{left:68.040000px;}
.x1a{left:81.964567px;}
.x7{left:85.679987px;}
.xd{left:110.070000px;}
.x55{left:111.239987px;}
.x18{left:126.540000px;}
.x53{left:131.579987px;}
.x22{left:144.540000px;}
.x38{left:160.020000px;}
.x3e{left:172.290000px;}
.x1b{left:176.340000px;}
.x2{left:192.719987px;}
.x23{left:201.540000px;}
.x3f{left:223.590000px;}
.x1c{left:240.150000px;}
.x24{left:244.380000px;}
.x45{left:253.559987px;}
.x39{left:263.010000px;}
.xe{left:265.440000px;}
.x10{left:273.194980px;}
.x25{left:286.410000px;}
.x4e{left:298.289987px;}
.x43{left:299.369987px;}
.x1d{left:300.990000px;}
.x54{left:312.689987px;}
.x49{left:314.849987px;}
.x47{left:320.159987px;}
.x27{left:322.950000px;}
.x4b{left:324.119987px;}
.x40{left:336.810000px;}
.x5{left:342.839987px;}
.x1e{left:357.690000px;}
.xa{left:372.269987px;}
.x28{left:376.860000px;}
.x3a{left:378.750000px;}
.xf{left:385.230000px;}
.x8{left:398.729987px;}
.x1f{left:443.280000px;}
.xb{left:446.609987px;}
.x41{left:450.300000px;}
.x2a{left:478.380000px;}
.x3b{left:502.590000px;}
.x4{left:519.809987px;}
.x2c{left:555.180000px;}
.x20{left:573.360000px;}
.x3c{left:620.430000px;}
.x2e{left:636.990000px;}
.x4a{left:666.059987px;}
.x4d{left:702.059987px;}
.x30{left:703.230000px;}
.x6{left:707.639987px;}
.x4c{left:714.389987px;}
.x46{left:717.809987px;}
.x3d{left:726.630000px;}
.x9{left:731.309987px;}
.x4f{left:735.809987px;}
.x21{left:739.770000px;}
.x44{left:742.559987px;}
.x42{left:771.809987px;}
.x51{left:775.139987px;}
.x48{left:784.139987px;}
.x52{left:786.389987px;}
.x50{left:790.889987px;}
.x3{left:800.339987px;}
@media print{
.v5{vertical-align:-25.110884pt;}
.v1{vertical-align:-18.560000pt;}
.v3{vertical-align:-13.440000pt;}
.v4{vertical-align:-9.765635pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:13.440000pt;}
.lsa{letter-spacing:-0.394667pt;}
.ls20{letter-spacing:-0.276267pt;}
.ls22{letter-spacing:-0.236800pt;}
.ls11{letter-spacing:-0.165867pt;}
.ls18{letter-spacing:-0.125867pt;}
.ls7{letter-spacing:-0.120000pt;}
.ls1f{letter-spacing:-0.111467pt;}
.lsd{letter-spacing:-0.107733pt;}
.ls6{letter-spacing:-0.080000pt;}
.lsb{letter-spacing:-0.075200pt;}
.ls9{letter-spacing:-0.056533pt;}
.ls4{letter-spacing:0.000000pt;}
.ls13{letter-spacing:0.016960pt;}
.ls8{letter-spacing:0.040000pt;}
.lsf{letter-spacing:0.040320pt;}
.ls10{letter-spacing:0.043520pt;}
.ls1a{letter-spacing:0.053760pt;}
.ls1e{letter-spacing:0.053867pt;}
.ls3{letter-spacing:0.058240pt;}
.ls2{letter-spacing:0.080000pt;}
.ls1{letter-spacing:0.083200pt;}
.ls21{letter-spacing:0.086933pt;}
.ls19{letter-spacing:0.087467pt;}
.ls1d{letter-spacing:0.100800pt;}
.ls17{letter-spacing:0.102933pt;}
.ls14{letter-spacing:0.105067pt;}
.ls1c{letter-spacing:0.113067pt;}
.ls5{letter-spacing:0.128000pt;}
.ls12{letter-spacing:0.154133pt;}
.ls24{letter-spacing:0.160000pt;}
.ls1b{letter-spacing:0.161067pt;}
.ls0{letter-spacing:0.320000pt;}
.lsc{letter-spacing:0.420800pt;}
.lse{letter-spacing:4.243200pt;}
.ls25{letter-spacing:42.423680pt;}
.ls23{letter-spacing:71.863680pt;}
.ls15{letter-spacing:276.888364pt;}
.ls16{letter-spacing:279.052865pt;}
.ws6{word-spacing:-12.883200pt;}
.wsa{word-spacing:-12.775467pt;}
.ws9{word-spacing:-11.910933pt;}
.ws18{word-spacing:-11.859733pt;}
.ws17{word-spacing:-11.844267pt;}
.wsb{word-spacing:-11.800320pt;}
.ws4{word-spacing:-11.756800pt;}
.wse{word-spacing:-11.700267pt;}
.ws16{word-spacing:-11.630933pt;}
.ws8{word-spacing:-11.590933pt;}
.ws0{word-spacing:-8.720000pt;}
.ws1{word-spacing:-8.680000pt;}
.ws14{word-spacing:-8.361709pt;}
.wsf{word-spacing:-8.338209pt;}
.ws2{word-spacing:-8.236800pt;}
.ws11{word-spacing:-8.223865pt;}
.ws19{word-spacing:-7.657067pt;}
.ws3{word-spacing:-7.603200pt;}
.wsc{word-spacing:-0.070400pt;}
.wsd{word-spacing:-0.053440pt;}
.ws7{word-spacing:0.000000pt;}
.ws5{word-spacing:3.826560pt;}
.ws13{word-spacing:269.660673pt;}
.ws10{word-spacing:269.668840pt;}
.ws15{word-spacing:270.405822pt;}
.ws12{word-spacing:273.038972pt;}
._17{margin-left:-44.145164pt;}
._10{margin-left:-3.313280pt;}
._6{margin-left:-2.141333pt;}
._0{margin-left:-0.986667pt;}
._2{width:0.970100pt;}
._9{width:1.952732pt;}
._13{width:2.992640pt;}
._12{width:4.061440pt;}
._4{width:5.189120pt;}
._11{width:6.082987pt;}
._5{width:7.000533pt;}
._14{width:8.704173pt;}
._3{width:9.669120pt;}
._b{width:10.663147pt;}
._7{width:12.986134pt;}
._1f{width:14.001280pt;}
._f{width:15.551040pt;}
._8{width:16.726934pt;}
._a{width:18.009066pt;}
._c{width:19.078080pt;}
._d{width:20.056994pt;}
._e{width:21.359006pt;}
._1c{width:22.763627pt;}
._1{width:26.319456pt;}
._20{width:48.582613pt;}
._16{width:58.409920pt;}
._1e{width:64.881813pt;}
._19{width:69.791467pt;}
._15{width:86.840000pt;}
._18{width:117.568000pt;}
._1a{width:180.243200pt;}
._1b{width:210.232960pt;}
._1d{width:2228.456533pt;}
.fsc{font-size:22.538855pt;}
.fsa{font-size:23.018311pt;}
.fse{font-size:23.083186pt;}
.fsb{font-size:29.582247pt;}
.fs9{font-size:29.993556pt;}
.fsd{font-size:30.078090pt;}
.fs0{font-size:34.560000pt;}
.fs6{font-size:37.440000pt;}
.fs3{font-size:40.000000pt;}
.fs2{font-size:48.000000pt;}
.fs1{font-size:53.440000pt;}
.fs5{font-size:56.000000pt;}
.fs7{font-size:58.560000pt;}
.fs8{font-size:64.000000pt;}
.fs4{font-size:74.560000pt;}
.y0{bottom:0.000000pt;}
.y83{bottom:1.046319pt;}
.yd2{bottom:1.049192pt;}
.y97{bottom:1.232601pt;}
.ya9{bottom:3.487659pt;}
.y82{bottom:3.487673pt;}
.yc0{bottom:3.487688pt;}
.yd1{bottom:3.497423pt;}
.y96{bottom:3.697796pt;}
.y8a{bottom:4.000000pt;}
.y77{bottom:6.960000pt;}
.y101{bottom:6.986667pt;}
.ydb{bottom:7.040000pt;}
.yea{bottom:9.040000pt;}
.yec{bottom:14.800000pt;}
.ye6{bottom:16.800000pt;}
.y76{bottom:22.560000pt;}
.yed{bottom:22.640000pt;}
.yef{bottom:24.560000pt;}
.ye7{bottom:24.640000pt;}
.yf5{bottom:24.666667pt;}
.yf0{bottom:26.560000pt;}
.y100{bottom:26.586667pt;}
.yda{bottom:26.640000pt;}
.yf7{bottom:26.666667pt;}
.ye5{bottom:32.480000pt;}
.yb2{bottom:32.720000pt;}
.ye9{bottom:40.240000pt;}
.ye8{bottom:42.240000pt;}
.yf6{bottom:42.266667pt;}
.yf3{bottom:42.320000pt;}
.y109{bottom:46.240000pt;}
.y10b{bottom:46.320000pt;}
.ya6{bottom:46.908723pt;}
.ybd{bottom:46.908752pt;}
.yc1{bottom:46.908760pt;}
.y7f{bottom:46.908854pt;}
.y84{bottom:46.908862pt;}
.yce{bottom:47.040764pt;}
.y93{bottom:47.542544pt;}
.yb1{bottom:52.426667pt;}
.y2{bottom:65.226667pt;}
.y111{bottom:65.840000pt;}
.y10e{bottom:65.866667pt;}
.y108{bottom:65.920000pt;}
.y29{bottom:65.946667pt;}
.ya7{bottom:68.531985pt;}
.ybe{bottom:68.532009pt;}
.y81{bottom:68.532125pt;}
.yd0{bottom:68.724983pt;}
.y95{bottom:69.377052pt;}
.yb0{bottom:72.026667pt;}
.ya4{bottom:84.026667pt;}
.y7d{bottom:84.080000pt;}
.y107{bottom:85.520000pt;}
.y91{bottom:86.400000pt;}
.y1{bottom:90.346667pt;}
.yaf{bottom:91.626667pt;}
.yba{bottom:91.680000pt;}
.yca{bottom:93.120472pt;}
.y9f{bottom:94.080000pt;}
.y86{bottom:94.337587pt;}
.ya3{bottom:99.626667pt;}
.y7c{bottom:99.680000pt;}
.y112{bottom:100.666667pt;}
.y90{bottom:102.080000pt;}
.yae{bottom:107.306667pt;}
.y8b{bottom:111.280000pt;}
.ycb{bottom:111.306667pt;}
.yb9{bottom:111.360000pt;}
.y4b{bottom:111.386667pt;}
.y9e{bottom:113.680000pt;}
.y7b{bottom:115.280000pt;}
.ya2{bottom:115.306667pt;}
.yb6{bottom:115.360000pt;}
.y153{bottom:116.266667pt;}
.y8f{bottom:117.680000pt;}
.y5e{bottom:119.386667pt;}
.y11e{bottom:119.626667pt;}
.y181{bottom:119.946667pt;}
.y87{bottom:121.017953pt;}
.yaa{bottom:121.021435pt;}
.yc2{bottom:121.021469pt;}
.yd4{bottom:121.361605pt;}
.y130{bottom:121.946667pt;}
.y98{bottom:122.380786pt;}
.y1aa{bottom:125.306667pt;}
.y135{bottom:126.266667pt;}
.yad{bottom:126.906667pt;}
.yc6{bottom:126.960000pt;}
.y4a{bottom:127.066667pt;}
.y9d{bottom:129.360000pt;}
.ya1{bottom:130.906667pt;}
.yb5{bottom:130.960000pt;}
.yc5{bottom:130.961172pt;}
.y7a{bottom:130.986667pt;}
.y152{bottom:131.946667pt;}
.y8e{bottom:133.360000pt;}
.yd8{bottom:135.466667pt;}
.y180{bottom:135.626667pt;}
.y8c{bottom:135.706667pt;}
.y89{bottom:138.630436pt;}
.yac{bottom:138.633916pt;}
.yc4{bottom:138.633952pt;}
.yd6{bottom:139.023761pt;}
.y9c{bottom:139.108835pt;}
.y92{bottom:139.819527pt;}
.y94{bottom:139.819534pt;}
.y9a{bottom:140.165344pt;}
.y27{bottom:140.826667pt;}
.y49{bottom:142.666667pt;}
.yb4{bottom:146.560000pt;}
.y79{bottom:146.586667pt;}
.y151{bottom:147.546667pt;}
.y88{bottom:148.047010pt;}
.yab{bottom:148.050498pt;}
.yc3{bottom:148.050527pt;}
.yd5{bottom:148.466883pt;}
.y1a9{bottom:148.906667pt;}
.y8d{bottom:148.960000pt;}
.y99{bottom:149.673931pt;}
.y12f{bottom:150.586667pt;}
.y5d{bottom:150.986667pt;}
.y9b{bottom:151.082602pt;}
.y11d{bottom:151.306667pt;}
.y26{bottom:156.426667pt;}
.y134{bottom:157.946667pt;}
.y48{bottom:158.266667pt;}
.yfc{bottom:159.226667pt;}
.y150{bottom:163.226667pt;}
.y110{bottom:164.266667pt;}
.y1a8{bottom:164.506667pt;}
.y17f{bottom:167.226667pt;}
.yd7{bottom:172.506667pt;}
.y14f{bottom:178.826667pt;}
.y11c{bottom:179.946667pt;}
.y47{bottom:181.946667pt;}
.y5c{bottom:182.666667pt;}
.y17e{bottom:182.826667pt;}
.y133{bottom:186.586667pt;}
.y25{bottom:188.106667pt;}
.y1a7{bottom:188.186667pt;}
.y14e{bottom:194.426667pt;}
.y17d{bottom:198.506667pt;}
.yfb{bottom:203.146667pt;}
.y24{bottom:203.706667pt;}
.y1a6{bottom:203.786667pt;}
.ycc{bottom:206.826667pt;}
.y14d{bottom:210.106667pt;}
.ycf{bottom:211.041496pt;}
.ycd{bottom:211.041510pt;}
.yd3{bottom:211.041532pt;}
.y5b{bottom:211.306667pt;}
.y46{bottom:213.866667pt;}
.y17c{bottom:214.106667pt;}
.y23{bottom:219.386667pt;}
.y14c{bottom:225.706667pt;}
.y1a5{bottom:227.466667pt;}
.y17b{bottom:229.786667pt;}
.y22{bottom:234.986667pt;}
.y14b{bottom:241.386667pt;}
.y1a4{bottom:243.066667pt;}
.y17a{bottom:253.386667pt;}
.y126{bottom:254.986667pt;}
.y45{bottom:256.746667pt;}
.y14a{bottom:256.986667pt;}
.y21{bottom:258.906667pt;}
.y12c{bottom:266.666667pt;}
.y10f{bottom:267.066667pt;}
.y179{bottom:268.986667pt;}
.y44{bottom:272.426667pt;}
.y149{bottom:272.586667pt;}
.yfa{bottom:281.706667pt;}
.y1a3{bottom:282.346667pt;}
.y125{bottom:286.666667pt;}
.y148{bottom:288.266667pt;}
.y12b{bottom:298.266667pt;}
.y178{bottom:300.666667pt;}
.y43{bottom:301.066667pt;}
.y78{bottom:301.946667pt;}
.y20{bottom:302.106667pt;}
.yf9{bottom:302.986667pt;}
.y147{bottom:303.866667pt;}
.y1a2{bottom:305.946667pt;}
.y80{bottom:306.379109pt;}
.y7e{bottom:306.379123pt;}
.y85{bottom:306.379145pt;}
.y124{bottom:315.306667pt;}
.y177{bottom:316.266667pt;}
.y146{bottom:319.546667pt;}
.y1a1{bottom:321.626667pt;}
.y12a{bottom:326.906667pt;}
.y176{bottom:331.946667pt;}
.y1f{bottom:334.986667pt;}
.y145{bottom:335.146667pt;}
.yf8{bottom:342.906667pt;}
.y1a0{bottom:345.226667pt;}
.y175{bottom:347.546667pt;}
.y1e{bottom:350.666667pt;}
.y144{bottom:350.746667pt;}
.y19f{bottom:360.826667pt;}
.y174{bottom:363.146667pt;}
.y1d{bottom:366.266667pt;}
.y143{bottom:366.426667pt;}
.y10d{bottom:369.946667pt;}
.yc7{bottom:370.746667pt;}
.yc8{bottom:375.255517pt;}
.yc9{bottom:375.255531pt;}
.y1c{bottom:381.866667pt;}
.y142{bottom:382.026667pt;}
.y19e{bottom:384.506667pt;}
.y173{bottom:386.826667pt;}
.y1b{bottom:397.546667pt;}
.y141{bottom:397.706667pt;}
.y19d{bottom:400.106667pt;}
.y172{bottom:402.426667pt;}
.yf4{bottom:402.506667pt;}
.y1a{bottom:413.146667pt;}
.y140{bottom:413.306667pt;}
.y19c{bottom:423.813333pt;}
.y19{bottom:428.853333pt;}
.y13f{bottom:428.933333pt;}
.y171{bottom:434.133333pt;}
.y19b{bottom:439.413333pt;}
.y18{bottom:444.453333pt;}
.y13e{bottom:444.613333pt;}
.y11b{bottom:444.933333pt;}
.y170{bottom:449.733333pt;}
.y10c{bottom:453.093333pt;}
.y17{bottom:460.053333pt;}
.y13d{bottom:460.213333pt;}
.yf2{bottom:462.053333pt;}
.y19a{bottom:463.013333pt;}
.y16f{bottom:465.333333pt;}
.y75{bottom:465.893333pt;}
.y16{bottom:475.733333pt;}
.y13c{bottom:475.813333pt;}
.y11a{bottom:476.613333pt;}
.y199{bottom:478.693333pt;}
.y16e{bottom:481.013333pt;}
.y15{bottom:491.333333pt;}
.y13b{bottom:491.493333pt;}
.y16d{bottom:496.613333pt;}
.y198{bottom:502.293333pt;}
.y14{bottom:507.013333pt;}
.y13a{bottom:507.093333pt;}
.y119{bottom:508.213333pt;}
.y16c{bottom:512.293333pt;}
.y197{bottom:517.893333pt;}
.yf1{bottom:521.653333pt;}
.y13{bottom:522.613333pt;}
.y139{bottom:522.773333pt;}
.y74{bottom:524.773333pt;}
.y16b{bottom:527.893333pt;}
.y42{bottom:532.053333pt;}
.ybb{bottom:534.613333pt;}
.y10a{bottom:536.293333pt;}
.y118{bottom:536.853333pt;}
.y12{bottom:538.213333pt;}
.ybc{bottom:539.122184pt;}
.ybf{bottom:539.122198pt;}
.y196{bottom:541.573333pt;}
.y138{bottom:546.693333pt;}
.y73{bottom:548.453333pt;}
.y16a{bottom:551.493333pt;}
.y123{bottom:554.293333pt;}
.y195{bottom:557.173333pt;}
.y41{bottom:560.693333pt;}
.y11{bottom:562.133333pt;}
.y169{bottom:567.173333pt;}
.y132{bottom:569.573333pt;}
.y72{bottom:580.293333pt;}
.y194{bottom:581.093333pt;}
.yee{bottom:581.253333pt;}
.y122{bottom:582.933333pt;}
.y12e{bottom:583.573333pt;}
.y137{bottom:589.573333pt;}
.y131{bottom:598.213333pt;}
.y168{bottom:598.773333pt;}
.y10{bottom:605.093333pt;}
.y12d{bottom:612.213333pt;}
.y167{bottom:614.453333pt;}
.y136{bottom:618.213333pt;}
.y106{bottom:619.493333pt;}
.y71{bottom:623.253333pt;}
.y193{bottom:624.053333pt;}
.y166{bottom:630.053333pt;}
.yf{bottom:636.693333pt;}
.y70{bottom:638.853333pt;}
.y192{bottom:639.653333pt;}
.yeb{bottom:640.773333pt;}
.y165{bottom:645.653333pt;}
.y40{bottom:653.653333pt;}
.y5a{bottom:654.293333pt;}
.y164{bottom:661.333333pt;}
.y6f{bottom:662.533333pt;}
.y191{bottom:663.573333pt;}
.ye{bottom:668.533333pt;}
.y3f{bottom:669.333333pt;}
.y163{bottom:676.933333pt;}
.ye4{bottom:680.693333pt;}
.y3e{bottom:684.933333pt;}
.y59{bottom:685.973333pt;}
.y162{bottom:692.613333pt;}
.y6e{bottom:694.133333pt;}
.y190{bottom:696.453333pt;}
.yb3{bottom:698.453333pt;}
.y3d{bottom:700.613333pt;}
.y58{bottom:701.573333pt;}
.yb7{bottom:702.988887pt;}
.yb8{bottom:702.988902pt;}
.yd{bottom:703.893333pt;}
.y6d{bottom:709.733333pt;}
.y129{bottom:709.973333pt;}
.y3c{bottom:716.213333pt;}
.yc{bottom:719.893333pt;}
.y18f{bottom:720.373333pt;}
.y105{bottom:722.373333pt;}
.y57{bottom:725.173333pt;}
.y6c{bottom:725.413333pt;}
.y3b{bottom:731.813333pt;}
.yb{bottom:732.533333pt;}
.y117{bottom:733.493333pt;}
.y6b{bottom:741.013333pt;}
.y128{bottom:741.573333pt;}
.y3a{bottom:747.493333pt;}
.ya{bottom:751.893333pt;}
.y18e{bottom:753.333333pt;}
.y56{bottom:756.853333pt;}
.ye3{bottom:759.253333pt;}
.y39{bottom:763.093333pt;}
.y161{bottom:763.493333pt;}
.y9{bottom:764.533333pt;}
.y6a{bottom:764.693333pt;}
.y116{bottom:767.413333pt;}
.y18d{bottom:768.933333pt;}
.y127{bottom:770.213333pt;}
.y55{bottom:772.453333pt;}
.y121{bottom:773.973333pt;}
.y38{bottom:778.693333pt;}
.y160{bottom:779.093333pt;}
.ye2{bottom:780.533333pt;}
.y8{bottom:783.893333pt;}
.y104{bottom:785.253333pt;}
.y54{bottom:788.053333pt;}
.y18c{bottom:792.853333pt;}
.y37{bottom:794.373333pt;}
.y15f{bottom:794.693333pt;}
.y115{bottom:796.053333pt;}
.y69{bottom:796.293333pt;}
.y7{bottom:796.533333pt;}
.y53{bottom:804.133333pt;}
.ye1{bottom:804.853333pt;}
.y120{bottom:805.573333pt;}
.y103{bottom:806.533333pt;}
.y36{bottom:809.973333pt;}
.y15e{bottom:810.373333pt;}
.y68{bottom:811.893333pt;}
.y6{bottom:815.893333pt;}
.y52{bottom:822.533333pt;}
.y35{bottom:825.653333pt;}
.y15d{bottom:825.973333pt;}
.y18b{bottom:826.053333pt;}
.y67{bottom:827.573333pt;}
.ye0{bottom:829.173333pt;}
.y11f{bottom:834.213333pt;}
.y34{bottom:841.253333pt;}
.y15c{bottom:841.653333pt;}
.y5{bottom:844.453333pt;}
.y51{bottom:848.533333pt;}
.y102{bottom:850.533333pt;}
.y66{bottom:851.173333pt;}
.ydf{bottom:853.493333pt;}
.y33{bottom:856.853333pt;}
.y15b{bottom:857.253333pt;}
.ya0{bottom:862.373333pt;}
.ya5{bottom:866.855554pt;}
.ya8{bottom:866.855569pt;}
.y18a{bottom:868.933333pt;}
.y32{bottom:872.533333pt;}
.y15a{bottom:872.853333pt;}
.yde{bottom:877.733333pt;}
.y4{bottom:877.893333pt;}
.y50{bottom:880.133333pt;}
.y65{bottom:882.853333pt;}
.y189{bottom:884.613333pt;}
.y31{bottom:888.133333pt;}
.y159{bottom:888.533333pt;}
.yff{bottom:894.453333pt;}
.y4f{bottom:895.813333pt;}
.y64{bottom:898.480000pt;}
.y3{bottom:899.840000pt;}
.y188{bottom:900.240000pt;}
.ydd{bottom:902.080000pt;}
.y30{bottom:903.840000pt;}
.y158{bottom:904.160000pt;}
.y4e{bottom:911.440000pt;}
.y63{bottom:914.080000pt;}
.y187{bottom:915.840000pt;}
.y2f{bottom:919.440000pt;}
.y157{bottom:919.840000pt;}
.ydc{bottom:926.400000pt;}
.y4d{bottom:927.040000pt;}
.y62{bottom:929.760000pt;}
.y186{bottom:931.520000pt;}
.y2e{bottom:935.040000pt;}
.y156{bottom:935.440000pt;}
.yfe{bottom:938.400000pt;}
.y4c{bottom:942.720000pt;}
.y61{bottom:945.360000pt;}
.y185{bottom:947.120000pt;}
.yd9{bottom:950.640000pt;}
.y2d{bottom:950.720000pt;}
.y155{bottom:951.040000pt;}
.y1ac{bottom:958.720000pt;}
.y60{bottom:961.040000pt;}
.y184{bottom:962.800000pt;}
.y114{bottom:964.800000pt;}
.y2c{bottom:966.320000pt;}
.y154{bottom:966.720000pt;}
.y1ab{bottom:974.320000pt;}
.y183{bottom:978.400000pt;}
.yfd{bottom:982.320000pt;}
.y5f{bottom:984.640000pt;}
.y113{bottom:986.320000pt;}
.y2b{bottom:998.000000pt;}
.y182{bottom:1002.320000pt;}
.y2a{bottom:1013.600000pt;}
.y28{bottom:1061.600000pt;}
.h1b{height:23.507321pt;}
.h29{height:23.600000pt;}
.h2b{height:23.680000pt;}
.h2a{height:23.706667pt;}
.h15{height:24.007379pt;}
.h25{height:24.075041pt;}
.h2{height:29.348125pt;}
.h19{height:30.853359pt;}
.h13{height:31.282342pt;}
.h22{height:31.370508pt;}
.h24{height:31.370800pt;}
.h6{height:31.806563pt;}
.h3{height:35.644531pt;}
.h10{height:39.200000pt;}
.h2d{height:39.280000pt;}
.h31{height:43.200000pt;}
.h30{height:43.226667pt;}
.h28{height:43.280000pt;}
.h7{height:45.246562pt;}
.h8{height:47.621094pt;}
.hb{height:47.908125pt;}
.h36{height:49.581562pt;}
.h5{height:49.902344pt;}
.h9{height:52.498125pt;}
.hf{height:53.309531pt;}
.hd{height:55.631875pt;}
.h37{height:55.736250pt;}
.ha{height:57.375000pt;}
.h2c{height:58.880000pt;}
.h2f{height:58.906667pt;}
.h2e{height:58.960000pt;}
.hc{height:60.961875pt;}
.he{height:62.812500pt;}
.h35{height:62.960000pt;}
.h4{height:66.441406pt;}
.h27{height:66.625000pt;}
.h34{height:82.506667pt;}
.h33{height:82.560000pt;}
.h32{height:102.160000pt;}
.h1d{height:154.676981pt;}
.h1c{height:154.676996pt;}
.h20{height:154.677018pt;}
.h1f{height:154.677033pt;}
.h16{height:154.753405pt;}
.h12{height:154.753426pt;}
.h14{height:154.753441pt;}
.h26{height:155.024584pt;}
.h21{height:155.024606pt;}
.h23{height:155.024620pt;}
.h1a{height:157.517034pt;}
.h18{height:157.517041pt;}
.h1e{height:163.200000pt;}
.h11{height:163.226667pt;}
.h17{height:165.600000pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.w1b{width:31.520000pt;}
.w15{width:31.760000pt;}
.w3{width:36.080000pt;}
.w14{width:36.640000pt;}
.w13{width:37.440000pt;}
.w24{width:44.880000pt;}
.w16{width:47.200000pt;}
.wc{width:49.680000pt;}
.w12{width:50.026667pt;}
.wb{width:53.360000pt;}
.wa{width:56.080000pt;}
.w1a{width:58.160000pt;}
.w10{width:60.800000pt;}
.w11{width:66.720000pt;}
.w18{width:67.626667pt;}
.w19{width:72.000000pt;}
.wd{width:75.360000pt;}
.w1c{width:75.520000pt;}
.w1d{width:80.400000pt;}
.w9{width:80.426667pt;}
.w23{width:86.960000pt;}
.w17{width:89.600000pt;}
.w1e{width:90.826667pt;}
.w22{width:93.680000pt;}
.w25{width:100.000000pt;}
.w26{width:100.240000pt;}
.w1f{width:102.240000pt;}
.w21{width:104.106667pt;}
.w8{width:105.598781pt;}
.w7{width:105.602130pt;}
.w5{width:105.840000pt;}
.w20{width:109.440000pt;}
.we{width:114.906667pt;}
.w4{width:137.466667pt;}
.wf{width:147.200000pt;}
.w27{width:240.586667pt;}
.w6{width:390.426667pt;}
.w2{width:793.919988pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x26{left:0.960000pt;}
.x17{left:2.541859pt;}
.x31{left:4.800000pt;}
.xc{left:6.880000pt;}
.x34{left:8.400000pt;}
.x15{left:9.581929pt;}
.x33{left:10.640000pt;}
.x35{left:13.680000pt;}
.x2f{left:15.280000pt;}
.x37{left:19.120000pt;}
.x32{left:21.120000pt;}
.x2d{left:22.960000pt;}
.x16{left:24.190218pt;}
.x11{left:25.422254pt;}
.x2b{left:27.146667pt;}
.x29{left:28.160000pt;}
.x36{left:32.320000pt;}
.x13{left:36.158474pt;}
.x12{left:38.094505pt;}
.x19{left:49.976934pt;}
.x14{left:51.294766pt;}
.x1{left:60.480000pt;}
.x1a{left:72.857393pt;}
.x7{left:76.159988pt;}
.xd{left:97.840000pt;}
.x55{left:98.879988pt;}
.x18{left:112.480000pt;}
.x53{left:116.959988pt;}
.x22{left:128.480000pt;}
.x38{left:142.240000pt;}
.x3e{left:153.146667pt;}
.x1b{left:156.746667pt;}
.x2{left:171.306655pt;}
.x23{left:179.146667pt;}
.x3f{left:198.746667pt;}
.x1c{left:213.466667pt;}
.x24{left:217.226667pt;}
.x45{left:225.386655pt;}
.x39{left:233.786667pt;}
.xe{left:235.946667pt;}
.x10{left:242.839982pt;}
.x25{left:254.586667pt;}
.x4e{left:265.146655pt;}
.x43{left:266.106655pt;}
.x1d{left:267.546667pt;}
.x54{left:277.946655pt;}
.x49{left:279.866655pt;}
.x47{left:284.586655pt;}
.x27{left:287.066667pt;}
.x4b{left:288.106655pt;}
.x40{left:299.386667pt;}
.x5{left:304.746655pt;}
.x1e{left:317.946667pt;}
.xa{left:330.906655pt;}
.x28{left:334.986667pt;}
.x3a{left:336.666667pt;}
.xf{left:342.426667pt;}
.x8{left:354.426655pt;}
.x1f{left:394.026667pt;}
.xb{left:396.986655pt;}
.x41{left:400.266667pt;}
.x2a{left:425.226667pt;}
.x3b{left:446.746667pt;}
.x4{left:462.053322pt;}
.x2c{left:493.493333pt;}
.x20{left:509.653333pt;}
.x3c{left:551.493333pt;}
.x2e{left:566.213333pt;}
.x4a{left:592.053322pt;}
.x4d{left:624.053322pt;}
.x30{left:625.093333pt;}
.x6{left:629.013322pt;}
.x4c{left:635.013322pt;}
.x46{left:638.053322pt;}
.x3d{left:645.893333pt;}
.x9{left:650.053322pt;}
.x4f{left:654.053322pt;}
.x21{left:657.573333pt;}
.x44{left:660.053322pt;}
.x42{left:686.053322pt;}
.x51{left:689.013322pt;}
.x48{left:697.013322pt;}
.x52{left:699.013322pt;}
.x50{left:703.013322pt;}
.x3{left:711.413322pt;}
}




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