
    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_c06351c23b24286906eb4c33.woff')format("woff");}.ff1{font-family:ff1;line-height:1.148926;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_7d06fd25c18f68ee0c6968f1.woff')format("woff");}.ff2{font-family:ff2;line-height:1.172852;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_8387b4d9f1036ce2e804f98a.woff')format("woff");}.ff3{font-family:ff3;line-height:0.973145;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_741dd651f8c558dc630cca24.woff')format("woff");}.ff4{font-family:ff4;line-height:0.973145;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_2cc01369a34c70228ab283f8.woff')format("woff");}.ff5{font-family:ff5;line-height:0.941406;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_d0c7cbf13512a2d9c24f43b0.woff')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_1f039661180bc31085041b3a.woff')format("woff");}.ff7{font-family:ff7;line-height:0.970215;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_5f2d09a0c585ffac71973771.woff')format("woff");}.ff8{font-family:ff8;line-height:0.750000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_fa75b3d149c525a4b9cefb92.woff')format("woff");}.ff9{font-family:ff9;line-height:0.958008;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_aeab618033ddef3359fe9f72.woff')format("woff");}.ffa{font-family:ffa;line-height:0.966797;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_20efe257d90845368d1c42a5.woff')format("woff");}.ffb{font-family:ffb;line-height:0.948242;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_4142d1530bfdb51d07630611.woff')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_baa3734c4c24e473b51c7bf0.woff')format("woff");}.ffd{font-family:ffd;line-height:0.920410;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_574dd3a91c0c206dffd323f8.woff')format("woff");}.ffe{font-family:ffe;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:fff;src:url('chunks/assets/font_5e29c8127da3dbf1e8d7fb56.woff')format("woff");}.fff{font-family:fff;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:ff10;src:url('chunks/assets/font_6c6de3c0267efd78cdee9708.woff')format("woff");}.ff10{font-family:ff10;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:ff11;src:url('chunks/assets/font_fb1e1be2d64193cb730dd35b.woff')format("woff");}.ff11{font-family:ff11;line-height:0.961914;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-18.000000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:18.000000px;}
