
    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_d8711a4958c0eea1be81d398.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_07849c0ef98e232a74e40caa.woff')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_40e79e8a09f65c42c9db26bf.woff')format("woff");}.ff3{font-family:ff3;line-height:1.040039;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_579945e2163271186177d9d8.woff')format("woff");}.ff4{font-family:ff4;line-height:1.001465;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_4152009e62aaf6e5007f6c56.woff')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_b13a19d47471c5533db2c04d.woff')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_59659ef405962cb570325c62.woff')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_41c45893d90abb55b9620a33.woff')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_11192acb79bf6025f3445be7.woff')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_e33ef8e47d455e29b32cbcde.woff')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_a96cf4faebf0955bbdf87526.woff')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_5f2d09a0c585ffac71973771.woff')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_7bea70754c748fee086aa5a1.woff')format("woff");}.ffd{font-family:ffd;line-height:0.958008;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_04bdb62edb8d290881abee8c.woff')format("woff");}.ffe{font-family:ffe;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:fff;src:url('chunks/assets/font_5a13a04e3f90965219d756d6.woff')format("woff");}.fff{font-family:fff;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:ff10;src:url('chunks/assets/font_2269642cb7da9c8d2e19c832.woff')format("woff");}.ff10{font-family:ff10;line-height:0.942383;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_fe599fa157508665a302c2a4.woff')format("woff");}.ff11{font-family:ff11;line-height:0.942383;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_ebe293e45c0284338f661612.woff')format("woff");}.ff12{font-family:ff12;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:ff13;src:url('chunks/assets/font_460b6cfa6465b365873d3024.woff')format("woff");}.ff13{font-family:ff13;line-height:1.040039;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_acd67094a44ab3af61e3a90c.woff')format("woff");}.ff14{font-family:ff14;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:ff15;src:url('chunks/assets/font_5d123772bb4c8abe91c34807.woff')format("woff");}.ff15{font-family:ff15;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:ff16;src:url('chunks/assets/font_130301694ab792f9947e2b7d.woff')format("woff");}.ff16{font-family:ff16;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;}
