
    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_0d7d3adbfc49b82890603dea.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_c4aff09f3536d1977b1f7e6f.woff')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_836060f6c790e8e9ad3b2595.woff')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_c608f52ea56903a86855270f.woff')format("woff");}.ff4{font-family:ff4;line-height:1.001465;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_361da7a75b3ba105ae84c94b.woff')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_c60785c7851831bff51ef920.woff')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_99652e029c2ff4bfc3d10434.woff')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_d0c7cbf13512a2d9c24f43b0.woff')format("woff");}.ff8{font-family:ff8;line-height:0.758789;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_1f039661180bc31085041b3a.woff')format("woff");}.ff9{font-family:ff9;line-height:0.970215;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_5f2d09a0c585ffac71973771.woff')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_ab7b13df3c1720d67ba2307a.woff')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_eaa86967d6188db1179eb433.woff')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_ebbc231465f4e39c3182d53f.woff')format("woff");}.ffd{font-family:ffd;line-height:0.942383;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_2aba19c77664299ae41e9cdc.woff')format("woff");}.ffe{font-family:ffe;line-height:0.923340;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_71798ca1c17afdb0ccd2b55e.woff')format("woff");}.fff{font-family:fff;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:ff10;src:url('chunks/assets/font_5d123772bb4c8abe91c34807.woff')format("woff");}.ff10{font-family:ff10;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:ff11;src:url('chunks/assets/font_130301694ab792f9947e2b7d.woff')format("woff");}.ff11{font-family:ff11;line-height:0.739746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1{transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-ms-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-webkit-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-13.500000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:18.000000px;}
.ls15{letter-spacing:-1.740000px;}
.ls9{letter-spacing:-1.482000px;}
.ls8{letter-spacing:-1.128000px;}
.lsa{letter-spacing:-0.961323px;}
.lsd{letter-spacing:-0.816000px;}
.lsb{letter-spacing:-0.792000px;}
.lsf{letter-spacing:-0.780000px;}
.ls7{letter-spacing:0.000000px;}
.ls12{letter-spacing:0.090000px;}
.ls4{letter-spacing:0.120000px;}
.ls0{letter-spacing:0.180000px;}
.lsc{letter-spacing:0.690000px;}
.ls18{letter-spacing:0.994500px;}
.ls2{letter-spacing:1.854000px;}
.lse{letter-spacing:1.944000px;}
.ls3{letter-spacing:1.966500px;}
.ls17{letter-spacing:2.164500px;}
.ls10{letter-spacing:2.190000px;}
.ls1{letter-spacing:2.250000px;}
.ls14{letter-spacing:2.310000px;}
.ls5{letter-spacing:2.322000px;}
.ls11{letter-spacing:2.370000px;}
.ls16{letter-spacing:2.400000px;}
.ls1a{letter-spacing:2.430000px;}
.ls6{letter-spacing:4.779000px;}
.ls1b{letter-spacing:5.526000px;}
.ls1c{letter-spacing:15.387000px;}
.ls19{letter-spacing:46.887000px;}
.ls13{letter-spacing:64.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;}
}
.ws1{word-spacing:-61.663798px;}
.ws6{word-spacing:-25.926000px;}
.ws5{word-spacing:-23.166000px;}
.ws2{word-spacing:-16.875000px;}
.wsc{word-spacing:-16.789500px;}
.ws4{word-spacing:-16.146000px;}
.wsb{word-spacing:-15.619500px;}
.ws3{word-spacing:-15.354000px;}
.ws8{word-spacing:-14.625000px;}
.ws0{word-spacing:-13.500000px;}
.ws9{word-spacing:-13.221000px;}
.ws7{word-spacing:-8.136000px;}
.wsa{word-spacing:0.000000px;}
._f{margin-left:-6.414000px;}
._16{margin-left:-5.368050px;}
._b{margin-left:-4.282800px;}
._a{margin-left:-2.764350px;}
._0{margin-left:-1.755000px;}
._3{width:1.345500px;}
._2{width:2.515500px;}
._7{width:3.802500px;}
._8{width:5.485500px;}
._10{width:7.412850px;}
._c{width:8.587050px;}
._9{width:10.797000px;}
._11{width:11.923350px;}
._e{width:13.062900px;}
._d{width:14.611050px;}
._5{width:16.597500px;}
._6{width:17.700000px;}
._17{width:19.281450px;}
._4{width:21.097500px;}
._1{width:22.288500px;}
._18{width:24.922950px;}
._13{width:26.543700px;}
._19{width:28.502400px;}
._12{width:29.776500px;}
._1b{width:34.705200px;}
._1a{width:35.743650px;}
._14{width:38.521350px;}
._15{width:39.970350px;}
.fc4{color:rgb(227,108,10);}
.fc3{color:rgb(23,54,93);}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(36,64,97);}
.fc0{color:rgb(0,0,0);}
.fs8{font-size:36.000000px;}
.fs7{font-size:40.500000px;}
.fs5{font-size:49.500000px;}
.fs1{font-size:54.000000px;}
.fs0{font-size:58.500000px;}
.fs2{font-size:61.663798px;}
.fs4{font-size:67.500000px;}
.fs3{font-size:72.000000px;}
.fs6{font-size:85.650000px;}
.y0{bottom:0.000000px;}
.y42{bottom:3.375000px;}
.yad{bottom:3.390000px;}
.y8b{bottom:3.405000px;}
.y18{bottom:4.500000px;}
.ya1{bottom:4.515000px;}
.ya3{bottom:4.530000px;}
.y45{bottom:11.250000px;}
.yd{bottom:11.295000px;}
.yb{bottom:13.500000px;}
.y1a{bottom:13.545000px;}
.y3{bottom:15.750000px;}
.y41{bottom:21.405000px;}
.y46{bottom:22.545000px;}
.y4{bottom:23.625000px;}
.y44{bottom:25.920000px;}
.y17{bottom:27.045000px;}
.ya{bottom:30.405000px;}
.y2{bottom:36.037500px;}
.y40{bottom:38.280000px;}
.y16{bottom:43.920000px;}
.y9{bottom:46.155000px;}
.y1{bottom:46.162500px;}
.y3f{bottom:55.155000px;}
.y15{bottom:59.670000px;}
.y8{bottom:73.185000px;}
.y3e{bottom:73.200000px;}
.y14{bottom:76.575000px;}
.y13{bottom:86.700000px;}
.y3d{bottom:90.075000px;}
.y7{bottom:93.435000px;}
.y12{bottom:104.700000px;}
.y3c{bottom:106.995000px;}
.y8e{bottom:108.075000px;}
.y52{bottom:110.325000px;}
.y6{bottom:110.355000px;}
.ydc{bottom:115.950000px;}
.y11{bottom:123.870000px;}
.y3b{bottom:124.980000px;}
.y8d{bottom:124.987500px;}
.y51{bottom:127.237500px;}
.yfd{bottom:132.862500px;}
.ydb{bottom:133.987500px;}
.y8c{bottom:139.612500px;}
.y3a{bottom:141.855000px;}
.y50{bottom:144.112500px;}
.yfc{bottom:149.737500px;}
.y10{bottom:149.775000px;}
.yda{bottom:150.870000px;}
.y8a{bottom:157.620000px;}
.y39{bottom:158.775000px;}
.y4f{bottom:162.150000px;}
.yd9{bottom:167.775000px;}
.yb7{bottom:172.275000px;}
.yf{bottom:174.525000px;}
.y89{bottom:175.650000px;}
.y38{bottom:176.775000px;}
.y4e{bottom:179.025000px;}
.yfb{bottom:184.650000px;}
.yd8{bottom:185.775000px;}
.yb6{bottom:190.275000px;}
.y88{bottom:193.650000px;}
.y37{bottom:193.695000px;}
.y4d{bottom:195.900000px;}
.yfa{bottom:201.570000px;}
.yd7{bottom:202.695000px;}
.yb5{bottom:208.320000px;}
.y36{bottom:210.570000px;}
.y87{bottom:211.695000px;}
.y4c{bottom:213.945000px;}
.yd6{bottom:219.570000px;}
.yb4{bottom:226.320000px;}
.y35{bottom:228.600000px;}
.y4b{bottom:230.820000px;}
.y86{bottom:233.070000px;}
.yf9{bottom:236.445000px;}
.yd5{bottom:237.570000px;}
.yb3{bottom:244.350000px;}
.y34{bottom:245.475000px;}
.y4a{bottom:247.725000px;}
.y85{bottom:251.100000px;}
.y27{bottom:252.225000px;}
.yf8{bottom:253.350000px;}
.yd4{bottom:254.475000px;}
.y33{bottom:262.350000px;}
.y49{bottom:265.725000px;}
.y26{bottom:267.975000px;}
.yd3{bottom:271.350000px;}
.y32{bottom:280.395000px;}
.y48{bottom:282.600000px;}
.yb2{bottom:283.725000px;}
.y84{bottom:284.895000px;}
.y25{bottom:286.020000px;}
.yf7{bottom:288.270000px;}
.yd2{bottom:289.380000px;}
.y31{bottom:297.270000px;}
.y47{bottom:299.505000px;}
.yb1{bottom:300.630000px;}
.y24{bottom:302.895000px;}
.y83{bottom:304.005000px;}
.yf6{bottom:305.145000px;}
.yd1{bottom:306.255000px;}
.y43{bottom:313.005000px;}
.y30{bottom:314.175000px;}
.yb0{bottom:315.255000px;}
.y82{bottom:320.880000px;}
.y23{bottom:320.925000px;}
.yd0{bottom:323.130000px;}
.y2f{bottom:332.175000px;}
.yaf{bottom:333.300000px;}
.y22{bottom:337.800000px;}
.y81{bottom:338.925000px;}
.yf5{bottom:340.050000px;}
.ycf{bottom:341.175000px;}
.y2e{bottom:349.050000px;}
.y1b{bottom:350.175000px;}
.yae{bottom:351.300000px;}
.y80{bottom:355.800000px;}
.y21{bottom:355.845000px;}
.yf4{bottom:356.925000px;}
.yce{bottom:358.050000px;}
.y2d{bottom:365.970000px;}
.yac{bottom:369.330000px;}
.y20{bottom:372.720000px;}
.y7f{bottom:374.955000px;}
.y2c{bottom:383.955000px;}
.yab{bottom:387.330000px;}
.y1f{bottom:390.705000px;}
.yf3{bottom:391.830000px;}
.y7e{bottom:392.970000px;}
.y2b{bottom:400.875000px;}
.yaa{bottom:405.330000px;}
.yf2{bottom:408.705000px;}
.y1e{bottom:409.875000px;}
.y2a{bottom:417.750000px;}
.ya9{bottom:426.750000px;}
.y7d{bottom:427.875000px;}
.y29{bottom:435.780000px;}
.y1d{bottom:436.905000px;}
.yf1{bottom:443.625000px;}
.ya8{bottom:444.750000px;}
.y7c{bottom:445.875000px;}
.y28{bottom:452.655000px;}
.y1c{bottom:454.905000px;}
.ya7{bottom:458.280000px;}
.yf0{bottom:460.545000px;}
.ycd{bottom:461.655000px;}
.y7b{bottom:463.920000px;}
.ya6{bottom:476.280000px;}
.ycc{bottom:478.530000px;}
.y7a{bottom:481.905000px;}
.ya5{bottom:494.325000px;}
.yef{bottom:495.450000px;}
.ycb{bottom:496.575000px;}
.y79{bottom:498.825000px;}
.ya4{bottom:512.325000px;}
.yca{bottom:513.450000px;}
.y78{bottom:516.825000px;}
.ya2{bottom:530.325000px;}
.y77{bottom:534.855000px;}
.yee{bottom:547.245000px;}
.ya0{bottom:548.355000px;}
.y76{bottom:551.730000px;}
.yed{bottom:564.120000px;}
.yc9{bottom:565.230000px;}
.y75{bottom:569.745000px;}
.y9f{bottom:570.870000px;}
.yc8{bottom:582.150000px;}
.y74{bottom:586.650000px;}
.y9e{bottom:587.775000px;}
.yec{bottom:599.025000px;}
.yc7{bottom:600.150000px;}
.y9d{bottom:602.400000px;}
.y73{bottom:605.775000px;}
.yeb{bottom:615.900000px;}
.yc6{bottom:617.025000px;}
.y9c{bottom:620.445000px;}
.y72{bottom:623.820000px;}
.yc5{bottom:631.695000px;}
.yea{bottom:633.945000px;}
.y9b{bottom:638.445000px;}
.y71{bottom:640.695000px;}
.yc4{bottom:649.695000px;}
.ye9{bottom:650.820000px;}
.y70{bottom:658.695000px;}
.y9a{bottom:659.820000px;}
.yc3{bottom:667.725000px;}
.y6f{bottom:676.725000px;}
.yc2{bottom:685.725000px;}
.y6e{bottom:694.725000px;}
.ye8{bottom:702.645000px;}
.yc1{bottom:703.755000px;}
.y99{bottom:708.255000px;}
.y6d{bottom:713.880000px;}
.ye7{bottom:719.520000px;}
.yc0{bottom:725.130000px;}
.y6c{bottom:731.880000px;}
.ye6{bottom:737.505000px;}
.ybf{bottom:742.005000px;}
.y6b{bottom:748.800000px;}
.ye5{bottom:754.425000px;}
.ybe{bottom:756.675000px;}
.y6a{bottom:766.800000px;}
.ye4{bottom:771.300000px;}
.ybd{bottom:774.675000px;}
.y69{bottom:784.800000px;}
.ye3{bottom:789.330000px;}
.ybc{bottom:792.705000px;}
.y68{bottom:802.830000px;}
.ye2{bottom:806.205000px;}
.ybb{bottom:814.080000px;}
.y19{bottom:816.330000px;}
.y67{bottom:820.830000px;}
.ye1{bottom:823.080000px;}
.yba{bottom:832.125000px;}
.y66{bottom:838.875000px;}
.ye0{bottom:841.125000px;}
.ye{bottom:845.625000px;}
.yb9{bottom:849.000000px;}
.y65{bottom:855.750000px;}
.ydf{bottom:858.000000px;}
.yb8{bottom:862.500000px;}
.y64{bottom:873.795000px;}
.yde{bottom:874.920000px;}
.y63{bottom:891.795000px;}
.ydd{bottom:892.920000px;}
.y62{bottom:909.795000px;}
.y61{bottom:926.700000px;}
.y60{bottom:944.700000px;}
.y5f{bottom:961.620000px;}
.y5e{bottom:978.495000px;}
.y98{bottom:988.620000px;}
.y5d{bottom:996.525000px;}
.y97{bottom:1003.275000px;}
.y5c{bottom:1013.400000px;}
.y96{bottom:1021.275000px;}
.y5b{bottom:1030.275000px;}
.yc{bottom:1034.775000px;}
.y95{bottom:1039.320000px;}
.y5a{bottom:1048.320000px;}
.y5{bottom:1060.695000px;}
.y59{bottom:1065.195000px;}
.y94{bottom:1077.600000px;}
.y58{bottom:1082.100000px;}
.y93{bottom:1092.225000px;}
.y57{bottom:1100.100000px;}
.y92{bottom:1110.225000px;}
.y56{bottom:1116.975000px;}
.y91{bottom:1128.255000px;}
.y55{bottom:1133.880000px;}
.y90{bottom:1146.255000px;}
.y54{bottom:1151.880000px;}
.y8f{bottom:1164.300000px;}
.y53{bottom:1168.800000px;}
.h1f{height:16.875000px;}
.h20{height:16.912500px;}
.h21{height:18.000000px;}
.h22{height:18.037500px;}
.hd{height:25.912500px;}
.h15{height:27.738281px;}
.h16{height:29.287500px;}
.h14{height:35.806641px;}
.h9{height:37.125000px;}
.h1d{height:37.162500px;}
.h1b{height:37.801758px;}
.h1c{height:40.847168px;}
.h5{height:41.275635px;}
.h3{height:41.389893px;}
.h1e{height:42.589600px;}
.h10{height:43.075195px;}
.hb{height:43.875000px;}
.h1a{height:44.674805px;}
.h19{height:49.234131px;}
.h2{height:49.537500px;}
.h6{height:50.273438px;}
.he{height:50.625000px;}
.h4{height:51.968611px;}
.ha{height:54.000000px;}
.h12{height:58.185791px;}
.h13{height:59.899658px;}
.h11{height:64.237500px;}
.h8{height:67.137451px;}
.h17{height:69.114990px;}
.hc{height:71.613281px;}
.h7{height:121.612500px;}
.hf{height:189.150000px;}
.h18{height:466.155000px;}
.h0{height:1263.375000px;}
.h1{height:1263.750000px;}
.w2{width:74.362500px;}
.w19{width:75.487500px;}
.wd{width:84.487500px;}
.w15{width:95.737500px;}
.w1d{width:97.987500px;}
.w23{width:112.650000px;}
.w11{width:113.775000px;}
.wc{width:127.275000px;}
.w1f{width:145.312500px;}
.w1e{width:146.437500px;}
.w20{width:149.812500px;}
.w4{width:152.055000px;}
.wb{width:156.600000px;}
.wa{width:158.805000px;}
.w10{width:163.305000px;}
.wf{width:164.445000px;}
.w1a{width:166.680000px;}
.w16{width:182.475000px;}
.w12{width:194.850000px;}
.w9{width:218.520000px;}
.w7{width:223.020000px;}
.w14{width:226.425000px;}
.w13{width:228.675000px;}
.w1c{width:239.970000px;}
.w1b{width:242.175000px;}
.w18{width:243.300000px;}
.w17{width:244.425000px;}
.we{width:305.250000px;}
.w21{width:354.825000px;}
.w22{width:372.825000px;}
.w8{width:524.925000px;}
.w5{width:595.875000px;}
.w1{width:674.745000px;}
.w6{width:747.945000px;}
.w3{width:893.249987px;}
.w0{width:893.250000px;}
.x0{left:0.000000px;}
.xa{left:7.875000px;}
.x2{left:9.037500px;}
.x18{left:12.420000px;}
.x10{left:59.700000px;}
.x1{left:72.075000px;}
.x7{left:73.237500px;}
.x6{left:81.112487px;}
.x8{left:97.987500px;}
.x19{left:108.149987px;}
.x39{left:129.524987px;}
.x1a{left:135.187487px;}
.x11{left:186.967500px;}
.x12{left:193.717500px;}
.x16{left:214.012500px;}
.x9{left:225.300000px;}
.x32{left:226.425000px;}
.x13{left:229.762500px;}
.x15{left:233.137500px;}
.x2e{left:239.925000px;}
.x14{left:256.792500px;}
.x25{left:268.095000px;}
.x31{left:271.469987px;}
.xd{left:290.625000px;}
.x1c{left:291.750000px;}
.x35{left:292.874987px;}
.x17{left:296.250000px;}
.x2d{left:323.279987px;}
.x1b{left:324.404987px;}
.x20{left:342.449987px;}
.xb{left:345.780000px;}
.x2a{left:349.199987px;}
.x29{left:361.574987px;}
.x24{left:363.824987px;}
.xc{left:364.950000px;}
.xf{left:373.957500px;}
.x21{left:378.495000px;}
.x37{left:429.195000px;}
.x3{left:442.725000px;}
.x3a{left:446.070000px;}
.x1d{left:450.570000px;}
.xe{left:453.945000px;}
.x4{left:470.850000px;}
.x2f{left:482.100000px;}
.x26{left:497.895000px;}
.x2b{left:502.395000px;}
.x33{left:520.425000px;}
.x22{left:544.095000px;}
.x3b{left:560.970000px;}
.x38{left:576.750000px;}
.x1e{left:608.280000px;}
.x28{left:667.994987px;}
.x34{left:671.370000px;}
.x3c{left:674.745000px;}
.x36{left:689.369987px;}
.x23{left:707.400000px;}
.x30{left:723.195000px;}
.x27{left:725.445000px;}
.x1f{left:736.695000px;}
.x2c{left:745.695000px;}
.x5{left:746.820000px;}
@media print{
.v2{vertical-align:-12.000000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:16.000000pt;}
.ls15{letter-spacing:-1.546667pt;}
.ls9{letter-spacing:-1.317333pt;}
.ls8{letter-spacing:-1.002667pt;}
.lsa{letter-spacing:-0.854509pt;}
.lsd{letter-spacing:-0.725333pt;}
.lsb{letter-spacing:-0.704000pt;}
.lsf{letter-spacing:-0.693333pt;}
.ls7{letter-spacing:0.000000pt;}
.ls12{letter-spacing:0.080000pt;}
.ls4{letter-spacing:0.106667pt;}
.ls0{letter-spacing:0.160000pt;}
.lsc{letter-spacing:0.613333pt;}
.ls18{letter-spacing:0.884000pt;}
.ls2{letter-spacing:1.648000pt;}
.lse{letter-spacing:1.728000pt;}
.ls3{letter-spacing:1.748000pt;}
.ls17{letter-spacing:1.924000pt;}
.ls10{letter-spacing:1.946667pt;}
.ls1{letter-spacing:2.000000pt;}
.ls14{letter-spacing:2.053333pt;}
.ls5{letter-spacing:2.064000pt;}
.ls11{letter-spacing:2.106667pt;}
.ls16{letter-spacing:2.133333pt;}
.ls1a{letter-spacing:2.160000pt;}
.ls6{letter-spacing:4.248000pt;}
.ls1b{letter-spacing:4.912000pt;}
.ls1c{letter-spacing:13.677333pt;}
.ls19{letter-spacing:41.677333pt;}
.ls13{letter-spacing:57.677333pt;}
.ws1{word-spacing:-54.812265pt;}
.ws6{word-spacing:-23.045333pt;}
.ws5{word-spacing:-20.592000pt;}
.ws2{word-spacing:-15.000000pt;}
.wsc{word-spacing:-14.924000pt;}
.ws4{word-spacing:-14.352000pt;}
.wsb{word-spacing:-13.884000pt;}
.ws3{word-spacing:-13.648000pt;}
.ws8{word-spacing:-13.000000pt;}
.ws0{word-spacing:-12.000000pt;}
.ws9{word-spacing:-11.752000pt;}
.ws7{word-spacing:-7.232000pt;}
.wsa{word-spacing:0.000000pt;}
._f{margin-left:-5.701333pt;}
._16{margin-left:-4.771600pt;}
._b{margin-left:-3.806933pt;}
._a{margin-left:-2.457200pt;}
._0{margin-left:-1.560000pt;}
._3{width:1.196000pt;}
._2{width:2.236000pt;}
._7{width:3.380000pt;}
._8{width:4.876000pt;}
._10{width:6.589200pt;}
._c{width:7.632933pt;}
._9{width:9.597333pt;}
._11{width:10.598533pt;}
._e{width:11.611467pt;}
._d{width:12.987600pt;}
._5{width:14.753333pt;}
._6{width:15.733333pt;}
._17{width:17.139067pt;}
._4{width:18.753333pt;}
._1{width:19.812000pt;}
._18{width:22.153733pt;}
._13{width:23.594400pt;}
._19{width:25.335467pt;}
._12{width:26.468000pt;}
._1b{width:30.849067pt;}
._1a{width:31.772133pt;}
._14{width:34.241200pt;}
._15{width:35.529200pt;}
.fs8{font-size:32.000000pt;}
.fs7{font-size:36.000000pt;}
.fs5{font-size:44.000000pt;}
.fs1{font-size:48.000000pt;}
.fs0{font-size:52.000000pt;}
.fs2{font-size:54.812265pt;}
.fs4{font-size:60.000000pt;}
.fs3{font-size:64.000000pt;}
.fs6{font-size:76.133333pt;}
.y0{bottom:0.000000pt;}
.y42{bottom:3.000000pt;}
.yad{bottom:3.013333pt;}
.y8b{bottom:3.026667pt;}
.y18{bottom:4.000000pt;}
.ya1{bottom:4.013333pt;}
.ya3{bottom:4.026667pt;}
.y45{bottom:10.000000pt;}
.yd{bottom:10.040000pt;}
.yb{bottom:12.000000pt;}
.y1a{bottom:12.040000pt;}
.y3{bottom:14.000000pt;}
.y41{bottom:19.026667pt;}
.y46{bottom:20.040000pt;}
.y4{bottom:21.000000pt;}
.y44{bottom:23.040000pt;}
.y17{bottom:24.040000pt;}
.ya{bottom:27.026667pt;}
.y2{bottom:32.033333pt;}
.y40{bottom:34.026667pt;}
.y16{bottom:39.040000pt;}
.y9{bottom:41.026667pt;}
.y1{bottom:41.033333pt;}
.y3f{bottom:49.026667pt;}
.y15{bottom:53.040000pt;}
.y8{bottom:65.053333pt;}
.y3e{bottom:65.066667pt;}
.y14{bottom:68.066667pt;}
.y13{bottom:77.066667pt;}
.y3d{bottom:80.066667pt;}
.y7{bottom:83.053333pt;}
.y12{bottom:93.066667pt;}
.y3c{bottom:95.106667pt;}
.y8e{bottom:96.066667pt;}
.y52{bottom:98.066667pt;}
.y6{bottom:98.093333pt;}
.ydc{bottom:103.066667pt;}
.y11{bottom:110.106667pt;}
.y3b{bottom:111.093333pt;}
.y8d{bottom:111.100000pt;}
.y51{bottom:113.100000pt;}
.yfd{bottom:118.100000pt;}
.ydb{bottom:119.100000pt;}
.y8c{bottom:124.100000pt;}
.y3a{bottom:126.093333pt;}
.y50{bottom:128.100000pt;}
.yfc{bottom:133.100000pt;}
.y10{bottom:133.133333pt;}
.yda{bottom:134.106667pt;}
.y8a{bottom:140.106667pt;}
.y39{bottom:141.133333pt;}
.y4f{bottom:144.133333pt;}
.yd9{bottom:149.133333pt;}
.yb7{bottom:153.133333pt;}
.yf{bottom:155.133333pt;}
.y89{bottom:156.133333pt;}
.y38{bottom:157.133333pt;}
.y4e{bottom:159.133333pt;}
.yfb{bottom:164.133333pt;}
.yd8{bottom:165.133333pt;}
.yb6{bottom:169.133333pt;}
.y88{bottom:172.133333pt;}
.y37{bottom:172.173333pt;}
.y4d{bottom:174.133333pt;}
.yfa{bottom:179.173333pt;}
.yd7{bottom:180.173333pt;}
.yb5{bottom:185.173333pt;}
.y36{bottom:187.173333pt;}
.y87{bottom:188.173333pt;}
.y4c{bottom:190.173333pt;}
.yd6{bottom:195.173333pt;}
.yb4{bottom:201.173333pt;}
.y35{bottom:203.200000pt;}
.y4b{bottom:205.173333pt;}
.y86{bottom:207.173333pt;}
.yf9{bottom:210.173333pt;}
.yd5{bottom:211.173333pt;}
.yb3{bottom:217.200000pt;}
.y34{bottom:218.200000pt;}
.y4a{bottom:220.200000pt;}
.y85{bottom:223.200000pt;}
.y27{bottom:224.200000pt;}
.yf8{bottom:225.200000pt;}
.yd4{bottom:226.200000pt;}
.y33{bottom:233.200000pt;}
.y49{bottom:236.200000pt;}
.y26{bottom:238.200000pt;}
.yd3{bottom:241.200000pt;}
.y32{bottom:249.240000pt;}
.y48{bottom:251.200000pt;}
.yb2{bottom:252.200000pt;}
.y84{bottom:253.240000pt;}
.y25{bottom:254.240000pt;}
.yf7{bottom:256.240000pt;}
.yd2{bottom:257.226667pt;}
.y31{bottom:264.240000pt;}
.y47{bottom:266.226667pt;}
.yb1{bottom:267.226667pt;}
.y24{bottom:269.240000pt;}
.y83{bottom:270.226667pt;}
.yf6{bottom:271.240000pt;}
.yd1{bottom:272.226667pt;}
.y43{bottom:278.226667pt;}
.y30{bottom:279.266667pt;}
.yb0{bottom:280.226667pt;}
.y82{bottom:285.226667pt;}
.y23{bottom:285.266667pt;}
.yd0{bottom:287.226667pt;}
.y2f{bottom:295.266667pt;}
.yaf{bottom:296.266667pt;}
.y22{bottom:300.266667pt;}
.y81{bottom:301.266667pt;}
.yf5{bottom:302.266667pt;}
.ycf{bottom:303.266667pt;}
.y2e{bottom:310.266667pt;}
.y1b{bottom:311.266667pt;}
.yae{bottom:312.266667pt;}
.y80{bottom:316.266667pt;}
.y21{bottom:316.306667pt;}
.yf4{bottom:317.266667pt;}
.yce{bottom:318.266667pt;}
.y2d{bottom:325.306667pt;}
.yac{bottom:328.293333pt;}
.y20{bottom:331.306667pt;}
.y7f{bottom:333.293333pt;}
.y2c{bottom:341.293333pt;}
.yab{bottom:344.293333pt;}
.y1f{bottom:347.293333pt;}
.yf3{bottom:348.293333pt;}
.y7e{bottom:349.306667pt;}
.y2b{bottom:356.333333pt;}
.yaa{bottom:360.293333pt;}
.yf2{bottom:363.293333pt;}
.y1e{bottom:364.333333pt;}
.y2a{bottom:371.333333pt;}
.ya9{bottom:379.333333pt;}
.y7d{bottom:380.333333pt;}
.y29{bottom:387.360000pt;}
.y1d{bottom:388.360000pt;}
.yf1{bottom:394.333333pt;}
.ya8{bottom:395.333333pt;}
.y7c{bottom:396.333333pt;}
.y28{bottom:402.360000pt;}
.y1c{bottom:404.360000pt;}
.ya7{bottom:407.360000pt;}
.yf0{bottom:409.373333pt;}
.ycd{bottom:410.360000pt;}
.y7b{bottom:412.373333pt;}
.ya6{bottom:423.360000pt;}
.ycc{bottom:425.360000pt;}
.y7a{bottom:428.360000pt;}
.ya5{bottom:439.400000pt;}
.yef{bottom:440.400000pt;}
.ycb{bottom:441.400000pt;}
.y79{bottom:443.400000pt;}
.ya4{bottom:455.400000pt;}
.yca{bottom:456.400000pt;}
.y78{bottom:459.400000pt;}
.ya2{bottom:471.400000pt;}
.y77{bottom:475.426667pt;}
.yee{bottom:486.440000pt;}
.ya0{bottom:487.426667pt;}
.y76{bottom:490.426667pt;}
.yed{bottom:501.440000pt;}
.yc9{bottom:502.426667pt;}
.y75{bottom:506.440000pt;}
.y9f{bottom:507.440000pt;}
.yc8{bottom:517.466667pt;}
.y74{bottom:521.466667pt;}
.y9e{bottom:522.466667pt;}
.yec{bottom:532.466667pt;}
.yc7{bottom:533.466667pt;}
.y9d{bottom:535.466667pt;}
.y73{bottom:538.466667pt;}
.yeb{bottom:547.466667pt;}
.yc6{bottom:548.466667pt;}
.y9c{bottom:551.506667pt;}
.y72{bottom:554.506667pt;}
.yc5{bottom:561.506667pt;}
.yea{bottom:563.506667pt;}
.y9b{bottom:567.506667pt;}
.y71{bottom:569.506667pt;}
.yc4{bottom:577.506667pt;}
.ye9{bottom:578.506667pt;}
.y70{bottom:585.506667pt;}
.y9a{bottom:586.506667pt;}
.yc3{bottom:593.533333pt;}
.y6f{bottom:601.533333pt;}
.yc2{bottom:609.533333pt;}
.y6e{bottom:617.533333pt;}
.ye8{bottom:624.573333pt;}
.yc1{bottom:625.560000pt;}
.y99{bottom:629.560000pt;}
.y6d{bottom:634.560000pt;}
.ye7{bottom:639.573333pt;}
.yc0{bottom:644.560000pt;}
.y6c{bottom:650.560000pt;}
.ye6{bottom:655.560000pt;}
.ybf{bottom:659.560000pt;}
.y6b{bottom:665.600000pt;}
.ye5{bottom:670.600000pt;}
.ybe{bottom:672.600000pt;}
.y6a{bottom:681.600000pt;}
.ye4{bottom:685.600000pt;}
.ybd{bottom:688.600000pt;}
.y69{bottom:697.600000pt;}
.ye3{bottom:701.626667pt;}
.ybc{bottom:704.626667pt;}
.y68{bottom:713.626667pt;}
.ye2{bottom:716.626667pt;}
.ybb{bottom:723.626667pt;}
.y19{bottom:725.626667pt;}
.y67{bottom:729.626667pt;}
.ye1{bottom:731.626667pt;}
.yba{bottom:739.666667pt;}
.y66{bottom:745.666667pt;}
.ye0{bottom:747.666667pt;}
.ye{bottom:751.666667pt;}
.yb9{bottom:754.666667pt;}
.y65{bottom:760.666667pt;}
.ydf{bottom:762.666667pt;}
.yb8{bottom:766.666667pt;}
.y64{bottom:776.706667pt;}
.yde{bottom:777.706667pt;}
.y63{bottom:792.706667pt;}
.ydd{bottom:793.706667pt;}
.y62{bottom:808.706667pt;}
.y61{bottom:823.733333pt;}
.y60{bottom:839.733333pt;}
.y5f{bottom:854.773333pt;}
.y5e{bottom:869.773333pt;}
.y98{bottom:878.773333pt;}
.y5d{bottom:885.800000pt;}
.y97{bottom:891.800000pt;}
.y5c{bottom:900.800000pt;}
.y96{bottom:907.800000pt;}
.y5b{bottom:915.800000pt;}
.yc{bottom:919.800000pt;}
.y95{bottom:923.840000pt;}
.y5a{bottom:931.840000pt;}
.y5{bottom:942.840000pt;}
.y59{bottom:946.840000pt;}
.y94{bottom:957.866667pt;}
.y58{bottom:961.866667pt;}
.y93{bottom:970.866667pt;}
.y57{bottom:977.866667pt;}
.y92{bottom:986.866667pt;}
.y56{bottom:992.866667pt;}
.y91{bottom:1002.893333pt;}
.y55{bottom:1007.893333pt;}
.y90{bottom:1018.893333pt;}
.y54{bottom:1023.893333pt;}
.y8f{bottom:1034.933333pt;}
.y53{bottom:1038.933333pt;}
.h1f{height:15.000000pt;}
.h20{height:15.033333pt;}
.h21{height:16.000000pt;}
.h22{height:16.033333pt;}
.hd{height:23.033333pt;}
.h15{height:24.656250pt;}
.h16{height:26.033333pt;}
.h14{height:31.828125pt;}
.h9{height:33.000000pt;}
.h1d{height:33.033333pt;}
.h1b{height:33.601562pt;}
.h1c{height:36.308594pt;}
.h5{height:36.689453pt;}
.h3{height:36.791016pt;}
.h1e{height:37.857422pt;}
.h10{height:38.289062pt;}
.hb{height:39.000000pt;}
.h1a{height:39.710938pt;}
.h19{height:43.763672pt;}
.h2{height:44.033333pt;}
.h6{height:44.687500pt;}
.he{height:45.000000pt;}
.h4{height:46.194321pt;}
.ha{height:48.000000pt;}
.h12{height:51.720703pt;}
.h13{height:53.244141pt;}
.h11{height:57.100000pt;}
.h8{height:59.677734pt;}
.h17{height:61.435547pt;}
.hc{height:63.656250pt;}
.h7{height:108.100000pt;}
.hf{height:168.133333pt;}
.h18{height:414.360000pt;}
.h0{height:1123.000000pt;}
.h1{height:1123.333333pt;}
.w2{width:66.100000pt;}
.w19{width:67.100000pt;}
.wd{width:75.100000pt;}
.w15{width:85.100000pt;}
.w1d{width:87.100000pt;}
.w23{width:100.133333pt;}
.w11{width:101.133333pt;}
.wc{width:113.133333pt;}
.w1f{width:129.166667pt;}
.w1e{width:130.166667pt;}
.w20{width:133.166667pt;}
.w4{width:135.160000pt;}
.wb{width:139.200000pt;}
.wa{width:141.160000pt;}
.w10{width:145.160000pt;}
.wf{width:146.173333pt;}
.w1a{width:148.160000pt;}
.w16{width:162.200000pt;}
.w12{width:173.200000pt;}
.w9{width:194.240000pt;}
.w7{width:198.240000pt;}
.w14{width:201.266667pt;}
.w13{width:203.266667pt;}
.w1c{width:213.306667pt;}
.w1b{width:215.266667pt;}
.w18{width:216.266667pt;}
.w17{width:217.266667pt;}
.we{width:271.333333pt;}
.w21{width:315.400000pt;}
.w22{width:331.400000pt;}
.w8{width:466.600000pt;}
.w5{width:529.666667pt;}
.w1{width:599.773333pt;}
.w6{width:664.840000pt;}
.w3{width:793.999988pt;}
.w0{width:794.000000pt;}
.x0{left:0.000000pt;}
.xa{left:7.000000pt;}
.x2{left:8.033333pt;}
.x18{left:11.040000pt;}
.x10{left:53.066667pt;}
.x1{left:64.066667pt;}
.x7{left:65.100000pt;}
.x6{left:72.099988pt;}
.x8{left:87.100000pt;}
.x19{left:96.133322pt;}
.x39{left:115.133322pt;}
.x1a{left:120.166655pt;}
.x11{left:166.193333pt;}
.x12{left:172.193333pt;}
.x16{left:190.233333pt;}
.x9{left:200.266667pt;}
.x32{left:201.266667pt;}
.x13{left:204.233333pt;}
.x15{left:207.233333pt;}
.x2e{left:213.266667pt;}
.x14{left:228.260000pt;}
.x25{left:238.306667pt;}
.x31{left:241.306655pt;}
.xd{left:258.333333pt;}
.x1c{left:259.333333pt;}
.x35{left:260.333322pt;}
.x17{left:263.333333pt;}
.x2d{left:287.359988pt;}
.x1b{left:288.359988pt;}
.x20{left:304.399988pt;}
.xb{left:307.360000pt;}
.x2a{left:310.399988pt;}
.x29{left:321.399988pt;}
.x24{left:323.399988pt;}
.xc{left:324.400000pt;}
.xf{left:332.406667pt;}
.x21{left:336.440000pt;}
.x37{left:381.506667pt;}
.x3{left:393.533333pt;}
.x3a{left:396.506667pt;}
.x1d{left:400.506667pt;}
.xe{left:403.506667pt;}
.x4{left:418.533333pt;}
.x2f{left:428.533333pt;}
.x26{left:442.573333pt;}
.x2b{left:446.573333pt;}
.x33{left:462.600000pt;}
.x22{left:483.640000pt;}
.x3b{left:498.640000pt;}
.x38{left:512.666667pt;}
.x1e{left:540.693333pt;}
.x28{left:593.773322pt;}
.x34{left:596.773333pt;}
.x3c{left:599.773333pt;}
.x36{left:612.773322pt;}
.x23{left:628.800000pt;}
.x30{left:642.840000pt;}
.x27{left:644.840000pt;}
.x1f{left:654.840000pt;}
.x2c{left:662.840000pt;}
.x5{left:663.840000pt;}
}




    .paper-inline-ad { box-sizing: border-box; margin: 13px auto; max-width: 100%; min-height: 120px; background: #fff; border: 1px solid #e5e7eb; overflow: hidden; }
    .paper-inline-ad-label { padding: 6px 10px 0 10px; font: 10px system-ui, sans-serif; color: #9ca3af; text-transform: uppercase; letter-spacing: .04em; }
    .paper-inline-ad-slot { min-height: 100px; }
    .paper-inline-ad--internal { padding: 0; }
    .paper-internal-promo { padding: 14px 16px 16px 16px; font: 13px system-ui, sans-serif; line-height: 1.45; color: #374151; }
    .paper-internal-promo-title { font-size: 17px; font-weight: 800; color: #111827; margin-bottom: 7px; }
    .paper-internal-promo-body { margin-bottom: 12px; }
    .paper-internal-promo-actions { display: flex; flex-wrap: wrap; gap: 8px; }
    .paper-internal-promo-actions a { display: inline-block; padding: 7px 10px; border: 1px solid #d1d5db; border-radius: 8px; text-decoration: none; color: #111827; background: #f9fafb; font-weight: 700; }
  