
    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_73d7057e9f1dc14093eab7eb.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_af2931db48dc3de57caa1098.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.207031;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_29fa74f625afbdc8eea849cd.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.708008;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_0fb0da8bd4ec54e64dabce6a.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.762207;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_ea717883abcccea5fcd72c92.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.682617;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_582ac3127b4ff48f3ba3fedc.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.012695;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_cc049c29cd4f3c251418de0c.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.690918;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_c56c47400594c048ddde0c11.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.207031;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_e66793c768bf95db4ceb1ebd.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.207031;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_f05e8dc4b3cb88268ccdfdb9.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.938965;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_6193fc93719873dbca485474.woff2')format("woff");}.ffb{font-family:ffb;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.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m3{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);}
.v5{vertical-align:-21.000000px;}
.v6{vertical-align:-10.500000px;}
.v1{vertical-align:-3.000000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:3.000000px;}
.v4{vertical-align:21.000000px;}
.v3{vertical-align:24.000000px;}
.lsb{letter-spacing:-0.570000px;}
.ls7{letter-spacing:-0.252980px;}
.ls5{letter-spacing:-0.207000px;}
.ls6{letter-spacing:-0.135000px;}
.ls4{letter-spacing:-0.072000px;}
.ls2{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.432000px;}
.ls3{letter-spacing:0.456000px;}
.ls9{letter-spacing:0.930000px;}
.ls0{letter-spacing:2.073000px;}
.ls8{letter-spacing:57.990000px;}
.lsa{letter-spacing:205.488000px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2{word-spacing:-44.688000px;}
.ws1{word-spacing:-31.464000px;}
.ws8{word-spacing:-26.496000px;}
.ws6{word-spacing:-19.795660px;}
.ws7{word-spacing:-19.542681px;}
.ws4{word-spacing:-18.780000px;}
.ws3{word-spacing:-16.902000px;}
.wsa{word-spacing:-14.085000px;}
.ws9{word-spacing:-13.515000px;}
.ws0{word-spacing:-12.207000px;}
.ws5{word-spacing:0.000000px;}
._1c{margin-left:-2.415000px;}
._0{margin-left:-1.260000px;}
._1{width:1.395000px;}
._3{width:2.475000px;}
._10{width:3.870000px;}
._19{width:4.932000px;}
._2{width:6.048000px;}
._e{width:7.143000px;}
._d{width:8.211000px;}
._4{width:10.029000px;}
._5{width:11.808000px;}
._1e{width:13.773000px;}
._6{width:14.781000px;}
._18{width:16.752000px;}
._1b{width:18.093000px;}
._b{width:19.161000px;}
._f{width:20.952000px;}
._16{width:22.017000px;}
._15{width:23.100000px;}
._17{width:24.720000px;}
._14{width:26.406000px;}
._9{width:28.110000px;}
._a{width:29.160000px;}
._13{width:32.793000px;}
._21{width:34.443000px;}
._c{width:39.867000px;}
._11{width:41.280000px;}
._12{width:42.687000px;}
._7{width:45.054000px;}
._8{width:46.119000px;}
._1a{width:48.204000px;}
._1d{width:49.230000px;}
._20{width:186.888000px;}
._1f{width:188.538000px;}
.fc5{color:transparent;}
.fc3{color:rgb(0,112,192);}
.fc4{color:rgb(0,128,0);}
.fc1{color:rgb(0,0,255);}
.fc2{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs8{font-size:6.000000px;}
.fs5{font-size:12.000000px;}
.fs15{font-size:18.000000px;}
.fs16{font-size:24.000000px;}
.fs12{font-size:33.000000px;}
.fsd{font-size:36.000000px;}
.fs4{font-size:39.000000px;}
.fs7{font-size:42.000000px;}
.fs2{font-size:45.000000px;}
.fs3{font-size:48.000000px;}
.fse{font-size:51.000000px;}
.fsc{font-size:54.000000px;}
.fs13{font-size:57.000000px;}
.fs0{font-size:60.000000px;}
.fs14{font-size:63.000000px;}
.fs10{font-size:63.244921px;}
.fs1{font-size:72.000000px;}
.fsf{font-size:84.000000px;}
.fsb{font-size:96.000000px;}
.fs11{font-size:120.000000px;}
.fsa{font-size:132.000000px;}
.fs6{font-size:144.000000px;}
.fs9{font-size:168.000000px;}
.y0{bottom:0.000000px;}
.yf2{bottom:0.015000px;}
.ye4{bottom:1.500000px;}
.yc6{bottom:1.875000px;}
.y81{bottom:2.250000px;}
.ya{bottom:2.625000px;}
.ye0{bottom:2.985000px;}
.y7b{bottom:3.000000px;}
.yb8{bottom:3.375000px;}
.y58{bottom:3.750000px;}
.y18{bottom:4.500000px;}
.y4{bottom:4.537500px;}
.y16{bottom:5.625000px;}
.y57{bottom:6.000000px;}
.yc4{bottom:7.110000px;}
.yb{bottom:8.662500px;}
.y5{bottom:10.537500px;}
.y7{bottom:15.000000px;}
.y35{bottom:15.750000px;}
.yec{bottom:16.125000px;}
.y43{bottom:16.890000px;}
.y51{bottom:17.250000px;}
.y5a{bottom:19.125000px;}
.y5b{bottom:19.875000px;}
.y8{bottom:20.662500px;}
.y7a{bottom:20.992500px;}
.y7f{bottom:21.037500px;}
.y56{bottom:21.375000px;}
.yb7{bottom:21.382500px;}
.yd{bottom:25.125000px;}
.y34{bottom:26.625000px;}
.yeb{bottom:31.125000px;}
.y15{bottom:31.500000px;}
.y50{bottom:31.875000px;}
.y55{bottom:36.750000px;}
.y33{bottom:37.500000px;}
.yc1{bottom:39.375000px;}
.ydf{bottom:39.405000px;}
.y79{bottom:39.412500px;}
.y5c{bottom:40.125000px;}
.yc{bottom:42.375000px;}
.y3{bottom:43.875000px;}
.y42{bottom:46.125000px;}
.yea{bottom:46.875000px;}
.y32{bottom:48.375000px;}
.y54{bottom:52.155000px;}
.yde{bottom:57.405000px;}
.y78{bottom:57.412500px;}
.y14{bottom:57.750000px;}
.yb6{bottom:57.787500px;}
.y31{bottom:59.250000px;}
.y41{bottom:60.375000px;}
.y4f{bottom:60.780000px;}
.ye9{bottom:62.625000px;}
.y53{bottom:67.530000px;}
.y30{bottom:70.125000px;}
.y40{bottom:75.000000px;}
.y4e{bottom:75.030000px;}
.ydd{bottom:75.405000px;}
.y77{bottom:75.412500px;}
.yc0{bottom:75.750000px;}
.yb5{bottom:75.787500px;}
.ye8{bottom:78.000000px;}
.y2f{bottom:81.000000px;}
.y9{bottom:82.162500px;}
.y80{bottom:82.537500px;}
.y52{bottom:82.905000px;}
.y13{bottom:84.000000px;}
.y3f{bottom:89.250000px;}
.y4d{bottom:89.655000px;}
.y2e{bottom:91.920000px;}
.y6{bottom:92.287500px;}
.y76{bottom:93.412500px;}
.ybf{bottom:93.780000px;}
.yb4{bottom:93.787500px;}
.y11{bottom:102.000000px;}
.y2d{bottom:102.780000px;}
.y3e{bottom:103.920000px;}
.y4c{bottom:104.280000px;}
.ye6{bottom:108.795000px;}
.ye7{bottom:109.545000px;}
.y12{bottom:109.875000px;}
.ybe{bottom:111.780000px;}
.y75{bottom:111.787500px;}
.y2c{bottom:113.655000px;}
.y4b{bottom:118.530000px;}
.y3d{bottom:118.545000px;}
.y2b{bottom:124.530000px;}
.ydc{bottom:129.780000px;}
.y74{bottom:129.787500px;}
.ybd{bottom:130.155000px;}
.yb3{bottom:130.162500px;}
.y3c{bottom:132.795000px;}
.y4a{bottom:133.155000px;}
.y2a{bottom:135.420000px;}
.y5e{bottom:137.662500px;}
.y82{bottom:142.537500px;}
.y29{bottom:146.280000px;}
.yf4{bottom:147.037500px;}
.y3b{bottom:147.420000px;}
.y49{bottom:147.780000px;}
.ybc{bottom:148.155000px;}
.yb2{bottom:148.162500px;}
.yf3{bottom:148.912500px;}
.y73{bottom:150.037500px;}
.yf1{bottom:150.405000px;}
.y28{bottom:157.155000px;}
.y48{bottom:162.030000px;}
.y3a{bottom:162.045000px;}
.ybb{bottom:166.155000px;}
.yb1{bottom:166.207500px;}
.y27{bottom:169.155000px;}
.y72{bottom:170.317500px;}
.y39{bottom:176.295000px;}
.y47{bottom:176.655000px;}
.y26{bottom:180.780000px;}
.y1a{bottom:181.155000px;}
.ydb{bottom:184.200000px;}
.yb0{bottom:184.582500px;}
.yba{bottom:186.405000px;}
.yf0{bottom:187.200000px;}
.y71{bottom:188.332500px;}
.y38{bottom:190.920000px;}
.y46{bottom:190.950000px;}
.y25{bottom:192.405000px;}
.yef{bottom:201.825000px;}
.yda{bottom:202.200000px;}
.yaf{bottom:202.567500px;}
.yee{bottom:203.700000px;}
.y24{bottom:204.405000px;}
.y70{bottom:206.692500px;}
.yed{bottom:208.200000px;}
.ye5{bottom:214.200000px;}
.y23{bottom:216.075000px;}
.yd9{bottom:220.575000px;}
.yae{bottom:220.582500px;}
.y6f{bottom:224.707500px;}
.y22{bottom:228.075000px;}
.yd8{bottom:238.575000px;}
.yad{bottom:238.582500px;}
.y21{bottom:239.700000px;}
.y6e{bottom:242.707500px;}
.y20{bottom:251.325000px;}
.yd7{bottom:256.575000px;}
.yac{bottom:256.957500px;}
.y6d{bottom:261.067500px;}
.y1f{bottom:263.325000px;}
.yd6{bottom:274.575000px;}
.y1e{bottom:274.950000px;}
.yab{bottom:274.957500px;}
.y6c{bottom:279.082500px;}
.y1d{bottom:286.950000px;}
.yd5{bottom:292.950000px;}
.yaa{bottom:292.987500px;}
.y6b{bottom:297.112500px;}
.y1c{bottom:298.575000px;}
.y1b{bottom:310.950000px;}
.yd4{bottom:310.980000px;}
.ya9{bottom:310.987500px;}
.y6a{bottom:315.112500px;}
.y64{bottom:325.987500px;}
.yd3{bottom:328.980000px;}
.ya8{bottom:329.362500px;}
.y69{bottom:333.487500px;}
.ye3{bottom:335.370000px;}
.ye2{bottom:340.620000px;}
.y63{bottom:342.487500px;}
.yd2{bottom:347.355000px;}
.ya7{bottom:347.362500px;}
.y68{bottom:351.487500px;}
.y62{bottom:358.987500px;}
.yd1{bottom:365.355000px;}
.ya6{bottom:365.362500px;}
.y67{bottom:369.487500px;}
.y61{bottom:375.112500px;}
.ye1{bottom:376.620000px;}
.yd0{bottom:383.355000px;}
.ya5{bottom:385.612500px;}
.y66{bottom:387.862500px;}
.y60{bottom:391.612500px;}
.yc7{bottom:392.370000px;}
.yf{bottom:394.605000px;}
.ycf{bottom:401.355000px;}
.y65{bottom:405.862500px;}
.y5f{bottom:407.737500px;}
.yce{bottom:419.730000px;}
.y36{bottom:423.855000px;}
.ya4{bottom:424.282500px;}
.ycd{bottom:437.760000px;}
.ya3{bottom:442.282500px;}
.ycc{bottom:455.760000px;}
.ya2{bottom:460.282500px;}
.ycb{bottom:474.150000px;}
.ya1{bottom:478.657500px;}
.yca{bottom:492.135000px;}
.ya0{bottom:496.657500px;}
.yc9{bottom:511.635000px;}
.y9f{bottom:514.657500px;}
.yc8{bottom:515.385000px;}
.y9e{bottom:532.657500px;}
.y9d{bottom:551.062500px;}
.y5d{bottom:561.195000px;}
.y9c{bottom:569.062500px;}
.y59{bottom:572.820000px;}
.y9b{bottom:587.062500px;}
.y9a{bottom:605.437500px;}
.ye{bottom:622.695000px;}
.y99{bottom:623.437500px;}
.y45{bottom:638.070000px;}
.y98{bottom:641.437500px;}
.y97{bottom:661.687500px;}
.y96{bottom:681.967500px;}
.y95{bottom:699.967500px;}
.y94{bottom:718.342500px;}
.y19{bottom:733.725000px;}
.y93{bottom:736.342500px;}
.y92{bottom:754.342500px;}
.y91{bottom:772.717500px;}
.y90{bottom:790.717500px;}
.y8f{bottom:808.762500px;}
.y8e{bottom:826.762500px;}
.y44{bottom:841.005000px;}
.y8d{bottom:845.137500px;}
.y37{bottom:855.630000px;}
.y8c{bottom:863.137500px;}
.y8b{bottom:883.387500px;}
.y8a{bottom:903.637500px;}
.y89{bottom:921.637500px;}
.yc5{bottom:924.630000px;}
.yc3{bottom:933.645000px;}
.y88{bottom:940.042500px;}
.y87{bottom:958.042500px;}
.yc2{bottom:969.300000px;}
.y86{bottom:976.042500px;}
.yb9{bottom:984.300000px;}
.y85{bottom:994.417500px;}
.y84{bottom:1012.417500px;}
.y83{bottom:1030.417500px;}
.y17{bottom:1058.175000px;}
.y10{bottom:1078.080000px;}
.y7e{bottom:1191.705000px;}
.y7d{bottom:1210.500000px;}
.y2{bottom:1212.000000px;}
.y1{bottom:1228.500000px;}
.y7c{bottom:1229.250000px;}
.hc{height:3.999023px;}
.h2b{height:4.166016px;}
.h29{height:5.250000px;}
.h8{height:5.625000px;}
.h3d{height:6.002930px;}
.h31{height:9.000000px;}
.h9{height:12.005859px;}
.h3e{height:14.250000px;}
.h1c{height:14.625000px;}
.h38{height:14.756836px;}
.h20{height:15.375000px;}
.h12{height:19.912500px;}
.h3c{height:24.011719px;}
.h32{height:27.054199px;}
.h5{height:31.875000px;}
.h37{height:32.625000px;}
.h2f{height:32.647500px;}
.h23{height:36.000000px;}
.h19{height:36.017578px;}
.h3f{height:36.787500px;}
.h3a{height:37.494141px;}
.ha{height:38.287500px;}
.h2a{height:38.662500px;}
.h18{height:39.019043px;}
.h24{height:40.500000px;}
.h6{height:43.912500px;}
.h1{height:45.000000px;}
.h3b{height:45.021973px;}
.h7{height:48.023438px;}
.h16{height:48.761719px;}
.h26{height:49.189453px;}
.h21{height:49.875000px;}
.h4{height:49.992188px;}
.h1f{height:51.024902px;}
.h14{height:54.000000px;}
.h17{height:54.026367px;}
.h35{height:57.027832px;}
.h13{height:59.027344px;}
.h27{height:60.029297px;}
.h22{height:63.000000px;}
.h36{height:63.030762px;}
.h2d{height:63.275802px;}
.h11{height:72.000000px;}
.h3{height:72.035156px;}
.h34{height:78.703125px;}
.h2{height:80.287500px;}
.h28{height:84.041016px;}
.h1e{height:95.662500px;}
.h30{height:98.378906px;}
.h10{height:99.000000px;}
.hb{height:108.000000px;}
.h39{height:121.162500px;}
.he{height:126.000000px;}
.hf{height:130.537500px;}
.h1b{height:202.545000px;}
.h1d{height:202.950000px;}
.h2e{height:203.655000px;}
.h15{height:324.450000px;}
.h25{height:420.870000px;}
.h1a{height:435.495000px;}
.h33{height:532.275000px;}
.hd{height:585.945000px;}
.h2c{height:1045.425000px;}
.h0{height:1263.000000px;}
.w16{width:21.375000px;}
.wc{width:21.750000px;}
.w8{width:24.412500px;}
.w18{width:40.125000px;}
.w7{width:62.250000px;}
.w6{width:63.037500px;}
.w12{width:97.575000px;}
.w10{width:97.912500px;}
.w3{width:99.412500px;}
.wf{width:119.287500px;}
.w13{width:127.950000px;}
.w11{width:130.537500px;}
.wa{width:137.700000px;}
.w4{width:186.825000px;}
.wb{width:245.355000px;}
.wd{width:334.650000px;}
.we{width:383.055000px;}
.w5{width:452.445000px;}
.w9{width:715.050000px;}
.w19{width:761.580000px;}
.w14{width:779.955000px;}
.w17{width:780.330000px;}
.w15{width:801.705000px;}
.w2{width:892.874987px;}
.w0{width:892.875000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x7{left:8.250000px;}
.x13{left:14.250000px;}
.x15{left:15.750000px;}
.xa{left:23.610000px;}
.x25{left:35.250000px;}
.xb{left:44.250000px;}
.x2{left:45.787500px;}
.x1{left:54.037487px;}
.x9{left:55.155000px;}
.x1a{left:67.537500px;}
.x24{left:85.912500px;}
.x3{left:89.662500px;}
.x1c{left:95.662487px;}
.xc{left:108.037500px;}
.x19{left:114.030000px;}
.xe{left:126.457500px;}
.xd{left:132.450000px;}
.x4{left:145.200000px;}
.x12{left:165.075000px;}
.x5{left:174.825000px;}
.xf{left:245.745000px;}
.x14{left:262.995000px;}
.x1f{left:313.237500px;}
.x23{left:318.524987px;}
.x6{left:332.025000px;}
.x20{left:340.657500px;}
.x21{left:345.532500px;}
.x26{left:350.407500px;}
.x1d{left:352.282500px;}
.x16{left:393.525000px;}
.x27{left:451.312500px;}
.x1e{left:475.312500px;}
.x10{left:491.100000px;}
.x11{left:512.850000px;}
.x22{left:602.887500px;}
.x17{left:621.645000px;}
.x1b{left:656.504987px;}
.x18{left:719.550000px;}
.x8{left:784.470000px;}
@media print{
.v5{vertical-align:-18.666667pt;}
.v6{vertical-align:-9.333333pt;}
.v1{vertical-align:-2.666667pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:2.666667pt;}
.v4{vertical-align:18.666667pt;}
.v3{vertical-align:21.333333pt;}
.lsb{letter-spacing:-0.506667pt;}
.ls7{letter-spacing:-0.224871pt;}
.ls5{letter-spacing:-0.184000pt;}
.ls6{letter-spacing:-0.120000pt;}
.ls4{letter-spacing:-0.064000pt;}
.ls2{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.384000pt;}
.ls3{letter-spacing:0.405333pt;}
.ls9{letter-spacing:0.826667pt;}
.ls0{letter-spacing:1.842667pt;}
.ls8{letter-spacing:51.546667pt;}
.lsa{letter-spacing:182.656000pt;}
.ws2{word-spacing:-39.722667pt;}
.ws1{word-spacing:-27.968000pt;}
.ws8{word-spacing:-23.552000pt;}
.ws6{word-spacing:-17.596142pt;}
.ws7{word-spacing:-17.371272pt;}
.ws4{word-spacing:-16.693333pt;}
.ws3{word-spacing:-15.024000pt;}
.wsa{word-spacing:-12.520000pt;}
.ws9{word-spacing:-12.013333pt;}
.ws0{word-spacing:-10.850667pt;}
.ws5{word-spacing:0.000000pt;}
._1c{margin-left:-2.146667pt;}
._0{margin-left:-1.120000pt;}
._1{width:1.240000pt;}
._3{width:2.200000pt;}
._10{width:3.440000pt;}
._19{width:4.384000pt;}
._2{width:5.376000pt;}
._e{width:6.349333pt;}
._d{width:7.298667pt;}
._4{width:8.914667pt;}
._5{width:10.496000pt;}
._1e{width:12.242667pt;}
._6{width:13.138667pt;}
._18{width:14.890667pt;}
._1b{width:16.082667pt;}
._b{width:17.032000pt;}
._f{width:18.624000pt;}
._16{width:19.570667pt;}
._15{width:20.533333pt;}
._17{width:21.973333pt;}
._14{width:23.472000pt;}
._9{width:24.986667pt;}
._a{width:25.920000pt;}
._13{width:29.149333pt;}
._21{width:30.616000pt;}
._c{width:35.437333pt;}
._11{width:36.693333pt;}
._12{width:37.944000pt;}
._7{width:40.048000pt;}
._8{width:40.994667pt;}
._1a{width:42.848000pt;}
._1d{width:43.760000pt;}
._20{width:166.122667pt;}
._1f{width:167.589333pt;}
.fs8{font-size:5.333333pt;}
.fs5{font-size:10.666667pt;}
.fs15{font-size:16.000000pt;}
.fs16{font-size:21.333333pt;}
.fs12{font-size:29.333333pt;}
.fsd{font-size:32.000000pt;}
.fs4{font-size:34.666667pt;}
.fs7{font-size:37.333333pt;}
.fs2{font-size:40.000000pt;}
.fs3{font-size:42.666667pt;}
.fse{font-size:45.333333pt;}
.fsc{font-size:48.000000pt;}
.fs13{font-size:50.666667pt;}
.fs0{font-size:53.333333pt;}
.fs14{font-size:56.000000pt;}
.fs10{font-size:56.217707pt;}
.fs1{font-size:64.000000pt;}
.fsf{font-size:74.666667pt;}
.fsb{font-size:85.333333pt;}
.fs11{font-size:106.666667pt;}
.fsa{font-size:117.333333pt;}
.fs6{font-size:128.000000pt;}
.fs9{font-size:149.333333pt;}
.y0{bottom:0.000000pt;}
.yf2{bottom:0.013333pt;}
.ye4{bottom:1.333333pt;}
.yc6{bottom:1.666667pt;}
.y81{bottom:2.000000pt;}
.ya{bottom:2.333333pt;}
.ye0{bottom:2.653333pt;}
.y7b{bottom:2.666667pt;}
.yb8{bottom:3.000000pt;}
.y58{bottom:3.333333pt;}
.y18{bottom:4.000000pt;}
.y4{bottom:4.033333pt;}
.y16{bottom:5.000000pt;}
.y57{bottom:5.333333pt;}
.yc4{bottom:6.320000pt;}
.yb{bottom:7.700000pt;}
.y5{bottom:9.366667pt;}
.y7{bottom:13.333333pt;}
.y35{bottom:14.000000pt;}
.yec{bottom:14.333333pt;}
.y43{bottom:15.013333pt;}
.y51{bottom:15.333333pt;}
.y5a{bottom:17.000000pt;}
.y5b{bottom:17.666667pt;}
.y8{bottom:18.366667pt;}
.y7a{bottom:18.660000pt;}
.y7f{bottom:18.700000pt;}
.y56{bottom:19.000000pt;}
.yb7{bottom:19.006667pt;}
.yd{bottom:22.333333pt;}
.y34{bottom:23.666667pt;}
.yeb{bottom:27.666667pt;}
.y15{bottom:28.000000pt;}
.y50{bottom:28.333333pt;}
.y55{bottom:32.666667pt;}
.y33{bottom:33.333333pt;}
.yc1{bottom:35.000000pt;}
.ydf{bottom:35.026667pt;}
.y79{bottom:35.033333pt;}
.y5c{bottom:35.666667pt;}
.yc{bottom:37.666667pt;}
.y3{bottom:39.000000pt;}
.y42{bottom:41.000000pt;}
.yea{bottom:41.666667pt;}
.y32{bottom:43.000000pt;}
.y54{bottom:46.360000pt;}
.yde{bottom:51.026667pt;}
.y78{bottom:51.033333pt;}
.y14{bottom:51.333333pt;}
.yb6{bottom:51.366667pt;}
.y31{bottom:52.666667pt;}
.y41{bottom:53.666667pt;}
.y4f{bottom:54.026667pt;}
.ye9{bottom:55.666667pt;}
.y53{bottom:60.026667pt;}
.y30{bottom:62.333333pt;}
.y40{bottom:66.666667pt;}
.y4e{bottom:66.693333pt;}
.ydd{bottom:67.026667pt;}
.y77{bottom:67.033333pt;}
.yc0{bottom:67.333333pt;}
.yb5{bottom:67.366667pt;}
.ye8{bottom:69.333333pt;}
.y2f{bottom:72.000000pt;}
.y9{bottom:73.033333pt;}
.y80{bottom:73.366667pt;}
.y52{bottom:73.693333pt;}
.y13{bottom:74.666667pt;}
.y3f{bottom:79.333333pt;}
.y4d{bottom:79.693333pt;}
.y2e{bottom:81.706667pt;}
.y6{bottom:82.033333pt;}
.y76{bottom:83.033333pt;}
.ybf{bottom:83.360000pt;}
.yb4{bottom:83.366667pt;}
.y11{bottom:90.666667pt;}
.y2d{bottom:91.360000pt;}
.y3e{bottom:92.373333pt;}
.y4c{bottom:92.693333pt;}
.ye6{bottom:96.706667pt;}
.ye7{bottom:97.373333pt;}
.y12{bottom:97.666667pt;}
.ybe{bottom:99.360000pt;}
.y75{bottom:99.366667pt;}
.y2c{bottom:101.026667pt;}
.y4b{bottom:105.360000pt;}
.y3d{bottom:105.373333pt;}
.y2b{bottom:110.693333pt;}
.ydc{bottom:115.360000pt;}
.y74{bottom:115.366667pt;}
.ybd{bottom:115.693333pt;}
.yb3{bottom:115.700000pt;}
.y3c{bottom:118.040000pt;}
.y4a{bottom:118.360000pt;}
.y2a{bottom:120.373333pt;}
.y5e{bottom:122.366667pt;}
.y82{bottom:126.700000pt;}
.y29{bottom:130.026667pt;}
.yf4{bottom:130.700000pt;}
.y3b{bottom:131.040000pt;}
.y49{bottom:131.360000pt;}
.ybc{bottom:131.693333pt;}
.yb2{bottom:131.700000pt;}
.yf3{bottom:132.366667pt;}
.y73{bottom:133.366667pt;}
.yf1{bottom:133.693333pt;}
.y28{bottom:139.693333pt;}
.y48{bottom:144.026667pt;}
.y3a{bottom:144.040000pt;}
.ybb{bottom:147.693333pt;}
.yb1{bottom:147.740000pt;}
.y27{bottom:150.360000pt;}
.y72{bottom:151.393333pt;}
.y39{bottom:156.706667pt;}
.y47{bottom:157.026667pt;}
.y26{bottom:160.693333pt;}
.y1a{bottom:161.026667pt;}
.ydb{bottom:163.733333pt;}
.yb0{bottom:164.073333pt;}
.yba{bottom:165.693333pt;}
.yf0{bottom:166.400000pt;}
.y71{bottom:167.406667pt;}
.y38{bottom:169.706667pt;}
.y46{bottom:169.733333pt;}
.y25{bottom:171.026667pt;}
.yef{bottom:179.400000pt;}
.yda{bottom:179.733333pt;}
.yaf{bottom:180.060000pt;}
.yee{bottom:181.066667pt;}
.y24{bottom:181.693333pt;}
.y70{bottom:183.726667pt;}
.yed{bottom:185.066667pt;}
.ye5{bottom:190.400000pt;}
.y23{bottom:192.066667pt;}
.yd9{bottom:196.066667pt;}
.yae{bottom:196.073333pt;}
.y6f{bottom:199.740000pt;}
.y22{bottom:202.733333pt;}
.yd8{bottom:212.066667pt;}
.yad{bottom:212.073333pt;}
.y21{bottom:213.066667pt;}
.y6e{bottom:215.740000pt;}
.y20{bottom:223.400000pt;}
.yd7{bottom:228.066667pt;}
.yac{bottom:228.406667pt;}
.y6d{bottom:232.060000pt;}
.y1f{bottom:234.066667pt;}
.yd6{bottom:244.066667pt;}
.y1e{bottom:244.400000pt;}
.yab{bottom:244.406667pt;}
.y6c{bottom:248.073333pt;}
.y1d{bottom:255.066667pt;}
.yd5{bottom:260.400000pt;}
.yaa{bottom:260.433333pt;}
.y6b{bottom:264.100000pt;}
.y1c{bottom:265.400000pt;}
.y1b{bottom:276.400000pt;}
.yd4{bottom:276.426667pt;}
.ya9{bottom:276.433333pt;}
.y6a{bottom:280.100000pt;}
.y64{bottom:289.766667pt;}
.yd3{bottom:292.426667pt;}
.ya8{bottom:292.766667pt;}
.y69{bottom:296.433333pt;}
.ye3{bottom:298.106667pt;}
.ye2{bottom:302.773333pt;}
.y63{bottom:304.433333pt;}
.yd2{bottom:308.760000pt;}
.ya7{bottom:308.766667pt;}
.y68{bottom:312.433333pt;}
.y62{bottom:319.100000pt;}
.yd1{bottom:324.760000pt;}
.ya6{bottom:324.766667pt;}
.y67{bottom:328.433333pt;}
.y61{bottom:333.433333pt;}
.ye1{bottom:334.773333pt;}
.yd0{bottom:340.760000pt;}
.ya5{bottom:342.766667pt;}
.y66{bottom:344.766667pt;}
.y60{bottom:348.100000pt;}
.yc7{bottom:348.773333pt;}
.yf{bottom:350.760000pt;}
.ycf{bottom:356.760000pt;}
.y65{bottom:360.766667pt;}
.y5f{bottom:362.433333pt;}
.yce{bottom:373.093333pt;}
.y36{bottom:376.760000pt;}
.ya4{bottom:377.140000pt;}
.ycd{bottom:389.120000pt;}
.ya3{bottom:393.140000pt;}
.ycc{bottom:405.120000pt;}
.ya2{bottom:409.140000pt;}
.ycb{bottom:421.466667pt;}
.ya1{bottom:425.473333pt;}
.yca{bottom:437.453333pt;}
.ya0{bottom:441.473333pt;}
.yc9{bottom:454.786667pt;}
.y9f{bottom:457.473333pt;}
.yc8{bottom:458.120000pt;}
.y9e{bottom:473.473333pt;}
.y9d{bottom:489.833333pt;}
.y5d{bottom:498.840000pt;}
.y9c{bottom:505.833333pt;}
.y59{bottom:509.173333pt;}
.y9b{bottom:521.833333pt;}
.y9a{bottom:538.166667pt;}
.ye{bottom:553.506667pt;}
.y99{bottom:554.166667pt;}
.y45{bottom:567.173333pt;}
.y98{bottom:570.166667pt;}
.y97{bottom:588.166667pt;}
.y96{bottom:606.193333pt;}
.y95{bottom:622.193333pt;}
.y94{bottom:638.526667pt;}
.y19{bottom:652.200000pt;}
.y93{bottom:654.526667pt;}
.y92{bottom:670.526667pt;}
.y91{bottom:686.860000pt;}
.y90{bottom:702.860000pt;}
.y8f{bottom:718.900000pt;}
.y8e{bottom:734.900000pt;}
.y44{bottom:747.560000pt;}
.y8d{bottom:751.233333pt;}
.y37{bottom:760.560000pt;}
.y8c{bottom:767.233333pt;}
.y8b{bottom:785.233333pt;}
.y8a{bottom:803.233333pt;}
.y89{bottom:819.233333pt;}
.yc5{bottom:821.893333pt;}
.yc3{bottom:829.906667pt;}
.y88{bottom:835.593333pt;}
.y87{bottom:851.593333pt;}
.yc2{bottom:861.600000pt;}
.y86{bottom:867.593333pt;}
.yb9{bottom:874.933333pt;}
.y85{bottom:883.926667pt;}
.y84{bottom:899.926667pt;}
.y83{bottom:915.926667pt;}
.y17{bottom:940.600000pt;}
.y10{bottom:958.293333pt;}
.y7e{bottom:1059.293333pt;}
.y7d{bottom:1076.000000pt;}
.y2{bottom:1077.333333pt;}
.y1{bottom:1092.000000pt;}
.y7c{bottom:1092.666667pt;}
.hc{height:3.554688pt;}
.h2b{height:3.703125pt;}
.h29{height:4.666667pt;}
.h8{height:5.000000pt;}
.h3d{height:5.335938pt;}
.h31{height:8.000000pt;}
.h9{height:10.671875pt;}
.h3e{height:12.666667pt;}
.h1c{height:13.000000pt;}
.h38{height:13.117188pt;}
.h20{height:13.666667pt;}
.h12{height:17.700000pt;}
.h3c{height:21.343750pt;}
.h32{height:24.048177pt;}
.h5{height:28.333333pt;}
.h37{height:29.000000pt;}
.h2f{height:29.020000pt;}
.h23{height:32.000000pt;}
.h19{height:32.015625pt;}
.h3f{height:32.700000pt;}
.h3a{height:33.328125pt;}
.ha{height:34.033333pt;}
.h2a{height:34.366667pt;}
.h18{height:34.683594pt;}
.h24{height:36.000000pt;}
.h6{height:39.033333pt;}
.h1{height:40.000000pt;}
.h3b{height:40.019531pt;}
.h7{height:42.687500pt;}
.h16{height:43.343750pt;}
.h26{height:43.723958pt;}
.h21{height:44.333333pt;}
.h4{height:44.437500pt;}
.h1f{height:45.355469pt;}
.h14{height:48.000000pt;}
.h17{height:48.023438pt;}
.h35{height:50.691406pt;}
.h13{height:52.468750pt;}
.h27{height:53.359375pt;}
.h22{height:56.000000pt;}
.h36{height:56.027344pt;}
.h2d{height:56.245157pt;}
.h11{height:64.000000pt;}
.h3{height:64.031250pt;}
.h34{height:69.958333pt;}
.h2{height:71.366667pt;}
.h28{height:74.703125pt;}
.h1e{height:85.033333pt;}
.h30{height:87.447917pt;}
.h10{height:88.000000pt;}
.hb{height:96.000000pt;}
.h39{height:107.700000pt;}
.he{height:112.000000pt;}
.hf{height:116.033333pt;}
.h1b{height:180.040000pt;}
.h1d{height:180.400000pt;}
.h2e{height:181.026667pt;}
.h15{height:288.400000pt;}
.h25{height:374.106667pt;}
.h1a{height:387.106667pt;}
.h33{height:473.133333pt;}
.hd{height:520.840000pt;}
.h2c{height:929.266667pt;}
.h0{height:1122.666667pt;}
.w16{width:19.000000pt;}
.wc{width:19.333333pt;}
.w8{width:21.700000pt;}
.w18{width:35.666667pt;}
.w7{width:55.333333pt;}
.w6{width:56.033333pt;}
.w12{width:86.733333pt;}
.w10{width:87.033333pt;}
.w3{width:88.366667pt;}
.wf{width:106.033333pt;}
.w13{width:113.733333pt;}
.w11{width:116.033333pt;}
.wa{width:122.400000pt;}
.w4{width:166.066667pt;}
.wb{width:218.093333pt;}
.wd{width:297.466667pt;}
.we{width:340.493333pt;}
.w5{width:402.173333pt;}
.w9{width:635.600000pt;}
.w19{width:676.960000pt;}
.w14{width:693.293333pt;}
.w17{width:693.626667pt;}
.w15{width:712.626667pt;}
.w2{width:793.666655pt;}
.w0{width:793.666667pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x7{left:7.333333pt;}
.x13{left:12.666667pt;}
.x15{left:14.000000pt;}
.xa{left:20.986667pt;}
.x25{left:31.333333pt;}
.xb{left:39.333333pt;}
.x2{left:40.700000pt;}
.x1{left:48.033322pt;}
.x9{left:49.026667pt;}
.x1a{left:60.033333pt;}
.x24{left:76.366667pt;}
.x3{left:79.700000pt;}
.x1c{left:85.033322pt;}
.xc{left:96.033333pt;}
.x19{left:101.360000pt;}
.xe{left:112.406667pt;}
.xd{left:117.733333pt;}
.x4{left:129.066667pt;}
.x12{left:146.733333pt;}
.x5{left:155.400000pt;}
.xf{left:218.440000pt;}
.x14{left:233.773333pt;}
.x1f{left:278.433333pt;}
.x23{left:283.133322pt;}
.x6{left:295.133333pt;}
.x20{left:302.806667pt;}
.x21{left:307.140000pt;}
.x26{left:311.473333pt;}
.x1d{left:313.140000pt;}
.x16{left:349.800000pt;}
.x27{left:401.166667pt;}
.x1e{left:422.500000pt;}
.x10{left:436.533333pt;}
.x11{left:455.866667pt;}
.x22{left:535.900000pt;}
.x17{left:552.573333pt;}
.x1b{left:583.559988pt;}
.x18{left:639.600000pt;}
.x8{left:697.306667pt;}
}




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