
    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_257daa23cbdab3ec2943e3d8.woff2')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_ea80889f2eac345bbefe78de.woff2')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_1a204a2e1c1badd98eff8cae.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_9ce2795c152eef6869d2d1ba.woff2')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_508a73a749ad906b40f10b60.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_5ad189b37a58e274b8a07206.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_cf5b54b838ee9f69dcdff9c4.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_ecf53b99b417b3ba4cd28696.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.682617;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_01ce8cbd34e42b9a86a59126.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_27fb3c20856f0669d0fa40a0.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_f834a10cbf3806115018a18e.woff2')format("woff");}.ffb{font-family:ffb;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;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-20.880000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:23.760000px;}
.ls30{letter-spacing:-0.780000px;}
.ls4a{letter-spacing:-0.579600px;}
.ls44{letter-spacing:-0.533400px;}
.ls6{letter-spacing:-0.463800px;}
.ls45{letter-spacing:-0.417000px;}
.lsf{letter-spacing:-0.414000px;}
.ls41{letter-spacing:-0.303000px;}
.ls15{letter-spacing:-0.301200px;}
.ls8{letter-spacing:-0.292200px;}
.lsa{letter-spacing:-0.272400px;}
.ls21{letter-spacing:-0.268800px;}
.ls13{letter-spacing:-0.240600px;}
.ls37{letter-spacing:-0.172200px;}
.ls5{letter-spacing:-0.132600px;}
.lsd{letter-spacing:-0.115800px;}
.ls34{letter-spacing:-0.115200px;}
.ls3e{letter-spacing:-0.109200px;}
.ls16{letter-spacing:-0.107400px;}
.ls40{letter-spacing:-0.069600px;}
.ls32{letter-spacing:-0.064800px;}
.ls10{letter-spacing:-0.058320px;}
.ls43{letter-spacing:-0.055440px;}
.lsb{letter-spacing:-0.052560px;}
.ls35{letter-spacing:-0.049680px;}
.ls2d{letter-spacing:-0.041040px;}
.ls3f{letter-spacing:-0.032400px;}
.ls3{letter-spacing:0.000000px;}
.ls28{letter-spacing:0.025200px;}
.ls4{letter-spacing:0.038880px;}
.ls29{letter-spacing:0.060600px;}
.ls1b{letter-spacing:0.064200px;}
.lsc{letter-spacing:0.066000px;}
.ls36{letter-spacing:0.093600px;}
.ls2b{letter-spacing:0.100800px;}
.ls48{letter-spacing:0.112200px;}
.lse{letter-spacing:0.132480px;}
.ls11{letter-spacing:0.140400px;}
.ls18{letter-spacing:0.144000px;}
.ls7{letter-spacing:0.150000px;}
.ls2a{letter-spacing:0.174240px;}
.ls42{letter-spacing:0.175200px;}
.ls33{letter-spacing:0.180000px;}
.ls1a{letter-spacing:0.186600px;}
.ls9{letter-spacing:0.190200px;}
.ls47{letter-spacing:0.209400px;}
.ls25{letter-spacing:0.243600px;}
.ls2f{letter-spacing:0.303000px;}
.ls49{letter-spacing:0.306000px;}
.ls2e{letter-spacing:0.357000px;}
.ls31{letter-spacing:0.376800px;}
.ls20{letter-spacing:0.393600px;}
.ls0{letter-spacing:0.427680px;}
.ls12{letter-spacing:0.479520px;}
.ls2{letter-spacing:0.617760px;}
.ls46{letter-spacing:0.906000px;}
.ls1f{letter-spacing:1.614240px;}
.ls23{letter-spacing:2.334240px;}
.ls26{letter-spacing:3.774240px;}
.ls39{letter-spacing:4.494240px;}
.ls27{letter-spacing:8.094240px;}
.ls22{letter-spacing:8.814240px;}
.ls3d{letter-spacing:9.534240px;}
.ls2c{letter-spacing:9.714240px;}
.ls24{letter-spacing:12.186720px;}
.ls3c{letter-spacing:12.414240px;}
.ls3b{letter-spacing:13.134240px;}
.ls3a{letter-spacing:16.734240px;}
.ls38{letter-spacing:17.454240px;}
.ls1{letter-spacing:38.106720px;}
.ls1c{letter-spacing:40.986720px;}
.ls1e{letter-spacing:42.570720px;}
.ls14{letter-spacing:46.026720px;}
.ls1d{letter-spacing:64.026720px;}
.ls19{letter-spacing:104.322720px;}
.ls17{letter-spacing:154.170720px;}
.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;}
}
.wse{word-spacing:-59.760000px;}
.ws4{word-spacing:-21.641760px;}
.ws0{word-spacing:-19.077120px;}
.ws3{word-spacing:-14.970240px;}
.ws1{word-spacing:-14.837640px;}
.ws2{word-spacing:-14.506440px;}
.ws28{word-spacing:-14.411760px;}
.ws16{word-spacing:-13.882560px;}
.ws12{word-spacing:-13.862760px;}
.ws2b{word-spacing:-13.811760px;}
.ws13{word-spacing:-13.808760px;}
.ws14{word-spacing:-13.749360px;}
.ws29{word-spacing:-13.715160px;}
.wsd{word-spacing:-13.692360px;}
.ws24{word-spacing:-13.680960px;}
.wsb{word-spacing:-13.646160px;}
.ws2a{word-spacing:-13.617960px;}
.ws1d{word-spacing:-13.606560px;}
.ws1e{word-spacing:-13.599360px;}
.ws19{word-spacing:-13.569960px;}
.ws1b{word-spacing:-13.566360px;}
.ws18{word-spacing:-13.530960px;}
.ws7{word-spacing:-13.505760px;}
.ws21{word-spacing:-13.473360px;}
.ws11{word-spacing:-13.464720px;}
.ws1c{word-spacing:-13.456080px;}
.ws25{word-spacing:-13.450320px;}
.wsa{word-spacing:-13.447440px;}
.ws17{word-spacing:-13.440960px;}
.ws22{word-spacing:-13.436160px;}
.ws10{word-spacing:-13.398360px;}
.ws20{word-spacing:-13.396560px;}
.ws1a{word-spacing:-13.390560px;}
.ws8{word-spacing:-13.389960px;}
.ws1f{word-spacing:-13.333560px;}
.wsf{word-spacing:-13.236960px;}
.wsc{word-spacing:-13.204560px;}
.ws23{word-spacing:-13.202760px;}
.ws27{word-spacing:-13.088760px;}
.ws26{word-spacing:-12.972360px;}
.ws2c{word-spacing:-12.926160px;}
.ws15{word-spacing:-12.725760px;}
.ws6{word-spacing:-9.437760px;}
.ws5{word-spacing:-9.145560px;}
.ws9{word-spacing:0.000000px;}
._1e{margin-left:-532.918560px;}
._1f{margin-left:-528.059520px;}
._1{margin-left:-487.878240px;}
._6{margin-left:-409.254240px;}
._8{margin-left:-306.459120px;}
._12{margin-left:-292.170240px;}
._4{margin-left:-289.292160px;}
._5{margin-left:-287.782560px;}
._0{margin-left:-274.978080px;}
._17{margin-left:-247.991040px;}
._b{margin-left:-240.510240px;}
._16{margin-left:-222.774000px;}
._22{margin-left:-214.738560px;}
._f{margin-left:-203.010240px;}
._19{margin-left:-201.453120px;}
._18{margin-left:-200.226720px;}
._21{margin-left:-190.074240px;}
._e{margin-left:-171.054720px;}
._27{margin-left:-169.761600px;}
._d{margin-left:-165.322080px;}
._10{margin-left:-159.758400px;}
._23{margin-left:-154.885440px;}
._9{margin-left:-153.774720px;}
._3{margin-left:-150.014400px;}
._a{margin-left:-148.521600px;}
._26{margin-left:-145.290240px;}
._c{margin-left:-134.192160px;}
._20{margin-left:-133.011360px;}
._11{margin-left:-115.522560px;}
._24{margin-left:-110.367360px;}
._25{margin-left:-109.224000px;}
._1d{margin-left:-102.529440px;}
._7{margin-left:-91.124880px;}
._1c{margin-left:-86.399760px;}
._1b{margin-left:-83.520000px;}
._13{margin-left:-81.351360px;}
._15{margin-left:-66.703680px;}
._14{margin-left:-49.123920px;}
._1a{margin-left:-31.530240px;}
._29{margin-left:-4.827600px;}
._28{margin-left:-2.946240px;}
._2{margin-left:-1.347840px;}
._2b{width:1.231680px;}
._2c{width:2.729280px;}
._2a{width:4.056480px;}
._32{width:5.760240px;}
._2e{width:6.785520px;}
._2f{width:8.399520px;}
._2d{width:9.583200px;}
._39{width:10.816560px;}
._33{width:12.071520px;}
._35{width:15.179040px;}
._38{width:16.517040px;}
._34{width:17.688960px;}
._30{width:19.123200px;}
._31{width:20.208960px;}
._37{width:21.240960px;}
._36{width:22.250880px;}
._43{width:23.496000px;}
._44{width:25.708800px;}
._3a{width:27.310320px;}
._3b{width:28.409280px;}
._3c{width:48.345840px;}
._42{width:51.632640px;}
._40{width:59.363280px;}
._3d{width:62.568720px;}
._3f{width:67.722720px;}
._41{width:70.428000px;}
._3e{width:90.536400px;}
.fc3{color:rgb(0,0,255);}
.fc2{color:rgb(0,128,0);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(23,23,23);}
.fs5{font-size:38.880000px;}
.fs4{font-size:41.760000px;}
.fs6{font-size:48.240000px;}
.fs3{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs0{font-size:84.240000px;}
.fs2{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.yb2{bottom:6.660000px;}
.yd6{bottom:6.690000px;}
.ye9{bottom:8.100000px;}
.yce{bottom:10.440000px;}
.yd5{bottom:10.470000px;}
.yc4{bottom:10.620000px;}
.yb5{bottom:17.280000px;}
.yfc{bottom:27.540000px;}
.yb4{bottom:27.720000px;}
.yff{bottom:27.750000px;}
.y108{bottom:38.340000px;}
.y107{bottom:38.520000px;}
.yfb{bottom:48.600000px;}
.y101{bottom:48.780000px;}
.yfe{bottom:48.810000px;}
.y103{bottom:49.680000px;}
.y104{bottom:50.400000px;}
.y6{bottom:59.760000px;}
.y106{bottom:69.840000px;}
.yeb{bottom:89.856000px;}
.y30{bottom:92.196000px;}
.yc0{bottom:92.376000px;}
.y82{bottom:95.256000px;}
.ya7{bottom:96.876000px;}
.y115{bottom:97.596000px;}
.y136{bottom:101.916000px;}
.y135{bottom:104.076000px;}
.y57{bottom:104.256000px;}
.yea{bottom:113.076000px;}
.y2f{bottom:113.256000px;}
.ybf{bottom:113.436000px;}
.y81{bottom:116.316000px;}
.ya6{bottom:117.936000px;}
.y114{bottom:118.476000px;}
.y134{bottom:125.136000px;}
.y56{bottom:125.316000px;}
.y2e{bottom:134.316000px;}
.ybe{bottom:134.496000px;}
.ye8{bottom:136.296000px;}
.y80{bottom:137.376000px;}
.ya5{bottom:138.996000px;}
.y113{bottom:139.536000px;}
.y133{bottom:146.196000px;}
.y55{bottom:146.376000px;}
.y2d{bottom:155.370000px;}
.ybd{bottom:155.550000px;}
.y7f{bottom:158.430000px;}
.ye7{bottom:159.690000px;}
.ya4{bottom:160.050000px;}
.y112{bottom:160.590000px;}
.y132{bottom:167.250000px;}
.y54{bottom:167.430000px;}
.y2c{bottom:176.430000px;}
.ybc{bottom:176.610000px;}
.y7e{bottom:179.490000px;}
.ya3{bottom:181.110000px;}
.y111{bottom:181.650000px;}
.ye6{bottom:188.130000px;}
.y131{bottom:188.310000px;}
.y53{bottom:188.490000px;}
.y2b{bottom:197.490000px;}
.ybb{bottom:197.670000px;}
.y7d{bottom:200.550000px;}
.ya2{bottom:202.170000px;}
.y110{bottom:202.710000px;}
.ye5{bottom:209.190000px;}
.y130{bottom:209.370000px;}
.y2a{bottom:218.550000px;}
.yba{bottom:218.730000px;}
.y7c{bottom:221.610000px;}
.ya1{bottom:223.230000px;}
.y10f{bottom:223.770000px;}
.ye4{bottom:230.250000px;}
.y12f{bottom:230.430000px;}
.y29{bottom:239.610000px;}
.yb9{bottom:239.790000px;}
.y7b{bottom:242.670000px;}
.ya0{bottom:244.290000px;}
.y10e{bottom:244.830000px;}
.ye3{bottom:251.310000px;}
.y12e{bottom:251.490000px;}
.y28{bottom:260.670000px;}
.yb8{bottom:260.850000px;}
.y7a{bottom:263.730000px;}
.y9f{bottom:265.350000px;}
.y10d{bottom:265.890000px;}
.ye2{bottom:272.370000px;}
.y12d{bottom:272.550000px;}
.y27{bottom:281.730000px;}
.y79{bottom:284.790000px;}
.y9e{bottom:286.410000px;}
.y10c{bottom:286.950000px;}
.ye1{bottom:293.430000px;}
.y12c{bottom:293.610000px;}
.y26{bottom:302.790000px;}
.y78{bottom:305.850000px;}
.y9d{bottom:307.470000px;}
.y10b{bottom:308.010000px;}
.ye0{bottom:314.490000px;}
.y12b{bottom:314.670000px;}
.y25{bottom:323.850000px;}
.y77{bottom:326.910000px;}
.y9c{bottom:328.575000px;}
.y10a{bottom:329.115000px;}
.ydf{bottom:332.895000px;}
.y12a{bottom:335.775000px;}
.y24{bottom:344.955000px;}
.y76{bottom:348.015000px;}
.y9b{bottom:349.635000px;}
.y109{bottom:350.175000px;}
.y129{bottom:356.835000px;}
.yde{bottom:358.455000px;}
.y105{bottom:365.295000px;}
.y23{bottom:366.015000px;}
.y75{bottom:369.075000px;}
.y9a{bottom:370.695000px;}
.y128{bottom:377.895000px;}
.ydd{bottom:384.015000px;}
.y22{bottom:387.075000px;}
.y74{bottom:390.135000px;}
.y99{bottom:391.755000px;}
.y127{bottom:398.955000px;}
.y21{bottom:408.135000px;}
.ydc{bottom:410.475000px;}
.y73{bottom:411.195000px;}
.y98{bottom:412.815000px;}
.y126{bottom:420.015000px;}
.y20{bottom:429.195000px;}
.y72{bottom:432.255000px;}
.y97{bottom:433.875000px;}
.ydb{bottom:436.035000px;}
.y125{bottom:441.075000px;}
.y1f{bottom:450.255000px;}
.y102{bottom:450.435000px;}
.y71{bottom:453.315000px;}
.y96{bottom:454.935000px;}
.yda{bottom:461.595000px;}
.y124{bottom:462.135000px;}
.y1e{bottom:471.315000px;}
.y70{bottom:474.375000px;}
.y95{bottom:475.995000px;}
.y123{bottom:483.195000px;}
.yd9{bottom:487.155000px;}
.y52{bottom:492.375000px;}
.y6f{bottom:495.435000px;}
.y94{bottom:497.055000px;}
.y122{bottom:504.255000px;}
.y51{bottom:513.435000px;}
.y1d{bottom:515.775000px;}
.y100{bottom:515.955000px;}
.y6e{bottom:516.495000px;}
.y93{bottom:518.115000px;}
.y121{bottom:525.315000px;}
.y50{bottom:534.495000px;}
.y6d{bottom:537.555000px;}
.yd8{bottom:538.995000px;}
.y92{bottom:539.175000px;}
.y1c{bottom:545.655000px;}
.y120{bottom:546.375000px;}
.y4f{bottom:555.555000px;}
.y6c{bottom:558.615000px;}
.y91{bottom:560.235000px;}
.yd7{bottom:564.555000px;}
.y1b{bottom:566.715000px;}
.y11f{bottom:567.435000px;}
.y4e{bottom:576.615000px;}
.y6b{bottom:579.675000px;}
.yfd{bottom:579.855000px;}
.y90{bottom:581.295000px;}
.y1a{bottom:587.775000px;}
.y11e{bottom:588.495000px;}
.yd4{bottom:590.835000px;}
.y4d{bottom:597.705000px;}
.y6a{bottom:600.765000px;}
.y8f{bottom:602.385000px;}
.y19{bottom:608.865000px;}
.yd3{bottom:616.425000px;}
.y11d{bottom:618.585000px;}
.y4c{bottom:618.765000px;}
.y69{bottom:621.825000px;}
.y8e{bottom:623.445000px;}
.y18{bottom:629.925000px;}
.y11c{bottom:639.645000px;}
.y4b{bottom:639.825000px;}
.yd2{bottom:641.985000px;}
.y68{bottom:642.885000px;}
.yfa{bottom:643.965000px;}
.y8d{bottom:644.505000px;}
.y17{bottom:650.985000px;}
.y11b{bottom:660.705000px;}
.y4a{bottom:660.885000px;}
.y67{bottom:663.945000px;}
.y8c{bottom:665.565000px;}
.yd1{bottom:667.545000px;}
.y16{bottom:672.045000px;}
.yb7{bottom:679.425000px;}
.y49{bottom:681.945000px;}
.y11a{bottom:682.665000px;}
.y66{bottom:685.005000px;}
.y8b{bottom:686.625000px;}
.y15{bottom:693.105000px;}
.yd0{bottom:693.825000px;}
.y48{bottom:703.005000px;}
.y119{bottom:704.445000px;}
.y65{bottom:706.065000px;}
.y8a{bottom:707.685000px;}
.y14{bottom:714.165000px;}
.yf9{bottom:714.525000px;}
.ycf{bottom:719.385000px;}
.y47{bottom:724.065000px;}
.y118{bottom:726.405000px;}
.yb6{bottom:726.765000px;}
.y64{bottom:727.125000px;}
.y89{bottom:728.745000px;}
.y13{bottom:735.225000px;}
.yf8{bottom:735.585000px;}
.ycd{bottom:744.945000px;}
.y46{bottom:745.125000px;}
.y117{bottom:748.005000px;}
.y88{bottom:749.805000px;}
.y12{bottom:756.285000px;}
.yf7{bottom:756.645000px;}
.y63{bottom:757.005000px;}
.y45{bottom:766.005000px;}
.y116{bottom:769.065000px;}
.ycc{bottom:770.505000px;}
.y87{bottom:770.865000px;}
.yb3{bottom:774.105000px;}
.y11{bottom:777.345000px;}
.yf6{bottom:777.705000px;}
.y62{bottom:778.065000px;}
.y44{bottom:787.065000px;}
.y86{bottom:791.925000px;}
.ycb{bottom:796.785000px;}
.y10{bottom:798.405000px;}
.yf5{bottom:798.765000px;}
.y61{bottom:799.125000px;}
.y43{bottom:808.125000px;}
.y85{bottom:812.985000px;}
.yf{bottom:819.465000px;}
.yf4{bottom:819.825000px;}
.y60{bottom:820.185000px;}
.yb1{bottom:821.625000px;}
.yca{bottom:822.345000px;}
.y42{bottom:829.185000px;}
.y84{bottom:834.045000px;}
.yf3{bottom:840.885000px;}
.y5f{bottom:841.245000px;}
.ye{bottom:842.685000px;}
.yc9{bottom:847.905000px;}
.y41{bottom:850.245000px;}
.y83{bottom:851.145000px;}
.yb0{bottom:853.305000px;}
.yf2{bottom:861.945000px;}
.y5e{bottom:862.350000px;}
.yd{bottom:869.010000px;}
.y40{bottom:871.350000px;}
.yc8{bottom:874.230000px;}
.yaf{bottom:874.410000px;}
.yf1{bottom:882.870000px;}
.y5d{bottom:883.410000px;}
.yc{bottom:890.070000px;}
.y3f{bottom:892.410000px;}
.yae{bottom:895.470000px;}
.yc7{bottom:899.790000px;}
.yf0{bottom:903.930000px;}
.y5c{bottom:904.470000px;}
.yb{bottom:911.130000px;}
.y3e{bottom:913.470000px;}
.yef{bottom:919.230000px;}
.yc6{bottom:925.350000px;}
.y5b{bottom:925.530000px;}
.ya{bottom:927.870000px;}
.y3d{bottom:934.530000px;}
.yee{bottom:942.450000px;}
.y5a{bottom:946.590000px;}
.y9{bottom:950.190000px;}
.yc5{bottom:950.910000px;}
.y3c{bottom:955.590000px;}
.yed{bottom:965.670000px;}
.y59{bottom:967.650000px;}
.y8{bottom:975.390000px;}
.y3b{bottom:976.650000px;}
.yc3{bottom:977.190000px;}
.y58{bottom:988.710000px;}
.yec{bottom:988.890000px;}
.y3a{bottom:997.710000px;}
.yc2{bottom:1002.750000px;}
.y7{bottom:1009.050000px;}
.yad{bottom:1009.770000px;}
.y39{bottom:1018.770000px;}
.yc1{bottom:1029.030000px;}
.yac{bottom:1030.830000px;}
.y38{bottom:1039.830000px;}
.y5{bottom:1049.190000px;}
.yab{bottom:1051.890000px;}
.y37{bottom:1060.890000px;}
.yaa{bottom:1072.950000px;}
.y4{bottom:1081.410000px;}
.y36{bottom:1081.950000px;}
.ya9{bottom:1094.010000px;}
.y35{bottom:1103.010000px;}
.y3{bottom:1113.630000px;}
.ya8{bottom:1115.070000px;}
.y34{bottom:1124.070000px;}
.y33{bottom:1145.160000px;}
.y2{bottom:1145.700000px;}
.y32{bottom:1173.060000px;}
.y1{bottom:1179.720000px;}
.y31{bottom:1193.220000px;}
.ha{height:21.060000px;}
.hc{height:21.096000px;}
.hd{height:22.500000px;}
.h7{height:38.671172px;}
.hb{height:42.120000px;}
.h8{height:52.260820px;}
.h9{height:59.439023px;}
.h5{height:61.189805px;}
.he{height:63.000000px;}
.h10{height:63.180000px;}
.hf{height:63.216000px;}
.h11{height:64.800000px;}
.h3{height:65.884219px;}
.h6{height:67.824844px;}
.h12{height:84.240000px;}
.h2{height:86.255508px;}
.h4{height:98.051133px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w6{width:54.900000px;}
.w19{width:62.460000px;}
.wd{width:85.140000px;}
.w9{width:86.400000px;}
.wa{width:94.356000px;}
.w17{width:98.640000px;}
.w4{width:98.676000px;}
.w18{width:103.356000px;}
.w16{width:115.416000px;}
.w3{width:122.220000px;}
.wc{width:127.656000px;}
.w15{width:143.496000px;}
.w7{width:156.810000px;}
.we{width:159.330000px;}
.w8{width:161.130000px;}
.w14{width:164.880000px;}
.w12{width:174.090000px;}
.w13{width:178.200000px;}
.wb{width:199.470000px;}
.w11{width:206.850000px;}
.wf{width:229.710000px;}
.w10{width:242.175000px;}
.w5{width:394.095000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xb{left:1.080000px;}
.x15{left:8.100000px;}
.x14{left:45.900000px;}
.x23{left:52.559987px;}
.x6{left:53.999987px;}
.x24{left:79.559987px;}
.x25{left:80.999987px;}
.x1d{left:102.456000px;}
.xa{left:108.216000px;}
.xf{left:122.795987px;}
.x5{left:156.449987px;}
.x10{left:193.710000px;}
.xc{left:232.770000px;}
.x16{left:245.370000px;}
.x1e{left:267.330000px;}
.x3{left:286.634987px;}
.x1a{left:288.075000px;}
.x8{left:314.354987px;}
.xd{left:333.615000px;}
.x2{left:350.534987px;}
.x11{left:352.875000px;}
.x17{left:373.035000px;}
.x1f{left:410.835000px;}
.x4{left:419.114987px;}
.x9{left:446.474987px;}
.x18{left:458.175000px;}
.x1{left:479.264987px;}
.x1b{left:494.925000px;}
.x12{left:516.345000px;}
.x20{left:526.245000px;}
.x13{left:605.085000px;}
.x19{left:617.505000px;}
.x21{left:624.885000px;}
.x1c{left:669.030000px;}
.x7{left:685.229987px;}
.x22{left:728.250000px;}
.xe{left:730.050000px;}
.x26{left:838.409987px;}
@media print{
.v2{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.120000pt;}
.ls30{letter-spacing:-0.693333pt;}
.ls4a{letter-spacing:-0.515200pt;}
.ls44{letter-spacing:-0.474133pt;}
.ls6{letter-spacing:-0.412267pt;}
.ls45{letter-spacing:-0.370667pt;}
.lsf{letter-spacing:-0.368000pt;}
.ls41{letter-spacing:-0.269333pt;}
.ls15{letter-spacing:-0.267733pt;}
.ls8{letter-spacing:-0.259733pt;}
.lsa{letter-spacing:-0.242133pt;}
.ls21{letter-spacing:-0.238933pt;}
.ls13{letter-spacing:-0.213867pt;}
.ls37{letter-spacing:-0.153067pt;}
.ls5{letter-spacing:-0.117867pt;}
.lsd{letter-spacing:-0.102933pt;}
.ls34{letter-spacing:-0.102400pt;}
.ls3e{letter-spacing:-0.097067pt;}
.ls16{letter-spacing:-0.095467pt;}
.ls40{letter-spacing:-0.061867pt;}
.ls32{letter-spacing:-0.057600pt;}
.ls10{letter-spacing:-0.051840pt;}
.ls43{letter-spacing:-0.049280pt;}
.lsb{letter-spacing:-0.046720pt;}
.ls35{letter-spacing:-0.044160pt;}
.ls2d{letter-spacing:-0.036480pt;}
.ls3f{letter-spacing:-0.028800pt;}
.ls3{letter-spacing:0.000000pt;}
.ls28{letter-spacing:0.022400pt;}
.ls4{letter-spacing:0.034560pt;}
.ls29{letter-spacing:0.053867pt;}
.ls1b{letter-spacing:0.057067pt;}
.lsc{letter-spacing:0.058667pt;}
.ls36{letter-spacing:0.083200pt;}
.ls2b{letter-spacing:0.089600pt;}
.ls48{letter-spacing:0.099733pt;}
.lse{letter-spacing:0.117760pt;}
.ls11{letter-spacing:0.124800pt;}
.ls18{letter-spacing:0.128000pt;}
.ls7{letter-spacing:0.133333pt;}
.ls2a{letter-spacing:0.154880pt;}
.ls42{letter-spacing:0.155733pt;}
.ls33{letter-spacing:0.160000pt;}
.ls1a{letter-spacing:0.165867pt;}
.ls9{letter-spacing:0.169067pt;}
.ls47{letter-spacing:0.186133pt;}
.ls25{letter-spacing:0.216533pt;}
.ls2f{letter-spacing:0.269333pt;}
.ls49{letter-spacing:0.272000pt;}
.ls2e{letter-spacing:0.317333pt;}
.ls31{letter-spacing:0.334933pt;}
.ls20{letter-spacing:0.349867pt;}
.ls0{letter-spacing:0.380160pt;}
.ls12{letter-spacing:0.426240pt;}
.ls2{letter-spacing:0.549120pt;}
.ls46{letter-spacing:0.805333pt;}
.ls1f{letter-spacing:1.434880pt;}
.ls23{letter-spacing:2.074880pt;}
.ls26{letter-spacing:3.354880pt;}
.ls39{letter-spacing:3.994880pt;}
.ls27{letter-spacing:7.194880pt;}
.ls22{letter-spacing:7.834880pt;}
.ls3d{letter-spacing:8.474880pt;}
.ls2c{letter-spacing:8.634880pt;}
.ls24{letter-spacing:10.832640pt;}
.ls3c{letter-spacing:11.034880pt;}
.ls3b{letter-spacing:11.674880pt;}
.ls3a{letter-spacing:14.874880pt;}
.ls38{letter-spacing:15.514880pt;}
.ls1{letter-spacing:33.872640pt;}
.ls1c{letter-spacing:36.432640pt;}
.ls1e{letter-spacing:37.840640pt;}
.ls14{letter-spacing:40.912640pt;}
.ls1d{letter-spacing:56.912640pt;}
.ls19{letter-spacing:92.731307pt;}
.ls17{letter-spacing:137.040640pt;}
.wse{word-spacing:-53.120000pt;}
.ws4{word-spacing:-19.237120pt;}
.ws0{word-spacing:-16.957440pt;}
.ws3{word-spacing:-13.306880pt;}
.ws1{word-spacing:-13.189013pt;}
.ws2{word-spacing:-12.894613pt;}
.ws28{word-spacing:-12.810453pt;}
.ws16{word-spacing:-12.340053pt;}
.ws12{word-spacing:-12.322453pt;}
.ws2b{word-spacing:-12.277120pt;}
.ws13{word-spacing:-12.274453pt;}
.ws14{word-spacing:-12.221653pt;}
.ws29{word-spacing:-12.191253pt;}
.wsd{word-spacing:-12.170987pt;}
.ws24{word-spacing:-12.160853pt;}
.wsb{word-spacing:-12.129920pt;}
.ws2a{word-spacing:-12.104853pt;}
.ws1d{word-spacing:-12.094720pt;}
.ws1e{word-spacing:-12.088320pt;}
.ws19{word-spacing:-12.062187pt;}
.ws1b{word-spacing:-12.058987pt;}
.ws18{word-spacing:-12.027520pt;}
.ws7{word-spacing:-12.005120pt;}
.ws21{word-spacing:-11.976320pt;}
.ws11{word-spacing:-11.968640pt;}
.ws1c{word-spacing:-11.960960pt;}
.ws25{word-spacing:-11.955840pt;}
.wsa{word-spacing:-11.953280pt;}
.ws17{word-spacing:-11.947520pt;}
.ws22{word-spacing:-11.943253pt;}
.ws10{word-spacing:-11.909653pt;}
.ws20{word-spacing:-11.908053pt;}
.ws1a{word-spacing:-11.902720pt;}
.ws8{word-spacing:-11.902187pt;}
.ws1f{word-spacing:-11.852053pt;}
.wsf{word-spacing:-11.766187pt;}
.wsc{word-spacing:-11.737387pt;}
.ws23{word-spacing:-11.735787pt;}
.ws27{word-spacing:-11.634453pt;}
.ws26{word-spacing:-11.530987pt;}
.ws2c{word-spacing:-11.489920pt;}
.ws15{word-spacing:-11.311787pt;}
.ws6{word-spacing:-8.389120pt;}
.ws5{word-spacing:-8.129387pt;}
.ws9{word-spacing:0.000000pt;}
._1e{margin-left:-473.705387pt;}
._1f{margin-left:-469.386240pt;}
._1{margin-left:-433.669547pt;}
._6{margin-left:-363.781547pt;}
._8{margin-left:-272.408107pt;}
._12{margin-left:-259.706880pt;}
._4{margin-left:-257.148587pt;}
._5{margin-left:-255.806720pt;}
._0{margin-left:-244.424960pt;}
._17{margin-left:-220.436480pt;}
._b{margin-left:-213.786880pt;}
._16{margin-left:-198.021333pt;}
._22{margin-left:-190.878720pt;}
._f{margin-left:-180.453547pt;}
._19{margin-left:-179.069440pt;}
._18{margin-left:-177.979307pt;}
._21{margin-left:-168.954880pt;}
._e{margin-left:-152.048640pt;}
._27{margin-left:-150.899200pt;}
._d{margin-left:-146.952960pt;}
._10{margin-left:-142.007467pt;}
._23{margin-left:-137.675947pt;}
._9{margin-left:-136.688640pt;}
._3{margin-left:-133.346133pt;}
._a{margin-left:-132.019200pt;}
._26{margin-left:-129.146880pt;}
._c{margin-left:-119.281920pt;}
._20{margin-left:-118.232320pt;}
._11{margin-left:-102.686720pt;}
._24{margin-left:-98.104320pt;}
._25{margin-left:-97.088000pt;}
._1d{margin-left:-91.137280pt;}
._7{margin-left:-80.999893pt;}
._1c{margin-left:-76.799787pt;}
._1b{margin-left:-74.240000pt;}
._13{margin-left:-72.312320pt;}
._15{margin-left:-59.292160pt;}
._14{margin-left:-43.665707pt;}
._1a{margin-left:-28.026880pt;}
._29{margin-left:-4.291200pt;}
._28{margin-left:-2.618880pt;}
._2{margin-left:-1.198080pt;}
._2b{width:1.094827pt;}
._2c{width:2.426027pt;}
._2a{width:3.605760pt;}
._32{width:5.120213pt;}
._2e{width:6.031573pt;}
._2f{width:7.466240pt;}
._2d{width:8.518400pt;}
._39{width:9.614720pt;}
._33{width:10.730240pt;}
._35{width:13.492480pt;}
._38{width:14.681813pt;}
._34{width:15.723520pt;}
._30{width:16.998400pt;}
._31{width:17.963520pt;}
._37{width:18.880853pt;}
._36{width:19.778560pt;}
._43{width:20.885333pt;}
._44{width:22.852267pt;}
._3a{width:24.275840pt;}
._3b{width:25.252693pt;}
._3c{width:42.974080pt;}
._42{width:45.895680pt;}
._40{width:52.767360pt;}
._3d{width:55.616640pt;}
._3f{width:60.197973pt;}
._41{width:62.602667pt;}
._3e{width:80.476800pt;}
.fs5{font-size:34.560000pt;}
.fs4{font-size:37.120000pt;}
.fs6{font-size:42.880000pt;}
.fs3{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs0{font-size:74.880000pt;}
.fs2{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.yb2{bottom:5.920000pt;}
.yd6{bottom:5.946667pt;}
.ye9{bottom:7.200000pt;}
.yce{bottom:9.280000pt;}
.yd5{bottom:9.306667pt;}
.yc4{bottom:9.440000pt;}
.yb5{bottom:15.360000pt;}
.yfc{bottom:24.480000pt;}
.yb4{bottom:24.640000pt;}
.yff{bottom:24.666667pt;}
.y108{bottom:34.080000pt;}
.y107{bottom:34.240000pt;}
.yfb{bottom:43.200000pt;}
.y101{bottom:43.360000pt;}
.yfe{bottom:43.386667pt;}
.y103{bottom:44.160000pt;}
.y104{bottom:44.800000pt;}
.y6{bottom:53.120000pt;}
.y106{bottom:62.080000pt;}
.yeb{bottom:79.872000pt;}
.y30{bottom:81.952000pt;}
.yc0{bottom:82.112000pt;}
.y82{bottom:84.672000pt;}
.ya7{bottom:86.112000pt;}
.y115{bottom:86.752000pt;}
.y136{bottom:90.592000pt;}
.y135{bottom:92.512000pt;}
.y57{bottom:92.672000pt;}
.yea{bottom:100.512000pt;}
.y2f{bottom:100.672000pt;}
.ybf{bottom:100.832000pt;}
.y81{bottom:103.392000pt;}
.ya6{bottom:104.832000pt;}
.y114{bottom:105.312000pt;}
.y134{bottom:111.232000pt;}
.y56{bottom:111.392000pt;}
.y2e{bottom:119.392000pt;}
.ybe{bottom:119.552000pt;}
.ye8{bottom:121.152000pt;}
.y80{bottom:122.112000pt;}
.ya5{bottom:123.552000pt;}
.y113{bottom:124.032000pt;}
.y133{bottom:129.952000pt;}
.y55{bottom:130.112000pt;}
.y2d{bottom:138.106667pt;}
.ybd{bottom:138.266667pt;}
.y7f{bottom:140.826667pt;}
.ye7{bottom:141.946667pt;}
.ya4{bottom:142.266667pt;}
.y112{bottom:142.746667pt;}
.y132{bottom:148.666667pt;}
.y54{bottom:148.826667pt;}
.y2c{bottom:156.826667pt;}
.ybc{bottom:156.986667pt;}
.y7e{bottom:159.546667pt;}
.ya3{bottom:160.986667pt;}
.y111{bottom:161.466667pt;}
.ye6{bottom:167.226667pt;}
.y131{bottom:167.386667pt;}
.y53{bottom:167.546667pt;}
.y2b{bottom:175.546667pt;}
.ybb{bottom:175.706667pt;}
.y7d{bottom:178.266667pt;}
.ya2{bottom:179.706667pt;}
.y110{bottom:180.186667pt;}
.ye5{bottom:185.946667pt;}
.y130{bottom:186.106667pt;}
.y2a{bottom:194.266667pt;}
.yba{bottom:194.426667pt;}
.y7c{bottom:196.986667pt;}
.ya1{bottom:198.426667pt;}
.y10f{bottom:198.906667pt;}
.ye4{bottom:204.666667pt;}
.y12f{bottom:204.826667pt;}
.y29{bottom:212.986667pt;}
.yb9{bottom:213.146667pt;}
.y7b{bottom:215.706667pt;}
.ya0{bottom:217.146667pt;}
.y10e{bottom:217.626667pt;}
.ye3{bottom:223.386667pt;}
.y12e{bottom:223.546667pt;}
.y28{bottom:231.706667pt;}
.yb8{bottom:231.866667pt;}
.y7a{bottom:234.426667pt;}
.y9f{bottom:235.866667pt;}
.y10d{bottom:236.346667pt;}
.ye2{bottom:242.106667pt;}
.y12d{bottom:242.266667pt;}
.y27{bottom:250.426667pt;}
.y79{bottom:253.146667pt;}
.y9e{bottom:254.586667pt;}
.y10c{bottom:255.066667pt;}
.ye1{bottom:260.826667pt;}
.y12c{bottom:260.986667pt;}
.y26{bottom:269.146667pt;}
.y78{bottom:271.866667pt;}
.y9d{bottom:273.306667pt;}
.y10b{bottom:273.786667pt;}
.ye0{bottom:279.546667pt;}
.y12b{bottom:279.706667pt;}
.y25{bottom:287.866667pt;}
.y77{bottom:290.586667pt;}
.y9c{bottom:292.066667pt;}
.y10a{bottom:292.546667pt;}
.ydf{bottom:295.906667pt;}
.y12a{bottom:298.466667pt;}
.y24{bottom:306.626667pt;}
.y76{bottom:309.346667pt;}
.y9b{bottom:310.786667pt;}
.y109{bottom:311.266667pt;}
.y129{bottom:317.186667pt;}
.yde{bottom:318.626667pt;}
.y105{bottom:324.706667pt;}
.y23{bottom:325.346667pt;}
.y75{bottom:328.066667pt;}
.y9a{bottom:329.506667pt;}
.y128{bottom:335.906667pt;}
.ydd{bottom:341.346667pt;}
.y22{bottom:344.066667pt;}
.y74{bottom:346.786667pt;}
.y99{bottom:348.226667pt;}
.y127{bottom:354.626667pt;}
.y21{bottom:362.786667pt;}
.ydc{bottom:364.866667pt;}
.y73{bottom:365.506667pt;}
.y98{bottom:366.946667pt;}
.y126{bottom:373.346667pt;}
.y20{bottom:381.506667pt;}
.y72{bottom:384.226667pt;}
.y97{bottom:385.666667pt;}
.ydb{bottom:387.586667pt;}
.y125{bottom:392.066667pt;}
.y1f{bottom:400.226667pt;}
.y102{bottom:400.386667pt;}
.y71{bottom:402.946667pt;}
.y96{bottom:404.386667pt;}
.yda{bottom:410.306667pt;}
.y124{bottom:410.786667pt;}
.y1e{bottom:418.946667pt;}
.y70{bottom:421.666667pt;}
.y95{bottom:423.106667pt;}
.y123{bottom:429.506667pt;}
.yd9{bottom:433.026667pt;}
.y52{bottom:437.666667pt;}
.y6f{bottom:440.386667pt;}
.y94{bottom:441.826667pt;}
.y122{bottom:448.226667pt;}
.y51{bottom:456.386667pt;}
.y1d{bottom:458.466667pt;}
.y100{bottom:458.626667pt;}
.y6e{bottom:459.106667pt;}
.y93{bottom:460.546667pt;}
.y121{bottom:466.946667pt;}
.y50{bottom:475.106667pt;}
.y6d{bottom:477.826667pt;}
.yd8{bottom:479.106667pt;}
.y92{bottom:479.266667pt;}
.y1c{bottom:485.026667pt;}
.y120{bottom:485.666667pt;}
.y4f{bottom:493.826667pt;}
.y6c{bottom:496.546667pt;}
.y91{bottom:497.986667pt;}
.yd7{bottom:501.826667pt;}
.y1b{bottom:503.746667pt;}
.y11f{bottom:504.386667pt;}
.y4e{bottom:512.546667pt;}
.y6b{bottom:515.266667pt;}
.yfd{bottom:515.426667pt;}
.y90{bottom:516.706667pt;}
.y1a{bottom:522.466667pt;}
.y11e{bottom:523.106667pt;}
.yd4{bottom:525.186667pt;}
.y4d{bottom:531.293333pt;}
.y6a{bottom:534.013333pt;}
.y8f{bottom:535.453333pt;}
.y19{bottom:541.213333pt;}
.yd3{bottom:547.933333pt;}
.y11d{bottom:549.853333pt;}
.y4c{bottom:550.013333pt;}
.y69{bottom:552.733333pt;}
.y8e{bottom:554.173333pt;}
.y18{bottom:559.933333pt;}
.y11c{bottom:568.573333pt;}
.y4b{bottom:568.733333pt;}
.yd2{bottom:570.653333pt;}
.y68{bottom:571.453333pt;}
.yfa{bottom:572.413333pt;}
.y8d{bottom:572.893333pt;}
.y17{bottom:578.653333pt;}
.y11b{bottom:587.293333pt;}
.y4a{bottom:587.453333pt;}
.y67{bottom:590.173333pt;}
.y8c{bottom:591.613333pt;}
.yd1{bottom:593.373333pt;}
.y16{bottom:597.373333pt;}
.yb7{bottom:603.933333pt;}
.y49{bottom:606.173333pt;}
.y11a{bottom:606.813333pt;}
.y66{bottom:608.893333pt;}
.y8b{bottom:610.333333pt;}
.y15{bottom:616.093333pt;}
.yd0{bottom:616.733333pt;}
.y48{bottom:624.893333pt;}
.y119{bottom:626.173333pt;}
.y65{bottom:627.613333pt;}
.y8a{bottom:629.053333pt;}
.y14{bottom:634.813333pt;}
.yf9{bottom:635.133333pt;}
.ycf{bottom:639.453333pt;}
.y47{bottom:643.613333pt;}
.y118{bottom:645.693333pt;}
.yb6{bottom:646.013333pt;}
.y64{bottom:646.333333pt;}
.y89{bottom:647.773333pt;}
.y13{bottom:653.533333pt;}
.yf8{bottom:653.853333pt;}
.ycd{bottom:662.173333pt;}
.y46{bottom:662.333333pt;}
.y117{bottom:664.893333pt;}
.y88{bottom:666.493333pt;}
.y12{bottom:672.253333pt;}
.yf7{bottom:672.573333pt;}
.y63{bottom:672.893333pt;}
.y45{bottom:680.893333pt;}
.y116{bottom:683.613333pt;}
.ycc{bottom:684.893333pt;}
.y87{bottom:685.213333pt;}
.yb3{bottom:688.093333pt;}
.y11{bottom:690.973333pt;}
.yf6{bottom:691.293333pt;}
.y62{bottom:691.613333pt;}
.y44{bottom:699.613333pt;}
.y86{bottom:703.933333pt;}
.ycb{bottom:708.253333pt;}
.y10{bottom:709.693333pt;}
.yf5{bottom:710.013333pt;}
.y61{bottom:710.333333pt;}
.y43{bottom:718.333333pt;}
.y85{bottom:722.653333pt;}
.yf{bottom:728.413333pt;}
.yf4{bottom:728.733333pt;}
.y60{bottom:729.053333pt;}
.yb1{bottom:730.333333pt;}
.yca{bottom:730.973333pt;}
.y42{bottom:737.053333pt;}
.y84{bottom:741.373333pt;}
.yf3{bottom:747.453333pt;}
.y5f{bottom:747.773333pt;}
.ye{bottom:749.053333pt;}
.yc9{bottom:753.693333pt;}
.y41{bottom:755.773333pt;}
.y83{bottom:756.573333pt;}
.yb0{bottom:758.493333pt;}
.yf2{bottom:766.173333pt;}
.y5e{bottom:766.533333pt;}
.yd{bottom:772.453333pt;}
.y40{bottom:774.533333pt;}
.yc8{bottom:777.093333pt;}
.yaf{bottom:777.253333pt;}
.yf1{bottom:784.773333pt;}
.y5d{bottom:785.253333pt;}
.yc{bottom:791.173333pt;}
.y3f{bottom:793.253333pt;}
.yae{bottom:795.973333pt;}
.yc7{bottom:799.813333pt;}
.yf0{bottom:803.493333pt;}
.y5c{bottom:803.973333pt;}
.yb{bottom:809.893333pt;}
.y3e{bottom:811.973333pt;}
.yef{bottom:817.093333pt;}
.yc6{bottom:822.533333pt;}
.y5b{bottom:822.693333pt;}
.ya{bottom:824.773333pt;}
.y3d{bottom:830.693333pt;}
.yee{bottom:837.733333pt;}
.y5a{bottom:841.413333pt;}
.y9{bottom:844.613333pt;}
.yc5{bottom:845.253333pt;}
.y3c{bottom:849.413333pt;}
.yed{bottom:858.373333pt;}
.y59{bottom:860.133333pt;}
.y8{bottom:867.013333pt;}
.y3b{bottom:868.133333pt;}
.yc3{bottom:868.613333pt;}
.y58{bottom:878.853333pt;}
.yec{bottom:879.013333pt;}
.y3a{bottom:886.853333pt;}
.yc2{bottom:891.333333pt;}
.y7{bottom:896.933333pt;}
.yad{bottom:897.573333pt;}
.y39{bottom:905.573333pt;}
.yc1{bottom:914.693333pt;}
.yac{bottom:916.293333pt;}
.y38{bottom:924.293333pt;}
.y5{bottom:932.613333pt;}
.yab{bottom:935.013333pt;}
.y37{bottom:943.013333pt;}
.yaa{bottom:953.733333pt;}
.y4{bottom:961.253333pt;}
.y36{bottom:961.733333pt;}
.ya9{bottom:972.453333pt;}
.y35{bottom:980.453333pt;}
.y3{bottom:989.893333pt;}
.ya8{bottom:991.173333pt;}
.y34{bottom:999.173333pt;}
.y33{bottom:1017.920000pt;}
.y2{bottom:1018.400000pt;}
.y32{bottom:1042.720000pt;}
.y1{bottom:1048.640000pt;}
.y31{bottom:1060.640000pt;}
.ha{height:18.720000pt;}
.hc{height:18.752000pt;}
.hd{height:20.000000pt;}
.h7{height:34.374375pt;}
.hb{height:37.440000pt;}
.h8{height:46.454062pt;}
.h9{height:52.834688pt;}
.h5{height:54.390938pt;}
.he{height:56.000000pt;}
.h10{height:56.160000pt;}
.hf{height:56.192000pt;}
.h11{height:57.600000pt;}
.h3{height:58.563750pt;}
.h6{height:60.288750pt;}
.h12{height:74.880000pt;}
.h2{height:76.671562pt;}
.h4{height:87.156562pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w6{width:48.800000pt;}
.w19{width:55.520000pt;}
.wd{width:75.680000pt;}
.w9{width:76.800000pt;}
.wa{width:83.872000pt;}
.w17{width:87.680000pt;}
.w4{width:87.712000pt;}
.w18{width:91.872000pt;}
.w16{width:102.592000pt;}
.w3{width:108.640000pt;}
.wc{width:113.472000pt;}
.w15{width:127.552000pt;}
.w7{width:139.386667pt;}
.we{width:141.626667pt;}
.w8{width:143.226667pt;}
.w14{width:146.560000pt;}
.w12{width:154.746667pt;}
.w13{width:158.400000pt;}
.wb{width:177.306667pt;}
.w11{width:183.866667pt;}
.wf{width:204.186667pt;}
.w10{width:215.266667pt;}
.w5{width:350.306667pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xb{left:0.960000pt;}
.x15{left:7.200000pt;}
.x14{left:40.800000pt;}
.x23{left:46.719988pt;}
.x6{left:47.999988pt;}
.x24{left:70.719988pt;}
.x25{left:71.999988pt;}
.x1d{left:91.072000pt;}
.xa{left:96.192000pt;}
.xf{left:109.151988pt;}
.x5{left:139.066655pt;}
.x10{left:172.186667pt;}
.xc{left:206.906667pt;}
.x16{left:218.106667pt;}
.x1e{left:237.626667pt;}
.x3{left:254.786655pt;}
.x1a{left:256.066667pt;}
.x8{left:279.426655pt;}
.xd{left:296.546667pt;}
.x2{left:311.586655pt;}
.x11{left:313.666667pt;}
.x17{left:331.586667pt;}
.x1f{left:365.186667pt;}
.x4{left:372.546655pt;}
.x9{left:396.866655pt;}
.x18{left:407.266667pt;}
.x1{left:426.013322pt;}
.x1b{left:439.933333pt;}
.x12{left:458.973333pt;}
.x20{left:467.773333pt;}
.x13{left:537.853333pt;}
.x19{left:548.893333pt;}
.x21{left:555.453333pt;}
.x1c{left:594.693333pt;}
.x7{left:609.093322pt;}
.x22{left:647.333333pt;}
.xe{left:648.933333pt;}
.x26{left:745.253322pt;}
}




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