
    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_e14bfba0da1e77e0f4dba1ed.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.886737;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_2fea32163a2f9cf4e5c8e60c.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.917969;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_0db8fdff1fe0bc6dcb3eca8e.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.800781;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_9a33400918c1f831028a1871.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.120605;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_ed4d9cfc0917f9b21972e5dc.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_e638556c97a95d369275c673.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.921387;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_2812691a4d6a4e4bcae8ce5c.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_1c71edd12b7338c4fc05b2d9.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_217780e2ef2cb52c9a0890d3.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.863770;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_295faed982450a259fe4be0d.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.938965;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_8ab7ea127296281812fd95dc.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.040039;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1{transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-ms-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-webkit-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v3{vertical-align:-84.240000px;}
.v2{vertical-align:-33.120000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:33.120000px;}
.ls9{letter-spacing:-0.792000px;}
.ls2{letter-spacing:-0.720000px;}
.ls8{letter-spacing:-0.288000px;}
.ls7{letter-spacing:-0.216000px;}
.ls3{letter-spacing:-0.144000px;}
.ls5{letter-spacing:-0.106800px;}
.ls1{letter-spacing:0.000000px;}
.lsb{letter-spacing:0.144000px;}
.ls0{letter-spacing:0.360000px;}
.lsa{letter-spacing:0.432000px;}
.ls4{letter-spacing:0.504000px;}
.ls6{letter-spacing:0.720000px;}
.lsd{letter-spacing:0.864000px;}
.lsc{letter-spacing:3.600000px;}
.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;}
}
.wsb{word-spacing:-18.144000px;}
.ws1{word-spacing:-18.000000px;}
.ws6{word-spacing:-17.856000px;}
.ws8{word-spacing:-17.784000px;}
.ws9{word-spacing:-17.712000px;}
.wsa{word-spacing:-17.208000px;}
.ws2{word-spacing:-16.560000px;}
.ws4{word-spacing:-15.840000px;}
.ws7{word-spacing:-14.940000px;}
.ws3{word-spacing:-12.060000px;}
.ws0{word-spacing:-0.072000px;}
.ws5{word-spacing:0.000000px;}
._1{margin-left:-62.640000px;}
._2c{margin-left:-2.448000px;}
._4{margin-left:-1.192320px;}
._6{width:1.050720px;}
._9{width:2.376000px;}
._48{width:3.384000px;}
._29{width:4.432320px;}
._40{width:5.544000px;}
._24{width:6.552000px;}
._e{width:7.704000px;}
._7{width:8.928000px;}
._8{width:10.877280px;}
._19{width:12.733440px;}
._1c{width:14.184000px;}
._33{width:15.360000px;}
._d{width:16.360320px;}
._f{width:19.296000px;}
._10{width:20.333280px;}
._28{width:22.216320px;}
._23{width:23.616000px;}
._0{width:24.708000px;}
._16{width:26.352000px;}
._32{width:27.432000px;}
._11{width:28.800000px;}
._12{width:30.384000px;}
._3a{width:31.680000px;}
._1a{width:33.264000px;}
._1b{width:34.416000px;}
._4c{width:35.482560px;}
._15{width:36.535680px;}
._14{width:37.552320px;}
._2e{width:39.132960px;}
._a{width:40.176000px;}
._b{width:41.256000px;}
._c{width:42.480000px;}
._1f{width:44.064000px;}
._20{width:45.144000px;}
._49{width:46.272000px;}
._3f{width:48.284160px;}
._18{width:49.380960px;}
._17{width:50.440320px;}
._27{width:51.471360px;}
._2a{width:53.496000px;}
._13{width:54.864000px;}
._1d{width:56.405280px;}
._35{width:57.960000px;}
._34{width:59.040000px;}
._3c{width:60.624000px;}
._2b{width:61.848000px;}
._37{width:63.360000px;}
._60{width:64.397280px;}
._21{width:66.384000px;}
._22{width:67.392000px;}
._26{width:68.579040px;}
._25{width:69.701280px;}
._4f{width:70.925280px;}
._45{width:71.928000px;}
._4e{width:73.264320px;}
._4a{width:74.736000px;}
._58{width:77.592000px;}
._56{width:79.200000px;}
._3b{width:81.000000px;}
._5a{width:82.272000px;}
._5c{width:84.917280px;}
._6c{width:86.472000px;}
._47{width:87.673920px;}
._41{width:88.920000px;}
._42{width:90.648000px;}
._36{width:92.160000px;}
._4d{width:93.496320px;}
._50{width:95.544000px;}
._31{width:97.488000px;}
._64{width:98.928000px;}
._71{width:99.976320px;}
._53{width:101.128320px;}
._61{width:102.204000px;}
._44{width:105.007680px;}
._43{width:106.312320px;}
._46{width:107.343360px;}
._4b{width:111.144000px;}
._54{width:112.229280px;}
._55{width:113.400000px;}
._30{width:114.725280px;}
._2f{width:115.888320px;}
._57{width:117.936000px;}
._1e{width:120.744000px;}
._2d{width:122.832000px;}
._67{width:124.488000px;}
._38{width:129.240000px;}
._39{width:130.248000px;}
._52{width:136.552320px;}
._3e{width:140.112000px;}
._3d{width:141.192000px;}
._6f{width:146.304000px;}
._5e{width:150.552000px;}
._5b{width:158.544000px;}
._5d{width:160.200000px;}
._5f{width:163.224000px;}
._51{width:167.688000px;}
._6a{width:180.792000px;}
._68{width:199.408320px;}
._6d{width:208.728000px;}
._59{width:217.224000px;}
._66{width:223.593600px;}
._65{width:225.216000px;}
._72{width:231.696000px;}
._73{width:246.600000px;}
._74{width:247.608000px;}
._69{width:261.400320px;}
._2{width:365.916000px;}
._6b{width:580.320000px;}
._6e{width:662.688000px;}
._63{width:726.660000px;}
._70{width:754.632000px;}
._62{width:770.688000px;}
._5{width:1045.296960px;}
._3{width:1386.300000px;}
.fc6{color:rgb(255,0,0);}
.fc5{color:rgb(0,112,192);}
.fc4{color:rgb(0,176,240);}
.fc8{color:transparent;}
.fc3{color:rgb(118,113,113);}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(0,63,119);}
.fc7{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:48.240000px;}
.fs7{font-size:59.760000px;}
.fs4{font-size:66.240000px;}
.fs6{font-size:69.822393px;}
.fs0{font-size:72.000000px;}
.fs1{font-size:77.760000px;}
.fs5{font-size:84.240000px;}
.fs2{font-size:95.760000px;}
.yb0{bottom:-16.665000px;}
.ya3{bottom:-16.095000px;}
.yb4{bottom:-12.135000px;}
.yb8{bottom:-11.985000px;}
.ya8{bottom:-8.175000px;}
.y0{bottom:0.000000px;}
.yab{bottom:1.365000px;}
.yaf{bottom:3.135000px;}
.y3e{bottom:3.240000px;}
.ya2{bottom:3.885000px;}
.y9d{bottom:3.930000px;}
.yc4{bottom:4.125000px;}
.ycb{bottom:4.135500px;}
.y7{bottom:4.140000px;}
.yc6{bottom:4.485000px;}
.y38{bottom:4.489500px;}
.ycc{bottom:4.495500px;}
.y21{bottom:4.500000px;}
.y40{bottom:6.120000px;}
.yb3{bottom:7.665000px;}
.yb7{bottom:7.815000px;}
.yaa{bottom:21.165000px;}
.y3d{bottom:23.040000px;}
.y9c{bottom:23.730000px;}
.yc3{bottom:24.825000px;}
.yca{bottom:24.829500px;}
.y12f{bottom:24.835500px;}
.yc0{bottom:24.840000px;}
.y11e{bottom:24.885000px;}
.yc5{bottom:25.185000px;}
.y37{bottom:25.189500px;}
.yfb{bottom:25.195500px;}
.y20{bottom:25.200000px;}
.yb2{bottom:27.465000px;}
.yb6{bottom:27.645000px;}
.yad{bottom:42.735000px;}
.y3c{bottom:42.840000px;}
.y12e{bottom:45.529500px;}
.ybf{bottom:45.540000px;}
.y11d{bottom:45.585000px;}
.y12b{bottom:45.885000px;}
.y36{bottom:45.889500px;}
.y1f{bottom:45.900000px;}
.ya5{bottom:51.405000px;}
.y6{bottom:53.640000px;}
.y5{bottom:58.176000px;}
.y49{bottom:62.989500px;}
.y9f{bottom:63.285000px;}
.y3b{bottom:63.720000px;}
.y12d{bottom:66.229500px;}
.ybe{bottom:66.240000px;}
.y1e{bottom:66.450000px;}
.y12a{bottom:66.585000px;}
.y35{bottom:66.589500px;}
.y105{bottom:66.600000px;}
.y10f{bottom:66.630000px;}
.y109{bottom:66.645000px;}
.y48{bottom:82.069500px;}
.y3a{bottom:83.520000px;}
.y1d{bottom:86.250000px;}
.ybd{bottom:86.940000px;}
.y129{bottom:87.285000px;}
.y34{bottom:87.289500px;}
.y104{bottom:87.300000px;}
.y10e{bottom:87.330000px;}
.y108{bottom:87.345000px;}
.y47{bottom:100.969500px;}
.ybc{bottom:107.640000px;}
.y33{bottom:107.989500px;}
.y103{bottom:108.000000px;}
.y10d{bottom:108.030000px;}
.y107{bottom:108.045000px;}
.y46{bottom:119.869500px;}
.ycd{bottom:120.460500px;}
.y12c{bottom:122.620500px;}
.yfa{bottom:124.060500px;}
.y13d{bottom:127.116000px;}
.yf8{bottom:127.836000px;}
.y32{bottom:128.689500px;}
.y111{bottom:128.700000px;}
.y10c{bottom:128.730000px;}
.y138{bottom:128.745000px;}
.y75{bottom:130.176000px;}
.y45{bottom:138.949500px;}
.yc9{bottom:141.880500px;}
.y13b{bottom:144.040500px;}
.y11b{bottom:145.656000px;}
.y22{bottom:147.820500px;}
.yf7{bottom:148.536000px;}
.y31{bottom:149.389500px;}
.y126{bottom:149.430000px;}
.y137{bottom:149.445000px;}
.y74{bottom:150.870000px;}
.y44{bottom:157.849500px;}
.y11a{bottom:166.170000px;}
.yf6{bottom:169.230000px;}
.y125{bottom:170.130000px;}
.y30{bottom:170.134500px;}
.y136{bottom:170.145000px;}
.y73{bottom:171.570000px;}
.y43{bottom:176.974500px;}
.yc8{bottom:184.005000px;}
.y119{bottom:186.870000px;}
.yf5{bottom:189.930000px;}
.y124{bottom:190.830000px;}
.y2f{bottom:190.834500px;}
.y135{bottom:190.845000px;}
.yba{bottom:191.910000px;}
.y72{bottom:192.270000px;}
.y42{bottom:197.854500px;}
.y128{bottom:206.145000px;}
.y118{bottom:207.570000px;}
.yf4{bottom:210.630000px;}
.y123{bottom:211.530000px;}
.y2e{bottom:211.534500px;}
.y134{bottom:211.545000px;}
.yb9{bottom:212.610000px;}
.y71{bottom:212.970000px;}
.y41{bottom:217.654500px;}
.y141{bottom:220.890000px;}
.yc7{bottom:226.125000px;}
.y117{bottom:228.270000px;}
.yf3{bottom:231.330000px;}
.y122{bottom:232.230000px;}
.y2d{bottom:232.234500px;}
.y133{bottom:232.245000px;}
.y8c{bottom:233.310000px;}
.y70{bottom:233.670000px;}
.y116{bottom:248.970000px;}
.yf2{bottom:252.030000px;}
.y121{bottom:252.930000px;}
.y2c{bottom:252.934500px;}
.y132{bottom:252.945000px;}
.y140{bottom:253.650000px;}
.y7b{bottom:254.010000px;}
.y6f{bottom:254.370000px;}
.yc2{bottom:268.245000px;}
.y115{bottom:269.670000px;}
.yf1{bottom:272.730000px;}
.y120{bottom:273.270000px;}
.y139{bottom:273.285000px;}
.y127{bottom:273.630000px;}
.y2b{bottom:273.634500px;}
.y131{bottom:273.645000px;}
.y7a{bottom:274.710000px;}
.y6e{bottom:275.070000px;}
.y114{bottom:290.370000px;}
.yf0{bottom:293.430000px;}
.y13c{bottom:293.974500px;}
.y2a{bottom:294.334500px;}
.y7d{bottom:295.410000px;}
.y6d{bottom:295.770000px;}
.yc1{bottom:310.395000px;}
.y113{bottom:311.115000px;}
.yef{bottom:314.175000px;}
.y29{bottom:315.034500px;}
.y7c{bottom:316.155000px;}
.y6c{bottom:316.515000px;}
.y112{bottom:331.815000px;}
.yee{bottom:334.875000px;}
.y28{bottom:335.734500px;}
.y87{bottom:336.855000px;}
.y6b{bottom:337.215000px;}
.y110{bottom:348.915000px;}
.ybb{bottom:352.515000px;}
.yed{bottom:355.575000px;}
.y27{bottom:356.434500px;}
.y86{bottom:357.555000px;}
.y6a{bottom:357.915000px;}
.yec{bottom:376.275000px;}
.y26{bottom:377.134500px;}
.y9a{bottom:378.255000px;}
.y69{bottom:378.615000px;}
.y3f{bottom:380.955000px;}
.yeb{bottom:396.975000px;}
.y101{bottom:397.474500px;}
.y25{bottom:397.834500px;}
.y99{bottom:398.955000px;}
.y68{bottom:399.315000px;}
.y39{bottom:402.555000px;}
.yea{bottom:417.675000px;}
.y100{bottom:418.534500px;}
.y24{bottom:418.564500px;}
.y98{bottom:419.655000px;}
.y67{bottom:420.015000px;}
.ye9{bottom:438.375000px;}
.y23{bottom:438.904500px;}
.yff{bottom:439.264500px;}
.y97{bottom:440.355000px;}
.y66{bottom:440.715000px;}
.yac{bottom:442.440000px;}
.y13a{bottom:455.295000px;}
.ye8{bottom:459.075000px;}
.yfe{bottom:459.964500px;}
.y81{bottom:461.055000px;}
.y65{bottom:461.415000px;}
.yae{bottom:465.375000px;}
.ye7{bottom:479.775000px;}
.yfd{bottom:480.664500px;}
.y80{bottom:481.755000px;}
.y64{bottom:482.115000px;}
.y10b{bottom:494.535000px;}
.y11f{bottom:496.695000px;}
.ye6{bottom:500.475000px;}
.yfc{bottom:501.364500px;}
.y1c{bottom:501.555000px;}
.y79{bottom:502.455000px;}
.y63{bottom:502.815000px;}
.ye5{bottom:521.175000px;}
.y78{bottom:522.975000px;}
.y62{bottom:523.335000px;}
.ye4{bottom:541.875000px;}
.y8b{bottom:543.675000px;}
.y61{bottom:544.035000px;}
.yb5{bottom:549.540000px;}
.ye3{bottom:562.605000px;}
.y8a{bottom:564.405000px;}
.y60{bottom:564.765000px;}
.ye2{bottom:583.305000px;}
.y89{bottom:585.105000px;}
.y9e{bottom:585.180000px;}
.y5f{bottom:585.465000px;}
.ya4{bottom:599.580000px;}
.ye1{bottom:604.005000px;}
.y82{bottom:605.805000px;}
.y5e{bottom:606.165000px;}
.y1b{bottom:607.605000px;}
.ya1{bottom:608.865000px;}
.ya7{bottom:611.385000px;}
.ye0{bottom:624.705000px;}
.y88{bottom:626.505000px;}
.y5d{bottom:626.865000px;}
.y1a{bottom:627.765000px;}
.ya0{bottom:628.665000px;}
.ya6{bottom:631.185000px;}
.y10a{bottom:640.185000px;}
.yb1{bottom:640.800000px;}
.yf9{bottom:642.345000px;}
.ydf{bottom:645.405000px;}
.y96{bottom:647.205000px;}
.y5c{bottom:647.565000px;}
.y19{bottom:648.285000px;}
.yde{bottom:666.105000px;}
.y95{bottom:667.905000px;}
.y5b{bottom:668.265000px;}
.y18{bottom:670.785000px;}
.ydd{bottom:686.805000px;}
.y94{bottom:688.605000px;}
.y5a{bottom:688.965000px;}
.y17{bottom:691.485000px;}
.ydc{bottom:707.505000px;}
.y93{bottom:709.305000px;}
.y59{bottom:709.665000px;}
.y16{bottom:712.185000px;}
.ya9{bottom:727.200000px;}
.ydb{bottom:728.205000px;}
.y92{bottom:730.005000px;}
.y58{bottom:730.365000px;}
.y15{bottom:732.885000px;}
.y130{bottom:745.845000px;}
.yda{bottom:748.905000px;}
.y91{bottom:750.705000px;}
.y57{bottom:751.065000px;}
.y14{bottom:761.865000px;}
.y106{bottom:765.105000px;}
.yd9{bottom:769.605000px;}
.y7f{bottom:771.405000px;}
.y56{bottom:771.765000px;}
.y13{bottom:782.565000px;}
.y11c{bottom:787.245000px;}
.yd8{bottom:790.305000px;}
.y7e{bottom:792.105000px;}
.y55{bottom:792.465000px;}
.y12{bottom:794.985000px;}
.yd7{bottom:811.005000px;}
.y85{bottom:812.850000px;}
.y54{bottom:813.210000px;}
.y9b{bottom:819.540000px;}
.y11{bottom:824.010000px;}
.yd6{bottom:831.750000px;}
.y84{bottom:833.550000px;}
.y53{bottom:833.910000px;}
.y10{bottom:836.430000px;}
.yd5{bottom:852.450000px;}
.y83{bottom:854.250000px;}
.y52{bottom:854.610000px;}
.yf{bottom:865.410000px;}
.yd4{bottom:873.150000px;}
.y90{bottom:874.950000px;}
.y51{bottom:875.310000px;}
.ye{bottom:886.110000px;}
.y102{bottom:890.070000px;}
.yd3{bottom:893.850000px;}
.y8f{bottom:895.650000px;}
.y50{bottom:896.010000px;}
.yd{bottom:898.170000px;}
.yd2{bottom:914.550000px;}
.y8e{bottom:916.350000px;}
.y4f{bottom:916.710000px;}
.yc{bottom:919.770000px;}
.yd1{bottom:935.250000px;}
.y8d{bottom:937.050000px;}
.y4e{bottom:937.410000px;}
.yb{bottom:944.610000px;}
.yd0{bottom:955.590000px;}
.y13f{bottom:957.750000px;}
.y4d{bottom:958.110000px;}
.ya{bottom:968.730000px;}
.ycf{bottom:972.870000px;}
.y13e{bottom:978.450000px;}
.y4c{bottom:978.810000px;}
.y9{bottom:992.850000px;}
.y4b{bottom:999.150000px;}
.y77{bottom:999.510000px;}
.yce{bottom:1014.990000px;}
.y8{bottom:1016.970000px;}
.y4a{bottom:1019.850000px;}
.y76{bottom:1020.210000px;}
.y4{bottom:1058.910000px;}
.y3{bottom:1077.660000px;}
.y2{bottom:1094.400000px;}
.y1{bottom:1116.720000px;}
.h6{height:19.800000px;}
.h2b{height:20.695500px;}
.h2c{height:20.700000px;}
.h1a{height:21.585000px;}
.h3{height:34.414263px;}
.h22{height:35.280000px;}
.h1d{height:37.800000px;}
.h28{height:41.385000px;}
.h2a{height:41.395500px;}
.h2d{height:41.400000px;}
.h29{height:41.421000px;}
.h24{height:41.580000px;}
.h25{height:41.760000px;}
.h20{height:42.164648px;}
.h18{height:45.928125px;}
.h12{height:47.255406px;}
.hb{height:47.321367px;}
.hc{height:47.344922px;}
.h5{height:48.030469px;}
.he{height:48.616875px;}
.h19{height:49.811073px;}
.h10{height:49.921875px;}
.h27{height:50.800781px;}
.h3a{height:51.364571px;}
.h16{height:52.066406px;}
.h11{height:52.207031px;}
.h23{height:56.880000px;}
.h2{height:57.656250px;}
.h9{height:60.096549px;}
.h1e{height:60.226875px;}
.h34{height:62.136000px;}
.h1c{height:65.010937px;}
.h21{height:65.520000px;}
.h4{height:65.884219px;}
.h1{height:68.314880px;}
.h39{height:70.628906px;}
.hd{height:70.664062px;}
.h15{height:72.562500px;}
.h1f{height:77.400000px;}
.hf{height:80.464922px;}
.ha{height:81.736875px;}
.h8{height:82.676953px;}
.h37{height:82.795500px;}
.h2e{height:82.800000px;}
.h7{height:84.898125px;}
.h17{height:98.985000px;}
.h13{height:101.730000px;}
.h26{height:124.185000px;}
.h30{height:124.200000px;}
.h31{height:124.236000px;}
.h33{height:144.885000px;}
.h32{height:144.930000px;}
.h1b{height:233.125500px;}
.h36{height:289.815000px;}
.h35{height:289.830000px;}
.h38{height:310.525500px;}
.h14{height:455.470500px;}
.h2f{height:517.570500px;}
.h0{height:1188.000000px;}
.w18{width:42.480000px;}
.w14{width:42.645000px;}
.w1c{width:57.780000px;}
.w20{width:57.801000px;}
.w15{width:59.745000px;}
.w19{width:59.760000px;}
.w13{width:68.781000px;}
.w17{width:68.976000px;}
.w6{width:71.100000px;}
.w5{width:78.300000px;}
.w11{width:81.720000px;}
.wd{width:81.885000px;}
.w9{width:83.700000px;}
.w1d{width:84.960000px;}
.w21{width:85.125000px;}
.wc{width:86.961000px;}
.w10{width:86.976000px;}
.we{width:88.551000px;}
.wa{width:88.596000px;}
.w7{width:89.820000px;}
.wb{width:93.945000px;}
.wf{width:93.960000px;}
.w8{width:96.300000px;}
.w1f{width:99.525000px;}
.w1b{width:99.576000px;}
.w1a{width:108.891000px;}
.w1e{width:108.936000px;}
.w4{width:131.220000px;}
.w16{width:179.991000px;}
.w12{width:180.210000px;}
.w2{width:232.950000px;}
.w3{width:532.155000px;}
.w1{width:777.780000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x11{left:8.100000px;}
.x19{left:10.830000px;}
.x26{left:11.880000px;}
.x17{left:13.140000px;}
.x1f{left:15.195000px;}
.x1c{left:16.230000px;}
.x1d{left:18.750000px;}
.x27{left:25.200000px;}
.x22{left:29.415000px;}
.x16{left:35.640000px;}
.x28{left:37.980000px;}
.x15{left:43.200000px;}
.x25{left:44.820000px;}
.x24{left:52.020000px;}
.x23{left:58.140000px;}
.x2a{left:62.130000px;}
.x10{left:99.936000px;}
.x1{left:108.036000px;}
.xa{left:111.096000px;}
.x4{left:114.156000px;}
.xe{left:121.896000px;}
.x5{left:123.156000px;}
.x3{left:132.156000px;}
.xc{left:139.896000px;}
.x6{left:148.536000px;}
.x3d{left:162.030000px;}
.x12{left:171.174000px;}
.x13{left:181.794000px;}
.x2e{left:188.490000px;}
.x8{left:194.430000px;}
.x36{left:208.830000px;}
.x18{left:230.580000px;}
.x1b{left:243.210000px;}
.x1a{left:261.030000px;}
.x33{left:279.930000px;}
.x2f{left:282.450000px;}
.x37{left:308.415000px;}
.x9{left:330.735000px;}
.xd{left:333.615000px;}
.xb{left:343.155000px;}
.x34{left:348.915000px;}
.xf{left:361.335000px;}
.x38{left:366.195000px;}
.x1e{left:370.080000px;}
.x21{left:382.395000px;}
.x35{left:391.395000px;}
.x20{left:392.835000px;}
.x7{left:459.075000px;}
.x29{left:466.815000px;}
.x14{left:474.915000px;}
.x3c{left:528.945000px;}
.x2b{left:555.420000px;}
.x39{left:575.760000px;}
.x30{left:647.040000px;}
.x2c{left:649.380000px;}
.x3a{left:675.300000px;}
.x31{left:715.830000px;}
.x3b{left:733.110000px;}
.x2d{left:736.350000px;}
.x32{left:758.490000px;}
.x2{left:785.130000px;}
@media print{
.v3{vertical-align:-74.880000pt;}
.v2{vertical-align:-29.440000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:29.440000pt;}
.ls9{letter-spacing:-0.704000pt;}
.ls2{letter-spacing:-0.640000pt;}
.ls8{letter-spacing:-0.256000pt;}
.ls7{letter-spacing:-0.192000pt;}
.ls3{letter-spacing:-0.128000pt;}
.ls5{letter-spacing:-0.094933pt;}
.ls1{letter-spacing:0.000000pt;}
.lsb{letter-spacing:0.128000pt;}
.ls0{letter-spacing:0.320000pt;}
.lsa{letter-spacing:0.384000pt;}
.ls4{letter-spacing:0.448000pt;}
.ls6{letter-spacing:0.640000pt;}
.lsd{letter-spacing:0.768000pt;}
.lsc{letter-spacing:3.200000pt;}
.wsb{word-spacing:-16.128000pt;}
.ws1{word-spacing:-16.000000pt;}
.ws6{word-spacing:-15.872000pt;}
.ws8{word-spacing:-15.808000pt;}
.ws9{word-spacing:-15.744000pt;}
.wsa{word-spacing:-15.296000pt;}
.ws2{word-spacing:-14.720000pt;}
.ws4{word-spacing:-14.080000pt;}
.ws7{word-spacing:-13.280000pt;}
.ws3{word-spacing:-10.720000pt;}
.ws0{word-spacing:-0.064000pt;}
.ws5{word-spacing:0.000000pt;}
._1{margin-left:-55.680000pt;}
._2c{margin-left:-2.176000pt;}
._4{margin-left:-1.059840pt;}
._6{width:0.933973pt;}
._9{width:2.112000pt;}
._48{width:3.008000pt;}
._29{width:3.939840pt;}
._40{width:4.928000pt;}
._24{width:5.824000pt;}
._e{width:6.848000pt;}
._7{width:7.936000pt;}
._8{width:9.668693pt;}
._19{width:11.318613pt;}
._1c{width:12.608000pt;}
._33{width:13.653333pt;}
._d{width:14.542507pt;}
._f{width:17.152000pt;}
._10{width:18.074027pt;}
._28{width:19.747840pt;}
._23{width:20.992000pt;}
._0{width:21.962667pt;}
._16{width:23.424000pt;}
._32{width:24.384000pt;}
._11{width:25.600000pt;}
._12{width:27.008000pt;}
._3a{width:28.160000pt;}
._1a{width:29.568000pt;}
._1b{width:30.592000pt;}
._4c{width:31.540053pt;}
._15{width:32.476160pt;}
._14{width:33.379840pt;}
._2e{width:34.784853pt;}
._a{width:35.712000pt;}
._b{width:36.672000pt;}
._c{width:37.760000pt;}
._1f{width:39.168000pt;}
._20{width:40.128000pt;}
._49{width:41.130667pt;}
._3f{width:42.919253pt;}
._18{width:43.894187pt;}
._17{width:44.835840pt;}
._27{width:45.752320pt;}
._2a{width:47.552000pt;}
._13{width:48.768000pt;}
._1d{width:50.138027pt;}
._35{width:51.520000pt;}
._34{width:52.480000pt;}
._3c{width:53.888000pt;}
._2b{width:54.976000pt;}
._37{width:56.320000pt;}
._60{width:57.242027pt;}
._21{width:59.008000pt;}
._22{width:59.904000pt;}
._26{width:60.959147pt;}
._25{width:61.956693pt;}
._4f{width:63.044693pt;}
._45{width:63.936000pt;}
._4e{width:65.123840pt;}
._4a{width:66.432000pt;}
._58{width:68.970667pt;}
._56{width:70.400000pt;}
._3b{width:72.000000pt;}
._5a{width:73.130667pt;}
._5c{width:75.482027pt;}
._6c{width:76.864000pt;}
._47{width:77.932373pt;}
._41{width:79.040000pt;}
._42{width:80.576000pt;}
._36{width:81.920000pt;}
._4d{width:83.107840pt;}
._50{width:84.928000pt;}
._31{width:86.656000pt;}
._64{width:87.936000pt;}
._71{width:88.867840pt;}
._53{width:89.891840pt;}
._61{width:90.848000pt;}
._44{width:93.340160pt;}
._43{width:94.499840pt;}
._46{width:95.416320pt;}
._4b{width:98.794667pt;}
._54{width:99.759360pt;}
._55{width:100.800000pt;}
._30{width:101.978027pt;}
._2f{width:103.011840pt;}
._57{width:104.832000pt;}
._1e{width:107.328000pt;}
._2d{width:109.184000pt;}
._67{width:110.656000pt;}
._38{width:114.880000pt;}
._39{width:115.776000pt;}
._52{width:121.379840pt;}
._3e{width:124.544000pt;}
._3d{width:125.504000pt;}
._6f{width:130.048000pt;}
._5e{width:133.824000pt;}
._5b{width:140.928000pt;}
._5d{width:142.400000pt;}
._5f{width:145.088000pt;}
._51{width:149.056000pt;}
._6a{width:160.704000pt;}
._68{width:177.251840pt;}
._6d{width:185.536000pt;}
._59{width:193.088000pt;}
._66{width:198.749867pt;}
._65{width:200.192000pt;}
._72{width:205.952000pt;}
._73{width:219.200000pt;}
._74{width:220.096000pt;}
._69{width:232.355840pt;}
._2{width:325.258667pt;}
._6b{width:515.840000pt;}
._6e{width:589.056000pt;}
._63{width:645.920000pt;}
._70{width:670.784000pt;}
._62{width:685.056000pt;}
._5{width:929.152853pt;}
._3{width:1232.266667pt;}
.fs3{font-size:42.880000pt;}
.fs7{font-size:53.120000pt;}
.fs4{font-size:58.880000pt;}
.fs6{font-size:62.064349pt;}
.fs0{font-size:64.000000pt;}
.fs1{font-size:69.120000pt;}
.fs5{font-size:74.880000pt;}
.fs2{font-size:85.120000pt;}
.yb0{bottom:-14.813333pt;}
.ya3{bottom:-14.306667pt;}
.yb4{bottom:-10.786667pt;}
.yb8{bottom:-10.653333pt;}
.ya8{bottom:-7.266667pt;}
.y0{bottom:0.000000pt;}
.yab{bottom:1.213333pt;}
.yaf{bottom:2.786667pt;}
.y3e{bottom:2.880000pt;}
.ya2{bottom:3.453333pt;}
.y9d{bottom:3.493333pt;}
.yc4{bottom:3.666667pt;}
.ycb{bottom:3.676000pt;}
.y7{bottom:3.680000pt;}
.yc6{bottom:3.986667pt;}
.y38{bottom:3.990667pt;}
.ycc{bottom:3.996000pt;}
.y21{bottom:4.000000pt;}
.y40{bottom:5.440000pt;}
.yb3{bottom:6.813333pt;}
.yb7{bottom:6.946667pt;}
.yaa{bottom:18.813333pt;}
.y3d{bottom:20.480000pt;}
.y9c{bottom:21.093333pt;}
.yc3{bottom:22.066667pt;}
.yca{bottom:22.070667pt;}
.y12f{bottom:22.076000pt;}
.yc0{bottom:22.080000pt;}
.y11e{bottom:22.120000pt;}
.yc5{bottom:22.386667pt;}
.y37{bottom:22.390667pt;}
.yfb{bottom:22.396000pt;}
.y20{bottom:22.400000pt;}
.yb2{bottom:24.413333pt;}
.yb6{bottom:24.573333pt;}
.yad{bottom:37.986667pt;}
.y3c{bottom:38.080000pt;}
.y12e{bottom:40.470667pt;}
.ybf{bottom:40.480000pt;}
.y11d{bottom:40.520000pt;}
.y12b{bottom:40.786667pt;}
.y36{bottom:40.790667pt;}
.y1f{bottom:40.800000pt;}
.ya5{bottom:45.693333pt;}
.y6{bottom:47.680000pt;}
.y5{bottom:51.712000pt;}
.y49{bottom:55.990667pt;}
.y9f{bottom:56.253333pt;}
.y3b{bottom:56.640000pt;}
.y12d{bottom:58.870667pt;}
.ybe{bottom:58.880000pt;}
.y1e{bottom:59.066667pt;}
.y12a{bottom:59.186667pt;}
.y35{bottom:59.190667pt;}
.y105{bottom:59.200000pt;}
.y10f{bottom:59.226667pt;}
.y109{bottom:59.240000pt;}
.y48{bottom:72.950667pt;}
.y3a{bottom:74.240000pt;}
.y1d{bottom:76.666667pt;}
.ybd{bottom:77.280000pt;}
.y129{bottom:77.586667pt;}
.y34{bottom:77.590667pt;}
.y104{bottom:77.600000pt;}
.y10e{bottom:77.626667pt;}
.y108{bottom:77.640000pt;}
.y47{bottom:89.750667pt;}
.ybc{bottom:95.680000pt;}
.y33{bottom:95.990667pt;}
.y103{bottom:96.000000pt;}
.y10d{bottom:96.026667pt;}
.y107{bottom:96.040000pt;}
.y46{bottom:106.550667pt;}
.ycd{bottom:107.076000pt;}
.y12c{bottom:108.996000pt;}
.yfa{bottom:110.276000pt;}
.y13d{bottom:112.992000pt;}
.yf8{bottom:113.632000pt;}
.y32{bottom:114.390667pt;}
.y111{bottom:114.400000pt;}
.y10c{bottom:114.426667pt;}
.y138{bottom:114.440000pt;}
.y75{bottom:115.712000pt;}
.y45{bottom:123.510667pt;}
.yc9{bottom:126.116000pt;}
.y13b{bottom:128.036000pt;}
.y11b{bottom:129.472000pt;}
.y22{bottom:131.396000pt;}
.yf7{bottom:132.032000pt;}
.y31{bottom:132.790667pt;}
.y126{bottom:132.826667pt;}
.y137{bottom:132.840000pt;}
.y74{bottom:134.106667pt;}
.y44{bottom:140.310667pt;}
.y11a{bottom:147.706667pt;}
.yf6{bottom:150.426667pt;}
.y125{bottom:151.226667pt;}
.y30{bottom:151.230667pt;}
.y136{bottom:151.240000pt;}
.y73{bottom:152.506667pt;}
.y43{bottom:157.310667pt;}
.yc8{bottom:163.560000pt;}
.y119{bottom:166.106667pt;}
.yf5{bottom:168.826667pt;}
.y124{bottom:169.626667pt;}
.y2f{bottom:169.630667pt;}
.y135{bottom:169.640000pt;}
.yba{bottom:170.586667pt;}
.y72{bottom:170.906667pt;}
.y42{bottom:175.870667pt;}
.y128{bottom:183.240000pt;}
.y118{bottom:184.506667pt;}
.yf4{bottom:187.226667pt;}
.y123{bottom:188.026667pt;}
.y2e{bottom:188.030667pt;}
.y134{bottom:188.040000pt;}
.yb9{bottom:188.986667pt;}
.y71{bottom:189.306667pt;}
.y41{bottom:193.470667pt;}
.y141{bottom:196.346667pt;}
.yc7{bottom:201.000000pt;}
.y117{bottom:202.906667pt;}
.yf3{bottom:205.626667pt;}
.y122{bottom:206.426667pt;}
.y2d{bottom:206.430667pt;}
.y133{bottom:206.440000pt;}
.y8c{bottom:207.386667pt;}
.y70{bottom:207.706667pt;}
.y116{bottom:221.306667pt;}
.yf2{bottom:224.026667pt;}
.y121{bottom:224.826667pt;}
.y2c{bottom:224.830667pt;}
.y132{bottom:224.840000pt;}
.y140{bottom:225.466667pt;}
.y7b{bottom:225.786667pt;}
.y6f{bottom:226.106667pt;}
.yc2{bottom:238.440000pt;}
.y115{bottom:239.706667pt;}
.yf1{bottom:242.426667pt;}
.y120{bottom:242.906667pt;}
.y139{bottom:242.920000pt;}
.y127{bottom:243.226667pt;}
.y2b{bottom:243.230667pt;}
.y131{bottom:243.240000pt;}
.y7a{bottom:244.186667pt;}
.y6e{bottom:244.506667pt;}
.y114{bottom:258.106667pt;}
.yf0{bottom:260.826667pt;}
.y13c{bottom:261.310667pt;}
.y2a{bottom:261.630667pt;}
.y7d{bottom:262.586667pt;}
.y6d{bottom:262.906667pt;}
.yc1{bottom:275.906667pt;}
.y113{bottom:276.546667pt;}
.yef{bottom:279.266667pt;}
.y29{bottom:280.030667pt;}
.y7c{bottom:281.026667pt;}
.y6c{bottom:281.346667pt;}
.y112{bottom:294.946667pt;}
.yee{bottom:297.666667pt;}
.y28{bottom:298.430667pt;}
.y87{bottom:299.426667pt;}
.y6b{bottom:299.746667pt;}
.y110{bottom:310.146667pt;}
.ybb{bottom:313.346667pt;}
.yed{bottom:316.066667pt;}
.y27{bottom:316.830667pt;}
.y86{bottom:317.826667pt;}
.y6a{bottom:318.146667pt;}
.yec{bottom:334.466667pt;}
.y26{bottom:335.230667pt;}
.y9a{bottom:336.226667pt;}
.y69{bottom:336.546667pt;}
.y3f{bottom:338.626667pt;}
.yeb{bottom:352.866667pt;}
.y101{bottom:353.310667pt;}
.y25{bottom:353.630667pt;}
.y99{bottom:354.626667pt;}
.y68{bottom:354.946667pt;}
.y39{bottom:357.826667pt;}
.yea{bottom:371.266667pt;}
.y100{bottom:372.030667pt;}
.y24{bottom:372.057333pt;}
.y98{bottom:373.026667pt;}
.y67{bottom:373.346667pt;}
.ye9{bottom:389.666667pt;}
.y23{bottom:390.137333pt;}
.yff{bottom:390.457333pt;}
.y97{bottom:391.426667pt;}
.y66{bottom:391.746667pt;}
.yac{bottom:393.280000pt;}
.y13a{bottom:404.706667pt;}
.ye8{bottom:408.066667pt;}
.yfe{bottom:408.857333pt;}
.y81{bottom:409.826667pt;}
.y65{bottom:410.146667pt;}
.yae{bottom:413.666667pt;}
.ye7{bottom:426.466667pt;}
.yfd{bottom:427.257333pt;}
.y80{bottom:428.226667pt;}
.y64{bottom:428.546667pt;}
.y10b{bottom:439.586667pt;}
.y11f{bottom:441.506667pt;}
.ye6{bottom:444.866667pt;}
.yfc{bottom:445.657333pt;}
.y1c{bottom:445.826667pt;}
.y79{bottom:446.626667pt;}
.y63{bottom:446.946667pt;}
.ye5{bottom:463.266667pt;}
.y78{bottom:464.866667pt;}
.y62{bottom:465.186667pt;}
.ye4{bottom:481.666667pt;}
.y8b{bottom:483.266667pt;}
.y61{bottom:483.586667pt;}
.yb5{bottom:488.480000pt;}
.ye3{bottom:500.093333pt;}
.y8a{bottom:501.693333pt;}
.y60{bottom:502.013333pt;}
.ye2{bottom:518.493333pt;}
.y89{bottom:520.093333pt;}
.y9e{bottom:520.160000pt;}
.y5f{bottom:520.413333pt;}
.ya4{bottom:532.960000pt;}
.ye1{bottom:536.893333pt;}
.y82{bottom:538.493333pt;}
.y5e{bottom:538.813333pt;}
.y1b{bottom:540.093333pt;}
.ya1{bottom:541.213333pt;}
.ya7{bottom:543.453333pt;}
.ye0{bottom:555.293333pt;}
.y88{bottom:556.893333pt;}
.y5d{bottom:557.213333pt;}
.y1a{bottom:558.013333pt;}
.ya0{bottom:558.813333pt;}
.ya6{bottom:561.053333pt;}
.y10a{bottom:569.053333pt;}
.yb1{bottom:569.600000pt;}
.yf9{bottom:570.973333pt;}
.ydf{bottom:573.693333pt;}
.y96{bottom:575.293333pt;}
.y5c{bottom:575.613333pt;}
.y19{bottom:576.253333pt;}
.yde{bottom:592.093333pt;}
.y95{bottom:593.693333pt;}
.y5b{bottom:594.013333pt;}
.y18{bottom:596.253333pt;}
.ydd{bottom:610.493333pt;}
.y94{bottom:612.093333pt;}
.y5a{bottom:612.413333pt;}
.y17{bottom:614.653333pt;}
.ydc{bottom:628.893333pt;}
.y93{bottom:630.493333pt;}
.y59{bottom:630.813333pt;}
.y16{bottom:633.053333pt;}
.ya9{bottom:646.400000pt;}
.ydb{bottom:647.293333pt;}
.y92{bottom:648.893333pt;}
.y58{bottom:649.213333pt;}
.y15{bottom:651.453333pt;}
.y130{bottom:662.973333pt;}
.yda{bottom:665.693333pt;}
.y91{bottom:667.293333pt;}
.y57{bottom:667.613333pt;}
.y14{bottom:677.213333pt;}
.y106{bottom:680.093333pt;}
.yd9{bottom:684.093333pt;}
.y7f{bottom:685.693333pt;}
.y56{bottom:686.013333pt;}
.y13{bottom:695.613333pt;}
.y11c{bottom:699.773333pt;}
.yd8{bottom:702.493333pt;}
.y7e{bottom:704.093333pt;}
.y55{bottom:704.413333pt;}
.y12{bottom:706.653333pt;}
.yd7{bottom:720.893333pt;}
.y85{bottom:722.533333pt;}
.y54{bottom:722.853333pt;}
.y9b{bottom:728.480000pt;}
.y11{bottom:732.453333pt;}
.yd6{bottom:739.333333pt;}
.y84{bottom:740.933333pt;}
.y53{bottom:741.253333pt;}
.y10{bottom:743.493333pt;}
.yd5{bottom:757.733333pt;}
.y83{bottom:759.333333pt;}
.y52{bottom:759.653333pt;}
.yf{bottom:769.253333pt;}
.yd4{bottom:776.133333pt;}
.y90{bottom:777.733333pt;}
.y51{bottom:778.053333pt;}
.ye{bottom:787.653333pt;}
.y102{bottom:791.173333pt;}
.yd3{bottom:794.533333pt;}
.y8f{bottom:796.133333pt;}
.y50{bottom:796.453333pt;}
.yd{bottom:798.373333pt;}
.yd2{bottom:812.933333pt;}
.y8e{bottom:814.533333pt;}
.y4f{bottom:814.853333pt;}
.yc{bottom:817.573333pt;}
.yd1{bottom:831.333333pt;}
.y8d{bottom:832.933333pt;}
.y4e{bottom:833.253333pt;}
.yb{bottom:839.653333pt;}
.yd0{bottom:849.413333pt;}
.y13f{bottom:851.333333pt;}
.y4d{bottom:851.653333pt;}
.ya{bottom:861.093333pt;}
.ycf{bottom:864.773333pt;}
.y13e{bottom:869.733333pt;}
.y4c{bottom:870.053333pt;}
.y9{bottom:882.533333pt;}
.y4b{bottom:888.133333pt;}
.y77{bottom:888.453333pt;}
.yce{bottom:902.213333pt;}
.y8{bottom:903.973333pt;}
.y4a{bottom:906.533333pt;}
.y76{bottom:906.853333pt;}
.y4{bottom:941.253333pt;}
.y3{bottom:957.920000pt;}
.y2{bottom:972.800000pt;}
.y1{bottom:992.640000pt;}
.h6{height:17.600000pt;}
.h2b{height:18.396000pt;}
.h2c{height:18.400000pt;}
.h1a{height:19.186667pt;}
.h3{height:30.590456pt;}
.h22{height:31.360000pt;}
.h1d{height:33.600000pt;}
.h28{height:36.786667pt;}
.h2a{height:36.796000pt;}
.h2d{height:36.800000pt;}
.h29{height:36.818667pt;}
.h24{height:36.960000pt;}
.h25{height:37.120000pt;}
.h20{height:37.479688pt;}
.h18{height:40.825000pt;}
.h12{height:42.004805pt;}
.hb{height:42.063437pt;}
.hc{height:42.084375pt;}
.h5{height:42.693750pt;}
.he{height:43.215000pt;}
.h19{height:44.276509pt;}
.h10{height:44.375000pt;}
.h27{height:45.156250pt;}
.h3a{height:45.657397pt;}
.h16{height:46.281250pt;}
.h11{height:46.406250pt;}
.h23{height:50.560000pt;}
.h2{height:51.250000pt;}
.h9{height:53.419154pt;}
.h1e{height:53.535000pt;}
.h34{height:55.232000pt;}
.h1c{height:57.787500pt;}
.h21{height:58.240000pt;}
.h4{height:58.563750pt;}
.h1{height:60.724338pt;}
.h39{height:62.781250pt;}
.hd{height:62.812500pt;}
.h15{height:64.500000pt;}
.h1f{height:68.800000pt;}
.hf{height:71.524375pt;}
.ha{height:72.655000pt;}
.h8{height:73.490625pt;}
.h37{height:73.596000pt;}
.h2e{height:73.600000pt;}
.h7{height:75.465000pt;}
.h17{height:87.986667pt;}
.h13{height:90.426667pt;}
.h26{height:110.386667pt;}
.h30{height:110.400000pt;}
.h31{height:110.432000pt;}
.h33{height:128.786667pt;}
.h32{height:128.826667pt;}
.h1b{height:207.222667pt;}
.h36{height:257.613333pt;}
.h35{height:257.626667pt;}
.h38{height:276.022667pt;}
.h14{height:404.862667pt;}
.h2f{height:460.062667pt;}
.h0{height:1056.000000pt;}
.w18{width:37.760000pt;}
.w14{width:37.906667pt;}
.w1c{width:51.360000pt;}
.w20{width:51.378667pt;}
.w15{width:53.106667pt;}
.w19{width:53.120000pt;}
.w13{width:61.138667pt;}
.w17{width:61.312000pt;}
.w6{width:63.200000pt;}
.w5{width:69.600000pt;}
.w11{width:72.640000pt;}
.wd{width:72.786667pt;}
.w9{width:74.400000pt;}
.w1d{width:75.520000pt;}
.w21{width:75.666667pt;}
.wc{width:77.298667pt;}
.w10{width:77.312000pt;}
.we{width:78.712000pt;}
.wa{width:78.752000pt;}
.w7{width:79.840000pt;}
.wb{width:83.506667pt;}
.wf{width:83.520000pt;}
.w8{width:85.600000pt;}
.w1f{width:88.466667pt;}
.w1b{width:88.512000pt;}
.w1a{width:96.792000pt;}
.w1e{width:96.832000pt;}
.w4{width:116.640000pt;}
.w16{width:159.992000pt;}
.w12{width:160.186667pt;}
.w2{width:207.066667pt;}
.w3{width:473.026667pt;}
.w1{width:691.360000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x11{left:7.200000pt;}
.x19{left:9.626667pt;}
.x26{left:10.560000pt;}
.x17{left:11.680000pt;}
.x1f{left:13.506667pt;}
.x1c{left:14.426667pt;}
.x1d{left:16.666667pt;}
.x27{left:22.400000pt;}
.x22{left:26.146667pt;}
.x16{left:31.680000pt;}
.x28{left:33.760000pt;}
.x15{left:38.400000pt;}
.x25{left:39.840000pt;}
.x24{left:46.240000pt;}
.x23{left:51.680000pt;}
.x2a{left:55.226667pt;}
.x10{left:88.832000pt;}
.x1{left:96.032000pt;}
.xa{left:98.752000pt;}
.x4{left:101.472000pt;}
.xe{left:108.352000pt;}
.x5{left:109.472000pt;}
.x3{left:117.472000pt;}
.xc{left:124.352000pt;}
.x6{left:132.032000pt;}
.x3d{left:144.026667pt;}
.x12{left:152.154667pt;}
.x13{left:161.594667pt;}
.x2e{left:167.546667pt;}
.x8{left:172.826667pt;}
.x36{left:185.626667pt;}
.x18{left:204.960000pt;}
.x1b{left:216.186667pt;}
.x1a{left:232.026667pt;}
.x33{left:248.826667pt;}
.x2f{left:251.066667pt;}
.x37{left:274.146667pt;}
.x9{left:293.986667pt;}
.xd{left:296.546667pt;}
.xb{left:305.026667pt;}
.x34{left:310.146667pt;}
.xf{left:321.186667pt;}
.x38{left:325.506667pt;}
.x1e{left:328.960000pt;}
.x21{left:339.906667pt;}
.x35{left:347.906667pt;}
.x20{left:349.186667pt;}
.x7{left:408.066667pt;}
.x29{left:414.946667pt;}
.x14{left:422.146667pt;}
.x3c{left:470.173333pt;}
.x2b{left:493.706667pt;}
.x39{left:511.786667pt;}
.x30{left:575.146667pt;}
.x2c{left:577.226667pt;}
.x3a{left:600.266667pt;}
.x31{left:636.293333pt;}
.x3b{left:651.653333pt;}
.x2d{left:654.533333pt;}
.x32{left:674.213333pt;}
.x2{left:697.893333pt;}
}




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