
    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_fad5a3e096f331bb0c63d70f.woff')format("woff");}.ff1{font-family:ff1;line-height:0.910645;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_80560532bea3e68ea19722ba.woff')format("woff");}.ff2{font-family:ff2;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_3e32f66a141f6e46f9fcdb2e.woff')format("woff");}.ff3{font-family:ff3;line-height:1.432129;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_0b735f1f08d567d379b08ef2.woff')format("woff");}.ff4{font-family:ff4;line-height:1.432129;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_38f0f6d4f32f2fe3cadaa7a3.woff')format("woff");}.ff5{font-family:ff5;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;}
@font-face{font-family:ff6;src:url('chunks/assets/font_b5a592611ffc806b8d396bca.woff')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_f317093381e986f78a9c0947.woff')format("woff");}.ff7{font-family:ff7;line-height:1.112305;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_ef7bd36debb703a2d2e24973.woff')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_1f8b2129c8788caae9505fc6.woff')format("woff");}.ff9{font-family:ff9;line-height:0.999023;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_8eb799fa98c0e7016dd48e43.woff')format("woff");}.ffa{font-family:ffa;line-height:0.850586;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_a949cd9d22565228de0fdedb.woff')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_5aba0bac70b90db296650a30.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_614d3a7ca2120d5d58bc3e55.woff')format("woff");}.ffd{font-family:ffd;line-height:1.435059;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_5e15a9ce0ec1a1af2263a8b3.woff')format("woff");}.ffe{font-family:ffe;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:fff;src:url('chunks/assets/font_e2d8bf241f3139cd734e333d.woff')format("woff");}.fff{font-family:fff;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:ff10;src:url('chunks/assets/font_917c6f6f190921e0bb8135d4.woff')format("woff");}.ff10{font-family:ff10;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:ff11;src:url('chunks/assets/font_fcd20a6b01bce6438f6b8a4a.woff')format("woff");}.ff11{font-family:ff11;line-height:0.844727;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;}
.m2{transform:matrix(0.144265,-0.204175,0.204175,0.144265,0,0);-ms-transform:matrix(0.144265,-0.204175,0.204175,0.144265,0,0);-webkit-transform:matrix(0.144265,-0.204175,0.204175,0.144265,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);}
.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);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:23.760000px;}
.ls8{letter-spacing:-0.504000px;}
.lsd{letter-spacing:-0.360000px;}
.ls10{letter-spacing:-0.216000px;}
.ls5{letter-spacing:-0.190200px;}
.lsa{letter-spacing:-0.144000px;}
.lse{letter-spacing:-0.141600px;}
.ls2{letter-spacing:-0.048960px;}
.ls0{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.020160px;}
.lsc{letter-spacing:0.064200px;}
.lsf{letter-spacing:0.072000px;}
.ls9{letter-spacing:0.144000px;}
.lsb{letter-spacing:0.174240px;}
.ls7{letter-spacing:0.216000px;}
.ls6{letter-spacing:0.288000px;}
.ls4{letter-spacing:0.360000px;}
.ls11{letter-spacing:0.540000px;}
.ls3{letter-spacing:15.461280px;}
.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;}
}
.ws11{word-spacing:-72.000000px;}
.ws15{word-spacing:-18.342600px;}
.ws4{word-spacing:-18.000000px;}
.ws16{word-spacing:-16.632000px;}
.ws18{word-spacing:-16.488000px;}
.ws1e{word-spacing:-16.344000px;}
.ws17{word-spacing:-16.272000px;}
.ws1f{word-spacing:-16.056000px;}
.ws1c{word-spacing:-15.912000px;}
.ws19{word-spacing:-15.768000px;}
.ws13{word-spacing:-14.990400px;}
.ws14{word-spacing:-14.970240px;}
.ws12{word-spacing:-14.572800px;}
.ws1b{word-spacing:-13.569960px;}
.ws1a{word-spacing:-13.505760px;}
.ws1d{word-spacing:-10.760640px;}
.wsf{word-spacing:-0.531000px;}
.ws10{word-spacing:0.000000px;}
.wsc{word-spacing:2.159400px;}
.ws5{word-spacing:3.087000px;}
.wsa{word-spacing:6.082800px;}
.wsd{word-spacing:6.228600px;}
.wsb{word-spacing:11.761200px;}
.ws6{word-spacing:14.104200px;}
.wse{word-spacing:15.397800px;}
.ws8{word-spacing:18.241200px;}
.ws9{word-spacing:18.242400px;}
.ws7{word-spacing:18.666000px;}
.ws0{word-spacing:24.757200px;}
.ws1{word-spacing:31.750200px;}
.ws3{word-spacing:568.818600px;}
.ws2{word-spacing:608.778600px;}
._7{margin-left:-9.099600px;}
._1{margin-left:-4.966800px;}
._a{margin-left:-3.397200px;}
._8{margin-left:-1.118400px;}
._c{width:1.334400px;}
._d{width:2.894400px;}
._6{width:22.160400px;}
._b{width:25.276200px;}
._9{width:31.064400px;}
._10{width:59.196000px;}
._f{width:77.112000px;}
._e{width:179.832000px;}
._11{width:196.308000px;}
._5{width:305.514600px;}
._3{width:309.546600px;}
._4{width:345.330600px;}
._2{width:356.201400px;}
._0{width:423.378600px;}
.fc4{color:transparent;}
.fc1{color:rgb(0,0,255);}
.fc3{color:rgb(255,255,255);}
.fc2{color:rgb(229,229,229);}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:48.240000px;}
.fs8{font-size:54.000000px;}
.fs6{font-size:59.760000px;}
.fs4{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.fs3{font-size:81.600000px;}
.fs5{font-size:84.240000px;}
.fs0{font-size:94.500000px;}
.fs2{font-size:287.999587px;}
.y0{bottom:0.000000px;}
.yfb{bottom:10.500000px;}
.y72{bottom:26.814000px;}
.y70{bottom:26.820000px;}
.y89{bottom:26.850000px;}
.y9d{bottom:26.865000px;}
.y78{bottom:27.000000px;}
.y8e{bottom:27.045000px;}
.yda{bottom:30.600000px;}
.y75{bottom:70.740000px;}
.y7e{bottom:70.770000px;}
.y7a{bottom:70.785000px;}
.y92{bottom:70.914000px;}
.y77{bottom:70.920000px;}
.ya4{bottom:70.950000px;}
.y8d{bottom:70.965000px;}
.yd9{bottom:74.700000px;}
.y90{bottom:114.660000px;}
.yce{bottom:114.690000px;}
.ycd{bottom:114.840000px;}
.yd8{bottom:118.620000px;}
.yd3{bottom:122.265000px;}
.y57{bottom:123.480000px;}
.y6d{bottom:128.700000px;}
.yfa{bottom:131.400000px;}
.ydc{bottom:133.740000px;}
.y91{bottom:141.336000px;}
.y71{bottom:144.396000px;}
.yc6{bottom:145.476000px;}
.ya2{bottom:149.076000px;}
.yae{bottom:149.796000px;}
.yd6{bottom:153.390000px;}
.ye3{bottom:153.750000px;}
.yd7{bottom:162.540000px;}
.y87{bottom:165.990000px;}
.yd2{bottom:166.185000px;}
.y56{bottom:167.430000px;}
.y6c{bottom:172.650000px;}
.yf9{bottom:175.350000px;}
.y6f{bottom:189.030000px;}
.yc5{bottom:189.390000px;}
.ya1{bottom:192.990000px;}
.yad{bottom:197.490000px;}
.ye2{bottom:197.850000px;}
.y18{bottom:204.976800px;}
.y86{bottom:209.910000px;}
.yd1{bottom:210.105000px;}
.y55{bottom:211.350000px;}
.y6e{bottom:213.870000px;}
.y6b{bottom:216.750000px;}
.yf8{bottom:219.270000px;}
.y8f{bottom:230.070000px;}
.yc4{bottom:233.490000px;}
.ya0{bottom:236.910000px;}
.ye1{bottom:241.770000px;}
.yac{bottom:245.190000px;}
.y85{bottom:253.830000px;}
.yd0{bottom:254.025000px;}
.y54{bottom:255.270000px;}
.y6a{bottom:260.670000px;}
.y9f{bottom:263.010000px;}
.yf7{bottom:263.190000px;}
.y17{bottom:273.826800px;}
.yc3{bottom:277.410000px;}
.ye0{bottom:285.690000px;}
.ydb{bottom:289.110000px;}
.yab{bottom:292.710000px;}
.y16{bottom:295.426800px;}
.y84{bottom:297.750000px;}
.yca{bottom:298.155000px;}
.y53{bottom:299.190000px;}
.y69{bottom:304.590000px;}
.yf6{bottom:307.290000px;}
.y15{bottom:317.026800px;}
.yc2{bottom:321.330000px;}
.y9e{bottom:323.490000px;}
.ydf{bottom:329.610000px;}
.ycf{bottom:336.810000px;}
.y14{bottom:338.626800px;}
.yaa{bottom:340.410000px;}
.y83{bottom:341.850000px;}
.yc9{bottom:342.075000px;}
.y52{bottom:343.290000px;}
.y68{bottom:348.510000px;}
.yf5{bottom:351.210000px;}
.y2f{bottom:353.370000px;}
.y13{bottom:360.226800px;}
.y8c{bottom:362.550000px;}
.yc1{bottom:365.250000px;}
.yde{bottom:373.530000px;}
.y12{bottom:381.826800px;}
.y9c{bottom:383.970000px;}
.y82{bottom:385.770000px;}
.y51{bottom:387.210000px;}
.ya9{bottom:388.155000px;}
.y67{bottom:392.475000px;}
.y2e{bottom:394.815000px;}
.yf4{bottom:395.175000px;}
.y11{bottom:403.426800px;}
.y19{bottom:404.400000px;}
.yc0{bottom:409.215000px;}
.ydd{bottom:412.815000px;}
.yd5{bottom:428.475000px;}
.y81{bottom:429.735000px;}
.y50{bottom:431.175000px;}
.ya8{bottom:435.855000px;}
.y2d{bottom:436.215000px;}
.y66{bottom:436.395000px;}
.yf3{bottom:439.095000px;}
.y9b{bottom:444.315000px;}
.y8b{bottom:451.335000px;}
.ybf{bottom:453.135000px;}
.y40{bottom:454.755000px;}
.y2c{bottom:456.915000px;}
.y10{bottom:472.276800px;}
.y80{bottom:473.655000px;}
.y4f{bottom:475.095000px;}
.y2b{bottom:477.615000px;}
.y65{bottom:480.315000px;}
.yf2{bottom:483.015000px;}
.ya7{bottom:483.555000px;}
.y7f{bottom:491.475000px;}
.yf{bottom:493.876800px;}
.y3f{bottom:495.075000px;}
.ybe{bottom:497.055000px;}
.y9a{bottom:504.795000px;}
.ye{bottom:515.476800px;}
.y2a{bottom:519.015000px;}
.y64{bottom:524.415000px;}
.yf1{bottom:526.935000px;}
.ya6{bottom:531.255000px;}
.y3e{bottom:535.395000px;}
.yd{bottom:537.076800px;}
.y8a{bottom:539.895000px;}
.ybd{bottom:541.155000px;}
.y29{bottom:560.415000px;}
.y4e{bottom:562.935000px;}
.yd4{bottom:564.015000px;}
.y99{bottom:565.275000px;}
.y63{bottom:568.335000px;}
.yf0{bottom:570.855000px;}
.y3d{bottom:575.535000px;}
.ya5{bottom:578.955000px;}
.y7d{bottom:580.215000px;}
.ybc{bottom:585.075000px;}
.yc{bottom:594.676800px;}
.y28{bottom:601.815000px;}
.y4d{bottom:606.855000px;}
.yc8{bottom:611.715000px;}
.y62{bottom:612.255000px;}
.yef{bottom:614.955000px;}
.y3c{bottom:615.855000px;}
.y98{bottom:625.755000px;}
.ya3{bottom:626.655000px;}
.yb{bottom:627.526800px;}
.y88{bottom:628.635000px;}
.ybb{bottom:628.995000px;}
.y27{bottom:643.245000px;}
.y4c{bottom:650.985000px;}
.y3b{bottom:656.205000px;}
.yee{bottom:658.905000px;}
.ya{bottom:660.376800px;}
.y7c{bottom:668.805000px;}
.yba{bottom:672.945000px;}
.y26{bottom:684.645000px;}
.y97{bottom:686.265000px;}
.y4b{bottom:694.905000px;}
.y3a{bottom:696.525000px;}
.y61{bottom:700.125000px;}
.yed{bottom:702.825000px;}
.y9{bottom:712.351800px;}
.yb9{bottom:716.865000px;}
.y25{bottom:726.045000px;}
.y39{bottom:736.845000px;}
.y4a{bottom:738.825000px;}
.y60{bottom:744.045000px;}
.y96{bottom:746.565000px;}
.yec{bottom:746.745000px;}
.ycc{bottom:747.285000px;}
.y7b{bottom:757.365000px;}
.yb8{bottom:760.785000px;}
.y8{bottom:764.326800px;}
.y24{bottom:767.445000px;}
.y38{bottom:776.985000px;}
.y49{bottom:782.745000px;}
.y5f{bottom:787.965000px;}
.yeb{bottom:790.665000px;}
.y7{bottom:797.176800px;}
.yb7{bottom:804.705000px;}
.y23{bottom:808.845000px;}
.y37{bottom:817.305000px;}
.y48{bottom:826.665000px;}
.y6{bottom:830.026800px;}
.y5e{bottom:832.065000px;}
.yea{bottom:834.585000px;}
.y79{bottom:846.105000px;}
.yb6{bottom:848.805000px;}
.y22{bottom:850.245000px;}
.y95{bottom:850.965000px;}
.y36{bottom:857.625000px;}
.y47{bottom:870.585000px;}
.y5d{bottom:875.985000px;}
.y5{bottom:877.951800px;}
.ye9{bottom:878.505000px;}
.ycb{bottom:882.825000px;}
.y21{bottom:891.645000px;}
.yb5{bottom:892.770000px;}
.y35{bottom:897.990000px;}
.y46{bottom:914.550000px;}
.y5c{bottom:919.950000px;}
.ye8{bottom:922.650000px;}
.y20{bottom:933.090000px;}
.y76{bottom:934.710000px;}
.yb4{bottom:936.690000px;}
.y34{bottom:938.310000px;}
.y4{bottom:947.701800px;}
.y94{bottom:955.410000px;}
.y45{bottom:958.650000px;}
.y5a{bottom:960.990000px;}
.y5b{bottom:963.870000px;}
.ye7{bottom:966.570000px;}
.y3{bottom:967.951800px;}
.y1f{bottom:974.490000px;}
.yc7{bottom:974.670000px;}
.y33{bottom:978.450000px;}
.yb3{bottom:980.610000px;}
.y2{bottom:988.201800px;}
.y44{bottom:1002.570000px;}
.y59{bottom:1007.790000px;}
.ye6{bottom:1010.490000px;}
.y1e{bottom:1015.890000px;}
.y32{bottom:1016.970000px;}
.yb2{bottom:1020.030000px;}
.y74{bottom:1023.450000px;}
.y43{bottom:1046.490000px;}
.y58{bottom:1051.710000px;}
.ye5{bottom:1054.410000px;}
.yb1{bottom:1056.750000px;}
.y1d{bottom:1057.290000px;}
.y93{bottom:1059.810000px;}
.y1{bottom:1060.103850px;}
.y42{bottom:1090.410000px;}
.yb0{bottom:1093.290000px;}
.y31{bottom:1095.630000px;}
.y1c{bottom:1098.690000px;}
.ye4{bottom:1100.850000px;}
.yaf{bottom:1110.210000px;}
.y73{bottom:1112.010000px;}
.y41{bottom:1136.850000px;}
.y30{bottom:1139.730000px;}
.y1b{bottom:1140.090000px;}
.y1a{bottom:1195.560000px;}
.h22{height:35.991211px;}
.h10{height:43.920000px;}
.h11{height:43.956000px;}
.h17{height:44.100000px;}
.h2{height:50.027344px;}
.ha{height:56.084062px;}
.h18{height:59.439023px;}
.hf{height:62.964844px;}
.h1{height:65.660889px;}
.hb{height:65.884219px;}
.hc{height:67.824844px;}
.h8{height:70.664062px;}
.h1f{height:71.324297px;}
.he{height:71.613281px;}
.h1e{height:71.740898px;}
.h7{height:72.562500px;}
.h9{height:73.722656px;}
.h6{height:85.106250px;}
.hd{height:87.695156px;}
.h12{height:87.840000px;}
.h14{height:87.876000px;}
.h13{height:88.020000px;}
.h15{height:88.056000px;}
.h16{height:131.760000px;}
.h1b{height:131.796000px;}
.h1a{height:131.940000px;}
.h1d{height:179.640000px;}
.h1c{height:271.110000px;}
.h5{height:300.374570px;}
.h19{height:359.175000px;}
.h20{height:689.850000px;}
.h21{height:690.000000px;}
.h0{height:1188.000000px;}
.h4{height:1263.000000px;}
.h3{height:1263.060000px;}
.wb{width:43.560000px;}
.wf{width:81.900000px;}
.w8{width:82.476000px;}
.wa{width:97.020000px;}
.w12{width:110.340000px;}
.w10{width:116.676000px;}
.w11{width:131.436000px;}
.w14{width:133.560000px;}
.w7{width:137.340000px;}
.w13{width:156.090000px;}
.wd{width:166.530000px;}
.wc{width:176.250000px;}
.w15{width:189.210000px;}
.w6{width:189.975000px;}
.we{width:211.575000px;}
.w5{width:250.590000px;}
.w4{width:255.630000px;}
.w16{width:359.385000px;}
.w9{width:476.205000px;}
.w17{width:541.485000px;}
.w18{width:541.500000px;}
.w3{width:892.439987px;}
.w1{width:892.440000px;}
.w2{width:892.500000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x2a{left:1.080000px;}
.x1c{left:8.100000px;}
.x23{left:37.110000px;}
.x26{left:41.445000px;}
.x1b{left:45.765000px;}
.x24{left:50.790000px;}
.x21{left:61.425000px;}
.x27{left:64.485000px;}
.x19{left:69.480000px;}
.x29{left:96.525000px;}
.x17{left:98.316000px;}
.x28{left:101.025000px;}
.x12{left:105.335987px;}
.xd{left:106.415987px;}
.xe{left:123.515987px;}
.x16{left:132.335987px;}
.x1{left:135.000000px;}
.x14{left:147.815987px;}
.x11{left:148.895987px;}
.x13{left:158.429987px;}
.x15{left:159.509987px;}
.x2b{left:187.230000px;}
.x1f{left:195.150000px;}
.x4{left:209.729987px;}
.x1d{left:235.650000px;}
.x20{left:239.430000px;}
.xf{left:248.069987px;}
.x2{left:285.735000px;}
.x2c{left:303.915000px;}
.x1e{left:318.135000px;}
.x18{left:353.955000px;}
.x3{left:360.645000px;}
.x10{left:414.074987px;}
.x22{left:415.695000px;}
.x2f{left:428.115000px;}
.x2d{left:435.345000px;}
.x2e{left:545.685000px;}
.xb{left:558.824987px;}
.x25{left:582.225000px;}
.x8{left:600.404987px;}
.x1a{left:604.545000px;}
.x7{left:622.409987px;}
.x6{left:635.369987px;}
.xc{left:657.869987px;}
.x9{left:666.329987px;}
.x5{left:671.009987px;}
.xa{left:673.349987px;}
.x30{left:784.409987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.120000pt;}
.ls8{letter-spacing:-0.448000pt;}
.lsd{letter-spacing:-0.320000pt;}
.ls10{letter-spacing:-0.192000pt;}
.ls5{letter-spacing:-0.169067pt;}
.lsa{letter-spacing:-0.128000pt;}
.lse{letter-spacing:-0.125867pt;}
.ls2{letter-spacing:-0.043520pt;}
.ls0{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.017920pt;}
.lsc{letter-spacing:0.057067pt;}
.lsf{letter-spacing:0.064000pt;}
.ls9{letter-spacing:0.128000pt;}
.lsb{letter-spacing:0.154880pt;}
.ls7{letter-spacing:0.192000pt;}
.ls6{letter-spacing:0.256000pt;}
.ls4{letter-spacing:0.320000pt;}
.ls11{letter-spacing:0.480000pt;}
.ls3{letter-spacing:13.743360pt;}
.ws11{word-spacing:-64.000000pt;}
.ws15{word-spacing:-16.304533pt;}
.ws4{word-spacing:-16.000000pt;}
.ws16{word-spacing:-14.784000pt;}
.ws18{word-spacing:-14.656000pt;}
.ws1e{word-spacing:-14.528000pt;}
.ws17{word-spacing:-14.464000pt;}
.ws1f{word-spacing:-14.272000pt;}
.ws1c{word-spacing:-14.144000pt;}
.ws19{word-spacing:-14.016000pt;}
.ws13{word-spacing:-13.324800pt;}
.ws14{word-spacing:-13.306880pt;}
.ws12{word-spacing:-12.953600pt;}
.ws1b{word-spacing:-12.062187pt;}
.ws1a{word-spacing:-12.005120pt;}
.ws1d{word-spacing:-9.565013pt;}
.wsf{word-spacing:-0.472000pt;}
.ws10{word-spacing:0.000000pt;}
.wsc{word-spacing:1.919467pt;}
.ws5{word-spacing:2.744000pt;}
.wsa{word-spacing:5.406933pt;}
.wsd{word-spacing:5.536533pt;}
.wsb{word-spacing:10.454400pt;}
.ws6{word-spacing:12.537067pt;}
.wse{word-spacing:13.686933pt;}
.ws8{word-spacing:16.214400pt;}
.ws9{word-spacing:16.215467pt;}
.ws7{word-spacing:16.592000pt;}
.ws0{word-spacing:22.006400pt;}
.ws1{word-spacing:28.222400pt;}
.ws3{word-spacing:505.616533pt;}
.ws2{word-spacing:541.136533pt;}
._7{margin-left:-8.088533pt;}
._1{margin-left:-4.414933pt;}
._a{margin-left:-3.019733pt;}
._8{margin-left:-0.994133pt;}
._c{width:1.186133pt;}
._d{width:2.572800pt;}
._6{width:19.698133pt;}
._b{width:22.467733pt;}
._9{width:27.612800pt;}
._10{width:52.618667pt;}
._f{width:68.544000pt;}
._e{width:159.850667pt;}
._11{width:174.496000pt;}
._5{width:271.568533pt;}
._3{width:275.152533pt;}
._4{width:306.960533pt;}
._2{width:316.623467pt;}
._0{width:376.336533pt;}
.fs7{font-size:42.880000pt;}
.fs8{font-size:48.000000pt;}
.fs6{font-size:53.120000pt;}
.fs4{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.fs3{font-size:72.533333pt;}
.fs5{font-size:74.880000pt;}
.fs0{font-size:84.000000pt;}
.fs2{font-size:255.999633pt;}
.y0{bottom:0.000000pt;}
.yfb{bottom:9.333333pt;}
.y72{bottom:23.834667pt;}
.y70{bottom:23.840000pt;}
.y89{bottom:23.866667pt;}
.y9d{bottom:23.880000pt;}
.y78{bottom:24.000000pt;}
.y8e{bottom:24.040000pt;}
.yda{bottom:27.200000pt;}
.y75{bottom:62.880000pt;}
.y7e{bottom:62.906667pt;}
.y7a{bottom:62.920000pt;}
.y92{bottom:63.034667pt;}
.y77{bottom:63.040000pt;}
.ya4{bottom:63.066667pt;}
.y8d{bottom:63.080000pt;}
.yd9{bottom:66.400000pt;}
.y90{bottom:101.920000pt;}
.yce{bottom:101.946667pt;}
.ycd{bottom:102.080000pt;}
.yd8{bottom:105.440000pt;}
.yd3{bottom:108.680000pt;}
.y57{bottom:109.760000pt;}
.y6d{bottom:114.400000pt;}
.yfa{bottom:116.800000pt;}
.ydc{bottom:118.880000pt;}
.y91{bottom:125.632000pt;}
.y71{bottom:128.352000pt;}
.yc6{bottom:129.312000pt;}
.ya2{bottom:132.512000pt;}
.yae{bottom:133.152000pt;}
.yd6{bottom:136.346667pt;}
.ye3{bottom:136.666667pt;}
.yd7{bottom:144.480000pt;}
.y87{bottom:147.546667pt;}
.yd2{bottom:147.720000pt;}
.y56{bottom:148.826667pt;}
.y6c{bottom:153.466667pt;}
.yf9{bottom:155.866667pt;}
.y6f{bottom:168.026667pt;}
.yc5{bottom:168.346667pt;}
.ya1{bottom:171.546667pt;}
.yad{bottom:175.546667pt;}
.ye2{bottom:175.866667pt;}
.y18{bottom:182.201600pt;}
.y86{bottom:186.586667pt;}
.yd1{bottom:186.760000pt;}
.y55{bottom:187.866667pt;}
.y6e{bottom:190.106667pt;}
.y6b{bottom:192.666667pt;}
.yf8{bottom:194.906667pt;}
.y8f{bottom:204.506667pt;}
.yc4{bottom:207.546667pt;}
.ya0{bottom:210.586667pt;}
.ye1{bottom:214.906667pt;}
.yac{bottom:217.946667pt;}
.y85{bottom:225.626667pt;}
.yd0{bottom:225.800000pt;}
.y54{bottom:226.906667pt;}
.y6a{bottom:231.706667pt;}
.y9f{bottom:233.786667pt;}
.yf7{bottom:233.946667pt;}
.y17{bottom:243.401600pt;}
.yc3{bottom:246.586667pt;}
.ye0{bottom:253.946667pt;}
.ydb{bottom:256.986667pt;}
.yab{bottom:260.186667pt;}
.y16{bottom:262.601600pt;}
.y84{bottom:264.666667pt;}
.yca{bottom:265.026667pt;}
.y53{bottom:265.946667pt;}
.y69{bottom:270.746667pt;}
.yf6{bottom:273.146667pt;}
.y15{bottom:281.801600pt;}
.yc2{bottom:285.626667pt;}
.y9e{bottom:287.546667pt;}
.ydf{bottom:292.986667pt;}
.ycf{bottom:299.386667pt;}
.y14{bottom:301.001600pt;}
.yaa{bottom:302.586667pt;}
.y83{bottom:303.866667pt;}
.yc9{bottom:304.066667pt;}
.y52{bottom:305.146667pt;}
.y68{bottom:309.786667pt;}
.yf5{bottom:312.186667pt;}
.y2f{bottom:314.106667pt;}
.y13{bottom:320.201600pt;}
.y8c{bottom:322.266667pt;}
.yc1{bottom:324.666667pt;}
.yde{bottom:332.026667pt;}
.y12{bottom:339.401600pt;}
.y9c{bottom:341.306667pt;}
.y82{bottom:342.906667pt;}
.y51{bottom:344.186667pt;}
.ya9{bottom:345.026667pt;}
.y67{bottom:348.866667pt;}
.y2e{bottom:350.946667pt;}
.yf4{bottom:351.266667pt;}
.y11{bottom:358.601600pt;}
.y19{bottom:359.466667pt;}
.yc0{bottom:363.746667pt;}
.ydd{bottom:366.946667pt;}
.yd5{bottom:380.866667pt;}
.y81{bottom:381.986667pt;}
.y50{bottom:383.266667pt;}
.ya8{bottom:387.426667pt;}
.y2d{bottom:387.746667pt;}
.y66{bottom:387.906667pt;}
.yf3{bottom:390.306667pt;}
.y9b{bottom:394.946667pt;}
.y8b{bottom:401.186667pt;}
.ybf{bottom:402.786667pt;}
.y40{bottom:404.226667pt;}
.y2c{bottom:406.146667pt;}
.y10{bottom:419.801600pt;}
.y80{bottom:421.026667pt;}
.y4f{bottom:422.306667pt;}
.y2b{bottom:424.546667pt;}
.y65{bottom:426.946667pt;}
.yf2{bottom:429.346667pt;}
.ya7{bottom:429.826667pt;}
.y7f{bottom:436.866667pt;}
.yf{bottom:439.001600pt;}
.y3f{bottom:440.066667pt;}
.ybe{bottom:441.826667pt;}
.y9a{bottom:448.706667pt;}
.ye{bottom:458.201600pt;}
.y2a{bottom:461.346667pt;}
.y64{bottom:466.146667pt;}
.yf1{bottom:468.386667pt;}
.ya6{bottom:472.226667pt;}
.y3e{bottom:475.906667pt;}
.yd{bottom:477.401600pt;}
.y8a{bottom:479.906667pt;}
.ybd{bottom:481.026667pt;}
.y29{bottom:498.146667pt;}
.y4e{bottom:500.386667pt;}
.yd4{bottom:501.346667pt;}
.y99{bottom:502.466667pt;}
.y63{bottom:505.186667pt;}
.yf0{bottom:507.426667pt;}
.y3d{bottom:511.586667pt;}
.ya5{bottom:514.626667pt;}
.y7d{bottom:515.746667pt;}
.ybc{bottom:520.066667pt;}
.yc{bottom:528.601600pt;}
.y28{bottom:534.946667pt;}
.y4d{bottom:539.426667pt;}
.yc8{bottom:543.746667pt;}
.y62{bottom:544.226667pt;}
.yef{bottom:546.626667pt;}
.y3c{bottom:547.426667pt;}
.y98{bottom:556.226667pt;}
.ya3{bottom:557.026667pt;}
.yb{bottom:557.801600pt;}
.y88{bottom:558.786667pt;}
.ybb{bottom:559.106667pt;}
.y27{bottom:571.773333pt;}
.y4c{bottom:578.653333pt;}
.y3b{bottom:583.293333pt;}
.yee{bottom:585.693333pt;}
.ya{bottom:587.001600pt;}
.y7c{bottom:594.493333pt;}
.yba{bottom:598.173333pt;}
.y26{bottom:608.573333pt;}
.y97{bottom:610.013333pt;}
.y4b{bottom:617.693333pt;}
.y3a{bottom:619.133333pt;}
.y61{bottom:622.333333pt;}
.yed{bottom:624.733333pt;}
.y9{bottom:633.201600pt;}
.yb9{bottom:637.213333pt;}
.y25{bottom:645.373333pt;}
.y39{bottom:654.973333pt;}
.y4a{bottom:656.733333pt;}
.y60{bottom:661.373333pt;}
.y96{bottom:663.613333pt;}
.yec{bottom:663.773333pt;}
.ycc{bottom:664.253333pt;}
.y7b{bottom:673.213333pt;}
.yb8{bottom:676.253333pt;}
.y8{bottom:679.401600pt;}
.y24{bottom:682.173333pt;}
.y38{bottom:690.653333pt;}
.y49{bottom:695.773333pt;}
.y5f{bottom:700.413333pt;}
.yeb{bottom:702.813333pt;}
.y7{bottom:708.601600pt;}
.yb7{bottom:715.293333pt;}
.y23{bottom:718.973333pt;}
.y37{bottom:726.493333pt;}
.y48{bottom:734.813333pt;}
.y6{bottom:737.801600pt;}
.y5e{bottom:739.613333pt;}
.yea{bottom:741.853333pt;}
.y79{bottom:752.093333pt;}
.yb6{bottom:754.493333pt;}
.y22{bottom:755.773333pt;}
.y95{bottom:756.413333pt;}
.y36{bottom:762.333333pt;}
.y47{bottom:773.853333pt;}
.y5d{bottom:778.653333pt;}
.y5{bottom:780.401600pt;}
.ye9{bottom:780.893333pt;}
.ycb{bottom:784.733333pt;}
.y21{bottom:792.573333pt;}
.yb5{bottom:793.573333pt;}
.y35{bottom:798.213333pt;}
.y46{bottom:812.933333pt;}
.y5c{bottom:817.733333pt;}
.ye8{bottom:820.133333pt;}
.y20{bottom:829.413333pt;}
.y76{bottom:830.853333pt;}
.yb4{bottom:832.613333pt;}
.y34{bottom:834.053333pt;}
.y4{bottom:842.401600pt;}
.y94{bottom:849.253333pt;}
.y45{bottom:852.133333pt;}
.y5a{bottom:854.213333pt;}
.y5b{bottom:856.773333pt;}
.ye7{bottom:859.173333pt;}
.y3{bottom:860.401600pt;}
.y1f{bottom:866.213333pt;}
.yc7{bottom:866.373333pt;}
.y33{bottom:869.733333pt;}
.yb3{bottom:871.653333pt;}
.y2{bottom:878.401600pt;}
.y44{bottom:891.173333pt;}
.y59{bottom:895.813333pt;}
.ye6{bottom:898.213333pt;}
.y1e{bottom:903.013333pt;}
.y32{bottom:903.973333pt;}
.yb2{bottom:906.693333pt;}
.y74{bottom:909.733333pt;}
.y43{bottom:930.213333pt;}
.y58{bottom:934.853333pt;}
.ye5{bottom:937.253333pt;}
.yb1{bottom:939.333333pt;}
.y1d{bottom:939.813333pt;}
.y93{bottom:942.053333pt;}
.y1{bottom:942.314533pt;}
.y42{bottom:969.253333pt;}
.yb0{bottom:971.813333pt;}
.y31{bottom:973.893333pt;}
.y1c{bottom:976.613333pt;}
.ye4{bottom:978.533333pt;}
.yaf{bottom:986.853333pt;}
.y73{bottom:988.453333pt;}
.y41{bottom:1010.533333pt;}
.y30{bottom:1013.093333pt;}
.y1b{bottom:1013.413333pt;}
.y1a{bottom:1062.720000pt;}
.h22{height:31.992188pt;}
.h10{height:39.040000pt;}
.h11{height:39.072000pt;}
.h17{height:39.200000pt;}
.h2{height:44.468750pt;}
.ha{height:49.852500pt;}
.h18{height:52.834688pt;}
.hf{height:55.968750pt;}
.h1{height:58.365234pt;}
.hb{height:58.563750pt;}
.hc{height:60.288750pt;}
.h8{height:62.812500pt;}
.h1f{height:63.399375pt;}
.he{height:63.656250pt;}
.h1e{height:63.769688pt;}
.h7{height:64.500000pt;}
.h9{height:65.531250pt;}
.h6{height:75.650000pt;}
.hd{height:77.951250pt;}
.h12{height:78.080000pt;}
.h14{height:78.112000pt;}
.h13{height:78.240000pt;}
.h15{height:78.272000pt;}
.h16{height:117.120000pt;}
.h1b{height:117.152000pt;}
.h1a{height:117.280000pt;}
.h1d{height:159.680000pt;}
.h1c{height:240.986667pt;}
.h5{height:266.999617pt;}
.h19{height:319.266667pt;}
.h20{height:613.200000pt;}
.h21{height:613.333333pt;}
.h0{height:1056.000000pt;}
.h4{height:1122.666667pt;}
.h3{height:1122.720000pt;}
.wb{width:38.720000pt;}
.wf{width:72.800000pt;}
.w8{width:73.312000pt;}
.wa{width:86.240000pt;}
.w12{width:98.080000pt;}
.w10{width:103.712000pt;}
.w11{width:116.832000pt;}
.w14{width:118.720000pt;}
.w7{width:122.080000pt;}
.w13{width:138.746667pt;}
.wd{width:148.026667pt;}
.wc{width:156.666667pt;}
.w15{width:168.186667pt;}
.w6{width:168.866667pt;}
.we{width:188.066667pt;}
.w5{width:222.746667pt;}
.w4{width:227.226667pt;}
.w16{width:319.453333pt;}
.w9{width:423.293333pt;}
.w17{width:481.320000pt;}
.w18{width:481.333333pt;}
.w3{width:793.279988pt;}
.w1{width:793.280000pt;}
.w2{width:793.333333pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x2a{left:0.960000pt;}
.x1c{left:7.200000pt;}
.x23{left:32.986667pt;}
.x26{left:36.840000pt;}
.x1b{left:40.680000pt;}
.x24{left:45.146667pt;}
.x21{left:54.600000pt;}
.x27{left:57.320000pt;}
.x19{left:61.760000pt;}
.x29{left:85.800000pt;}
.x17{left:87.392000pt;}
.x28{left:89.800000pt;}
.x12{left:93.631988pt;}
.xd{left:94.591988pt;}
.xe{left:109.791988pt;}
.x16{left:117.631988pt;}
.x1{left:120.000000pt;}
.x14{left:131.391988pt;}
.x11{left:132.351988pt;}
.x13{left:140.826655pt;}
.x15{left:141.786655pt;}
.x2b{left:166.426667pt;}
.x1f{left:173.466667pt;}
.x4{left:186.426655pt;}
.x1d{left:209.466667pt;}
.x20{left:212.826667pt;}
.xf{left:220.506655pt;}
.x2{left:253.986667pt;}
.x2c{left:270.146667pt;}
.x1e{left:282.786667pt;}
.x18{left:314.626667pt;}
.x3{left:320.573333pt;}
.x10{left:368.066655pt;}
.x22{left:369.506667pt;}
.x2f{left:380.546667pt;}
.x2d{left:386.973333pt;}
.x2e{left:485.053333pt;}
.xb{left:496.733322pt;}
.x25{left:517.533333pt;}
.x8{left:533.693322pt;}
.x1a{left:537.373333pt;}
.x7{left:553.253322pt;}
.x6{left:564.773322pt;}
.xc{left:584.773322pt;}
.x9{left:592.293322pt;}
.x5{left:596.453322pt;}
.xa{left:598.533322pt;}
.x30{left:697.253322pt;}
}




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