
    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_563c1f85434febcf4469a29d.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.202148;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_ac00d129f1bba7619f7bf606.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.172852;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_38291bf832bf4c108e303b07.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.983398;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_01daf48e4bb914a5f8a89ed9.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.983398;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_43b0192c579bde55b77463fc.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.758789;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_17ec487f2be6ec95c1eaf724.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.758789;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_94ffa7be89c02942f69faa78.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.970215;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_6063bdc5ba90cbb97ed298c8.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.970215;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_5632a2273a4f3c85ca8534f1.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.750000;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_c06c454946b465c609ef1cc3.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.944336;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_69576b8f955b0b7b4078fd46.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.202148;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_fd9caa2ab85714113cc7562c.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.172852;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_ba2e3aa58928f51069a998fc.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.923340;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_ca3c9ae10d31a064ca99e13d.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.923340;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_5d39b8e5a94c0f2d36d845fe.woff2')format("woff");}.fff{font-family:fff;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:ff10;src:url('chunks/assets/font_347aaad92b26e9a62da26582.woff2')format("woff");}.ff10{font-family:ff10;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:ff11;src:url('chunks/assets/font_89d7d8c78aea7e0165051820.woff2')format("woff");}.ff11{font-family:ff11;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:ff12;src:url('chunks/assets/font_0d2a57000543957481b92ac2.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.934082;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:ff13;src:url('chunks/assets/font_fbeb9a3f8c90cfa51a67d6a4.woff2')format("woff");}.ff13{font-family:ff13;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:ff14;src:url('chunks/assets/font_01ce8cbd34e42b9a86a59126.woff2')format("woff");}.ff14{font-family:ff14;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:ff15;src:url('chunks/assets/font_6193fc93719873dbca485474.woff2')format("woff");}.ff15{font-family:ff15;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;}
