
    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_2825a6bb1d8468148da513bc.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_37ae1a2fdcad34d774810a77.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_88278bf0b4420259ba38a71f.woff')format("woff");}.ff3{font-family:ff3;line-height:1.053223;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_1d92855b1e789547fb40f8cb.woff')format("woff");}.ff4{font-family:ff4;line-height:1.053223;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_e6f0708552efe89a65852fea.woff')format("woff");}.ff5{font-family:ff5;line-height:0.854004;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_014c7e9aad8360bf67fa4078.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_e28ea8b608fba66ac762a553.woff')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_5f2d09a0c585ffac71973771.woff')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_1bfcdd4a9f4f7c4c80b44993.woff')format("woff");}.ffa{font-family:ffa;line-height:0.958008;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_241dbc927879d225d7e3835a.woff')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_e0dc6cb6e80f91ea8c069024.woff')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_840da9e8f534b79a3d7f5789.woff')format("woff");}.ffd{font-family:ffd;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:ffe;src:url('chunks/assets/font_dccb4721852b41f31cb18b1d.woff')format("woff");}.ffe{font-family:ffe;line-height:0.923340;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_dd829340cc6ba2dd8d10db1e.woff')format("woff");}.fff{font-family:fff;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:ff10;src:url('chunks/assets/font_0b3a7af6185db54c989a829a.woff')format("woff");}.ff10{font-family:ff10;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:ff11;src:url('chunks/assets/font_75566efab0f8450def286010.woff')format("woff");}.ff11{font-family:ff11;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:ff12;src:url('chunks/assets/font_91fb55e534a442f6d1630111.woff')format("woff");}.ff12{font-family:ff12;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:ff13;src:url('chunks/assets/font_e9dc31098384ade9d81117e9.woff')format("woff");}.ff13{font-family:ff13;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:ff14;src:url('chunks/assets/font_130301694ab792f9947e2b7d.woff')format("woff");}.ff14{font-family:ff14;line-height:0.739746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff15;src:url('chunks/assets/font_5d123772bb4c8abe91c34807.woff')format("woff");}.ff15{font-family:ff15;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;}
