
    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_76c79d17758873243e447462.woff')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_35cceac5e5f4411c0fddc0ae.woff')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_b6e3eaef7298f2a69a1e180f.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_2badcc41c4bcd0234ed699f6.woff')format("woff");}.ff4{font-family:ff4;line-height:0.983398;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_a62858e7625b5cbff3567da1.woff')format("woff");}.ff5{font-family:ff5;line-height:0.983398;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_130301694ab792f9947e2b7d.woff')format("woff");}.ff6{font-family:ff6;line-height:0.739746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_5f2d09a0c585ffac71973771.woff')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_6c38cf86fb26eb55e05b78f7.woff')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_410fc629a9fa0630df5858f3.woff')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_e57a875637753f56b72a6f07.woff')format("woff");}.ffa{font-family:ffa;line-height:0.914062;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_adc2bf4e95c54b07d7d362f6.woff')format("woff");}.ffb{font-family:ffb;line-height:0.914062;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_b0bd00318d191b0bd3b01797.woff')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_7638d1ee3e7c01cf3e4efe53.woff')format("woff");}.ffd{font-family:ffd;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;}
.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);}
.v1{vertical-align:-13.500000px;}
.v0{vertical-align:0.000000px;}
.lsb{letter-spacing:-2.724000px;}
.lsf{letter-spacing:-1.740000px;}
.ls18{letter-spacing:-1.128000px;}
.ls10{letter-spacing:-1.026000px;}
.lsa{letter-spacing:-0.378000px;}
.ls9{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.099000px;}
.ls14{letter-spacing:0.150000px;}
.ls17{letter-spacing:0.409500px;}
.ls8{letter-spacing:0.450000px;}
.lsd{letter-spacing:0.994500px;}
.ls0{letter-spacing:1.296000px;}
.ls1{letter-spacing:1.536000px;}
.ls2{letter-spacing:1.842000px;}
.lsc{letter-spacing:1.944000px;}
.lse{letter-spacing:2.164500px;}
.ls13{letter-spacing:2.190000px;}
.ls5{letter-spacing:2.250000px;}
.ls19{letter-spacing:2.310000px;}
.ls6{letter-spacing:2.322000px;}
.ls1b{letter-spacing:2.370000px;}
.ls12{letter-spacing:2.430000px;}
.ls16{letter-spacing:3.375000px;}
.ls15{letter-spacing:3.495000px;}
.ls11{letter-spacing:3.990000px;}
.ls7{letter-spacing:4.779000px;}
.ls4{letter-spacing:9.459000px;}
.ls1c{letter-spacing:15.387000px;}
.ls1a{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;}
}
.wsf{word-spacing:-58.950000px;}
.wsd{word-spacing:-58.909500px;}
.wse{word-spacing:-58.500000px;}
.ws4{word-spacing:-25.926000px;}
.wsc{word-spacing:-18.615000px;}
.ws7{word-spacing:-16.875000px;}
.ws10{word-spacing:-16.789500px;}
.ws9{word-spacing:-15.619500px;}
.ws2{word-spacing:-15.063000px;}
.ws6{word-spacing:-14.625000px;}
.wsb{word-spacing:-13.599000px;}
.ws3{word-spacing:-13.221000px;}
.wsa{word-spacing:-12.885000px;}
.ws1{word-spacing:-12.531000px;}
.ws0{word-spacing:-11.826000px;}
.ws5{word-spacing:-8.136000px;}
.ws8{word-spacing:0.000000px;}
._18{margin-left:-7.549500px;}
._11{margin-left:-6.291000px;}
._7{margin-left:-5.040000px;}
._8{margin-left:-3.729000px;}
._2{margin-left:-2.622000px;}
._1{margin-left:-1.188000px;}
._0{width:1.944000px;}
._3{width:3.864000px;}
._4{width:5.700000px;}
._12{width:7.281000px;}
._5{width:8.809500px;}
._6{width:9.900000px;}
._13{width:11.608500px;}
._10{width:12.976500px;}
._f{width:15.889500px;}
._d{width:17.289000px;}
._b{width:20.386500px;}
._e{width:21.756000px;}
._14{width:25.488000px;}
._16{width:26.625000px;}
._9{width:29.520000px;}
._15{width:31.225500px;}
._a{width:33.951000px;}
._c{width:35.206500px;}
._17{width:39.951000px;}
._1c{width:88.132500px;}
._1b{width:1017.687000px;}
._1a{width:1323.768000px;}
._19{width:1391.677500px;}
.fc7{color:rgb(17,85,204);}
.fc6{color:rgb(238,0,0);}
.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(23,54,93);}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:36.000000px;}
.fs4{font-size:49.500000px;}
.fs1{font-size:54.000000px;}
.fs0{font-size:58.500000px;}
.fs2{font-size:67.500000px;}
.fs3{font-size:72.000000px;}
.fs5{font-size:85.650000px;}
.y0{bottom:0.000000px;}
.y1d{bottom:1.125000px;}
.y4{bottom:3.375000px;}
.y82{bottom:3.390000px;}
.y8b{bottom:3.405000px;}
.yc0{bottom:3.420000px;}
.y1b{bottom:4.500000px;}
.y98{bottom:4.515000px;}
.y80{bottom:4.545000px;}
.ycf{bottom:6.765000px;}
.y10{bottom:7.875000px;}
.y4a{bottom:10.125000px;}
.ye0{bottom:11.250000px;}
.y1e{bottom:12.375000px;}
.yee{bottom:13.530000px;}
.y5{bottom:16.875000px;}
.y9{bottom:18.000000px;}
.y3{bottom:19.125000px;}
.yc3{bottom:20.250000px;}
.ybf{bottom:20.295000px;}
.ye{bottom:21.375000px;}
.yaf{bottom:21.390000px;}
.y4b{bottom:21.405000px;}
.ya1{bottom:21.420000px;}
.y49{bottom:24.780000px;}
.y1a{bottom:28.170000px;}
.yd2{bottom:29.250000px;}
.yde{bottom:29.295000px;}
.yed{bottom:30.405000px;}
.y47{bottom:32.655000px;}
.yb1{bottom:38.250000px;}
.yb3{bottom:38.280000px;}
.ya0{bottom:38.295000px;}
.yd{bottom:40.530000px;}
.y19{bottom:45.045000px;}
.ydd{bottom:47.295000px;}
.y46{bottom:50.670000px;}
.y6{bottom:57.412500px;}
.y18{bottom:60.840000px;}
.ydc{bottom:64.170000px;}
.y45{bottom:67.545000px;}
.yc{bottom:70.905000px;}
.y17{bottom:74.340000px;}
.y2{bottom:81.075000px;}
.y44{bottom:84.450000px;}
.yb{bottom:92.310000px;}
.y16{bottom:93.495000px;}
.y15{bottom:111.495000px;}
.ya{bottom:113.685000px;}
.y43{bottom:113.730000px;}
.y1{bottom:124.987500px;}
.y14{bottom:130.620000px;}
.y42{bottom:131.745000px;}
.y41{bottom:148.620000px;}
.yfa{bottom:153.105000px;}
.y4f{bottom:155.370000px;}
.y106{bottom:156.480000px;}
.y13{bottom:156.540000px;}
.ye3{bottom:161.025000px;}
.y40{bottom:165.525000px;}
.yf9{bottom:170.025000px;}
.y4e{bottom:172.275000px;}
.y105{bottom:174.525000px;}
.ydb{bottom:175.650000px;}
.y12{bottom:181.320000px;}
.y3f{bottom:183.525000px;}
.yf8{bottom:186.900000px;}
.y4d{bottom:189.150000px;}
.y104{bottom:191.400000px;}
.ye2{bottom:193.650000px;}
.y3e{bottom:200.430000px;}
.yf7{bottom:204.945000px;}
.y4c{bottom:207.195000px;}
.y103{bottom:208.320000px;}
.ye1{bottom:211.695000px;}
.y3d{bottom:217.305000px;}
.y87{bottom:220.695000px;}
.y48{bottom:221.820000px;}
.y102{bottom:226.320000px;}
.ydf{bottom:229.695000px;}
.y86{bottom:237.570000px;}
.yf6{bottom:238.695000px;}
.y101{bottom:243.225000px;}
.y3c{bottom:246.600000px;}
.y85{bottom:254.475000px;}
.yb7{bottom:256.725000px;}
.y1f{bottom:257.850000px;}
.y100{bottom:260.100000px;}
.yda{bottom:262.350000px;}
.y3b{bottom:264.600000px;}
.y2e{bottom:269.100000px;}
.y84{bottom:272.475000px;}
.yf5{bottom:273.600000px;}
.yb6{bottom:274.725000px;}
.yff{bottom:278.100000px;}
.y3a{bottom:281.520000px;}
.yd9{bottom:283.725000px;}
.y2d{bottom:283.755000px;}
.y83{bottom:287.130000px;}
.yf4{bottom:290.505000px;}
.yb5{bottom:291.645000px;}
.yfe{bottom:295.020000px;}
.yd8{bottom:301.770000px;}
.y2c{bottom:302.895000px;}
.y81{bottom:305.130000px;}
.yb4{bottom:306.255000px;}
.yf3{bottom:308.520000px;}
.y39{bottom:310.755000px;}
.yfd{bottom:311.895000px;}
.yd7{bottom:315.270000px;}
.y2b{bottom:319.800000px;}
.y7f{bottom:323.130000px;}
.yf2{bottom:325.395000px;}
.y38{bottom:327.675000px;}
.yfc{bottom:329.925000px;}
.y2a{bottom:336.675000px;}
.y7e{bottom:342.300000px;}
.y37{bottom:345.675000px;}
.yfb{bottom:346.800000px;}
.y29{bottom:354.675000px;}
.yf1{bottom:355.800000px;}
.yb2{bottom:359.175000px;}
.y36{bottom:362.595000px;}
.y7d{bottom:363.675000px;}
.y28{bottom:371.595000px;}
.y7c{bottom:381.705000px;}
.y27{bottom:389.595000px;}
.y35{bottom:391.845000px;}
.y7b{bottom:398.580000px;}
.y26{bottom:406.500000px;}
.yb0{bottom:412.125000px;}
.y7a{bottom:415.500000px;}
.y34{bottom:421.125000px;}
.y25{bottom:424.500000px;}
.yc6{bottom:425.625000px;}
.y79{bottom:433.500000px;}
.y33{bottom:438.000000px;}
.y24{bottom:441.375000px;}
.yc5{bottom:443.625000px;}
.y78{bottom:450.375000px;}
.yc4{bottom:458.280000px;}
.y23{bottom:459.405000px;}
.yae{bottom:465.030000px;}
.y32{bottom:467.280000px;}
.y77{bottom:467.295000px;}
.y22{bottom:476.280000px;}
.y76{bottom:485.280000px;}
.y31{bottom:485.295000px;}
.y30{bottom:502.200000px;}
.y21{bottom:503.325000px;}
.yc2{bottom:511.200000px;}
.yad{bottom:517.950000px;}
.y2f{bottom:519.075000px;}
.y20{bottom:521.325000px;}
.y75{bottom:537.120000px;}
.y74{bottom:553.995000px;}
.yc1{bottom:564.105000px;}
.yac{bottom:570.855000px;}
.y73{bottom:570.870000px;}
.y72{bottom:588.900000px;}
.yab{bottom:593.400000px;}
.yd6{bottom:600.150000px;}
.y71{bottom:605.775000px;}
.yaa{bottom:610.275000px;}
.ybe{bottom:617.025000px;}
.yd5{bottom:618.150000px;}
.y70{bottom:622.695000px;}
.ya9{bottom:627.195000px;}
.yd4{bottom:635.070000px;}
.y6f{bottom:640.695000px;}
.ya8{bottom:645.195000px;}
.yd3{bottom:651.945000px;}
.y6e{bottom:657.570000px;}
.yec{bottom:659.820000px;}
.ya7{bottom:662.100000px;}
.yd0{bottom:666.600000px;}
.ybd{bottom:669.975000px;}
.y6d{bottom:674.475000px;}
.yf0{bottom:677.850000px;}
.ya6{bottom:678.975000px;}
.ybc{bottom:691.350000px;}
.y6c{bottom:692.475000px;}
.yd1{bottom:693.600000px;}
.yef{bottom:695.850000px;}
.ya5{bottom:696.975000px;}
.y6b{bottom:709.395000px;}
.ya4{bottom:713.880000px;}
.yce{bottom:719.505000px;}
.y6a{bottom:726.270000px;}
.y9f{bottom:728.505000px;}
.yeb{bottom:735.255000px;}
.ybb{bottom:743.145000px;}
.y69{bottom:744.300000px;}
.ya3{bottom:746.550000px;}
.ycd{bottom:748.800000px;}
.yea{bottom:753.300000px;}
.y68{bottom:761.175000px;}
.ya2{bottom:764.550000px;}
.ycc{bottom:765.675000px;}
.ye9{bottom:770.175000px;}
.y67{bottom:778.050000px;}
.y9e{bottom:782.550000px;}
.ye8{bottom:787.080000px;}
.y1c{bottom:790.455000px;}
.yba{bottom:794.955000px;}
.y66{bottom:796.080000px;}
.ycb{bottom:800.580000px;}
.y9d{bottom:803.955000px;}
.ye7{bottom:805.080000px;}
.y65{bottom:812.955000px;}
.yca{bottom:817.455000px;}
.y11{bottom:820.830000px;}
.ye6{bottom:821.955000px;}
.y64{bottom:829.875000px;}
.yc9{bottom:834.375000px;}
.y9c{bottom:838.875000px;}
.yb9{bottom:846.750000px;}
.y63{bottom:847.875000px;}
.yc8{bottom:852.375000px;}
.y9b{bottom:855.750000px;}
.ye5{bottom:856.875000px;}
.yb8{bottom:860.250000px;}
.y62{bottom:864.750000px;}
.yc7{bottom:865.875000px;}
.ye4{bottom:870.420000px;}
.y9a{bottom:872.670000px;}
.y61{bottom:881.670000px;}
.y99{bottom:890.670000px;}
.y60{bottom:899.670000px;}
.y97{bottom:904.155000px;}
.y5f{bottom:916.575000px;}
.y96{bottom:922.200000px;}
.y5e{bottom:933.450000px;}
.y95{bottom:944.700000px;}
.y5d{bottom:951.450000px;}
.y94{bottom:961.620000px;}
.y5c{bottom:968.370000px;}
.y93{bottom:978.495000px;}
.y5b{bottom:985.245000px;}
.y92{bottom:996.525000px;}
.y5a{bottom:1003.275000px;}
.y91{bottom:1013.400000px;}
.yf{bottom:1016.775000px;}
.y59{bottom:1020.150000px;}
.y90{bottom:1030.275000px;}
.y58{bottom:1037.070000px;}
.y8{bottom:1042.695000px;}
.y8f{bottom:1048.320000px;}
.y57{bottom:1055.070000px;}
.y8e{bottom:1065.195000px;}
.y56{bottom:1071.945000px;}
.y8d{bottom:1079.850000px;}
.y55{bottom:1088.850000px;}
.y8c{bottom:1097.850000px;}
.y54{bottom:1106.850000px;}
.y8a{bottom:1116.975000px;}
.y53{bottom:1123.755000px;}
.y89{bottom:1135.005000px;}
.y52{bottom:1140.630000px;}
.y88{bottom:1153.005000px;}
.y51{bottom:1158.630000px;}
.y7{bottom:1173.300000px;}
.y50{bottom:1175.550000px;}
.h1b{height:16.875000px;}
.h1d{height:16.912500px;}
.h1e{height:18.000000px;}
.h1c{height:18.037500px;}
.hd{height:24.787500px;}
.h22{height:25.875000px;}
.h12{height:29.953125px;}
.h13{height:30.375000px;}
.h24{height:31.537500px;}
.h3{height:32.625000px;}
.h1a{height:36.037500px;}
.h18{height:39.832031px;}
.h19{height:40.847168px;}
.h2{height:41.275635px;}
.h17{height:41.389893px;}
.h26{height:42.589600px;}
.hf{height:43.075195px;}
.h16{height:47.074219px;}
.h8{height:49.141846px;}
.h15{height:49.234131px;}
.ha{height:50.684326px;}
.h20{height:51.787500px;}
.h21{height:51.825000px;}
.h1f{height:52.912500px;}
.h25{height:52.950000px;}
.h5{height:53.709961px;}
.h4{height:55.291992px;}
.hc{height:58.185791px;}
.h11{height:59.899658px;}
.h10{height:64.237500px;}
.h6{height:69.114990px;}
.h7{height:71.613281px;}
.hb{height:73.722656px;}
.h23{height:85.575000px;}
.h9{height:124.987500px;}
.he{height:195.930000px;}
.h14{height:532.620000px;}
.h0{height:1263.375000px;}
.h1{height:1263.750000px;}
.w2c{width:57.450000px;}
.w24{width:60.810000px;}
.w27{width:63.075000px;}
.w16{width:65.325000px;}
.w12{width:66.450000px;}
.w2f{width:69.862500px;}
.w23{width:70.950000px;}
.w2b{width:70.987500px;}
.w11{width:72.075000px;}
.w18{width:72.112500px;}
.w2e{width:73.200000px;}
.w3{width:73.237500px;}
.w26{width:81.075000px;}
.w2a{width:81.112500px;}
.w10{width:82.237500px;}
.w31{width:84.487500px;}
.w17{width:85.612500px;}
.w25{width:91.237500px;}
.w2d{width:92.362500px;}
.w15{width:94.650000px;}
.w19{width:96.862500px;}
.w30{width:100.237500px;}
.w1d{width:100.275000px;}
.w1a{width:101.362500px;}
.w28{width:101.400000px;}
.w29{width:102.487500px;}
.w1c{width:109.237500px;}
.w1e{width:109.275000px;}
.w13{width:117.150000px;}
.w21{width:118.275000px;}
.w14{width:120.525000px;}
.w20{width:130.650000px;}
.w34{width:146.437500px;}
.w4{width:152.055000px;}
.w22{width:162.225000px;}
.we{width:165.600000px;}
.w33{width:170.100000px;}
.wf{width:173.475000px;}
.w7{width:224.145000px;}
.w9{width:238.800000px;}
.wd{width:242.175000px;}
.wb{width:244.470000px;}
.wa{width:245.550000px;}
.w1f{width:315.405000px;}
.wc{width:319.905000px;}
.w32{width:393.105000px;}
.w1b{width:407.775000px;}
.w8{width:508.050000px;}
.w5{width:580.125000px;}
.w2{width:658.950000px;}
.w6{width:732.195000px;}
.w1{width:893.249987px;}
.w0{width:893.250000px;}
.x0{left:0.000000px;}
.x4{left:7.875000px;}
.x2{left:9.000000px;}
.x14{left:12.405000px;}
.x49{left:13.545000px;}
.xd{left:15.750000px;}
.x46{left:16.875000px;}
.x1{left:81.112487px;}
.x5{left:82.237500px;}
.x4c{left:108.149987px;}
.x15{left:135.187487px;}
.x40{left:139.687500px;}
.x25{left:148.687500px;}
.xe{left:153.187500px;}
.x38{left:154.320000px;}
.x3f{left:157.679987px;}
.xf{left:177.982500px;}
.x11{left:191.482500px;}
.x2c{left:206.144987px;}
.x10{left:209.512500px;}
.x12{left:214.012500px;}
.x26{left:216.270000px;}
.x24{left:221.924987px;}
.x4a{left:229.800000px;}
.x6{left:233.175000px;}
.x31{left:237.674987px;}
.x1e{left:256.845000px;}
.x37{left:259.094987px;}
.x1d{left:278.219987px;}
.x9{left:285.000000px;}
.x35{left:296.249987px;}
.x27{left:303.000000px;}
.x13{left:305.250000px;}
.x39{left:308.670000px;}
.x41{left:314.295000px;}
.x17{left:321.045000px;}
.x7{left:323.295000px;}
.x1f{left:339.075000px;}
.x19{left:341.324987px;}
.x8{left:344.700000px;}
.xb{left:349.200000px;}
.xc{left:364.957500px;}
.x16{left:376.244987px;}
.x28{left:385.245000px;}
.x42{left:387.495000px;}
.x3a{left:390.870000px;}
.x32{left:398.775000px;}
.x1a{left:403.275000px;}
.x20{left:412.275000px;}
.xa{left:431.445000px;}
.x1c{left:447.194987px;}
.x3b{left:453.945000px;}
.x29{left:458.475000px;}
.x48{left:475.350000px;}
.x21{left:478.725000px;}
.x2d{left:491.145000px;}
.x33{left:530.550000px;}
.x2a{left:555.345000px;}
.x43{left:559.845000px;}
.x18{left:567.720000px;}
.x22{left:597.000000px;}
.x2e{left:601.500000px;}
.x1b{left:646.575000px;}
.x34{left:649.950000px;}
.x2b{left:656.700000px;}
.x44{left:657.825000px;}
.x3c{left:658.950000px;}
.x3e{left:665.744987px;}
.x36{left:675.869987px;}
.x4b{left:681.494987px;}
.x2f{left:702.900000px;}
.x47{left:708.524987px;}
.x30{left:716.399987px;}
.x23{left:717.525000px;}
.x3{left:740.070000px;}
.x3d{left:741.195000px;}
.x45{left:742.320000px;}
@media print{
.v1{vertical-align:-12.000000pt;}
.v0{vertical-align:0.000000pt;}
.lsb{letter-spacing:-2.421333pt;}
.lsf{letter-spacing:-1.546667pt;}
.ls18{letter-spacing:-1.002667pt;}
.ls10{letter-spacing:-0.912000pt;}
.lsa{letter-spacing:-0.336000pt;}
.ls9{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.088000pt;}
.ls14{letter-spacing:0.133333pt;}
.ls17{letter-spacing:0.364000pt;}
.ls8{letter-spacing:0.400000pt;}
.lsd{letter-spacing:0.884000pt;}
.ls0{letter-spacing:1.152000pt;}
.ls1{letter-spacing:1.365333pt;}
.ls2{letter-spacing:1.637333pt;}
.lsc{letter-spacing:1.728000pt;}
.lse{letter-spacing:1.924000pt;}
.ls13{letter-spacing:1.946667pt;}
.ls5{letter-spacing:2.000000pt;}
.ls19{letter-spacing:2.053333pt;}
.ls6{letter-spacing:2.064000pt;}
.ls1b{letter-spacing:2.106667pt;}
.ls12{letter-spacing:2.160000pt;}
.ls16{letter-spacing:3.000000pt;}
.ls15{letter-spacing:3.106667pt;}
.ls11{letter-spacing:3.546667pt;}
.ls7{letter-spacing:4.248000pt;}
.ls4{letter-spacing:8.408000pt;}
.ls1c{letter-spacing:13.677333pt;}
.ls1a{letter-spacing:41.677333pt;}
.wsf{word-spacing:-52.400000pt;}
.wsd{word-spacing:-52.364000pt;}
.wse{word-spacing:-52.000000pt;}
.ws4{word-spacing:-23.045333pt;}
.wsc{word-spacing:-16.546667pt;}
.ws7{word-spacing:-15.000000pt;}
.ws10{word-spacing:-14.924000pt;}
.ws9{word-spacing:-13.884000pt;}
.ws2{word-spacing:-13.389333pt;}
.ws6{word-spacing:-13.000000pt;}
.wsb{word-spacing:-12.088000pt;}
.ws3{word-spacing:-11.752000pt;}
.wsa{word-spacing:-11.453333pt;}
.ws1{word-spacing:-11.138667pt;}
.ws0{word-spacing:-10.512000pt;}
.ws5{word-spacing:-7.232000pt;}
.ws8{word-spacing:0.000000pt;}
._18{margin-left:-6.710667pt;}
._11{margin-left:-5.592000pt;}
._7{margin-left:-4.480000pt;}
._8{margin-left:-3.314667pt;}
._2{margin-left:-2.330667pt;}
._1{margin-left:-1.056000pt;}
._0{width:1.728000pt;}
._3{width:3.434667pt;}
._4{width:5.066667pt;}
._12{width:6.472000pt;}
._5{width:7.830667pt;}
._6{width:8.800000pt;}
._13{width:10.318667pt;}
._10{width:11.534667pt;}
._f{width:14.124000pt;}
._d{width:15.368000pt;}
._b{width:18.121333pt;}
._e{width:19.338667pt;}
._14{width:22.656000pt;}
._16{width:23.666667pt;}
._9{width:26.240000pt;}
._15{width:27.756000pt;}
._a{width:30.178667pt;}
._c{width:31.294667pt;}
._17{width:35.512000pt;}
._1c{width:78.340000pt;}
._1b{width:904.610667pt;}
._1a{width:1176.682667pt;}
._19{width:1237.046667pt;}
.fs6{font-size:32.000000pt;}
.fs4{font-size:44.000000pt;}
.fs1{font-size:48.000000pt;}
.fs0{font-size:52.000000pt;}
.fs2{font-size:60.000000pt;}
.fs3{font-size:64.000000pt;}
.fs5{font-size:76.133333pt;}
.y0{bottom:0.000000pt;}
.y1d{bottom:1.000000pt;}
.y4{bottom:3.000000pt;}
.y82{bottom:3.013333pt;}
.y8b{bottom:3.026667pt;}
.yc0{bottom:3.040000pt;}
.y1b{bottom:4.000000pt;}
.y98{bottom:4.013333pt;}
.y80{bottom:4.040000pt;}
.ycf{bottom:6.013333pt;}
.y10{bottom:7.000000pt;}
.y4a{bottom:9.000000pt;}
.ye0{bottom:10.000000pt;}
.y1e{bottom:11.000000pt;}
.yee{bottom:12.026667pt;}
.y5{bottom:15.000000pt;}
.y9{bottom:16.000000pt;}
.y3{bottom:17.000000pt;}
.yc3{bottom:18.000000pt;}
.ybf{bottom:18.040000pt;}
.ye{bottom:19.000000pt;}
.yaf{bottom:19.013333pt;}
.y4b{bottom:19.026667pt;}
.ya1{bottom:19.040000pt;}
.y49{bottom:22.026667pt;}
.y1a{bottom:25.040000pt;}
.yd2{bottom:26.000000pt;}
.yde{bottom:26.040000pt;}
.yed{bottom:27.026667pt;}
.y47{bottom:29.026667pt;}
.yb1{bottom:34.000000pt;}
.yb3{bottom:34.026667pt;}
.ya0{bottom:34.040000pt;}
.yd{bottom:36.026667pt;}
.y19{bottom:40.040000pt;}
.ydd{bottom:42.040000pt;}
.y46{bottom:45.040000pt;}
.y6{bottom:51.033333pt;}
.y18{bottom:54.080000pt;}
.ydc{bottom:57.040000pt;}
.y45{bottom:60.040000pt;}
.yc{bottom:63.026667pt;}
.y17{bottom:66.080000pt;}
.y2{bottom:72.066667pt;}
.y44{bottom:75.066667pt;}
.yb{bottom:82.053333pt;}
.y16{bottom:83.106667pt;}
.y15{bottom:99.106667pt;}
.ya{bottom:101.053333pt;}
.y43{bottom:101.093333pt;}
.y1{bottom:111.100000pt;}
.y14{bottom:116.106667pt;}
.y42{bottom:117.106667pt;}
.y41{bottom:132.106667pt;}
.yfa{bottom:136.093333pt;}
.y4f{bottom:138.106667pt;}
.y106{bottom:139.093333pt;}
.y13{bottom:139.146667pt;}
.ye3{bottom:143.133333pt;}
.y40{bottom:147.133333pt;}
.yf9{bottom:151.133333pt;}
.y4e{bottom:153.133333pt;}
.y105{bottom:155.133333pt;}
.ydb{bottom:156.133333pt;}
.y12{bottom:161.173333pt;}
.y3f{bottom:163.133333pt;}
.yf8{bottom:166.133333pt;}
.y4d{bottom:168.133333pt;}
.y104{bottom:170.133333pt;}
.ye2{bottom:172.133333pt;}
.y3e{bottom:178.160000pt;}
.yf7{bottom:182.173333pt;}
.y4c{bottom:184.173333pt;}
.y103{bottom:185.173333pt;}
.ye1{bottom:188.173333pt;}
.y3d{bottom:193.160000pt;}
.y87{bottom:196.173333pt;}
.y48{bottom:197.173333pt;}
.y102{bottom:201.173333pt;}
.ydf{bottom:204.173333pt;}
.y86{bottom:211.173333pt;}
.yf6{bottom:212.173333pt;}
.y101{bottom:216.200000pt;}
.y3c{bottom:219.200000pt;}
.y85{bottom:226.200000pt;}
.yb7{bottom:228.200000pt;}
.y1f{bottom:229.200000pt;}
.y100{bottom:231.200000pt;}
.yda{bottom:233.200000pt;}
.y3b{bottom:235.200000pt;}
.y2e{bottom:239.200000pt;}
.y84{bottom:242.200000pt;}
.yf5{bottom:243.200000pt;}
.yb6{bottom:244.200000pt;}
.yff{bottom:247.200000pt;}
.y3a{bottom:250.240000pt;}
.yd9{bottom:252.200000pt;}
.y2d{bottom:252.226667pt;}
.y83{bottom:255.226667pt;}
.yf4{bottom:258.226667pt;}
.yb5{bottom:259.240000pt;}
.yfe{bottom:262.240000pt;}
.yd8{bottom:268.240000pt;}
.y2c{bottom:269.240000pt;}
.y81{bottom:271.226667pt;}
.yb4{bottom:272.226667pt;}
.yf3{bottom:274.240000pt;}
.y39{bottom:276.226667pt;}
.yfd{bottom:277.240000pt;}
.yd7{bottom:280.240000pt;}
.y2b{bottom:284.266667pt;}
.y7f{bottom:287.226667pt;}
.yf2{bottom:289.240000pt;}
.y38{bottom:291.266667pt;}
.yfc{bottom:293.266667pt;}
.y2a{bottom:299.266667pt;}
.y7e{bottom:304.266667pt;}
.y37{bottom:307.266667pt;}
.yfb{bottom:308.266667pt;}
.y29{bottom:315.266667pt;}
.yf1{bottom:316.266667pt;}
.yb2{bottom:319.266667pt;}
.y36{bottom:322.306667pt;}
.y7d{bottom:323.266667pt;}
.y28{bottom:330.306667pt;}
.y7c{bottom:339.293333pt;}
.y27{bottom:346.306667pt;}
.y35{bottom:348.306667pt;}
.y7b{bottom:354.293333pt;}
.y26{bottom:361.333333pt;}
.yb0{bottom:366.333333pt;}
.y7a{bottom:369.333333pt;}
.y34{bottom:374.333333pt;}
.y25{bottom:377.333333pt;}
.yc6{bottom:378.333333pt;}
.y79{bottom:385.333333pt;}
.y33{bottom:389.333333pt;}
.y24{bottom:392.333333pt;}
.yc5{bottom:394.333333pt;}
.y78{bottom:400.333333pt;}
.yc4{bottom:407.360000pt;}
.y23{bottom:408.360000pt;}
.yae{bottom:413.360000pt;}
.y32{bottom:415.360000pt;}
.y77{bottom:415.373333pt;}
.y22{bottom:423.360000pt;}
.y76{bottom:431.360000pt;}
.y31{bottom:431.373333pt;}
.y30{bottom:446.400000pt;}
.y21{bottom:447.400000pt;}
.yc2{bottom:454.400000pt;}
.yad{bottom:460.400000pt;}
.y2f{bottom:461.400000pt;}
.y20{bottom:463.400000pt;}
.y75{bottom:477.440000pt;}
.y74{bottom:492.440000pt;}
.yc1{bottom:501.426667pt;}
.yac{bottom:507.426667pt;}
.y73{bottom:507.440000pt;}
.y72{bottom:523.466667pt;}
.yab{bottom:527.466667pt;}
.yd6{bottom:533.466667pt;}
.y71{bottom:538.466667pt;}
.yaa{bottom:542.466667pt;}
.ybe{bottom:548.466667pt;}
.yd5{bottom:549.466667pt;}
.y70{bottom:553.506667pt;}
.ya9{bottom:557.506667pt;}
.yd4{bottom:564.506667pt;}
.y6f{bottom:569.506667pt;}
.ya8{bottom:573.506667pt;}
.yd3{bottom:579.506667pt;}
.y6e{bottom:584.506667pt;}
.yec{bottom:586.506667pt;}
.ya7{bottom:588.533333pt;}
.yd0{bottom:592.533333pt;}
.ybd{bottom:595.533333pt;}
.y6d{bottom:599.533333pt;}
.yf0{bottom:602.533333pt;}
.ya6{bottom:603.533333pt;}
.ybc{bottom:614.533333pt;}
.y6c{bottom:615.533333pt;}
.yd1{bottom:616.533333pt;}
.yef{bottom:618.533333pt;}
.ya5{bottom:619.533333pt;}
.y6b{bottom:630.573333pt;}
.ya4{bottom:634.560000pt;}
.yce{bottom:639.560000pt;}
.y6a{bottom:645.573333pt;}
.y9f{bottom:647.560000pt;}
.yeb{bottom:653.560000pt;}
.ybb{bottom:660.573333pt;}
.y69{bottom:661.600000pt;}
.ya3{bottom:663.600000pt;}
.ycd{bottom:665.600000pt;}
.yea{bottom:669.600000pt;}
.y68{bottom:676.600000pt;}
.ya2{bottom:679.600000pt;}
.ycc{bottom:680.600000pt;}
.ye9{bottom:684.600000pt;}
.y67{bottom:691.600000pt;}
.y9e{bottom:695.600000pt;}
.ye8{bottom:699.626667pt;}
.y1c{bottom:702.626667pt;}
.yba{bottom:706.626667pt;}
.y66{bottom:707.626667pt;}
.ycb{bottom:711.626667pt;}
.y9d{bottom:714.626667pt;}
.ye7{bottom:715.626667pt;}
.y65{bottom:722.626667pt;}
.yca{bottom:726.626667pt;}
.y11{bottom:729.626667pt;}
.ye6{bottom:730.626667pt;}
.y64{bottom:737.666667pt;}
.yc9{bottom:741.666667pt;}
.y9c{bottom:745.666667pt;}
.yb9{bottom:752.666667pt;}
.y63{bottom:753.666667pt;}
.yc8{bottom:757.666667pt;}
.y9b{bottom:760.666667pt;}
.ye5{bottom:761.666667pt;}
.yb8{bottom:764.666667pt;}
.y62{bottom:768.666667pt;}
.yc7{bottom:769.666667pt;}
.ye4{bottom:773.706667pt;}
.y9a{bottom:775.706667pt;}
.y61{bottom:783.706667pt;}
.y99{bottom:791.706667pt;}
.y60{bottom:799.706667pt;}
.y97{bottom:803.693333pt;}
.y5f{bottom:814.733333pt;}
.y96{bottom:819.733333pt;}
.y5e{bottom:829.733333pt;}
.y95{bottom:839.733333pt;}
.y5d{bottom:845.733333pt;}
.y94{bottom:854.773333pt;}
.y5c{bottom:860.773333pt;}
.y93{bottom:869.773333pt;}
.y5b{bottom:875.773333pt;}
.y92{bottom:885.800000pt;}
.y5a{bottom:891.800000pt;}
.y91{bottom:900.800000pt;}
.yf{bottom:903.800000pt;}
.y59{bottom:906.800000pt;}
.y90{bottom:915.800000pt;}
.y58{bottom:921.840000pt;}
.y8{bottom:926.840000pt;}
.y8f{bottom:931.840000pt;}
.y57{bottom:937.840000pt;}
.y8e{bottom:946.840000pt;}
.y56{bottom:952.840000pt;}
.y8d{bottom:959.866667pt;}
.y55{bottom:967.866667pt;}
.y8c{bottom:975.866667pt;}
.y54{bottom:983.866667pt;}
.y8a{bottom:992.866667pt;}
.y53{bottom:998.893333pt;}
.y89{bottom:1008.893333pt;}
.y52{bottom:1013.893333pt;}
.y88{bottom:1024.893333pt;}
.y51{bottom:1029.893333pt;}
.y7{bottom:1042.933333pt;}
.y50{bottom:1044.933333pt;}
.h1b{height:15.000000pt;}
.h1d{height:15.033333pt;}
.h1e{height:16.000000pt;}
.h1c{height:16.033333pt;}
.hd{height:22.033333pt;}
.h22{height:23.000000pt;}
.h12{height:26.625000pt;}
.h13{height:27.000000pt;}
.h24{height:28.033333pt;}
.h3{height:29.000000pt;}
.h1a{height:32.033333pt;}
.h18{height:35.406250pt;}
.h19{height:36.308594pt;}
.h2{height:36.689453pt;}
.h17{height:36.791016pt;}
.h26{height:37.857422pt;}
.hf{height:38.289062pt;}
.h16{height:41.843750pt;}
.h8{height:43.681641pt;}
.h15{height:43.763672pt;}
.ha{height:45.052734pt;}
.h20{height:46.033333pt;}
.h21{height:46.066667pt;}
.h1f{height:47.033333pt;}
.h25{height:47.066667pt;}
.h5{height:47.742188pt;}
.h4{height:49.148438pt;}
.hc{height:51.720703pt;}
.h11{height:53.244141pt;}
.h10{height:57.100000pt;}
.h6{height:61.435547pt;}
.h7{height:63.656250pt;}
.hb{height:65.531250pt;}
.h23{height:76.066667pt;}
.h9{height:111.100000pt;}
.he{height:174.160000pt;}
.h14{height:473.440000pt;}
.h0{height:1123.000000pt;}
.h1{height:1123.333333pt;}
.w2c{width:51.066667pt;}
.w24{width:54.053333pt;}
.w27{width:56.066667pt;}
.w16{width:58.066667pt;}
.w12{width:59.066667pt;}
.w2f{width:62.100000pt;}
.w23{width:63.066667pt;}
.w2b{width:63.100000pt;}
.w11{width:64.066667pt;}
.w18{width:64.100000pt;}
.w2e{width:65.066667pt;}
.w3{width:65.100000pt;}
.w26{width:72.066667pt;}
.w2a{width:72.100000pt;}
.w10{width:73.100000pt;}
.w31{width:75.100000pt;}
.w17{width:76.100000pt;}
.w25{width:81.100000pt;}
.w2d{width:82.100000pt;}
.w15{width:84.133333pt;}
.w19{width:86.100000pt;}
.w30{width:89.100000pt;}
.w1d{width:89.133333pt;}
.w1a{width:90.100000pt;}
.w28{width:90.133333pt;}
.w29{width:91.100000pt;}
.w1c{width:97.100000pt;}
.w1e{width:97.133333pt;}
.w13{width:104.133333pt;}
.w21{width:105.133333pt;}
.w14{width:107.133333pt;}
.w20{width:116.133333pt;}
.w34{width:130.166667pt;}
.w4{width:135.160000pt;}
.w22{width:144.200000pt;}
.we{width:147.200000pt;}
.w33{width:151.200000pt;}
.wf{width:154.200000pt;}
.w7{width:199.240000pt;}
.w9{width:212.266667pt;}
.wd{width:215.266667pt;}
.wb{width:217.306667pt;}
.wa{width:218.266667pt;}
.w1f{width:280.360000pt;}
.wc{width:284.360000pt;}
.w32{width:349.426667pt;}
.w1b{width:362.466667pt;}
.w8{width:451.600000pt;}
.w5{width:515.666667pt;}
.w2{width:585.733333pt;}
.w6{width:650.840000pt;}
.w1{width:793.999988pt;}
.w0{width:794.000000pt;}
.x0{left:0.000000pt;}
.x4{left:7.000000pt;}
.x2{left:8.000000pt;}
.x14{left:11.026667pt;}
.x49{left:12.040000pt;}
.xd{left:14.000000pt;}
.x46{left:15.000000pt;}
.x1{left:72.099988pt;}
.x5{left:73.100000pt;}
.x4c{left:96.133322pt;}
.x15{left:120.166655pt;}
.x40{left:124.166667pt;}
.x25{left:132.166667pt;}
.xe{left:136.166667pt;}
.x38{left:137.173333pt;}
.x3f{left:140.159988pt;}
.xf{left:158.206667pt;}
.x11{left:170.206667pt;}
.x2c{left:183.239988pt;}
.x10{left:186.233333pt;}
.x12{left:190.233333pt;}
.x26{left:192.240000pt;}
.x24{left:197.266655pt;}
.x4a{left:204.266667pt;}
.x6{left:207.266667pt;}
.x31{left:211.266655pt;}
.x1e{left:228.306667pt;}
.x37{left:230.306655pt;}
.x1d{left:247.306655pt;}
.x9{left:253.333333pt;}
.x35{left:263.333322pt;}
.x27{left:269.333333pt;}
.x13{left:271.333333pt;}
.x39{left:274.373333pt;}
.x41{left:279.373333pt;}
.x17{left:285.373333pt;}
.x7{left:287.373333pt;}
.x1f{left:301.400000pt;}
.x19{left:303.399988pt;}
.x8{left:306.400000pt;}
.xb{left:310.400000pt;}
.xc{left:324.406667pt;}
.x16{left:334.439988pt;}
.x28{left:342.440000pt;}
.x42{left:344.440000pt;}
.x3a{left:347.440000pt;}
.x32{left:354.466667pt;}
.x1a{left:358.466667pt;}
.x20{left:366.466667pt;}
.xa{left:383.506667pt;}
.x1c{left:397.506655pt;}
.x3b{left:403.506667pt;}
.x29{left:407.533333pt;}
.x48{left:422.533333pt;}
.x21{left:425.533333pt;}
.x2d{left:436.573333pt;}
.x33{left:471.600000pt;}
.x2a{left:493.640000pt;}
.x43{left:497.640000pt;}
.x18{left:504.640000pt;}
.x22{left:530.666667pt;}
.x2e{left:534.666667pt;}
.x1b{left:574.733333pt;}
.x34{left:577.733333pt;}
.x2b{left:583.733333pt;}
.x44{left:584.733333pt;}
.x3c{left:585.733333pt;}
.x3e{left:591.773322pt;}
.x36{left:600.773322pt;}
.x4b{left:605.773322pt;}
.x2f{left:624.800000pt;}
.x47{left:629.799988pt;}
.x30{left:636.799988pt;}
.x23{left:637.800000pt;}
.x3{left:657.840000pt;}
.x3d{left:658.840000pt;}
.x45{left:659.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; }
  