
    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_3a86391512a9571de9379bd2.woff')format("woff");}.ff1{font-family:ff1;line-height:0.921387;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_60590b4e9b7c8986ae94758e.woff')format("woff");}.ff2{font-family:ff2;line-height:0.986328;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_979fce3c68fe7be707748bb6.woff')format("woff");}.ff3{font-family:ff3;line-height:0.914062;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_9dde357bd97ee6fce0580f06.woff')format("woff");}.ff4{font-family:ff4;line-height:1.003906;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_2c06f56bdfc90ae3516ec3bc.woff')format("woff");}.ff5{font-family:ff5;line-height:0.986328;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_a078d90d27ba73c98aef57cb.woff')format("woff");}.ff6{font-family:ff6;line-height:1.352051;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_e2c7eb55686fd924b6db79b3.woff')format("woff");}.ff7{font-family:ff7;line-height:0.752441;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_edcf6a9f273acc2a89d5ea8e.woff')format("woff");}.ff8{font-family:ff8;line-height:1.338867;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_eb67a6d1a5af955c7d68715e.woff')format("woff");}.ff9{font-family:ff9;line-height:0.899414;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_d5748d7f76e16d2cb1a7bd0f.woff')format("woff");}.ffa{font-family:ffa;line-height:1.338867;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_264da8e425e7ff34fd6ef52e.woff')format("woff");}.ffb{font-family:ffb;line-height:0.783691;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_cf9f6d16430008c58f469fb1.woff')format("woff");}.ffc{font-family:ffc;line-height:0.739746;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_0f02acd73e29ec4e37ff09b9.woff')format("woff");}.ffd{font-family:ffd;line-height:0.752930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_d8bbc478616c3c69ec0437d6.woff')format("woff");}.ffe{font-family:ffe;line-height:1.352051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_5e9d7617daf4874a16899968.woff')format("woff");}.fff{font-family:fff;line-height:1.034000;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.237173,0.000000,-0.079050,0.237173,0,0);-ms-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-webkit-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.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);}
.v2{vertical-align:-77.400000px;}
.v3{vertical-align:-4.680000px;}
.v6{vertical-align:-1.440000px;}
.v0{vertical-align:0.000000px;}
.v5{vertical-align:1.080000px;}
.v4{vertical-align:4.680000px;}
.v1{vertical-align:18.000000px;}
.ls1b{letter-spacing:-1.392000px;}
.lsc{letter-spacing:-0.469910px;}
.ls1a{letter-spacing:-0.445800px;}
.lsd{letter-spacing:-0.360000px;}
.ls27{letter-spacing:-0.128400px;}
.ls29{letter-spacing:-0.105600px;}
.lsa{letter-spacing:-0.090440px;}
.lse{letter-spacing:-0.085800px;}
.ls8{letter-spacing:-0.045360px;}
.lsf{letter-spacing:-0.004680px;}
.ls7{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.036000px;}
.ls9{letter-spacing:0.067200px;}
.ls2{letter-spacing:0.072000px;}
.ls1f{letter-spacing:0.087000px;}
.ls0{letter-spacing:0.180000px;}
.ls10{letter-spacing:0.191520px;}
.ls21{letter-spacing:0.273960px;}
.lsb{letter-spacing:0.289029px;}
.ls23{letter-spacing:1.167120px;}
.ls18{letter-spacing:2.391480px;}
.ls1d{letter-spacing:3.111480px;}
.ls12{letter-spacing:4.680000px;}
.ls15{letter-spacing:4.767120px;}
.ls20{letter-spacing:5.040000px;}
.ls25{letter-spacing:6.927120px;}
.ls24{letter-spacing:7.287120px;}
.ls11{letter-spacing:8.007120px;}
.ls1c{letter-spacing:8.246880px;}
.ls5{letter-spacing:10.530000px;}
.ls6{letter-spacing:12.327120px;}
.ls22{letter-spacing:13.311480px;}
.ls14{letter-spacing:16.200000px;}
.ls1e{letter-spacing:17.727120px;}
.ls28{letter-spacing:21.480000px;}
.ls17{letter-spacing:22.047120px;}
.ls4{letter-spacing:39.600000px;}
.ls26{letter-spacing:46.286640px;}
.ls16{letter-spacing:55.887120px;}
.ls13{letter-spacing:58.407120px;}
.ls19{letter-spacing:199.527120px;}
.ls1{letter-spacing:832.530000px;}
.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;}
}
.ws2{word-spacing:-72.000000px;}
.ws4{word-spacing:-29.808000px;}
.ws8{word-spacing:-18.182880px;}
.ws3{word-spacing:-18.000000px;}
.wse{word-spacing:-16.593120px;}
.ws7{word-spacing:-16.537200px;}
.ws10{word-spacing:-16.472880px;}
.ws6{word-spacing:-16.470000px;}
.wsf{word-spacing:-16.468200px;}
.ws5{word-spacing:-16.424640px;}
.ws16{word-spacing:-15.210000px;}
.ws0{word-spacing:-15.030000px;}
.wsa{word-spacing:-13.500000px;}
.wsb{word-spacing:-13.140000px;}
.ws1{word-spacing:-11.970000px;}
.ws13{word-spacing:-0.131760px;}
.ws9{word-spacing:-0.060120px;}
.wsc{word-spacing:-0.054000px;}
.ws11{word-spacing:0.000000px;}
.ws15{word-spacing:0.119880px;}
.ws12{word-spacing:1.331880px;}
.wsd{word-spacing:20.019960px;}
.ws14{word-spacing:20.122560px;}
._23{margin-left:-199.527120px;}
._6{margin-left:-32.508000px;}
._2b{margin-left:-21.272520px;}
._9{margin-left:-20.160120px;}
._f{margin-left:-19.071360px;}
._29{margin-left:-17.629920px;}
._24{margin-left:-15.505800px;}
._25{margin-left:-12.529320px;}
._20{margin-left:-11.308440px;}
._22{margin-left:-9.378720px;}
._1a{margin-left:-7.319160px;}
._14{margin-left:-6.114600px;}
._b{margin-left:-4.509000px;}
._4{margin-left:-3.348000px;}
._13{margin-left:-2.309880px;}
._0{margin-left:-1.128960px;}
._3{width:1.062120px;}
._5{width:2.808000px;}
._c{width:4.268520px;}
._12{width:5.350680px;}
._15{width:7.045560px;}
._11{width:8.236440px;}
._10{width:9.378720px;}
._d{width:10.641240px;}
._e{width:12.331320px;}
._8{width:13.887720px;}
._1c{width:15.210360px;}
._21{width:16.555560px;}
._17{width:18.519240px;}
._a{width:20.440800px;}
._1e{width:21.626040px;}
._1f{width:22.958880px;}
._28{width:24.656160px;}
._2c{width:26.100360px;}
._26{width:27.217200px;}
._27{width:29.012160px;}
._2a{width:30.738600px;}
._16{width:31.955880px;}
._7{width:33.372000px;}
._1b{width:35.529840px;}
._18{width:39.245880px;}
._19{width:40.416240px;}
._1d{width:199.527120px;}
._1{width:302.788920px;}
._2{width:372.032040px;}
.fc3{color:rgb(0,0,0);}
.fc2{color:rgb(255,0,0);}
.fc5{color:rgb(5,99,193);}
.fc1{color:rgb(0,32,96);}
.fc4{color:rgb(0,112,192);}
.fc0{color:rgb(192,0,0);}
.fs8{font-size:6.120000px;}
.fsa{font-size:11.880000px;}
.fs3{font-size:29.880000px;}
.fs2{font-size:47.880000px;}
.fsd{font-size:51.120000px;}
.fsb{font-size:54.000000px;}
.fs1{font-size:60.120000px;}
.fsc{font-size:63.371411px;}
.fs4{font-size:65.880000px;}
.fs0{font-size:72.000000px;}
.fs6{font-size:96.120000px;}
.fs9{font-size:108.000000px;}
.fs5{font-size:132.120000px;}
.fs7{font-size:168.120000px;}
.y0{bottom:0.000000px;}
.y1e{bottom:0.360000px;}
.y7{bottom:2.610000px;}
.y3d{bottom:2.880000px;}
.y34{bottom:3.240000px;}
.y10{bottom:3.870000px;}
.y21{bottom:4.140000px;}
.y5{bottom:8.370000px;}
.y22{bottom:9.360000px;}
.y6{bottom:16.470000px;}
.y3c{bottom:18.450000px;}
.y33{bottom:21.060000px;}
.yf{bottom:22.320000px;}
.ya7{bottom:30.240000px;}
.ye{bottom:33.210000px;}
.y3b{bottom:33.930000px;}
.y4d{bottom:35.640000px;}
.y32{bottom:40.950000px;}
.ya6{bottom:44.010000px;}
.y8{bottom:49.140000px;}
.y3a{bottom:49.410000px;}
.yd{bottom:51.690000px;}
.y4c{bottom:60.030000px;}
.y31{bottom:60.930000px;}
.y39{bottom:65.010000px;}
.yc{bottom:65.820000px;}
.y4{bottom:73.530000px;}
.y38{bottom:80.490000px;}
.y30{bottom:80.910000px;}
.y37{bottom:96.060000px;}
.y2f{bottom:100.800000px;}
.yb{bottom:103.710000px;}
.y11{bottom:103.980000px;}
.y36{bottom:111.540000px;}
.y7f{bottom:112.860000px;}
.y2e{bottom:120.780000px;}
.y4b{bottom:122.670000px;}
.y42{bottom:126.090000px;}
.y7e{bottom:132.750000px;}
.ya{bottom:136.200000px;}
.y2d{bottom:140.760000px;}
.y41{bottom:142.110000px;}
.y4a{bottom:142.560000px;}
.y7d{bottom:152.730000px;}
.y40{bottom:160.020000px;}
.y2c{bottom:160.650000px;}
.y49{bottom:162.570000px;}
.y7c{bottom:172.740000px;}
.y3f{bottom:178.020000px;}
.y2b{bottom:180.630000px;}
.y48{bottom:182.550000px;}
.y7b{bottom:192.630000px;}
.ya3{bottom:192.810000px;}
.y2a{bottom:200.610000px;}
.y47{bottom:202.440000px;}
.ya2{bottom:208.290000px;}
.y7a{bottom:212.610000px;}
.y29{bottom:220.500000px;}
.y46{bottom:222.420000px;}
.ya1{bottom:223.860000px;}
.y79{bottom:232.590000px;}
.ya0{bottom:239.700000px;}
.y28{bottom:240.480000px;}
.y78{bottom:252.480000px;}
.ya5{bottom:254.460000px;}
.y27{bottom:260.460000px;}
.y45{bottom:261.750000px;}
.y77{bottom:272.460000px;}
.y44{bottom:279.570000px;}
.y26{bottom:280.380000px;}
.y76{bottom:292.440000px;}
.y43{bottom:298.560000px;}
.y25{bottom:300.360000px;}
.ya4{bottom:310.440000px;}
.y23{bottom:311.160000px;}
.y75{bottom:312.330000px;}
.y24{bottom:319.800000px;}
.y74{bottom:332.310000px;}
.y9f{bottom:337.170000px;}
.y73{bottom:352.290000px;}
.y9e{bottom:354.450000px;}
.y9d{bottom:371.640000px;}
.y72{bottom:372.270000px;}
.y9c{bottom:389.460000px;}
.y71{bottom:392.160000px;}
.y9b{bottom:409.350000px;}
.y70{bottom:412.140000px;}
.y9a{bottom:425.100000px;}
.y6f{bottom:432.120000px;}
.y99{bottom:440.760000px;}
.y6e{bottom:452.010000px;}
.y98{bottom:458.490000px;}
.y6d{bottom:471.990000px;}
.y97{bottom:474.240000px;}
.y96{bottom:491.520000px;}
.y6c{bottom:491.970000px;}
.y3e{bottom:504.480000px;}
.y95{bottom:509.250000px;}
.y6b{bottom:511.860000px;}
.y35{bottom:520.770000px;}
.y94{bottom:525.000000px;}
.y6a{bottom:531.840000px;}
.y93{bottom:540.660000px;}
.y69{bottom:551.820000px;}
.y92{bottom:558.390000px;}
.y68{bottom:571.710000px;}
.y91{bottom:574.170000px;}
.y90{bottom:589.920000px;}
.y67{bottom:591.720000px;}
.y8f{bottom:605.670000px;}
.y66{bottom:611.700000px;}
.y8e{bottom:622.950000px;}
.y65{bottom:631.590000px;}
.y8d{bottom:640.590000px;}
.y20{bottom:645.720000px;}
.y64{bottom:651.570000px;}
.y8c{bottom:656.340000px;}
.y63{bottom:671.280000px;}
.y62{bottom:671.550000px;}
.y8b{bottom:672.090000px;}
.y1f{bottom:681.270000px;}
.y1d{bottom:684.150000px;}
.y8a{bottom:687.390000px;}
.y1c{bottom:689.820000px;}
.y61{bottom:691.440000px;}
.y89{bottom:705.120000px;}
.y1b{bottom:707.100000px;}
.y60{bottom:711.420000px;}
.y88{bottom:720.780000px;}
.y1a{bottom:726.900000px;}
.y5f{bottom:731.400000px;}
.y87{bottom:736.530000px;}
.y5e{bottom:751.290000px;}
.y86{bottom:753.810000px;}
.y19{bottom:755.700000px;}
.y5d{bottom:771.270000px;}
.y85{bottom:771.540000px;}
.y18{bottom:774.690000px;}
.y84{bottom:787.290000px;}
.y5c{bottom:791.250000px;}
.y17{bottom:795.930000px;}
.y83{bottom:802.950000px;}
.y5b{bottom:811.140000px;}
.y82{bottom:818.700000px;}
.y16{bottom:827.880000px;}
.y5a{bottom:831.120000px;}
.y81{bottom:835.980000px;}
.y59{bottom:851.100000px;}
.y80{bottom:853.260000px;}
.y15{bottom:863.790000px;}
.y58{bottom:871.080000px;}
.y57{bottom:890.970000px;}
.y14{bottom:898.800000px;}
.y56{bottom:910.950000px;}
.y13{bottom:927.240000px;}
.y55{bottom:930.930000px;}
.y54{bottom:950.820000px;}
.y12{bottom:953.700000px;}
.y9{bottom:955.860000px;}
.y53{bottom:970.800000px;}
.y52{bottom:990.780000px;}
.y51{bottom:1010.700000px;}
.y50{bottom:1030.680000px;}
.y4f{bottom:1050.660000px;}
.y4e{bottom:1070.550000px;}
.y3{bottom:1102.320000px;}
.y2{bottom:1119.510000px;}
.y1{bottom:1137.420000px;}
.h14{height:1.710000px;}
.h15{height:4.273242px;}
.hf{height:4.318066px;}
.h16{height:8.382129px;}
.h28{height:13.770000px;}
.h1f{height:15.480000px;}
.hc{height:20.863477px;}
.ha{height:21.082324px;}
.h17{height:21.960000px;}
.h4{height:27.630000px;}
.h6{height:33.431836px;}
.h29{height:33.782520px;}
.h23{height:36.068555px;}
.h22{height:37.705078px;}
.h19{height:38.100586px;}
.h7{height:39.082324px;}
.h1e{height:41.343750px;}
.h5{height:41.978320px;}
.h3{height:42.418652px;}
.h26{height:43.769004px;}
.h24{height:44.502891px;}
.h2{height:45.295488px;}
.h13{height:46.000195px;}
.h12{height:46.482715px;}
.h1c{height:46.909697px;}
.h27{height:48.156120px;}
.h1{height:50.800781px;}
.h2a{height:55.170000px;}
.h21{height:58.271484px;}
.h1b{height:64.875586px;}
.h8{height:65.526152px;}
.h25{height:65.955586px;}
.h18{height:71.091211px;}
.hd{height:72.418535px;}
.h10{height:76.201172px;}
.hb{height:93.219434px;}
.h11{height:116.542969px;}
.he{height:118.619824px;}
.h1d{height:124.140000px;}
.h9{height:143.220000px;}
.h20{height:192.510000px;}
.h1a{height:333.750000px;}
.h0{height:1188.000000px;}
.w2{width:34.020000px;}
.w5{width:165.900000px;}
.w8{width:228.270000px;}
.w9{width:384.150000px;}
.w7{width:592.530000px;}
.w4{width:648.060000px;}
.w3{width:745.470000px;}
.w6{width:901.530000px;}
.w1{width:917.999986px;}
.w0{width:918.000000px;}
.xd{left:-8.820000px;}
.x0{left:0.000000px;}
.x14{left:3.150000px;}
.x4{left:4.320000px;}
.x42{left:6.749986px;}
.x15{left:8.100000px;}
.x20{left:41.310000px;}
.x40{left:43.650000px;}
.x6{left:45.540000px;}
.x16{left:46.710000px;}
.x21{left:49.140000px;}
.x43{left:52.110000px;}
.x1{left:53.999986px;}
.x1c{left:59.220000px;}
.x3b{left:60.930000px;}
.x18{left:65.070000px;}
.x3c{left:69.300000px;}
.xa{left:70.470000px;}
.x22{left:79.470000px;}
.x23{left:87.300000px;}
.x2f{left:90.900000px;}
.x3{left:99.360000px;}
.x9{left:105.480000px;}
.x2{left:107.999986px;}
.xe{left:117.179986px;}
.x47{left:120.240000px;}
.x34{left:122.520000px;}
.x35{left:129.900000px;}
.x5{left:134.460000px;}
.x3a{left:138.630000px;}
.x30{left:186.060000px;}
.x31{left:194.700000px;}
.x8{left:200.190000px;}
.x24{left:203.340000px;}
.x25{left:213.240000px;}
.x32{left:221.790000px;}
.x2e{left:227.190000px;}
.x33{left:230.430000px;}
.xb{left:231.780000px;}
.x36{left:239.970000px;}
.x37{left:247.350000px;}
.x28{left:251.400000px;}
.x29{left:259.500000px;}
.x38{left:291.360000px;}
.x26{left:297.300000px;}
.x39{left:298.920000px;}
.x27{left:307.200000px;}
.x7{left:324.030000px;}
.x44{left:338.219986px;}
.x2c{left:343.470000px;}
.x2d{left:353.010000px;}
.x2a{left:358.230000px;}
.x2b{left:366.420000px;}
.x11{left:375.239986px;}
.x12{left:385.949986px;}
.x3f{left:388.290000px;}
.xf{left:414.029986px;}
.x3d{left:438.810000px;}
.x3e{left:446.820000px;}
.x10{left:464.159986px;}
.x13{left:466.139986px;}
.x1d{left:473.730000px;}
.x41{left:486.059986px;}
.x46{left:501.180000px;}
.x45{left:513.059986px;}
.x1e{left:517.830000px;}
.x19{left:520.260000px;}
.x1f{left:527.910000px;}
.x1a{left:531.060000px;}
.x1b{left:581.550000px;}
.x17{left:640.050000px;}
.xc{left:693.600000px;}
@media print{
.v2{vertical-align:-68.800000pt;}
.v3{vertical-align:-4.160000pt;}
.v6{vertical-align:-1.280000pt;}
.v0{vertical-align:0.000000pt;}
.v5{vertical-align:0.960000pt;}
.v4{vertical-align:4.160000pt;}
.v1{vertical-align:16.000000pt;}
.ls1b{letter-spacing:-1.237333pt;}
.lsc{letter-spacing:-0.417698pt;}
.ls1a{letter-spacing:-0.396267pt;}
.lsd{letter-spacing:-0.320000pt;}
.ls27{letter-spacing:-0.114133pt;}
.ls29{letter-spacing:-0.093867pt;}
.lsa{letter-spacing:-0.080391pt;}
.lse{letter-spacing:-0.076267pt;}
.ls8{letter-spacing:-0.040320pt;}
.lsf{letter-spacing:-0.004160pt;}
.ls7{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.032000pt;}
.ls9{letter-spacing:0.059733pt;}
.ls2{letter-spacing:0.064000pt;}
.ls1f{letter-spacing:0.077333pt;}
.ls0{letter-spacing:0.160000pt;}
.ls10{letter-spacing:0.170240pt;}
.ls21{letter-spacing:0.243520pt;}
.lsb{letter-spacing:0.256915pt;}
.ls23{letter-spacing:1.037440pt;}
.ls18{letter-spacing:2.125760pt;}
.ls1d{letter-spacing:2.765760pt;}
.ls12{letter-spacing:4.160000pt;}
.ls15{letter-spacing:4.237440pt;}
.ls20{letter-spacing:4.480000pt;}
.ls25{letter-spacing:6.157440pt;}
.ls24{letter-spacing:6.477440pt;}
.ls11{letter-spacing:7.117440pt;}
.ls1c{letter-spacing:7.330560pt;}
.ls5{letter-spacing:9.360000pt;}
.ls6{letter-spacing:10.957440pt;}
.ls22{letter-spacing:11.832427pt;}
.ls14{letter-spacing:14.400000pt;}
.ls1e{letter-spacing:15.757440pt;}
.ls28{letter-spacing:19.093333pt;}
.ls17{letter-spacing:19.597440pt;}
.ls4{letter-spacing:35.200000pt;}
.ls26{letter-spacing:41.143680pt;}
.ls16{letter-spacing:49.677440pt;}
.ls13{letter-spacing:51.917440pt;}
.ls19{letter-spacing:177.357440pt;}
.ls1{letter-spacing:740.026667pt;}
.ws2{word-spacing:-64.000000pt;}
.ws4{word-spacing:-26.496000pt;}
.ws8{word-spacing:-16.162560pt;}
.ws3{word-spacing:-16.000000pt;}
.wse{word-spacing:-14.749440pt;}
.ws7{word-spacing:-14.699733pt;}
.ws10{word-spacing:-14.642560pt;}
.ws6{word-spacing:-14.640000pt;}
.wsf{word-spacing:-14.638400pt;}
.ws5{word-spacing:-14.599680pt;}
.ws16{word-spacing:-13.520000pt;}
.ws0{word-spacing:-13.360000pt;}
.wsa{word-spacing:-12.000000pt;}
.wsb{word-spacing:-11.680000pt;}
.ws1{word-spacing:-10.640000pt;}
.ws13{word-spacing:-0.117120pt;}
.ws9{word-spacing:-0.053440pt;}
.wsc{word-spacing:-0.048000pt;}
.ws11{word-spacing:0.000000pt;}
.ws15{word-spacing:0.106560pt;}
.ws12{word-spacing:1.183893pt;}
.wsd{word-spacing:17.795520pt;}
.ws14{word-spacing:17.886720pt;}
._23{margin-left:-177.357440pt;}
._6{margin-left:-28.896000pt;}
._2b{margin-left:-18.908907pt;}
._9{margin-left:-17.920107pt;}
._f{margin-left:-16.952320pt;}
._29{margin-left:-15.671040pt;}
._24{margin-left:-13.782933pt;}
._25{margin-left:-11.137173pt;}
._20{margin-left:-10.051947pt;}
._22{margin-left:-8.336640pt;}
._1a{margin-left:-6.505920pt;}
._14{margin-left:-5.435200pt;}
._b{margin-left:-4.008000pt;}
._4{margin-left:-2.976000pt;}
._13{margin-left:-2.053227pt;}
._0{margin-left:-1.003520pt;}
._3{width:0.944107pt;}
._5{width:2.496000pt;}
._c{width:3.794240pt;}
._12{width:4.756160pt;}
._15{width:6.262720pt;}
._11{width:7.321280pt;}
._10{width:8.336640pt;}
._d{width:9.458880pt;}
._e{width:10.961173pt;}
._8{width:12.344640pt;}
._1c{width:13.520320pt;}
._21{width:14.716053pt;}
._17{width:16.461547pt;}
._a{width:18.169600pt;}
._1e{width:19.223147pt;}
._1f{width:20.407893pt;}
._28{width:21.916587pt;}
._2c{width:23.200320pt;}
._26{width:24.193067pt;}
._27{width:25.788587pt;}
._2a{width:27.323200pt;}
._16{width:28.405227pt;}
._7{width:29.664000pt;}
._1b{width:31.582080pt;}
._18{width:34.885227pt;}
._19{width:35.925547pt;}
._1d{width:177.357440pt;}
._1{width:269.145707pt;}
._2{width:330.695147pt;}
.fs8{font-size:5.440000pt;}
.fsa{font-size:10.560000pt;}
.fs3{font-size:26.560000pt;}
.fs2{font-size:42.560000pt;}
.fsd{font-size:45.440000pt;}
.fsb{font-size:48.000000pt;}
.fs1{font-size:53.440000pt;}
.fsc{font-size:56.330143pt;}
.fs4{font-size:58.560000pt;}
.fs0{font-size:64.000000pt;}
.fs6{font-size:85.440000pt;}
.fs9{font-size:96.000000pt;}
.fs5{font-size:117.440000pt;}
.fs7{font-size:149.440000pt;}
.y0{bottom:0.000000pt;}
.y1e{bottom:0.320000pt;}
.y7{bottom:2.320000pt;}
.y3d{bottom:2.560000pt;}
.y34{bottom:2.880000pt;}
.y10{bottom:3.440000pt;}
.y21{bottom:3.680000pt;}
.y5{bottom:7.440000pt;}
.y22{bottom:8.320000pt;}
.y6{bottom:14.640000pt;}
.y3c{bottom:16.400000pt;}
.y33{bottom:18.720000pt;}
.yf{bottom:19.840000pt;}
.ya7{bottom:26.880000pt;}
.ye{bottom:29.520000pt;}
.y3b{bottom:30.160000pt;}
.y4d{bottom:31.680000pt;}
.y32{bottom:36.400000pt;}
.ya6{bottom:39.120000pt;}
.y8{bottom:43.680000pt;}
.y3a{bottom:43.920000pt;}
.yd{bottom:45.946667pt;}
.y4c{bottom:53.360000pt;}
.y31{bottom:54.160000pt;}
.y39{bottom:57.786667pt;}
.yc{bottom:58.506667pt;}
.y4{bottom:65.360000pt;}
.y38{bottom:71.546667pt;}
.y30{bottom:71.920000pt;}
.y37{bottom:85.386667pt;}
.y2f{bottom:89.600000pt;}
.yb{bottom:92.186667pt;}
.y11{bottom:92.426667pt;}
.y36{bottom:99.146667pt;}
.y7f{bottom:100.320000pt;}
.y2e{bottom:107.360000pt;}
.y4b{bottom:109.040000pt;}
.y42{bottom:112.080000pt;}
.y7e{bottom:118.000000pt;}
.ya{bottom:121.066667pt;}
.y2d{bottom:125.120000pt;}
.y41{bottom:126.320000pt;}
.y4a{bottom:126.720000pt;}
.y7d{bottom:135.760000pt;}
.y40{bottom:142.240000pt;}
.y2c{bottom:142.800000pt;}
.y49{bottom:144.506667pt;}
.y7c{bottom:153.546667pt;}
.y3f{bottom:158.240000pt;}
.y2b{bottom:160.560000pt;}
.y48{bottom:162.266667pt;}
.y7b{bottom:171.226667pt;}
.ya3{bottom:171.386667pt;}
.y2a{bottom:178.320000pt;}
.y47{bottom:179.946667pt;}
.ya2{bottom:185.146667pt;}
.y7a{bottom:188.986667pt;}
.y29{bottom:196.000000pt;}
.y46{bottom:197.706667pt;}
.ya1{bottom:198.986667pt;}
.y79{bottom:206.746667pt;}
.ya0{bottom:213.066667pt;}
.y28{bottom:213.760000pt;}
.y78{bottom:224.426667pt;}
.ya5{bottom:226.186667pt;}
.y27{bottom:231.520000pt;}
.y45{bottom:232.666667pt;}
.y77{bottom:242.186667pt;}
.y44{bottom:248.506667pt;}
.y26{bottom:249.226667pt;}
.y76{bottom:259.946667pt;}
.y43{bottom:265.386667pt;}
.y25{bottom:266.986667pt;}
.ya4{bottom:275.946667pt;}
.y23{bottom:276.586667pt;}
.y75{bottom:277.626667pt;}
.y24{bottom:284.266667pt;}
.y74{bottom:295.386667pt;}
.y9f{bottom:299.706667pt;}
.y73{bottom:313.146667pt;}
.y9e{bottom:315.066667pt;}
.y9d{bottom:330.346667pt;}
.y72{bottom:330.906667pt;}
.y9c{bottom:346.186667pt;}
.y71{bottom:348.586667pt;}
.y9b{bottom:363.866667pt;}
.y70{bottom:366.346667pt;}
.y9a{bottom:377.866667pt;}
.y6f{bottom:384.106667pt;}
.y99{bottom:391.786667pt;}
.y6e{bottom:401.786667pt;}
.y98{bottom:407.546667pt;}
.y6d{bottom:419.546667pt;}
.y97{bottom:421.546667pt;}
.y96{bottom:436.906667pt;}
.y6c{bottom:437.306667pt;}
.y3e{bottom:448.426667pt;}
.y95{bottom:452.666667pt;}
.y6b{bottom:454.986667pt;}
.y35{bottom:462.906667pt;}
.y94{bottom:466.666667pt;}
.y6a{bottom:472.746667pt;}
.y93{bottom:480.586667pt;}
.y69{bottom:490.506667pt;}
.y92{bottom:496.346667pt;}
.y68{bottom:508.186667pt;}
.y91{bottom:510.373333pt;}
.y90{bottom:524.373333pt;}
.y67{bottom:525.973333pt;}
.y8f{bottom:538.373333pt;}
.y66{bottom:543.733333pt;}
.y8e{bottom:553.733333pt;}
.y65{bottom:561.413333pt;}
.y8d{bottom:569.413333pt;}
.y20{bottom:573.973333pt;}
.y64{bottom:579.173333pt;}
.y8c{bottom:583.413333pt;}
.y63{bottom:596.693333pt;}
.y62{bottom:596.933333pt;}
.y8b{bottom:597.413333pt;}
.y1f{bottom:605.573333pt;}
.y1d{bottom:608.133333pt;}
.y8a{bottom:611.013333pt;}
.y1c{bottom:613.173333pt;}
.y61{bottom:614.613333pt;}
.y89{bottom:626.773333pt;}
.y1b{bottom:628.533333pt;}
.y60{bottom:632.373333pt;}
.y88{bottom:640.693333pt;}
.y1a{bottom:646.133333pt;}
.y5f{bottom:650.133333pt;}
.y87{bottom:654.693333pt;}
.y5e{bottom:667.813333pt;}
.y86{bottom:670.053333pt;}
.y19{bottom:671.733333pt;}
.y5d{bottom:685.573333pt;}
.y85{bottom:685.813333pt;}
.y18{bottom:688.613333pt;}
.y84{bottom:699.813333pt;}
.y5c{bottom:703.333333pt;}
.y17{bottom:707.493333pt;}
.y83{bottom:713.733333pt;}
.y5b{bottom:721.013333pt;}
.y82{bottom:727.733333pt;}
.y16{bottom:735.893333pt;}
.y5a{bottom:738.773333pt;}
.y81{bottom:743.093333pt;}
.y59{bottom:756.533333pt;}
.y80{bottom:758.453333pt;}
.y15{bottom:767.813333pt;}
.y58{bottom:774.293333pt;}
.y57{bottom:791.973333pt;}
.y14{bottom:798.933333pt;}
.y56{bottom:809.733333pt;}
.y13{bottom:824.213333pt;}
.y55{bottom:827.493333pt;}
.y54{bottom:845.173333pt;}
.y12{bottom:847.733333pt;}
.y9{bottom:849.653333pt;}
.y53{bottom:862.933333pt;}
.y52{bottom:880.693333pt;}
.y51{bottom:898.400000pt;}
.y50{bottom:916.160000pt;}
.y4f{bottom:933.920000pt;}
.y4e{bottom:951.600000pt;}
.y3{bottom:979.840000pt;}
.y2{bottom:995.120000pt;}
.y1{bottom:1011.040000pt;}
.h14{height:1.520000pt;}
.h15{height:3.798437pt;}
.hf{height:3.838281pt;}
.h16{height:7.450781pt;}
.h28{height:12.240000pt;}
.h1f{height:13.760000pt;}
.hc{height:18.545312pt;}
.ha{height:18.739844pt;}
.h17{height:19.520000pt;}
.h4{height:24.560000pt;}
.h6{height:29.717188pt;}
.h29{height:30.028906pt;}
.h23{height:32.060937pt;}
.h22{height:33.515625pt;}
.h19{height:33.867188pt;}
.h7{height:34.739844pt;}
.h1e{height:36.750000pt;}
.h5{height:37.314062pt;}
.h3{height:37.705469pt;}
.h26{height:38.905781pt;}
.h24{height:39.558125pt;}
.h2{height:40.262656pt;}
.h13{height:40.889062pt;}
.h12{height:41.317969pt;}
.h1c{height:41.697508pt;}
.h27{height:42.805440pt;}
.h1{height:45.156250pt;}
.h2a{height:49.040000pt;}
.h21{height:51.796875pt;}
.h1b{height:57.667187pt;}
.h8{height:58.245469pt;}
.h25{height:58.627187pt;}
.h18{height:63.192187pt;}
.hd{height:64.372031pt;}
.h10{height:67.734375pt;}
.hb{height:82.861719pt;}
.h11{height:103.593750pt;}
.he{height:105.439844pt;}
.h1d{height:110.346667pt;}
.h9{height:127.306667pt;}
.h20{height:171.120000pt;}
.h1a{height:296.666667pt;}
.h0{height:1056.000000pt;}
.w2{width:30.240000pt;}
.w5{width:147.466667pt;}
.w8{width:202.906667pt;}
.w9{width:341.466667pt;}
.w7{width:526.693333pt;}
.w4{width:576.053333pt;}
.w3{width:662.640000pt;}
.w6{width:801.360000pt;}
.w1{width:815.999988pt;}
.w0{width:816.000000pt;}
.xd{left:-7.840000pt;}
.x0{left:0.000000pt;}
.x14{left:2.800000pt;}
.x4{left:3.840000pt;}
.x42{left:5.999988pt;}
.x15{left:7.200000pt;}
.x20{left:36.720000pt;}
.x40{left:38.800000pt;}
.x6{left:40.480000pt;}
.x16{left:41.520000pt;}
.x21{left:43.680000pt;}
.x43{left:46.320000pt;}
.x1{left:47.999988pt;}
.x1c{left:52.640000pt;}
.x3b{left:54.160000pt;}
.x18{left:57.840000pt;}
.x3c{left:61.600000pt;}
.xa{left:62.640000pt;}
.x22{left:70.640000pt;}
.x23{left:77.600000pt;}
.x2f{left:80.800000pt;}
.x3{left:88.320000pt;}
.x9{left:93.760000pt;}
.x2{left:95.999988pt;}
.xe{left:104.159988pt;}
.x47{left:106.880000pt;}
.x34{left:108.906667pt;}
.x35{left:115.466667pt;}
.x5{left:119.520000pt;}
.x3a{left:123.226667pt;}
.x30{left:165.386667pt;}
.x31{left:173.066667pt;}
.x8{left:177.946667pt;}
.x24{left:180.746667pt;}
.x25{left:189.546667pt;}
.x32{left:197.146667pt;}
.x2e{left:201.946667pt;}
.x33{left:204.826667pt;}
.xb{left:206.026667pt;}
.x36{left:213.306667pt;}
.x37{left:219.866667pt;}
.x28{left:223.466667pt;}
.x29{left:230.666667pt;}
.x38{left:258.986667pt;}
.x26{left:264.266667pt;}
.x39{left:265.706667pt;}
.x27{left:273.066667pt;}
.x7{left:288.026667pt;}
.x44{left:300.639988pt;}
.x2c{left:305.306667pt;}
.x2d{left:313.786667pt;}
.x2a{left:318.426667pt;}
.x2b{left:325.706667pt;}
.x11{left:333.546655pt;}
.x12{left:343.066655pt;}
.x3f{left:345.146667pt;}
.xf{left:368.026655pt;}
.x3d{left:390.053333pt;}
.x3e{left:397.173333pt;}
.x10{left:412.586655pt;}
.x13{left:414.346655pt;}
.x1d{left:421.093333pt;}
.x41{left:432.053321pt;}
.x46{left:445.493333pt;}
.x45{left:456.053321pt;}
.x1e{left:460.293333pt;}
.x19{left:462.453333pt;}
.x1f{left:469.253333pt;}
.x1a{left:472.053333pt;}
.x1b{left:516.933333pt;}
.x17{left:568.933333pt;}
.xc{left:616.533333pt;}
}




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