.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:-13.500000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:18.000000px;}
.ls8{letter-spacing:-1.482000px;}
.ls7{letter-spacing:-1.128000px;}
.ls9{letter-spacing:-0.961323px;}
.lsa{letter-spacing:-0.792000px;}
.ls6{letter-spacing:0.000000px;}
.lsb{letter-spacing:0.090000px;}
.ls11{letter-spacing:0.180000px;}
.ls1{letter-spacing:1.854000px;}
.ls4{letter-spacing:1.906500px;}
.ls3{letter-spacing:1.966500px;}
.ls2{letter-spacing:2.146500px;}
.ls10{letter-spacing:2.164500px;}
.ls12{letter-spacing:2.190000px;}
.ls0{letter-spacing:2.250000px;}
.ls14{letter-spacing:2.310000px;}
.lse{letter-spacing:2.370000px;}
.lsf{letter-spacing:2.400000px;}
.ls13{letter-spacing:2.430000px;}
.ls5{letter-spacing:4.779000px;}
.ls15{letter-spacing:15.387000px;}
.lsd{letter-spacing:46.887000px;}
.lsc{letter-spacing:64.887000px;}
.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;}
}
.ws1{word-spacing:-61.663798px;}
.ws2{word-spacing:-16.875000px;}
.ws9{word-spacing:-16.789500px;}
.ws3{word-spacing:-16.146000px;}
.ws4{word-spacing:-15.354000px;}
.ws6{word-spacing:-14.625000px;}
.ws0{word-spacing:-13.500000px;}
.ws7{word-spacing:-13.221000px;}
.ws5{word-spacing:-8.136000px;}
.ws8{word-spacing:0.000000px;}
._12{margin-left:-6.630000px;}
._18{margin-left:-5.283000px;}
._a{margin-left:-4.270500px;}
._6{margin-left:-2.952000px;}
._0{margin-left:-1.755000px;}
._3{width:1.140000px;}
._2{width:2.164500px;}
._19{width:3.169500px;}
._4{width:4.171500px;}
._5{width:6.054000px;}
._8{width:7.281000px;}
._1{width:8.833500px;}
._9{width:10.270500px;}
._f{width:11.598000px;}
._b{width:13.198500px;}
._7{width:16.335000px;}
._14{width:17.638500px;}
._16{width:20.638500px;}
._13{width:21.675000px;}
._17{width:24.801000px;}
._15{width:26.826000px;}
._10{width:29.490000px;}
._11{width:30.508500px;}
._1a{width:34.330500px;}
._e{width:35.509500px;}
._1b{width:37.095000px;}
._d{width:39.141000px;}
._c{width:40.161000px;}
.fc4{color:rgb(227,108,10);}
.fc3{color:rgb(50,62,79);}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(31,56,100);}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:36.000000px;}
.fs6{font-size:40.500000px;}
.fs4{font-size:49.500000px;}
.fs1{font-size:54.000000px;}
.fs0{font-size:58.500000px;}
.fs2{font-size:61.663798px;}
.fs3{font-size:72.000000px;}
.fs5{font-size:85.650000px;}
.y0{bottom:0.000000px;}
.y1a{bottom:1.125000px;}
.y4c{bottom:3.375000px;}
.y95{bottom:3.390000px;}
.y99{bottom:3.405000px;}
.yc5{bottom:3.420000px;}
.y18{bottom:4.500000px;}
.ya5{bottom:4.515000px;}
.ybd{bottom:4.530000px;}
.ya9{bottom:4.545000px;}
.y4b{bottom:10.125000px;}
.yd{bottom:11.295000px;}
.y1b{bottom:12.375000px;}
.yb{bottom:13.500000px;}
.y3{bottom:15.750000px;}
.y48{bottom:21.375000px;}
.y4a{bottom:24.750000px;}
.y17{bottom:28.170000px;}
.y4{bottom:30.375000px;}
.ya{bottom:30.405000px;}
.y2{bottom:36.037500px;}
.y47{bottom:38.250000px;}
.y16{bottom:45.045000px;}
.y9{bottom:46.155000px;}
.y1{bottom:52.912500px;}
.y46{bottom:56.280000px;}
.y15{bottom:60.795000px;}
.y45{bottom:73.155000px;}
.y8{bottom:73.185000px;}
.y14{bottom:77.700000px;}
.y13{bottom:87.825000px;}
.y44{bottom:90.075000px;}
.y7{bottom:93.435000px;}
.y12{bottom:105.825000px;}
.y43{bottom:108.075000px;}
.y6{bottom:110.355000px;}
.ye3{bottom:118.237500px;}
.yca{bottom:123.862500px;}
.y11{bottom:124.995000px;}
.y89{bottom:126.112500px;}
.ye2{bottom:135.112500px;}
.yc9{bottom:141.862500px;}
.y42{bottom:141.870000px;}
.y4f{bottom:142.987500px;}
.y88{bottom:144.112500px;}
.y10{bottom:150.900000px;}
.ye1{bottom:151.995000px;}
.yc8{bottom:155.370000px;}
.y41{bottom:159.855000px;}
.y4e{bottom:159.900000px;}
.y87{bottom:161.025000px;}
.ye0{bottom:170.025000px;}
.yf{bottom:175.650000px;}
.y40{bottom:176.775000px;}
.y86{bottom:179.025000px;}
.yb3{bottom:180.150000px;}
.ydf{bottom:186.900000px;}
.y3f{bottom:193.650000px;}
.y4d{bottom:194.775000px;}
.y85{bottom:197.025000px;}
.yde{bottom:203.820000px;}
.y49{bottom:208.320000px;}
.y3e{bottom:211.695000px;}
.yb2{bottom:212.820000px;}
.y84{bottom:215.070000px;}
.ydd{bottom:221.820000px;}
.y3d{bottom:228.570000px;}
.yb1{bottom:230.820000px;}
.y83{bottom:231.945000px;}
.ydc{bottom:238.695000px;}
.y1c{bottom:244.350000px;}
.y3c{bottom:245.445000px;}
.yb0{bottom:248.850000px;}
.y82{bottom:249.975000px;}
.ydb{bottom:255.600000px;}
.y3b{bottom:263.475000px;}
.yaf{bottom:266.850000px;}
.y81{bottom:267.975000px;}
.yda{bottom:273.600000px;}
.y3a{bottom:280.350000px;}
.yae{bottom:284.880000px;}
.y80{bottom:286.005000px;}
.yd9{bottom:290.505000px;}
.y39{bottom:297.255000px;}
.y7f{bottom:302.880000px;}
.yd8{bottom:307.380000px;}
.y38{bottom:315.270000px;}
.y7e{bottom:320.880000px;}
.yd7{bottom:325.395000px;}
.y37{bottom:332.145000px;}
.y7d{bottom:337.800000px;}
.y29{bottom:338.925000px;}
.yad{bottom:342.300000px;}
.y36{bottom:349.050000px;}
.y28{bottom:354.675000px;}
.yac{bottom:359.175000px;}
.y35{bottom:367.050000px;}
.y27{bottom:372.675000px;}
.y7c{bottom:372.720000px;}
.yab{bottom:377.205000px;}
.yd6{bottom:383.955000px;}
.y34{bottom:383.970000px;}
.y26{bottom:389.595000px;}
.yaa{bottom:390.705000px;}
.y33{bottom:400.845000px;}
.yd5{bottom:401.955000px;}
.y7b{bottom:406.470000px;}
.y25{bottom:407.595000px;}
.ya8{bottom:408.705000px;}
.y32{bottom:418.875000px;}
.y24{bottom:424.500000px;}
.ya7{bottom:426.750000px;}
.y31{bottom:435.750000px;}
.y7a{bottom:441.375000px;}
.y23{bottom:442.500000px;}
.ya6{bottom:444.750000px;}
.y30{bottom:452.625000px;}
.yd4{bottom:453.795000px;}
.y79{bottom:458.280000px;}
.y22{bottom:459.405000px;}
.ya4{bottom:462.780000px;}
.y2f{bottom:470.655000px;}
.yd3{bottom:470.670000px;}
.y21{bottom:476.280000px;}
.y78{bottom:476.295000px;}
.ya3{bottom:480.780000px;}
.y2e{bottom:487.530000px;}
.yd2{bottom:487.545000px;}
.y77{bottom:493.200000px;}
.y20{bottom:495.420000px;}
.ya2{bottom:498.825000px;}
.y2d{bottom:504.450000px;}
.y76{bottom:510.075000px;}
.y1f{bottom:513.450000px;}
.ya1{bottom:516.825000px;}
.y2c{bottom:522.450000px;}
.yc7{bottom:525.825000px;}
.y75{bottom:528.075000px;}
.yd1{bottom:530.325000px;}
.y2b{bottom:539.325000px;}
.ya0{bottom:539.370000px;}
.y1e{bottom:540.450000px;}
.yc6{bottom:540.480000px;}
.y74{bottom:544.980000px;}
.yd0{bottom:547.245000px;}
.y2a{bottom:556.230000px;}
.y9f{bottom:556.245000px;}
.y1d{bottom:558.480000px;}
.y73{bottom:561.855000px;}
.ycf{bottom:564.120000px;}
.y9e{bottom:573.120000px;}
.yc4{bottom:576.480000px;}
.y72{bottom:579.900000px;}
.yce{bottom:582.150000px;}
.y9d{bottom:591.150000px;}
.yc3{bottom:594.525000px;}
.y71{bottom:596.775000px;}
.ycd{bottom:599.025000px;}
.y9c{bottom:608.025000px;}
.yc2{bottom:612.525000px;}
.y70{bottom:613.650000px;}
.ycc{bottom:615.900000px;}
.y9b{bottom:622.695000px;}
.yc1{bottom:630.570000px;}
.y6f{bottom:632.820000px;}
.ycb{bottom:633.945000px;}
.y9a{bottom:640.695000px;}
.y6e{bottom:650.820000px;}
.yc0{bottom:651.945000px;}
.y98{bottom:658.695000px;}
.y6d{bottom:667.725000px;}
.ybf{bottom:668.850000px;}
.y97{bottom:676.725000px;}
.y6c{bottom:685.725000px;}
.ybe{bottom:686.850000px;}
.y96{bottom:694.725000px;}
.ybc{bottom:700.350000px;}
.y6b{bottom:702.645000px;}
.y94{bottom:712.755000px;}
.ybb{bottom:718.380000px;}
.y6a{bottom:719.520000px;}
.y93{bottom:730.755000px;}
.yba{bottom:736.380000px;}
.y69{bottom:737.505000px;}
.y92{bottom:752.175000px;}
.y68{bottom:754.425000px;}
.y91{bottom:769.050000px;}
.y67{bottom:771.300000px;}
.yb9{bottom:772.425000px;}
.y90{bottom:787.080000px;}
.y66{bottom:789.330000px;}
.yb8{bottom:790.455000px;}
.y8f{bottom:803.955000px;}
.y65{bottom:806.205000px;}
.yb7{bottom:812.955000px;}
.y19{bottom:814.080000px;}
.y8e{bottom:820.830000px;}
.y64{bottom:823.080000px;}
.yb6{bottom:829.875000px;}
.y8d{bottom:838.875000px;}
.y63{bottom:841.125000px;}
.ye{bottom:844.500000px;}
.yb5{bottom:846.750000px;}
.y8c{bottom:855.750000px;}
.y62{bottom:858.000000px;}
.yb4{bottom:860.250000px;}
.y8b{bottom:873.795000px;}
.y61{bottom:874.920000px;}
.y8a{bottom:891.795000px;}
.y60{bottom:892.920000px;}
.y5f{bottom:909.795000px;}
.y5e{bottom:926.700000px;}
.y5d{bottom:944.700000px;}
.y5c{bottom:961.620000px;}
.y5b{bottom:978.495000px;}
.y5a{bottom:996.525000px;}
.y59{bottom:1013.400000px;}
.y58{bottom:1030.275000px;}
.yc{bottom:1034.775000px;}
.y57{bottom:1048.320000px;}
.y5{bottom:1060.695000px;}
.y56{bottom:1065.195000px;}
.y55{bottom:1082.100000px;}
.y54{bottom:1100.100000px;}
.y53{bottom:1116.975000px;}
.y52{bottom:1133.880000px;}
.y51{bottom:1151.880000px;}
.y50{bottom:1168.800000px;}
.h1e{height:16.875000px;}
.h1f{height:16.897500px;}
.h1d{height:16.912500px;}
.h21{height:18.000000px;}
.h20{height:18.037500px;}
.hc{height:25.912500px;}
.h13{height:27.738281px;}
.h14{height:30.412500px;}
.h12{height:35.806641px;}
.h1b{height:36.037500px;}
.h9{height:37.125000px;}
.h19{height:37.801758px;}
.h1a{height:40.847168px;}
.h5{height:41.275635px;}
.h1c{height:42.589600px;}
.he{height:43.075195px;}
.hb{height:43.875000px;}
.h18{height:44.674805px;}
.h3{height:48.216797px;}
.h17{height:49.234131px;}
.h2{height:49.537500px;}
.h6{height:50.273438px;}
.h4{height:51.968611px;}
.ha{height:54.000000px;}
.h10{height:58.185791px;}
.h11{height:59.899658px;}
.hf{height:64.237500px;}
.h8{height:71.613281px;}
.h15{height:73.722656px;}
.h7{height:121.612500px;}
.hd{height:190.275000px;}
.h16{height:569.745000px;}
.h0{height:1263.375000px;}
.h1{height:1263.750000px;}
.w2{width:74.362500px;}
.w16{width:95.737500px;}
.w1a{width:108.150000px;}
.w10{width:113.775000px;}
.w4{width:152.055000px;}
.w18{width:153.195000px;}
.wc{width:156.555000px;}
.wa{width:161.100000px;}
.we{width:167.850000px;}
.w19{width:183.600000px;}
.wb{width:194.895000px;}
.w14{width:200.520000px;}
.wf{width:202.755000px;}
.w13{width:221.895000px;}
.w7{width:223.020000px;}
.w15{width:228.675000px;}
.w9{width:233.145000px;}
.wd{width:261.300000px;}
.w17{width:301.875000px;}
.w12{width:340.200000px;}
.w11{width:407.730000px;}
.w8{width:524.925000px;}
.w5{width:595.875000px;}
.w1{width:674.745000px;}
.w6{width:747.945000px;}
.w3{width:893.249987px;}
.w0{width:893.250000px;}
.x0{left:0.000000px;}
.x1f{left:6.750000px;}
.xa{left:7.875000px;}
.x2{left:9.037500px;}
.x18{left:12.420000px;}
.x11{left:23.625000px;}
.x1{left:72.075000px;}
.x7{left:73.237500px;}
.x6{left:81.112487px;}
.x8{left:97.987500px;}
.x19{left:108.149987px;}
.x1a{left:135.187487px;}
.x13{left:200.467500px;}
.x16{left:214.012500px;}
.x3{left:216.300000px;}
.x9{left:225.300000px;}
.x14{left:232.012500px;}
.x15{left:234.262500px;}
.x4{left:244.455000px;}
.x28{left:268.094987px;}
.x29{left:270.329987px;}
.x25{left:271.469987px;}
.x1b{left:272.594987px;}
.xd{left:290.625000px;}
.x17{left:296.250000px;}
.x12{left:297.382500px;}
.x20{left:305.249987px;}
.x1c{left:307.500000px;}
.x31{left:321.029987px;}
.x2c{left:323.279987px;}
.x21{left:334.545000px;}
.xb{left:349.200000px;}
.xf{left:364.950000px;}
.xc{left:368.325000px;}
.x10{left:373.957500px;}
.x2d{left:375.120000px;}
.x24{left:378.494987px;}
.xe{left:453.945000px;}
.x1d{left:468.600000px;}
.x26{left:480.975000px;}
.x2a{left:496.770000px;}
.x22{left:503.520000px;}
.x2e{left:529.425000px;}
.x1e{left:664.620000px;}
.x27{left:682.619987px;}
.x30{left:693.899987px;}
.x23{left:707.400000px;}
.x2f{left:713.025000px;}
.x2b{left:725.445000px;}
.x5{left:746.820000px;}
@media print{
.v2{vertical-align:-12.000000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:16.000000pt;}
.ls8{letter-spacing:-1.317333pt;}
.ls7{letter-spacing:-1.002667pt;}
.ls9{letter-spacing:-0.854509pt;}
.lsa{letter-spacing:-0.704000pt;}
.ls6{letter-spacing:0.000000pt;}
.lsb{letter-spacing:0.080000pt;}
.ls11{letter-spacing:0.160000pt;}
.ls1{letter-spacing:1.648000pt;}
.ls4{letter-spacing:1.694667pt;}
.ls3{letter-spacing:1.748000pt;}
.ls2{letter-spacing:1.908000pt;}
.ls10{letter-spacing:1.924000pt;}
.ls12{letter-spacing:1.946667pt;}
.ls0{letter-spacing:2.000000pt;}
.ls14{letter-spacing:2.053333pt;}
.lse{letter-spacing:2.106667pt;}
.lsf{letter-spacing:2.133333pt;}
.ls13{letter-spacing:2.160000pt;}
.ls5{letter-spacing:4.248000pt;}
.ls15{letter-spacing:13.677333pt;}
.lsd{letter-spacing:41.677333pt;}
.lsc{letter-spacing:57.677333pt;}
.ws1{word-spacing:-54.812265pt;}
.ws2{word-spacing:-15.000000pt;}
.ws9{word-spacing:-14.924000pt;}
.ws3{word-spacing:-14.352000pt;}
.ws4{word-spacing:-13.648000pt;}
.ws6{word-spacing:-13.000000pt;}
.ws0{word-spacing:-12.000000pt;}
.ws7{word-spacing:-11.752000pt;}
.ws5{word-spacing:-7.232000pt;}
.ws8{word-spacing:0.000000pt;}
._12{margin-left:-5.893333pt;}
._18{margin-left:-4.696000pt;}
._a{margin-left:-3.796000pt;}
._6{margin-left:-2.624000pt;}
._0{margin-left:-1.560000pt;}
._3{width:1.013333pt;}
._2{width:1.924000pt;}
._19{width:2.817333pt;}
._4{width:3.708000pt;}
._5{width:5.381333pt;}
._8{width:6.472000pt;}
._1{width:7.852000pt;}
._9{width:9.129333pt;}
._f{width:10.309333pt;}
._b{width:11.732000pt;}
._7{width:14.520000pt;}
._14{width:15.678667pt;}
._16{width:18.345333pt;}
._13{width:19.266667pt;}
._17{width:22.045333pt;}
._15{width:23.845333pt;}
._10{width:26.213333pt;}
._11{width:27.118667pt;}
._1a{width:30.516000pt;}
._e{width:31.564000pt;}
._1b{width:32.973333pt;}
._d{width:34.792000pt;}
._c{width:35.698667pt;}
.fs7{font-size:32.000000pt;}
.fs6{font-size:36.000000pt;}
.fs4{font-size:44.000000pt;}
.fs1{font-size:48.000000pt;}
.fs0{font-size:52.000000pt;}
.fs2{font-size:54.812265pt;}
.fs3{font-size:64.000000pt;}
.fs5{font-size:76.133333pt;}
.y0{bottom:0.000000pt;}
.y1a{bottom:1.000000pt;}
.y4c{bottom:3.000000pt;}
.y95{bottom:3.013333pt;}
.y99{bottom:3.026667pt;}
.yc5{bottom:3.040000pt;}
.y18{bottom:4.000000pt;}
.ya5{bottom:4.013333pt;}
.ybd{bottom:4.026667pt;}
.ya9{bottom:4.040000pt;}
.y4b{bottom:9.000000pt;}
.yd{bottom:10.040000pt;}
.y1b{bottom:11.000000pt;}
.yb{bottom:12.000000pt;}
.y3{bottom:14.000000pt;}
.y48{bottom:19.000000pt;}
.y4a{bottom:22.000000pt;}
.y17{bottom:25.040000pt;}
.y4{bottom:27.000000pt;}
.ya{bottom:27.026667pt;}
.y2{bottom:32.033333pt;}
.y47{bottom:34.000000pt;}
.y16{bottom:40.040000pt;}
.y9{bottom:41.026667pt;}
.y1{bottom:47.033333pt;}
.y46{bottom:50.026667pt;}
.y15{bottom:54.040000pt;}
.y45{bottom:65.026667pt;}
.y8{bottom:65.053333pt;}
.y14{bottom:69.066667pt;}
.y13{bottom:78.066667pt;}
.y44{bottom:80.066667pt;}
.y7{bottom:83.053333pt;}
.y12{bottom:94.066667pt;}
.y43{bottom:96.066667pt;}
.y6{bottom:98.093333pt;}
.ye3{bottom:105.100000pt;}
.yca{bottom:110.100000pt;}
.y11{bottom:111.106667pt;}
.y89{bottom:112.100000pt;}
.ye2{bottom:120.100000pt;}
.yc9{bottom:126.100000pt;}
.y42{bottom:126.106667pt;}
.y4f{bottom:127.100000pt;}
.y88{bottom:128.100000pt;}
.y10{bottom:134.133333pt;}
.ye1{bottom:135.106667pt;}
.yc8{bottom:138.106667pt;}
.y41{bottom:142.093333pt;}
.y4e{bottom:142.133333pt;}
.y87{bottom:143.133333pt;}
.ye0{bottom:151.133333pt;}
.yf{bottom:156.133333pt;}
.y40{bottom:157.133333pt;}
.y86{bottom:159.133333pt;}
.yb3{bottom:160.133333pt;}
.ydf{bottom:166.133333pt;}
.y3f{bottom:172.133333pt;}
.y4d{bottom:173.133333pt;}
.y85{bottom:175.133333pt;}
.yde{bottom:181.173333pt;}
.y49{bottom:185.173333pt;}
.y3e{bottom:188.173333pt;}
.yb2{bottom:189.173333pt;}
.y84{bottom:191.173333pt;}
.ydd{bottom:197.173333pt;}
.y3d{bottom:203.173333pt;}
.yb1{bottom:205.173333pt;}
.y83{bottom:206.173333pt;}
.ydc{bottom:212.173333pt;}
.y1c{bottom:217.200000pt;}
.y3c{bottom:218.173333pt;}
.yb0{bottom:221.200000pt;}
.y82{bottom:222.200000pt;}
.ydb{bottom:227.200000pt;}
.y3b{bottom:234.200000pt;}
.yaf{bottom:237.200000pt;}
.y81{bottom:238.200000pt;}
.yda{bottom:243.200000pt;}
.y3a{bottom:249.200000pt;}
.yae{bottom:253.226667pt;}
.y80{bottom:254.226667pt;}
.yd9{bottom:258.226667pt;}
.y39{bottom:264.226667pt;}
.y7f{bottom:269.226667pt;}
.yd8{bottom:273.226667pt;}
.y38{bottom:280.240000pt;}
.y7e{bottom:285.226667pt;}
.yd7{bottom:289.240000pt;}
.y37{bottom:295.240000pt;}
.y7d{bottom:300.266667pt;}
.y29{bottom:301.266667pt;}
.yad{bottom:304.266667pt;}
.y36{bottom:310.266667pt;}
.y28{bottom:315.266667pt;}
.yac{bottom:319.266667pt;}
.y35{bottom:326.266667pt;}
.y27{bottom:331.266667pt;}
.y7c{bottom:331.306667pt;}
.yab{bottom:335.293333pt;}
.yd6{bottom:341.293333pt;}
.y34{bottom:341.306667pt;}
.y26{bottom:346.306667pt;}
.yaa{bottom:347.293333pt;}
.y33{bottom:356.306667pt;}
.yd5{bottom:357.293333pt;}
.y7b{bottom:361.306667pt;}
.y25{bottom:362.306667pt;}
.ya8{bottom:363.293333pt;}
.y32{bottom:372.333333pt;}
.y24{bottom:377.333333pt;}
.ya7{bottom:379.333333pt;}
.y31{bottom:387.333333pt;}
.y7a{bottom:392.333333pt;}
.y23{bottom:393.333333pt;}
.ya6{bottom:395.333333pt;}
.y30{bottom:402.333333pt;}
.yd4{bottom:403.373333pt;}
.y79{bottom:407.360000pt;}
.y22{bottom:408.360000pt;}
.ya4{bottom:411.360000pt;}
.y2f{bottom:418.360000pt;}
.yd3{bottom:418.373333pt;}
.y21{bottom:423.360000pt;}
.y78{bottom:423.373333pt;}
.ya3{bottom:427.360000pt;}
.y2e{bottom:433.360000pt;}
.yd2{bottom:433.373333pt;}
.y77{bottom:438.400000pt;}
.y20{bottom:440.373333pt;}
.ya2{bottom:443.400000pt;}
.y2d{bottom:448.400000pt;}
.y76{bottom:453.400000pt;}
.y1f{bottom:456.400000pt;}
.ya1{bottom:459.400000pt;}
.y2c{bottom:464.400000pt;}
.yc7{bottom:467.400000pt;}
.y75{bottom:469.400000pt;}
.yd1{bottom:471.400000pt;}
.y2b{bottom:479.400000pt;}
.ya0{bottom:479.440000pt;}
.y1e{bottom:480.400000pt;}
.yc6{bottom:480.426667pt;}
.y74{bottom:484.426667pt;}
.yd0{bottom:486.440000pt;}
.y2a{bottom:494.426667pt;}
.y9f{bottom:494.440000pt;}
.y1d{bottom:496.426667pt;}
.y73{bottom:499.426667pt;}
.ycf{bottom:501.440000pt;}
.y9e{bottom:509.440000pt;}
.yc4{bottom:512.426667pt;}
.y72{bottom:515.466667pt;}
.yce{bottom:517.466667pt;}
.y9d{bottom:525.466667pt;}
.yc3{bottom:528.466667pt;}
.y71{bottom:530.466667pt;}
.ycd{bottom:532.466667pt;}
.y9c{bottom:540.466667pt;}
.yc2{bottom:544.466667pt;}
.y70{bottom:545.466667pt;}
.ycc{bottom:547.466667pt;}
.y9b{bottom:553.506667pt;}
.yc1{bottom:560.506667pt;}
.y6f{bottom:562.506667pt;}
.ycb{bottom:563.506667pt;}
.y9a{bottom:569.506667pt;}
.y6e{bottom:578.506667pt;}
.yc0{bottom:579.506667pt;}
.y98{bottom:585.506667pt;}
.y6d{bottom:593.533333pt;}
.ybf{bottom:594.533333pt;}
.y97{bottom:601.533333pt;}
.y6c{bottom:609.533333pt;}
.ybe{bottom:610.533333pt;}
.y96{bottom:617.533333pt;}
.ybc{bottom:622.533333pt;}
.y6b{bottom:624.573333pt;}
.y94{bottom:633.560000pt;}
.ybb{bottom:638.560000pt;}
.y6a{bottom:639.573333pt;}
.y93{bottom:649.560000pt;}
.yba{bottom:654.560000pt;}
.y69{bottom:655.560000pt;}
.y92{bottom:668.600000pt;}
.y68{bottom:670.600000pt;}
.y91{bottom:683.600000pt;}
.y67{bottom:685.600000pt;}
.yb9{bottom:686.600000pt;}
.y90{bottom:699.626667pt;}
.y66{bottom:701.626667pt;}
.yb8{bottom:702.626667pt;}
.y8f{bottom:714.626667pt;}
.y65{bottom:716.626667pt;}
.yb7{bottom:722.626667pt;}
.y19{bottom:723.626667pt;}
.y8e{bottom:729.626667pt;}
.y64{bottom:731.626667pt;}
.yb6{bottom:737.666667pt;}
.y8d{bottom:745.666667pt;}
.y63{bottom:747.666667pt;}
.ye{bottom:750.666667pt;}
.yb5{bottom:752.666667pt;}
.y8c{bottom:760.666667pt;}
.y62{bottom:762.666667pt;}
.yb4{bottom:764.666667pt;}
.y8b{bottom:776.706667pt;}
.y61{bottom:777.706667pt;}
.y8a{bottom:792.706667pt;}
.y60{bottom:793.706667pt;}
.y5f{bottom:808.706667pt;}
.y5e{bottom:823.733333pt;}
.y5d{bottom:839.733333pt;}
.y5c{bottom:854.773333pt;}
.y5b{bottom:869.773333pt;}
.y5a{bottom:885.800000pt;}
.y59{bottom:900.800000pt;}
.y58{bottom:915.800000pt;}
.yc{bottom:919.800000pt;}
.y57{bottom:931.840000pt;}
.y5{bottom:942.840000pt;}
.y56{bottom:946.840000pt;}
.y55{bottom:961.866667pt;}
.y54{bottom:977.866667pt;}
.y53{bottom:992.866667pt;}
.y52{bottom:1007.893333pt;}
.y51{bottom:1023.893333pt;}
.y50{bottom:1038.933333pt;}
.h1e{height:15.000000pt;}
.h1f{height:15.020000pt;}
.h1d{height:15.033333pt;}
.h21{height:16.000000pt;}
.h20{height:16.033333pt;}
.hc{height:23.033333pt;}
.h13{height:24.656250pt;}
.h14{height:27.033333pt;}
.h12{height:31.828125pt;}
.h1b{height:32.033333pt;}
.h9{height:33.000000pt;}
.h19{height:33.601562pt;}
.h1a{height:36.308594pt;}
.h5{height:36.689453pt;}
.h1c{height:37.857422pt;}
.he{height:38.289062pt;}
.hb{height:39.000000pt;}
.h18{height:39.710938pt;}
.h3{height:42.859375pt;}
.h17{height:43.763672pt;}
.h2{height:44.033333pt;}
.h6{height:44.687500pt;}
.h4{height:46.194321pt;}
.ha{height:48.000000pt;}
.h10{height:51.720703pt;}
.h11{height:53.244141pt;}
.hf{height:57.100000pt;}
.h8{height:63.656250pt;}
.h15{height:65.531250pt;}
.h7{height:108.100000pt;}
.hd{height:169.133333pt;}
.h16{height:506.440000pt;}
.h0{height:1123.000000pt;}
.h1{height:1123.333333pt;}
.w2{width:66.100000pt;}
.w16{width:85.100000pt;}
.w1a{width:96.133333pt;}
.w10{width:101.133333pt;}
.w4{width:135.160000pt;}
.w18{width:136.173333pt;}
.wc{width:139.160000pt;}
.wa{width:143.200000pt;}
.we{width:149.200000pt;}
.w19{width:163.200000pt;}
.wb{width:173.240000pt;}
.w14{width:178.240000pt;}
.wf{width:180.226667pt;}
.w13{width:197.240000pt;}
.w7{width:198.240000pt;}
.w15{width:203.266667pt;}
.w9{width:207.240000pt;}
.wd{width:232.266667pt;}
.w17{width:268.333333pt;}
.w12{width:302.400000pt;}
.w11{width:362.426667pt;}
.w8{width:466.600000pt;}
.w5{width:529.666667pt;}
.w1{width:599.773333pt;}
.w6{width:664.840000pt;}
.w3{width:793.999988pt;}
.w0{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1f{left:6.000000pt;}
.xa{left:7.000000pt;}
.x2{left:8.033333pt;}
.x18{left:11.040000pt;}
.x11{left:21.000000pt;}
.x1{left:64.066667pt;}
.x7{left:65.100000pt;}
.x6{left:72.099988pt;}
.x8{left:87.100000pt;}
.x19{left:96.133322pt;}
.x1a{left:120.166655pt;}
.x13{left:178.193333pt;}
.x16{left:190.233333pt;}
.x3{left:192.266667pt;}
.x9{left:200.266667pt;}
.x14{left:206.233333pt;}
.x15{left:208.233333pt;}
.x4{left:217.293333pt;}
.x28{left:238.306655pt;}
.x29{left:240.293322pt;}
.x25{left:241.306655pt;}
.x1b{left:242.306655pt;}
.xd{left:258.333333pt;}
.x17{left:263.333333pt;}
.x12{left:264.340000pt;}
.x20{left:271.333322pt;}
.x1c{left:273.333333pt;}
.x31{left:285.359988pt;}
.x2c{left:287.359988pt;}
.x21{left:297.373333pt;}
.xb{left:310.400000pt;}
.xf{left:324.400000pt;}
.xc{left:327.400000pt;}
.x10{left:332.406667pt;}
.x2d{left:333.440000pt;}
.x24{left:336.439988pt;}
.xe{left:403.506667pt;}
.x1d{left:416.533333pt;}
.x26{left:427.533333pt;}
.x2a{left:441.573333pt;}
.x22{left:447.573333pt;}
.x2e{left:470.600000pt;}
.x1e{left:590.773333pt;}
.x27{left:606.773322pt;}
.x30{left:616.799988pt;}
.x23{left:628.800000pt;}
.x2f{left:633.800000pt;}
.x2b{left:644.840000pt;}
.x5{left:663.840000pt;}
}




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