.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);}
.v2{vertical-align:-15.120000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:20.880000px;}
.ls9{letter-spacing:-0.360000px;}
.ls8{letter-spacing:-0.018000px;}
.ls7{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.036000px;}
.lsd{letter-spacing:0.053280px;}
.lse{letter-spacing:0.106800px;}
.ls1{letter-spacing:0.132600px;}
.lsb{letter-spacing:0.259800px;}
.ls2{letter-spacing:0.259920px;}
.lsc{letter-spacing:0.298800px;}
.ls5{letter-spacing:0.360000px;}
.ls4{letter-spacing:0.447840px;}
.ls3{letter-spacing:0.786240px;}
.ls6{letter-spacing:0.894240px;}
.ls10{letter-spacing:16.506720px;}
.lsf{letter-spacing:46.026720px;}
.lsa{letter-spacing:64.170720px;}
.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;}
}
.wsd{word-spacing:-59.760000px;}
.ws1{word-spacing:-16.626360px;}
.ws2{word-spacing:-16.493760px;}
.ws7{word-spacing:-15.300000px;}
.ws10{word-spacing:-15.238800px;}
.wsc{word-spacing:-15.199800px;}
.wsf{word-spacing:-15.046800px;}
.wse{word-spacing:-14.993280px;}
.ws8{word-spacing:-14.940000px;}
.ws9{word-spacing:-14.580000px;}
.ws6{word-spacing:-14.220000px;}
.wsa{word-spacing:-13.505760px;}
.ws5{word-spacing:-12.854880px;}
.ws0{word-spacing:-12.186000px;}
.ws3{word-spacing:-8.786880px;}
.ws4{word-spacing:-8.136000px;}
.wsb{word-spacing:0.000000px;}
._4{margin-left:-5.210880px;}
._a{margin-left:-4.175760px;}
._2{margin-left:-3.126000px;}
._3{margin-left:-2.099280px;}
._0{margin-left:-1.086000px;}
._1{width:1.092000px;}
._9{width:2.509920px;}
._5{width:4.249440px;}
._6{width:5.355600px;}
._11{width:6.633360px;}
._10{width:7.768800px;}
._f{width:9.262800px;}
._8{width:10.979520px;}
._d{width:12.234480px;}
._7{width:13.728480px;}
._15{width:17.439120px;}
._b{width:18.449520px;}
._c{width:20.079360px;}
._e{width:21.633120px;}
._12{width:25.099200px;}
._14{width:33.286320px;}
._13{width:34.541280px;}
.fc6{color:transparent;}
.fc5{color:rgb(227,108,10);}
.fc4{color:rgb(50,62,79);}
.fc3{color:rgb(0,0,255);}
.fc2{color:rgb(31,56,100);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(23,54,93);}
.fs2{font-size:2.880000px;}
.fs8{font-size:36.000000px;}
.fs7{font-size:38.880000px;}
.fs3{font-size:48.240000px;}
.fs0{font-size:54.000000px;}
.fs9{font-size:56.880000px;}
.fs5{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs4{font-size:72.000000px;}
.fs6{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.y1a{bottom:0.180000px;}
.y46{bottom:3.240000px;}
.y49{bottom:3.420000px;}
.y3{bottom:3.600000px;}
.y18{bottom:4.860000px;}
.ye{bottom:9.540000px;}
.y1b{bottom:12.420000px;}
.y4a{bottom:14.940000px;}
.y99{bottom:17.280000px;}
.y4{bottom:17.316000px;}
.y48{bottom:18.000000px;}
.y2{bottom:20.196000px;}
.y45{bottom:20.520000px;}
.yc{bottom:25.020000px;}
.y17{bottom:29.385000px;}
.y5{bottom:31.320000px;}
.y44{bottom:37.800000px;}
.yb{bottom:41.400000px;}
.y16{bottom:45.765000px;}
.y1{bottom:52.380000px;}
.y43{bottom:55.080000px;}
.ya{bottom:57.780000px;}
.y15{bottom:62.325000px;}
.y42{bottom:72.180000px;}
.y14{bottom:78.165000px;}
.y9{bottom:84.600000px;}
.y13{bottom:88.605000px;}
.y41{bottom:89.460000px;}
.y8{bottom:104.250000px;}
.yc8{bottom:104.256000px;}
.y56{bottom:106.056000px;}
.y40{bottom:106.740000px;}
.y12{bottom:106.785000px;}
.y93{bottom:118.476000px;}
.yc7{bottom:121.536000px;}
.y7{bottom:122.610000px;}
.y55{bottom:123.336000px;}
.y3f{bottom:124.020000px;}
.y11{bottom:125.865000px;}
.y92{bottom:135.756000px;}
.yc6{bottom:138.816000px;}
.y54{bottom:140.616000px;}
.y3e{bottom:141.300000px;}
.yeb{bottom:143.316000px;}
.y10{bottom:150.165000px;}
.y91{bottom:153.030000px;}
.yc5{bottom:156.090000px;}
.y53{bottom:157.890000px;}
.y3d{bottom:158.580000px;}
.yea{bottom:160.590000px;}
.y90{bottom:170.310000px;}
.yc4{bottom:173.370000px;}
.y52{bottom:175.170000px;}
.y3c{bottom:175.680000px;}
.ye9{bottom:177.870000px;}
.y8f{bottom:187.590000px;}
.yc3{bottom:190.470000px;}
.y51{bottom:192.450000px;}
.y3b{bottom:192.960000px;}
.ye8{bottom:194.970000px;}
.y8e{bottom:204.690000px;}
.yc2{bottom:207.750000px;}
.y50{bottom:209.550000px;}
.y3a{bottom:210.240000px;}
.ye7{bottom:212.250000px;}
.y8d{bottom:221.970000px;}
.yc1{bottom:225.030000px;}
.y4f{bottom:226.830000px;}
.y39{bottom:227.520000px;}
.ye6{bottom:229.530000px;}
.y2a{bottom:237.060000px;}
.y8c{bottom:239.250000px;}
.yc0{bottom:242.310000px;}
.y4e{bottom:244.110000px;}
.y38{bottom:244.800000px;}
.ye5{bottom:246.810000px;}
.y29{bottom:251.640000px;}
.y8b{bottom:256.530000px;}
.ybf{bottom:259.590000px;}
.y4d{bottom:261.390000px;}
.y37{bottom:261.900000px;}
.ye4{bottom:264.090000px;}
.y28{bottom:268.770000px;}
.y8a{bottom:273.810000px;}
.ybe{bottom:276.870000px;}
.y4c{bottom:278.670000px;}
.y36{bottom:279.210000px;}
.ye3{bottom:281.370000px;}
.y27{bottom:286.050000px;}
.y89{bottom:291.090000px;}
.ybd{bottom:293.970000px;}
.y4b{bottom:295.950000px;}
.y35{bottom:296.490000px;}
.ye2{bottom:298.470000px;}
.y26{bottom:303.870000px;}
.y88{bottom:308.190000px;}
.y47{bottom:309.810000px;}
.ybc{bottom:311.250000px;}
.y34{bottom:313.770000px;}
.ye1{bottom:315.750000px;}
.y25{bottom:320.610000px;}
.y87{bottom:325.470000px;}
.ybb{bottom:328.530000px;}
.y33{bottom:331.050000px;}
.ye0{bottom:333.030000px;}
.y24{bottom:336.990000px;}
.y1c{bottom:339.195000px;}
.y86{bottom:342.795000px;}
.yba{bottom:345.855000px;}
.y32{bottom:348.330000px;}
.ydf{bottom:350.355000px;}
.y23{bottom:354.090000px;}
.y85{bottom:360.075000px;}
.yb9{bottom:363.135000px;}
.y31{bottom:365.430000px;}
.yde{bottom:367.635000px;}
.y22{bottom:371.370000px;}
.y84{bottom:377.355000px;}
.yb8{bottom:380.415000px;}
.y30{bottom:382.710000px;}
.ydd{bottom:384.915000px;}
.y21{bottom:388.830000px;}
.y83{bottom:394.455000px;}
.yb7{bottom:397.515000px;}
.y2f{bottom:399.990000px;}
.ydc{bottom:402.015000px;}
.y20{bottom:406.290000px;}
.y82{bottom:411.735000px;}
.yb6{bottom:414.795000px;}
.y2e{bottom:417.270000px;}
.ydb{bottom:419.295000px;}
.y1f{bottom:426.450000px;}
.y81{bottom:429.015000px;}
.yb5{bottom:432.075000px;}
.y2d{bottom:434.550000px;}
.yda{bottom:436.575000px;}
.y80{bottom:446.295000px;}
.yb4{bottom:449.355000px;}
.y2c{bottom:451.830000px;}
.yd9{bottom:453.855000px;}
.y1e{bottom:453.990000px;}
.y7f{bottom:463.575000px;}
.yb3{bottom:464.115000px;}
.y2b{bottom:468.930000px;}
.yd8{bottom:471.135000px;}
.y1d{bottom:471.630000px;}
.y7e{bottom:480.855000px;}
.yb2{bottom:482.115000px;}
.yd7{bottom:488.235000px;}
.y7d{bottom:497.955000px;}
.yb1{bottom:500.115000px;}
.yd6{bottom:505.515000px;}
.y7c{bottom:515.235000px;}
.yb0{bottom:518.115000px;}
.yd5{bottom:522.795000px;}
.y7b{bottom:532.515000px;}
.yaf{bottom:536.115000px;}
.yd4{bottom:540.075000px;}
.y7a{bottom:549.795000px;}
.yae{bottom:557.355000px;}
.y79{bottom:567.075000px;}
.yad{bottom:574.635000px;}
.y78{bottom:584.355000px;}
.yac{bottom:589.395000px;}
.yd3{bottom:591.735000px;}
.y77{bottom:601.455000px;}
.yab{bottom:607.425000px;}
.yd2{bottom:609.045000px;}
.y76{bottom:618.765000px;}
.yaa{bottom:625.425000px;}
.yd1{bottom:626.325000px;}
.y75{bottom:636.045000px;}
.ya9{bottom:643.425000px;}
.yd0{bottom:643.605000px;}
.y74{bottom:654.405000px;}
.ycf{bottom:660.885000px;}
.ya8{bottom:661.425000px;}
.y73{bottom:672.765000px;}
.yce{bottom:678.165000px;}
.ya7{bottom:679.425000px;}
.y72{bottom:690.945000px;}
.ycd{bottom:695.265000px;}
.ya6{bottom:697.425000px;}
.y71{bottom:709.305000px;}
.ycc{bottom:712.545000px;}
.ya5{bottom:718.665000px;}
.y70{bottom:726.585000px;}
.ycb{bottom:729.825000px;}
.ya4{bottom:735.765000px;}
.y6f{bottom:744.945000px;}
.yca{bottom:747.105000px;}
.ya3{bottom:750.525000px;}
.y6e{bottom:763.305000px;}
.yc9{bottom:764.385000px;}
.ya2{bottom:768.525000px;}
.y6d{bottom:781.665000px;}
.ya1{bottom:786.525000px;}
.y6c{bottom:798.765000px;}
.ya0{bottom:807.765000px;}
.y6b{bottom:816.045000px;}
.y19{bottom:822.165000px;}
.y9f{bottom:825.045000px;}
.y6a{bottom:833.325000px;}
.y9e{bottom:839.805000px;}
.y69{bottom:850.605000px;}
.yf{bottom:851.685000px;}
.y9d{bottom:857.805000px;}
.y68{bottom:867.885000px;}
.y9c{bottom:875.850000px;}
.y67{bottom:885.030000px;}
.y9b{bottom:893.850000px;}
.y66{bottom:902.310000px;}
.y9a{bottom:911.850000px;}
.y65{bottom:919.590000px;}
.y98{bottom:929.850000px;}
.y64{bottom:936.870000px;}
.y97{bottom:947.850000px;}
.y63{bottom:954.150000px;}
.y96{bottom:965.850000px;}
.y62{bottom:971.430000px;}
.y95{bottom:983.850000px;}
.y61{bottom:988.530000px;}
.y94{bottom:1001.850000px;}
.y60{bottom:1005.810000px;}
.yd{bottom:1016.970000px;}
.y5f{bottom:1023.090000px;}
.y5e{bottom:1040.370000px;}
.y6{bottom:1042.350000px;}
.y5d{bottom:1057.650000px;}
.y5c{bottom:1074.930000px;}
.y5b{bottom:1092.030000px;}
.y5a{bottom:1109.310000px;}
.y59{bottom:1126.590000px;}
.y58{bottom:1143.900000px;}
.y57{bottom:1161.180000px;}
.h8{height:2.864531px;}
.h16{height:2.948906px;}
.h25{height:17.100000px;}
.h26{height:17.136000px;}
.h23{height:17.280000px;}
.h24{height:17.316000px;}
.hd{height:25.020000px;}
.h14{height:28.968750px;}
.h21{height:29.376000px;}
.h15{height:29.520000px;}
.h2{height:32.976000px;}
.h13{height:35.806641px;}
.h9{height:36.180000px;}
.h1e{height:38.818125px;}
.h1b{height:40.243711px;}
.h20{height:41.726953px;}
.h1f{height:42.164648px;}
.h1d{height:42.281367px;}
.h4{height:43.453125px;}
.h22{height:43.506914px;}
.hf{height:44.002969px;}
.hb{height:44.820000px;}
.h1c{height:45.770625px;}
.h19{height:47.980898px;}
.ha{height:54.000000px;}
.h3{height:55.291992px;}
.h1a{height:56.574492px;}
.h11{height:59.439023px;}
.h12{height:61.189805px;}
.h10{height:63.180000px;}
.h6{height:65.884219px;}
.h5{height:67.824844px;}
.hc{height:71.613281px;}
.h17{height:73.722656px;}
.h7{height:132.696000px;}
.he{height:165.270000px;}
.h18{height:482.970000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w3{width:73.080000px;}
.w11{width:95.760000px;}
.w14{width:112.500000px;}
.wf{width:150.690000px;}
.w5{width:152.130000px;}
.w10{width:212.430000px;}
.w8{width:223.815000px;}
.wb{width:253.650000px;}
.we{width:268.635000px;}
.wd{width:287.670000px;}
.w13{width:300.135000px;}
.w12{width:315.615000px;}
.wc{width:441.285000px;}
.wa{width:475.305000px;}
.w9{width:507.315000px;}
.w6{width:578.985000px;}
.w2{width:658.050000px;}
.w7{width:731.130000px;}
.w4{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:8.676000px;}
.x11{left:12.600000px;}
.xe{left:36.396000px;}
.xb{left:51.516000px;}
.xd{left:64.476000px;}
.x1{left:81.000000px;}
.x4{left:107.130000px;}
.x12{left:162.389987px;}
.xc{left:181.830000px;}
.xf{left:215.715000px;}
.x19{left:218.549987px;}
.x14{left:227.549987px;}
.x5{left:233.130000px;}
.x16{left:237.989987px;}
.x8{left:271.875000px;}
.x10{left:304.815000px;}
.x6{left:331.635000px;}
.x7{left:350.895000px;}
.xa{left:365.475000px;}
.x1c{left:396.074987px;}
.x1a{left:398.055000px;}
.x9{left:439.140000px;}
.x17{left:502.485000px;}
.x15{left:523.725000px;}
.x13{left:557.745000px;}
.x1b{left:698.910000px;}
.x18{left:715.650000px;}
.x3{left:739.050000px;}
@media print{
.v2{vertical-align:-13.440000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:18.560000pt;}
.ls9{letter-spacing:-0.320000pt;}
.ls8{letter-spacing:-0.016000pt;}
.ls7{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.032000pt;}
.lsd{letter-spacing:0.047360pt;}
.lse{letter-spacing:0.094933pt;}
.ls1{letter-spacing:0.117867pt;}
.lsb{letter-spacing:0.230933pt;}
.ls2{letter-spacing:0.231040pt;}
.lsc{letter-spacing:0.265600pt;}
.ls5{letter-spacing:0.320000pt;}
.ls4{letter-spacing:0.398080pt;}
.ls3{letter-spacing:0.698880pt;}
.ls6{letter-spacing:0.794880pt;}
.ls10{letter-spacing:14.672640pt;}
.lsf{letter-spacing:40.912640pt;}
.lsa{letter-spacing:57.040640pt;}
.wsd{word-spacing:-53.120000pt;}
.ws1{word-spacing:-14.778987pt;}
.ws2{word-spacing:-14.661120pt;}
.ws7{word-spacing:-13.600000pt;}
.ws10{word-spacing:-13.545600pt;}
.wsc{word-spacing:-13.510933pt;}
.wsf{word-spacing:-13.374933pt;}
.wse{word-spacing:-13.327360pt;}
.ws8{word-spacing:-13.280000pt;}
.ws9{word-spacing:-12.960000pt;}
.ws6{word-spacing:-12.640000pt;}
.wsa{word-spacing:-12.005120pt;}
.ws5{word-spacing:-11.426560pt;}
.ws0{word-spacing:-10.832000pt;}
.ws3{word-spacing:-7.810560pt;}
.ws4{word-spacing:-7.232000pt;}
.wsb{word-spacing:0.000000pt;}
._4{margin-left:-4.631893pt;}
._a{margin-left:-3.711787pt;}
._2{margin-left:-2.778667pt;}
._3{margin-left:-1.866027pt;}
._0{margin-left:-0.965333pt;}
._1{width:0.970667pt;}
._9{width:2.231040pt;}
._5{width:3.777280pt;}
._6{width:4.760533pt;}
._11{width:5.896320pt;}
._10{width:6.905600pt;}
._f{width:8.233600pt;}
._8{width:9.759573pt;}
._d{width:10.875093pt;}
._7{width:12.203093pt;}
._15{width:15.501440pt;}
._b{width:16.399573pt;}
._c{width:17.848320pt;}
._e{width:19.229440pt;}
._12{width:22.310400pt;}
._14{width:29.587840pt;}
._13{width:30.703360pt;}
.fs2{font-size:2.560000pt;}
.fs8{font-size:32.000000pt;}
.fs7{font-size:34.560000pt;}
.fs3{font-size:42.880000pt;}
.fs0{font-size:48.000000pt;}
.fs9{font-size:50.560000pt;}
.fs5{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs4{font-size:64.000000pt;}
.fs6{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.y1a{bottom:0.160000pt;}
.y46{bottom:2.880000pt;}
.y49{bottom:3.040000pt;}
.y3{bottom:3.200000pt;}
.y18{bottom:4.320000pt;}
.ye{bottom:8.480000pt;}
.y1b{bottom:11.040000pt;}
.y4a{bottom:13.280000pt;}
.y99{bottom:15.360000pt;}
.y4{bottom:15.392000pt;}
.y48{bottom:16.000000pt;}
.y2{bottom:17.952000pt;}
.y45{bottom:18.240000pt;}
.yc{bottom:22.240000pt;}
.y17{bottom:26.120000pt;}
.y5{bottom:27.840000pt;}
.y44{bottom:33.600000pt;}
.yb{bottom:36.800000pt;}
.y16{bottom:40.680000pt;}
.y1{bottom:46.560000pt;}
.y43{bottom:48.960000pt;}
.ya{bottom:51.360000pt;}
.y15{bottom:55.400000pt;}
.y42{bottom:64.160000pt;}
.y14{bottom:69.480000pt;}
.y9{bottom:75.200000pt;}
.y13{bottom:78.760000pt;}
.y41{bottom:79.520000pt;}
.y8{bottom:92.666667pt;}
.yc8{bottom:92.672000pt;}
.y56{bottom:94.272000pt;}
.y40{bottom:94.880000pt;}
.y12{bottom:94.920000pt;}
.y93{bottom:105.312000pt;}
.yc7{bottom:108.032000pt;}
.y7{bottom:108.986667pt;}
.y55{bottom:109.632000pt;}
.y3f{bottom:110.240000pt;}
.y11{bottom:111.880000pt;}
.y92{bottom:120.672000pt;}
.yc6{bottom:123.392000pt;}
.y54{bottom:124.992000pt;}
.y3e{bottom:125.600000pt;}
.yeb{bottom:127.392000pt;}
.y10{bottom:133.480000pt;}
.y91{bottom:136.026667pt;}
.yc5{bottom:138.746667pt;}
.y53{bottom:140.346667pt;}
.y3d{bottom:140.960000pt;}
.yea{bottom:142.746667pt;}
.y90{bottom:151.386667pt;}
.yc4{bottom:154.106667pt;}
.y52{bottom:155.706667pt;}
.y3c{bottom:156.160000pt;}
.ye9{bottom:158.106667pt;}
.y8f{bottom:166.746667pt;}
.yc3{bottom:169.306667pt;}
.y51{bottom:171.066667pt;}
.y3b{bottom:171.520000pt;}
.ye8{bottom:173.306667pt;}
.y8e{bottom:181.946667pt;}
.yc2{bottom:184.666667pt;}
.y50{bottom:186.266667pt;}
.y3a{bottom:186.880000pt;}
.ye7{bottom:188.666667pt;}
.y8d{bottom:197.306667pt;}
.yc1{bottom:200.026667pt;}
.y4f{bottom:201.626667pt;}
.y39{bottom:202.240000pt;}
.ye6{bottom:204.026667pt;}
.y2a{bottom:210.720000pt;}
.y8c{bottom:212.666667pt;}
.yc0{bottom:215.386667pt;}
.y4e{bottom:216.986667pt;}
.y38{bottom:217.600000pt;}
.ye5{bottom:219.386667pt;}
.y29{bottom:223.680000pt;}
.y8b{bottom:228.026667pt;}
.ybf{bottom:230.746667pt;}
.y4d{bottom:232.346667pt;}
.y37{bottom:232.800000pt;}
.ye4{bottom:234.746667pt;}
.y28{bottom:238.906667pt;}
.y8a{bottom:243.386667pt;}
.ybe{bottom:246.106667pt;}
.y4c{bottom:247.706667pt;}
.y36{bottom:248.186667pt;}
.ye3{bottom:250.106667pt;}
.y27{bottom:254.266667pt;}
.y89{bottom:258.746667pt;}
.ybd{bottom:261.306667pt;}
.y4b{bottom:263.066667pt;}
.y35{bottom:263.546667pt;}
.ye2{bottom:265.306667pt;}
.y26{bottom:270.106667pt;}
.y88{bottom:273.946667pt;}
.y47{bottom:275.386667pt;}
.ybc{bottom:276.666667pt;}
.y34{bottom:278.906667pt;}
.ye1{bottom:280.666667pt;}
.y25{bottom:284.986667pt;}
.y87{bottom:289.306667pt;}
.ybb{bottom:292.026667pt;}
.y33{bottom:294.266667pt;}
.ye0{bottom:296.026667pt;}
.y24{bottom:299.546667pt;}
.y1c{bottom:301.506667pt;}
.y86{bottom:304.706667pt;}
.yba{bottom:307.426667pt;}
.y32{bottom:309.626667pt;}
.ydf{bottom:311.426667pt;}
.y23{bottom:314.746667pt;}
.y85{bottom:320.066667pt;}
.yb9{bottom:322.786667pt;}
.y31{bottom:324.826667pt;}
.yde{bottom:326.786667pt;}
.y22{bottom:330.106667pt;}
.y84{bottom:335.426667pt;}
.yb8{bottom:338.146667pt;}
.y30{bottom:340.186667pt;}
.ydd{bottom:342.146667pt;}
.y21{bottom:345.626667pt;}
.y83{bottom:350.626667pt;}
.yb7{bottom:353.346667pt;}
.y2f{bottom:355.546667pt;}
.ydc{bottom:357.346667pt;}
.y20{bottom:361.146667pt;}
.y82{bottom:365.986667pt;}
.yb6{bottom:368.706667pt;}
.y2e{bottom:370.906667pt;}
.ydb{bottom:372.706667pt;}
.y1f{bottom:379.066667pt;}
.y81{bottom:381.346667pt;}
.yb5{bottom:384.066667pt;}
.y2d{bottom:386.266667pt;}
.yda{bottom:388.066667pt;}
.y80{bottom:396.706667pt;}
.yb4{bottom:399.426667pt;}
.y2c{bottom:401.626667pt;}
.yd9{bottom:403.426667pt;}
.y1e{bottom:403.546667pt;}
.y7f{bottom:412.066667pt;}
.yb3{bottom:412.546667pt;}
.y2b{bottom:416.826667pt;}
.yd8{bottom:418.786667pt;}
.y1d{bottom:419.226667pt;}
.y7e{bottom:427.426667pt;}
.yb2{bottom:428.546667pt;}
.yd7{bottom:433.986667pt;}
.y7d{bottom:442.626667pt;}
.yb1{bottom:444.546667pt;}
.yd6{bottom:449.346667pt;}
.y7c{bottom:457.986667pt;}
.yb0{bottom:460.546667pt;}
.yd5{bottom:464.706667pt;}
.y7b{bottom:473.346667pt;}
.yaf{bottom:476.546667pt;}
.yd4{bottom:480.066667pt;}
.y7a{bottom:488.706667pt;}
.yae{bottom:495.426667pt;}
.y79{bottom:504.066667pt;}
.yad{bottom:510.786667pt;}
.y78{bottom:519.426667pt;}
.yac{bottom:523.906667pt;}
.yd3{bottom:525.986667pt;}
.y77{bottom:534.626667pt;}
.yab{bottom:539.933333pt;}
.yd2{bottom:541.373333pt;}
.y76{bottom:550.013333pt;}
.yaa{bottom:555.933333pt;}
.yd1{bottom:556.733333pt;}
.y75{bottom:565.373333pt;}
.ya9{bottom:571.933333pt;}
.yd0{bottom:572.093333pt;}
.y74{bottom:581.693333pt;}
.ycf{bottom:587.453333pt;}
.ya8{bottom:587.933333pt;}
.y73{bottom:598.013333pt;}
.yce{bottom:602.813333pt;}
.ya7{bottom:603.933333pt;}
.y72{bottom:614.173333pt;}
.ycd{bottom:618.013333pt;}
.ya6{bottom:619.933333pt;}
.y71{bottom:630.493333pt;}
.ycc{bottom:633.373333pt;}
.ya5{bottom:638.813333pt;}
.y70{bottom:645.853333pt;}
.ycb{bottom:648.733333pt;}
.ya4{bottom:654.013333pt;}
.y6f{bottom:662.173333pt;}
.yca{bottom:664.093333pt;}
.ya3{bottom:667.133333pt;}
.y6e{bottom:678.493333pt;}
.yc9{bottom:679.453333pt;}
.ya2{bottom:683.133333pt;}
.y6d{bottom:694.813333pt;}
.ya1{bottom:699.133333pt;}
.y6c{bottom:710.013333pt;}
.ya0{bottom:718.013333pt;}
.y6b{bottom:725.373333pt;}
.y19{bottom:730.813333pt;}
.y9f{bottom:733.373333pt;}
.y6a{bottom:740.733333pt;}
.y9e{bottom:746.493333pt;}
.y69{bottom:756.093333pt;}
.yf{bottom:757.053333pt;}
.y9d{bottom:762.493333pt;}
.y68{bottom:771.453333pt;}
.y9c{bottom:778.533333pt;}
.y67{bottom:786.693333pt;}
.y9b{bottom:794.533333pt;}
.y66{bottom:802.053333pt;}
.y9a{bottom:810.533333pt;}
.y65{bottom:817.413333pt;}
.y98{bottom:826.533333pt;}
.y64{bottom:832.773333pt;}
.y97{bottom:842.533333pt;}
.y63{bottom:848.133333pt;}
.y96{bottom:858.533333pt;}
.y62{bottom:863.493333pt;}
.y95{bottom:874.533333pt;}
.y61{bottom:878.693333pt;}
.y94{bottom:890.533333pt;}
.y60{bottom:894.053333pt;}
.yd{bottom:903.973333pt;}
.y5f{bottom:909.413333pt;}
.y5e{bottom:924.773333pt;}
.y6{bottom:926.533333pt;}
.y5d{bottom:940.133333pt;}
.y5c{bottom:955.493333pt;}
.y5b{bottom:970.693333pt;}
.y5a{bottom:986.053333pt;}
.y59{bottom:1001.413333pt;}
.y58{bottom:1016.800000pt;}
.y57{bottom:1032.160000pt;}
.h8{height:2.546250pt;}
.h16{height:2.621250pt;}
.h25{height:15.200000pt;}
.h26{height:15.232000pt;}
.h23{height:15.360000pt;}
.h24{height:15.392000pt;}
.hd{height:22.240000pt;}
.h14{height:25.750000pt;}
.h21{height:26.112000pt;}
.h15{height:26.240000pt;}
.h2{height:29.312000pt;}
.h13{height:31.828125pt;}
.h9{height:32.160000pt;}
.h1e{height:34.505000pt;}
.h1b{height:35.772188pt;}
.h20{height:37.090625pt;}
.h1f{height:37.479688pt;}
.h1d{height:37.583438pt;}
.h4{height:38.625000pt;}
.h22{height:38.672812pt;}
.hf{height:39.113750pt;}
.hb{height:39.840000pt;}
.h1c{height:40.685000pt;}
.h19{height:42.649687pt;}
.ha{height:48.000000pt;}
.h3{height:49.148438pt;}
.h1a{height:50.288438pt;}
.h11{height:52.834688pt;}
.h12{height:54.390938pt;}
.h10{height:56.160000pt;}
.h6{height:58.563750pt;}
.h5{height:60.288750pt;}
.hc{height:63.656250pt;}
.h17{height:65.531250pt;}
.h7{height:117.952000pt;}
.he{height:146.906667pt;}
.h18{height:429.306667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w3{width:64.960000pt;}
.w11{width:85.120000pt;}
.w14{width:100.000000pt;}
.wf{width:133.946667pt;}
.w5{width:135.226667pt;}
.w10{width:188.826667pt;}
.w8{width:198.946667pt;}
.wb{width:225.466667pt;}
.we{width:238.786667pt;}
.wd{width:255.706667pt;}
.w13{width:266.786667pt;}
.w12{width:280.546667pt;}
.wc{width:392.253333pt;}
.wa{width:422.493333pt;}
.w9{width:450.946667pt;}
.w6{width:514.653333pt;}
.w2{width:584.933333pt;}
.w7{width:649.893333pt;}
.w4{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:7.712000pt;}
.x11{left:11.200000pt;}
.xe{left:32.352000pt;}
.xb{left:45.792000pt;}
.xd{left:57.312000pt;}
.x1{left:72.000000pt;}
.x4{left:95.226667pt;}
.x12{left:144.346655pt;}
.xc{left:161.626667pt;}
.xf{left:191.746667pt;}
.x19{left:194.266655pt;}
.x14{left:202.266655pt;}
.x5{left:207.226667pt;}
.x16{left:211.546655pt;}
.x8{left:241.666667pt;}
.x10{left:270.946667pt;}
.x6{left:294.786667pt;}
.x7{left:311.906667pt;}
.xa{left:324.866667pt;}
.x1c{left:352.066655pt;}
.x1a{left:353.826667pt;}
.x9{left:390.346667pt;}
.x17{left:446.653333pt;}
.x15{left:465.533333pt;}
.x13{left:495.773333pt;}
.x1b{left:621.253333pt;}
.x18{left:636.133333pt;}
.x3{left:656.933333pt;}
}




    .paper-inline-ad { box-sizing: border-box; margin: 13px auto; max-width: 100%; min-height: 120px; background: #fff; border: 1px solid #e5e7eb; overflow: hidden; }
    .paper-inline-ad-label { padding: 6px 10px 0 10px; font: 10px system-ui, sans-serif; color: #9ca3af; text-transform: uppercase; letter-spacing: .04em; }
    .paper-inline-ad-slot { min-height: 100px; }
    .paper-inline-ad--internal { padding: 0; }
    .paper-internal-promo { padding: 14px 16px 16px 16px; font: 13px system-ui, sans-serif; line-height: 1.45; color: #374151; }
    .paper-internal-promo-title { font-size: 17px; font-weight: 800; color: #111827; margin-bottom: 7px; }
    .paper-internal-promo-body { margin-bottom: 12px; }
    .paper-internal-promo-actions { display: flex; flex-wrap: wrap; gap: 8px; }
    .paper-internal-promo-actions a { display: inline-block; padding: 7px 10px; border: 1px solid #d1d5db; border-radius: 8px; text-decoration: none; color: #111827; background: #f9fafb; font-weight: 700; }
  