.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.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);}
.v7{vertical-align:-40.500000px;}
.v5{vertical-align:-22.440000px;}
.v2{vertical-align:-18.000000px;}
.v3{vertical-align:-13.500000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:18.000000px;}
.v6{vertical-align:22.500000px;}
.v4{vertical-align:40.500000px;}
.ls10{letter-spacing:-2.766000px;}
.lsa{letter-spacing:-2.724000px;}
.lse{letter-spacing:-1.740000px;}
.ls26{letter-spacing:-1.482000px;}
.ls15{letter-spacing:-1.128000px;}
.lsb{letter-spacing:-0.792000px;}
.ls16{letter-spacing:-0.513000px;}
.ls9{letter-spacing:-0.378000px;}
.ls1d{letter-spacing:-0.256200px;}
.ls8{letter-spacing:0.000000px;}
.ls1a{letter-spacing:0.013500px;}
.ls21{letter-spacing:0.090000px;}
.lsf{letter-spacing:0.256200px;}
.ls25{letter-spacing:1.026000px;}
.ls0{letter-spacing:1.296000px;}
.ls1{letter-spacing:1.656000px;}
.ls12{letter-spacing:1.740000px;}
.ls3{letter-spacing:1.966500px;}
.ls6{letter-spacing:1.992000px;}
.ls2{letter-spacing:2.034000px;}
.ls4{letter-spacing:2.086500px;}
.ls19{letter-spacing:2.190000px;}
.ls5{letter-spacing:2.250000px;}
.ls18{letter-spacing:2.430000px;}
.ls13{letter-spacing:3.018000px;}
.ls1f{letter-spacing:3.375000px;}
.ls14{letter-spacing:3.435000px;}
.ls7{letter-spacing:4.779000px;}
.ls11{letter-spacing:5.526000px;}
.ls1b{letter-spacing:7.815000px;}
.ls17{letter-spacing:7.875000px;}
.ls23{letter-spacing:7.995000px;}
.ls1c{letter-spacing:8.055000px;}
.ls20{letter-spacing:12.375000px;}
.lsd{letter-spacing:12.435000px;}
.ls1e{letter-spacing:21.375000px;}
.lsc{letter-spacing:42.387000px;}
.ls24{letter-spacing:46.887000px;}
.ls22{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;}
}
.wsd{word-spacing:-20.151000px;}
.wsf{word-spacing:-17.643000px;}
.ws6{word-spacing:-16.875000px;}
.wse{word-spacing:-16.365000px;}
.ws3{word-spacing:-16.146000px;}
.ws13{word-spacing:-15.651000px;}
.ws2{word-spacing:-15.354000px;}
.wsb{word-spacing:-14.881200px;}
.ws5{word-spacing:-14.625000px;}
.ws11{word-spacing:-14.368800px;}
.ws10{word-spacing:-14.112000px;}
.ws7{word-spacing:-13.221000px;}
.ws14{word-spacing:-13.143000px;}
.wsa{word-spacing:-12.885000px;}
.ws1{word-spacing:-12.531000px;}
.wsc{word-spacing:-11.859000px;}
.ws0{word-spacing:-11.826000px;}
.ws12{word-spacing:-10.138500px;}
.ws8{word-spacing:-10.125000px;}
.ws4{word-spacing:-8.136000px;}
.ws9{word-spacing:0.000000px;}
._6{margin-left:-9.862050px;}
._18{margin-left:-8.207100px;}
._d{margin-left:-6.300900px;}
._8{margin-left:-5.059050px;}
._7{margin-left:-3.556500px;}
._2{margin-left:-2.430000px;}
._1{margin-left:-1.188000px;}
._0{width:1.944000px;}
._4{width:3.096000px;}
._a{width:4.336500px;}
._3{width:5.670000px;}
._17{width:6.699000px;}
._b{width:7.764000px;}
._9{width:9.049500px;}
._5{width:10.146000px;}
._c{width:12.301500px;}
._19{width:13.314000px;}
._15{width:15.987000px;}
._13{width:17.329500px;}
._1a{width:20.823000px;}
._14{width:21.855000px;}
._16{width:24.433500px;}
._12{width:26.065500px;}
._e{width:29.947500px;}
._f{width:31.005000px;}
._11{width:34.921500px;}
._10{width:38.394000px;}
.fc7{color:rgb(15,71,97);}
.fc5{color:rgb(227,108,10);}
.fc4{color:rgb(50,62,79);}
.fc3{color:rgb(0,0,255);}
.fc2{color:rgb(31,56,100);}
.fc6{color:rgb(13,13,13);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(23,54,93);}
.fs7{font-size:36.000000px;}
.fs6{font-size:40.500000px;}
.fs3{font-size:49.500000px;}
.fs0{font-size:54.000000px;}
.fs4{font-size:58.500000px;}
.fs1{font-size:67.500000px;}
.fs2{font-size:72.000000px;}
.fs5{font-size:85.650000px;}
.y0{bottom:0.000000px;}
.y3{bottom:3.375000px;}
.yb6{bottom:3.390000px;}
.yaf{bottom:3.420000px;}
.y1a{bottom:4.500000px;}
.y94{bottom:4.515000px;}
.ya0{bottom:4.530000px;}
.ycd{bottom:4.545000px;}
.y42{bottom:10.125000px;}
.ye{bottom:11.250000px;}
.yc{bottom:13.545000px;}
.y4{bottom:16.875000px;}
.y2{bottom:20.250000px;}
.yb1{bottom:21.375000px;}
.ya7{bottom:21.405000px;}
.y3f{bottom:21.420000px;}
.ya2{bottom:22.500000px;}
.y98{bottom:22.530000px;}
.y93{bottom:22.545000px;}
.y41{bottom:24.795000px;}
.y19{bottom:28.170000px;}
.y5{bottom:30.375000px;}
.yb{bottom:30.420000px;}
.y3e{bottom:38.295000px;}
.y18{bottom:45.045000px;}
.ya{bottom:46.200000px;}
.y1{bottom:51.787500px;}
.y3d{bottom:56.295000px;}
.y17{bottom:61.920000px;}
.y9{bottom:73.200000px;}
.y3c{bottom:73.215000px;}
.y16{bottom:77.715000px;}
.y3b{bottom:90.090000px;}
.y8{bottom:93.480000px;}
.y15{bottom:94.590000px;}
.yec{bottom:97.950000px;}
.y117{bottom:102.450000px;}
.ya4{bottom:104.700000px;}
.y14{bottom:104.715000px;}
.y3a{bottom:108.120000px;}
.yc3{bottom:109.200000px;}
.y8a{bottom:110.325000px;}
.y7{bottom:110.355000px;}
.yeb{bottom:114.825000px;}
.y2b{bottom:115.995000px;}
.y50{bottom:117.075000px;}
.y7c{bottom:119.362500px;}
.ya1{bottom:122.737500px;}
.y13{bottom:122.745000px;}
.y89{bottom:123.862500px;}
.y39{bottom:124.995000px;}
.yc2{bottom:126.112500px;}
.y2a{bottom:130.620000px;}
.yea{bottom:131.737500px;}
.y4f{bottom:133.987500px;}
.y7b{bottom:136.237500px;}
.ya3{bottom:140.737500px;}
.y12{bottom:141.870000px;}
.yc1{bottom:142.987500px;}
.y29{bottom:148.665000px;}
.ye9{bottom:149.737500px;}
.y4e{bottom:150.870000px;}
.y7a{bottom:154.245000px;}
.y9e{bottom:158.745000px;}
.y38{bottom:159.915000px;}
.yc0{bottom:161.025000px;}
.ye8{bottom:166.650000px;}
.y28{bottom:166.665000px;}
.y11{bottom:167.790000px;}
.y4d{bottom:168.900000px;}
.y79{bottom:171.150000px;}
.ybf{bottom:174.525000px;}
.y9f{bottom:176.775000px;}
.y37{bottom:176.790000px;}
.ye7{bottom:183.525000px;}
.y27{bottom:183.540000px;}
.y78{bottom:184.650000px;}
.y4c{bottom:185.775000px;}
.y116{bottom:188.025000px;}
.y10{bottom:192.540000px;}
.y36{bottom:193.695000px;}
.y9c{bottom:194.775000px;}
.y26{bottom:201.570000px;}
.y4b{bottom:202.695000px;}
.y115{bottom:206.070000px;}
.y35{bottom:211.695000px;}
.y9d{bottom:212.820000px;}
.y25{bottom:218.445000px;}
.y4a{bottom:220.695000px;}
.y114{bottom:222.945000px;}
.y34{bottom:228.615000px;}
.y9a{bottom:230.820000px;}
.y24{bottom:234.240000px;}
.ye6{bottom:235.320000px;}
.y49{bottom:237.570000px;}
.y113{bottom:239.820000px;}
.y33{bottom:245.490000px;}
.y9b{bottom:248.850000px;}
.y23{bottom:251.115000px;}
.ye5{bottom:252.225000px;}
.y48{bottom:254.475000px;}
.y112{bottom:257.850000px;}
.y32{bottom:263.490000px;}
.y97{bottom:266.850000px;}
.y22{bottom:269.115000px;}
.y47{bottom:271.350000px;}
.y111{bottom:274.725000px;}
.ye4{bottom:275.850000px;}
.y31{bottom:280.395000px;}
.y99{bottom:284.880000px;}
.y21{bottom:286.020000px;}
.y46{bottom:289.380000px;}
.y110{bottom:291.645000px;}
.ye3{bottom:293.880000px;}
.y30{bottom:297.270000px;}
.y96{bottom:302.880000px;}
.y20{bottom:304.020000px;}
.y45{bottom:306.255000px;}
.y10f{bottom:309.630000px;}
.ye2{bottom:310.755000px;}
.y2f{bottom:315.315000px;}
.y92{bottom:320.880000px;}
.y44{bottom:323.130000px;}
.y1f{bottom:323.175000px;}
.y10e{bottom:326.550000px;}
.ye1{bottom:327.675000px;}
.y2e{bottom:332.190000px;}
.y95{bottom:338.925000px;}
.y43{bottom:341.175000px;}
.y10d{bottom:343.425000px;}
.ye0{bottom:345.675000px;}
.y2d{bottom:349.065000px;}
.y1e{bottom:351.300000px;}
.y40{bottom:354.675000px;}
.y91{bottom:361.425000px;}
.ydf{bottom:362.550000px;}
.y2c{bottom:367.095000px;}
.y1d{bottom:369.345000px;}
.y90{bottom:378.330000px;}
.yde{bottom:379.470000px;}
.y1c{bottom:390.705000px;}
.y8f{bottom:395.205000px;}
.ydd{bottom:397.455000px;}
.y8e{bottom:413.250000px;}
.ydc{bottom:414.375000px;}
.y88{bottom:417.750000px;}
.y8d{bottom:430.125000px;}
.ydb{bottom:431.250000px;}
.y87{bottom:435.750000px;}
.y8c{bottom:443.625000px;}
.y10c{bottom:447.000000px;}
.yda{bottom:449.250000px;}
.y86{bottom:452.670000px;}
.y10b{bottom:465.030000px;}
.yd9{bottom:466.170000px;}
.y85{bottom:469.545000px;}
.ybe{bottom:472.920000px;}
.y10a{bottom:481.905000px;}
.y77{bottom:485.280000px;}
.y84{bottom:487.545000px;}
.ybd{bottom:489.795000px;}
.y109{bottom:498.825000px;}
.y83{bottom:501.075000px;}
.y76{bottom:503.325000px;}
.yd8{bottom:506.700000px;}
.ybc{bottom:507.825000px;}
.y108{bottom:516.825000px;}
.y75{bottom:520.200000px;}
.yd7{bottom:523.575000px;}
.ybb{bottom:524.700000px;}
.y107{bottom:533.700000px;}
.y74{bottom:537.120000px;}
.yba{bottom:538.230000px;}
.yd6{bottom:541.605000px;}
.y106{bottom:550.620000px;}
.y73{bottom:555.105000px;}
.yd5{bottom:558.480000px;}
.y105{bottom:568.605000px;}
.y72{bottom:571.980000px;}
.yd4{bottom:575.355000px;}
.y104{bottom:585.525000px;}
.y71{bottom:588.900000px;}
.yd3{bottom:590.025000px;}
.y103{bottom:602.400000px;}
.y70{bottom:606.900000px;}
.yd2{bottom:608.025000px;}
.y102{bottom:620.445000px;}
.y6f{bottom:623.820000px;}
.yd1{bottom:626.070000px;}
.y101{bottom:637.320000px;}
.y6e{bottom:640.695000px;}
.yd0{bottom:644.070000px;}
.y100{bottom:654.195000px;}
.y6d{bottom:658.695000px;}
.ycf{bottom:662.100000px;}
.yff{bottom:672.225000px;}
.y6c{bottom:675.600000px;}
.yce{bottom:680.100000px;}
.yfe{bottom:690.225000px;}
.y6b{bottom:692.475000px;}
.ycc{bottom:698.100000px;}
.yfd{bottom:707.130000px;}
.y6a{bottom:710.505000px;}
.ycb{bottom:716.130000px;}
.yfc{bottom:726.270000px;}
.y69{bottom:727.380000px;}
.yfb{bottom:743.145000px;}
.y68{bottom:744.300000px;}
.yca{bottom:755.550000px;}
.yfa{bottom:760.050000px;}
.y67{bottom:762.300000px;}
.y1b{bottom:771.300000px;}
.yc9{bottom:772.425000px;}
.y66{bottom:779.175000px;}
.yf9{bottom:783.675000px;}
.y82{bottom:784.800000px;}
.yc8{bottom:790.455000px;}
.y65{bottom:796.080000px;}
.yf{bottom:800.580000px;}
.y81{bottom:801.705000px;}
.yc7{bottom:807.330000px;}
.y64{bottom:814.080000px;}
.y80{bottom:818.580000px;}
.yc6{bottom:824.205000px;}
.y8b{bottom:827.625000px;}
.y63{bottom:831.000000px;}
.y7f{bottom:836.625000px;}
.yf8{bottom:841.125000px;}
.yc5{bottom:842.250000px;}
.y62{bottom:847.875000px;}
.y7e{bottom:853.500000px;}
.yb9{bottom:854.625000px;}
.yc4{bottom:855.750000px;}
.yf7{bottom:859.125000px;}
.y61{bottom:865.875000px;}
.y7d{bottom:867.000000px;}
.yb8{bottom:871.545000px;}
.yf6{bottom:876.045000px;}
.y60{bottom:882.795000px;}
.yb7{bottom:888.420000px;}
.yf5{bottom:892.920000px;}
.y5f{bottom:899.670000px;}
.yb5{bottom:903.030000px;}
.yf4{bottom:916.575000px;}
.y5e{bottom:917.700000px;}
.yb3{bottom:921.075000px;}
.yf3{bottom:933.450000px;}
.y5d{bottom:934.575000px;}
.yb4{bottom:939.075000px;}
.y5c{bottom:951.450000px;}
.yb0{bottom:957.120000px;}
.yf2{bottom:968.370000px;}
.y5b{bottom:969.495000px;}
.yb2{bottom:975.120000px;}
.y5a{bottom:986.370000px;}
.yf1{bottom:990.870000px;}
.yad{bottom:993.105000px;}
.y59{bottom:1003.275000px;}
.yd{bottom:1007.775000px;}
.yae{bottom:1011.150000px;}
.yf0{bottom:1014.525000px;}
.y58{bottom:1021.275000px;}
.yab{bottom:1029.150000px;}
.yef{bottom:1032.525000px;}
.y6{bottom:1033.650000px;}
.y57{bottom:1038.195000px;}
.yac{bottom:1047.195000px;}
.yee{bottom:1049.445000px;}
.y56{bottom:1055.070000px;}
.ya9{bottom:1065.195000px;}
.yed{bottom:1066.320000px;}
.y55{bottom:1073.070000px;}
.yaa{bottom:1083.225000px;}
.y54{bottom:1089.975000px;}
.ya6{bottom:1101.225000px;}
.y53{bottom:1106.850000px;}
.ya8{bottom:1119.255000px;}
.y52{bottom:1124.880000px;}
.ya5{bottom:1137.255000px;}
.y51{bottom:1141.755000px;}
.h29{height:16.860000px;}
.h24{height:16.875000px;}
.h26{height:16.897500px;}
.h27{height:16.912500px;}
.h21{height:18.000000px;}
.h22{height:18.037500px;}
.hc{height:25.875000px;}
.h15{height:29.287500px;}
.h2{height:32.662500px;}
.h14{height:33.543633px;}
.h13{height:33.723633px;}
.h28{height:34.875000px;}
.h25{height:34.912500px;}
.h12{height:35.806641px;}
.h23{height:36.000000px;}
.h1e{height:36.037500px;}
.h9{height:37.125000px;}
.h1d{height:40.847168px;}
.h1c{height:41.275635px;}
.h19{height:41.389893px;}
.h20{height:42.589600px;}
.he{height:43.075195px;}
.h1b{height:43.288330px;}
.hb{height:43.875000px;}
.h1f{height:46.278809px;}
.h18{height:49.234131px;}
.h1a{height:51.158936px;}
.h4{height:53.709961px;}
.ha{height:54.000000px;}
.h3{height:55.291992px;}
.h6{height:57.052002px;}
.h10{height:58.185791px;}
.h11{height:59.899658px;}
.hf{height:64.237500px;}
.h2a{height:68.778809px;}
.h2b{height:68.898809px;}
.h5{height:69.114990px;}
.h8{height:71.613281px;}
.h16{height:73.722656px;}
.h7{height:121.612500px;}
.hd{height:207.180000px;}
.h17{height:380.595000px;}
.h0{height:1263.375000px;}
.h1{height:1263.750000px;}
.w2{width:73.237500px;}
.wb{width:78.862500px;}
.w11{width:94.650000px;}
.wd{width:105.900000px;}
.wc{width:118.275000px;}
.w4{width:152.055000px;}
.w10{width:162.180000px;}
.wf{width:177.975000px;}
.w7{width:224.145000px;}
.wa{width:225.300000px;}
.we{width:292.875000px;}
.w9{width:424.650000px;}
.w8{width:508.050000px;}
.w5{width:580.125000px;}
.w1{width:658.950000px;}
.w6{width:732.195000px;}
.w3{width:893.249987px;}
.w0{width:893.250000px;}
.x0{left:0.000000px;}
.x6{left:7.875000px;}
.x2{left:9.000000px;}
.x13{left:12.405000px;}
.x37{left:29.295000px;}
.x3d{left:39.450000px;}
.xe{left:40.537500px;}
.x35{left:41.655000px;}
.x3b{left:43.950000px;}
.xf{left:46.162500px;}
.x10{left:47.287500px;}
.x32{left:54.075000px;}
.xc{left:59.700000px;}
.x34{left:61.935000px;}
.x31{left:69.825000px;}
.x3c{left:73.200000px;}
.x3a{left:77.730000px;}
.x1{left:81.112500px;}
.x24{left:82.237500px;}
.x30{left:83.362500px;}
.x39{left:85.605000px;}
.x38{left:95.737500px;}
.x3e{left:96.862500px;}
.x4{left:97.987500px;}
.x2f{left:104.737500px;}
.x3f{left:106.987500px;}
.x14{left:108.149987px;}
.xd{left:111.532500px;}
.x40{left:128.407500px;}
.x11{left:214.012500px;}
.x2e{left:216.254987px;}
.x5{left:233.175000px;}
.x23{left:234.299987px;}
.x2d{left:236.549987px;}
.x15{left:248.924987px;}
.x16{left:260.204987px;}
.x1c{left:269.219987px;}
.x1a{left:273.704987px;}
.x9{left:274.830000px;}
.x1e{left:301.874987px;}
.x29{left:302.999987px;}
.x12{left:305.250000px;}
.x20{left:307.499987px;}
.x22{left:322.169987px;}
.x7{left:330.045000px;}
.x8{left:349.200000px;}
.x2b{left:350.324987px;}
.xb{left:366.082500px;}
.x18{left:376.244987px;}
.x41{left:397.649987px;}
.xa{left:438.195000px;}
.x25{left:508.020000px;}
.x33{left:555.345000px;}
.x27{left:627.405000px;}
.x1f{left:663.479987px;}
.x1d{left:669.119987px;}
.x21{left:672.494987px;}
.x28{left:674.744987px;}
.x1b{left:675.869987px;}
.x17{left:676.979987px;}
.x19{left:680.354987px;}
.x2a{left:689.369987px;}
.x2c{left:692.774987px;}
.x36{left:717.525000px;}
.x26{left:733.320000px;}
.x3{left:740.070000px;}
@media print{
.v7{vertical-align:-36.000000pt;}
.v5{vertical-align:-19.946667pt;}
.v2{vertical-align:-16.000000pt;}
.v3{vertical-align:-12.000000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:16.000000pt;}
.v6{vertical-align:20.000000pt;}
.v4{vertical-align:36.000000pt;}
.ls10{letter-spacing:-2.458667pt;}
.lsa{letter-spacing:-2.421333pt;}
.lse{letter-spacing:-1.546667pt;}
.ls26{letter-spacing:-1.317333pt;}
.ls15{letter-spacing:-1.002667pt;}
.lsb{letter-spacing:-0.704000pt;}
.ls16{letter-spacing:-0.456000pt;}
.ls9{letter-spacing:-0.336000pt;}
.ls1d{letter-spacing:-0.227733pt;}
.ls8{letter-spacing:0.000000pt;}
.ls1a{letter-spacing:0.012000pt;}
.ls21{letter-spacing:0.080000pt;}
.lsf{letter-spacing:0.227733pt;}
.ls25{letter-spacing:0.912000pt;}
.ls0{letter-spacing:1.152000pt;}
.ls1{letter-spacing:1.472000pt;}
.ls12{letter-spacing:1.546667pt;}
.ls3{letter-spacing:1.748000pt;}
.ls6{letter-spacing:1.770667pt;}
.ls2{letter-spacing:1.808000pt;}
.ls4{letter-spacing:1.854667pt;}
.ls19{letter-spacing:1.946667pt;}
.ls5{letter-spacing:2.000000pt;}
.ls18{letter-spacing:2.160000pt;}
.ls13{letter-spacing:2.682667pt;}
.ls1f{letter-spacing:3.000000pt;}
.ls14{letter-spacing:3.053333pt;}
.ls7{letter-spacing:4.248000pt;}
.ls11{letter-spacing:4.912000pt;}
.ls1b{letter-spacing:6.946667pt;}
.ls17{letter-spacing:7.000000pt;}
.ls23{letter-spacing:7.106667pt;}
.ls1c{letter-spacing:7.160000pt;}
.ls20{letter-spacing:11.000000pt;}
.lsd{letter-spacing:11.053333pt;}
.ls1e{letter-spacing:19.000000pt;}
.lsc{letter-spacing:37.677333pt;}
.ls24{letter-spacing:41.677333pt;}
.ls22{letter-spacing:57.677333pt;}
.wsd{word-spacing:-17.912000pt;}
.wsf{word-spacing:-15.682667pt;}
.ws6{word-spacing:-15.000000pt;}
.wse{word-spacing:-14.546667pt;}
.ws3{word-spacing:-14.352000pt;}
.ws13{word-spacing:-13.912000pt;}
.ws2{word-spacing:-13.648000pt;}
.wsb{word-spacing:-13.227733pt;}
.ws5{word-spacing:-13.000000pt;}
.ws11{word-spacing:-12.772267pt;}
.ws10{word-spacing:-12.544000pt;}
.ws7{word-spacing:-11.752000pt;}
.ws14{word-spacing:-11.682667pt;}
.wsa{word-spacing:-11.453333pt;}
.ws1{word-spacing:-11.138667pt;}
.wsc{word-spacing:-10.541333pt;}
.ws0{word-spacing:-10.512000pt;}
.ws12{word-spacing:-9.012000pt;}
.ws8{word-spacing:-9.000000pt;}
.ws4{word-spacing:-7.232000pt;}
.ws9{word-spacing:0.000000pt;}
._6{margin-left:-8.766267pt;}
._18{margin-left:-7.295200pt;}
._d{margin-left:-5.600800pt;}
._8{margin-left:-4.496933pt;}
._7{margin-left:-3.161333pt;}
._2{margin-left:-2.160000pt;}
._1{margin-left:-1.056000pt;}
._0{width:1.728000pt;}
._4{width:2.752000pt;}
._a{width:3.854667pt;}
._3{width:5.040000pt;}
._17{width:5.954667pt;}
._b{width:6.901333pt;}
._9{width:8.044000pt;}
._5{width:9.018667pt;}
._c{width:10.934667pt;}
._19{width:11.834667pt;}
._15{width:14.210667pt;}
._13{width:15.404000pt;}
._1a{width:18.509333pt;}
._14{width:19.426667pt;}
._16{width:21.718667pt;}
._12{width:23.169333pt;}
._e{width:26.620000pt;}
._f{width:27.560000pt;}
._11{width:31.041333pt;}
._10{width:34.128000pt;}
.fs7{font-size:32.000000pt;}
.fs6{font-size:36.000000pt;}
.fs3{font-size:44.000000pt;}
.fs0{font-size:48.000000pt;}
.fs4{font-size:52.000000pt;}
.fs1{font-size:60.000000pt;}
.fs2{font-size:64.000000pt;}
.fs5{font-size:76.133333pt;}
.y0{bottom:0.000000pt;}
.y3{bottom:3.000000pt;}
.yb6{bottom:3.013333pt;}
.yaf{bottom:3.040000pt;}
.y1a{bottom:4.000000pt;}
.y94{bottom:4.013333pt;}
.ya0{bottom:4.026667pt;}
.ycd{bottom:4.040000pt;}
.y42{bottom:9.000000pt;}
.ye{bottom:10.000000pt;}
.yc{bottom:12.040000pt;}
.y4{bottom:15.000000pt;}
.y2{bottom:18.000000pt;}
.yb1{bottom:19.000000pt;}
.ya7{bottom:19.026667pt;}
.y3f{bottom:19.040000pt;}
.ya2{bottom:20.000000pt;}
.y98{bottom:20.026667pt;}
.y93{bottom:20.040000pt;}
.y41{bottom:22.040000pt;}
.y19{bottom:25.040000pt;}
.y5{bottom:27.000000pt;}
.yb{bottom:27.040000pt;}
.y3e{bottom:34.040000pt;}
.y18{bottom:40.040000pt;}
.ya{bottom:41.066667pt;}
.y1{bottom:46.033333pt;}
.y3d{bottom:50.040000pt;}
.y17{bottom:55.040000pt;}
.y9{bottom:65.066667pt;}
.y3c{bottom:65.080000pt;}
.y16{bottom:69.080000pt;}
.y3b{bottom:80.080000pt;}
.y8{bottom:83.093333pt;}
.y15{bottom:84.080000pt;}
.yec{bottom:87.066667pt;}
.y117{bottom:91.066667pt;}
.ya4{bottom:93.066667pt;}
.y14{bottom:93.080000pt;}
.y3a{bottom:96.106667pt;}
.yc3{bottom:97.066667pt;}
.y8a{bottom:98.066667pt;}
.y7{bottom:98.093333pt;}
.yeb{bottom:102.066667pt;}
.y2b{bottom:103.106667pt;}
.y50{bottom:104.066667pt;}
.y7c{bottom:106.100000pt;}
.ya1{bottom:109.100000pt;}
.y13{bottom:109.106667pt;}
.y89{bottom:110.100000pt;}
.y39{bottom:111.106667pt;}
.yc2{bottom:112.100000pt;}
.y2a{bottom:116.106667pt;}
.yea{bottom:117.100000pt;}
.y4f{bottom:119.100000pt;}
.y7b{bottom:121.100000pt;}
.ya3{bottom:125.100000pt;}
.y12{bottom:126.106667pt;}
.yc1{bottom:127.100000pt;}
.y29{bottom:132.146667pt;}
.ye9{bottom:133.100000pt;}
.y4e{bottom:134.106667pt;}
.y7a{bottom:137.106667pt;}
.y9e{bottom:141.106667pt;}
.y38{bottom:142.146667pt;}
.yc0{bottom:143.133333pt;}
.ye8{bottom:148.133333pt;}
.y28{bottom:148.146667pt;}
.y11{bottom:149.146667pt;}
.y4d{bottom:150.133333pt;}
.y79{bottom:152.133333pt;}
.ybf{bottom:155.133333pt;}
.y9f{bottom:157.133333pt;}
.y37{bottom:157.146667pt;}
.ye7{bottom:163.133333pt;}
.y27{bottom:163.146667pt;}
.y78{bottom:164.133333pt;}
.y4c{bottom:165.133333pt;}
.y116{bottom:167.133333pt;}
.y10{bottom:171.146667pt;}
.y36{bottom:172.173333pt;}
.y9c{bottom:173.133333pt;}
.y26{bottom:179.173333pt;}
.y4b{bottom:180.173333pt;}
.y115{bottom:183.173333pt;}
.y35{bottom:188.173333pt;}
.y9d{bottom:189.173333pt;}
.y25{bottom:194.173333pt;}
.y4a{bottom:196.173333pt;}
.y114{bottom:198.173333pt;}
.y34{bottom:203.213333pt;}
.y9a{bottom:205.173333pt;}
.y24{bottom:208.213333pt;}
.ye6{bottom:209.173333pt;}
.y49{bottom:211.173333pt;}
.y113{bottom:213.173333pt;}
.y33{bottom:218.213333pt;}
.y9b{bottom:221.200000pt;}
.y23{bottom:223.213333pt;}
.ye5{bottom:224.200000pt;}
.y48{bottom:226.200000pt;}
.y112{bottom:229.200000pt;}
.y32{bottom:234.213333pt;}
.y97{bottom:237.200000pt;}
.y22{bottom:239.213333pt;}
.y47{bottom:241.200000pt;}
.y111{bottom:244.200000pt;}
.ye4{bottom:245.200000pt;}
.y31{bottom:249.240000pt;}
.y99{bottom:253.226667pt;}
.y21{bottom:254.240000pt;}
.y46{bottom:257.226667pt;}
.y110{bottom:259.240000pt;}
.ye3{bottom:261.226667pt;}
.y30{bottom:264.240000pt;}
.y96{bottom:269.226667pt;}
.y20{bottom:270.240000pt;}
.y45{bottom:272.226667pt;}
.y10f{bottom:275.226667pt;}
.ye2{bottom:276.226667pt;}
.y2f{bottom:280.280000pt;}
.y92{bottom:285.226667pt;}
.y44{bottom:287.226667pt;}
.y1f{bottom:287.266667pt;}
.y10e{bottom:290.266667pt;}
.ye1{bottom:291.266667pt;}
.y2e{bottom:295.280000pt;}
.y95{bottom:301.266667pt;}
.y43{bottom:303.266667pt;}
.y10d{bottom:305.266667pt;}
.ye0{bottom:307.266667pt;}
.y2d{bottom:310.280000pt;}
.y1e{bottom:312.266667pt;}
.y40{bottom:315.266667pt;}
.y91{bottom:321.266667pt;}
.ydf{bottom:322.266667pt;}
.y2c{bottom:326.306667pt;}
.y1d{bottom:328.306667pt;}
.y90{bottom:336.293333pt;}
.yde{bottom:337.306667pt;}
.y1c{bottom:347.293333pt;}
.y8f{bottom:351.293333pt;}
.ydd{bottom:353.293333pt;}
.y8e{bottom:367.333333pt;}
.ydc{bottom:368.333333pt;}
.y88{bottom:371.333333pt;}
.y8d{bottom:382.333333pt;}
.ydb{bottom:383.333333pt;}
.y87{bottom:387.333333pt;}
.y8c{bottom:394.333333pt;}
.y10c{bottom:397.333333pt;}
.yda{bottom:399.333333pt;}
.y86{bottom:402.373333pt;}
.y10b{bottom:413.360000pt;}
.yd9{bottom:414.373333pt;}
.y85{bottom:417.373333pt;}
.ybe{bottom:420.373333pt;}
.y10a{bottom:428.360000pt;}
.y77{bottom:431.360000pt;}
.y84{bottom:433.373333pt;}
.ybd{bottom:435.373333pt;}
.y109{bottom:443.400000pt;}
.y83{bottom:445.400000pt;}
.y76{bottom:447.400000pt;}
.yd8{bottom:450.400000pt;}
.ybc{bottom:451.400000pt;}
.y108{bottom:459.400000pt;}
.y75{bottom:462.400000pt;}
.yd7{bottom:465.400000pt;}
.ybb{bottom:466.400000pt;}
.y107{bottom:474.400000pt;}
.y74{bottom:477.440000pt;}
.yba{bottom:478.426667pt;}
.yd6{bottom:481.426667pt;}
.y106{bottom:489.440000pt;}
.y73{bottom:493.426667pt;}
.yd5{bottom:496.426667pt;}
.y105{bottom:505.426667pt;}
.y72{bottom:508.426667pt;}
.yd4{bottom:511.426667pt;}
.y104{bottom:520.466667pt;}
.y71{bottom:523.466667pt;}
.yd3{bottom:524.466667pt;}
.y103{bottom:535.466667pt;}
.y70{bottom:539.466667pt;}
.yd2{bottom:540.466667pt;}
.y102{bottom:551.506667pt;}
.y6f{bottom:554.506667pt;}
.yd1{bottom:556.506667pt;}
.y101{bottom:566.506667pt;}
.y6e{bottom:569.506667pt;}
.yd0{bottom:572.506667pt;}
.y100{bottom:581.506667pt;}
.y6d{bottom:585.506667pt;}
.ycf{bottom:588.533333pt;}
.yff{bottom:597.533333pt;}
.y6c{bottom:600.533333pt;}
.yce{bottom:604.533333pt;}
.yfe{bottom:613.533333pt;}
.y6b{bottom:615.533333pt;}
.ycc{bottom:620.533333pt;}
.yfd{bottom:628.560000pt;}
.y6a{bottom:631.560000pt;}
.ycb{bottom:636.560000pt;}
.yfc{bottom:645.573333pt;}
.y69{bottom:646.560000pt;}
.yfb{bottom:660.573333pt;}
.y68{bottom:661.600000pt;}
.yca{bottom:671.600000pt;}
.yfa{bottom:675.600000pt;}
.y67{bottom:677.600000pt;}
.y1b{bottom:685.600000pt;}
.yc9{bottom:686.600000pt;}
.y66{bottom:692.600000pt;}
.yf9{bottom:696.600000pt;}
.y82{bottom:697.600000pt;}
.yc8{bottom:702.626667pt;}
.y65{bottom:707.626667pt;}
.yf{bottom:711.626667pt;}
.y81{bottom:712.626667pt;}
.yc7{bottom:717.626667pt;}
.y64{bottom:723.626667pt;}
.y80{bottom:727.626667pt;}
.yc6{bottom:732.626667pt;}
.y8b{bottom:735.666667pt;}
.y63{bottom:738.666667pt;}
.y7f{bottom:743.666667pt;}
.yf8{bottom:747.666667pt;}
.yc5{bottom:748.666667pt;}
.y62{bottom:753.666667pt;}
.y7e{bottom:758.666667pt;}
.yb9{bottom:759.666667pt;}
.yc4{bottom:760.666667pt;}
.yf7{bottom:763.666667pt;}
.y61{bottom:769.666667pt;}
.y7d{bottom:770.666667pt;}
.yb8{bottom:774.706667pt;}
.yf6{bottom:778.706667pt;}
.y60{bottom:784.706667pt;}
.yb7{bottom:789.706667pt;}
.yf5{bottom:793.706667pt;}
.y5f{bottom:799.706667pt;}
.yb5{bottom:802.693333pt;}
.yf4{bottom:814.733333pt;}
.y5e{bottom:815.733333pt;}
.yb3{bottom:818.733333pt;}
.yf3{bottom:829.733333pt;}
.y5d{bottom:830.733333pt;}
.yb4{bottom:834.733333pt;}
.y5c{bottom:845.733333pt;}
.yb0{bottom:850.773333pt;}
.yf2{bottom:860.773333pt;}
.y5b{bottom:861.773333pt;}
.yb2{bottom:866.773333pt;}
.y5a{bottom:876.773333pt;}
.yf1{bottom:880.773333pt;}
.yad{bottom:882.760000pt;}
.y59{bottom:891.800000pt;}
.yd{bottom:895.800000pt;}
.yae{bottom:898.800000pt;}
.yf0{bottom:901.800000pt;}
.y58{bottom:907.800000pt;}
.yab{bottom:914.800000pt;}
.yef{bottom:917.800000pt;}
.y6{bottom:918.800000pt;}
.y57{bottom:922.840000pt;}
.yac{bottom:930.840000pt;}
.yee{bottom:932.840000pt;}
.y56{bottom:937.840000pt;}
.ya9{bottom:946.840000pt;}
.yed{bottom:947.840000pt;}
.y55{bottom:953.840000pt;}
.yaa{bottom:962.866667pt;}
.y54{bottom:968.866667pt;}
.ya6{bottom:978.866667pt;}
.y53{bottom:983.866667pt;}
.ya8{bottom:994.893333pt;}
.y52{bottom:999.893333pt;}
.ya5{bottom:1010.893333pt;}
.y51{bottom:1014.893333pt;}
.h29{height:14.986667pt;}
.h24{height:15.000000pt;}
.h26{height:15.020000pt;}
.h27{height:15.033333pt;}
.h21{height:16.000000pt;}
.h22{height:16.033333pt;}
.hc{height:23.000000pt;}
.h15{height:26.033333pt;}
.h2{height:29.033333pt;}
.h14{height:29.816563pt;}
.h13{height:29.976563pt;}
.h28{height:31.000000pt;}
.h25{height:31.033333pt;}
.h12{height:31.828125pt;}
.h23{height:32.000000pt;}
.h1e{height:32.033333pt;}
.h9{height:33.000000pt;}
.h1d{height:36.308594pt;}
.h1c{height:36.689453pt;}
.h19{height:36.791016pt;}
.h20{height:37.857422pt;}
.he{height:38.289062pt;}
.h1b{height:38.478516pt;}
.hb{height:39.000000pt;}
.h1f{height:41.136719pt;}
.h18{height:43.763672pt;}
.h1a{height:45.474609pt;}
.h4{height:47.742188pt;}
.ha{height:48.000000pt;}
.h3{height:49.148438pt;}
.h6{height:50.712891pt;}
.h10{height:51.720703pt;}
.h11{height:53.244141pt;}
.hf{height:57.100000pt;}
.h2a{height:61.136719pt;}
.h2b{height:61.243385pt;}
.h5{height:61.435547pt;}
.h8{height:63.656250pt;}
.h16{height:65.531250pt;}
.h7{height:108.100000pt;}
.hd{height:184.160000pt;}
.h17{height:338.306667pt;}
.h0{height:1123.000000pt;}
.h1{height:1123.333333pt;}
.w2{width:65.100000pt;}
.wb{width:70.100000pt;}
.w11{width:84.133333pt;}
.wd{width:94.133333pt;}
.wc{width:105.133333pt;}
.w4{width:135.160000pt;}
.w10{width:144.160000pt;}
.wf{width:158.200000pt;}
.w7{width:199.240000pt;}
.wa{width:200.266667pt;}
.we{width:260.333333pt;}
.w9{width:377.466667pt;}
.w8{width:451.600000pt;}
.w5{width:515.666667pt;}
.w1{width:585.733333pt;}
.w6{width:650.840000pt;}
.w3{width:793.999988pt;}
.w0{width:794.000000pt;}
.x0{left:0.000000pt;}
.x6{left:7.000000pt;}
.x2{left:8.000000pt;}
.x13{left:11.026667pt;}
.x37{left:26.040000pt;}
.x3d{left:35.066667pt;}
.xe{left:36.033333pt;}
.x35{left:37.026667pt;}
.x3b{left:39.066667pt;}
.xf{left:41.033333pt;}
.x10{left:42.033333pt;}
.x32{left:48.066667pt;}
.xc{left:53.066667pt;}
.x34{left:55.053333pt;}
.x31{left:62.066667pt;}
.x3c{left:65.066667pt;}
.x3a{left:69.093333pt;}
.x1{left:72.100000pt;}
.x24{left:73.100000pt;}
.x30{left:74.100000pt;}
.x39{left:76.093333pt;}
.x38{left:85.100000pt;}
.x3e{left:86.100000pt;}
.x4{left:87.100000pt;}
.x2f{left:93.100000pt;}
.x3f{left:95.100000pt;}
.x14{left:96.133322pt;}
.xd{left:99.140000pt;}
.x40{left:114.140000pt;}
.x11{left:190.233333pt;}
.x2e{left:192.226655pt;}
.x5{left:207.266667pt;}
.x23{left:208.266655pt;}
.x2d{left:210.266655pt;}
.x15{left:221.266655pt;}
.x16{left:231.293322pt;}
.x1c{left:239.306655pt;}
.x1a{left:243.293322pt;}
.x9{left:244.293333pt;}
.x1e{left:268.333322pt;}
.x29{left:269.333322pt;}
.x12{left:271.333333pt;}
.x20{left:273.333322pt;}
.x22{left:286.373322pt;}
.x7{left:293.373333pt;}
.x8{left:310.400000pt;}
.x2b{left:311.399988pt;}
.xb{left:325.406667pt;}
.x18{left:334.439988pt;}
.x41{left:353.466655pt;}
.xa{left:389.506667pt;}
.x25{left:451.573333pt;}
.x33{left:493.640000pt;}
.x27{left:557.693333pt;}
.x1f{left:589.759988pt;}
.x1d{left:594.773322pt;}
.x21{left:597.773322pt;}
.x28{left:599.773322pt;}
.x1b{left:600.773322pt;}
.x17{left:601.759988pt;}
.x19{left:604.759988pt;}
.x2a{left:612.773322pt;}
.x2c{left:615.799988pt;}
.x36{left:637.800000pt;}
.x26{left:651.840000pt;}
.x3{left:657.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; }
  