
    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_c5a6fa0261eb1fa2e8e1c037.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_fa1c8461e7f687a33a02aed3.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_7ea67fc52efc26f4c0710705.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_483733aee62c3834633e32bf.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_70a47a1d9921a5e740c95a25.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_1f6c4fbe5cbe6da2b1a058d7.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_37de815d937939c446320fb1.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_178558794cf35f6f0e313581.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_9fe48075677f9e9277052cdf.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_f6e0fbd31336bab014e3b053.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_b25e040995e5d3f80426f57d.woff2')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_2fb99a591d29fd21730fc117.woff2')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_1e5e55a0554b0e51a2217806.woff2')format("woff");}.ffd{font-family:ffd;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:ffe;src:url('chunks/assets/font_33f30a011f87338aa8afafc3.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.739746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_9378504d200235539a49e7f6.woff2')format("woff");}.fff{font-family:fff;line-height:1.372070;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url('chunks/assets/font_916c7718e97ccfeca8251637.woff2')format("woff");}.ff10{font-family:ff10;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:ff11;src:url('chunks/assets/font_f442cb4161f6419cd09e58ca.woff2')format("woff");}.ff11{font-family:ff11;line-height:1.372070;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff12;src:url('chunks/assets/font_ac0eb3750f4887438effd3f3.woff2')format("woff");}.ff12{font-family:ff12;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:ff13;src:url('chunks/assets/font_98ae3b07c7f31b5f6cc90f42.woff2')format("woff");}.ff13{font-family:ff13;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:ff14;src:url('chunks/assets/font_117f3b9e4c33605021573a1a.woff2')format("woff");}.ff14{font-family:ff14;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff15;src:url('chunks/assets/font_368c4306a95ffb5a3ef05ac0.woff2')format("woff");}.ff15{font-family:ff15;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:ff16;src:url('chunks/assets/font_1bdfbc95f504efc3a3df1ec7.woff2')format("woff");}.ff16{font-family:ff16;line-height:1.311035;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);}
