
    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_0774b18923dd0a16b049a579.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_200dfdcb7b29f7d19b5bd1ad.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_c49c1ae83030e0d5e6e62599.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_248194348d96b7ff0e5c3f40.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.941895;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_4dabf42399daa1e6f8966cc3.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.727539;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_ae3e7de1e452a808c6c019d5.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.740723;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_44b350d49f0817e034cedfef.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.793457;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_6ea0543432874f55b88cd9a0.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.941895;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_d535d40e2cf7b5d02163c4c1.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.972168;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_b99dcdb09dfed91ea8fbc25d.woff2')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_7fd7fee328384464cf54889e.woff2')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_15051b24257b435c9aeda087.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.128906;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_84ece71775d4bd1f0f07346c.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.128906;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_e10537f6801728c11a0f3e39.woff2')format("woff");}.ffe{font-family:ffe;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:fff;src:url('chunks/assets/font_0ecd2b393ef6267d81bc5c23.woff2')format("woff");}.fff{font-family:fff;line-height:0.962402;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_fe7da037080ac4e012b29ea7.woff2')format("woff");}.ff10{font-family:ff10;line-height:1.128906;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_94e294db25ee5246f7f4f209.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.927734;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:ff12;src:url('chunks/assets/font_62dcc1848896dd4bb8cfe808.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.952148;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:ff13;src:url('chunks/assets/font_82864cf05aff8f240fe99ba0.woff2')format("woff");}.ff13{font-family:ff13;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:ff14;src:url('chunks/assets/font_ba821fab11aa90661cc39b67.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.747070;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:ff15;src:url('chunks/assets/font_c80544c3d5ebe0cf8997ede0.woff2')format("woff");}.ff15{font-family:ff15;line-height:0.853027;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:ff16;src:url('chunks/assets/font_e0027e0c98c1a4edeaa07f9d.woff2')format("woff");}.ff16{font-family:ff16;line-height:1.128906;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;}
.m2{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);}
.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:-23.760000px;}
.v3{vertical-align:-15.096000px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:2.880000px;}
.v1{vertical-align:21.060000px;}
.ls14{letter-spacing:-1.944000px;}
.lsf{letter-spacing:-1.620000px;}
.ls10{letter-spacing:-1.116000px;}
.lse{letter-spacing:-1.044000px;}
.ls15{letter-spacing:-0.342000px;}
.ls6{letter-spacing:-0.331200px;}
.ls12{letter-spacing:-0.324000px;}
.ls13{letter-spacing:-0.270000px;}
.ls7{letter-spacing:-0.234000px;}
.ls9{letter-spacing:-0.180000px;}
.ls5{letter-spacing:-0.091200px;}
.ls4{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.031680px;}
.lsb{letter-spacing:0.144000px;}
.ls0{letter-spacing:0.234720px;}
.lsc{letter-spacing:0.288000px;}
.ls2{letter-spacing:0.331200px;}
.ls11{letter-spacing:0.342000px;}
.ls1{letter-spacing:0.414720px;}
.lsa{letter-spacing:0.450000px;}
.ls8{letter-spacing:0.558000px;}
.lsd{letter-spacing:0.630000px;}
.sc_{text-shadow:none;}
.sc2{text-shadow:-0.015em 0 rgb(255,255,255),0 0.015em rgb(255,255,255),0.015em 0 rgb(255,255,255),0 -0.015em  rgb(255,255,255);}
.sc1{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
.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;}
.sc2{-webkit-text-stroke:0.015em rgb(255,255,255);text-shadow:none;}
.sc1{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws8{word-spacing:-54.000000px;}
.ws0{word-spacing:-22.316640px;}
.ws5{word-spacing:-18.234000px;}
.ws3{word-spacing:-18.000000px;}
.ws2{word-spacing:-17.640000px;}
.ws4{word-spacing:-15.179040px;}
.wsd{word-spacing:-14.058000px;}
.wsa{word-spacing:-13.716000px;}
.ws7{word-spacing:-13.014000px;}
.ws9{word-spacing:-12.780000px;}
.wsf{word-spacing:-12.744000px;}
.wse{word-spacing:-12.690000px;}
.wsc{word-spacing:-12.600000px;}
.wsb{word-spacing:-11.970000px;}
.ws10{word-spacing:-11.772000px;}
.ws1{word-spacing:-10.342080px;}
.ws6{word-spacing:0.000000px;}
._2d{margin-left:-2.635200px;}
._0{margin-left:-1.263600px;}
._1{width:1.056000px;}
._5{width:2.249520px;}
._7{width:3.864000px;}
._8{width:5.125920px;}
._c{width:7.030800px;}
._b{width:8.100000px;}
._6{width:10.080000px;}
._16{width:11.467440px;}
._9{width:14.400000px;}
._a{width:15.459600px;}
._d{width:16.515600px;}
._1d{width:17.547600px;}
._13{width:18.549120px;}
._f{width:19.656000px;}
._e{width:21.168000px;}
._14{width:22.399920px;}
._1b{width:24.384000px;}
._20{width:25.458000px;}
._29{width:26.805600px;}
._19{width:27.810000px;}
._1a{width:29.106000px;}
._11{width:30.948480px;}
._1c{width:32.147520px;}
._12{width:33.491520px;}
._2a{width:34.685520px;}
._4{width:35.718480px;}
._24{width:36.720000px;}
._28{width:38.016000px;}
._18{width:39.433440px;}
._1e{width:40.494000px;}
._22{width:44.094000px;}
._23{width:45.558000px;}
._21{width:46.596000px;}
._25{width:48.476400px;}
._27{width:50.112000px;}
._15{width:51.840960px;}
._3{width:53.817120px;}
._2{width:55.062000px;}
._17{width:59.227440px;}
._2b{width:63.288000px;}
._2c{width:64.446000px;}
._1f{width:65.664000px;}
._2e{width:66.700800px;}
._26{width:75.924000px;}
._10{width:1404.840000px;}
.fc5{color:transparent;}
.fc4{color:rgb(0,32,96);}
.fc3{color:rgb(0,0,128);}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fsb{font-size:9.360000px;}
.fs3{font-size:12.240000px;}
.fsa{font-size:23.760000px;}
.fs7{font-size:33.120000px;}
.fs6{font-size:38.880000px;}
.fsd{font-size:41.760000px;}
.fs5{font-size:48.240000px;}
.fs9{font-size:54.000000px;}
.fse{font-size:56.920429px;}
.fs8{font-size:59.760000px;}
.fs0{font-size:72.000000px;}
.fsc{font-size:74.880000px;}
.fs1{font-size:84.240000px;}
.fs4{font-size:95.760000px;}
.fs2{font-size:108.000000px;}
.y3d{bottom:-16.380000px;}
.y0{bottom:0.000000px;}
.y16{bottom:2.520000px;}
.y6{bottom:2.700000px;}
.yf2{bottom:2.880000px;}
.yed{bottom:3.060000px;}
.y11{bottom:3.240000px;}
.y106{bottom:3.600000px;}
.yf0{bottom:3.780000px;}
.y3{bottom:3.960000px;}
.y1f{bottom:4.140000px;}
.yf6{bottom:4.500000px;}
.y36{bottom:7.734000px;}
.y3c{bottom:9.180000px;}
.yea{bottom:12.420000px;}
.y34{bottom:13.860000px;}
.y14{bottom:14.940000px;}
.y1d{bottom:15.120000px;}
.y25{bottom:16.200000px;}
.y102{bottom:16.740000px;}
.yff{bottom:18.180000px;}
.yec{bottom:18.360000px;}
.y105{bottom:18.900000px;}
.yef{bottom:19.080000px;}
.y21{bottom:19.620000px;}
.yf5{bottom:19.800000px;}
.yf{bottom:20.160000px;}
.y23{bottom:23.580000px;}
.y3b{bottom:30.420000px;}
.yfe{bottom:33.660000px;}
.yf4{bottom:35.100000px;}
.y33{bottom:36.900000px;}
.y13{bottom:45.540000px;}
.yfd{bottom:48.960000px;}
.y1c{bottom:51.660000px;}
.y3a{bottom:51.840000px;}
.y4{bottom:57.780000px;}
.y32{bottom:59.760000px;}
.ye{bottom:60.840000px;}
.y2{bottom:74.556000px;}
.y39{bottom:75.630000px;}
.y1b{bottom:76.320000px;}
.y9{bottom:80.820000px;}
.y31{bottom:82.800000px;}
.y8{bottom:91.110000px;}
.yd{bottom:101.700000px;}
.y30{bottom:105.840000px;}
.y171{bottom:111.276000px;}
.y125{bottom:111.816000px;}
.y189{bottom:112.176000px;}
.y1a{bottom:112.860000px;}
.yb5{bottom:112.896000px;}
.ydc{bottom:114.336000px;}
.y14a{bottom:114.516000px;}
.y6c{bottom:122.616000px;}
.y89{bottom:123.336000px;}
.y2f{bottom:128.880000px;}
.y37{bottom:132.876000px;}
.y114{bottom:133.056000px;}
.y170{bottom:134.316000px;}
.y124{bottom:134.856000px;}
.y188{bottom:135.216000px;}
.yb4{bottom:136.296000px;}
.ydb{bottom:137.376000px;}
.y19{bottom:137.520000px;}
.y149{bottom:138.456000px;}
.y6b{bottom:144.936000px;}
.y35{bottom:145.296000px;}
.y88{bottom:146.376000px;}
.y2e{bottom:151.920000px;}
.y113{bottom:156.090000px;}
.y16f{bottom:157.350000px;}
.y123{bottom:157.890000px;}
.y187{bottom:158.250000px;}
.yb3{bottom:159.690000px;}
.yda{bottom:160.410000px;}
.y148{bottom:161.850000px;}
.y26{bottom:162.750000px;}
.y6a{bottom:167.250000px;}
.y87{bottom:169.410000px;}
.y18{bottom:174.060000px;}
.y2d{bottom:175.005000px;}
.y112{bottom:179.130000px;}
.y16e{bottom:180.390000px;}
.yd9{bottom:180.570000px;}
.y122{bottom:180.930000px;}
.y186{bottom:181.110000px;}
.yb2{bottom:183.270000px;}
.y147{bottom:185.250000px;}
.y69{bottom:187.410000px;}
.y86{bottom:192.450000px;}
.y185{bottom:196.590000px;}
.y2c{bottom:197.865000px;}
.y111{bottom:202.170000px;}
.y16d{bottom:203.250000px;}
.y121{bottom:203.970000px;}
.yb1{bottom:206.670000px;}
.y68{bottom:207.030000px;}
.y146{bottom:208.650000px;}
.y85{bottom:215.490000px;}
.y184{bottom:219.450000px;}
.y2b{bottom:220.905000px;}
.y110{bottom:225.210000px;}
.y16c{bottom:226.290000px;}
.y120{bottom:226.830000px;}
.yb0{bottom:228.990000px;}
.y67{bottom:229.350000px;}
.y145{bottom:231.870000px;}
.y84{bottom:238.350000px;}
.y183{bottom:242.490000px;}
.y2a{bottom:243.945000px;}
.y16b{bottom:247.170000px;}
.y10f{bottom:248.250000px;}
.y11f{bottom:249.870000px;}
.yaf{bottom:250.950000px;}
.y66{bottom:251.850000px;}
.y144{bottom:255.270000px;}
.y83{bottom:261.390000px;}
.y182{bottom:265.530000px;}
.y29{bottom:266.985000px;}
.y16a{bottom:267.330000px;}
.y10e{bottom:271.110000px;}
.y11e{bottom:272.910000px;}
.yae{bottom:274.350000px;}
.y65{bottom:274.530000px;}
.y143{bottom:278.490000px;}
.y82{bottom:284.430000px;}
.y181{bottom:288.570000px;}
.y28{bottom:290.025000px;}
.y169{bottom:290.190000px;}
.y10d{bottom:294.150000px;}
.y11d{bottom:295.950000px;}
.y64{bottom:297.210000px;}
.yad{bottom:297.930000px;}
.y142{bottom:301.890000px;}
.y180{bottom:303.870000px;}
.y81{bottom:307.470000px;}
.y10c{bottom:309.450000px;}
.y27{bottom:313.065000px;}
.y168{bottom:313.230000px;}
.y11c{bottom:318.990000px;}
.y63{bottom:319.530000px;}
.yac{bottom:321.330000px;}
.y141{bottom:325.290000px;}
.y17f{bottom:326.910000px;}
.y80{bottom:330.555000px;}
.y10b{bottom:332.535000px;}
.y167{bottom:335.235000px;}
.yd8{bottom:339.375000px;}
.y62{bottom:342.075000px;}
.yab{bottom:344.775000px;}
.y109{bottom:347.295000px;}
.y140{bottom:348.555000px;}
.y17e{bottom:349.995000px;}
.y7f{bottom:353.595000px;}
.y166{bottom:356.835000px;}
.yd7{bottom:361.515000px;}
.y10a{bottom:363.315000px;}
.y61{bottom:364.395000px;}
.y11b{bottom:364.935000px;}
.yaa{bottom:368.355000px;}
.y13f{bottom:371.955000px;}
.y17d{bottom:373.035000px;}
.y7e{bottom:376.455000px;}
.y108{bottom:379.335000px;}
.y165{bottom:379.695000px;}
.yd6{bottom:383.655000px;}
.y11a{bottom:385.095000px;}
.y60{bottom:386.715000px;}
.ya9{bottom:391.755000px;}
.y13e{bottom:395.175000px;}
.y104{bottom:395.535000px;}
.y17c{bottom:395.895000px;}
.y7d{bottom:399.495000px;}
.y164{bottom:402.735000px;}
.yd5{bottom:405.975000px;}
.y5f{bottom:409.215000px;}
.y17b{bottom:411.375000px;}
.y107{bottom:411.555000px;}
.ya8{bottom:415.155000px;}
.y13d{bottom:418.575000px;}
.y7c{bottom:422.535000px;}
.y163{bottom:425.775000px;}
.y103{bottom:427.755000px;}
.yd4{bottom:428.115000px;}
.y5e{bottom:431.535000px;}
.y17a{bottom:434.235000px;}
.ya7{bottom:438.735000px;}
.y13c{bottom:441.975000px;}
.yfc{bottom:443.775000px;}
.y7b{bottom:445.575000px;}
.y162{bottom:448.815000px;}
.yd3{bottom:450.435000px;}
.y5d{bottom:453.855000px;}
.y179{bottom:457.275000px;}
.ya6{bottom:462.135000px;}
.y13b{bottom:465.195000px;}
.y7a{bottom:468.615000px;}
.y161{bottom:469.515000px;}
.yd2{bottom:472.575000px;}
.y101{bottom:473.655000px;}
.y5c{bottom:476.175000px;}
.y178{bottom:480.315000px;}
.ya5{bottom:485.535000px;}
.y24{bottom:488.235000px;}
.y13a{bottom:488.595000px;}
.y160{bottom:489.675000px;}
.y100{bottom:489.855000px;}
.y79{bottom:491.655000px;}
.yd1{bottom:494.895000px;}
.y5b{bottom:498.675000px;}
.y177{bottom:503.355000px;}
.yf9{bottom:505.875000px;}
.ya4{bottom:509.115000px;}
.y139{bottom:511.815000px;}
.y15f{bottom:512.715000px;}
.y78{bottom:514.515000px;}
.yd0{bottom:517.215000px;}
.y22{bottom:518.295000px;}
.y176{bottom:519.015000px;}
.y5a{bottom:520.995000px;}
.yfb{bottom:521.895000px;}
.ya3{bottom:532.515000px;}
.y138{bottom:535.215000px;}
.y15e{bottom:535.755000px;}
.y77{bottom:537.555000px;}
.yfa{bottom:538.095000px;}
.ycf{bottom:539.355000px;}
.y59{bottom:543.315000px;}
.yf3{bottom:554.115000px;}
.ya2{bottom:555.915000px;}
.y137{bottom:558.615000px;}
.y15d{bottom:558.795000px;}
.y76{bottom:560.595000px;}
.yce{bottom:561.675000px;}
.y58{bottom:565.635000px;}
.y20{bottom:566.175000px;}
.y175{bottom:566.355000px;}
.yf8{bottom:570.315000px;}
.ya1{bottom:579.495000px;}
.y136{bottom:581.835000px;}
.y75{bottom:583.635000px;}
.ycd{bottom:583.815000px;}
.yf7{bottom:586.335000px;}
.y57{bottom:588.135000px;}
.y174{bottom:589.395000px;}
.y119{bottom:590.115000px;}
.y1e{bottom:598.245000px;}
.y15c{bottom:599.685000px;}
.yee{bottom:602.385000px;}
.ya0{bottom:602.925000px;}
.y135{bottom:605.265000px;}
.ycc{bottom:606.165000px;}
.y74{bottom:606.705000px;}
.y56{bottom:610.485000px;}
.y173{bottom:612.465000px;}
.y118{bottom:613.185000px;}
.y17{bottom:615.345000px;}
.yf1{bottom:618.585000px;}
.y15b{bottom:622.725000px;}
.y9f{bottom:626.325000px;}
.ycb{bottom:628.305000px;}
.y134{bottom:628.485000px;}
.y73{bottom:629.745000px;}
.y55{bottom:632.805000px;}
.y172{bottom:635.865000px;}
.yeb{bottom:636.045000px;}
.y117{bottom:636.225000px;}
.y15a{bottom:645.765000px;}
.y9e{bottom:649.725000px;}
.yca{bottom:650.625000px;}
.y133{bottom:651.885000px;}
.y72{bottom:652.605000px;}
.y54{bottom:655.305000px;}
.y116{bottom:659.265000px;}
.ye9{bottom:667.545000px;}
.y159{bottom:668.625000px;}
.yc9{bottom:672.945000px;}
.y9d{bottom:673.305000px;}
.y132{bottom:675.285000px;}
.y71{bottom:675.645000px;}
.y53{bottom:677.625000px;}
.y195{bottom:680.505000px;}
.y115{bottom:682.125000px;}
.y158{bottom:691.665000px;}
.yc8{bottom:695.085000px;}
.y9c{bottom:696.705000px;}
.y52{bottom:697.605000px;}
.y131{bottom:698.505000px;}
.y70{bottom:698.685000px;}
.y194{bottom:704.085000px;}
.ye8{bottom:705.165000px;}
.y157{bottom:714.705000px;}
.y51{bottom:717.405000px;}
.y9b{bottom:720.105000px;}
.y6f{bottom:721.725000px;}
.y130{bottom:721.905000px;}
.y193{bottom:727.485000px;}
.ye7{bottom:728.205000px;}
.y156{bottom:737.745000px;}
.yc7{bottom:739.545000px;}
.y50{bottom:739.725000px;}
.y9a{bottom:743.685000px;}
.y6e{bottom:744.765000px;}
.y12f{bottom:745.125000px;}
.y192{bottom:750.525000px;}
.ye6{bottom:751.245000px;}
.y155{bottom:760.785000px;}
.yc6{bottom:761.865000px;}
.y4f{bottom:762.045000px;}
.y6d{bottom:764.745000px;}
.y99{bottom:767.085000px;}
.y12e{bottom:768.525000px;}
.y191{bottom:773.565000px;}
.ye5{bottom:774.285000px;}
.y154{bottom:783.825000px;}
.yc5{bottom:784.005000px;}
.y4e{bottom:784.545000px;}
.y98{bottom:790.485000px;}
.y12d{bottom:791.925000px;}
.y190{bottom:796.605000px;}
.ye4{bottom:797.325000px;}
.y15{bottom:798.945000px;}
.y153{bottom:804.525000px;}
.yc4{bottom:806.325000px;}
.y4d{bottom:806.865000px;}
.y12{bottom:813.525000px;}
.y97{bottom:814.065000px;}
.y12c{bottom:815.145000px;}
.y18f{bottom:819.465000px;}
.ye3{bottom:820.185000px;}
.y152{bottom:824.685000px;}
.yc3{bottom:828.645000px;}
.y4c{bottom:829.185000px;}
.y96{bottom:837.465000px;}
.y12b{bottom:838.545000px;}
.y18e{bottom:842.505000px;}
.ye2{bottom:843.225000px;}
.y151{bottom:847.725000px;}
.yc2{bottom:850.785000px;}
.y4b{bottom:851.505000px;}
.y95{bottom:860.865000px;}
.y12a{bottom:861.990000px;}
.y18d{bottom:865.590000px;}
.ye1{bottom:866.310000px;}
.y150{bottom:870.630000px;}
.yc1{bottom:873.150000px;}
.y4a{bottom:874.050000px;}
.y10{bottom:874.770000px;}
.y94{bottom:884.490000px;}
.y129{bottom:885.750000px;}
.yc{bottom:888.270000px;}
.y18c{bottom:888.630000px;}
.ye0{bottom:889.350000px;}
.y14f{bottom:893.670000px;}
.yc0{bottom:896.190000px;}
.y49{bottom:896.370000px;}
.y93{bottom:907.890000px;}
.y128{bottom:909.870000px;}
.y18b{bottom:911.670000px;}
.ydf{bottom:912.390000px;}
.y14e{bottom:916.710000px;}
.y48{bottom:918.690000px;}
.ybf{bottom:919.230000px;}
.y92{bottom:931.290000px;}
.y127{bottom:933.990000px;}
.y18a{bottom:934.710000px;}
.yde{bottom:935.430000px;}
.y14d{bottom:937.590000px;}
.y47{bottom:941.190000px;}
.ybe{bottom:942.630000px;}
.y91{bottom:954.870000px;}
.y14c{bottom:957.570000px;}
.y126{bottom:957.930000px;}
.ydd{bottom:958.290000px;}
.y46{bottom:963.510000px;}
.ybd{bottom:966.030000px;}
.y90{bottom:978.270000px;}
.y14b{bottom:980.970000px;}
.ybc{bottom:981.330000px;}
.y45{bottom:985.830000px;}
.y8f{bottom:1001.670000px;}
.ybb{bottom:1004.370000px;}
.y44{bottom:1008.150000px;}
.yb{bottom:1013.010000px;}
.y8e{bottom:1025.070000px;}
.yba{bottom:1027.410000px;}
.ya{bottom:1030.110000px;}
.y43{bottom:1030.650000px;}
.y7{bottom:1046.850000px;}
.y8d{bottom:1048.650000px;}
.yb9{bottom:1050.450000px;}
.y42{bottom:1052.970000px;}
.y8c{bottom:1072.050000px;}
.y38{bottom:1073.130000px;}
.yb8{bottom:1073.490000px;}
.y41{bottom:1075.290000px;}
.y8b{bottom:1095.450000px;}
.yb7{bottom:1096.350000px;}
.y40{bottom:1097.610000px;}
.y8a{bottom:1119.030000px;}
.yb6{bottom:1119.390000px;}
.y3f{bottom:1120.110000px;}
.y3e{bottom:1142.460000px;}
.y1{bottom:1192.140000px;}
.y5{bottom:1195.740000px;}
.hc{height:8.289492px;}
.hf{height:13.500000px;}
.h13{height:14.580000px;}
.h2d{height:15.300000px;}
.h30{height:15.336000px;}
.h2e{height:15.480000px;}
.h18{height:17.100000px;}
.h20{height:17.460000px;}
.h3{height:20.700000px;}
.h5{height:20.880000px;}
.h2a{height:24.840000px;}
.h16{height:26.372812px;}
.h33{height:29.160000px;}
.h21{height:29.169586px;}
.h1c{height:30.060000px;}
.h2b{height:30.780000px;}
.h34{height:31.320000px;}
.h2c{height:31.500000px;}
.h1a{height:32.076000px;}
.h10{height:32.670352px;}
.h28{height:36.486211px;}
.h14{height:36.886641px;}
.h26{height:38.089687px;}
.h27{height:40.842773px;}
.h24{height:41.291016px;}
.h19{height:41.610234px;}
.h35{height:44.000156px;}
.h31{height:47.520000px;}
.h2f{height:47.556000px;}
.h1b{height:47.880000px;}
.h29{height:47.971025px;}
.h12{height:48.761719px;}
.h1f{height:49.253906px;}
.h17{height:50.132812px;}
.h9{height:51.539062px;}
.hb{height:54.457031px;}
.h1d{height:54.507656px;}
.h23{height:55.054688px;}
.h25{height:55.209375px;}
.h6{height:57.051211px;}
.h11{height:61.236000px;}
.h32{height:61.380000px;}
.he{height:64.853086px;}
.h2{height:70.664062px;}
.h4{height:72.562500px;}
.ha{height:78.468750px;}
.h7{height:84.898125px;}
.h22{height:93.816000px;}
.h8{height:108.036000px;}
.hd{height:122.400000px;}
.h15{height:183.600000px;}
.h1e{height:325.470000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w3{width:54.180000px;}
.w7{width:76.680000px;}
.w6{width:122.751000px;}
.wd{width:123.480000px;}
.w11{width:134.316000px;}
.w10{width:135.900000px;}
.wf{width:135.936000px;}
.we{width:148.176000px;}
.wb{width:332.175000px;}
.wa{width:356.430000px;}
.wc{width:464.475000px;}
.w5{width:546.375000px;}
.w13{width:554.325000px;}
.w8{width:616.425000px;}
.w4{width:619.845000px;}
.w12{width:677.805000px;}
.w9{width:688.605000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x4{left:6.480000px;}
.xa{left:8.100000px;}
.x6{left:10.800000px;}
.x1d{left:14.400000px;}
.x10{left:16.740000px;}
.x2{left:20.700000px;}
.x1b{left:28.440000px;}
.x1f{left:32.265000px;}
.x25{left:36.225000px;}
.x24{left:37.620000px;}
.x8{left:39.060000px;}
.x23{left:40.500000px;}
.x28{left:41.760000px;}
.x19{left:43.020000px;}
.x29{left:44.460000px;}
.x22{left:46.440000px;}
.x27{left:48.060000px;}
.x2a{left:49.500000px;}
.x26{left:67.860000px;}
.xe{left:73.830000px;}
.x9{left:100.116000px;}
.xc{left:101.376000px;}
.x1{left:108.035987px;}
.x5{left:109.476000px;}
.x3{left:165.450000px;}
.xb{left:176.790000px;}
.x12{left:211.170000px;}
.x18{left:231.150000px;}
.x11{left:263.910000px;}
.x20{left:269.319000px;}
.x2b{left:277.095000px;}
.x21{left:316.839000px;}
.xf{left:325.875000px;}
.x1a{left:379.335000px;}
.x2c{left:429.914987px;}
.x13{left:453.855000px;}
.xd{left:457.815000px;}
.x14{left:462.674987px;}
.x1c{left:515.265000px;}
.x15{left:619.664987px;}
.x16{left:627.764987px;}
.x1e{left:651.165000px;}
.x7{left:658.410000px;}
.x17{left:782.609987px;}
@media print{
.v2{vertical-align:-21.120000pt;}
.v3{vertical-align:-13.418667pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:2.560000pt;}
.v1{vertical-align:18.720000pt;}
.ls14{letter-spacing:-1.728000pt;}
.lsf{letter-spacing:-1.440000pt;}
.ls10{letter-spacing:-0.992000pt;}
.lse{letter-spacing:-0.928000pt;}
.ls15{letter-spacing:-0.304000pt;}
.ls6{letter-spacing:-0.294400pt;}
.ls12{letter-spacing:-0.288000pt;}
.ls13{letter-spacing:-0.240000pt;}
.ls7{letter-spacing:-0.208000pt;}
.ls9{letter-spacing:-0.160000pt;}
.ls5{letter-spacing:-0.081067pt;}
.ls4{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.028160pt;}
.lsb{letter-spacing:0.128000pt;}
.ls0{letter-spacing:0.208640pt;}
.lsc{letter-spacing:0.256000pt;}
.ls2{letter-spacing:0.294400pt;}
.ls11{letter-spacing:0.304000pt;}
.ls1{letter-spacing:0.368640pt;}
.lsa{letter-spacing:0.400000pt;}
.ls8{letter-spacing:0.496000pt;}
.lsd{letter-spacing:0.560000pt;}
.ws8{word-spacing:-48.000000pt;}
.ws0{word-spacing:-19.837013pt;}
.ws5{word-spacing:-16.208000pt;}
.ws3{word-spacing:-16.000000pt;}
.ws2{word-spacing:-15.680000pt;}
.ws4{word-spacing:-13.492480pt;}
.wsd{word-spacing:-12.496000pt;}
.wsa{word-spacing:-12.192000pt;}
.ws7{word-spacing:-11.568000pt;}
.ws9{word-spacing:-11.360000pt;}
.wsf{word-spacing:-11.328000pt;}
.wse{word-spacing:-11.280000pt;}
.wsc{word-spacing:-11.200000pt;}
.wsb{word-spacing:-10.640000pt;}
.ws10{word-spacing:-10.464000pt;}
.ws1{word-spacing:-9.192960pt;}
.ws6{word-spacing:0.000000pt;}
._2d{margin-left:-2.342400pt;}
._0{margin-left:-1.123200pt;}
._1{width:0.938667pt;}
._5{width:1.999573pt;}
._7{width:3.434667pt;}
._8{width:4.556373pt;}
._c{width:6.249600pt;}
._b{width:7.200000pt;}
._6{width:8.960000pt;}
._16{width:10.193280pt;}
._9{width:12.800000pt;}
._a{width:13.741867pt;}
._d{width:14.680533pt;}
._1d{width:15.597867pt;}
._13{width:16.488107pt;}
._f{width:17.472000pt;}
._e{width:18.816000pt;}
._14{width:19.911040pt;}
._1b{width:21.674667pt;}
._20{width:22.629333pt;}
._29{width:23.827200pt;}
._19{width:24.720000pt;}
._1a{width:25.872000pt;}
._11{width:27.509760pt;}
._1c{width:28.575573pt;}
._12{width:29.770240pt;}
._2a{width:30.831573pt;}
._4{width:31.749760pt;}
._24{width:32.640000pt;}
._28{width:33.792000pt;}
._18{width:35.051947pt;}
._1e{width:35.994667pt;}
._22{width:39.194667pt;}
._23{width:40.496000pt;}
._21{width:41.418667pt;}
._25{width:43.090133pt;}
._27{width:44.544000pt;}
._15{width:46.080853pt;}
._3{width:47.837440pt;}
._2{width:48.944000pt;}
._17{width:52.646613pt;}
._2b{width:56.256000pt;}
._2c{width:57.285333pt;}
._1f{width:58.368000pt;}
._2e{width:59.289600pt;}
._26{width:67.488000pt;}
._10{width:1248.746667pt;}
.fsb{font-size:8.320000pt;}
.fs3{font-size:10.880000pt;}
.fsa{font-size:21.120000pt;}
.fs7{font-size:29.440000pt;}
.fs6{font-size:34.560000pt;}
.fsd{font-size:37.120000pt;}
.fs5{font-size:42.880000pt;}
.fs9{font-size:48.000000pt;}
.fse{font-size:50.595937pt;}
.fs8{font-size:53.120000pt;}
.fs0{font-size:64.000000pt;}
.fsc{font-size:66.560000pt;}
.fs1{font-size:74.880000pt;}
.fs4{font-size:85.120000pt;}
.fs2{font-size:96.000000pt;}
.y3d{bottom:-14.560000pt;}
.y0{bottom:0.000000pt;}
.y16{bottom:2.240000pt;}
.y6{bottom:2.400000pt;}
.yf2{bottom:2.560000pt;}
.yed{bottom:2.720000pt;}
.y11{bottom:2.880000pt;}
.y106{bottom:3.200000pt;}
.yf0{bottom:3.360000pt;}
.y3{bottom:3.520000pt;}
.y1f{bottom:3.680000pt;}
.yf6{bottom:4.000000pt;}
.y36{bottom:6.874667pt;}
.y3c{bottom:8.160000pt;}
.yea{bottom:11.040000pt;}
.y34{bottom:12.320000pt;}
.y14{bottom:13.280000pt;}
.y1d{bottom:13.440000pt;}
.y25{bottom:14.400000pt;}
.y102{bottom:14.880000pt;}
.yff{bottom:16.160000pt;}
.yec{bottom:16.320000pt;}
.y105{bottom:16.800000pt;}
.yef{bottom:16.960000pt;}
.y21{bottom:17.440000pt;}
.yf5{bottom:17.600000pt;}
.yf{bottom:17.920000pt;}
.y23{bottom:20.960000pt;}
.y3b{bottom:27.040000pt;}
.yfe{bottom:29.920000pt;}
.yf4{bottom:31.200000pt;}
.y33{bottom:32.800000pt;}
.y13{bottom:40.480000pt;}
.yfd{bottom:43.520000pt;}
.y1c{bottom:45.920000pt;}
.y3a{bottom:46.080000pt;}
.y4{bottom:51.360000pt;}
.y32{bottom:53.120000pt;}
.ye{bottom:54.080000pt;}
.y2{bottom:66.272000pt;}
.y39{bottom:67.226667pt;}
.y1b{bottom:67.840000pt;}
.y9{bottom:71.840000pt;}
.y31{bottom:73.600000pt;}
.y8{bottom:80.986667pt;}
.yd{bottom:90.400000pt;}
.y30{bottom:94.080000pt;}
.y171{bottom:98.912000pt;}
.y125{bottom:99.392000pt;}
.y189{bottom:99.712000pt;}
.y1a{bottom:100.320000pt;}
.yb5{bottom:100.352000pt;}
.ydc{bottom:101.632000pt;}
.y14a{bottom:101.792000pt;}
.y6c{bottom:108.992000pt;}
.y89{bottom:109.632000pt;}
.y2f{bottom:114.560000pt;}
.y37{bottom:118.112000pt;}
.y114{bottom:118.272000pt;}
.y170{bottom:119.392000pt;}
.y124{bottom:119.872000pt;}
.y188{bottom:120.192000pt;}
.yb4{bottom:121.152000pt;}
.ydb{bottom:122.112000pt;}
.y19{bottom:122.240000pt;}
.y149{bottom:123.072000pt;}
.y6b{bottom:128.832000pt;}
.y35{bottom:129.152000pt;}
.y88{bottom:130.112000pt;}
.y2e{bottom:135.040000pt;}
.y113{bottom:138.746667pt;}
.y16f{bottom:139.866667pt;}
.y123{bottom:140.346667pt;}
.y187{bottom:140.666667pt;}
.yb3{bottom:141.946667pt;}
.yda{bottom:142.586667pt;}
.y148{bottom:143.866667pt;}
.y26{bottom:144.666667pt;}
.y6a{bottom:148.666667pt;}
.y87{bottom:150.586667pt;}
.y18{bottom:154.720000pt;}
.y2d{bottom:155.560000pt;}
.y112{bottom:159.226667pt;}
.y16e{bottom:160.346667pt;}
.yd9{bottom:160.506667pt;}
.y122{bottom:160.826667pt;}
.y186{bottom:160.986667pt;}
.yb2{bottom:162.906667pt;}
.y147{bottom:164.666667pt;}
.y69{bottom:166.586667pt;}
.y86{bottom:171.066667pt;}
.y185{bottom:174.746667pt;}
.y2c{bottom:175.880000pt;}
.y111{bottom:179.706667pt;}
.y16d{bottom:180.666667pt;}
.y121{bottom:181.306667pt;}
.yb1{bottom:183.706667pt;}
.y68{bottom:184.026667pt;}
.y146{bottom:185.466667pt;}
.y85{bottom:191.546667pt;}
.y184{bottom:195.066667pt;}
.y2b{bottom:196.360000pt;}
.y110{bottom:200.186667pt;}
.y16c{bottom:201.146667pt;}
.y120{bottom:201.626667pt;}
.yb0{bottom:203.546667pt;}
.y67{bottom:203.866667pt;}
.y145{bottom:206.106667pt;}
.y84{bottom:211.866667pt;}
.y183{bottom:215.546667pt;}
.y2a{bottom:216.840000pt;}
.y16b{bottom:219.706667pt;}
.y10f{bottom:220.666667pt;}
.y11f{bottom:222.106667pt;}
.yaf{bottom:223.066667pt;}
.y66{bottom:223.866667pt;}
.y144{bottom:226.906667pt;}
.y83{bottom:232.346667pt;}
.y182{bottom:236.026667pt;}
.y29{bottom:237.320000pt;}
.y16a{bottom:237.626667pt;}
.y10e{bottom:240.986667pt;}
.y11e{bottom:242.586667pt;}
.yae{bottom:243.866667pt;}
.y65{bottom:244.026667pt;}
.y143{bottom:247.546667pt;}
.y82{bottom:252.826667pt;}
.y181{bottom:256.506667pt;}
.y28{bottom:257.800000pt;}
.y169{bottom:257.946667pt;}
.y10d{bottom:261.466667pt;}
.y11d{bottom:263.066667pt;}
.y64{bottom:264.186667pt;}
.yad{bottom:264.826667pt;}
.y142{bottom:268.346667pt;}
.y180{bottom:270.106667pt;}
.y81{bottom:273.306667pt;}
.y10c{bottom:275.066667pt;}
.y27{bottom:278.280000pt;}
.y168{bottom:278.426667pt;}
.y11c{bottom:283.546667pt;}
.y63{bottom:284.026667pt;}
.yac{bottom:285.626667pt;}
.y141{bottom:289.146667pt;}
.y17f{bottom:290.586667pt;}
.y80{bottom:293.826667pt;}
.y10b{bottom:295.586667pt;}
.y167{bottom:297.986667pt;}
.yd8{bottom:301.666667pt;}
.y62{bottom:304.066667pt;}
.yab{bottom:306.466667pt;}
.y109{bottom:308.706667pt;}
.y140{bottom:309.826667pt;}
.y17e{bottom:311.106667pt;}
.y7f{bottom:314.306667pt;}
.y166{bottom:317.186667pt;}
.yd7{bottom:321.346667pt;}
.y10a{bottom:322.946667pt;}
.y61{bottom:323.906667pt;}
.y11b{bottom:324.386667pt;}
.yaa{bottom:327.426667pt;}
.y13f{bottom:330.626667pt;}
.y17d{bottom:331.586667pt;}
.y7e{bottom:334.626667pt;}
.y108{bottom:337.186667pt;}
.y165{bottom:337.506667pt;}
.yd6{bottom:341.026667pt;}
.y11a{bottom:342.306667pt;}
.y60{bottom:343.746667pt;}
.ya9{bottom:348.226667pt;}
.y13e{bottom:351.266667pt;}
.y104{bottom:351.586667pt;}
.y17c{bottom:351.906667pt;}
.y7d{bottom:355.106667pt;}
.y164{bottom:357.986667pt;}
.yd5{bottom:360.866667pt;}
.y5f{bottom:363.746667pt;}
.y17b{bottom:365.666667pt;}
.y107{bottom:365.826667pt;}
.ya8{bottom:369.026667pt;}
.y13d{bottom:372.066667pt;}
.y7c{bottom:375.586667pt;}
.y163{bottom:378.466667pt;}
.y103{bottom:380.226667pt;}
.yd4{bottom:380.546667pt;}
.y5e{bottom:383.586667pt;}
.y17a{bottom:385.986667pt;}
.ya7{bottom:389.986667pt;}
.y13c{bottom:392.866667pt;}
.yfc{bottom:394.466667pt;}
.y7b{bottom:396.066667pt;}
.y162{bottom:398.946667pt;}
.yd3{bottom:400.386667pt;}
.y5d{bottom:403.426667pt;}
.y179{bottom:406.466667pt;}
.ya6{bottom:410.786667pt;}
.y13b{bottom:413.506667pt;}
.y7a{bottom:416.546667pt;}
.y161{bottom:417.346667pt;}
.yd2{bottom:420.066667pt;}
.y101{bottom:421.026667pt;}
.y5c{bottom:423.266667pt;}
.y178{bottom:426.946667pt;}
.ya5{bottom:431.586667pt;}
.y24{bottom:433.986667pt;}
.y13a{bottom:434.306667pt;}
.y160{bottom:435.266667pt;}
.y100{bottom:435.426667pt;}
.y79{bottom:437.026667pt;}
.yd1{bottom:439.906667pt;}
.y5b{bottom:443.266667pt;}
.y177{bottom:447.426667pt;}
.yf9{bottom:449.666667pt;}
.ya4{bottom:452.546667pt;}
.y139{bottom:454.946667pt;}
.y15f{bottom:455.746667pt;}
.y78{bottom:457.346667pt;}
.yd0{bottom:459.746667pt;}
.y22{bottom:460.706667pt;}
.y176{bottom:461.346667pt;}
.y5a{bottom:463.106667pt;}
.yfb{bottom:463.906667pt;}
.ya3{bottom:473.346667pt;}
.y138{bottom:475.746667pt;}
.y15e{bottom:476.226667pt;}
.y77{bottom:477.826667pt;}
.yfa{bottom:478.306667pt;}
.ycf{bottom:479.426667pt;}
.y59{bottom:482.946667pt;}
.yf3{bottom:492.546667pt;}
.ya2{bottom:494.146667pt;}
.y137{bottom:496.546667pt;}
.y15d{bottom:496.706667pt;}
.y76{bottom:498.306667pt;}
.yce{bottom:499.266667pt;}
.y58{bottom:502.786667pt;}
.y20{bottom:503.266667pt;}
.y175{bottom:503.426667pt;}
.yf8{bottom:506.946667pt;}
.ya1{bottom:515.106667pt;}
.y136{bottom:517.186667pt;}
.y75{bottom:518.786667pt;}
.ycd{bottom:518.946667pt;}
.yf7{bottom:521.186667pt;}
.y57{bottom:522.786667pt;}
.y174{bottom:523.906667pt;}
.y119{bottom:524.546667pt;}
.y1e{bottom:531.773333pt;}
.y15c{bottom:533.053333pt;}
.yee{bottom:535.453333pt;}
.ya0{bottom:535.933333pt;}
.y135{bottom:538.013333pt;}
.ycc{bottom:538.813333pt;}
.y74{bottom:539.293333pt;}
.y56{bottom:542.653333pt;}
.y173{bottom:544.413333pt;}
.y118{bottom:545.053333pt;}
.y17{bottom:546.973333pt;}
.yf1{bottom:549.853333pt;}
.y15b{bottom:553.533333pt;}
.y9f{bottom:556.733333pt;}
.ycb{bottom:558.493333pt;}
.y134{bottom:558.653333pt;}
.y73{bottom:559.773333pt;}
.y55{bottom:562.493333pt;}
.y172{bottom:565.213333pt;}
.yeb{bottom:565.373333pt;}
.y117{bottom:565.533333pt;}
.y15a{bottom:574.013333pt;}
.y9e{bottom:577.533333pt;}
.yca{bottom:578.333333pt;}
.y133{bottom:579.453333pt;}
.y72{bottom:580.093333pt;}
.y54{bottom:582.493333pt;}
.y116{bottom:586.013333pt;}
.ye9{bottom:593.373333pt;}
.y159{bottom:594.333333pt;}
.yc9{bottom:598.173333pt;}
.y9d{bottom:598.493333pt;}
.y132{bottom:600.253333pt;}
.y71{bottom:600.573333pt;}
.y53{bottom:602.333333pt;}
.y195{bottom:604.893333pt;}
.y115{bottom:606.333333pt;}
.y158{bottom:614.813333pt;}
.yc8{bottom:617.853333pt;}
.y9c{bottom:619.293333pt;}
.y52{bottom:620.093333pt;}
.y131{bottom:620.893333pt;}
.y70{bottom:621.053333pt;}
.y194{bottom:625.853333pt;}
.ye8{bottom:626.813333pt;}
.y157{bottom:635.293333pt;}
.y51{bottom:637.693333pt;}
.y9b{bottom:640.093333pt;}
.y6f{bottom:641.533333pt;}
.y130{bottom:641.693333pt;}
.y193{bottom:646.653333pt;}
.ye7{bottom:647.293333pt;}
.y156{bottom:655.773333pt;}
.yc7{bottom:657.373333pt;}
.y50{bottom:657.533333pt;}
.y9a{bottom:661.053333pt;}
.y6e{bottom:662.013333pt;}
.y12f{bottom:662.333333pt;}
.y192{bottom:667.133333pt;}
.ye6{bottom:667.773333pt;}
.y155{bottom:676.253333pt;}
.yc6{bottom:677.213333pt;}
.y4f{bottom:677.373333pt;}
.y6d{bottom:679.773333pt;}
.y99{bottom:681.853333pt;}
.y12e{bottom:683.133333pt;}
.y191{bottom:687.613333pt;}
.ye5{bottom:688.253333pt;}
.y154{bottom:696.733333pt;}
.yc5{bottom:696.893333pt;}
.y4e{bottom:697.373333pt;}
.y98{bottom:702.653333pt;}
.y12d{bottom:703.933333pt;}
.y190{bottom:708.093333pt;}
.ye4{bottom:708.733333pt;}
.y15{bottom:710.173333pt;}
.y153{bottom:715.133333pt;}
.yc4{bottom:716.733333pt;}
.y4d{bottom:717.213333pt;}
.y12{bottom:723.133333pt;}
.y97{bottom:723.613333pt;}
.y12c{bottom:724.573333pt;}
.y18f{bottom:728.413333pt;}
.ye3{bottom:729.053333pt;}
.y152{bottom:733.053333pt;}
.yc3{bottom:736.573333pt;}
.y4c{bottom:737.053333pt;}
.y96{bottom:744.413333pt;}
.y12b{bottom:745.373333pt;}
.y18e{bottom:748.893333pt;}
.ye2{bottom:749.533333pt;}
.y151{bottom:753.533333pt;}
.yc2{bottom:756.253333pt;}
.y4b{bottom:756.893333pt;}
.y95{bottom:765.213333pt;}
.y12a{bottom:766.213333pt;}
.y18d{bottom:769.413333pt;}
.ye1{bottom:770.053333pt;}
.y150{bottom:773.893333pt;}
.yc1{bottom:776.133333pt;}
.y4a{bottom:776.933333pt;}
.y10{bottom:777.573333pt;}
.y94{bottom:786.213333pt;}
.y129{bottom:787.333333pt;}
.yc{bottom:789.573333pt;}
.y18c{bottom:789.893333pt;}
.ye0{bottom:790.533333pt;}
.y14f{bottom:794.373333pt;}
.yc0{bottom:796.613333pt;}
.y49{bottom:796.773333pt;}
.y93{bottom:807.013333pt;}
.y128{bottom:808.773333pt;}
.y18b{bottom:810.373333pt;}
.ydf{bottom:811.013333pt;}
.y14e{bottom:814.853333pt;}
.y48{bottom:816.613333pt;}
.ybf{bottom:817.093333pt;}
.y92{bottom:827.813333pt;}
.y127{bottom:830.213333pt;}
.y18a{bottom:830.853333pt;}
.yde{bottom:831.493333pt;}
.y14d{bottom:833.413333pt;}
.y47{bottom:836.613333pt;}
.ybe{bottom:837.893333pt;}
.y91{bottom:848.773333pt;}
.y14c{bottom:851.173333pt;}
.y126{bottom:851.493333pt;}
.ydd{bottom:851.813333pt;}
.y46{bottom:856.453333pt;}
.ybd{bottom:858.693333pt;}
.y90{bottom:869.573333pt;}
.y14b{bottom:871.973333pt;}
.ybc{bottom:872.293333pt;}
.y45{bottom:876.293333pt;}
.y8f{bottom:890.373333pt;}
.ybb{bottom:892.773333pt;}
.y44{bottom:896.133333pt;}
.yb{bottom:900.453333pt;}
.y8e{bottom:911.173333pt;}
.yba{bottom:913.253333pt;}
.ya{bottom:915.653333pt;}
.y43{bottom:916.133333pt;}
.y7{bottom:930.533333pt;}
.y8d{bottom:932.133333pt;}
.yb9{bottom:933.733333pt;}
.y42{bottom:935.973333pt;}
.y8c{bottom:952.933333pt;}
.y38{bottom:953.893333pt;}
.yb8{bottom:954.213333pt;}
.y41{bottom:955.813333pt;}
.y8b{bottom:973.733333pt;}
.yb7{bottom:974.533333pt;}
.y40{bottom:975.653333pt;}
.y8a{bottom:994.693333pt;}
.yb6{bottom:995.013333pt;}
.y3f{bottom:995.653333pt;}
.y3e{bottom:1015.520000pt;}
.y1{bottom:1059.680000pt;}
.y5{bottom:1062.880000pt;}
.hc{height:7.368437pt;}
.hf{height:12.000000pt;}
.h13{height:12.960000pt;}
.h2d{height:13.600000pt;}
.h30{height:13.632000pt;}
.h2e{height:13.760000pt;}
.h18{height:15.200000pt;}
.h20{height:15.520000pt;}
.h3{height:18.400000pt;}
.h5{height:18.560000pt;}
.h2a{height:22.080000pt;}
.h16{height:23.442500pt;}
.h33{height:25.920000pt;}
.h21{height:25.928521pt;}
.h1c{height:26.720000pt;}
.h2b{height:27.360000pt;}
.h34{height:27.840000pt;}
.h2c{height:28.000000pt;}
.h1a{height:28.512000pt;}
.h10{height:29.040312pt;}
.h28{height:32.432187pt;}
.h14{height:32.788125pt;}
.h26{height:33.857500pt;}
.h27{height:36.304688pt;}
.h24{height:36.703125pt;}
.h19{height:36.986875pt;}
.h35{height:39.111250pt;}
.h31{height:42.240000pt;}
.h2f{height:42.272000pt;}
.h1b{height:42.560000pt;}
.h29{height:42.640911pt;}
.h12{height:43.343750pt;}
.h1f{height:43.781250pt;}
.h17{height:44.562500pt;}
.h9{height:45.812500pt;}
.hb{height:48.406250pt;}
.h1d{height:48.451250pt;}
.h23{height:48.937500pt;}
.h25{height:49.075000pt;}
.h6{height:50.712187pt;}
.h11{height:54.432000pt;}
.h32{height:54.560000pt;}
.he{height:57.647187pt;}
.h2{height:62.812500pt;}
.h4{height:64.500000pt;}
.ha{height:69.750000pt;}
.h7{height:75.465000pt;}
.h22{height:83.392000pt;}
.h8{height:96.032000pt;}
.hd{height:108.800000pt;}
.h15{height:163.200000pt;}
.h1e{height:289.306667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w3{width:48.160000pt;}
.w7{width:68.160000pt;}
.w6{width:109.112000pt;}
.wd{width:109.760000pt;}
.w11{width:119.392000pt;}
.w10{width:120.800000pt;}
.wf{width:120.832000pt;}
.we{width:131.712000pt;}
.wb{width:295.266667pt;}
.wa{width:316.826667pt;}
.wc{width:412.866667pt;}
.w5{width:485.666667pt;}
.w13{width:492.733333pt;}
.w8{width:547.933333pt;}
.w4{width:550.973333pt;}
.w12{width:602.493333pt;}
.w9{width:612.093333pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x4{left:5.760000pt;}
.xa{left:7.200000pt;}
.x6{left:9.600000pt;}
.x1d{left:12.800000pt;}
.x10{left:14.880000pt;}
.x2{left:18.400000pt;}
.x1b{left:25.280000pt;}
.x1f{left:28.680000pt;}
.x25{left:32.200000pt;}
.x24{left:33.440000pt;}
.x8{left:34.720000pt;}
.x23{left:36.000000pt;}
.x28{left:37.120000pt;}
.x19{left:38.240000pt;}
.x29{left:39.520000pt;}
.x22{left:41.280000pt;}
.x27{left:42.720000pt;}
.x2a{left:44.000000pt;}
.x26{left:60.320000pt;}
.xe{left:65.626667pt;}
.x9{left:88.992000pt;}
.xc{left:90.112000pt;}
.x1{left:96.031988pt;}
.x5{left:97.312000pt;}
.x3{left:147.066667pt;}
.xb{left:157.146667pt;}
.x12{left:187.706667pt;}
.x18{left:205.466667pt;}
.x11{left:234.586667pt;}
.x20{left:239.394667pt;}
.x2b{left:246.306667pt;}
.x21{left:281.634667pt;}
.xf{left:289.666667pt;}
.x1a{left:337.186667pt;}
.x2c{left:382.146655pt;}
.x13{left:403.426667pt;}
.xd{left:406.946667pt;}
.x14{left:411.266655pt;}
.x1c{left:458.013333pt;}
.x15{left:550.813322pt;}
.x16{left:558.013322pt;}
.x1e{left:578.813333pt;}
.x7{left:585.253333pt;}
.x17{left:695.653322pt;}
}




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