.ls29{letter-spacing:-5.628000px;}
.ls1c{letter-spacing:-2.802000px;}
.lsf{letter-spacing:-2.766000px;}
.ls34{letter-spacing:-2.610000px;}
.ls36{letter-spacing:-2.250000px;}
.ls26{letter-spacing:-1.740000px;}
.ls33{letter-spacing:-1.530000px;}
.ls9{letter-spacing:-1.458000px;}
.ls12{letter-spacing:-1.332000px;}
.ls28{letter-spacing:-1.128000px;}
.ls2b{letter-spacing:-1.110000px;}
.lsc{letter-spacing:-0.792000px;}
.ls1d{letter-spacing:-0.618000px;}
.lsb{letter-spacing:-0.504000px;}
.lse{letter-spacing:-0.481200px;}
.lsa{letter-spacing:-0.378000px;}
.ls37{letter-spacing:-0.256200px;}
.ls2c{letter-spacing:-0.165000px;}
.ls7{letter-spacing:0.000000px;}
.ls1a{letter-spacing:0.256200px;}
.lsd{letter-spacing:0.690000px;}
.ls11{letter-spacing:1.026000px;}
.ls15{letter-spacing:1.176000px;}
.ls8{letter-spacing:1.188000px;}
.ls0{letter-spacing:1.416000px;}
.ls1{letter-spacing:1.476000px;}
.ls1f{letter-spacing:1.482000px;}
.ls13{letter-spacing:1.698000px;}
.ls10{letter-spacing:1.740000px;}
.ls5{letter-spacing:1.797000px;}
.ls2d{letter-spacing:1.848000px;}
.ls20{letter-spacing:1.884000px;}
.ls38{letter-spacing:1.992000px;}
.ls30{letter-spacing:2.164500px;}
.ls16{letter-spacing:2.178000px;}
.ls25{letter-spacing:2.238000px;}
.ls2{letter-spacing:2.250000px;}
.ls1e{letter-spacing:2.328000px;}
.ls14{letter-spacing:2.400000px;}
.ls31{letter-spacing:2.430000px;}
.ls39{letter-spacing:2.760000px;}
.ls2a{letter-spacing:2.970000px;}
.ls35{letter-spacing:3.018000px;}
.ls4{letter-spacing:3.315000px;}
.ls17{letter-spacing:3.337500px;}
.ls24{letter-spacing:3.375000px;}
.ls2f{letter-spacing:3.397500px;}
.ls18{letter-spacing:3.525000px;}
.ls27{letter-spacing:3.990000px;}
.ls32{letter-spacing:4.134000px;}
.ls21{letter-spacing:5.460000px;}
.ls22{letter-spacing:5.526000px;}
.ls23{letter-spacing:5.610000px;}
.ls1b{letter-spacing:5.676000px;}
.ls6{letter-spacing:10.737000px;}
.ls3{letter-spacing:12.375000px;}
.ls2e{letter-spacing:17.055000px;}
.ls19{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;}
}
.ws14{word-spacing:-20.301000px;}
.ws1d{word-spacing:-20.272500px;}
.ws1c{word-spacing:-20.151000px;}
.ws1b{word-spacing:-20.122500px;}
.ws25{word-spacing:-18.759000px;}
.ws20{word-spacing:-18.615000px;}
.ws28{word-spacing:-17.643000px;}
.ws22{word-spacing:-17.632500px;}
.ws2c{word-spacing:-17.385000px;}
.ws10{word-spacing:-17.025000px;}
.ws18{word-spacing:-16.990500px;}
.ws9{word-spacing:-16.875000px;}
.ws16{word-spacing:-16.840500px;}
.ws2b{word-spacing:-16.617000px;}
.ws24{word-spacing:-16.510500px;}
.ws1a{word-spacing:-16.509000px;}
.wsc{word-spacing:-16.365000px;}
.wsf{word-spacing:-16.360500px;}
.wsa{word-spacing:-16.263000px;}
.ws5{word-spacing:-16.146000px;}
.ws19{word-spacing:-16.107000px;}
.ws11{word-spacing:-15.801000px;}
.ws3{word-spacing:-15.768000px;}
.wsd{word-spacing:-15.651000px;}
.ws4{word-spacing:-15.354000px;}
.ws13{word-spacing:-14.881200px;}
.ws8{word-spacing:-14.625000px;}
.ws23{word-spacing:-14.497500px;}
.ws2a{word-spacing:-14.368800px;}
.ws17{word-spacing:-14.007000px;}
.ws21{word-spacing:-13.552500px;}
.ws0{word-spacing:-13.392000px;}
.wse{word-spacing:-13.293000px;}
.ws26{word-spacing:-13.132500px;}
.ws1f{word-spacing:-12.885000px;}
.ws29{word-spacing:-12.375000px;}
.ws1e{word-spacing:-12.363000px;}
.ws27{word-spacing:-12.015000px;}
.ws15{word-spacing:-11.860500px;}
.wsb{word-spacing:-11.859000px;}
.ws2{word-spacing:-11.826000px;}
.ws6{word-spacing:-11.259000px;}
.ws1{word-spacing:-10.746000px;}
.ws7{word-spacing:-10.008000px;}
.ws12{word-spacing:0.000000px;}
._15{margin-left:-7.578000px;}
._e{margin-left:-6.151500px;}
._d{margin-left:-4.518000px;}
._a{margin-left:-3.502500px;}
._2{margin-left:-2.322000px;}
._1{margin-left:-1.188000px;}
._0{width:1.944000px;}
._3{width:3.156000px;}
._4{width:4.488000px;}
._6{width:6.457500px;}
._b{width:7.849500px;}
._1c{width:8.863500px;}
._5{width:9.864000px;}
._9{width:11.682000px;}
._7{width:13.309500px;}
._c{width:16.444500px;}
._8{width:17.616000px;}
._14{width:20.802000px;}
._12{width:25.714500px;}
._10{width:31.215000px;}
._13{width:35.404500px;}
._f{width:38.589000px;}
._11{width:44.457000px;}
._1b{width:629.655000px;}
._18{width:945.075000px;}
._16{width:994.575000px;}
._1a{width:1053.195000px;}
._19{width:1125.255000px;}
._17{width:1152.195000px;}
.fc5{color:rgb(227,108,10);}
.fc4{color:rgb(31,78,121);}
.fc2{color:rgb(31,56,100);}
.fc3{color:rgb(125,125,125);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(23,54,93);}
.fs7{font-size:36.000000px;}
.fs6{font-size:40.500000px;}
.fs3{font-size:49.500000px;}
.fs0{font-size:54.000000px;}
.fs4{font-size:58.500000px;}
.fs8{font-size:58.650000px;}
.fs1{font-size:72.000000px;}
.fs2{font-size:72.150000px;}
.fs5{font-size:85.650000px;}
.y0{bottom:0.000000px;}
.y1b{bottom:1.125000px;}
.yd2{bottom:2.625000px;}
.yce{bottom:2.670000px;}
.ycb{bottom:2.700000px;}
.y3{bottom:3.375000px;}
.y4e{bottom:3.405000px;}
.y19{bottom:3.420000px;}
.yd0{bottom:3.795000px;}
.y49{bottom:4.515000px;}
.yb0{bottom:5.370000px;}
.yd9{bottom:5.880000px;}
.yd6{bottom:5.925000px;}
.yc6{bottom:6.150000px;}
.yc4{bottom:6.195000px;}
.yc1{bottom:6.225000px;}
.yb6{bottom:6.375000px;}
.yb4{bottom:6.420000px;}
.yb2{bottom:6.450000px;}
.ybd{bottom:8.505000px;}
.yac{bottom:8.745000px;}
.ybf{bottom:9.000000px;}
.yae{bottom:9.015000px;}
.y4c{bottom:9.030000px;}
.ye{bottom:11.295000px;}
.y1c{bottom:12.375000px;}
.yc{bottom:13.500000px;}
.y4{bottom:14.662500px;}
.y2{bottom:19.162500px;}
.y4d{bottom:20.280000px;}
.y48{bottom:21.420000px;}
.y4b{bottom:22.530000px;}
.y18{bottom:28.170000px;}
.yb{bottom:30.405000px;}
.y47{bottom:38.295000px;}
.y17{bottom:43.920000px;}
.ya{bottom:46.155000px;}
.y5{bottom:47.287500px;}
.y46{bottom:56.325000px;}
.y16{bottom:58.575000px;}
.y15{bottom:67.575000px;}
.y1{bottom:69.787500px;}
.y9{bottom:73.185000px;}
.y45{bottom:73.200000px;}
.y14{bottom:84.450000px;}
.y44{bottom:90.075000px;}
.y8{bottom:93.435000px;}
.y13{bottom:103.245000px;}
.y43{bottom:108.120000px;}
.y7{bottom:110.355000px;}
.yaa{bottom:112.575000px;}
.ye0{bottom:113.700000px;}
.y58{bottom:114.825000px;}
.yf1{bottom:115.950000px;}
.y88{bottom:124.987500px;}
.y42{bottom:124.995000px;}
.y12{bottom:129.150000px;}
.ya9{bottom:129.487500px;}
.ydf{bottom:130.612500px;}
.y57{bottom:131.737500px;}
.yf0{bottom:132.862500px;}
.y87{bottom:141.862500px;}
.y41{bottom:141.915000px;}
.ya8{bottom:147.487500px;}
.y56{bottom:148.612500px;}
.yef{bottom:149.737500px;}
.y10{bottom:154.275000px;}
.y86{bottom:155.370000px;}
.y40{bottom:159.915000px;}
.ya7{bottom:164.400000px;}
.yde{bottom:165.525000px;}
.y55{bottom:166.650000px;}
.yee{bottom:167.775000px;}
.y3f{bottom:176.820000px;}
.ya6{bottom:181.275000px;}
.ydd{bottom:182.400000px;}
.y54{bottom:183.525000px;}
.yed{bottom:184.650000px;}
.y3e{bottom:193.695000px;}
.ya5{bottom:199.275000px;}
.y53{bottom:200.400000px;}
.yec{bottom:201.570000px;}
.y3d{bottom:211.695000px;}
.ya4{bottom:216.195000px;}
.ydc{bottom:217.320000px;}
.y52{bottom:218.445000px;}
.yeb{bottom:219.570000px;}
.y3c{bottom:228.615000px;}
.ya3{bottom:233.070000px;}
.ydb{bottom:234.195000px;}
.y51{bottom:235.320000px;}
.yea{bottom:236.445000px;}
.y3b{bottom:245.490000px;}
.ya2{bottom:251.100000px;}
.y50{bottom:252.225000px;}
.ye9{bottom:253.350000px;}
.y2c{bottom:263.520000px;}
.ya1{bottom:267.975000px;}
.yda{bottom:269.100000px;}
.y4f{bottom:270.225000px;}
.ye8{bottom:271.350000px;}
.y2b{bottom:279.270000px;}
.y3a{bottom:280.395000px;}
.y4a{bottom:283.725000px;}
.ya0{bottom:284.895000px;}
.ye7{bottom:288.270000px;}
.yd8{bottom:290.250000px;}
.y2a{bottom:296.145000px;}
.y39{bottom:297.270000px;}
.y9f{bottom:302.880000px;}
.ye6{bottom:305.145000px;}
.y29{bottom:313.065000px;}
.y38{bottom:315.315000px;}
.y1d{bottom:317.505000px;}
.y9e{bottom:319.755000px;}
.yd7{bottom:322.875000px;}
.ye5{bottom:323.130000px;}
.y28{bottom:331.065000px;}
.y37{bottom:332.190000px;}
.y9d{bottom:333.300000px;}
.ye4{bottom:340.050000px;}
.y27{bottom:347.970000px;}
.y36{bottom:349.095000px;}
.yd5{bottom:355.500000px;}
.ye3{bottom:356.925000px;}
.y26{bottom:363.720000px;}
.y35{bottom:367.095000px;}
.ye2{bottom:374.955000px;}
.y25{bottom:380.595000px;}
.y34{bottom:383.970000px;}
.yd4{bottom:385.080000px;}
.ye1{bottom:391.830000px;}
.y24{bottom:396.375000px;}
.y96{bottom:398.580000px;}
.y33{bottom:400.875000px;}
.yd3{bottom:403.095000px;}
.y85{bottom:408.705000px;}
.y23{bottom:413.250000px;}
.y95{bottom:415.500000px;}
.y32{bottom:418.890000px;}
.yd1{bottom:424.125000px;}
.y84{bottom:426.750000px;}
.y22{bottom:429.045000px;}
.y94{bottom:433.500000px;}
.y31{bottom:435.795000px;}
.y83{bottom:443.625000px;}
.y21{bottom:445.920000px;}
.y93{bottom:447.000000px;}
.y30{bottom:452.670000px;}
.ycf{bottom:453.375000px;}
.y82{bottom:460.545000px;}
.y20{bottom:463.920000px;}
.y2f{bottom:470.700000px;}
.y81{bottom:478.530000px;}
.ycd{bottom:483.750000px;}
.y2e{bottom:487.575000px;}
.y1f{bottom:489.825000px;}
.y80{bottom:495.450000px;}
.y2d{bottom:504.450000px;}
.y1e{bottom:506.700000px;}
.y7f{bottom:512.325000px;}
.ycc{bottom:513.450000px;}
.yca{bottom:514.125000px;}
.y7e{bottom:530.325000px;}
.y9c{bottom:539.370000px;}
.yc9{bottom:540.495000px;}
.y7d{bottom:547.245000px;}
.y9b{bottom:557.370000px;}
.yc8{bottom:558.480000px;}
.y7c{bottom:564.120000px;}
.y9a{bottom:570.870000px;}
.yc7{bottom:575.355000px;}
.y7b{bottom:582.150000px;}
.yc5{bottom:596.250000px;}
.y7a{bottom:599.025000px;}
.y79{bottom:615.900000px;}
.yc3{bottom:628.875000px;}
.y78{bottom:633.945000px;}
.y92{bottom:637.320000px;}
.y77{bottom:650.820000px;}
.y91{bottom:654.195000px;}
.yc2{bottom:661.500000px;}
.y76{bottom:667.725000px;}
.y90{bottom:672.225000px;}
.y75{bottom:685.725000px;}
.y8f{bottom:689.100000px;}
.yc0{bottom:694.125000px;}
.y74{bottom:702.645000px;}
.y8e{bottom:706.020000px;}
.y73{bottom:719.520000px;}
.y8d{bottom:720.630000px;}
.ybe{bottom:726.255000px;}
.ybc{bottom:726.750000px;}
.y72{bottom:737.505000px;}
.y71{bottom:754.425000px;}
.ybb{bottom:760.050000px;}
.y70{bottom:771.300000px;}
.yba{bottom:776.925000px;}
.y99{bottom:778.050000px;}
.y6f{bottom:789.330000px;}
.yb9{bottom:793.830000px;}
.y98{bottom:796.080000px;}
.y6e{bottom:806.205000px;}
.y97{bottom:809.580000px;}
.yb8{bottom:811.830000px;}
.y6d{bottom:823.080000px;}
.yb7{bottom:828.750000px;}
.y1a{bottom:835.500000px;}
.y6c{bottom:841.125000px;}
.yb5{bottom:849.375000px;}
.y6b{bottom:858.000000px;}
.yf{bottom:865.875000px;}
.y11{bottom:866.250000px;}
.y6a{bottom:874.920000px;}
.yb3{bottom:882.000000px;}
.y69{bottom:892.920000px;}
.y68{bottom:909.795000px;}
.yb1{bottom:914.625000px;}
.y8c{bottom:921.075000px;}
.y67{bottom:926.700000px;}
.y8b{bottom:937.950000px;}
.y66{bottom:944.700000px;}
.yaf{bottom:948.375000px;}
.y8a{bottom:955.995000px;}
.y65{bottom:961.620000px;}
.y89{bottom:969.495000px;}
.y64{bottom:978.495000px;}
.yad{bottom:980.730000px;}
.yab{bottom:981.000000px;}
.y63{bottom:996.525000px;}
.y62{bottom:1013.400000px;}
.y61{bottom:1030.275000px;}
.yd{bottom:1034.775000px;}
.y60{bottom:1048.320000px;}
.y6{bottom:1060.695000px;}
.y5f{bottom:1065.195000px;}
.y5e{bottom:1082.100000px;}
.y5d{bottom:1100.100000px;}
.y5c{bottom:1116.975000px;}
.y5b{bottom:1133.880000px;}
.y5a{bottom:1151.880000px;}
.y59{bottom:1168.800000px;}
.h2b{height:16.875000px;}
.h2c{height:18.000000px;}
.h29{height:19.125000px;}
.h2a{height:20.250000px;}
.h27{height:22.500000px;}
.h28{height:22.537500px;}
.hc{height:25.912500px;}
.h13{height:26.314453px;}
.h14{height:26.560547px;}
.h15{height:30.375000px;}
.h2{height:32.662500px;}
.h21{height:33.787500px;}
.h18{height:36.182373px;}
.h1d{height:36.520752px;}
.h9{height:37.125000px;}
.h22{height:37.197510px;}
.h1e{height:40.847168px;}
.h25{height:40.951904px;}
.h1f{height:40.961426px;}
.h20{height:41.275635px;}
.h24{height:41.381470px;}
.h1b{height:41.389893px;}
.h1a{height:42.760986px;}
.he{height:43.075195px;}
.h1c{height:43.160889px;}
.hb{height:43.875000px;}
.h23{height:43.960693px;}
.h19{height:43.989258px;}
.h26{height:46.278809px;}
.h12{height:48.454102px;}
.h8{height:52.628906px;}
.h6{height:52.738550px;}
.h4{height:53.709961px;}
.ha{height:54.000000px;}
.h16{height:54.140625px;}
.h3{height:55.291992px;}
.h11{height:58.185791px;}
.h10{height:64.237500px;}
.h5{height:73.722656px;}
.h7{height:121.612500px;}
.hf{height:168.750000px;}
.hd{height:168.900000px;}
.h17{height:517.995000px;}
.h0{height:1263.375000px;}
.h1{height:1263.750000px;}
.w12{width:20.250000px;}
.w13{width:20.287500px;}
.w17{width:40.537500px;}
.wd{width:40.575000px;}
.we{width:41.662500px;}
.w3{width:73.200000px;}
.w5{width:152.055000px;}
.w16{width:168.750000px;}
.wc{width:172.125000px;}
.w11{width:211.500000px;}
.w9{width:224.130000px;}
.w18{width:252.000000px;}
.w14{width:254.250000px;}
.wf{width:256.500000px;}
.w1a{width:257.625000px;}
.w19{width:470.250000px;}
.wb{width:471.375000px;}
.w10{width:473.625000px;}
.w15{width:477.000000px;}
.wa{width:506.880000px;}
.w6{width:578.955000px;}
.w2{width:657.825000px;}
.w8{width:730.125000px;}
.w7{width:731.025000px;}
.w4{width:892.124987px;}
.w0{width:892.125000px;}
.w1{width:892.500000px;}
.x0{left:0.000000px;}
.x27{left:5.737500px;}
.x6{left:7.875000px;}
.x2{left:9.000000px;}
.x12{left:12.405000px;}
.xd{left:18.000000px;}
.xe{left:40.537500px;}
.x1{left:81.112500px;}
.x26{left:82.125000px;}
.x4{left:97.987500px;}
.x13{left:108.149987px;}
.x21{left:111.524987px;}
.xf{left:116.032500px;}
.x14{left:135.187487px;}
.x19{left:137.437487px;}
.x17{left:158.804987px;}
.x1f{left:188.099987px;}
.x1b{left:198.269987px;}
.xc{left:210.750000px;}
.x10{left:214.012500px;}
.x23{left:224.144987px;}
.x25{left:225.269987px;}
.x5{left:233.175000px;}
.x1c{left:253.424987px;}
.x9{left:273.705000px;}
.x11{left:305.250000px;}
.x7{left:328.920000px;}
.x8{left:348.030000px;}
.xb{left:364.957500px;}
.x1d{left:417.899987px;}
.xa{left:437.025000px;}
.x18{left:444.944987px;}
.x1e{left:446.069987px;}
.x22{left:450.569987px;}
.x16{left:453.944987px;}
.x1a{left:461.819987px;}
.x15{left:473.099987px;}
.x24{left:500.129987px;}
.x2f{left:553.500000px;}
.x28{left:554.625000px;}
.x2b{left:556.875000px;}
.x2d{left:559.125000px;}
.x29{left:728.775000px;}
.x20{left:729.899987px;}
.x3{left:738.945000px;}
.x2a{left:770.475000px;}
.x2e{left:771.600000px;}
.x2c{left:791.850000px;}
@media print{
.v2{vertical-align:-16.000000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:16.000000pt;}
.ls29{letter-spacing:-5.002667pt;}
.ls1c{letter-spacing:-2.490667pt;}
.lsf{letter-spacing:-2.458667pt;}
.ls34{letter-spacing:-2.320000pt;}
.ls36{letter-spacing:-2.000000pt;}
.ls26{letter-spacing:-1.546667pt;}
.ls33{letter-spacing:-1.360000pt;}
.ls9{letter-spacing:-1.296000pt;}
.ls12{letter-spacing:-1.184000pt;}
.ls28{letter-spacing:-1.002667pt;}
.ls2b{letter-spacing:-0.986667pt;}
.lsc{letter-spacing:-0.704000pt;}
.ls1d{letter-spacing:-0.549333pt;}
.lsb{letter-spacing:-0.448000pt;}
.lse{letter-spacing:-0.427733pt;}
.lsa{letter-spacing:-0.336000pt;}
.ls37{letter-spacing:-0.227733pt;}
.ls2c{letter-spacing:-0.146667pt;}
.ls7{letter-spacing:0.000000pt;}
.ls1a{letter-spacing:0.227733pt;}
.lsd{letter-spacing:0.613333pt;}
.ls11{letter-spacing:0.912000pt;}
.ls15{letter-spacing:1.045333pt;}
.ls8{letter-spacing:1.056000pt;}
.ls0{letter-spacing:1.258667pt;}
.ls1{letter-spacing:1.312000pt;}
.ls1f{letter-spacing:1.317333pt;}
.ls13{letter-spacing:1.509333pt;}
.ls10{letter-spacing:1.546667pt;}
.ls5{letter-spacing:1.597333pt;}
.ls2d{letter-spacing:1.642667pt;}
.ls20{letter-spacing:1.674667pt;}
.ls38{letter-spacing:1.770667pt;}
.ls30{letter-spacing:1.924000pt;}
.ls16{letter-spacing:1.936000pt;}
.ls25{letter-spacing:1.989333pt;}
.ls2{letter-spacing:2.000000pt;}
.ls1e{letter-spacing:2.069333pt;}
.ls14{letter-spacing:2.133333pt;}
.ls31{letter-spacing:2.160000pt;}
.ls39{letter-spacing:2.453333pt;}
.ls2a{letter-spacing:2.640000pt;}
.ls35{letter-spacing:2.682667pt;}
.ls4{letter-spacing:2.946667pt;}
.ls17{letter-spacing:2.966667pt;}
.ls24{letter-spacing:3.000000pt;}
.ls2f{letter-spacing:3.020000pt;}
.ls18{letter-spacing:3.133333pt;}
.ls27{letter-spacing:3.546667pt;}
.ls32{letter-spacing:3.674667pt;}
.ls21{letter-spacing:4.853333pt;}
.ls22{letter-spacing:4.912000pt;}
.ls23{letter-spacing:4.986667pt;}
.ls1b{letter-spacing:5.045333pt;}
.ls6{letter-spacing:9.544000pt;}
.ls3{letter-spacing:11.000000pt;}
.ls2e{letter-spacing:15.160000pt;}
.ls19{letter-spacing:41.677333pt;}
.ws14{word-spacing:-18.045333pt;}
.ws1d{word-spacing:-18.020000pt;}
.ws1c{word-spacing:-17.912000pt;}
.ws1b{word-spacing:-17.886667pt;}
.ws25{word-spacing:-16.674667pt;}
.ws20{word-spacing:-16.546667pt;}
.ws28{word-spacing:-15.682667pt;}
.ws22{word-spacing:-15.673333pt;}
.ws2c{word-spacing:-15.453333pt;}
.ws10{word-spacing:-15.133333pt;}
.ws18{word-spacing:-15.102667pt;}
.ws9{word-spacing:-15.000000pt;}
.ws16{word-spacing:-14.969333pt;}
.ws2b{word-spacing:-14.770667pt;}
.ws24{word-spacing:-14.676000pt;}
.ws1a{word-spacing:-14.674667pt;}
.wsc{word-spacing:-14.546667pt;}
.wsf{word-spacing:-14.542667pt;}
.wsa{word-spacing:-14.456000pt;}
.ws5{word-spacing:-14.352000pt;}
.ws19{word-spacing:-14.317333pt;}
.ws11{word-spacing:-14.045333pt;}
.ws3{word-spacing:-14.016000pt;}
.wsd{word-spacing:-13.912000pt;}
.ws4{word-spacing:-13.648000pt;}
.ws13{word-spacing:-13.227733pt;}
.ws8{word-spacing:-13.000000pt;}
.ws23{word-spacing:-12.886667pt;}
.ws2a{word-spacing:-12.772267pt;}
.ws17{word-spacing:-12.450667pt;}
.ws21{word-spacing:-12.046667pt;}
.ws0{word-spacing:-11.904000pt;}
.wse{word-spacing:-11.816000pt;}
.ws26{word-spacing:-11.673333pt;}
.ws1f{word-spacing:-11.453333pt;}
.ws29{word-spacing:-11.000000pt;}
.ws1e{word-spacing:-10.989333pt;}
.ws27{word-spacing:-10.680000pt;}
.ws15{word-spacing:-10.542667pt;}
.wsb{word-spacing:-10.541333pt;}
.ws2{word-spacing:-10.512000pt;}
.ws6{word-spacing:-10.008000pt;}
.ws1{word-spacing:-9.552000pt;}
.ws7{word-spacing:-8.896000pt;}
.ws12{word-spacing:0.000000pt;}
._15{margin-left:-6.736000pt;}
._e{margin-left:-5.468000pt;}
._d{margin-left:-4.016000pt;}
._a{margin-left:-3.113333pt;}
._2{margin-left:-2.064000pt;}
._1{margin-left:-1.056000pt;}
._0{width:1.728000pt;}
._3{width:2.805333pt;}
._4{width:3.989333pt;}
._6{width:5.740000pt;}
._b{width:6.977333pt;}
._1c{width:7.878667pt;}
._5{width:8.768000pt;}
._9{width:10.384000pt;}
._7{width:11.830667pt;}
._c{width:14.617333pt;}
._8{width:15.658667pt;}
._14{width:18.490667pt;}
._12{width:22.857333pt;}
._10{width:27.746667pt;}
._13{width:31.470667pt;}
._f{width:34.301333pt;}
._11{width:39.517333pt;}
._1b{width:559.693333pt;}
._18{width:840.066667pt;}
._16{width:884.066667pt;}
._1a{width:936.173333pt;}
._19{width:1000.226667pt;}
._17{width:1024.173333pt;}
.fs7{font-size:32.000000pt;}
.fs6{font-size:36.000000pt;}
.fs3{font-size:44.000000pt;}
.fs0{font-size:48.000000pt;}
.fs4{font-size:52.000000pt;}
.fs8{font-size:52.133333pt;}
.fs1{font-size:64.000000pt;}
.fs2{font-size:64.133333pt;}
.fs5{font-size:76.133333pt;}
.y0{bottom:0.000000pt;}
.y1b{bottom:1.000000pt;}
.yd2{bottom:2.333333pt;}
.yce{bottom:2.373333pt;}
.ycb{bottom:2.400000pt;}
.y3{bottom:3.000000pt;}
.y4e{bottom:3.026667pt;}
.y19{bottom:3.040000pt;}
.yd0{bottom:3.373333pt;}
.y49{bottom:4.013333pt;}
.yb0{bottom:4.773333pt;}
.yd9{bottom:5.226667pt;}
.yd6{bottom:5.266667pt;}
.yc6{bottom:5.466667pt;}
.yc4{bottom:5.506667pt;}
.yc1{bottom:5.533333pt;}
.yb6{bottom:5.666667pt;}
.yb4{bottom:5.706667pt;}
.yb2{bottom:5.733333pt;}
.ybd{bottom:7.560000pt;}
.yac{bottom:7.773333pt;}
.ybf{bottom:8.000000pt;}
.yae{bottom:8.013333pt;}
.y4c{bottom:8.026667pt;}
.ye{bottom:10.040000pt;}
.y1c{bottom:11.000000pt;}
.yc{bottom:12.000000pt;}
.y4{bottom:13.033333pt;}
.y2{bottom:17.033333pt;}
.y4d{bottom:18.026667pt;}
.y48{bottom:19.040000pt;}
.y4b{bottom:20.026667pt;}
.y18{bottom:25.040000pt;}
.yb{bottom:27.026667pt;}
.y47{bottom:34.040000pt;}
.y17{bottom:39.040000pt;}
.ya{bottom:41.026667pt;}
.y5{bottom:42.033333pt;}
.y46{bottom:50.066667pt;}
.y16{bottom:52.066667pt;}
.y15{bottom:60.066667pt;}
.y1{bottom:62.033333pt;}
.y9{bottom:65.053333pt;}
.y45{bottom:65.066667pt;}
.y14{bottom:75.066667pt;}
.y44{bottom:80.066667pt;}
.y8{bottom:83.053333pt;}
.y13{bottom:91.773333pt;}
.y43{bottom:96.106667pt;}
.y7{bottom:98.093333pt;}
.yaa{bottom:100.066667pt;}
.ye0{bottom:101.066667pt;}
.y58{bottom:102.066667pt;}
.yf1{bottom:103.066667pt;}
.y88{bottom:111.100000pt;}
.y42{bottom:111.106667pt;}
.y12{bottom:114.800000pt;}
.ya9{bottom:115.100000pt;}
.ydf{bottom:116.100000pt;}
.y57{bottom:117.100000pt;}
.yf0{bottom:118.100000pt;}
.y87{bottom:126.100000pt;}
.y41{bottom:126.146667pt;}
.ya8{bottom:131.100000pt;}
.y56{bottom:132.100000pt;}
.yef{bottom:133.100000pt;}
.y10{bottom:137.133333pt;}
.y86{bottom:138.106667pt;}
.y40{bottom:142.146667pt;}
.ya7{bottom:146.133333pt;}
.yde{bottom:147.133333pt;}
.y55{bottom:148.133333pt;}
.yee{bottom:149.133333pt;}
.y3f{bottom:157.173333pt;}
.ya6{bottom:161.133333pt;}
.ydd{bottom:162.133333pt;}
.y54{bottom:163.133333pt;}
.yed{bottom:164.133333pt;}
.y3e{bottom:172.173333pt;}
.ya5{bottom:177.133333pt;}
.y53{bottom:178.133333pt;}
.yec{bottom:179.173333pt;}
.y3d{bottom:188.173333pt;}
.ya4{bottom:192.173333pt;}
.ydc{bottom:193.173333pt;}
.y52{bottom:194.173333pt;}
.yeb{bottom:195.173333pt;}
.y3c{bottom:203.213333pt;}
.ya3{bottom:207.173333pt;}
.ydb{bottom:208.173333pt;}
.y51{bottom:209.173333pt;}
.yea{bottom:210.173333pt;}
.y3b{bottom:218.213333pt;}
.ya2{bottom:223.200000pt;}
.y50{bottom:224.200000pt;}
.ye9{bottom:225.200000pt;}
.y2c{bottom:234.240000pt;}
.ya1{bottom:238.200000pt;}
.yda{bottom:239.200000pt;}
.y4f{bottom:240.200000pt;}
.ye8{bottom:241.200000pt;}
.y2b{bottom:248.240000pt;}
.y3a{bottom:249.240000pt;}
.y4a{bottom:252.200000pt;}
.ya0{bottom:253.240000pt;}
.ye7{bottom:256.240000pt;}
.yd8{bottom:258.000000pt;}
.y2a{bottom:263.240000pt;}
.y39{bottom:264.240000pt;}
.y9f{bottom:269.226667pt;}
.ye6{bottom:271.240000pt;}
.y29{bottom:278.280000pt;}
.y38{bottom:280.280000pt;}
.y1d{bottom:282.226667pt;}
.y9e{bottom:284.226667pt;}
.yd7{bottom:287.000000pt;}
.ye5{bottom:287.226667pt;}
.y28{bottom:294.280000pt;}
.y37{bottom:295.280000pt;}
.y9d{bottom:296.266667pt;}
.ye4{bottom:302.266667pt;}
.y27{bottom:309.306667pt;}
.y36{bottom:310.306667pt;}
.yd5{bottom:316.000000pt;}
.ye3{bottom:317.266667pt;}
.y26{bottom:323.306667pt;}
.y35{bottom:326.306667pt;}
.ye2{bottom:333.293333pt;}
.y25{bottom:338.306667pt;}
.y34{bottom:341.306667pt;}
.yd4{bottom:342.293333pt;}
.ye1{bottom:348.293333pt;}
.y24{bottom:352.333333pt;}
.y96{bottom:354.293333pt;}
.y33{bottom:356.333333pt;}
.yd3{bottom:358.306667pt;}
.y85{bottom:363.293333pt;}
.y23{bottom:367.333333pt;}
.y95{bottom:369.333333pt;}
.y32{bottom:372.346667pt;}
.yd1{bottom:377.000000pt;}
.y84{bottom:379.333333pt;}
.y22{bottom:381.373333pt;}
.y94{bottom:385.333333pt;}
.y31{bottom:387.373333pt;}
.y83{bottom:394.333333pt;}
.y21{bottom:396.373333pt;}
.y93{bottom:397.333333pt;}
.y30{bottom:402.373333pt;}
.ycf{bottom:403.000000pt;}
.y82{bottom:409.373333pt;}
.y20{bottom:412.373333pt;}
.y2f{bottom:418.400000pt;}
.y81{bottom:425.360000pt;}
.ycd{bottom:430.000000pt;}
.y2e{bottom:433.400000pt;}
.y1f{bottom:435.400000pt;}
.y80{bottom:440.400000pt;}
.y2d{bottom:448.400000pt;}
.y1e{bottom:450.400000pt;}
.y7f{bottom:455.400000pt;}
.ycc{bottom:456.400000pt;}
.yca{bottom:457.000000pt;}
.y7e{bottom:471.400000pt;}
.y9c{bottom:479.440000pt;}
.yc9{bottom:480.440000pt;}
.y7d{bottom:486.440000pt;}
.y9b{bottom:495.440000pt;}
.yc8{bottom:496.426667pt;}
.y7c{bottom:501.440000pt;}
.y9a{bottom:507.440000pt;}
.yc7{bottom:511.426667pt;}
.y7b{bottom:517.466667pt;}
.yc5{bottom:530.000000pt;}
.y7a{bottom:532.466667pt;}
.y79{bottom:547.466667pt;}
.yc3{bottom:559.000000pt;}
.y78{bottom:563.506667pt;}
.y92{bottom:566.506667pt;}
.y77{bottom:578.506667pt;}
.y91{bottom:581.506667pt;}
.yc2{bottom:588.000000pt;}
.y76{bottom:593.533333pt;}
.y90{bottom:597.533333pt;}
.y75{bottom:609.533333pt;}
.y8f{bottom:612.533333pt;}
.yc0{bottom:617.000000pt;}
.y74{bottom:624.573333pt;}
.y8e{bottom:627.573333pt;}
.y73{bottom:639.573333pt;}
.y8d{bottom:640.560000pt;}
.ybe{bottom:645.560000pt;}
.ybc{bottom:646.000000pt;}
.y72{bottom:655.560000pt;}
.y71{bottom:670.600000pt;}
.ybb{bottom:675.600000pt;}
.y70{bottom:685.600000pt;}
.yba{bottom:690.600000pt;}
.y99{bottom:691.600000pt;}
.y6f{bottom:701.626667pt;}
.yb9{bottom:705.626667pt;}
.y98{bottom:707.626667pt;}
.y6e{bottom:716.626667pt;}
.y97{bottom:719.626667pt;}
.yb8{bottom:721.626667pt;}
.y6d{bottom:731.626667pt;}
.yb7{bottom:736.666667pt;}
.y1a{bottom:742.666667pt;}
.y6c{bottom:747.666667pt;}
.yb5{bottom:755.000000pt;}
.y6b{bottom:762.666667pt;}
.yf{bottom:769.666667pt;}
.y11{bottom:770.000000pt;}
.y6a{bottom:777.706667pt;}
.yb3{bottom:784.000000pt;}
.y69{bottom:793.706667pt;}
.y68{bottom:808.706667pt;}
.yb1{bottom:813.000000pt;}
.y8c{bottom:818.733333pt;}
.y67{bottom:823.733333pt;}
.y8b{bottom:833.733333pt;}
.y66{bottom:839.733333pt;}
.yaf{bottom:843.000000pt;}
.y8a{bottom:849.773333pt;}
.y65{bottom:854.773333pt;}
.y89{bottom:861.773333pt;}
.y64{bottom:869.773333pt;}
.yad{bottom:871.760000pt;}
.yab{bottom:872.000000pt;}
.y63{bottom:885.800000pt;}
.y62{bottom:900.800000pt;}
.y61{bottom:915.800000pt;}
.yd{bottom:919.800000pt;}
.y60{bottom:931.840000pt;}
.y6{bottom:942.840000pt;}
.y5f{bottom:946.840000pt;}
.y5e{bottom:961.866667pt;}
.y5d{bottom:977.866667pt;}
.y5c{bottom:992.866667pt;}
.y5b{bottom:1007.893333pt;}
.y5a{bottom:1023.893333pt;}
.y59{bottom:1038.933333pt;}
.h2b{height:15.000000pt;}
.h2c{height:16.000000pt;}
.h29{height:17.000000pt;}
.h2a{height:18.000000pt;}
.h27{height:20.000000pt;}
.h28{height:20.033333pt;}
.hc{height:23.033333pt;}
.h13{height:23.390625pt;}
.h14{height:23.609375pt;}
.h15{height:27.000000pt;}
.h2{height:29.033333pt;}
.h21{height:30.033333pt;}
.h18{height:32.162109pt;}
.h1d{height:32.462891pt;}
.h9{height:33.000000pt;}
.h22{height:33.064453pt;}
.h1e{height:36.308594pt;}
.h25{height:36.401693pt;}
.h1f{height:36.410156pt;}
.h20{height:36.689453pt;}
.h24{height:36.783529pt;}
.h1b{height:36.791016pt;}
.h1a{height:38.009766pt;}
.he{height:38.289062pt;}
.h1c{height:38.365234pt;}
.hb{height:39.000000pt;}
.h23{height:39.076172pt;}
.h19{height:39.101562pt;}
.h26{height:41.136719pt;}
.h12{height:43.070312pt;}
.h8{height:46.781250pt;}
.h6{height:46.878711pt;}
.h4{height:47.742188pt;}
.ha{height:48.000000pt;}
.h16{height:48.125000pt;}
.h3{height:49.148438pt;}
.h11{height:51.720703pt;}
.h10{height:57.100000pt;}
.h5{height:65.531250pt;}
.h7{height:108.100000pt;}
.hf{height:150.000000pt;}
.hd{height:150.133333pt;}
.h17{height:460.440000pt;}
.h0{height:1123.000000pt;}
.h1{height:1123.333333pt;}
.w12{width:18.000000pt;}
.w13{width:18.033333pt;}
.w17{width:36.033333pt;}
.wd{width:36.066667pt;}
.we{width:37.033333pt;}
.w3{width:65.066667pt;}
.w5{width:135.160000pt;}
.w16{width:150.000000pt;}
.wc{width:153.000000pt;}
.w11{width:188.000000pt;}
.w9{width:199.226667pt;}
.w18{width:224.000000pt;}
.w14{width:226.000000pt;}
.wf{width:228.000000pt;}
.w1a{width:229.000000pt;}
.w19{width:418.000000pt;}
.wb{width:419.000000pt;}
.w10{width:421.000000pt;}
.w15{width:424.000000pt;}
.wa{width:450.560000pt;}
.w6{width:514.626667pt;}
.w2{width:584.733333pt;}
.w8{width:649.000000pt;}
.w7{width:649.800000pt;}
.w4{width:792.999988pt;}
.w0{width:793.000000pt;}
.w1{width:793.333333pt;}
.x0{left:0.000000pt;}
.x27{left:5.100000pt;}
.x6{left:7.000000pt;}
.x2{left:8.000000pt;}
.x12{left:11.026667pt;}
.xd{left:16.000000pt;}
.xe{left:36.033333pt;}
.x1{left:72.100000pt;}
.x26{left:73.000000pt;}
.x4{left:87.100000pt;}
.x13{left:96.133322pt;}
.x21{left:99.133322pt;}
.xf{left:103.140000pt;}
.x14{left:120.166655pt;}
.x19{left:122.166655pt;}
.x17{left:141.159988pt;}
.x1f{left:167.199988pt;}
.x1b{left:176.239988pt;}
.xc{left:187.333333pt;}
.x10{left:190.233333pt;}
.x23{left:199.239988pt;}
.x25{left:200.239988pt;}
.x5{left:207.266667pt;}
.x1c{left:225.266655pt;}
.x9{left:243.293333pt;}
.x11{left:271.333333pt;}
.x7{left:292.373333pt;}
.x8{left:309.360000pt;}
.xb{left:324.406667pt;}
.x1d{left:371.466655pt;}
.xa{left:388.466667pt;}
.x18{left:395.506655pt;}
.x1e{left:396.506655pt;}
.x22{left:400.506655pt;}
.x16{left:403.506655pt;}
.x1a{left:410.506655pt;}
.x15{left:420.533322pt;}
.x24{left:444.559988pt;}
.x2f{left:492.000000pt;}
.x28{left:493.000000pt;}
.x2b{left:495.000000pt;}
.x2d{left:497.000000pt;}
.x29{left:647.800000pt;}
.x20{left:648.799988pt;}
.x3{left:656.840000pt;}
.x2a{left:684.866667pt;}
.x2e{left:685.866667pt;}
.x2c{left:703.866667pt;}
}




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