
    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_071b0ed39dca6867bf6c4789.woff')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_c500dc3e678d9314a2ac0223.woff')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_8bb6ecb8717d602d1c16c97b.woff')format("woff");}.ff3{font-family:ff3;line-height:1.053223;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_3866194ccdf3976d827f4a9f.woff')format("woff");}.ff4{font-family:ff4;line-height:1.053223;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_d0c7cbf13512a2d9c24f43b0.woff')format("woff");}.ff5{font-family:ff5;line-height:0.758789;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_014c7e9aad8360bf67fa4078.woff')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_e28ea8b608fba66ac762a553.woff')format("woff");}.ff7{font-family:ff7;line-height:0.970215;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_5f2d09a0c585ffac71973771.woff')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_3e85c17bab7d327e36b33580.woff')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_e9603da184c1fc5dd9199413.woff')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_4d050c4cc76f57b7848e3eca.woff')format("woff");}.ffb{font-family:ffb;line-height:0.774902;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_1579bcc3602d5da038439a75.woff')format("woff");}.ffc{font-family:ffc;line-height:1.172852;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_44565aac05d41ac7b03b56ce.woff')format("woff");}.ffd{font-family:ffd;line-height:0.923340;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_b9731c5d3f2d55dc8220cc8e.woff')format("woff");}.ffe{font-family:ffe;line-height:0.923340;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_1aabca923ec19babd43c9a35.woff')format("woff");}.fff{font-family:fff;line-height:0.921387;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url('chunks/assets/font_ac26daa7ec2b87caac4fa7a6.woff')format("woff");}.ff10{font-family:ff10;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:ff11;src:url('chunks/assets/font_a043f8b0cfd07a90cdbfbf64.woff')format("woff");}.ff11{font-family:ff11;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:ff12;src:url('chunks/assets/font_b48850cede56a6509852fa0d.woff')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_e415fd34d432e76ac4a95380.woff')format("woff");}.ff13{font-family:ff13;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:ff14;src:url('chunks/assets/font_130301694ab792f9947e2b7d.woff')format("woff");}.ff14{font-family:ff14;line-height:0.739746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-18.000000px;}