.v3{vertical-align:-70.560000px;}
.v4{vertical-align:-69.120000px;}
.v2{vertical-align:-15.300000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:20.880000px;}
.ls9{letter-spacing:-4.680000px;}
.lsa{letter-spacing:-3.960000px;}
.lsd{letter-spacing:-0.360000px;}
.ls8{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.036000px;}
.ls2{letter-spacing:0.132600px;}
.ls6{letter-spacing:0.174240px;}
.ls11{letter-spacing:0.180000px;}
.ls10{letter-spacing:0.259800px;}
.ls3{letter-spacing:0.259920px;}
.ls13{letter-spacing:0.298800px;}
.ls5{letter-spacing:0.312000px;}
.ls7{letter-spacing:0.360000px;}
.lsc{letter-spacing:0.540000px;}
.lsb{letter-spacing:0.720000px;}
.ls0{letter-spacing:0.756000px;}
.ls4{letter-spacing:0.786240px;}
.ls12{letter-spacing:8.100000px;}
.ls16{letter-spacing:15.786720px;}
.ls15{letter-spacing:45.306720px;}
.lsf{letter-spacing:265.260000px;}
.lse{letter-spacing:304.860000px;}
.ls14{letter-spacing:426.540000px;}
.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;}
}
.ws4{word-spacing:-56.880000px;}
.ws0{word-spacing:-16.626360px;}
.ws1{word-spacing:-16.493760px;}
.ws5{word-spacing:-15.300000px;}
.wsc{word-spacing:-15.238800px;}
.wsb{word-spacing:-15.199800px;}
.ws6{word-spacing:-14.940000px;}
.ws9{word-spacing:-13.505760px;}
.ws8{word-spacing:-10.980000px;}
.ws7{word-spacing:-10.260000px;}
.ws2{word-spacing:-8.786880px;}
.ws3{word-spacing:-8.136000px;}
.wsa{word-spacing:0.000000px;}
._16{margin-left:-8.111280px;}
._15{margin-left:-6.992880px;}
._4{margin-left:-4.840560px;}
._3{margin-left:-3.024000px;}
._0{margin-left:-1.188000px;}
._1{width:1.242000px;}
._2{width:2.334000px;}
._b{width:3.489360px;}
._c{width:4.696800px;}
._5{width:5.773440px;}
._a{width:7.124400px;}
._8{width:8.192880px;}
._d{width:9.523440px;}
._e{width:10.904160px;}
._10{width:12.069360px;}
._9{width:13.082400px;}
._11{width:15.958560px;}
._f{width:17.270640px;}
._6{width:19.284480px;}
._7{width:20.659680px;}
._14{width:77.267520px;}
._13{width:80.795520px;}
._12{width:82.373040px;}
.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);}
.fs7{font-size:36.000000px;}
.fs6{font-size:38.880000px;}
.fs3{font-size:48.240000px;}
.fs0{font-size:54.000000px;}
.fs8{font-size:56.880000px;}
.fs4{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs2{font-size:72.000000px;}
.fs5{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.y46{bottom:3.240000px;}
.ya3{bottom:3.420000px;}
.y94{bottom:3.600000px;}
.y3{bottom:3.780000px;}
.ye{bottom:4.320000px;}
.y19{bottom:4.860000px;}
.y1b{bottom:12.420000px;}
.yc{bottom:14.040000px;}
.y47{bottom:15.120000px;}
.y4{bottom:17.460000px;}
.y45{bottom:18.000000px;}
.y2{bottom:20.196000px;}
.y43{bottom:20.925000px;}
.y18{bottom:29.520000px;}
.y5{bottom:30.240000px;}
.yb{bottom:30.420000px;}
.y42{bottom:38.205000px;}
.y17{bottom:45.945000px;}
.ya{bottom:46.800000px;}
.y1{bottom:50.940000px;}
.y41{bottom:55.485000px;}
.y16{bottom:61.785000px;}
.y15{bottom:72.225000px;}
.y40{bottom:72.765000px;}
.y9{bottom:73.440000px;}
.y3f{bottom:90.045000px;}
.y14{bottom:90.585000px;}
.y8{bottom:93.270000px;}
.yb0{bottom:100.656000px;}
.y90{bottom:101.376000px;}
.y3e{bottom:107.325000px;}
.y13{bottom:109.125000px;}
.y7{bottom:111.450000px;}
.y52{bottom:114.696000px;}
.ye8{bottom:116.316000px;}
.yaf{bottom:117.936000px;}
.y8f{bottom:118.656000px;}
.y3d{bottom:124.425000px;}
.y51{bottom:131.976000px;}
.ye7{bottom:133.596000px;}
.y12{bottom:134.865000px;}
.yae{bottom:135.036000px;}
.y8e{bottom:135.936000px;}
.y3c{bottom:141.705000px;}
.y50{bottom:149.076000px;}
.ye6{bottom:150.870000px;}
.yad{bottom:152.310000px;}
.y8d{bottom:153.030000px;}
.y3b{bottom:158.985000px;}
.y11{bottom:160.605000px;}
.y4f{bottom:166.350000px;}
.yac{bottom:166.530000px;}
.ye5{bottom:168.150000px;}
.y8c{bottom:170.310000px;}
.y3a{bottom:176.265000px;}
.y4e{bottom:183.630000px;}
.yab{bottom:184.530000px;}
.y10{bottom:185.085000px;}
.ye4{bottom:185.430000px;}
.y8b{bottom:187.590000px;}
.y39{bottom:193.545000px;}
.y4d{bottom:200.910000px;}
.yaa{bottom:202.530000px;}
.y8a{bottom:204.870000px;}
.y38{bottom:210.645000px;}
.y4c{bottom:218.190000px;}
.ye3{bottom:219.810000px;}
.ya9{bottom:220.530000px;}
.y89{bottom:222.150000px;}
.y37{bottom:227.925000px;}
.y29{bottom:232.785000px;}
.y4b{bottom:235.470000px;}
.ye2{bottom:237.090000px;}
.ya8{bottom:238.530000px;}
.y88{bottom:239.430000px;}
.y36{bottom:245.205000px;}
.y28{bottom:250.065000px;}
.y4a{bottom:252.570000px;}
.ye1{bottom:254.370000px;}
.y87{bottom:256.530000px;}
.y35{bottom:262.485000px;}
.y27{bottom:267.345000px;}
.y49{bottom:269.490000px;}
.ye0{bottom:271.650000px;}
.y86{bottom:273.810000px;}
.ya7{bottom:274.530000px;}
.y34{bottom:279.795000px;}
.y26{bottom:284.655000px;}
.y48{bottom:287.130000px;}
.ydf{bottom:288.930000px;}
.y85{bottom:291.090000px;}
.ya6{bottom:292.530000px;}
.y33{bottom:297.075000px;}
.y44{bottom:300.630000px;}
.y25{bottom:302.115000px;}
.yde{bottom:306.030000px;}
.y84{bottom:308.370000px;}
.ya5{bottom:310.530000px;}
.y32{bottom:314.175000px;}
.y24{bottom:319.575000px;}
.ydd{bottom:323.310000px;}
.y83{bottom:325.650000px;}
.ya4{bottom:328.530000px;}
.y1c{bottom:329.970000px;}
.y31{bottom:331.455000px;}
.y23{bottom:336.855000px;}
.ydc{bottom:340.635000px;}
.y82{bottom:342.975000px;}
.ya2{bottom:346.575000px;}
.y30{bottom:348.735000px;}
.y22{bottom:354.315000px;}
.ydb{bottom:357.915000px;}
.y81{bottom:360.075000px;}
.y2f{bottom:366.015000px;}
.y21{bottom:371.595000px;}
.yda{bottom:375.195000px;}
.y80{bottom:376.995000px;}
.yec{bottom:377.355000px;}
.y2e{bottom:383.295000px;}
.ya1{bottom:385.635000px;}
.y20{bottom:389.055000px;}
.yd9{bottom:392.475000px;}
.y7f{bottom:394.635000px;}
.y2d{bottom:400.575000px;}
.ya0{bottom:402.915000px;}
.y1f{bottom:409.395000px;}
.yd8{bottom:409.575000px;}
.y7e{bottom:411.915000px;}
.y2c{bottom:417.675000px;}
.y9f{bottom:420.195000px;}
.yd7{bottom:426.855000px;}
.y7d{bottom:429.195000px;}
.y2b{bottom:434.955000px;}
.y1e{bottom:436.935000px;}
.y9e{bottom:437.295000px;}
.yd6{bottom:444.135000px;}
.y7c{bottom:446.295000px;}
.y9d{bottom:451.695000px;}
.y2a{bottom:452.235000px;}
.y1d{bottom:454.395000px;}
.yd5{bottom:461.415000px;}
.y7b{bottom:463.575000px;}
.y9c{bottom:469.695000px;}
.yd4{bottom:478.695000px;}
.y7a{bottom:480.855000px;}
.y9b{bottom:487.695000px;}
.yd3{bottom:495.795000px;}
.y79{bottom:498.135000px;}
.y9a{bottom:505.695000px;}
.yd2{bottom:512.715000px;}
.y78{bottom:515.415000px;}
.y99{bottom:523.695000px;}
.yd1{bottom:529.995000px;}
.y77{bottom:532.695000px;}
.y98{bottom:541.695000px;}
.yd0{bottom:544.575000px;}
.y76{bottom:549.795000px;}
.y97{bottom:559.695000px;}
.ycf{bottom:562.575000px;}
.y75{bottom:567.075000px;}
.y96{bottom:577.695000px;}
.yce{bottom:580.575000px;}
.y74{bottom:584.355000px;}
.y95{bottom:595.695000px;}
.ycd{bottom:598.575000px;}
.y73{bottom:601.635000px;}
.y93{bottom:613.725000px;}
.ycc{bottom:616.605000px;}
.y72{bottom:618.945000px;}
.y92{bottom:631.725000px;}
.y71{bottom:636.225000px;}
.y70{bottom:653.325000px;}
.ycb{bottom:655.305000px;}
.y6f{bottom:670.605000px;}
.yca{bottom:672.945000px;}
.y6e{bottom:687.885000px;}
.yc9{bottom:690.225000px;}
.yc8{bottom:704.445000px;}
.y6d{bottom:705.165000px;}
.y6c{bottom:722.445000px;}
.yeb{bottom:739.365000px;}
.y6b{bottom:739.725000px;}
.yc7{bottom:740.445000px;}
.y91{bottom:756.465000px;}
.y6a{bottom:756.825000px;}
.yc6{bottom:758.445000px;}
.y69{bottom:774.105000px;}
.yc5{bottom:776.445000px;}
.y68{bottom:791.385000px;}
.yc4{bottom:794.445000px;}
.y1a{bottom:795.705000px;}
.y67{bottom:808.665000px;}
.yc3{bottom:812.445000px;}
.yf{bottom:825.225000px;}
.yea{bottom:825.585000px;}
.y66{bottom:825.945000px;}
.yc2{bottom:830.445000px;}
.ye9{bottom:842.685000px;}
.y65{bottom:843.045000px;}
.yc1{bottom:848.445000px;}
.y64{bottom:860.325000px;}
.yc0{bottom:866.445000px;}
.y63{bottom:877.650000px;}
.ybf{bottom:884.490000px;}
.y62{bottom:894.930000px;}
.ybe{bottom:905.730000px;}
.y61{bottom:912.210000px;}
.y60{bottom:929.490000px;}
.ybd{bottom:940.650000px;}
.y5f{bottom:946.590000px;}
.ybc{bottom:957.930000px;}
.y5e{bottom:963.870000px;}
.ybb{bottom:975.210000px;}
.y5d{bottom:981.150000px;}
.yba{bottom:992.490000px;}
.y5c{bottom:998.430000px;}
.yb9{bottom:1009.590000px;}
.y5b{bottom:1015.710000px;}
.yb8{bottom:1023.990000px;}
.yd{bottom:1025.610000px;}
.y5a{bottom:1032.990000px;}
.yb7{bottom:1041.990000px;}
.y6{bottom:1045.590000px;}
.y59{bottom:1050.090000px;}
.yb6{bottom:1059.990000px;}
.y58{bottom:1067.370000px;}
.yb5{bottom:1077.990000px;}
.y57{bottom:1084.650000px;}
.yb4{bottom:1095.990000px;}
.y56{bottom:1101.930000px;}
.yb3{bottom:1113.990000px;}
.y55{bottom:1119.210000px;}
.yb2{bottom:1131.990000px;}
.y54{bottom:1136.490000px;}
.yb1{bottom:1153.260000px;}
.y53{bottom:1153.620000px;}
.h22{height:17.100000px;}
.h23{height:17.136000px;}
.h24{height:17.280000px;}
.h25{height:17.316000px;}
.hc{height:19.620000px;}
.h13{height:28.968750px;}
.h1f{height:29.340000px;}
.h14{height:29.520000px;}
.h2{height:32.976000px;}
.h12{height:35.806641px;}
.h9{height:36.180000px;}
.h20{height:38.818125px;}
.h1d{height:41.726953px;}
.h1c{height:42.164648px;}
.he{height:44.002969px;}
.hb{height:44.820000px;}
.h1a{height:45.770625px;}
.h17{height:47.980898px;}
.h4{height:53.709961px;}
.ha{height:54.000000px;}
.h3{height:55.291992px;}
.h18{height:56.574492px;}
.h19{height:56.741133px;}
.h1e{height:58.651172px;}
.h10{height:59.439023px;}
.h1b{height:59.614102px;}
.h21{height:60.226875px;}
.h11{height:61.189805px;}
.h26{height:61.423863px;}
.hf{height:63.180000px;}
.h5{height:67.824844px;}
.h6{height:68.084282px;}
.h8{height:71.613281px;}
.h15{height:73.722656px;}
.h7{height:121.536000px;}
.hd{height:200.370000px;}
.h16{height:465.735000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w11{width:41.940000px;}
.w1c{width:63.000000px;}
.w3{width:73.080000px;}
.w14{width:80.640000px;}
.w1a{width:82.620000px;}
.w18{width:85.896000px;}
.wf{width:92.160000px;}
.we{width:133.416000px;}
.w17{width:145.116000px;}
.w5{width:151.950000px;}
.w13{width:153.390000px;}
.w1b{width:171.570000px;}
.w19{width:171.750000px;}
.wd{width:195.150000px;}
.w8{width:216.075000px;}
.w10{width:222.195000px;}
.w12{width:228.630000px;}
.w16{width:267.690000px;}
.wc{width:306.795000px;}
.wa{width:342.615000px;}
.wb{width:386.355000px;}
.w15{width:461.085000px;}
.w9{width:515.055000px;}
.w6{width:579.165000px;}
.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;}
.x13{left:12.600000px;}
.xf{left:23.076000px;}
.xc{left:27.216000px;}
.xb{left:29.916000px;}
.x1{left:81.000000px;}
.x4{left:98.130000px;}
.x25{left:107.855987px;}
.xe{left:129.090000px;}
.x18{left:130.355987px;}
.x10{left:167.970000px;}
.x11{left:215.175000px;}
.x1f{left:227.550000px;}
.x5{left:232.950000px;}
.x8{left:272.235000px;}
.x12{left:297.075000px;}
.x19{left:304.635000px;}
.x20{left:314.175000px;}
.x6{left:331.995000px;}
.xd{left:338.655000px;}
.x1a{left:347.295000px;}
.x7{left:351.255000px;}
.xa{left:365.475000px;}
.x15{left:389.235000px;}
.x24{left:396.074987px;}
.x1d{left:416.594987px;}
.x14{left:425.055000px;}
.x9{left:439.500000px;}
.x21{left:486.645000px;}
.x1e{left:543.705000px;}
.x22{left:569.985000px;}
.x1b{left:576.645000px;}
.x16{left:585.105000px;}
.x17{left:719.250000px;}
.x1c{left:730.770000px;}
.x3{left:739.050000px;}
.x23{left:742.290000px;}
@media print{
.v3{vertical-align:-62.720000pt;}
.v4{vertical-align:-61.440000pt;}
.v2{vertical-align:-13.600000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:18.560000pt;}
.ls9{letter-spacing:-4.160000pt;}
.lsa{letter-spacing:-3.520000pt;}
.lsd{letter-spacing:-0.320000pt;}
.ls8{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.032000pt;}
.ls2{letter-spacing:0.117867pt;}
.ls6{letter-spacing:0.154880pt;}
.ls11{letter-spacing:0.160000pt;}
.ls10{letter-spacing:0.230933pt;}
.ls3{letter-spacing:0.231040pt;}
.ls13{letter-spacing:0.265600pt;}
.ls5{letter-spacing:0.277333pt;}
.ls7{letter-spacing:0.320000pt;}
.lsc{letter-spacing:0.480000pt;}
.lsb{letter-spacing:0.640000pt;}
.ls0{letter-spacing:0.672000pt;}
.ls4{letter-spacing:0.698880pt;}
.ls12{letter-spacing:7.200000pt;}
.ls16{letter-spacing:14.032640pt;}
.ls15{letter-spacing:40.272640pt;}
.lsf{letter-spacing:235.786667pt;}
.lse{letter-spacing:270.986667pt;}
.ls14{letter-spacing:379.146667pt;}
.ws4{word-spacing:-50.560000pt;}
.ws0{word-spacing:-14.778987pt;}
.ws1{word-spacing:-14.661120pt;}
.ws5{word-spacing:-13.600000pt;}
.wsc{word-spacing:-13.545600pt;}
.wsb{word-spacing:-13.510933pt;}
.ws6{word-spacing:-13.280000pt;}
.ws9{word-spacing:-12.005120pt;}
.ws8{word-spacing:-9.760000pt;}
.ws7{word-spacing:-9.120000pt;}
.ws2{word-spacing:-7.810560pt;}
.ws3{word-spacing:-7.232000pt;}
.wsa{word-spacing:0.000000pt;}
._16{margin-left:-7.210027pt;}
._15{margin-left:-6.215893pt;}
._4{margin-left:-4.302720pt;}
._3{margin-left:-2.688000pt;}
._0{margin-left:-1.056000pt;}
._1{width:1.104000pt;}
._2{width:2.074667pt;}
._b{width:3.101653pt;}
._c{width:4.174933pt;}
._5{width:5.131947pt;}
._a{width:6.332800pt;}
._8{width:7.282560pt;}
._d{width:8.465280pt;}
._e{width:9.692587pt;}
._10{width:10.728320pt;}
._9{width:11.628800pt;}
._11{width:14.185387pt;}
._f{width:15.351680pt;}
._6{width:17.141760pt;}
._7{width:18.364160pt;}
._14{width:68.682240pt;}
._13{width:71.818240pt;}
._12{width:73.220480pt;}
.fs7{font-size:32.000000pt;}
.fs6{font-size:34.560000pt;}
.fs3{font-size:42.880000pt;}
.fs0{font-size:48.000000pt;}
.fs8{font-size:50.560000pt;}
.fs4{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs2{font-size:64.000000pt;}
.fs5{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.y46{bottom:2.880000pt;}
.ya3{bottom:3.040000pt;}
.y94{bottom:3.200000pt;}
.y3{bottom:3.360000pt;}
.ye{bottom:3.840000pt;}
.y19{bottom:4.320000pt;}
.y1b{bottom:11.040000pt;}
.yc{bottom:12.480000pt;}
.y47{bottom:13.440000pt;}
.y4{bottom:15.520000pt;}
.y45{bottom:16.000000pt;}
.y2{bottom:17.952000pt;}
.y43{bottom:18.600000pt;}
.y18{bottom:26.240000pt;}
.y5{bottom:26.880000pt;}
.yb{bottom:27.040000pt;}
.y42{bottom:33.960000pt;}
.y17{bottom:40.840000pt;}
.ya{bottom:41.600000pt;}
.y1{bottom:45.280000pt;}
.y41{bottom:49.320000pt;}
.y16{bottom:54.920000pt;}
.y15{bottom:64.200000pt;}
.y40{bottom:64.680000pt;}
.y9{bottom:65.280000pt;}
.y3f{bottom:80.040000pt;}
.y14{bottom:80.520000pt;}
.y8{bottom:82.906667pt;}
.yb0{bottom:89.472000pt;}
.y90{bottom:90.112000pt;}
.y3e{bottom:95.400000pt;}
.y13{bottom:97.000000pt;}
.y7{bottom:99.066667pt;}
.y52{bottom:101.952000pt;}
.ye8{bottom:103.392000pt;}
.yaf{bottom:104.832000pt;}
.y8f{bottom:105.472000pt;}
.y3d{bottom:110.600000pt;}
.y51{bottom:117.312000pt;}
.ye7{bottom:118.752000pt;}
.y12{bottom:119.880000pt;}
.yae{bottom:120.032000pt;}
.y8e{bottom:120.832000pt;}
.y3c{bottom:125.960000pt;}
.y50{bottom:132.512000pt;}
.ye6{bottom:134.106667pt;}
.yad{bottom:135.386667pt;}
.y8d{bottom:136.026667pt;}
.y3b{bottom:141.320000pt;}
.y11{bottom:142.760000pt;}
.y4f{bottom:147.866667pt;}
.yac{bottom:148.026667pt;}
.ye5{bottom:149.466667pt;}
.y8c{bottom:151.386667pt;}
.y3a{bottom:156.680000pt;}
.y4e{bottom:163.226667pt;}
.yab{bottom:164.026667pt;}
.y10{bottom:164.520000pt;}
.ye4{bottom:164.826667pt;}
.y8b{bottom:166.746667pt;}
.y39{bottom:172.040000pt;}
.y4d{bottom:178.586667pt;}
.yaa{bottom:180.026667pt;}
.y8a{bottom:182.106667pt;}
.y38{bottom:187.240000pt;}
.y4c{bottom:193.946667pt;}
.ye3{bottom:195.386667pt;}
.ya9{bottom:196.026667pt;}
.y89{bottom:197.466667pt;}
.y37{bottom:202.600000pt;}
.y29{bottom:206.920000pt;}
.y4b{bottom:209.306667pt;}
.ye2{bottom:210.746667pt;}
.ya8{bottom:212.026667pt;}
.y88{bottom:212.826667pt;}
.y36{bottom:217.960000pt;}
.y28{bottom:222.280000pt;}
.y4a{bottom:224.506667pt;}
.ye1{bottom:226.106667pt;}
.y87{bottom:228.026667pt;}
.y35{bottom:233.320000pt;}
.y27{bottom:237.640000pt;}
.y49{bottom:239.546667pt;}
.ye0{bottom:241.466667pt;}
.y86{bottom:243.386667pt;}
.ya7{bottom:244.026667pt;}
.y34{bottom:248.706667pt;}
.y26{bottom:253.026667pt;}
.y48{bottom:255.226667pt;}
.ydf{bottom:256.826667pt;}
.y85{bottom:258.746667pt;}
.ya6{bottom:260.026667pt;}
.y33{bottom:264.066667pt;}
.y44{bottom:267.226667pt;}
.y25{bottom:268.546667pt;}
.yde{bottom:272.026667pt;}
.y84{bottom:274.106667pt;}
.ya5{bottom:276.026667pt;}
.y32{bottom:279.266667pt;}
.y24{bottom:284.066667pt;}
.ydd{bottom:287.386667pt;}
.y83{bottom:289.466667pt;}
.ya4{bottom:292.026667pt;}
.y1c{bottom:293.306667pt;}
.y31{bottom:294.626667pt;}
.y23{bottom:299.426667pt;}
.ydc{bottom:302.786667pt;}
.y82{bottom:304.866667pt;}
.ya2{bottom:308.066667pt;}
.y30{bottom:309.986667pt;}
.y22{bottom:314.946667pt;}
.ydb{bottom:318.146667pt;}
.y81{bottom:320.066667pt;}
.y2f{bottom:325.346667pt;}
.y21{bottom:330.306667pt;}
.yda{bottom:333.506667pt;}
.y80{bottom:335.106667pt;}
.yec{bottom:335.426667pt;}
.y2e{bottom:340.706667pt;}
.ya1{bottom:342.786667pt;}
.y20{bottom:345.826667pt;}
.yd9{bottom:348.866667pt;}
.y7f{bottom:350.786667pt;}
.y2d{bottom:356.066667pt;}
.ya0{bottom:358.146667pt;}
.y1f{bottom:363.906667pt;}
.yd8{bottom:364.066667pt;}
.y7e{bottom:366.146667pt;}
.y2c{bottom:371.266667pt;}
.y9f{bottom:373.506667pt;}
.yd7{bottom:379.426667pt;}
.y7d{bottom:381.506667pt;}
.y2b{bottom:386.626667pt;}
.y1e{bottom:388.386667pt;}
.y9e{bottom:388.706667pt;}
.yd6{bottom:394.786667pt;}
.y7c{bottom:396.706667pt;}
.y9d{bottom:401.506667pt;}
.y2a{bottom:401.986667pt;}
.y1d{bottom:403.906667pt;}
.yd5{bottom:410.146667pt;}
.y7b{bottom:412.066667pt;}
.y9c{bottom:417.506667pt;}
.yd4{bottom:425.506667pt;}
.y7a{bottom:427.426667pt;}
.y9b{bottom:433.506667pt;}
.yd3{bottom:440.706667pt;}
.y79{bottom:442.786667pt;}
.y9a{bottom:449.506667pt;}
.yd2{bottom:455.746667pt;}
.y78{bottom:458.146667pt;}
.y99{bottom:465.506667pt;}
.yd1{bottom:471.106667pt;}
.y77{bottom:473.506667pt;}
.y98{bottom:481.506667pt;}
.yd0{bottom:484.066667pt;}
.y76{bottom:488.706667pt;}
.y97{bottom:497.506667pt;}
.ycf{bottom:500.066667pt;}
.y75{bottom:504.066667pt;}
.y96{bottom:513.506667pt;}
.yce{bottom:516.066667pt;}
.y74{bottom:519.426667pt;}
.y95{bottom:529.506667pt;}
.ycd{bottom:532.066667pt;}
.y73{bottom:534.786667pt;}
.y93{bottom:545.533333pt;}
.ycc{bottom:548.093333pt;}
.y72{bottom:550.173333pt;}
.y92{bottom:561.533333pt;}
.y71{bottom:565.533333pt;}
.y70{bottom:580.733333pt;}
.ycb{bottom:582.493333pt;}
.y6f{bottom:596.093333pt;}
.yca{bottom:598.173333pt;}
.y6e{bottom:611.453333pt;}
.yc9{bottom:613.533333pt;}
.yc8{bottom:626.173333pt;}
.y6d{bottom:626.813333pt;}
.y6c{bottom:642.173333pt;}
.yeb{bottom:657.213333pt;}
.y6b{bottom:657.533333pt;}
.yc7{bottom:658.173333pt;}
.y91{bottom:672.413333pt;}
.y6a{bottom:672.733333pt;}
.yc6{bottom:674.173333pt;}
.y69{bottom:688.093333pt;}
.yc5{bottom:690.173333pt;}
.y68{bottom:703.453333pt;}
.yc4{bottom:706.173333pt;}
.y1a{bottom:707.293333pt;}
.y67{bottom:718.813333pt;}
.yc3{bottom:722.173333pt;}
.yf{bottom:733.533333pt;}
.yea{bottom:733.853333pt;}
.y66{bottom:734.173333pt;}
.yc2{bottom:738.173333pt;}
.ye9{bottom:749.053333pt;}
.y65{bottom:749.373333pt;}
.yc1{bottom:754.173333pt;}
.y64{bottom:764.733333pt;}
.yc0{bottom:770.173333pt;}
.y63{bottom:780.133333pt;}
.ybf{bottom:786.213333pt;}
.y62{bottom:795.493333pt;}
.ybe{bottom:805.093333pt;}
.y61{bottom:810.853333pt;}
.y60{bottom:826.213333pt;}
.ybd{bottom:836.133333pt;}
.y5f{bottom:841.413333pt;}
.ybc{bottom:851.493333pt;}
.y5e{bottom:856.773333pt;}
.ybb{bottom:866.853333pt;}
.y5d{bottom:872.133333pt;}
.yba{bottom:882.213333pt;}
.y5c{bottom:887.493333pt;}
.yb9{bottom:897.413333pt;}
.y5b{bottom:902.853333pt;}
.yb8{bottom:910.213333pt;}
.yd{bottom:911.653333pt;}
.y5a{bottom:918.213333pt;}
.yb7{bottom:926.213333pt;}
.y6{bottom:929.413333pt;}
.y59{bottom:933.413333pt;}
.yb6{bottom:942.213333pt;}
.y58{bottom:948.773333pt;}
.yb5{bottom:958.213333pt;}
.y57{bottom:964.133333pt;}
.yb4{bottom:974.213333pt;}
.y56{bottom:979.493333pt;}
.yb3{bottom:990.213333pt;}
.y55{bottom:994.853333pt;}
.yb2{bottom:1006.213333pt;}
.y54{bottom:1010.213333pt;}
.yb1{bottom:1025.120000pt;}
.y53{bottom:1025.440000pt;}
.h22{height:15.200000pt;}
.h23{height:15.232000pt;}
.h24{height:15.360000pt;}
.h25{height:15.392000pt;}
.hc{height:17.440000pt;}
.h13{height:25.750000pt;}
.h1f{height:26.080000pt;}
.h14{height:26.240000pt;}
.h2{height:29.312000pt;}
.h12{height:31.828125pt;}
.h9{height:32.160000pt;}
.h20{height:34.505000pt;}
.h1d{height:37.090625pt;}
.h1c{height:37.479688pt;}
.he{height:39.113750pt;}
.hb{height:39.840000pt;}
.h1a{height:40.685000pt;}
.h17{height:42.649687pt;}
.h4{height:47.742188pt;}
.ha{height:48.000000pt;}
.h3{height:49.148438pt;}
.h18{height:50.288438pt;}
.h19{height:50.436563pt;}
.h1e{height:52.134375pt;}
.h10{height:52.834688pt;}
.h1b{height:52.990313pt;}
.h21{height:53.535000pt;}
.h11{height:54.390938pt;}
.h26{height:54.598989pt;}
.hf{height:56.160000pt;}
.h5{height:60.288750pt;}
.h6{height:60.519362pt;}
.h8{height:63.656250pt;}
.h15{height:65.531250pt;}
.h7{height:108.032000pt;}
.hd{height:178.106667pt;}
.h16{height:413.986667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w11{width:37.280000pt;}
.w1c{width:56.000000pt;}
.w3{width:64.960000pt;}
.w14{width:71.680000pt;}
.w1a{width:73.440000pt;}
.w18{width:76.352000pt;}
.wf{width:81.920000pt;}
.we{width:118.592000pt;}
.w17{width:128.992000pt;}
.w5{width:135.066667pt;}
.w13{width:136.346667pt;}
.w1b{width:152.506667pt;}
.w19{width:152.666667pt;}
.wd{width:173.466667pt;}
.w8{width:192.066667pt;}
.w10{width:197.506667pt;}
.w12{width:203.226667pt;}
.w16{width:237.946667pt;}
.wc{width:272.706667pt;}
.wa{width:304.546667pt;}
.wb{width:343.426667pt;}
.w15{width:409.853333pt;}
.w9{width:457.826667pt;}
.w6{width:514.813333pt;}
.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;}
.x13{left:11.200000pt;}
.xf{left:20.512000pt;}
.xc{left:24.192000pt;}
.xb{left:26.592000pt;}
.x1{left:72.000000pt;}
.x4{left:87.226667pt;}
.x25{left:95.871988pt;}
.xe{left:114.746667pt;}
.x18{left:115.871988pt;}
.x10{left:149.306667pt;}
.x11{left:191.266667pt;}
.x1f{left:202.266667pt;}
.x5{left:207.066667pt;}
.x8{left:241.986667pt;}
.x12{left:264.066667pt;}
.x19{left:270.786667pt;}
.x20{left:279.266667pt;}
.x6{left:295.106667pt;}
.xd{left:301.026667pt;}
.x1a{left:308.706667pt;}
.x7{left:312.226667pt;}
.xa{left:324.866667pt;}
.x15{left:345.986667pt;}
.x24{left:352.066655pt;}
.x1d{left:370.306655pt;}
.x14{left:377.826667pt;}
.x9{left:390.666667pt;}
.x21{left:432.573333pt;}
.x1e{left:483.293333pt;}
.x22{left:506.653333pt;}
.x1b{left:512.573333pt;}
.x16{left:520.093333pt;}
.x17{left:639.333333pt;}
.x1c{left:649.573333pt;}
.x3{left:656.933333pt;}
.x23{left:659.813333pt;}
}




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