
    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_cfd107bd65482bd181c5eebe.woff')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_b63b53b700130ce528b81cb8.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_9de488cb51c1d872a95a8847.woff')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_6ff42f28f1dbccb8edbbbaab.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_449e1d4c06de9654fd4a1e18.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_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_7ff10456d8d8df4bbdf66048.woff')format("woff");}.ff9{font-family:ff9;line-height:0.944336;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_0e7c5b871dcd91741088d72b.woff')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_4c76b210ebc150b338e2e2aa.woff')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_a132518f1e51b1a604c48c86.woff')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_b21a41313c4166c17e4df384.woff')format("woff");}.ffd{font-family:ffd;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:ffe;src:url('chunks/assets/font_5d123772bb4c8abe91c34807.woff')format("woff");}.ffe{font-family:ffe;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:fff;src:url('chunks/assets/font_130301694ab792f9947e2b7d.woff')format("woff");}.fff{font-family:fff;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;}
.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(0.350000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375000,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;}
.v3{vertical-align:-13.500000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:18.000000px;}
.ls14{letter-spacing:-2.766000px;}
.lsc{letter-spacing:-2.724000px;}
.ls16{letter-spacing:-1.740000px;}
.lse{letter-spacing:-1.686000px;}
.ls1a{letter-spacing:-1.482000px;}
.ls12{letter-spacing:-1.128000px;}
.ls18{letter-spacing:-1.026000px;}
.lsd{letter-spacing:-0.792000px;}
.ls20{letter-spacing:-0.454200px;}
.lsb{letter-spacing:-0.378000px;}
.ls21{letter-spacing:-0.304200px;}
.lsa{letter-spacing:0.000000px;}
.lsf{letter-spacing:0.090000px;}
.ls23{letter-spacing:0.258000px;}
.ls9{letter-spacing:0.279000px;}
.ls17{letter-spacing:0.846000px;}
.ls6{letter-spacing:0.864000px;}
.ls0{letter-spacing:1.266000px;}
.ls1f{letter-spacing:1.296000px;}
.ls1{letter-spacing:1.476000px;}
.ls15{letter-spacing:1.482000px;}
.ls13{letter-spacing:1.740000px;}
.ls2{letter-spacing:1.854000px;}
.ls5{letter-spacing:1.906500px;}
.ls22{letter-spacing:1.926000px;}
.ls3{letter-spacing:1.966500px;}
.ls4{letter-spacing:2.146500px;}
.ls24{letter-spacing:2.164500px;}
.ls26{letter-spacing:2.190000px;}
.ls7{letter-spacing:2.250000px;}
.ls29{letter-spacing:2.310000px;}
.ls8{letter-spacing:2.322000px;}
.ls27{letter-spacing:2.370000px;}
.ls1e{letter-spacing:2.400000px;}
.ls28{letter-spacing:2.430000px;}
.ls19{letter-spacing:3.018000px;}
.ls11{letter-spacing:3.375000px;}
.ls1b{letter-spacing:3.990000px;}
.ls1c{letter-spacing:5.526000px;}
.ls2a{letter-spacing:15.387000px;}
.ls1d{letter-spacing:16.875000px;}
.ls25{letter-spacing:46.887000px;}
.ls10{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;}
}
.ws11{word-spacing:-20.151000px;}
.ws10{word-spacing:-18.615000px;}
.wse{word-spacing:-17.643000px;}
.ws6{word-spacing:-16.875000px;}
.ws19{word-spacing:-16.789500px;}
.ws9{word-spacing:-16.365000px;}
.ws3{word-spacing:-16.146000px;}
.wsb{word-spacing:-16.107000px;}
.ws2{word-spacing:-15.354000px;}
.ws5{word-spacing:-14.625000px;}
.ws16{word-spacing:-14.130000px;}
.ws18{word-spacing:-14.058000px;}
.wsd{word-spacing:-13.599000px;}
.ws7{word-spacing:-13.221000px;}
.wsf{word-spacing:-13.143000px;}
.wsc{word-spacing:-12.885000px;}
.ws1{word-spacing:-12.531000px;}
.ws17{word-spacing:-12.462000px;}
.ws14{word-spacing:-12.237900px;}
.ws15{word-spacing:-12.204000px;}
.ws13{word-spacing:-11.933700px;}
.wsa{word-spacing:-11.859000px;}
.ws0{word-spacing:-11.826000px;}
.ws12{word-spacing:-11.783700px;}
.ws4{word-spacing:-8.136000px;}
.ws8{word-spacing:0.000000px;}
._6{margin-left:-6.127500px;}
._7{margin-left:-5.073900px;}
._1e{margin-left:-3.958500px;}
._2{margin-left:-2.754000px;}
._1{margin-left:-1.188000px;}
._0{width:1.944000px;}
._4{width:3.462000px;}
._3{width:5.346000px;}
._f{width:6.405000px;}
._19{width:7.413000px;}
._8{width:8.457000px;}
._1f{width:9.478500px;}
._5{width:10.998000px;}
._a{width:12.271500px;}
._1a{width:13.284000px;}
._d{width:16.545000px;}
._e{width:17.688000px;}
._13{width:20.929500px;}
._c{width:22.047000px;}
._b{width:25.402500px;}
._14{width:26.479500px;}
._16{width:29.574000px;}
._15{width:31.302000px;}
._17{width:33.823500px;}
._18{width:35.653500px;}
._11{width:38.607000px;}
._12{width:40.081500px;}
._10{width:44.391000px;}
._1d{width:48.054000px;}
._1c{width:49.399500px;}
._1b{width:52.426500px;}
._9{width:275.634000px;}
.fc5{color:rgb(227,108,10);}
.fc4{color:rgb(50,62,79);}
.fc3{color:rgb(0,0,255);}
.fc2{color:rgb(31,56,100);}
.fc7{color:rgb(64,64,64);}
.fc6{color:rgb(88,88,88);}
.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;}
.fs8{font-size:54.150000px;}
.fs4{font-size:58.500000px;}
.fs1{font-size:67.500000px;}
.fs2{font-size:72.000000px;}
.fs9{font-size:85.500000px;}
.fs5{font-size:85.650000px;}
.y0{bottom:0.000000px;}
.y1a{bottom:1.125000px;}
.ye2{bottom:2.955000px;}
.ye5{bottom:3.045000px;}
.y3{bottom:3.375000px;}
.ya5{bottom:3.390000px;}
.yd3{bottom:3.405000px;}
.yde{bottom:3.975000px;}
.ye0{bottom:4.020000px;}
.y18{bottom:4.500000px;}
.yd0{bottom:4.515000px;}
.ya2{bottom:4.545000px;}
.ye7{bottom:5.295000px;}
.yc5{bottom:5.625000px;}
.yc9{bottom:5.640000px;}
.yc7{bottom:5.670000px;}
.ye9{bottom:6.495000px;}
.y4b{bottom:11.250000px;}
.ye{bottom:11.295000px;}
.y1b{bottom:12.375000px;}
.yc{bottom:13.500000px;}
.y4{bottom:18.000000px;}
.y2{bottom:20.250000px;}
.y4c{bottom:22.500000px;}
.y4a{bottom:25.905000px;}
.y17{bottom:28.125000px;}
.yb{bottom:30.405000px;}
.y48{bottom:38.280000px;}
.y16{bottom:45.045000px;}
.ya{bottom:46.155000px;}
.y47{bottom:55.155000px;}
.y5{bottom:56.287500px;}
.y15{bottom:60.795000px;}
.y46{bottom:72.075000px;}
.y9{bottom:73.185000px;}
.y1{bottom:77.700000px;}
.y14{bottom:87.825000px;}
.y45{bottom:90.075000px;}
.y8{bottom:93.435000px;}
.y13{bottom:105.825000px;}
.y44{bottom:106.950000px;}
.y7{bottom:110.355000px;}
.y10f{bottom:120.487500px;}
.ydc{bottom:121.612500px;}
.y43{bottom:123.870000px;}
.y12{bottom:124.995000px;}
.y123{bottom:126.112500px;}
.y8c{bottom:133.987500px;}
.y51{bottom:136.237500px;}
.yb3{bottom:137.362500px;}
.y10e{bottom:138.487500px;}
.ydb{bottom:139.612500px;}
.y42{bottom:141.855000px;}
.y122{bottom:142.987500px;}
.y11{bottom:150.870000px;}
.y50{bottom:153.105000px;}
.yb2{bottom:155.370000px;}
.yda{bottom:158.745000px;}
.y41{bottom:158.775000px;}
.y121{bottom:161.025000px;}
.y8b{bottom:167.775000px;}
.y4f{bottom:170.025000px;}
.yb1{bottom:172.275000px;}
.y10{bottom:175.650000px;}
.y120{bottom:177.900000px;}
.yd9{bottom:181.275000px;}
.y8a{bottom:185.775000px;}
.y4e{bottom:188.025000px;}
.yb0{bottom:189.150000px;}
.y10d{bottom:190.275000px;}
.y40{bottom:193.650000px;}
.y11f{bottom:194.775000px;}
.yd8{bottom:198.150000px;}
.y89{bottom:203.820000px;}
.y4d{bottom:204.945000px;}
.yaf{bottom:207.195000px;}
.y3f{bottom:210.570000px;}
.y11e{bottom:212.820000px;}
.yd7{bottom:216.195000px;}
.y49{bottom:218.445000px;}
.yae{bottom:220.695000px;}
.y88{bottom:221.820000px;}
.y10c{bottom:224.070000px;}
.y3e{bottom:227.445000px;}
.y11d{bottom:229.695000px;}
.yd6{bottom:233.070000px;}
.y87{bottom:240.945000px;}
.y10b{bottom:242.070000px;}
.y3d{bottom:245.475000px;}
.y11c{bottom:246.600000px;}
.yd5{bottom:249.975000px;}
.y1c{bottom:255.600000px;}
.y86{bottom:257.850000px;}
.y10a{bottom:258.975000px;}
.y3c{bottom:262.350000px;}
.yd4{bottom:264.600000px;}
.y85{bottom:274.725000px;}
.y109{bottom:275.850000px;}
.y3b{bottom:279.255000px;}
.y11b{bottom:281.475000px;}
.yd2{bottom:283.725000px;}
.y2b{bottom:288.270000px;}
.y84{bottom:292.755000px;}
.y108{bottom:293.880000px;}
.y3a{bottom:297.270000px;}
.y11a{bottom:298.395000px;}
.yd1{bottom:302.880000px;}
.y2a{bottom:304.020000px;}
.y83{bottom:309.630000px;}
.y107{bottom:310.755000px;}
.y39{bottom:314.145000px;}
.y119{bottom:316.380000px;}
.ycf{bottom:320.880000px;}
.y29{bottom:322.050000px;}
.y82{bottom:326.550000px;}
.y106{bottom:327.675000px;}
.y38{bottom:331.050000px;}
.y118{bottom:333.300000px;}
.y28{bottom:338.925000px;}
.yce{bottom:343.425000px;}
.y81{bottom:344.550000px;}
.y105{bottom:345.675000px;}
.y37{bottom:349.050000px;}
.y117{bottom:350.175000px;}
.y27{bottom:356.925000px;}
.y80{bottom:361.425000px;}
.y104{bottom:362.550000px;}
.y36{bottom:365.970000px;}
.y116{bottom:368.205000px;}
.y26{bottom:373.845000px;}
.y7f{bottom:378.330000px;}
.y103{bottom:379.470000px;}
.y35{bottom:382.845000px;}
.y115{bottom:385.080000px;}
.y25{bottom:390.720000px;}
.ycd{bottom:395.205000px;}
.y7e{bottom:397.455000px;}
.y34{bottom:400.845000px;}
.y114{bottom:401.955000px;}
.y24{bottom:407.625000px;}
.ycc{bottom:413.250000px;}
.y102{bottom:414.375000px;}
.y7d{bottom:415.500000px;}
.y33{bottom:417.750000px;}
.y113{bottom:420.000000px;}
.y23{bottom:423.375000px;}
.ycb{bottom:427.875000px;}
.y101{bottom:431.250000px;}
.y7c{bottom:433.500000px;}
.y32{bottom:434.625000px;}
.y112{bottom:436.875000px;}
.y22{bottom:440.250000px;}
.yca{bottom:448.125000px;}
.y100{bottom:449.250000px;}
.y7b{bottom:451.530000px;}
.y31{bottom:452.655000px;}
.y111{bottom:453.795000px;}
.y21{bottom:458.280000px;}
.yff{bottom:466.170000px;}
.yc8{bottom:468.405000px;}
.y30{bottom:469.530000px;}
.y7a{bottom:469.545000px;}
.y110{bottom:471.780000px;}
.y20{bottom:475.155000px;}
.yfe{bottom:483.045000px;}
.y2f{bottom:486.405000px;}
.y79{bottom:487.545000px;}
.yc6{bottom:488.655000px;}
.y1f{bottom:495.450000px;}
.yfd{bottom:501.075000px;}
.y2e{bottom:504.450000px;}
.y78{bottom:505.575000px;}
.yc4{bottom:508.950000px;}
.yfc{bottom:517.950000px;}
.y2d{bottom:521.325000px;}
.y1e{bottom:522.450000px;}
.y77{bottom:523.575000px;}
.yc3{bottom:532.575000px;}
.yfb{bottom:534.855000px;}
.y2c{bottom:538.230000px;}
.yad{bottom:539.370000px;}
.y1d{bottom:540.480000px;}
.y76{bottom:540.495000px;}
.yc2{bottom:550.620000px;}
.yfa{bottom:552.870000px;}
.yac{bottom:556.245000px;}
.y75{bottom:557.370000px;}
.yc1{bottom:567.495000px;}
.yf9{bottom:569.745000px;}
.yab{bottom:574.245000px;}
.y74{bottom:575.355000px;}
.yc0{bottom:584.400000px;}
.yf8{bottom:586.650000px;}
.yaa{bottom:591.150000px;}
.y73{bottom:592.275000px;}
.yf7{bottom:600.150000px;}
.ybf{bottom:602.400000px;}
.ya9{bottom:605.775000px;}
.y72{bottom:609.150000px;}
.ybe{bottom:619.320000px;}
.ya8{bottom:624.945000px;}
.y71{bottom:627.195000px;}
.ybd{bottom:636.195000px;}
.y70{bottom:644.070000px;}
.ybc{bottom:649.695000px;}
.y6f{bottom:660.975000px;}
.ydd{bottom:663.750000px;}
.ya7{bottom:664.350000px;}
.y6e{bottom:678.975000px;}
.ya6{bottom:683.475000px;}
.y6d{bottom:695.850000px;}
.ya4{bottom:702.630000px;}
.y6c{bottom:712.770000px;}
.ya3{bottom:721.755000px;}
.ydf{bottom:725.625000px;}
.y6b{bottom:730.755000px;}
.ya1{bottom:739.755000px;}
.y6a{bottom:747.675000px;}
.ya0{bottom:762.300000px;}
.y69{bottom:764.550000px;}
.y9f{bottom:780.300000px;}
.y68{bottom:782.550000px;}
.y9e{bottom:797.205000px;}
.y67{bottom:799.455000px;}
.y19{bottom:807.330000px;}
.ye1{bottom:812.250000px;}
.ye3{bottom:813.375000px;}
.y9d{bottom:814.080000px;}
.y66{bottom:816.330000px;}
.y9c{bottom:832.125000px;}
.y65{bottom:834.375000px;}
.yf{bottom:837.750000px;}
.y9b{bottom:849.000000px;}
.y64{bottom:851.250000px;}
.y9a{bottom:865.875000px;}
.y63{bottom:868.125000px;}
.y99{bottom:883.920000px;}
.y62{bottom:886.170000px;}
.ye6{bottom:897.750000px;}
.ye4{bottom:898.875000px;}
.y98{bottom:900.795000px;}
.y61{bottom:903.045000px;}
.y97{bottom:917.700000px;}
.y60{bottom:919.950000px;}
.y96{bottom:935.700000px;}
.y5f{bottom:937.950000px;}
.yf6{bottom:944.700000px;}
.y95{bottom:952.620000px;}
.y5e{bottom:954.870000px;}
.yf5{bottom:961.620000px;}
.y94{bottom:969.495000px;}
.ye8{bottom:970.875000px;}
.y5d{bottom:971.745000px;}
.yf4{bottom:978.495000px;}
.y93{bottom:987.495000px;}
.y5c{bottom:989.745000px;}
.yf3{bottom:996.525000px;}
.y92{bottom:1004.400000px;}
.y5b{bottom:1006.650000px;}
.yf2{bottom:1011.150000px;}
.ybb{bottom:1016.775000px;}
.y91{bottom:1021.275000px;}
.y5a{bottom:1023.525000px;}
.yd{bottom:1028.025000px;}
.yf1{bottom:1030.275000px;}
.yba{bottom:1033.650000px;}
.y90{bottom:1039.320000px;}
.y59{bottom:1041.570000px;}
.yf0{bottom:1048.320000px;}
.yb9{bottom:1050.570000px;}
.y6{bottom:1053.945000px;}
.y8f{bottom:1056.195000px;}
.y58{bottom:1058.445000px;}
.yef{bottom:1067.445000px;}
.yb8{bottom:1068.570000px;}
.y8e{bottom:1073.070000px;}
.y57{bottom:1075.320000px;}
.yb7{bottom:1083.225000px;}
.yee{bottom:1089.975000px;}
.y8d{bottom:1092.225000px;}
.y56{bottom:1093.350000px;}
.yb6{bottom:1102.350000px;}
.yed{bottom:1106.850000px;}
.y55{bottom:1110.225000px;}
.yb5{bottom:1120.380000px;}
.yec{bottom:1124.880000px;}
.y54{bottom:1127.130000px;}
.yb4{bottom:1139.505000px;}
.yeb{bottom:1141.755000px;}
.y53{bottom:1145.130000px;}
.yea{bottom:1156.380000px;}
.y52{bottom:1162.050000px;}
.h26{height:15.750000px;}
.h20{height:16.875000px;}
.h22{height:16.912500px;}
.h21{height:18.000000px;}
.h1f{height:18.037500px;}
.h23{height:19.125000px;}
.h24{height:19.162500px;}
.h27{height:23.625000px;}
.hc{height:25.912500px;}
.h13{height:29.953125px;}
.h14{height:30.412500px;}
.h2{height:32.625000px;}
.h12{height:35.806641px;}
.h9{height:37.125000px;}
.h1d{height:37.162500px;}
.h1b{height:39.832031px;}
.h18{height:40.847168px;}
.h1c{height:41.275635px;}
.h1a{height:41.389893px;}
.h1e{height:42.589600px;}
.he{height:43.075195px;}
.hb{height:43.875000px;}
.h19{height:47.074219px;}
.h6{height:47.131348px;}
.h17{height:49.234131px;}
.h4{height:53.709961px;}
.h25{height:53.859155px;}
.ha{height:54.000000px;}
.h3{height:55.291992px;}
.h10{height:58.185791px;}
.h11{height:59.899658px;}
.hf{height:64.237500px;}
.h5{height:69.114990px;}
.h8{height:71.613281px;}
.h15{height:73.722656px;}
.h28{height:85.040771px;}
.h7{height:121.612500px;}
.hd{height:190.275000px;}
.h16{height:551.745000px;}
.h0{height:1263.375000px;}
.h1{height:1263.750000px;}
.w1b{width:10.125000px;}
.w1a{width:16.875000px;}
.w19{width:18.000000px;}
.w1f{width:34.875000px;}
.w1c{width:36.000000px;}
.w2{width:74.362500px;}
.w20{width:92.250000px;}
.w21{width:109.125000px;}
.w18{width:116.025000px;}
.w1d{width:146.250000px;}
.w1e{width:147.375000px;}
.w4{width:152.055000px;}
.w9{width:153.180000px;}
.wa{width:164.475000px;}
.w22{width:167.805000px;}
.w12{width:171.225000px;}
.w13{width:195.975000px;}
.wb{width:205.005000px;}
.wc{width:205.020000px;}
.wd{width:209.520000px;}
.w7{width:223.020000px;}
.we{width:226.425000px;}
.w11{width:237.675000px;}
.w23{width:247.800000px;}
.w17{width:254.595000px;}
.w15{width:255.720000px;}
.w14{width:278.250000px;}
.wf{width:294.000000px;}
.w24{width:314.280000px;}
.w10{width:319.905000px;}
.w16{width:359.325000px;}
.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;}
.x30{left:2.025000px;}
.x8{left:7.875000px;}
.x2{left:9.037500px;}
.x16{left:12.420000px;}
.x1{left:72.075000px;}
.x5{left:73.237500px;}
.xf{left:79.942500px;}
.x4{left:81.112487px;}
.x11{left:95.737500px;}
.x6{left:97.987500px;}
.x1b{left:108.149987px;}
.x13{left:111.487500px;}
.x12{left:120.532500px;}
.x41{left:128.399987px;}
.x10{left:139.657500px;}
.x42{left:140.812487px;}
.x3b{left:173.250000px;}
.x39{left:174.375000px;}
.x14{left:214.012500px;}
.x7{left:225.300000px;}
.x3d{left:227.250000px;}
.x1d{left:235.425000px;}
.x17{left:245.549987px;}
.x3f{left:250.095000px;}
.x1c{left:257.969987px;}
.x18{left:259.094987px;}
.x43{left:272.594987px;}
.x2a{left:278.220000px;}
.x44{left:283.874987px;}
.x29{left:287.249987px;}
.xb{left:290.625000px;}
.x23{left:291.750000px;}
.x15{left:296.250000px;}
.x21{left:299.624987px;}
.x22{left:301.874987px;}
.x26{left:306.374987px;}
.x37{left:326.250000px;}
.x19{left:337.949987px;}
.x9{left:344.670000px;}
.x45{left:348.074987px;}
.x1a{left:351.449987px;}
.x2c{left:354.824987px;}
.x46{left:359.324987px;}
.xa{left:364.950000px;}
.xd{left:366.075000px;}
.x50{left:368.369987px;}
.xe{left:373.957500px;}
.x36{left:381.375000px;}
.x3e{left:392.625000px;}
.x51{left:397.649987px;}
.x47{left:398.774987px;}
.x1e{left:401.025000px;}
.x27{left:403.275000px;}
.x48{left:410.024987px;}
.x35{left:432.000000px;}
.x2d{left:441.570000px;}
.x3c{left:451.125000px;}
.xc{left:453.945000px;}
.x34{left:486.000000px;}
.x40{left:499.020000px;}
.x49{left:517.049987px;}
.x24{left:519.300000px;}
.x4a{left:528.299987px;}
.x33{left:541.125000px;}
.x2b{left:557.595000px;}
.x4b{left:577.874987px;}
.x4c{left:590.249987px;}
.x32{left:596.250000px;}
.x38{left:605.250000px;}
.x1f{left:608.280000px;}
.x4d{left:613.904987px;}
.x4e{left:625.169987px;}
.x28{left:642.075000px;}
.x31{left:650.250000px;}
.x3a{left:686.250000px;}
.x2e{left:697.275000px;}
.x20{left:698.399987px;}
.x2f{left:704.250000px;}
.x4f{left:724.319987px;}
.x25{left:732.194987px;}
.x3{left:746.820000px;}
@media print{
.v2{vertical-align:-16.000000pt;}
.v3{vertical-align:-12.000000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:16.000000pt;}
.ls14{letter-spacing:-2.458667pt;}
.lsc{letter-spacing:-2.421333pt;}
.ls16{letter-spacing:-1.546667pt;}
.lse{letter-spacing:-1.498667pt;}
.ls1a{letter-spacing:-1.317333pt;}
.ls12{letter-spacing:-1.002667pt;}
.ls18{letter-spacing:-0.912000pt;}
.lsd{letter-spacing:-0.704000pt;}
.ls20{letter-spacing:-0.403733pt;}
.lsb{letter-spacing:-0.336000pt;}
.ls21{letter-spacing:-0.270400pt;}
.lsa{letter-spacing:0.000000pt;}
.lsf{letter-spacing:0.080000pt;}
.ls23{letter-spacing:0.229333pt;}
.ls9{letter-spacing:0.248000pt;}
.ls17{letter-spacing:0.752000pt;}
.ls6{letter-spacing:0.768000pt;}
.ls0{letter-spacing:1.125333pt;}
.ls1f{letter-spacing:1.152000pt;}
.ls1{letter-spacing:1.312000pt;}
.ls15{letter-spacing:1.317333pt;}
.ls13{letter-spacing:1.546667pt;}
.ls2{letter-spacing:1.648000pt;}
.ls5{letter-spacing:1.694667pt;}
.ls22{letter-spacing:1.712000pt;}
.ls3{letter-spacing:1.748000pt;}
.ls4{letter-spacing:1.908000pt;}
.ls24{letter-spacing:1.924000pt;}
.ls26{letter-spacing:1.946667pt;}
.ls7{letter-spacing:2.000000pt;}
.ls29{letter-spacing:2.053333pt;}
.ls8{letter-spacing:2.064000pt;}
.ls27{letter-spacing:2.106667pt;}
.ls1e{letter-spacing:2.133333pt;}
.ls28{letter-spacing:2.160000pt;}
.ls19{letter-spacing:2.682667pt;}
.ls11{letter-spacing:3.000000pt;}
.ls1b{letter-spacing:3.546667pt;}
.ls1c{letter-spacing:4.912000pt;}
.ls2a{letter-spacing:13.677333pt;}
.ls1d{letter-spacing:15.000000pt;}
.ls25{letter-spacing:41.677333pt;}
.ls10{letter-spacing:57.677333pt;}
.ws11{word-spacing:-17.912000pt;}
.ws10{word-spacing:-16.546667pt;}
.wse{word-spacing:-15.682667pt;}
.ws6{word-spacing:-15.000000pt;}
.ws19{word-spacing:-14.924000pt;}
.ws9{word-spacing:-14.546667pt;}
.ws3{word-spacing:-14.352000pt;}
.wsb{word-spacing:-14.317333pt;}
.ws2{word-spacing:-13.648000pt;}
.ws5{word-spacing:-13.000000pt;}
.ws16{word-spacing:-12.560000pt;}
.ws18{word-spacing:-12.496000pt;}
.wsd{word-spacing:-12.088000pt;}
.ws7{word-spacing:-11.752000pt;}
.wsf{word-spacing:-11.682667pt;}
.wsc{word-spacing:-11.453333pt;}
.ws1{word-spacing:-11.138667pt;}
.ws17{word-spacing:-11.077333pt;}
.ws14{word-spacing:-10.878133pt;}
.ws15{word-spacing:-10.848000pt;}
.ws13{word-spacing:-10.607733pt;}
.wsa{word-spacing:-10.541333pt;}
.ws0{word-spacing:-10.512000pt;}
.ws12{word-spacing:-10.474400pt;}
.ws4{word-spacing:-7.232000pt;}
.ws8{word-spacing:0.000000pt;}
._6{margin-left:-5.446667pt;}
._7{margin-left:-4.510133pt;}
._1e{margin-left:-3.518667pt;}
._2{margin-left:-2.448000pt;}
._1{margin-left:-1.056000pt;}
._0{width:1.728000pt;}
._4{width:3.077333pt;}
._3{width:4.752000pt;}
._f{width:5.693333pt;}
._19{width:6.589333pt;}
._8{width:7.517333pt;}
._1f{width:8.425333pt;}
._5{width:9.776000pt;}
._a{width:10.908000pt;}
._1a{width:11.808000pt;}
._d{width:14.706667pt;}
._e{width:15.722667pt;}
._13{width:18.604000pt;}
._c{width:19.597333pt;}
._b{width:22.580000pt;}
._14{width:23.537333pt;}
._16{width:26.288000pt;}
._15{width:27.824000pt;}
._17{width:30.065333pt;}
._18{width:31.692000pt;}
._11{width:34.317333pt;}
._12{width:35.628000pt;}
._10{width:39.458667pt;}
._1d{width:42.714667pt;}
._1c{width:43.910667pt;}
._1b{width:46.601333pt;}
._9{width:245.008000pt;}
.fs7{font-size:32.000000pt;}
.fs6{font-size:36.000000pt;}
.fs3{font-size:44.000000pt;}
.fs0{font-size:48.000000pt;}
.fs8{font-size:48.133333pt;}
.fs4{font-size:52.000000pt;}
.fs1{font-size:60.000000pt;}
.fs2{font-size:64.000000pt;}
.fs9{font-size:76.000000pt;}
.fs5{font-size:76.133333pt;}
.y0{bottom:0.000000pt;}
.y1a{bottom:1.000000pt;}
.ye2{bottom:2.626667pt;}
.ye5{bottom:2.706667pt;}
.y3{bottom:3.000000pt;}
.ya5{bottom:3.013333pt;}
.yd3{bottom:3.026667pt;}
.yde{bottom:3.533333pt;}
.ye0{bottom:3.573333pt;}
.y18{bottom:4.000000pt;}
.yd0{bottom:4.013333pt;}
.ya2{bottom:4.040000pt;}
.ye7{bottom:4.706667pt;}
.yc5{bottom:5.000000pt;}
.yc9{bottom:5.013333pt;}
.yc7{bottom:5.040000pt;}
.ye9{bottom:5.773333pt;}
.y4b{bottom:10.000000pt;}
.ye{bottom:10.040000pt;}
.y1b{bottom:11.000000pt;}
.yc{bottom:12.000000pt;}
.y4{bottom:16.000000pt;}
.y2{bottom:18.000000pt;}
.y4c{bottom:20.000000pt;}
.y4a{bottom:23.026667pt;}
.y17{bottom:25.000000pt;}
.yb{bottom:27.026667pt;}
.y48{bottom:34.026667pt;}
.y16{bottom:40.040000pt;}
.ya{bottom:41.026667pt;}
.y47{bottom:49.026667pt;}
.y5{bottom:50.033333pt;}
.y15{bottom:54.040000pt;}
.y46{bottom:64.066667pt;}
.y9{bottom:65.053333pt;}
.y1{bottom:69.066667pt;}
.y14{bottom:78.066667pt;}
.y45{bottom:80.066667pt;}
.y8{bottom:83.053333pt;}
.y13{bottom:94.066667pt;}
.y44{bottom:95.066667pt;}
.y7{bottom:98.093333pt;}
.y10f{bottom:107.100000pt;}
.ydc{bottom:108.100000pt;}
.y43{bottom:110.106667pt;}
.y12{bottom:111.106667pt;}
.y123{bottom:112.100000pt;}
.y8c{bottom:119.100000pt;}
.y51{bottom:121.100000pt;}
.yb3{bottom:122.100000pt;}
.y10e{bottom:123.100000pt;}
.ydb{bottom:124.100000pt;}
.y42{bottom:126.093333pt;}
.y122{bottom:127.100000pt;}
.y11{bottom:134.106667pt;}
.y50{bottom:136.093333pt;}
.yb2{bottom:138.106667pt;}
.yda{bottom:141.106667pt;}
.y41{bottom:141.133333pt;}
.y121{bottom:143.133333pt;}
.y8b{bottom:149.133333pt;}
.y4f{bottom:151.133333pt;}
.yb1{bottom:153.133333pt;}
.y10{bottom:156.133333pt;}
.y120{bottom:158.133333pt;}
.yd9{bottom:161.133333pt;}
.y8a{bottom:165.133333pt;}
.y4e{bottom:167.133333pt;}
.yb0{bottom:168.133333pt;}
.y10d{bottom:169.133333pt;}
.y40{bottom:172.133333pt;}
.y11f{bottom:173.133333pt;}
.yd8{bottom:176.133333pt;}
.y89{bottom:181.173333pt;}
.y4d{bottom:182.173333pt;}
.yaf{bottom:184.173333pt;}
.y3f{bottom:187.173333pt;}
.y11e{bottom:189.173333pt;}
.yd7{bottom:192.173333pt;}
.y49{bottom:194.173333pt;}
.yae{bottom:196.173333pt;}
.y88{bottom:197.173333pt;}
.y10c{bottom:199.173333pt;}
.y3e{bottom:202.173333pt;}
.y11d{bottom:204.173333pt;}
.yd6{bottom:207.173333pt;}
.y87{bottom:214.173333pt;}
.y10b{bottom:215.173333pt;}
.y3d{bottom:218.200000pt;}
.y11c{bottom:219.200000pt;}
.yd5{bottom:222.200000pt;}
.y1c{bottom:227.200000pt;}
.y86{bottom:229.200000pt;}
.y10a{bottom:230.200000pt;}
.y3c{bottom:233.200000pt;}
.yd4{bottom:235.200000pt;}
.y85{bottom:244.200000pt;}
.y109{bottom:245.200000pt;}
.y3b{bottom:248.226667pt;}
.y11b{bottom:250.200000pt;}
.yd2{bottom:252.200000pt;}
.y2b{bottom:256.240000pt;}
.y84{bottom:260.226667pt;}
.y108{bottom:261.226667pt;}
.y3a{bottom:264.240000pt;}
.y11a{bottom:265.240000pt;}
.yd1{bottom:269.226667pt;}
.y2a{bottom:270.240000pt;}
.y83{bottom:275.226667pt;}
.y107{bottom:276.226667pt;}
.y39{bottom:279.240000pt;}
.y119{bottom:281.226667pt;}
.ycf{bottom:285.226667pt;}
.y29{bottom:286.266667pt;}
.y82{bottom:290.266667pt;}
.y106{bottom:291.266667pt;}
.y38{bottom:294.266667pt;}
.y118{bottom:296.266667pt;}
.y28{bottom:301.266667pt;}
.yce{bottom:305.266667pt;}
.y81{bottom:306.266667pt;}
.y105{bottom:307.266667pt;}
.y37{bottom:310.266667pt;}
.y117{bottom:311.266667pt;}
.y27{bottom:317.266667pt;}
.y80{bottom:321.266667pt;}
.y104{bottom:322.266667pt;}
.y36{bottom:325.306667pt;}
.y116{bottom:327.293333pt;}
.y26{bottom:332.306667pt;}
.y7f{bottom:336.293333pt;}
.y103{bottom:337.306667pt;}
.y35{bottom:340.306667pt;}
.y115{bottom:342.293333pt;}
.y25{bottom:347.306667pt;}
.ycd{bottom:351.293333pt;}
.y7e{bottom:353.293333pt;}
.y34{bottom:356.306667pt;}
.y114{bottom:357.293333pt;}
.y24{bottom:362.333333pt;}
.ycc{bottom:367.333333pt;}
.y102{bottom:368.333333pt;}
.y7d{bottom:369.333333pt;}
.y33{bottom:371.333333pt;}
.y113{bottom:373.333333pt;}
.y23{bottom:376.333333pt;}
.ycb{bottom:380.333333pt;}
.y101{bottom:383.333333pt;}
.y7c{bottom:385.333333pt;}
.y32{bottom:386.333333pt;}
.y112{bottom:388.333333pt;}
.y22{bottom:391.333333pt;}
.yca{bottom:398.333333pt;}
.y100{bottom:399.333333pt;}
.y7b{bottom:401.360000pt;}
.y31{bottom:402.360000pt;}
.y111{bottom:403.373333pt;}
.y21{bottom:407.360000pt;}
.yff{bottom:414.373333pt;}
.yc8{bottom:416.360000pt;}
.y30{bottom:417.360000pt;}
.y7a{bottom:417.373333pt;}
.y110{bottom:419.360000pt;}
.y20{bottom:422.360000pt;}
.yfe{bottom:429.373333pt;}
.y2f{bottom:432.360000pt;}
.y79{bottom:433.373333pt;}
.yc6{bottom:434.360000pt;}
.y1f{bottom:440.400000pt;}
.yfd{bottom:445.400000pt;}
.y2e{bottom:448.400000pt;}
.y78{bottom:449.400000pt;}
.yc4{bottom:452.400000pt;}
.yfc{bottom:460.400000pt;}
.y2d{bottom:463.400000pt;}
.y1e{bottom:464.400000pt;}
.y77{bottom:465.400000pt;}
.yc3{bottom:473.400000pt;}
.yfb{bottom:475.426667pt;}
.y2c{bottom:478.426667pt;}
.yad{bottom:479.440000pt;}
.y1d{bottom:480.426667pt;}
.y76{bottom:480.440000pt;}
.yc2{bottom:489.440000pt;}
.yfa{bottom:491.440000pt;}
.yac{bottom:494.440000pt;}
.y75{bottom:495.440000pt;}
.yc1{bottom:504.440000pt;}
.yf9{bottom:506.440000pt;}
.yab{bottom:510.440000pt;}
.y74{bottom:511.426667pt;}
.yc0{bottom:519.466667pt;}
.yf8{bottom:521.466667pt;}
.yaa{bottom:525.466667pt;}
.y73{bottom:526.466667pt;}
.yf7{bottom:533.466667pt;}
.ybf{bottom:535.466667pt;}
.ya9{bottom:538.466667pt;}
.y72{bottom:541.466667pt;}
.ybe{bottom:550.506667pt;}
.ya8{bottom:555.506667pt;}
.y71{bottom:557.506667pt;}
.ybd{bottom:565.506667pt;}
.y70{bottom:572.506667pt;}
.ybc{bottom:577.506667pt;}
.y6f{bottom:587.533333pt;}
.ydd{bottom:590.000000pt;}
.ya7{bottom:590.533333pt;}
.y6e{bottom:603.533333pt;}
.ya6{bottom:607.533333pt;}
.y6d{bottom:618.533333pt;}
.ya4{bottom:624.560000pt;}
.y6c{bottom:633.573333pt;}
.ya3{bottom:641.560000pt;}
.ydf{bottom:645.000000pt;}
.y6b{bottom:649.560000pt;}
.ya1{bottom:657.560000pt;}
.y6a{bottom:664.600000pt;}
.ya0{bottom:677.600000pt;}
.y69{bottom:679.600000pt;}
.y9f{bottom:693.600000pt;}
.y68{bottom:695.600000pt;}
.y9e{bottom:708.626667pt;}
.y67{bottom:710.626667pt;}
.y19{bottom:717.626667pt;}
.ye1{bottom:722.000000pt;}
.ye3{bottom:723.000000pt;}
.y9d{bottom:723.626667pt;}
.y66{bottom:725.626667pt;}
.y9c{bottom:739.666667pt;}
.y65{bottom:741.666667pt;}
.yf{bottom:744.666667pt;}
.y9b{bottom:754.666667pt;}
.y64{bottom:756.666667pt;}
.y9a{bottom:769.666667pt;}
.y63{bottom:771.666667pt;}
.y99{bottom:785.706667pt;}
.y62{bottom:787.706667pt;}
.ye6{bottom:798.000000pt;}
.ye4{bottom:799.000000pt;}
.y98{bottom:800.706667pt;}
.y61{bottom:802.706667pt;}
.y97{bottom:815.733333pt;}
.y60{bottom:817.733333pt;}
.y96{bottom:831.733333pt;}
.y5f{bottom:833.733333pt;}
.yf6{bottom:839.733333pt;}
.y95{bottom:846.773333pt;}
.y5e{bottom:848.773333pt;}
.yf5{bottom:854.773333pt;}
.y94{bottom:861.773333pt;}
.ye8{bottom:863.000000pt;}
.y5d{bottom:863.773333pt;}
.yf4{bottom:869.773333pt;}
.y93{bottom:877.773333pt;}
.y5c{bottom:879.773333pt;}
.yf3{bottom:885.800000pt;}
.y92{bottom:892.800000pt;}
.y5b{bottom:894.800000pt;}
.yf2{bottom:898.800000pt;}
.ybb{bottom:903.800000pt;}
.y91{bottom:907.800000pt;}
.y5a{bottom:909.800000pt;}
.yd{bottom:913.800000pt;}
.yf1{bottom:915.800000pt;}
.yba{bottom:918.800000pt;}
.y90{bottom:923.840000pt;}
.y59{bottom:925.840000pt;}
.yf0{bottom:931.840000pt;}
.yb9{bottom:933.840000pt;}
.y6{bottom:936.840000pt;}
.y8f{bottom:938.840000pt;}
.y58{bottom:940.840000pt;}
.yef{bottom:948.840000pt;}
.yb8{bottom:949.840000pt;}
.y8e{bottom:953.840000pt;}
.y57{bottom:955.840000pt;}
.yb7{bottom:962.866667pt;}
.yee{bottom:968.866667pt;}
.y8d{bottom:970.866667pt;}
.y56{bottom:971.866667pt;}
.yb6{bottom:979.866667pt;}
.yed{bottom:983.866667pt;}
.y55{bottom:986.866667pt;}
.yb5{bottom:995.893333pt;}
.yec{bottom:999.893333pt;}
.y54{bottom:1001.893333pt;}
.yb4{bottom:1012.893333pt;}
.yeb{bottom:1014.893333pt;}
.y53{bottom:1017.893333pt;}
.yea{bottom:1027.893333pt;}
.y52{bottom:1032.933333pt;}
.h26{height:14.000000pt;}
.h20{height:15.000000pt;}
.h22{height:15.033333pt;}
.h21{height:16.000000pt;}
.h1f{height:16.033333pt;}
.h23{height:17.000000pt;}
.h24{height:17.033333pt;}
.h27{height:21.000000pt;}
.hc{height:23.033333pt;}
.h13{height:26.625000pt;}
.h14{height:27.033333pt;}
.h2{height:29.000000pt;}
.h12{height:31.828125pt;}
.h9{height:33.000000pt;}
.h1d{height:33.033333pt;}
.h1b{height:35.406250pt;}
.h18{height:36.308594pt;}
.h1c{height:36.689453pt;}
.h1a{height:36.791016pt;}
.h1e{height:37.857422pt;}
.he{height:38.289062pt;}
.hb{height:39.000000pt;}
.h19{height:41.843750pt;}
.h6{height:41.894531pt;}
.h17{height:43.763672pt;}
.h4{height:47.742188pt;}
.h25{height:47.874805pt;}
.ha{height:48.000000pt;}
.h3{height:49.148438pt;}
.h10{height:51.720703pt;}
.h11{height:53.244141pt;}
.hf{height:57.100000pt;}
.h5{height:61.435547pt;}
.h8{height:63.656250pt;}
.h15{height:65.531250pt;}
.h28{height:75.591797pt;}
.h7{height:108.100000pt;}
.hd{height:169.133333pt;}
.h16{height:490.440000pt;}
.h0{height:1123.000000pt;}
.h1{height:1123.333333pt;}
.w1b{width:9.000000pt;}
.w1a{width:15.000000pt;}
.w19{width:16.000000pt;}
.w1f{width:31.000000pt;}
.w1c{width:32.000000pt;}
.w2{width:66.100000pt;}
.w20{width:82.000000pt;}
.w21{width:97.000000pt;}
.w18{width:103.133333pt;}
.w1d{width:130.000000pt;}
.w1e{width:131.000000pt;}
.w4{width:135.160000pt;}
.w9{width:136.160000pt;}
.wa{width:146.200000pt;}
.w22{width:149.160000pt;}
.w12{width:152.200000pt;}
.w13{width:174.200000pt;}
.wb{width:182.226667pt;}
.wc{width:182.240000pt;}
.wd{width:186.240000pt;}
.w7{width:198.240000pt;}
.we{width:201.266667pt;}
.w11{width:211.266667pt;}
.w23{width:220.266667pt;}
.w17{width:226.306667pt;}
.w15{width:227.306667pt;}
.w14{width:247.333333pt;}
.wf{width:261.333333pt;}
.w24{width:279.360000pt;}
.w10{width:284.360000pt;}
.w16{width:319.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;}
.x30{left:1.800000pt;}
.x8{left:7.000000pt;}
.x2{left:8.033333pt;}
.x16{left:11.040000pt;}
.x1{left:64.066667pt;}
.x5{left:65.100000pt;}
.xf{left:71.060000pt;}
.x4{left:72.099988pt;}
.x11{left:85.100000pt;}
.x6{left:87.100000pt;}
.x1b{left:96.133322pt;}
.x13{left:99.100000pt;}
.x12{left:107.140000pt;}
.x41{left:114.133322pt;}
.x10{left:124.140000pt;}
.x42{left:125.166655pt;}
.x3b{left:154.000000pt;}
.x39{left:155.000000pt;}
.x14{left:190.233333pt;}
.x7{left:200.266667pt;}
.x3d{left:202.000000pt;}
.x1d{left:209.266667pt;}
.x17{left:218.266655pt;}
.x3f{left:222.306667pt;}
.x1c{left:229.306655pt;}
.x18{left:230.306655pt;}
.x43{left:242.306655pt;}
.x2a{left:247.306667pt;}
.x44{left:252.333322pt;}
.x29{left:255.333322pt;}
.xb{left:258.333333pt;}
.x23{left:259.333333pt;}
.x15{left:263.333333pt;}
.x21{left:266.333322pt;}
.x22{left:268.333322pt;}
.x26{left:272.333322pt;}
.x37{left:290.000000pt;}
.x19{left:300.399988pt;}
.x9{left:306.373333pt;}
.x45{left:309.399988pt;}
.x1a{left:312.399988pt;}
.x2c{left:315.399988pt;}
.x46{left:319.399988pt;}
.xa{left:324.400000pt;}
.xd{left:325.400000pt;}
.x50{left:327.439988pt;}
.xe{left:332.406667pt;}
.x36{left:339.000000pt;}
.x3e{left:349.000000pt;}
.x51{left:353.466655pt;}
.x47{left:354.466655pt;}
.x1e{left:356.466667pt;}
.x27{left:358.466667pt;}
.x48{left:364.466655pt;}
.x35{left:384.000000pt;}
.x2d{left:392.506667pt;}
.x3c{left:401.000000pt;}
.xc{left:403.506667pt;}
.x34{left:432.000000pt;}
.x40{left:443.573333pt;}
.x49{left:459.599988pt;}
.x24{left:461.600000pt;}
.x4a{left:469.599988pt;}
.x33{left:481.000000pt;}
.x2b{left:495.640000pt;}
.x4b{left:513.666655pt;}
.x4c{left:524.666655pt;}
.x32{left:530.000000pt;}
.x38{left:538.000000pt;}
.x1f{left:540.693333pt;}
.x4d{left:545.693322pt;}
.x4e{left:555.706655pt;}
.x28{left:570.733333pt;}
.x31{left:578.000000pt;}
.x3a{left:610.000000pt;}
.x2e{left:619.800000pt;}
.x20{left:620.799988pt;}
.x2f{left:626.000000pt;}
.x4f{left:643.839988pt;}
.x25{left:650.839988pt;}
.x3{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; }
  