
    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_1d08963c21acf2d1582df184.woff')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_6d05f0bc058be06381129c4d.woff')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_41e4b1ab02fd72b31ca190e3.woff')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_d0b6d455b11031e3c48fb60b.woff')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_5139f3471713acc86bd0a418.woff')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_03b1246d9a99e7308ebc9758.woff')format("woff");}.ff6{font-family:ff6;line-height:1.284180;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_8ba33516f0e8ad4a19f8653b.woff')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_07f11f78c4056f9536521219.woff')format("woff");}.ff8{font-family:ff8;line-height:2.970215;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_b79487d784cb8c8dabd578be.woff')format("woff");}.ff9{font-family:ff9;line-height:2.970215;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_8883e778872dfea4b62b4190.woff')format("woff");}.ffa{font-family:ffa;line-height:1.284180;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_f69a71dbd8cb54291e571ebd.woff')format("woff");}.ffb{font-family:ffb;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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);}
.vd{vertical-align:-82.800000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:2.400000px;}
.v3{vertical-align:21.600000px;}
.v7{vertical-align:26.400000px;}
.v8{vertical-align:40.800000px;}
.v6{vertical-align:46.800000px;}
.v4{vertical-align:48.000000px;}
.v2{vertical-align:54.600000px;}
.v9{vertical-align:62.400000px;}
.v5{vertical-align:81.000000px;}
.va{vertical-align:84.000000px;}
.vc{vertical-align:87.600000px;}
.vb{vertical-align:110.400000px;}
.lsa{letter-spacing:-3.000000px;}
.lsc{letter-spacing:-2.994000px;}
.ls9{letter-spacing:-2.988000px;}
.lsb{letter-spacing:-2.700000px;}
.ls24{letter-spacing:-0.288000px;}
.ls23{letter-spacing:-0.216000px;}
.lse{letter-spacing:-0.168000px;}
.ls32{letter-spacing:-0.120000px;}
.ls31{letter-spacing:-0.060000px;}
.ls8{letter-spacing:-0.012000px;}
.ls6{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.012000px;}
.ls1{letter-spacing:0.024000px;}
.ls25{letter-spacing:0.048000px;}
.ls2f{letter-spacing:0.060000px;}
.ls29{letter-spacing:0.096000px;}
.ls0{letter-spacing:0.120000px;}
.ls7{letter-spacing:0.150000px;}
.lsd{letter-spacing:0.180000px;}
.lsf{letter-spacing:0.216000px;}
.ls2{letter-spacing:0.300000px;}
.ls30{letter-spacing:0.540000px;}
.ls4{letter-spacing:0.600000px;}
.ls1b{letter-spacing:1.800000px;}
.ls10{letter-spacing:2.400000px;}
.ls14{letter-spacing:2.436000px;}
.ls11{letter-spacing:2.496000px;}
.ls2a{letter-spacing:2.646000px;}
.ls2d{letter-spacing:2.931000px;}
.ls22{letter-spacing:4.059000px;}
.ls19{letter-spacing:4.428000px;}
.ls1e{letter-spacing:5.688000px;}
.ls17{letter-spacing:6.348000px;}
.ls21{letter-spacing:11.640000px;}
.ls28{letter-spacing:12.312000px;}
.ls1f{letter-spacing:14.136000px;}
.ls2e{letter-spacing:16.320000px;}
.ls26{letter-spacing:19.260000px;}
.ls12{letter-spacing:19.320000px;}
.ls15{letter-spacing:19.380000px;}
.ls18{letter-spacing:19.659000px;}
.ls1c{letter-spacing:19.920000px;}
.ls16{letter-spacing:19.956000px;}
.ls2b{letter-spacing:19.986000px;}
.ls1d{letter-spacing:20.016000px;}
.ls27{letter-spacing:20.076000px;}
.ls20{letter-spacing:20.259000px;}
.ls1a{letter-spacing:20.319000px;}
.ls5{letter-spacing:33.984000px;}
.ls34{letter-spacing:102.384000px;}
.ls13{letter-spacing:118.536000px;}
.ls2c{letter-spacing:118.548000px;}
.ls33{letter-spacing:138.384000px;}
.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;}
}
.wse{word-spacing:-18.216000px;}
.wsb{word-spacing:-18.024000px;}
.ws9{word-spacing:-18.000000px;}
.wsc{word-spacing:-17.832000px;}
.wsd{word-spacing:-17.784000px;}
.ws13{word-spacing:-15.888000px;}
.wsf{word-spacing:-15.840000px;}
.ws12{word-spacing:-15.552000px;}
.ws1{word-spacing:-15.120000px;}
.ws0{word-spacing:-15.000000px;}
.ws16{word-spacing:-14.940000px;}
.ws17{word-spacing:-14.880000px;}
.ws3{word-spacing:-13.524000px;}
.ws2{word-spacing:-13.512000px;}
.ws5{word-spacing:-13.500000px;}
.ws4{word-spacing:-13.488000px;}
.ws10{word-spacing:-11.220000px;}
.ws6{word-spacing:-10.512000px;}
.ws8{word-spacing:-10.506000px;}
.ws7{word-spacing:-10.500000px;}
.wsa{word-spacing:0.000000px;}
.ws14{word-spacing:127.800000px;}
.ws11{word-spacing:127.980000px;}
.ws15{word-spacing:128.400000px;}
._d{margin-left:-4.242000px;}
._2{margin-left:-3.240000px;}
._3{margin-left:-2.160000px;}
._1{margin-left:-1.140000px;}
._0{width:1.050000px;}
._7{width:2.538000px;}
._c{width:3.744000px;}
._8{width:5.472000px;}
._9{width:6.954000px;}
._e{width:8.136000px;}
._1a{width:9.378000px;}
._1d{width:10.404000px;}
._1c{width:11.880000px;}
._15{width:13.248000px;}
._12{width:14.328000px;}
._a{width:15.912000px;}
._b{width:16.992000px;}
._32{width:19.098000px;}
._5{width:20.196000px;}
._4{width:21.342000px;}
._6{width:23.094000px;}
._18{width:24.924000px;}
._1b{width:26.640000px;}
._13{width:27.864000px;}
._14{width:29.088000px;}
._26{width:30.168000px;}
._1e{width:31.176000px;}
._1f{width:32.328000px;}
._20{width:33.840000px;}
._31{width:35.712000px;}
._2f{width:37.248000px;}
._16{width:38.304000px;}
._17{width:39.456000px;}
._23{width:40.680000px;}
._2d{width:42.048000px;}
._2b{width:43.824000px;}
._2c{width:45.048000px;}
._21{width:46.776000px;}
._22{width:47.880000px;}
._27{width:49.392000px;}
._30{width:50.832000px;}
._f{width:52.920000px;}
._36{width:54.648000px;}
._10{width:56.904000px;}
._11{width:57.960000px;}
._3d{width:60.336000px;}
._35{width:63.864000px;}
._2e{width:66.528000px;}
._24{width:68.472000px;}
._25{width:69.552000px;}
._28{width:71.496000px;}
._3b{width:73.728000px;}
._3c{width:74.736000px;}
._39{width:84.888000px;}
._3a{width:86.256000px;}
._19{width:89.832000px;}
._34{width:108.942000px;}
._33{width:114.036000px;}
._29{width:138.888000px;}
._2a{width:140.070000px;}
._37{width:149.688000px;}
._38{width:158.256000px;}
.fc2{color:rgb(5,99,193);}
.fc1{color:rgb(32,33,36);}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:51.000000px;}
.fs3{font-size:54.000000px;}
.fs2{font-size:57.000000px;}
.fs1{font-size:60.000000px;}
.fs4{font-size:66.000000px;}
.fs5{font-size:72.000000px;}
.fs0{font-size:84.000000px;}
.y0{bottom:0.000000px;}
.yd{bottom:2.100000px;}
.y27{bottom:3.900000px;}
.y7{bottom:5.400000px;}
.yde{bottom:5.850000px;}
.ye1{bottom:5.865000px;}
.yb{bottom:6.000000px;}
.yc{bottom:6.750000px;}
.y6c{bottom:6.900000px;}
.y69{bottom:7.050000px;}
.y74{bottom:7.065000px;}
.y6f{bottom:7.080000px;}
.ydc{bottom:15.780000px;}
.ya{bottom:19.950000px;}
.y6{bottom:20.550000px;}
.y26{bottom:24.600000px;}
.ydd{bottom:25.830000px;}
.y6b{bottom:30.750000px;}
.y77{bottom:30.900000px;}
.y9{bottom:33.900000px;}
.y5{bottom:36.000000px;}
.y25{bottom:45.300000px;}
.y76{bottom:54.600000px;}
.y3{bottom:57.637500px;}
.y24{bottom:66.000000px;}
.y2{bottom:81.637500px;}
.y23{bottom:86.700000px;}
.y22{bottom:107.445000px;}
.y6a{bottom:118.237500px;}
.y99{bottom:120.187500px;}
.yf9{bottom:121.537500px;}
.yc2{bottom:122.137500px;}
.y3c{bottom:123.037500px;}
.y67{bottom:126.637500px;}
.y21{bottom:128.145000px;}
.yf3{bottom:132.187500px;}
.yf8{bottom:142.237500px;}
.y98{bottom:144.037500px;}
.yc1{bottom:145.837500px;}
.y3b{bottom:146.887500px;}
.y20{bottom:148.845000px;}
.yea{bottom:149.887500px;}
.y66{bottom:150.495000px;}
.yf2{bottom:155.895000px;}
.yf7{bottom:162.945000px;}
.y68{bottom:166.545000px;}
.ye9{bottom:167.430000px;}
.y97{bottom:167.895000px;}
.y1f{bottom:169.545000px;}
.yc0{bottom:169.695000px;}
.y3a{bottom:170.745000px;}
.y65{bottom:174.345000px;}
.yf1{bottom:179.745000px;}
.yf6{bottom:183.645000px;}
.ye8{bottom:187.995000px;}
.y1e{bottom:190.245000px;}
.y96{bottom:191.880000px;}
.ybf{bottom:193.395000px;}
.y39{bottom:194.445000px;}
.y64{bottom:198.195000px;}
.yf0{bottom:203.595000px;}
.yf5{bottom:204.345000px;}
.ybe{bottom:205.380000px;}
.ye7{bottom:208.545000px;}
.y1d{bottom:210.945000px;}
.y95{bottom:215.880000px;}
.y38{bottom:218.295000px;}
.y63{bottom:221.895000px;}
.yf4{bottom:225.045000px;}
.yef{bottom:227.295000px;}
.ye6{bottom:229.095000px;}
.y1c{bottom:231.645000px;}
.ybd{bottom:237.345000px;}
.y94{bottom:239.745000px;}
.y37{bottom:242.145000px;}
.y62{bottom:245.745000px;}
.ye5{bottom:249.795000px;}
.yee{bottom:251.145000px;}
.y1b{bottom:252.345000px;}
.ybc{bottom:261.045000px;}
.y93{bottom:263.580000px;}
.y36{bottom:265.845000px;}
.y61{bottom:269.595000px;}
.ye4{bottom:270.345000px;}
.yed{bottom:274.995000px;}
.ybb{bottom:284.895000px;}
.y92{bottom:287.295000px;}
.y35{bottom:289.695000px;}
.ye3{bottom:290.880000px;}
.y60{bottom:293.295000px;}
.yec{bottom:298.695000px;}
.yba{bottom:308.745000px;}
.y91{bottom:311.145000px;}
.ye2{bottom:311.445000px;}
.y34{bottom:313.545000px;}
.y5f{bottom:317.130000px;}
.yeb{bottom:318.645000px;}
.ye0{bottom:332.130000px;}
.yb9{bottom:332.595000px;}
.y90{bottom:334.995000px;}
.y33{bottom:337.245000px;}
.y5e{bottom:340.995000px;}
.ydf{bottom:352.695000px;}
.yb8{bottom:356.445000px;}
.y8f{bottom:358.695000px;}
.y32{bottom:361.080000px;}
.y5d{bottom:364.695000px;}
.ydb{bottom:373.245000px;}
.yb7{bottom:380.625000px;}
.y8e{bottom:382.575000px;}
.y11c{bottom:382.875000px;}
.y31{bottom:384.975000px;}
.y5c{bottom:388.575000px;}
.yb6{bottom:404.475000px;}
.y8d{bottom:406.425000px;}
.y30{bottom:408.675000px;}
.y5b{bottom:412.425000px;}
.yda{bottom:420.675000px;}
.y11b{bottom:425.775000px;}
.yb5{bottom:428.175000px;}
.y8c{bottom:430.125000px;}
.y2f{bottom:432.525000px;}
.y5a{bottom:436.125000px;}
.yd9{bottom:444.525000px;}
.y11a{bottom:446.475000px;}
.yb4{bottom:452.025000px;}
.y8b{bottom:453.975000px;}
.y2e{bottom:456.375000px;}
.y59{bottom:459.975000px;}
.y119{bottom:467.175000px;}
.yd8{bottom:468.375000px;}
.yb3{bottom:475.875000px;}
.y8a{bottom:477.825000px;}
.y2d{bottom:480.075000px;}
.y58{bottom:483.825000px;}
.y118{bottom:487.875000px;}
.yd7{bottom:492.075000px;}
.yb2{bottom:498.975000px;}
.y89{bottom:501.525000px;}
.y2c{bottom:503.925000px;}
.y57{bottom:507.525000px;}
.y117{bottom:508.575000px;}
.yb1{bottom:509.175000px;}
.yd6{bottom:515.925000px;}
.y88{bottom:525.375000px;}
.y2b{bottom:527.775000px;}
.y116{bottom:529.275000px;}
.y56{bottom:531.375000px;}
.yd5{bottom:539.775000px;}
.yb0{bottom:542.475000px;}
.y87{bottom:549.225000px;}
.y115{bottom:549.975000px;}
.y55{bottom:555.225000px;}
.y2a{bottom:560.475000px;}
.yd4{bottom:563.475000px;}
.yaf{bottom:566.175000px;}
.y114{bottom:570.675000px;}
.y86{bottom:573.075000px;}
.y29{bottom:577.275000px;}
.y54{bottom:579.075000px;}
.yd3{bottom:587.325000px;}
.yae{bottom:590.025000px;}
.y113{bottom:591.375000px;}
.y85{bottom:596.775000px;}
.y53{bottom:602.775000px;}
.yd2{bottom:611.175000px;}
.y112{bottom:612.075000px;}
.yad{bottom:613.875000px;}
.y28{bottom:618.675000px;}
.y84{bottom:620.625000px;}
.y52{bottom:626.625000px;}
.y111{bottom:632.775000px;}
.yd1{bottom:634.875000px;}
.yac{bottom:637.575000px;}
.y1a{bottom:639.375000px;}
.y83{bottom:644.475000px;}
.y51{bottom:650.475000px;}
.y110{bottom:653.475000px;}
.yd0{bottom:658.725000px;}
.yab{bottom:660.825000px;}
.y82{bottom:668.175000px;}
.yaa{bottom:671.025000px;}
.y50{bottom:674.175000px;}
.ycf{bottom:681.975000px;}
.y81{bottom:692.025000px;}
.y10f{bottom:694.875000px;}
.y4f{bottom:698.025000px;}
.yce{bottom:703.575000px;}
.ycd{bottom:703.875000px;}
.ya9{bottom:704.175000px;}
.y10e{bottom:715.575000px;}
.y80{bottom:715.875000px;}
.y4e{bottom:721.875000px;}
.ya8{bottom:728.025000px;}
.y10d{bottom:736.275000px;}
.y7f{bottom:739.620000px;}
.y4d{bottom:745.620000px;}
.ycc{bottom:748.920000px;}
.ya7{bottom:751.920000px;}
.y10c{bottom:757.020000px;}
.y7e{bottom:763.470000px;}
.y4c{bottom:769.470000px;}
.ycb{bottom:772.770000px;}
.ya6{bottom:775.620000px;}
.y10b{bottom:777.720000px;}
.y7d{bottom:787.320000px;}
.y4b{bottom:793.320000px;}
.yca{bottom:796.620000px;}
.y10a{bottom:798.420000px;}
.ya5{bottom:799.455000px;}
.y7c{bottom:811.020000px;}
.y4a{bottom:817.020000px;}
.y109{bottom:819.120000px;}
.yc9{bottom:820.470000px;}
.ya4{bottom:823.320000px;}
.y7b{bottom:834.870000px;}
.y108{bottom:839.820000px;}
.y49{bottom:840.870000px;}
.ya3{bottom:843.720000px;}
.yc8{bottom:844.170000px;}
.ya2{bottom:855.720000px;}
.y7a{bottom:858.720000px;}
.y107{bottom:860.520000px;}
.y48{bottom:864.720000px;}
.yc7{bottom:868.020000px;}
.y106{bottom:881.220000px;}
.y79{bottom:882.420000px;}
.y47{bottom:888.420000px;}
.ya1{bottom:892.020000px;}
.y105{bottom:901.920000px;}
.yc6{bottom:904.020000px;}
.y78{bottom:906.270000px;}
.y19{bottom:912.120000px;}
.y46{bottom:912.270000px;}
.ya0{bottom:915.720000px;}
.y104{bottom:922.620000px;}
.y75{bottom:923.820000px;}
.y18{bottom:931.320000px;}
.y45{bottom:936.120000px;}
.y9f{bottom:939.570000px;}
.y103{bottom:943.320000px;}
.y17{bottom:952.020000px;}
.y44{bottom:959.970000px;}
.y9e{bottom:963.420000px;}
.y102{bottom:964.020000px;}
.y16{bottom:972.720000px;}
.y43{bottom:983.670000px;}
.y101{bottom:984.720000px;}
.y9d{bottom:987.270000px;}
.y15{bottom:993.420000px;}
.y73{bottom:995.955000px;}
.y100{bottom:1005.420000px;}
.y42{bottom:1007.520000px;}
.y9c{bottom:1010.970000px;}
.y14{bottom:1014.120000px;}
.y72{bottom:1020.570000px;}
.yff{bottom:1026.120000px;}
.y41{bottom:1031.370000px;}
.y9b{bottom:1031.520000px;}
.y13{bottom:1034.820000px;}
.y9a{bottom:1043.520000px;}
.y71{bottom:1045.170000px;}
.yfe{bottom:1046.820000px;}
.y40{bottom:1055.070000px;}
.y12{bottom:1055.520000px;}
.yc5{bottom:1058.670000px;}
.yfd{bottom:1067.520000px;}
.y70{bottom:1069.620000px;}
.y11{bottom:1076.220000px;}
.y3f{bottom:1078.920000px;}
.yc4{bottom:1079.220000px;}
.yfc{bottom:1088.220000px;}
.yc3{bottom:1091.220000px;}
.y6e{bottom:1094.220000px;}
.y10{bottom:1096.950000px;}
.y3e{bottom:1102.800000px;}
.yfb{bottom:1108.950000px;}
.yf{bottom:1117.650000px;}
.y6d{bottom:1118.850000px;}
.y3d{bottom:1126.500000px;}
.yfa{bottom:1129.650000px;}
.ye{bottom:1150.350000px;}
.y1{bottom:1176.900000px;}
.y4{bottom:1202.550000px;}
.y8{bottom:1207.800000px;}
.h8{height:17.887500px;}
.h25{height:19.800000px;}
.h26{height:19.950000px;}
.he{height:20.700000px;}
.h17{height:23.700000px;}
.h13{height:23.850000px;}
.h16{height:23.887500px;}
.h23{height:39.787500px;}
.hf{height:41.400000px;}
.h6{height:45.300000px;}
.h14{height:47.550000px;}
.h3{height:48.600000px;}
.h15{height:50.800781px;}
.h11{height:52.066406px;}
.h7{height:52.998047px;}
.h5{height:55.942383px;}
.h4{height:58.886719px;}
.h24{height:60.468750px;}
.hc{height:64.775391px;}
.h9{height:65.645508px;}
.h12{height:70.628906px;}
.hb{height:70.664062px;}
.h18{height:71.400000px;}
.ha{height:72.562500px;}
.h27{height:74.004654px;}
.h10{height:74.953125px;}
.h2{height:82.441406px;}
.h19{height:127.511719px;}
.h22{height:158.264062px;}
.h1c{height:168.311719px;}
.h1b{height:173.711719px;}
.h1a{height:182.111719px;}
.h1d{height:182.171719px;}
.h1e{height:182.231719px;}
.h20{height:189.911719px;}
.h21{height:210.911719px;}
.h1f{height:230.111719px;}
.hd{height:269.130000px;}
.h0{height:1262.850000px;}
.h1{height:1263.000000px;}
.wd{width:85.650000px;}
.we{width:97.687500px;}
.wb{width:100.387500px;}
.wc{width:105.750000px;}
.w6{width:178.350000px;}
.w5{width:262.995000px;}
.w3{width:282.495000px;}
.w4{width:297.780000px;}
.w9{width:393.345000px;}
.wa{width:393.375000px;}
.w7{width:745.770000px;}
.w8{width:750.270000px;}
.w2{width:892.949987px;}
.w0{width:892.950000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x4{left:6.900000px;}
.x20{left:8.100000px;}
.x9{left:12.435000px;}
.x7{left:16.200000px;}
.xe{left:17.295000px;}
.x1c{left:20.887500px;}
.x5{left:22.200000px;}
.xb{left:32.100000px;}
.x3{left:42.599987px;}
.x2e{left:57.899987px;}
.x1d{left:69.599987px;}
.x10{left:90.599987px;}
.x1e{left:95.699987px;}
.x2c{left:99.149987px;}
.x1b{left:100.200000px;}
.x31{left:102.599987px;}
.x1a{left:104.700000px;}
.xd{left:106.980000px;}
.x6{left:121.687500px;}
.xa{left:128.130000px;}
.x34{left:144.487500px;}
.x33{left:168.644987px;}
.x21{left:171.329987px;}
.x32{left:201.194987px;}
.x35{left:250.995000px;}
.x2f{left:298.994987px;}
.x1{left:303.494987px;}
.x8{left:305.145000px;}
.x2d{left:320.129987px;}
.x36{left:337.545000px;}
.x30{left:384.074987px;}
.x14{left:421.724987px;}
.x13{left:458.174987px;}
.x26{left:461.474987px;}
.x18{left:462.674987px;}
.x12{left:500.624987px;}
.x1f{left:510.374987px;}
.x27{left:527.624987px;}
.x28{left:546.374987px;}
.x24{left:548.624987px;}
.x29{left:581.624987px;}
.x2a{left:591.974987px;}
.x22{left:594.824987px;}
.xc{left:625.425000px;}
.x19{left:632.624987px;}
.x23{left:653.819987px;}
.x2b{left:655.004987px;}
.x25{left:691.169987px;}
.x15{left:704.504987px;}
.x11{left:710.654987px;}
.xf{left:713.655000px;}
.x17{left:716.669987px;}
.x2{left:829.619987px;}
.x16{left:850.619987px;}
.x37{left:860.069987px;}
@media print{
.vd{vertical-align:-73.600000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:2.133333pt;}
.v3{vertical-align:19.200000pt;}
.v7{vertical-align:23.466667pt;}
.v8{vertical-align:36.266667pt;}
.v6{vertical-align:41.600000pt;}
.v4{vertical-align:42.666667pt;}
.v2{vertical-align:48.533333pt;}
.v9{vertical-align:55.466667pt;}
.v5{vertical-align:72.000000pt;}
.va{vertical-align:74.666667pt;}
.vc{vertical-align:77.866667pt;}
.vb{vertical-align:98.133333pt;}
.lsa{letter-spacing:-2.666667pt;}
.lsc{letter-spacing:-2.661333pt;}
.ls9{letter-spacing:-2.656000pt;}
.lsb{letter-spacing:-2.400000pt;}
.ls24{letter-spacing:-0.256000pt;}
.ls23{letter-spacing:-0.192000pt;}
.lse{letter-spacing:-0.149333pt;}
.ls32{letter-spacing:-0.106667pt;}
.ls31{letter-spacing:-0.053333pt;}
.ls8{letter-spacing:-0.010667pt;}
.ls6{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.010667pt;}
.ls1{letter-spacing:0.021333pt;}
.ls25{letter-spacing:0.042667pt;}
.ls2f{letter-spacing:0.053333pt;}
.ls29{letter-spacing:0.085333pt;}
.ls0{letter-spacing:0.106667pt;}
.ls7{letter-spacing:0.133333pt;}
.lsd{letter-spacing:0.160000pt;}
.lsf{letter-spacing:0.192000pt;}
.ls2{letter-spacing:0.266667pt;}
.ls30{letter-spacing:0.480000pt;}
.ls4{letter-spacing:0.533333pt;}
.ls1b{letter-spacing:1.600000pt;}
.ls10{letter-spacing:2.133333pt;}
.ls14{letter-spacing:2.165333pt;}
.ls11{letter-spacing:2.218667pt;}
.ls2a{letter-spacing:2.352000pt;}
.ls2d{letter-spacing:2.605333pt;}
.ls22{letter-spacing:3.608000pt;}
.ls19{letter-spacing:3.936000pt;}
.ls1e{letter-spacing:5.056000pt;}
.ls17{letter-spacing:5.642667pt;}
.ls21{letter-spacing:10.346667pt;}
.ls28{letter-spacing:10.944000pt;}
.ls1f{letter-spacing:12.565333pt;}
.ls2e{letter-spacing:14.506667pt;}
.ls26{letter-spacing:17.120000pt;}
.ls12{letter-spacing:17.173333pt;}
.ls15{letter-spacing:17.226667pt;}
.ls18{letter-spacing:17.474667pt;}
.ls1c{letter-spacing:17.706667pt;}
.ls16{letter-spacing:17.738667pt;}
.ls2b{letter-spacing:17.765333pt;}
.ls1d{letter-spacing:17.792000pt;}
.ls27{letter-spacing:17.845333pt;}
.ls20{letter-spacing:18.008000pt;}
.ls1a{letter-spacing:18.061333pt;}
.ls5{letter-spacing:30.208000pt;}
.ls34{letter-spacing:91.008000pt;}
.ls13{letter-spacing:105.365333pt;}
.ls2c{letter-spacing:105.376000pt;}
.ls33{letter-spacing:123.008000pt;}
.wse{word-spacing:-16.192000pt;}
.wsb{word-spacing:-16.021333pt;}
.ws9{word-spacing:-16.000000pt;}
.wsc{word-spacing:-15.850667pt;}
.wsd{word-spacing:-15.808000pt;}
.ws13{word-spacing:-14.122667pt;}
.wsf{word-spacing:-14.080000pt;}
.ws12{word-spacing:-13.824000pt;}
.ws1{word-spacing:-13.440000pt;}
.ws0{word-spacing:-13.333333pt;}
.ws16{word-spacing:-13.280000pt;}
.ws17{word-spacing:-13.226667pt;}
.ws3{word-spacing:-12.021333pt;}
.ws2{word-spacing:-12.010667pt;}
.ws5{word-spacing:-12.000000pt;}
.ws4{word-spacing:-11.989333pt;}
.ws10{word-spacing:-9.973333pt;}
.ws6{word-spacing:-9.344000pt;}
.ws8{word-spacing:-9.338667pt;}
.ws7{word-spacing:-9.333333pt;}
.wsa{word-spacing:0.000000pt;}
.ws14{word-spacing:113.600000pt;}
.ws11{word-spacing:113.760000pt;}
.ws15{word-spacing:114.133333pt;}
._d{margin-left:-3.770667pt;}
._2{margin-left:-2.880000pt;}
._3{margin-left:-1.920000pt;}
._1{margin-left:-1.013333pt;}
._0{width:0.933333pt;}
._7{width:2.256000pt;}
._c{width:3.328000pt;}
._8{width:4.864000pt;}
._9{width:6.181333pt;}
._e{width:7.232000pt;}
._1a{width:8.336000pt;}
._1d{width:9.248000pt;}
._1c{width:10.560000pt;}
._15{width:11.776000pt;}
._12{width:12.736000pt;}
._a{width:14.144000pt;}
._b{width:15.104000pt;}
._32{width:16.976000pt;}
._5{width:17.952000pt;}
._4{width:18.970667pt;}
._6{width:20.528000pt;}
._18{width:22.154667pt;}
._1b{width:23.680000pt;}
._13{width:24.768000pt;}
._14{width:25.856000pt;}
._26{width:26.816000pt;}
._1e{width:27.712000pt;}
._1f{width:28.736000pt;}
._20{width:30.080000pt;}
._31{width:31.744000pt;}
._2f{width:33.109333pt;}
._16{width:34.048000pt;}
._17{width:35.072000pt;}
._23{width:36.160000pt;}
._2d{width:37.376000pt;}
._2b{width:38.954667pt;}
._2c{width:40.042667pt;}
._21{width:41.578667pt;}
._22{width:42.560000pt;}
._27{width:43.904000pt;}
._30{width:45.184000pt;}
._f{width:47.040000pt;}
._36{width:48.576000pt;}
._10{width:50.581333pt;}
._11{width:51.520000pt;}
._3d{width:53.632000pt;}
._35{width:56.768000pt;}
._2e{width:59.136000pt;}
._24{width:60.864000pt;}
._25{width:61.824000pt;}
._28{width:63.552000pt;}
._3b{width:65.536000pt;}
._3c{width:66.432000pt;}
._39{width:75.456000pt;}
._3a{width:76.672000pt;}
._19{width:79.850667pt;}
._34{width:96.837333pt;}
._33{width:101.365333pt;}
._29{width:123.456000pt;}
._2a{width:124.506667pt;}
._37{width:133.056000pt;}
._38{width:140.672000pt;}
.fs6{font-size:45.333333pt;}
.fs3{font-size:48.000000pt;}
.fs2{font-size:50.666667pt;}
.fs1{font-size:53.333333pt;}
.fs4{font-size:58.666667pt;}
.fs5{font-size:64.000000pt;}
.fs0{font-size:74.666667pt;}
.y0{bottom:0.000000pt;}
.yd{bottom:1.866667pt;}
.y27{bottom:3.466667pt;}
.y7{bottom:4.800000pt;}
.yde{bottom:5.200000pt;}
.ye1{bottom:5.213333pt;}
.yb{bottom:5.333333pt;}
.yc{bottom:6.000000pt;}
.y6c{bottom:6.133333pt;}
.y69{bottom:6.266667pt;}
.y74{bottom:6.280000pt;}
.y6f{bottom:6.293333pt;}
.ydc{bottom:14.026667pt;}
.ya{bottom:17.733333pt;}
.y6{bottom:18.266667pt;}
.y26{bottom:21.866667pt;}
.ydd{bottom:22.960000pt;}
.y6b{bottom:27.333333pt;}
.y77{bottom:27.466667pt;}
.y9{bottom:30.133333pt;}
.y5{bottom:32.000000pt;}
.y25{bottom:40.266667pt;}
.y76{bottom:48.533333pt;}
.y3{bottom:51.233333pt;}
.y24{bottom:58.666667pt;}
.y2{bottom:72.566667pt;}
.y23{bottom:77.066667pt;}
.y22{bottom:95.506667pt;}
.y6a{bottom:105.100000pt;}
.y99{bottom:106.833333pt;}
.yf9{bottom:108.033333pt;}
.yc2{bottom:108.566667pt;}
.y3c{bottom:109.366667pt;}
.y67{bottom:112.566667pt;}
.y21{bottom:113.906667pt;}
.yf3{bottom:117.500000pt;}
.yf8{bottom:126.433333pt;}
.y98{bottom:128.033333pt;}
.yc1{bottom:129.633333pt;}
.y3b{bottom:130.566667pt;}
.y20{bottom:132.306667pt;}
.yea{bottom:133.233333pt;}
.y66{bottom:133.773333pt;}
.yf2{bottom:138.573333pt;}
.yf7{bottom:144.840000pt;}
.y68{bottom:148.040000pt;}
.ye9{bottom:148.826667pt;}
.y97{bottom:149.240000pt;}
.y1f{bottom:150.706667pt;}
.yc0{bottom:150.840000pt;}
.y3a{bottom:151.773333pt;}
.y65{bottom:154.973333pt;}
.yf1{bottom:159.773333pt;}
.yf6{bottom:163.240000pt;}
.ye8{bottom:167.106667pt;}
.y1e{bottom:169.106667pt;}
.y96{bottom:170.560000pt;}
.ybf{bottom:171.906667pt;}
.y39{bottom:172.840000pt;}
.y64{bottom:176.173333pt;}
.yf0{bottom:180.973333pt;}
.yf5{bottom:181.640000pt;}
.ybe{bottom:182.560000pt;}
.ye7{bottom:185.373333pt;}
.y1d{bottom:187.506667pt;}
.y95{bottom:191.893333pt;}
.y38{bottom:194.040000pt;}
.y63{bottom:197.240000pt;}
.yf4{bottom:200.040000pt;}
.yef{bottom:202.040000pt;}
.ye6{bottom:203.640000pt;}
.y1c{bottom:205.906667pt;}
.ybd{bottom:210.973333pt;}
.y94{bottom:213.106667pt;}
.y37{bottom:215.240000pt;}
.y62{bottom:218.440000pt;}
.ye5{bottom:222.040000pt;}
.yee{bottom:223.240000pt;}
.y1b{bottom:224.306667pt;}
.ybc{bottom:232.040000pt;}
.y93{bottom:234.293333pt;}
.y36{bottom:236.306667pt;}
.y61{bottom:239.640000pt;}
.ye4{bottom:240.306667pt;}
.yed{bottom:244.440000pt;}
.ybb{bottom:253.240000pt;}
.y92{bottom:255.373333pt;}
.y35{bottom:257.506667pt;}
.ye3{bottom:258.560000pt;}
.y60{bottom:260.706667pt;}
.yec{bottom:265.506667pt;}
.yba{bottom:274.440000pt;}
.y91{bottom:276.573333pt;}
.ye2{bottom:276.840000pt;}
.y34{bottom:278.706667pt;}
.y5f{bottom:281.893333pt;}
.yeb{bottom:283.240000pt;}
.ye0{bottom:295.226667pt;}
.yb9{bottom:295.640000pt;}
.y90{bottom:297.773333pt;}
.y33{bottom:299.773333pt;}
.y5e{bottom:303.106667pt;}
.ydf{bottom:313.506667pt;}
.yb8{bottom:316.840000pt;}
.y8f{bottom:318.840000pt;}
.y32{bottom:320.960000pt;}
.y5d{bottom:324.173333pt;}
.ydb{bottom:331.773333pt;}
.yb7{bottom:338.333333pt;}
.y8e{bottom:340.066667pt;}
.y11c{bottom:340.333333pt;}
.y31{bottom:342.200000pt;}
.y5c{bottom:345.400000pt;}
.yb6{bottom:359.533333pt;}
.y8d{bottom:361.266667pt;}
.y30{bottom:363.266667pt;}
.y5b{bottom:366.600000pt;}
.yda{bottom:373.933333pt;}
.y11b{bottom:378.466667pt;}
.yb5{bottom:380.600000pt;}
.y8c{bottom:382.333333pt;}
.y2f{bottom:384.466667pt;}
.y5a{bottom:387.666667pt;}
.yd9{bottom:395.133333pt;}
.y11a{bottom:396.866667pt;}
.yb4{bottom:401.800000pt;}
.y8b{bottom:403.533333pt;}
.y2e{bottom:405.666667pt;}
.y59{bottom:408.866667pt;}
.y119{bottom:415.266667pt;}
.yd8{bottom:416.333333pt;}
.yb3{bottom:423.000000pt;}
.y8a{bottom:424.733333pt;}
.y2d{bottom:426.733333pt;}
.y58{bottom:430.066667pt;}
.y118{bottom:433.666667pt;}
.yd7{bottom:437.400000pt;}
.yb2{bottom:443.533333pt;}
.y89{bottom:445.800000pt;}
.y2c{bottom:447.933333pt;}
.y57{bottom:451.133333pt;}
.y117{bottom:452.066667pt;}
.yb1{bottom:452.600000pt;}
.yd6{bottom:458.600000pt;}
.y88{bottom:467.000000pt;}
.y2b{bottom:469.133333pt;}
.y116{bottom:470.466667pt;}
.y56{bottom:472.333333pt;}
.yd5{bottom:479.800000pt;}
.yb0{bottom:482.200000pt;}
.y87{bottom:488.200000pt;}
.y115{bottom:488.866667pt;}
.y55{bottom:493.533333pt;}
.y2a{bottom:498.200000pt;}
.yd4{bottom:500.866667pt;}
.yaf{bottom:503.266667pt;}
.y114{bottom:507.266667pt;}
.y86{bottom:509.400000pt;}
.y29{bottom:513.133333pt;}
.y54{bottom:514.733333pt;}
.yd3{bottom:522.066667pt;}
.yae{bottom:524.466667pt;}
.y113{bottom:525.666667pt;}
.y85{bottom:530.466667pt;}
.y53{bottom:535.800000pt;}
.yd2{bottom:543.266667pt;}
.y112{bottom:544.066667pt;}
.yad{bottom:545.666667pt;}
.y28{bottom:549.933333pt;}
.y84{bottom:551.666667pt;}
.y52{bottom:557.000000pt;}
.y111{bottom:562.466667pt;}
.yd1{bottom:564.333333pt;}
.yac{bottom:566.733333pt;}
.y1a{bottom:568.333333pt;}
.y83{bottom:572.866667pt;}
.y51{bottom:578.200000pt;}
.y110{bottom:580.866667pt;}
.yd0{bottom:585.533333pt;}
.yab{bottom:587.400000pt;}
.y82{bottom:593.933333pt;}
.yaa{bottom:596.466667pt;}
.y50{bottom:599.266667pt;}
.ycf{bottom:606.200000pt;}
.y81{bottom:615.133333pt;}
.y10f{bottom:617.666667pt;}
.y4f{bottom:620.466667pt;}
.yce{bottom:625.400000pt;}
.ycd{bottom:625.666667pt;}
.ya9{bottom:625.933333pt;}
.y10e{bottom:636.066667pt;}
.y80{bottom:636.333333pt;}
.y4e{bottom:641.666667pt;}
.ya8{bottom:647.133333pt;}
.y10d{bottom:654.466667pt;}
.y7f{bottom:657.440000pt;}
.y4d{bottom:662.773333pt;}
.ycc{bottom:665.706667pt;}
.ya7{bottom:668.373333pt;}
.y10c{bottom:672.906667pt;}
.y7e{bottom:678.640000pt;}
.y4c{bottom:683.973333pt;}
.ycb{bottom:686.906667pt;}
.ya6{bottom:689.440000pt;}
.y10b{bottom:691.306667pt;}
.y7d{bottom:699.840000pt;}
.y4b{bottom:705.173333pt;}
.yca{bottom:708.106667pt;}
.y10a{bottom:709.706667pt;}
.ya5{bottom:710.626667pt;}
.y7c{bottom:720.906667pt;}
.y4a{bottom:726.240000pt;}
.y109{bottom:728.106667pt;}
.yc9{bottom:729.306667pt;}
.ya4{bottom:731.840000pt;}
.y7b{bottom:742.106667pt;}
.y108{bottom:746.506667pt;}
.y49{bottom:747.440000pt;}
.ya3{bottom:749.973333pt;}
.yc8{bottom:750.373333pt;}
.ya2{bottom:760.640000pt;}
.y7a{bottom:763.306667pt;}
.y107{bottom:764.906667pt;}
.y48{bottom:768.640000pt;}
.yc7{bottom:771.573333pt;}
.y106{bottom:783.306667pt;}
.y79{bottom:784.373333pt;}
.y47{bottom:789.706667pt;}
.ya1{bottom:792.906667pt;}
.y105{bottom:801.706667pt;}
.yc6{bottom:803.573333pt;}
.y78{bottom:805.573333pt;}
.y19{bottom:810.773333pt;}
.y46{bottom:810.906667pt;}
.ya0{bottom:813.973333pt;}
.y104{bottom:820.106667pt;}
.y75{bottom:821.173333pt;}
.y18{bottom:827.840000pt;}
.y45{bottom:832.106667pt;}
.y9f{bottom:835.173333pt;}
.y103{bottom:838.506667pt;}
.y17{bottom:846.240000pt;}
.y44{bottom:853.306667pt;}
.y9e{bottom:856.373333pt;}
.y102{bottom:856.906667pt;}
.y16{bottom:864.640000pt;}
.y43{bottom:874.373333pt;}
.y101{bottom:875.306667pt;}
.y9d{bottom:877.573333pt;}
.y15{bottom:883.040000pt;}
.y73{bottom:885.293333pt;}
.y100{bottom:893.706667pt;}
.y42{bottom:895.573333pt;}
.y9c{bottom:898.640000pt;}
.y14{bottom:901.440000pt;}
.y72{bottom:907.173333pt;}
.yff{bottom:912.106667pt;}
.y41{bottom:916.773333pt;}
.y9b{bottom:916.906667pt;}
.y13{bottom:919.840000pt;}
.y9a{bottom:927.573333pt;}
.y71{bottom:929.040000pt;}
.yfe{bottom:930.506667pt;}
.y40{bottom:937.840000pt;}
.y12{bottom:938.240000pt;}
.yc5{bottom:941.040000pt;}
.yfd{bottom:948.906667pt;}
.y70{bottom:950.773333pt;}
.y11{bottom:956.640000pt;}
.y3f{bottom:959.040000pt;}
.yc4{bottom:959.306667pt;}
.yfc{bottom:967.306667pt;}
.yc3{bottom:969.973333pt;}
.y6e{bottom:972.640000pt;}
.y10{bottom:975.066667pt;}
.y3e{bottom:980.266667pt;}
.yfb{bottom:985.733333pt;}
.yf{bottom:993.466667pt;}
.y6d{bottom:994.533333pt;}
.y3d{bottom:1001.333333pt;}
.yfa{bottom:1004.133333pt;}
.ye{bottom:1022.533333pt;}
.y1{bottom:1046.133333pt;}
.y4{bottom:1068.933333pt;}
.y8{bottom:1073.600000pt;}
.h8{height:15.900000pt;}
.h25{height:17.600000pt;}
.h26{height:17.733333pt;}
.he{height:18.400000pt;}
.h17{height:21.066667pt;}
.h13{height:21.200000pt;}
.h16{height:21.233333pt;}
.h23{height:35.366667pt;}
.hf{height:36.800000pt;}
.h6{height:40.266667pt;}
.h14{height:42.266667pt;}
.h3{height:43.200000pt;}
.h15{height:45.156250pt;}
.h11{height:46.281250pt;}
.h7{height:47.109375pt;}
.h5{height:49.726562pt;}
.h4{height:52.343750pt;}
.h24{height:53.750000pt;}
.hc{height:57.578125pt;}
.h9{height:58.351562pt;}
.h12{height:62.781250pt;}
.hb{height:62.812500pt;}
.h18{height:63.466667pt;}
.ha{height:64.500000pt;}
.h27{height:65.781915pt;}
.h10{height:66.625000pt;}
.h2{height:73.281250pt;}
.h19{height:113.343750pt;}
.h22{height:140.679167pt;}
.h1c{height:149.610417pt;}
.h1b{height:154.410417pt;}
.h1a{height:161.877083pt;}
.h1d{height:161.930417pt;}
.h1e{height:161.983750pt;}
.h20{height:168.810417pt;}
.h21{height:187.477083pt;}
.h1f{height:204.543750pt;}
.hd{height:239.226667pt;}
.h0{height:1122.533333pt;}
.h1{height:1122.666667pt;}
.wd{width:76.133333pt;}
.we{width:86.833333pt;}
.wb{width:89.233333pt;}
.wc{width:94.000000pt;}
.w6{width:158.533333pt;}
.w5{width:233.773333pt;}
.w3{width:251.106667pt;}
.w4{width:264.693333pt;}
.w9{width:349.640000pt;}
.wa{width:349.666667pt;}
.w7{width:662.906667pt;}
.w8{width:666.906667pt;}
.w2{width:793.733322pt;}
.w0{width:793.733333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x4{left:6.133333pt;}
.x20{left:7.200000pt;}
.x9{left:11.053333pt;}
.x7{left:14.400000pt;}
.xe{left:15.373333pt;}
.x1c{left:18.566667pt;}
.x5{left:19.733333pt;}
.xb{left:28.533333pt;}
.x3{left:37.866655pt;}
.x2e{left:51.466655pt;}
.x1d{left:61.866655pt;}
.x10{left:80.533322pt;}
.x1e{left:85.066655pt;}
.x2c{left:88.133322pt;}
.x1b{left:89.066667pt;}
.x31{left:91.199988pt;}
.x1a{left:93.066667pt;}
.xd{left:95.093333pt;}
.x6{left:108.166667pt;}
.xa{left:113.893333pt;}
.x34{left:128.433333pt;}
.x33{left:149.906655pt;}
.x21{left:152.293322pt;}
.x32{left:178.839988pt;}
.x35{left:223.106667pt;}
.x2f{left:265.773322pt;}
.x1{left:269.773322pt;}
.x8{left:271.240000pt;}
.x2d{left:284.559988pt;}
.x36{left:300.040000pt;}
.x30{left:341.399988pt;}
.x14{left:374.866655pt;}
.x13{left:407.266655pt;}
.x26{left:410.199988pt;}
.x18{left:411.266655pt;}
.x12{left:444.999988pt;}
.x1f{left:453.666655pt;}
.x27{left:468.999988pt;}
.x28{left:485.666655pt;}
.x24{left:487.666655pt;}
.x29{left:516.999988pt;}
.x2a{left:526.199988pt;}
.x22{left:528.733322pt;}
.xc{left:555.933333pt;}
.x19{left:562.333322pt;}
.x23{left:581.173322pt;}
.x2b{left:582.226655pt;}
.x25{left:614.373322pt;}
.x15{left:626.226655pt;}
.x11{left:631.693322pt;}
.xf{left:634.360000pt;}
.x17{left:637.039988pt;}
.x2{left:737.439988pt;}
.x16{left:756.106655pt;}
.x37{left:764.506655pt;}
}




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