.v3{vertical-align:-13.500000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:18.000000px;}
.lsb{letter-spacing:-2.724000px;}
.lsf{letter-spacing:-1.596000px;}
.lse{letter-spacing:-1.482000px;}
.ls10{letter-spacing:-0.852000px;}
.lsc{letter-spacing:-0.792000px;}
.ls11{letter-spacing:-0.780000px;}
.lsa{letter-spacing:-0.378000px;}
.ls9{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.342600px;}
.lsd{letter-spacing:0.690000px;}
.ls0{letter-spacing:1.296000px;}
.ls1{letter-spacing:1.536000px;}
.ls2{letter-spacing:1.854000px;}
.ls5{letter-spacing:1.966500px;}
.ls4{letter-spacing:2.026500px;}
.ls6{letter-spacing:2.146500px;}
.ls13{letter-spacing:2.164500px;}
.ls7{letter-spacing:2.250000px;}
.ls15{letter-spacing:2.430000px;}
.ls8{letter-spacing:4.779000px;}
.ls14{letter-spacing:15.387000px;}
.ls12{letter-spacing:46.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;}
}
.ws5{word-spacing:-58.500000px;}
.ws9{word-spacing:-16.875000px;}
.wsd{word-spacing:-16.789500px;}
.ws4{word-spacing:-16.146000px;}
.ws3{word-spacing:-15.354000px;}
.ws8{word-spacing:-14.625000px;}
.wsa{word-spacing:-13.221000px;}
.wsc{word-spacing:-13.143000px;}
.ws2{word-spacing:-12.531000px;}
.ws6{word-spacing:-12.369000px;}
.ws0{word-spacing:-12.204000px;}
.ws1{word-spacing:-11.826000px;}
.ws7{word-spacing:-8.136000px;}
.wsb{word-spacing:0.000000px;}
._7{margin-left:-10.449300px;}
._a{margin-left:-9.305850px;}
._9{margin-left:-8.217300px;}
._19{margin-left:-6.574500px;}
._6{margin-left:-5.541150px;}
._8{margin-left:-3.779550px;}
._2{margin-left:-2.214000px;}
._1{margin-left:-1.188000px;}
._0{width:1.944000px;}
._3{width:3.210000px;}
._4{width:4.812000px;}
._b{width:6.288000px;}
._14{width:7.507500px;}
._15{width:8.785500px;}
._5{width:10.818000px;}
._10{width:12.358500px;}
._18{width:15.981000px;}
._f{width:17.242500px;}
._e{width:20.511000px;}
._d{width:21.562500px;}
._c{width:25.533000px;}
._1a{width:26.770500px;}
._17{width:29.535000px;}
._13{width:30.639000px;}
._12{width:34.237500px;}
._11{width:35.775000px;}
._16{width:39.568500px;}
._1b{width:44.068050px;}
.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:40.500000px;}
.fs3{font-size:49.500000px;}
.fs0{font-size:54.000000px;}
.fs4{font-size:58.500000px;}
.fs1{font-size:67.500000px;}
.fs2{font-size:72.000000px;}
.fs5{font-size:85.650000px;}
.y0{bottom:0.000000px;}
.y1c{bottom:1.125000px;}
.y3{bottom:3.375000px;}
.ya9{bottom:3.390000px;}
.y4c{bottom:3.405000px;}
.yc0{bottom:3.420000px;}
.y96{bottom:4.500000px;}
.y9a{bottom:4.515000px;}
.y1a{bottom:4.545000px;}
.y4e{bottom:11.250000px;}
.ye{bottom:11.280000px;}
.y1d{bottom:12.375000px;}
.yc{bottom:13.500000px;}
.y4{bottom:16.875000px;}
.y2{bottom:19.125000px;}
.y4b{bottom:20.280000px;}
.y4f{bottom:22.500000px;}
.y4d{bottom:25.875000px;}
.y19{bottom:28.170000px;}
.yb{bottom:30.405000px;}
.y4a{bottom:38.280000px;}
.y18{bottom:45.045000px;}
.ya{bottom:46.155000px;}
.y49{bottom:55.200000px;}
.y5{bottom:57.412500px;}
.y17{bottom:60.825000px;}
.y48{bottom:72.075000px;}
.y9{bottom:73.200000px;}
.y16{bottom:77.700000px;}
.y1{bottom:81.075000px;}
.y47{bottom:90.120000px;}
.y8{bottom:93.450000px;}
.y15{bottom:94.620000px;}
.y14{bottom:103.620000px;}
.y46{bottom:106.995000px;}
.y7{bottom:110.355000px;}
.y13{bottom:119.370000px;}
.y45{bottom:123.870000px;}
.y56{bottom:127.237500px;}
.y105{bottom:130.612500px;}
.y94{bottom:131.737500px;}
.yb1{bottom:135.112500px;}
.y12{bottom:138.525000px;}
.y44{bottom:141.900000px;}
.y55{bottom:145.237500px;}
.y104{bottom:147.487500px;}
.y93{bottom:149.737500px;}
.yb0{bottom:151.995000px;}
.y43{bottom:158.775000px;}
.y54{bottom:162.150000px;}
.y11{bottom:164.400000px;}
.y103{bottom:165.525000px;}
.y92{bottom:166.650000px;}
.yaf{bottom:170.025000px;}
.y42{bottom:175.680000px;}
.y53{bottom:179.025000px;}
.y102{bottom:182.400000px;}
.y91{bottom:183.525000px;}
.yae{bottom:186.900000px;}
.y10{bottom:189.195000px;}
.y41{bottom:193.695000px;}
.y52{bottom:197.025000px;}
.y101{bottom:199.275000px;}
.yd7{bottom:200.400000px;}
.y90{bottom:201.570000px;}
.y40{bottom:210.600000px;}
.y51{bottom:213.945000px;}
.y100{bottom:217.320000px;}
.y8f{bottom:218.445000px;}
.yad{bottom:219.570000px;}
.y3f{bottom:227.475000px;}
.y50{bottom:230.820000px;}
.yff{bottom:234.195000px;}
.y8e{bottom:235.320000px;}
.yac{bottom:237.570000px;}
.y3e{bottom:245.475000px;}
.yfe{bottom:251.100000px;}
.y8d{bottom:253.350000px;}
.yab{bottom:255.600000px;}
.y3d{bottom:262.380000px;}
.yfd{bottom:269.100000px;}
.y8c{bottom:270.225000px;}
.yaa{bottom:273.600000px;}
.y3c{bottom:279.255000px;}
.y1e{bottom:282.600000px;}
.yfc{bottom:286.005000px;}
.y8b{bottom:287.130000px;}
.ya8{bottom:291.630000px;}
.y3b{bottom:297.300000px;}
.yfb{bottom:302.880000px;}
.y8a{bottom:305.145000px;}
.y2c{bottom:306.300000px;}
.ya7{bottom:309.630000px;}
.y3a{bottom:314.175000px;}
.yfa{bottom:320.880000px;}
.y2b{bottom:320.925000px;}
.y89{bottom:322.020000px;}
.ya6{bottom:327.675000px;}
.y39{bottom:331.050000px;}
.yf9{bottom:337.800000px;}
.y88{bottom:338.925000px;}
.y2a{bottom:338.970000px;}
.ya5{bottom:345.675000px;}
.y38{bottom:349.095000px;}
.yf8{bottom:354.675000px;}
.y29{bottom:355.845000px;}
.y87{bottom:356.925000px;}
.ya4{bottom:363.675000px;}
.y37{bottom:365.970000px;}
.yf7{bottom:372.720000px;}
.y86{bottom:373.830000px;}
.y28{bottom:373.845000px;}
.y36{bottom:382.875000px;}
.ya3{bottom:385.080000px;}
.yf6{bottom:389.595000px;}
.y85{bottom:390.705000px;}
.y27{bottom:390.750000px;}
.y35{bottom:400.875000px;}
.ya2{bottom:401.955000px;}
.yf5{bottom:406.470000px;}
.y84{bottom:408.705000px;}
.y26{bottom:408.750000px;}
.y34{bottom:417.750000px;}
.ya1{bottom:420.000000px;}
.yf4{bottom:424.500000px;}
.y83{bottom:425.625000px;}
.y25{bottom:425.655000px;}
.y33{bottom:434.655000px;}
.ya0{bottom:436.875000px;}
.yf3{bottom:441.375000px;}
.y82{bottom:442.500000px;}
.y24{bottom:443.670000px;}
.y32{bottom:452.655000px;}
.y9f{bottom:453.795000px;}
.yf2{bottom:458.280000px;}
.y23{bottom:460.545000px;}
.y31{bottom:469.575000px;}
.y9e{bottom:471.780000px;}
.yf1{bottom:476.295000px;}
.y81{bottom:477.420000px;}
.y22{bottom:478.575000px;}
.y9d{bottom:485.280000px;}
.y30{bottom:486.450000px;}
.yf0{bottom:493.200000px;}
.y80{bottom:494.325000px;}
.y21{bottom:495.450000px;}
.y9c{bottom:503.325000px;}
.y2f{bottom:504.480000px;}
.yef{bottom:510.075000px;}
.y7f{bottom:512.325000px;}
.y9b{bottom:521.325000px;}
.y2e{bottom:521.355000px;}
.y20{bottom:522.480000px;}
.yee{bottom:528.075000px;}
.y7e{bottom:529.200000px;}
.yd6{bottom:530.325000px;}
.y2d{bottom:538.230000px;}
.y99{bottom:539.355000px;}
.y1f{bottom:540.480000px;}
.yed{bottom:544.980000px;}
.y7d{bottom:546.120000px;}
.yd5{bottom:548.355000px;}
.y98{bottom:557.355000px;}
.yec{bottom:561.855000px;}
.y7c{bottom:564.120000px;}
.yd4{bottom:565.230000px;}
.y97{bottom:575.355000px;}
.yeb{bottom:579.900000px;}
.y7b{bottom:581.025000px;}
.yd3{bottom:582.150000px;}
.y95{bottom:593.400000px;}
.yea{bottom:596.775000px;}
.y7a{bottom:597.900000px;}
.yd2{bottom:600.150000px;}
.ye9{bottom:613.650000px;}
.y79{bottom:615.900000px;}
.yd1{bottom:617.025000px;}
.yd0{bottom:631.695000px;}
.y78{bottom:632.820000px;}
.ye8{bottom:648.570000px;}
.y77{bottom:649.695000px;}
.ye7{bottom:665.475000px;}
.y76{bottom:667.725000px;}
.ye6{bottom:683.475000px;}
.y75{bottom:684.600000px;}
.ycf{bottom:685.725000px;}
.ye5{bottom:700.350000px;}
.y74{bottom:701.475000px;}
.yce{bottom:703.755000px;}
.ye4{bottom:717.255000px;}
.y73{bottom:719.520000px;}
.ycd{bottom:721.755000px;}
.ye3{bottom:735.255000px;}
.y72{bottom:736.395000px;}
.ycc{bottom:739.755000px;}
.ye2{bottom:752.175000px;}
.y71{bottom:753.300000px;}
.ycb{bottom:757.800000px;}
.ye1{bottom:769.050000px;}
.y70{bottom:771.300000px;}
.yca{bottom:779.175000px;}
.ye0{bottom:787.080000px;}
.y6f{bottom:788.205000px;}
.yc9{bottom:796.080000px;}
.ydf{bottom:803.955000px;}
.y6e{bottom:805.080000px;}
.yc8{bottom:814.080000px;}
.yde{bottom:820.830000px;}
.y6d{bottom:823.080000px;}
.yc7{bottom:831.000000px;}
.y1b{bottom:834.375000px;}
.ydd{bottom:838.875000px;}
.y6c{bottom:840.000000px;}
.yc6{bottom:847.875000px;}
.ydc{bottom:855.750000px;}
.y6b{bottom:856.875000px;}
.yf{bottom:864.750000px;}
.yc5{bottom:865.875000px;}
.ydb{bottom:872.670000px;}
.y6a{bottom:874.920000px;}
.yc4{bottom:882.795000px;}
.yda{bottom:890.670000px;}
.y69{bottom:891.795000px;}
.yc3{bottom:899.670000px;}
.yd9{bottom:907.545000px;}
.y68{bottom:908.670000px;}
.yc2{bottom:914.325000px;}
.yd8{bottom:921.075000px;}
.y67{bottom:926.700000px;}
.yc1{bottom:932.325000px;}
.y66{bottom:943.575000px;}
.ybf{bottom:950.325000px;}
.y65{bottom:960.495000px;}
.ybe{bottom:968.370000px;}
.y64{bottom:978.495000px;}
.ybd{bottom:986.355000px;}
.y63{bottom:995.400000px;}
.ybc{bottom:1004.400000px;}
.y62{bottom:1012.275000px;}
.ybb{bottom:1025.775000px;}
.y61{bottom:1030.275000px;}
.yba{bottom:1043.820000px;}
.y60{bottom:1047.195000px;}
.yb9{bottom:1060.695000px;}
.y5f{bottom:1064.070000px;}
.yd{bottom:1068.570000px;}
.yb8{bottom:1077.600000px;}
.y5e{bottom:1082.100000px;}
.y6{bottom:1094.475000px;}
.yb7{bottom:1095.600000px;}
.y5d{bottom:1098.975000px;}
.yb6{bottom:1112.475000px;}
.y5c{bottom:1115.850000px;}
.yb5{bottom:1127.130000px;}
.y5b{bottom:1133.880000px;}
.yb4{bottom:1145.130000px;}
.y5a{bottom:1150.755000px;}
.yb3{bottom:1163.175000px;}
.y59{bottom:1167.675000px;}
.yb2{bottom:1181.175000px;}
.y58{bottom:1185.675000px;}
.y57{bottom:1202.580000px;}
.h20{height:16.860000px;}
.h1f{height:16.875000px;}
.h1e{height:16.912500px;}
.h1c{height:18.000000px;}
.h1d{height:18.037500px;}
.hb{height:25.912500px;}
.h13{height:30.375000px;}
.h2{height:32.625000px;}
.h12{height:33.723633px;}
.h11{height:35.806641px;}
.h8{height:37.125000px;}
.h1b{height:41.275635px;}
.h18{height:41.389893px;}
.h1a{height:42.303955px;}
.h21{height:42.589600px;}
.hd{height:43.075195px;}
.h19{height:43.288330px;}
.ha{height:43.875000px;}
.h16{height:49.234131px;}
.h17{height:51.158936px;}
.h4{height:53.709961px;}
.h9{height:54.000000px;}
.h3{height:55.291992px;}
.hf{height:58.185791px;}
.h10{height:59.899658px;}
.he{height:64.237500px;}
.h5{height:69.114990px;}
.h6{height:71.613281px;}
.h14{height:73.722656px;}
.h7{height:121.612500px;}
.hc{height:203.820000px;}
.h15{height:551.775000px;}
.h0{height:1263.375000px;}
.h1{height:1263.750000px;}
.w2{width:74.362500px;}
.w4{width:152.055000px;}
.w7{width:223.020000px;}
.w9{width:248.925000px;}
.wa{width:248.970000px;}
.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;}
.x8{left:7.875000px;}
.x2{left:9.037500px;}
.x15{left:12.420000px;}
.x1{left:72.075000px;}
.x5{left:73.237500px;}
.x4{left:81.112487px;}
.x6{left:97.987500px;}
.x20{left:108.149987px;}
.x12{left:135.157500px;}
.x10{left:136.282500px;}
.x11{left:153.187500px;}
.xf{left:158.812500px;}
.x13{left:214.012500px;}
.x1b{left:216.254987px;}
.x7{left:225.300000px;}
.x19{left:238.799987px;}
.x16{left:250.079987px;}
.xe{left:255.682500px;}
.x1a{left:260.204987px;}
.x1d{left:287.249987px;}
.xb{left:290.625000px;}
.x14{left:296.250000px;}
.x1f{left:318.794987px;}
.x17{left:322.170000px;}
.x9{left:345.780000px;}
.xa{left:364.950000px;}
.xd{left:373.957500px;}
.xc{left:453.945000px;}
.x18{left:572.220000px;}
.x1e{left:684.869987px;}
.x1c{left:724.319987px;}
.x3{left:746.820000px;}
@media print{
.v2{vertical-align:-16.000000pt;}
.v3{vertical-align:-12.000000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:16.000000pt;}
.lsb{letter-spacing:-2.421333pt;}
.lsf{letter-spacing:-1.418667pt;}
.lse{letter-spacing:-1.317333pt;}
.ls10{letter-spacing:-0.757333pt;}
.lsc{letter-spacing:-0.704000pt;}
.ls11{letter-spacing:-0.693333pt;}
.lsa{letter-spacing:-0.336000pt;}
.ls9{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.304533pt;}
.lsd{letter-spacing:0.613333pt;}
.ls0{letter-spacing:1.152000pt;}
.ls1{letter-spacing:1.365333pt;}
.ls2{letter-spacing:1.648000pt;}
.ls5{letter-spacing:1.748000pt;}
.ls4{letter-spacing:1.801333pt;}
.ls6{letter-spacing:1.908000pt;}
.ls13{letter-spacing:1.924000pt;}
.ls7{letter-spacing:2.000000pt;}
.ls15{letter-spacing:2.160000pt;}
.ls8{letter-spacing:4.248000pt;}
.ls14{letter-spacing:13.677333pt;}
.ls12{letter-spacing:41.677333pt;}
.ws5{word-spacing:-52.000000pt;}
.ws9{word-spacing:-15.000000pt;}
.wsd{word-spacing:-14.924000pt;}
.ws4{word-spacing:-14.352000pt;}
.ws3{word-spacing:-13.648000pt;}
.ws8{word-spacing:-13.000000pt;}
.wsa{word-spacing:-11.752000pt;}
.wsc{word-spacing:-11.682667pt;}
.ws2{word-spacing:-11.138667pt;}
.ws6{word-spacing:-10.994667pt;}
.ws0{word-spacing:-10.848000pt;}
.ws1{word-spacing:-10.512000pt;}
.ws7{word-spacing:-7.232000pt;}
.wsb{word-spacing:0.000000pt;}
._7{margin-left:-9.288267pt;}
._a{margin-left:-8.271867pt;}
._9{margin-left:-7.304267pt;}
._19{margin-left:-5.844000pt;}
._6{margin-left:-4.925467pt;}
._8{margin-left:-3.359600pt;}
._2{margin-left:-1.968000pt;}
._1{margin-left:-1.056000pt;}
._0{width:1.728000pt;}
._3{width:2.853333pt;}
._4{width:4.277333pt;}
._b{width:5.589333pt;}
._14{width:6.673333pt;}
._15{width:7.809333pt;}
._5{width:9.616000pt;}
._10{width:10.985333pt;}
._18{width:14.205333pt;}
._f{width:15.326667pt;}
._e{width:18.232000pt;}
._d{width:19.166667pt;}
._c{width:22.696000pt;}
._1a{width:23.796000pt;}
._17{width:26.253333pt;}
._13{width:27.234667pt;}
._12{width:30.433333pt;}
._11{width:31.800000pt;}
._16{width:35.172000pt;}
._1b{width:39.171600pt;}
.fs7{font-size:32.000000pt;}
.fs6{font-size:36.000000pt;}
.fs3{font-size:44.000000pt;}
.fs0{font-size:48.000000pt;}
.fs4{font-size:52.000000pt;}
.fs1{font-size:60.000000pt;}
.fs2{font-size:64.000000pt;}
.fs5{font-size:76.133333pt;}
.y0{bottom:0.000000pt;}
.y1c{bottom:1.000000pt;}
.y3{bottom:3.000000pt;}
.ya9{bottom:3.013333pt;}
.y4c{bottom:3.026667pt;}
.yc0{bottom:3.040000pt;}
.y96{bottom:4.000000pt;}
.y9a{bottom:4.013333pt;}
.y1a{bottom:4.040000pt;}
.y4e{bottom:10.000000pt;}
.ye{bottom:10.026667pt;}
.y1d{bottom:11.000000pt;}
.yc{bottom:12.000000pt;}
.y4{bottom:15.000000pt;}
.y2{bottom:17.000000pt;}
.y4b{bottom:18.026667pt;}
.y4f{bottom:20.000000pt;}
.y4d{bottom:23.000000pt;}
.y19{bottom:25.040000pt;}
.yb{bottom:27.026667pt;}
.y4a{bottom:34.026667pt;}
.y18{bottom:40.040000pt;}
.ya{bottom:41.026667pt;}
.y49{bottom:49.066667pt;}
.y5{bottom:51.033333pt;}
.y17{bottom:54.066667pt;}
.y48{bottom:64.066667pt;}
.y9{bottom:65.066667pt;}
.y16{bottom:69.066667pt;}
.y1{bottom:72.066667pt;}
.y47{bottom:80.106667pt;}
.y8{bottom:83.066667pt;}
.y15{bottom:84.106667pt;}
.y14{bottom:92.106667pt;}
.y46{bottom:95.106667pt;}
.y7{bottom:98.093333pt;}
.y13{bottom:106.106667pt;}
.y45{bottom:110.106667pt;}
.y56{bottom:113.100000pt;}
.y105{bottom:116.100000pt;}
.y94{bottom:117.100000pt;}
.yb1{bottom:120.100000pt;}
.y12{bottom:123.133333pt;}
.y44{bottom:126.133333pt;}
.y55{bottom:129.100000pt;}
.y104{bottom:131.100000pt;}
.y93{bottom:133.100000pt;}
.yb0{bottom:135.106667pt;}
.y43{bottom:141.133333pt;}
.y54{bottom:144.133333pt;}
.y11{bottom:146.133333pt;}
.y103{bottom:147.133333pt;}
.y92{bottom:148.133333pt;}
.yaf{bottom:151.133333pt;}
.y42{bottom:156.160000pt;}
.y53{bottom:159.133333pt;}
.y102{bottom:162.133333pt;}
.y91{bottom:163.133333pt;}
.yae{bottom:166.133333pt;}
.y10{bottom:168.173333pt;}
.y41{bottom:172.173333pt;}
.y52{bottom:175.133333pt;}
.y101{bottom:177.133333pt;}
.yd7{bottom:178.133333pt;}
.y90{bottom:179.173333pt;}
.y40{bottom:187.200000pt;}
.y51{bottom:190.173333pt;}
.y100{bottom:193.173333pt;}
.y8f{bottom:194.173333pt;}
.yad{bottom:195.173333pt;}
.y3f{bottom:202.200000pt;}
.y50{bottom:205.173333pt;}
.yff{bottom:208.173333pt;}
.y8e{bottom:209.173333pt;}
.yac{bottom:211.173333pt;}
.y3e{bottom:218.200000pt;}
.yfe{bottom:223.200000pt;}
.y8d{bottom:225.200000pt;}
.yab{bottom:227.200000pt;}
.y3d{bottom:233.226667pt;}
.yfd{bottom:239.200000pt;}
.y8c{bottom:240.200000pt;}
.yaa{bottom:243.200000pt;}
.y3c{bottom:248.226667pt;}
.y1e{bottom:251.200000pt;}
.yfc{bottom:254.226667pt;}
.y8b{bottom:255.226667pt;}
.ya8{bottom:259.226667pt;}
.y3b{bottom:264.266667pt;}
.yfb{bottom:269.226667pt;}
.y8a{bottom:271.240000pt;}
.y2c{bottom:272.266667pt;}
.ya7{bottom:275.226667pt;}
.y3a{bottom:279.266667pt;}
.yfa{bottom:285.226667pt;}
.y2b{bottom:285.266667pt;}
.y89{bottom:286.240000pt;}
.ya6{bottom:291.266667pt;}
.y39{bottom:294.266667pt;}
.yf9{bottom:300.266667pt;}
.y88{bottom:301.266667pt;}
.y2a{bottom:301.306667pt;}
.ya5{bottom:307.266667pt;}
.y38{bottom:310.306667pt;}
.yf8{bottom:315.266667pt;}
.y29{bottom:316.306667pt;}
.y87{bottom:317.266667pt;}
.ya4{bottom:323.266667pt;}
.y37{bottom:325.306667pt;}
.yf7{bottom:331.306667pt;}
.y86{bottom:332.293333pt;}
.y28{bottom:332.306667pt;}
.y36{bottom:340.333333pt;}
.ya3{bottom:342.293333pt;}
.yf6{bottom:346.306667pt;}
.y85{bottom:347.293333pt;}
.y27{bottom:347.333333pt;}
.y35{bottom:356.333333pt;}
.ya2{bottom:357.293333pt;}
.yf5{bottom:361.306667pt;}
.y84{bottom:363.293333pt;}
.y26{bottom:363.333333pt;}
.y34{bottom:371.333333pt;}
.ya1{bottom:373.333333pt;}
.yf4{bottom:377.333333pt;}
.y83{bottom:378.333333pt;}
.y25{bottom:378.360000pt;}
.y33{bottom:386.360000pt;}
.ya0{bottom:388.333333pt;}
.yf3{bottom:392.333333pt;}
.y82{bottom:393.333333pt;}
.y24{bottom:394.373333pt;}
.y32{bottom:402.360000pt;}
.y9f{bottom:403.373333pt;}
.yf2{bottom:407.360000pt;}
.y23{bottom:409.373333pt;}
.y31{bottom:417.400000pt;}
.y9e{bottom:419.360000pt;}
.yf1{bottom:423.373333pt;}
.y81{bottom:424.373333pt;}
.y22{bottom:425.400000pt;}
.y9d{bottom:431.360000pt;}
.y30{bottom:432.400000pt;}
.yf0{bottom:438.400000pt;}
.y80{bottom:439.400000pt;}
.y21{bottom:440.400000pt;}
.y9c{bottom:447.400000pt;}
.y2f{bottom:448.426667pt;}
.yef{bottom:453.400000pt;}
.y7f{bottom:455.400000pt;}
.y9b{bottom:463.400000pt;}
.y2e{bottom:463.426667pt;}
.y20{bottom:464.426667pt;}
.yee{bottom:469.400000pt;}
.y7e{bottom:470.400000pt;}
.yd6{bottom:471.400000pt;}
.y2d{bottom:478.426667pt;}
.y99{bottom:479.426667pt;}
.y1f{bottom:480.426667pt;}
.yed{bottom:484.426667pt;}
.y7d{bottom:485.440000pt;}
.yd5{bottom:487.426667pt;}
.y98{bottom:495.426667pt;}
.yec{bottom:499.426667pt;}
.y7c{bottom:501.440000pt;}
.yd4{bottom:502.426667pt;}
.y97{bottom:511.426667pt;}
.yeb{bottom:515.466667pt;}
.y7b{bottom:516.466667pt;}
.yd3{bottom:517.466667pt;}
.y95{bottom:527.466667pt;}
.yea{bottom:530.466667pt;}
.y7a{bottom:531.466667pt;}
.yd2{bottom:533.466667pt;}
.ye9{bottom:545.466667pt;}
.y79{bottom:547.466667pt;}
.yd1{bottom:548.466667pt;}
.yd0{bottom:561.506667pt;}
.y78{bottom:562.506667pt;}
.ye8{bottom:576.506667pt;}
.y77{bottom:577.506667pt;}
.ye7{bottom:591.533333pt;}
.y76{bottom:593.533333pt;}
.ye6{bottom:607.533333pt;}
.y75{bottom:608.533333pt;}
.ycf{bottom:609.533333pt;}
.ye5{bottom:622.533333pt;}
.y74{bottom:623.533333pt;}
.yce{bottom:625.560000pt;}
.ye4{bottom:637.560000pt;}
.y73{bottom:639.573333pt;}
.ycd{bottom:641.560000pt;}
.ye3{bottom:653.560000pt;}
.y72{bottom:654.573333pt;}
.ycc{bottom:657.560000pt;}
.ye2{bottom:668.600000pt;}
.y71{bottom:669.600000pt;}
.ycb{bottom:673.600000pt;}
.ye1{bottom:683.600000pt;}
.y70{bottom:685.600000pt;}
.yca{bottom:692.600000pt;}
.ye0{bottom:699.626667pt;}
.y6f{bottom:700.626667pt;}
.yc9{bottom:707.626667pt;}
.ydf{bottom:714.626667pt;}
.y6e{bottom:715.626667pt;}
.yc8{bottom:723.626667pt;}
.yde{bottom:729.626667pt;}
.y6d{bottom:731.626667pt;}
.yc7{bottom:738.666667pt;}
.y1b{bottom:741.666667pt;}
.ydd{bottom:745.666667pt;}
.y6c{bottom:746.666667pt;}
.yc6{bottom:753.666667pt;}
.ydc{bottom:760.666667pt;}
.y6b{bottom:761.666667pt;}
.yf{bottom:768.666667pt;}
.yc5{bottom:769.666667pt;}
.ydb{bottom:775.706667pt;}
.y6a{bottom:777.706667pt;}
.yc4{bottom:784.706667pt;}
.yda{bottom:791.706667pt;}
.y69{bottom:792.706667pt;}
.yc3{bottom:799.706667pt;}
.yd9{bottom:806.706667pt;}
.y68{bottom:807.706667pt;}
.yc2{bottom:812.733333pt;}
.yd8{bottom:818.733333pt;}
.y67{bottom:823.733333pt;}
.yc1{bottom:828.733333pt;}
.y66{bottom:838.733333pt;}
.ybf{bottom:844.733333pt;}
.y65{bottom:853.773333pt;}
.ybe{bottom:860.773333pt;}
.y64{bottom:869.773333pt;}
.ybd{bottom:876.760000pt;}
.y63{bottom:884.800000pt;}
.ybc{bottom:892.800000pt;}
.y62{bottom:899.800000pt;}
.ybb{bottom:911.800000pt;}
.y61{bottom:915.800000pt;}
.yba{bottom:927.840000pt;}
.y60{bottom:930.840000pt;}
.yb9{bottom:942.840000pt;}
.y5f{bottom:945.840000pt;}
.yd{bottom:949.840000pt;}
.yb8{bottom:957.866667pt;}
.y5e{bottom:961.866667pt;}
.y6{bottom:972.866667pt;}
.yb7{bottom:973.866667pt;}
.y5d{bottom:976.866667pt;}
.yb6{bottom:988.866667pt;}
.y5c{bottom:991.866667pt;}
.yb5{bottom:1001.893333pt;}
.y5b{bottom:1007.893333pt;}
.yb4{bottom:1017.893333pt;}
.y5a{bottom:1022.893333pt;}
.yb3{bottom:1033.933333pt;}
.y59{bottom:1037.933333pt;}
.yb2{bottom:1049.933333pt;}
.y58{bottom:1053.933333pt;}
.y57{bottom:1068.960000pt;}
.h20{height:14.986667pt;}
.h1f{height:15.000000pt;}
.h1e{height:15.033333pt;}
.h1c{height:16.000000pt;}
.h1d{height:16.033333pt;}
.hb{height:23.033333pt;}
.h13{height:27.000000pt;}
.h2{height:29.000000pt;}
.h12{height:29.976562pt;}
.h11{height:31.828125pt;}
.h8{height:33.000000pt;}
.h1b{height:36.689453pt;}
.h18{height:36.791016pt;}
.h1a{height:37.603516pt;}
.h21{height:37.857422pt;}
.hd{height:38.289062pt;}
.h19{height:38.478516pt;}
.ha{height:39.000000pt;}
.h16{height:43.763672pt;}
.h17{height:45.474609pt;}
.h4{height:47.742188pt;}
.h9{height:48.000000pt;}
.h3{height:49.148438pt;}
.hf{height:51.720703pt;}
.h10{height:53.244141pt;}
.he{height:57.100000pt;}
.h5{height:61.435547pt;}
.h6{height:63.656250pt;}
.h14{height:65.531250pt;}
.h7{height:108.100000pt;}
.hc{height:181.173333pt;}
.h15{height:490.466667pt;}
.h0{height:1123.000000pt;}
.h1{height:1123.333333pt;}
.w2{width:66.100000pt;}
.w4{width:135.160000pt;}
.w7{width:198.240000pt;}
.w9{width:221.266667pt;}
.wa{width:221.306667pt;}
.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;}
.x8{left:7.000000pt;}
.x2{left:8.033333pt;}
.x15{left:11.040000pt;}
.x1{left:64.066667pt;}
.x5{left:65.100000pt;}
.x4{left:72.099988pt;}
.x6{left:87.100000pt;}
.x20{left:96.133322pt;}
.x12{left:120.140000pt;}
.x10{left:121.140000pt;}
.x11{left:136.166667pt;}
.xf{left:141.166667pt;}
.x13{left:190.233333pt;}
.x1b{left:192.226655pt;}
.x7{left:200.266667pt;}
.x19{left:212.266655pt;}
.x16{left:222.293322pt;}
.xe{left:227.273333pt;}
.x1a{left:231.293322pt;}
.x1d{left:255.333322pt;}
.xb{left:258.333333pt;}
.x14{left:263.333333pt;}
.x1f{left:283.373322pt;}
.x17{left:286.373333pt;}
.x9{left:307.360000pt;}
.xa{left:324.400000pt;}
.xd{left:332.406667pt;}
.xc{left:403.506667pt;}
.x18{left:508.640000pt;}
.x1e{left:608.773322pt;}
.x1c{left:643.839988pt;}
.x3{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; }
  