
    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_14b6a7a7ccb0a09a3466c835.woff')format("woff");}.ff1{font-family:ff1;line-height:1.079102;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_bd67f97d8389cf3f97ec28b7.woff')format("woff");}.ff2{font-family:ff2;line-height:1.079102;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_9dde357bd97ee6fce0580f06.woff')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_5e8b96cdf9a697ae2caf52c9.woff')format("woff");}.ff4{font-family:ff4;line-height:1.079102;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_52742976854eecf533124a78.woff')format("woff");}.ff5{font-family:ff5;line-height:1.079102;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_bfadc4dbaa7b0c516ae843b7.woff')format("woff");}.ff6{font-family:ff6;line-height:0.960449;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_0e7acf311aa2b6b70c0e3001.woff')format("woff");}.ff7{font-family:ff7;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_9fb698a9e3f77e568b933968.woff')format("woff");}.ff8{font-family:ff8;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_9ed4b80d6c460fedb806318a.woff')format("woff");}.ff9{font-family:ff9;line-height:1.079102;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_d8ec546e74ed832d4f4f2cf4.woff')format("woff");}.ffa{font-family:ffa;line-height:1.079102;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_48a58615b6d515c2f62aee18.woff')format("woff");}.ffb{font-family:ffb;line-height:1.079102;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_786c98cadff30823ad92647d.woff')format("woff");}.ffc{font-family:ffc;line-height:1.079102;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_b6f4bac02b5fed23fafbdbee.woff')format("woff");}.ffd{font-family:ffd;line-height:0.767578;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_95ed9a9b1a41d0a4fcea288a.woff')format("woff");}.ffe{font-family:ffe;line-height:1.079102;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_c2ec4e566fa4fbed0ad384b9.woff')format("woff");}.fff{font-family:fff;line-height:0.722168;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url('chunks/assets/font_f06f89932fd39ceb8b960ad6.woff')format("woff");}.ff10{font-family:ff10;line-height:1.079102;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m2{transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-ms-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-webkit-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.ls17{letter-spacing:-1.356000px;}
.ls12{letter-spacing:-0.900000px;}
.ls8{letter-spacing:-0.636000px;}
.ls11{letter-spacing:-0.481200px;}
.ls3{letter-spacing:-0.337200px;}
.ls4{letter-spacing:-0.252000px;}
.ls16{letter-spacing:-0.224400px;}
.ls15{letter-spacing:-0.109200px;}
.ls5{letter-spacing:-0.090600px;}
.lsc{letter-spacing:-0.018000px;}
.ls2{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.006480px;}
.ls18{letter-spacing:0.040320px;}
.ls14{letter-spacing:0.054000px;}
.ls1{letter-spacing:0.083400px;}
.lse{letter-spacing:0.083520px;}
.ls19{letter-spacing:0.114600px;}
.lsd{letter-spacing:0.149760px;}
.ls13{letter-spacing:0.155400px;}
.lsf{letter-spacing:0.236536px;}
.ls10{letter-spacing:0.263520px;}
.lsa{letter-spacing:0.303576px;}
.lsb{letter-spacing:0.593400px;}
.ls9{letter-spacing:0.803520px;}
.ls6{letter-spacing:34.201440px;}
.ls7{letter-spacing:48.421440px;}
.sc_{text-shadow:none;}
.sc1{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);}
.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;}
.sc1{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsa{word-spacing:-75.473400px;}
.wsb{word-spacing:-74.880000px;}
.ws10{word-spacing:-72.000000px;}
.ws12{word-spacing:-54.000000px;}
.ws4{word-spacing:-28.262880px;}
.ws5{word-spacing:-20.142720px;}
.wsf{word-spacing:-17.973960px;}
.ws7{word-spacing:-17.901960px;}
.ws14{word-spacing:-17.858880px;}
.ws6{word-spacing:-17.818560px;}
.ws11{word-spacing:-17.709360px;}
.ws13{word-spacing:-17.594160px;}
.ws0{word-spacing:-17.481360px;}
.wse{word-spacing:-17.337360px;}
.ws9{word-spacing:-16.920000px;}
.wsd{word-spacing:-16.644798px;}
.wsc{word-spacing:-16.408262px;}
.ws15{word-spacing:-16.075440px;}
.ws1{word-spacing:-14.526000px;}
.ws2{word-spacing:-8.909280px;}
.ws3{word-spacing:-8.818680px;}
.ws8{word-spacing:0.000000px;}
._b{margin-left:-17.839680px;}
._9{margin-left:-15.888480px;}
._7{margin-left:-14.644320px;}
._a{margin-left:-12.950880px;}
._6{margin-left:-11.571360px;}
._4{margin-left:-10.365840px;}
._f{margin-left:-8.334720px;}
._5{margin-left:-7.234320px;}
._8{margin-left:-5.436960px;}
._c{margin-left:-3.860160px;}
._11{margin-left:-2.242080px;}
._0{margin-left:-1.059840px;}
._2{width:1.080000px;}
._1f{width:2.352960px;}
._1a{width:3.852480px;}
._10{width:5.342400px;}
._26{width:6.563520px;}
._16{width:7.760640px;}
._1e{width:9.241920px;}
._22{width:10.797120px;}
._19{width:12.188160px;}
._e{width:13.711680px;}
._18{width:14.991360px;}
._17{width:16.162560px;}
._2b{width:18.924480px;}
._2c{width:20.513280px;}
._29{width:21.859200px;}
._2a{width:22.975200px;}
._30{width:24.376320px;}
._31{width:25.899840px;}
._15{width:27.423360px;}
._21{width:31.017600px;}
._2f{width:32.307840px;}
._1c{width:33.583680px;}
._1b{width:34.832160px;}
._20{width:36.329760px;}
._14{width:37.527840px;}
._13{width:39.018720px;}
._27{width:45.573120px;}
._1d{width:48.314160px;}
._28{width:49.379760px;}
._23{width:50.386320px;}
._2d{width:77.753280px;}
._2e{width:79.406400px;}
._d{width:94.259520px;}
._24{width:605.223840px;}
._12{width:771.928800px;}
._25{width:848.249760px;}
._1{width:947.001120px;}
._3{width:1275.198000px;}
.fc3{color:transparent;}
.fc2{color:rgb(46,116,181);}
.fc4{color:rgb(68,84,106);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(0,32,96);}
.fs8{font-size:5.760000px;}
.fs2{font-size:18.000000px;}
.fsb{font-size:30.240000px;}
.fs3{font-size:33.120000px;}
.fs1{font-size:54.000000px;}
.fsc{font-size:59.760000px;}
.fs0{font-size:66.240000px;}
.fsa{font-size:69.822393px;}
.fs9{font-size:72.000000px;}
.fs6{font-size:74.880000px;}
.fs7{font-size:95.760000px;}
.fs5{font-size:108.000000px;}
.fs4{font-size:120.240000px;}
.ycc{bottom:-92.880000px;}
.y94{bottom:-58.680000px;}
.ycb{bottom:-55.980000px;}
.y93{bottom:-21.600000px;}
.yca{bottom:-18.180000px;}
.y0{bottom:0.000000px;}
.y92{bottom:4.140000px;}
.yc9{bottom:7.560000px;}
.y91{bottom:29.880000px;}
.yc8{bottom:33.300000px;}
.y90{bottom:56.520000px;}
.yc{bottom:57.600000px;}
.yc7{bottom:59.985000px;}
.yb{bottom:77.580000px;}
.y8f{bottom:83.700000px;}
.yc6{bottom:87.165000px;}
.ya{bottom:94.860000px;}
.y9{bottom:108.180000px;}
.y8e{bottom:109.470000px;}
.yc5{bottom:113.805000px;}
.y8{bottom:124.380000px;}
.y8d{bottom:136.110000px;}
.yc4{bottom:140.985000px;}
.y61{bottom:143.460000px;}
.y48{bottom:145.260000px;}
.y84{bottom:151.020000px;}
.ye7{bottom:153.540000px;}
.y72{bottom:163.080000px;}
.y8c{bottom:163.290000px;}
.y60{bottom:164.520000px;}
.yc3{bottom:166.725000px;}
.y47{bottom:173.370000px;}
.ye6{bottom:176.970000px;}
.y83{bottom:177.690000px;}
.ybb{bottom:187.590000px;}
.y71{bottom:188.850000px;}
.y8b{bottom:189.030000px;}
.yc2{bottom:193.365000px;}
.y5f{bottom:197.670000px;}
.y82{bottom:204.870000px;}
.y46{bottom:212.430000px;}
.yba{bottom:213.330000px;}
.y8a{bottom:214.770000px;}
.yc1{bottom:220.545000px;}
.y28{bottom:227.550000px;}
.y5e{bottom:230.610000px;}
.y45{bottom:238.170000px;}
.yad{bottom:238.530000px;}
.yb9{bottom:239.070000px;}
.y89{bottom:241.410000px;}
.yc0{bottom:247.185000px;}
.y27{bottom:253.290000px;}
.y81{bottom:256.350000px;}
.y5d{bottom:263.730000px;}
.yac{bottom:264.270000px;}
.yb8{bottom:264.810000px;}
.y70{bottom:266.610000px;}
.y88{bottom:268.590000px;}
.ye5{bottom:272.730000px;}
.ybf{bottom:274.365000px;}
.y44{bottom:277.050000px;}
.y26{bottom:279.030000px;}
.y80{bottom:282.090000px;}
.yab{bottom:290.010000px;}
.y6f{bottom:292.350000px;}
.y87{bottom:294.330000px;}
.y5c{bottom:296.850000px;}
.ye4{bottom:298.470000px;}
.ybe{bottom:301.035000px;}
.yb7{bottom:303.690000px;}
.y25{bottom:304.770000px;}
.y7f{bottom:307.830000px;}
.yaa{bottom:315.750000px;}
.y6e{bottom:318.090000px;}
.ye3{bottom:324.210000px;}
.y5b{bottom:329.790000px;}
.y24{bottom:330.510000px;}
.y86{bottom:333.030000px;}
.y7e{bottom:334.470000px;}
.ybd{bottom:341.175000px;}
.y43{bottom:341.310000px;}
.ya9{bottom:341.670000px;}
.ye2{bottom:349.950000px;}
.y23{bottom:356.250000px;}
.y6d{bottom:357.150000px;}
.ybc{bottom:360.570000px;}
.y5a{bottom:362.910000px;}
.ya8{bottom:367.410000px;}
.y7d{bottom:373.710000px;}
.ye1{bottom:375.690000px;}
.y42{bottom:378.930000px;}
.y22{bottom:381.990000px;}
.ya7{bottom:393.150000px;}
.y59{bottom:396.030000px;}
.ye0{bottom:401.430000px;}
.y41{bottom:404.670000px;}
.y7c{bottom:411.330000px;}
.y21{bottom:419.655000px;}
.y6c{bottom:421.275000px;}
.y58{bottom:429.015000px;}
.ya6{bottom:431.895000px;}
.y7b{bottom:437.115000px;}
.ydf{bottom:440.355000px;}
.y40{bottom:442.515000px;}
.y20{bottom:445.395000px;}
.y6b{bottom:447.015000px;}
.y7a{bottom:462.855000px;}
.y57{bottom:465.195000px;}
.y3f{bottom:468.255000px;}
.y1f{bottom:471.315000px;}
.y6a{bottom:472.755000px;}
.y56{bottom:485.535000px;}
.y3e{bottom:493.995000px;}
.ya5{bottom:494.355000px;}
.y69{bottom:498.495000px;}
.y79{bottom:501.735000px;}
.y55{bottom:502.095000px;}
.yde{bottom:504.435000px;}
.y1e{bottom:510.015000px;}
.y3d{bottom:519.735000px;}
.y68{bottom:524.235000px;}
.y54{bottom:527.835000px;}
.ya4{bottom:529.095000px;}
.ydd{bottom:530.175000px;}
.y3c{bottom:545.475000px;}
.y67{bottom:549.975000px;}
.y53{bottom:553.575000px;}
.ydc{bottom:555.915000px;}
.y1d{bottom:560.775000px;}
.y85{bottom:566.715000px;}
.ya3{bottom:566.895000px;}
.y3b{bottom:571.215000px;}
.y52{bottom:579.315000px;}
.ydb{bottom:581.655000px;}
.y66{bottom:587.595000px;}
.y1c{bottom:589.755000px;}
.y3a{bottom:596.955000px;}
.ya2{bottom:601.455000px;}
.y51{bottom:605.055000px;}
.yda{bottom:607.395000px;}
.y65{bottom:613.335000px;}
.y1b{bottom:618.555000px;}
.y39{bottom:622.695000px;}
.y50{bottom:630.795000px;}
.yd9{bottom:633.135000px;}
.ya1{bottom:638.355000px;}
.y1a{bottom:647.535000px;}
.y38{bottom:648.435000px;}
.y64{bottom:649.335000px;}
.y4f{bottom:656.535000px;}
.y63{bottom:667.725000px;}
.yd8{bottom:670.965000px;}
.y37{bottom:674.205000px;}
.ya0{bottom:676.185000px;}
.y19{bottom:676.365000px;}
.y4e{bottom:682.305000px;}
.yd7{bottom:696.705000px;}
.y18{bottom:705.165000px;}
.y36{bottom:712.005000px;}
.y9f{bottom:713.985000px;}
.y4d{bottom:721.005000px;}
.yd6{bottom:722.445000px;}
.y17{bottom:734.145000px;}
.y35{bottom:737.745000px;}
.y9e{bottom:744.225000px;}
.yd5{bottom:748.185000px;}
.yb6{bottom:761.865000px;}
.y16{bottom:762.945000px;}
.y34{bottom:763.485000px;}
.y9d{bottom:769.965000px;}
.yd4{bottom:773.925000px;}
.y4c{bottom:783.465000px;}
.y33{bottom:789.225000px;}
.y15{bottom:791.925000px;}
.yb5{bottom:792.285000px;}
.y9c{bottom:795.705000px;}
.yd3{bottom:812.805000px;}
.y32{bottom:814.965000px;}
.y4b{bottom:817.845000px;}
.y14{bottom:820.725000px;}
.y9b{bottom:821.445000px;}
.yb4{bottom:825.765000px;}
.y31{bottom:840.705000px;}
.y9a{bottom:847.185000px;}
.y13{bottom:849.525000px;}
.yb3{bottom:859.065000px;}
.y30{bottom:866.445000px;}
.y99{bottom:872.925000px;}
.yd2{bottom:876.885000px;}
.y12{bottom:878.505000px;}
.yb2{bottom:892.545000px;}
.y2f{bottom:893.085000px;}
.y98{bottom:898.665000px;}
.yd1{bottom:902.805000px;}
.y11{bottom:907.350000px;}
.y97{bottom:925.350000px;}
.y10{bottom:929.310000px;}
.yb1{bottom:930.210000px;}
.y2e{bottom:933.270000px;}
.yd0{bottom:940.470000px;}
.y78{bottom:948.030000px;}
.y96{bottom:952.530000px;}
.y2d{bottom:961.350000px;}
.ycf{bottom:966.210000px;}
.yb0{bottom:968.010000px;}
.yf{bottom:972.150000px;}
.y77{bottom:973.770000px;}
.y95{bottom:978.270000px;}
.y2c{bottom:988.530000px;}
.yce{bottom:991.950000px;}
.ye{bottom:995.910000px;}
.y76{bottom:1004.010000px;}
.yaf{bottom:1005.810000px;}
.y2b{bottom:1014.270000px;}
.ycd{bottom:1017.690000px;}
.y75{bottom:1029.750000px;}
.y2a{bottom:1040.010000px;}
.yae{bottom:1043.430000px;}
.y4a{bottom:1048.650000px;}
.yd{bottom:1049.730000px;}
.y74{bottom:1055.490000px;}
.y62{bottom:1078.710000px;}
.y29{bottom:1078.890000px;}
.y49{bottom:1079.790000px;}
.y73{bottom:1081.230000px;}
.y7{bottom:1098.510000px;}
.y6{bottom:1105.710000px;}
.y5{bottom:1124.250000px;}
.y4{bottom:1140.450000px;}
.y3{bottom:1156.680000px;}
.y2{bottom:1173.600000px;}
.y1{bottom:1193.400000px;}
.h4{height:15.618164px;}
.h5{height:28.737422px;}
.hf{height:30.077578px;}
.h10{height:40.948242px;}
.h3{height:46.854492px;}
.h12{height:47.254219px;}
.h14{height:51.852305px;}
.h2{height:57.474844px;}
.he{height:60.583199px;}
.hc{height:62.472656px;}
.ha{height:64.971562px;}
.h6{height:65.884219px;}
.hb{height:68.084282px;}
.hd{height:74.004654px;}
.h9{height:91.177734px;}
.h8{height:93.708984px;}
.h7{height:104.329336px;}
.h11{height:350.895000px;}
.h13{height:358.995000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w3{width:677.085000px;}
.w2{width:892.979986px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x21{left:10.800000px;}
.x22{left:40.320000px;}
.x23{left:42.840000px;}
.x4{left:63.899987px;}
.x5{left:82.799987px;}
.x2d{left:100.476000px;}
.x1{left:106.415987px;}
.x2a{left:111.635987px;}
.x6{left:122.975987px;}
.x26{left:125.135987px;}
.x29{left:127.655987px;}
.xf{left:133.235987px;}
.x1c{left:135.935987px;}
.x1e{left:138.455987px;}
.x2b{left:155.009987px;}
.x7{left:157.889987px;}
.x8{left:160.409987px;}
.x18{left:165.989987px;}
.x2c{left:185.789987px;}
.x24{left:199.649987px;}
.x25{left:202.169987px;}
.x1a{left:206.309987px;}
.x14{left:253.109987px;}
.x19{left:268.589987px;}
.x1b{left:304.634987px;}
.x9{left:313.454987px;}
.x11{left:327.494987px;}
.xc{left:349.454987px;}
.x1f{left:363.134987px;}
.x12{left:369.434987px;}
.x15{left:384.734987px;}
.x27{left:398.774987px;}
.x13{left:404.534987px;}
.x20{left:411.194987px;}
.x16{left:432.974987px;}
.x1d{left:467.894987px;}
.x28{left:472.784987px;}
.xa{left:478.364987px;}
.x17{left:560.624987px;}
.xd{left:568.364987px;}
.xe{left:620.024987px;}
.x2{left:650.624986px;}
.x2e{left:709.349986px;}
.xb{left:727.889987px;}
.x2f{left:783.149987px;}
.x3{left:786.749986px;}
.x10{left:790.529987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls17{letter-spacing:-1.205333pt;}
.ls12{letter-spacing:-0.800000pt;}
.ls8{letter-spacing:-0.565333pt;}
.ls11{letter-spacing:-0.427733pt;}
.ls3{letter-spacing:-0.299733pt;}
.ls4{letter-spacing:-0.224000pt;}
.ls16{letter-spacing:-0.199467pt;}
.ls15{letter-spacing:-0.097067pt;}
.ls5{letter-spacing:-0.080533pt;}
.lsc{letter-spacing:-0.016000pt;}
.ls2{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.005760pt;}
.ls18{letter-spacing:0.035840pt;}
.ls14{letter-spacing:0.048000pt;}
.ls1{letter-spacing:0.074133pt;}
.lse{letter-spacing:0.074240pt;}
.ls19{letter-spacing:0.101867pt;}
.lsd{letter-spacing:0.133120pt;}
.ls13{letter-spacing:0.138133pt;}
.lsf{letter-spacing:0.210254pt;}
.ls10{letter-spacing:0.234240pt;}
.lsa{letter-spacing:0.269845pt;}
.lsb{letter-spacing:0.527467pt;}
.ls9{letter-spacing:0.714240pt;}
.ls6{letter-spacing:30.401280pt;}
.ls7{letter-spacing:43.041280pt;}
.wsa{word-spacing:-67.087467pt;}
.wsb{word-spacing:-66.560000pt;}
.ws10{word-spacing:-64.000000pt;}
.ws12{word-spacing:-48.000000pt;}
.ws4{word-spacing:-25.122560pt;}
.ws5{word-spacing:-17.904640pt;}
.wsf{word-spacing:-15.976853pt;}
.ws7{word-spacing:-15.912853pt;}
.ws14{word-spacing:-15.874560pt;}
.ws6{word-spacing:-15.838720pt;}
.ws11{word-spacing:-15.741653pt;}
.ws13{word-spacing:-15.639253pt;}
.ws0{word-spacing:-15.538987pt;}
.wse{word-spacing:-15.410987pt;}
.ws9{word-spacing:-15.040000pt;}
.wsd{word-spacing:-14.795376pt;}
.wsc{word-spacing:-14.585122pt;}
.ws15{word-spacing:-14.289280pt;}
.ws1{word-spacing:-12.912000pt;}
.ws2{word-spacing:-7.919360pt;}
.ws3{word-spacing:-7.838827pt;}
.ws8{word-spacing:0.000000pt;}
._b{margin-left:-15.857493pt;}
._9{margin-left:-14.123093pt;}
._7{margin-left:-13.017173pt;}
._a{margin-left:-11.511893pt;}
._6{margin-left:-10.285653pt;}
._4{margin-left:-9.214080pt;}
._f{margin-left:-7.408640pt;}
._5{margin-left:-6.430507pt;}
._8{margin-left:-4.832853pt;}
._c{margin-left:-3.431253pt;}
._11{margin-left:-1.992960pt;}
._0{margin-left:-0.942080pt;}
._2{width:0.960000pt;}
._1f{width:2.091520pt;}
._1a{width:3.424427pt;}
._10{width:4.748800pt;}
._26{width:5.834240pt;}
._16{width:6.898347pt;}
._1e{width:8.215040pt;}
._22{width:9.597440pt;}
._19{width:10.833920pt;}
._e{width:12.188160pt;}
._18{width:13.325653pt;}
._17{width:14.366720pt;}
._2b{width:16.821760pt;}
._2c{width:18.234027pt;}
._29{width:19.430400pt;}
._2a{width:20.422400pt;}
._30{width:21.667840pt;}
._31{width:23.022080pt;}
._15{width:24.376320pt;}
._21{width:27.571200pt;}
._2f{width:28.718080pt;}
._1c{width:29.852160pt;}
._1b{width:30.961920pt;}
._20{width:32.293120pt;}
._14{width:33.358080pt;}
._13{width:34.683307pt;}
._27{width:40.509440pt;}
._1d{width:42.945920pt;}
._28{width:43.893120pt;}
._23{width:44.787840pt;}
._2d{width:69.114027pt;}
._2e{width:70.583467pt;}
._d{width:83.786240pt;}
._24{width:537.976747pt;}
._12{width:686.158933pt;}
._25{width:753.999787pt;}
._1{width:841.778773pt;}
._3{width:1133.509333pt;}
.fs8{font-size:5.120000pt;}
.fs2{font-size:16.000000pt;}
.fsb{font-size:26.880000pt;}
.fs3{font-size:29.440000pt;}
.fs1{font-size:48.000000pt;}
.fsc{font-size:53.120000pt;}
.fs0{font-size:58.880000pt;}
.fsa{font-size:62.064349pt;}
.fs9{font-size:64.000000pt;}
.fs6{font-size:66.560000pt;}
.fs7{font-size:85.120000pt;}
.fs5{font-size:96.000000pt;}
.fs4{font-size:106.880000pt;}
.ycc{bottom:-82.560000pt;}
.y94{bottom:-52.160000pt;}
.ycb{bottom:-49.760000pt;}
.y93{bottom:-19.200000pt;}
.yca{bottom:-16.160000pt;}
.y0{bottom:0.000000pt;}
.y92{bottom:3.680000pt;}
.yc9{bottom:6.720000pt;}
.y91{bottom:26.560000pt;}
.yc8{bottom:29.600000pt;}
.y90{bottom:50.240000pt;}
.yc{bottom:51.200000pt;}
.yc7{bottom:53.320000pt;}
.yb{bottom:68.960000pt;}
.y8f{bottom:74.400000pt;}
.yc6{bottom:77.480000pt;}
.ya{bottom:84.320000pt;}
.y9{bottom:96.160000pt;}
.y8e{bottom:97.306667pt;}
.yc5{bottom:101.160000pt;}
.y8{bottom:110.560000pt;}
.y8d{bottom:120.986667pt;}
.yc4{bottom:125.320000pt;}
.y61{bottom:127.520000pt;}
.y48{bottom:129.120000pt;}
.y84{bottom:134.240000pt;}
.ye7{bottom:136.480000pt;}
.y72{bottom:144.960000pt;}
.y8c{bottom:145.146667pt;}
.y60{bottom:146.240000pt;}
.yc3{bottom:148.200000pt;}
.y47{bottom:154.106667pt;}
.ye6{bottom:157.306667pt;}
.y83{bottom:157.946667pt;}
.ybb{bottom:166.746667pt;}
.y71{bottom:167.866667pt;}
.y8b{bottom:168.026667pt;}
.yc2{bottom:171.880000pt;}
.y5f{bottom:175.706667pt;}
.y82{bottom:182.106667pt;}
.y46{bottom:188.826667pt;}
.yba{bottom:189.626667pt;}
.y8a{bottom:190.906667pt;}
.yc1{bottom:196.040000pt;}
.y28{bottom:202.266667pt;}
.y5e{bottom:204.986667pt;}
.y45{bottom:211.706667pt;}
.yad{bottom:212.026667pt;}
.yb9{bottom:212.506667pt;}
.y89{bottom:214.586667pt;}
.yc0{bottom:219.720000pt;}
.y27{bottom:225.146667pt;}
.y81{bottom:227.866667pt;}
.y5d{bottom:234.426667pt;}
.yac{bottom:234.906667pt;}
.yb8{bottom:235.386667pt;}
.y70{bottom:236.986667pt;}
.y88{bottom:238.746667pt;}
.ye5{bottom:242.426667pt;}
.ybf{bottom:243.880000pt;}
.y44{bottom:246.266667pt;}
.y26{bottom:248.026667pt;}
.y80{bottom:250.746667pt;}
.yab{bottom:257.786667pt;}
.y6f{bottom:259.866667pt;}
.y87{bottom:261.626667pt;}
.y5c{bottom:263.866667pt;}
.ye4{bottom:265.306667pt;}
.ybe{bottom:267.586667pt;}
.yb7{bottom:269.946667pt;}
.y25{bottom:270.906667pt;}
.y7f{bottom:273.626667pt;}
.yaa{bottom:280.666667pt;}
.y6e{bottom:282.746667pt;}
.ye3{bottom:288.186667pt;}
.y5b{bottom:293.146667pt;}
.y24{bottom:293.786667pt;}
.y86{bottom:296.026667pt;}
.y7e{bottom:297.306667pt;}
.ybd{bottom:303.266667pt;}
.y43{bottom:303.386667pt;}
.ya9{bottom:303.706667pt;}
.ye2{bottom:311.066667pt;}
.y23{bottom:316.666667pt;}
.y6d{bottom:317.466667pt;}
.ybc{bottom:320.506667pt;}
.y5a{bottom:322.586667pt;}
.ya8{bottom:326.586667pt;}
.y7d{bottom:332.186667pt;}
.ye1{bottom:333.946667pt;}
.y42{bottom:336.826667pt;}
.y22{bottom:339.546667pt;}
.ya7{bottom:349.466667pt;}
.y59{bottom:352.026667pt;}
.ye0{bottom:356.826667pt;}
.y41{bottom:359.706667pt;}
.y7c{bottom:365.626667pt;}
.y21{bottom:373.026667pt;}
.y6c{bottom:374.466667pt;}
.y58{bottom:381.346667pt;}
.ya6{bottom:383.906667pt;}
.y7b{bottom:388.546667pt;}
.ydf{bottom:391.426667pt;}
.y40{bottom:393.346667pt;}
.y20{bottom:395.906667pt;}
.y6b{bottom:397.346667pt;}
.y7a{bottom:411.426667pt;}
.y57{bottom:413.506667pt;}
.y3f{bottom:416.226667pt;}
.y1f{bottom:418.946667pt;}
.y6a{bottom:420.226667pt;}
.y56{bottom:431.586667pt;}
.y3e{bottom:439.106667pt;}
.ya5{bottom:439.426667pt;}
.y69{bottom:443.106667pt;}
.y79{bottom:445.986667pt;}
.y55{bottom:446.306667pt;}
.yde{bottom:448.386667pt;}
.y1e{bottom:453.346667pt;}
.y3d{bottom:461.986667pt;}
.y68{bottom:465.986667pt;}
.y54{bottom:469.186667pt;}
.ya4{bottom:470.306667pt;}
.ydd{bottom:471.266667pt;}
.y3c{bottom:484.866667pt;}
.y67{bottom:488.866667pt;}
.y53{bottom:492.066667pt;}
.ydc{bottom:494.146667pt;}
.y1d{bottom:498.466667pt;}
.y85{bottom:503.746667pt;}
.ya3{bottom:503.906667pt;}
.y3b{bottom:507.746667pt;}
.y52{bottom:514.946667pt;}
.ydb{bottom:517.026667pt;}
.y66{bottom:522.306667pt;}
.y1c{bottom:524.226667pt;}
.y3a{bottom:530.626667pt;}
.ya2{bottom:534.626667pt;}
.y51{bottom:537.826667pt;}
.yda{bottom:539.906667pt;}
.y65{bottom:545.186667pt;}
.y1b{bottom:549.826667pt;}
.y39{bottom:553.506667pt;}
.y50{bottom:560.706667pt;}
.yd9{bottom:562.786667pt;}
.ya1{bottom:567.426667pt;}
.y1a{bottom:575.586667pt;}
.y38{bottom:576.386667pt;}
.y64{bottom:577.186667pt;}
.y4f{bottom:583.586667pt;}
.y63{bottom:593.533333pt;}
.yd8{bottom:596.413333pt;}
.y37{bottom:599.293333pt;}
.ya0{bottom:601.053333pt;}
.y19{bottom:601.213333pt;}
.y4e{bottom:606.493333pt;}
.yd7{bottom:619.293333pt;}
.y18{bottom:626.813333pt;}
.y36{bottom:632.893333pt;}
.y9f{bottom:634.653333pt;}
.y4d{bottom:640.893333pt;}
.yd6{bottom:642.173333pt;}
.y17{bottom:652.573333pt;}
.y35{bottom:655.773333pt;}
.y9e{bottom:661.533333pt;}
.yd5{bottom:665.053333pt;}
.yb6{bottom:677.213333pt;}
.y16{bottom:678.173333pt;}
.y34{bottom:678.653333pt;}
.y9d{bottom:684.413333pt;}
.yd4{bottom:687.933333pt;}
.y4c{bottom:696.413333pt;}
.y33{bottom:701.533333pt;}
.y15{bottom:703.933333pt;}
.yb5{bottom:704.253333pt;}
.y9c{bottom:707.293333pt;}
.yd3{bottom:722.493333pt;}
.y32{bottom:724.413333pt;}
.y4b{bottom:726.973333pt;}
.y14{bottom:729.533333pt;}
.y9b{bottom:730.173333pt;}
.yb4{bottom:734.013333pt;}
.y31{bottom:747.293333pt;}
.y9a{bottom:753.053333pt;}
.y13{bottom:755.133333pt;}
.yb3{bottom:763.613333pt;}
.y30{bottom:770.173333pt;}
.y99{bottom:775.933333pt;}
.yd2{bottom:779.453333pt;}
.y12{bottom:780.893333pt;}
.yb2{bottom:793.373333pt;}
.y2f{bottom:793.853333pt;}
.y98{bottom:798.813333pt;}
.yd1{bottom:802.493333pt;}
.y11{bottom:806.533333pt;}
.y97{bottom:822.533333pt;}
.y10{bottom:826.053333pt;}
.yb1{bottom:826.853333pt;}
.y2e{bottom:829.573333pt;}
.yd0{bottom:835.973333pt;}
.y78{bottom:842.693333pt;}
.y96{bottom:846.693333pt;}
.y2d{bottom:854.533333pt;}
.ycf{bottom:858.853333pt;}
.yb0{bottom:860.453333pt;}
.yf{bottom:864.133333pt;}
.y77{bottom:865.573333pt;}
.y95{bottom:869.573333pt;}
.y2c{bottom:878.693333pt;}
.yce{bottom:881.733333pt;}
.ye{bottom:885.253333pt;}
.y76{bottom:892.453333pt;}
.yaf{bottom:894.053333pt;}
.y2b{bottom:901.573333pt;}
.ycd{bottom:904.613333pt;}
.y75{bottom:915.333333pt;}
.y2a{bottom:924.453333pt;}
.yae{bottom:927.493333pt;}
.y4a{bottom:932.133333pt;}
.yd{bottom:933.093333pt;}
.y74{bottom:938.213333pt;}
.y62{bottom:958.853333pt;}
.y29{bottom:959.013333pt;}
.y49{bottom:959.813333pt;}
.y73{bottom:961.093333pt;}
.y7{bottom:976.453333pt;}
.y6{bottom:982.853333pt;}
.y5{bottom:999.333333pt;}
.y4{bottom:1013.733333pt;}
.y3{bottom:1028.160000pt;}
.y2{bottom:1043.200000pt;}
.y1{bottom:1060.800000pt;}
.h4{height:13.882812pt;}
.h5{height:25.544375pt;}
.hf{height:26.735625pt;}
.h10{height:36.398438pt;}
.h3{height:41.648438pt;}
.h12{height:42.003750pt;}
.h14{height:46.090938pt;}
.h2{height:51.088750pt;}
.he{height:53.851732pt;}
.hc{height:55.531250pt;}
.ha{height:57.752500pt;}
.h6{height:58.563750pt;}
.hb{height:60.519362pt;}
.hd{height:65.781915pt;}
.h9{height:81.046875pt;}
.h8{height:83.296875pt;}
.h7{height:92.737187pt;}
.h11{height:311.906667pt;}
.h13{height:319.106667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w3{width:601.853333pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x21{left:9.600000pt;}
.x22{left:35.840000pt;}
.x23{left:38.080000pt;}
.x4{left:56.799988pt;}
.x5{left:73.599988pt;}
.x2d{left:89.312000pt;}
.x1{left:94.591988pt;}
.x2a{left:99.231988pt;}
.x6{left:109.311988pt;}
.x26{left:111.231988pt;}
.x29{left:113.471988pt;}
.xf{left:118.431988pt;}
.x1c{left:120.831988pt;}
.x1e{left:123.071988pt;}
.x2b{left:137.786655pt;}
.x7{left:140.346655pt;}
.x8{left:142.586655pt;}
.x18{left:147.546655pt;}
.x2c{left:165.146655pt;}
.x24{left:177.466655pt;}
.x25{left:179.706655pt;}
.x1a{left:183.386655pt;}
.x14{left:224.986655pt;}
.x19{left:238.746655pt;}
.x1b{left:270.786655pt;}
.x9{left:278.626655pt;}
.x11{left:291.106655pt;}
.xc{left:310.626655pt;}
.x1f{left:322.786655pt;}
.x12{left:328.386655pt;}
.x15{left:341.986655pt;}
.x27{left:354.466655pt;}
.x13{left:359.586655pt;}
.x20{left:365.506655pt;}
.x16{left:384.866655pt;}
.x1d{left:415.906655pt;}
.x28{left:420.253322pt;}
.xa{left:425.213322pt;}
.x17{left:498.333322pt;}
.xd{left:505.213322pt;}
.xe{left:551.133322pt;}
.x2{left:578.333321pt;}
.x2e{left:630.533321pt;}
.xb{left:647.013322pt;}
.x2f{left:696.133321pt;}
.x3{left:699.333321pt;}
.x10{left:702.693322pt;}
}




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