
    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_32db936a5f39cb22d134bf2b.woff')format("woff");}.ff1{font-family:ff1;line-height:1.202148;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_3c3c05efd4b9f0fac927cfc3.woff')format("woff");}.ff2{font-family:ff2;line-height:1.172852;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_7134559ffee2b3ccea4f1472.woff')format("woff");}.ff3{font-family:ff3;line-height:0.983398;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_a63489f3b752833d310d2d45.woff')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_d18861fe735072766e52e0f0.woff')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_145c7cbeaa1a3912e2a2a4a4.woff')format("woff");}.ff6{font-family:ff6;line-height:0.766602;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_381d7a868d05fa6f7708e03a.woff')format("woff");}.ff7{font-family:ff7;line-height:0.853027;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_130301694ab792f9947e2b7d.woff')format("woff");}.ff8{font-family:ff8;line-height:0.739746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.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;}
.v3{vertical-align:-2.880000px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:20.880000px;}
.v1{vertical-align:23.760000px;}
.ls12{letter-spacing:-0.960000px;}
.ls35{letter-spacing:-0.786000px;}
.ls15{letter-spacing:-0.579600px;}
.ls2e{letter-spacing:-0.544800px;}
.ls6{letter-spacing:-0.463800px;}
.ls33{letter-spacing:-0.431400px;}
.ls1e{letter-spacing:-0.414000px;}
.ls13{letter-spacing:-0.326400px;}
.ls14{letter-spacing:-0.240600px;}
.ls17{letter-spacing:-0.228000px;}
.lsd{letter-spacing:-0.226800px;}
.ls9{letter-spacing:-0.175800px;}
.ls5{letter-spacing:-0.132600px;}
.lsa{letter-spacing:-0.115800px;}
.ls1f{letter-spacing:-0.107400px;}
.lsf{letter-spacing:-0.069600px;}
.ls1b{letter-spacing:-0.064800px;}
.lse{letter-spacing:-0.058320px;}
.ls34{letter-spacing:-0.038160px;}
.ls16{letter-spacing:-0.032400px;}
.ls3{letter-spacing:0.000000px;}
.ls2a{letter-spacing:0.023760px;}
.ls4{letter-spacing:0.038880px;}
.ls39{letter-spacing:0.060600px;}
.ls26{letter-spacing:0.109440px;}
.ls10{letter-spacing:0.140400px;}
.ls7{letter-spacing:0.150000px;}
.ls3a{letter-spacing:0.169200px;}
.ls18{letter-spacing:0.174000px;}
.ls2{letter-spacing:0.174240px;}
.ls38{letter-spacing:0.174960px;}
.ls2d{letter-spacing:0.180000px;}
.ls19{letter-spacing:0.186600px;}
.ls8{letter-spacing:0.210000px;}
.ls2b{letter-spacing:0.274800px;}
.ls1d{letter-spacing:0.288600px;}
.ls11{letter-spacing:0.306000px;}
.ls31{letter-spacing:0.309000px;}
.ls21{letter-spacing:0.319680px;}
.ls23{letter-spacing:0.393600px;}
.ls27{letter-spacing:0.417600px;}
.ls25{letter-spacing:0.447840px;}
.ls2f{letter-spacing:0.468000px;}
.ls2c{letter-spacing:0.479400px;}
.ls20{letter-spacing:0.479520px;}
.ls29{letter-spacing:0.617760px;}
.ls1c{letter-spacing:0.623520px;}
.ls24{letter-spacing:0.667440px;}
.lsb{letter-spacing:0.744000px;}
.ls30{letter-spacing:0.816480px;}
.ls1a{letter-spacing:0.888000px;}
.ls0{letter-spacing:0.894240px;}
.ls28{letter-spacing:2.106720px;}
.ls22{letter-spacing:5.706720px;}
.ls37{letter-spacing:12.186720px;}
.ls32{letter-spacing:17.946720px;}
.lsc{letter-spacing:21.546720px;}
.ls1{letter-spacing:38.106720px;}
.ls36{letter-spacing:42.426720px;}
.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;}
}
.ws0{word-spacing:-19.077120px;}
.ws3{word-spacing:-14.970240px;}
.ws1{word-spacing:-14.837640px;}
.ws2{word-spacing:-14.506440px;}
.ws12{word-spacing:-13.814760px;}
.ws15{word-spacing:-13.811760px;}
.ws11{word-spacing:-13.780560px;}
.wsd{word-spacing:-13.692360px;}
.ws16{word-spacing:-13.674960px;}
.wsa{word-spacing:-13.646160px;}
.ws10{word-spacing:-13.529520px;}
.ws8{word-spacing:-13.505760px;}
.wsc{word-spacing:-13.473360px;}
.ws14{word-spacing:-13.467600px;}
.wse{word-spacing:-13.447440px;}
.ws13{word-spacing:-13.440960px;}
.ws9{word-spacing:-13.436160px;}
.wsf{word-spacing:-13.398360px;}
.ws6{word-spacing:-13.389960px;}
.wsb{word-spacing:-13.265160px;}
.ws4{word-spacing:-9.437760px;}
.ws5{word-spacing:-8.786880px;}
.ws7{word-spacing:0.000000px;}
._1d{margin-left:-533.278560px;}
._1e{margin-left:-528.059520px;}
._1{margin-left:-487.878240px;}
._6{margin-left:-409.254240px;}
._8{margin-left:-306.459120px;}
._4{margin-left:-289.292160px;}
._5{margin-left:-287.782560px;}
._0{margin-left:-274.978080px;}
._b{margin-left:-240.510240px;}
._12{margin-left:-233.850240px;}
._17{margin-left:-229.991040px;}
._16{margin-left:-222.405360px;}
._f{margin-left:-202.866240px;}
._18{margin-left:-200.514720px;}
._21{margin-left:-196.738560px;}
._20{margin-left:-190.074240px;}
._e{margin-left:-171.054720px;}
._26{margin-left:-169.761600px;}
._d{margin-left:-165.322080px;}
._9{margin-left:-153.774720px;}
._3{margin-left:-150.014400px;}
._a{margin-left:-148.521600px;}
._25{margin-left:-145.392000px;}
._10{margin-left:-142.046400px;}
._c{margin-left:-134.192160px;}
._1f{margin-left:-133.011360px;}
._11{margin-left:-116.242560px;}
._24{margin-left:-109.266240px;}
._1c{margin-left:-102.349440px;}
._7{margin-left:-91.124880px;}
._1b{margin-left:-86.399760px;}
._1a{margin-left:-83.520000px;}
._13{margin-left:-82.330560px;}
._22{margin-left:-80.367360px;}
._15{margin-left:-66.703680px;}
._14{margin-left:-49.492560px;}
._23{margin-left:-35.130240px;}
._19{margin-left:-32.468640px;}
._29{margin-left:-4.292160px;}
._27{margin-left:-2.946240px;}
._2{margin-left:-1.347840px;}
._28{width:1.317240px;}
._2b{width:3.189480px;}
._2d{width:4.209120px;}
._30{width:5.227200px;}
._33{width:6.511320px;}
._2c{width:8.426160px;}
._2e{width:9.681120px;}
._2f{width:10.871280px;}
._34{width:12.250800px;}
._35{width:14.631120px;}
._37{width:15.654600px;}
._32{width:17.210880px;}
._31{width:18.406080px;}
._36{width:19.422000px;}
._39{width:21.168120px;}
._38{width:22.230720px;}
._42{width:32.387400px;}
._43{width:33.465600px;}
._3e{width:35.377920px;}
._2a{width:37.102080px;}
._46{width:41.399040px;}
._45{width:42.706800px;}
._3f{width:45.477360px;}
._3a{width:48.166560px;}
._3b{width:49.361760px;}
._3c{width:51.931440px;}
._44{width:54.809760px;}
._41{width:151.013520px;}
._40{width:152.146440px;}
._3d{width:218.841120px;}
.fc2{color:transparent;}
.fc3{color:rgb(34,34,34);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(23,23,23);}
.fs2{font-size:36.000000px;}
.fs6{font-size:38.880000px;}
.fs5{font-size:41.760000px;}
.fs7{font-size:48.240000px;}
.fs4{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs0{font-size:84.240000px;}
.fs3{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.y109{bottom:3.960000px;}
.y13e{bottom:5.220000px;}
.y7a{bottom:6.660000px;}
.y143{bottom:7.200000px;}
.y139{bottom:7.560000px;}
.y7e{bottom:7.920000px;}
.yec{bottom:7.965000px;}
.y7c{bottom:8.100000px;}
.y10e{bottom:8.280000px;}
.y99{bottom:9.180000px;}
.yb8{bottom:9.360000px;}
.y128{bottom:10.260000px;}
.y125{bottom:10.440000px;}
.y123{bottom:10.620000px;}
.y13b{bottom:10.980000px;}
.y93{bottom:17.100000px;}
.y95{bottom:17.280000px;}
.y9d{bottom:17.310000px;}
.y141{bottom:17.820000px;}
.ycf{bottom:22.320000px;}
.yba{bottom:22.500000px;}
.yc7{bottom:26.280000px;}
.yc2{bottom:26.325000px;}
.ycb{bottom:26.460000px;}
.y92{bottom:27.720000px;}
.y9c{bottom:27.750000px;}
.y142{bottom:28.260000px;}
.ybd{bottom:36.900000px;}
.yc6{bottom:47.340000px;}
.yc1{bottom:47.385000px;}
.y6{bottom:61.380000px;}
.y31{bottom:92.160000px;}
.y78{bottom:95.220000px;}
.y13f{bottom:100.440000px;}
.yb6{bottom:100.980000px;}
.ye9{bottom:103.500000px;}
.y8f{bottom:104.220000px;}
.y153{bottom:104.400000px;}
.y30{bottom:113.220000px;}
.y13d{bottom:115.740000px;}
.y77{bottom:116.280000px;}
.y16b{bottom:120.600000px;}
.y10c{bottom:121.320000px;}
.yb5{bottom:122.040000px;}
.ye8{bottom:124.560000px;}
.y8e{bottom:125.280000px;}
.y152{bottom:125.460000px;}
.y2f{bottom:134.280000px;}
.y13c{bottom:135.900000px;}
.y76{bottom:137.340000px;}
.yb4{bottom:143.100000px;}
.ye7{bottom:145.620000px;}
.y8d{bottom:146.340000px;}
.y151{bottom:146.520000px;}
.y13a{bottom:155.010000px;}
.y2e{bottom:155.370000px;}
.y75{bottom:158.430000px;}
.yb3{bottom:164.190000px;}
.ye6{bottom:166.710000px;}
.y8c{bottom:167.430000px;}
.y150{bottom:167.610000px;}
.y2d{bottom:176.430000px;}
.y74{bottom:179.490000px;}
.yb2{bottom:185.250000px;}
.ye5{bottom:187.770000px;}
.y138{bottom:187.950000px;}
.y8b{bottom:188.490000px;}
.y14f{bottom:188.670000px;}
.y10b{bottom:189.390000px;}
.y2c{bottom:197.490000px;}
.y73{bottom:200.550000px;}
.yb1{bottom:206.310000px;}
.ye4{bottom:208.830000px;}
.y8a{bottom:209.550000px;}
.y14e{bottom:209.730000px;}
.y2b{bottom:218.550000px;}
.y137{bottom:221.070000px;}
.y72{bottom:221.610000px;}
.y10a{bottom:223.590000px;}
.yb0{bottom:227.370000px;}
.ye3{bottom:229.890000px;}
.y89{bottom:230.610000px;}
.y14d{bottom:230.790000px;}
.y2a{bottom:239.610000px;}
.y136{bottom:242.130000px;}
.y71{bottom:242.670000px;}
.yaf{bottom:248.430000px;}
.ye2{bottom:250.950000px;}
.y88{bottom:251.670000px;}
.y14c{bottom:251.850000px;}
.y108{bottom:257.610000px;}
.y29{bottom:260.670000px;}
.y135{bottom:263.190000px;}
.y70{bottom:263.730000px;}
.yae{bottom:269.490000px;}
.ye1{bottom:272.010000px;}
.y87{bottom:272.730000px;}
.y28{bottom:281.730000px;}
.y134{bottom:284.250000px;}
.y16a{bottom:284.790000px;}
.yad{bottom:290.550000px;}
.y107{bottom:290.730000px;}
.ye0{bottom:293.070000px;}
.y6f{bottom:293.790000px;}
.y27{bottom:302.790000px;}
.y133{bottom:305.310000px;}
.y169{bottom:305.850000px;}
.yac{bottom:311.610000px;}
.y106{bottom:311.790000px;}
.ydf{bottom:314.130000px;}
.y6e{bottom:314.850000px;}
.y26{bottom:323.850000px;}
.y132{bottom:326.370000px;}
.y168{bottom:326.910000px;}
.yab{bottom:332.670000px;}
.y105{bottom:332.850000px;}
.yde{bottom:335.190000px;}
.y6d{bottom:335.910000px;}
.y25{bottom:344.910000px;}
.y131{bottom:347.430000px;}
.y167{bottom:347.970000px;}
.yaa{bottom:353.730000px;}
.y104{bottom:353.910000px;}
.ydd{bottom:356.250000px;}
.y6c{bottom:356.970000px;}
.y24{bottom:365.970000px;}
.y130{bottom:368.490000px;}
.y166{bottom:369.030000px;}
.ya9{bottom:374.790000px;}
.y103{bottom:374.970000px;}
.ydc{bottom:377.310000px;}
.y6b{bottom:378.030000px;}
.y23{bottom:387.030000px;}
.y12f{bottom:389.550000px;}
.y165{bottom:390.090000px;}
.ya8{bottom:395.850000px;}
.y102{bottom:396.030000px;}
.ydb{bottom:398.370000px;}
.y6a{bottom:399.090000px;}
.y22{bottom:408.135000px;}
.y12e{bottom:410.655000px;}
.y164{bottom:411.195000px;}
.ya7{bottom:416.955000px;}
.y101{bottom:417.135000px;}
.yda{bottom:419.475000px;}
.y69{bottom:420.195000px;}
.y21{bottom:429.195000px;}
.y12d{bottom:431.715000px;}
.y163{bottom:432.255000px;}
.ya6{bottom:438.015000px;}
.y100{bottom:438.195000px;}
.yd9{bottom:440.535000px;}
.y68{bottom:441.255000px;}
.y20{bottom:450.255000px;}
.y12c{bottom:452.775000px;}
.y162{bottom:453.315000px;}
.ya5{bottom:459.075000px;}
.yff{bottom:459.255000px;}
.yd8{bottom:461.595000px;}
.y67{bottom:462.315000px;}
.y1f{bottom:471.315000px;}
.y12b{bottom:473.835000px;}
.y161{bottom:474.375000px;}
.ya4{bottom:480.135000px;}
.yfe{bottom:480.315000px;}
.yd7{bottom:482.655000px;}
.y66{bottom:483.375000px;}
.y86{bottom:488.775000px;}
.y12a{bottom:488.955000px;}
.y1e{bottom:492.375000px;}
.y160{bottom:495.435000px;}
.ya3{bottom:501.195000px;}
.yfd{bottom:501.375000px;}
.yd6{bottom:503.715000px;}
.y65{bottom:504.435000px;}
.y129{bottom:508.035000px;}
.y1d{bottom:513.435000px;}
.y15f{bottom:516.495000px;}
.y85{bottom:517.575000px;}
.ya2{bottom:522.255000px;}
.yfc{bottom:522.435000px;}
.yd5{bottom:524.775000px;}
.y64{bottom:525.495000px;}
.y127{bottom:527.115000px;}
.y1c{bottom:534.495000px;}
.y15e{bottom:537.555000px;}
.yd4{bottom:545.835000px;}
.y84{bottom:546.375000px;}
.y63{bottom:546.555000px;}
.ya1{bottom:552.315000px;}
.yfb{bottom:552.495000px;}
.y1b{bottom:555.555000px;}
.y15d{bottom:558.615000px;}
.y126{bottom:558.795000px;}
.yd3{bottom:563.115000px;}
.y62{bottom:567.615000px;}
.ya0{bottom:573.375000px;}
.yfa{bottom:573.555000px;}
.y83{bottom:575.355000px;}
.y4f{bottom:576.615000px;}
.y1a{bottom:578.955000px;}
.y15c{bottom:579.675000px;}
.y61{bottom:588.675000px;}
.y124{bottom:591.195000px;}
.yd1{bottom:592.095000px;}
.y9f{bottom:594.435000px;}
.yf9{bottom:594.615000px;}
.y4e{bottom:597.675000px;}
.y15b{bottom:600.735000px;}
.y82{bottom:604.155000px;}
.y19{bottom:608.835000px;}
.y60{bottom:609.735000px;}
.y9e{bottom:615.495000px;}
.yf8{bottom:615.675000px;}
.y4d{bottom:618.735000px;}
.yd2{bottom:620.895000px;}
.y15a{bottom:621.795000px;}
.y122{bottom:623.235000px;}
.y18{bottom:629.895000px;}
.y5f{bottom:630.795000px;}
.y9b{bottom:632.775000px;}
.y81{bottom:633.135000px;}
.yf7{bottom:636.735000px;}
.y4c{bottom:639.795000px;}
.yce{bottom:649.905000px;}
.y17{bottom:650.985000px;}
.y5e{bottom:651.885000px;}
.yf6{bottom:657.825000px;}
.y4b{bottom:660.885000px;}
.y80{bottom:661.965000px;}
.y121{bottom:662.505000px;}
.y14b{bottom:667.005000px;}
.y16{bottom:672.045000px;}
.y5d{bottom:672.945000px;}
.yd0{bottom:678.705000px;}
.yf5{bottom:678.885000px;}
.y9a{bottom:680.325000px;}
.y4a{bottom:681.945000px;}
.y120{bottom:683.565000px;}
.y14a{bottom:688.965000px;}
.y7f{bottom:690.945000px;}
.y15{bottom:693.105000px;}
.y5c{bottom:694.005000px;}
.yf4{bottom:699.945000px;}
.y49{bottom:703.005000px;}
.y11f{bottom:704.625000px;}
.yca{bottom:707.505000px;}
.y149{bottom:710.745000px;}
.y14{bottom:714.165000px;}
.y5b{bottom:715.065000px;}
.y7d{bottom:719.745000px;}
.yf3{bottom:721.005000px;}
.y48{bottom:724.065000px;}
.y11e{bottom:725.685000px;}
.y98{bottom:727.665000px;}
.y148{bottom:732.525000px;}
.y13{bottom:735.225000px;}
.y5a{bottom:736.125000px;}
.ycd{bottom:736.485000px;}
.yf2{bottom:742.065000px;}
.y47{bottom:745.125000px;}
.y11d{bottom:746.745000px;}
.y7b{bottom:748.545000px;}
.y147{bottom:754.305000px;}
.y12{bottom:756.285000px;}
.y97{bottom:756.465000px;}
.y59{bottom:757.005000px;}
.yf1{bottom:763.125000px;}
.ycc{bottom:765.285000px;}
.y46{bottom:766.005000px;}
.y11c{bottom:767.805000px;}
.y146{bottom:776.085000px;}
.y11{bottom:777.345000px;}
.y79{bottom:777.525000px;}
.y58{bottom:778.065000px;}
.yf0{bottom:780.585000px;}
.y45{bottom:787.065000px;}
.y11b{bottom:788.865000px;}
.yc5{bottom:794.265000px;}
.y145{bottom:797.865000px;}
.y10{bottom:798.405000px;}
.y57{bottom:799.125000px;}
.y96{bottom:803.805000px;}
.y44{bottom:808.125000px;}
.yef{bottom:809.385000px;}
.y11a{bottom:809.925000px;}
.yf{bottom:819.465000px;}
.y144{bottom:819.645000px;}
.y56{bottom:820.185000px;}
.yc9{bottom:823.065000px;}
.y43{bottom:829.185000px;}
.y119{bottom:830.985000px;}
.yee{bottom:838.185000px;}
.ye{bottom:840.525000px;}
.y55{bottom:841.245000px;}
.y140{bottom:841.605000px;}
.y42{bottom:850.245000px;}
.y94{bottom:851.145000px;}
.yc8{bottom:852.045000px;}
.y54{bottom:862.305000px;}
.yd{bottom:863.745000px;}
.yed{bottom:867.165000px;}
.y41{bottom:871.305000px;}
.y118{bottom:873.105000px;}
.yc0{bottom:880.845000px;}
.y53{bottom:883.365000px;}
.yc{bottom:890.025000px;}
.y40{bottom:892.365000px;}
.y117{bottom:894.165000px;}
.yeb{bottom:895.965000px;}
.y91{bottom:898.710000px;}
.y52{bottom:904.470000px;}
.yc4{bottom:909.690000px;}
.yb{bottom:911.130000px;}
.y3f{bottom:913.470000px;}
.y116{bottom:915.270000px;}
.yea{bottom:924.990000px;}
.y51{bottom:925.530000px;}
.ya{bottom:927.870000px;}
.y3e{bottom:934.530000px;}
.y115{bottom:936.150000px;}
.yc3{bottom:938.670000px;}
.y90{bottom:946.050000px;}
.y50{bottom:946.590000px;}
.y9{bottom:950.190000px;}
.y3d{bottom:955.590000px;}
.y114{bottom:957.210000px;}
.ybc{bottom:967.470000px;}
.y159{bottom:967.650000px;}
.y8{bottom:975.390000px;}
.y3c{bottom:976.650000px;}
.y113{bottom:978.270000px;}
.y158{bottom:988.710000px;}
.ybf{bottom:996.450000px;}
.y3b{bottom:997.710000px;}
.y112{bottom:999.330000px;}
.y7{bottom:1009.050000px;}
.y157{bottom:1009.770000px;}
.y3a{bottom:1018.770000px;}
.y111{bottom:1022.010000px;}
.ybe{bottom:1025.250000px;}
.y156{bottom:1030.830000px;}
.y39{bottom:1039.830000px;}
.y5{bottom:1049.190000px;}
.y155{bottom:1051.890000px;}
.yb9{bottom:1054.050000px;}
.y110{bottom:1056.210000px;}
.y38{bottom:1060.890000px;}
.y154{bottom:1072.950000px;}
.y4{bottom:1081.410000px;}
.y37{bottom:1081.950000px;}
.ybb{bottom:1083.030000px;}
.y10f{bottom:1090.230000px;}
.y36{bottom:1103.010000px;}
.yb7{bottom:1111.830000px;}
.y3{bottom:1113.630000px;}
.y35{bottom:1124.070000px;}
.y10d{bottom:1124.250000px;}
.y34{bottom:1145.130000px;}
.y2{bottom:1145.670000px;}
.y33{bottom:1173.060000px;}
.y1{bottom:1179.720000px;}
.y32{bottom:1193.220000px;}
.h16{height:18.180000px;}
.h17{height:18.360000px;}
.h20{height:18.396000px;}
.h21{height:19.440000px;}
.ha{height:21.060000px;}
.hc{height:23.580000px;}
.hd{height:23.616000px;}
.hb{height:23.760000px;}
.h15{height:23.796000px;}
.h1e{height:25.740000px;}
.h18{height:27.036000px;}
.h1d{height:30.960000px;}
.h1a{height:31.320000px;}
.h1c{height:31.680000px;}
.h19{height:31.896000px;}
.h1f{height:32.220000px;}
.h7{height:38.671172px;}
.he{height:42.120000px;}
.hf{height:42.156000px;}
.h22{height:43.380000px;}
.h8{height:48.088125px;}
.h14{height:52.380000px;}
.h10{height:52.560000px;}
.h9{height:59.439023px;}
.h1b{height:59.551172px;}
.h5{height:61.189805px;}
.h3{height:65.884219px;}
.h6{height:67.824844px;}
.h11{height:81.360000px;}
.h12{height:81.396000px;}
.h13{height:81.540000px;}
.h2{height:86.255508px;}
.h4{height:98.051133px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w1a{width:79.776000px;}
.w13{width:88.596000px;}
.w14{width:90.720000px;}
.w10{width:91.800000px;}
.w1d{width:94.680000px;}
.w15{width:94.860000px;}
.w16{width:94.896000px;}
.w12{width:95.040000px;}
.w11{width:95.076000px;}
.w1c{width:95.796000px;}
.wf{width:98.136000px;}
.wa{width:111.960000px;}
.w9{width:112.356000px;}
.w25{width:115.740000px;}
.w1f{width:121.176000px;}
.w1b{width:126.900000px;}
.w20{width:126.936000px;}
.w6{width:137.556000px;}
.w23{width:147.636000px;}
.w18{width:147.780000px;}
.w26{width:148.176000px;}
.w19{width:152.670000px;}
.wd{width:157.860000px;}
.w21{width:158.610000px;}
.we{width:169.230000px;}
.w22{width:194.250000px;}
.wb{width:201.090000px;}
.w5{width:201.270000px;}
.wc{width:202.530000px;}
.w4{width:218.010000px;}
.w3{width:219.855000px;}
.w7{width:305.490000px;}
.w8{width:404.535000px;}
.w27{width:700.665000px;}
.w1e{width:701.205000px;}
.w24{width:751.680000px;}
.w17{width:754.200000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xa{left:3.060000px;}
.x19{left:7.020000px;}
.x12{left:9.720000px;}
.x6{left:53.999987px;}
.x8{left:70.199987px;}
.x7{left:75.599987px;}
.x2a{left:80.999987px;}
.x14{left:91.116000px;}
.x1f{left:95.976000px;}
.x2b{left:108.035987px;}
.xc{left:123.696000px;}
.xf{left:131.436000px;}
.x1a{left:158.790000px;}
.x5{left:176.969987px;}
.x24{left:192.630000px;}
.x27{left:212.790000px;}
.x9{left:227.190000px;}
.x20{left:244.470000px;}
.x15{left:249.870000px;}
.x3{left:272.234987px;}
.x25{left:320.295000px;}
.xd{left:325.695000px;}
.x13{left:333.435000px;}
.x1b{left:346.035000px;}
.x2{left:350.534987px;}
.x28{left:361.695000px;}
.x21{left:397.875000px;}
.x4{left:419.114987px;}
.x1c{left:441.615000px;}
.xb{left:447.945000px;}
.xe{left:463.965000px;}
.x1{left:479.264987px;}
.x29{left:510.585000px;}
.x16{left:518.685000px;}
.x10{left:536.685000px;}
.x22{left:605.985000px;}
.x17{left:611.205000px;}
.x1d{left:633.030000px;}
.x11{left:649.950000px;}
.x26{left:674.790000px;}
.x23{left:702.510000px;}
.x18{left:707.010000px;}
.x1e{left:728.790000px;}
.x2c{left:838.439987px;}
@media print{
.v2{vertical-align:-18.560000pt;}
.v3{vertical-align:-2.560000pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:18.560000pt;}
.v1{vertical-align:21.120000pt;}
.ls12{letter-spacing:-0.853333pt;}
.ls35{letter-spacing:-0.698667pt;}
.ls15{letter-spacing:-0.515200pt;}
.ls2e{letter-spacing:-0.484267pt;}
.ls6{letter-spacing:-0.412267pt;}
.ls33{letter-spacing:-0.383467pt;}
.ls1e{letter-spacing:-0.368000pt;}
.ls13{letter-spacing:-0.290133pt;}
.ls14{letter-spacing:-0.213867pt;}
.ls17{letter-spacing:-0.202667pt;}
.lsd{letter-spacing:-0.201600pt;}
.ls9{letter-spacing:-0.156267pt;}
.ls5{letter-spacing:-0.117867pt;}
.lsa{letter-spacing:-0.102933pt;}
.ls1f{letter-spacing:-0.095467pt;}
.lsf{letter-spacing:-0.061867pt;}
.ls1b{letter-spacing:-0.057600pt;}
.lse{letter-spacing:-0.051840pt;}
.ls34{letter-spacing:-0.033920pt;}
.ls16{letter-spacing:-0.028800pt;}
.ls3{letter-spacing:0.000000pt;}
.ls2a{letter-spacing:0.021120pt;}
.ls4{letter-spacing:0.034560pt;}
.ls39{letter-spacing:0.053867pt;}
.ls26{letter-spacing:0.097280pt;}
.ls10{letter-spacing:0.124800pt;}
.ls7{letter-spacing:0.133333pt;}
.ls3a{letter-spacing:0.150400pt;}
.ls18{letter-spacing:0.154667pt;}
.ls2{letter-spacing:0.154880pt;}
.ls38{letter-spacing:0.155520pt;}
.ls2d{letter-spacing:0.160000pt;}
.ls19{letter-spacing:0.165867pt;}
.ls8{letter-spacing:0.186667pt;}
.ls2b{letter-spacing:0.244267pt;}
.ls1d{letter-spacing:0.256533pt;}
.ls11{letter-spacing:0.272000pt;}
.ls31{letter-spacing:0.274667pt;}
.ls21{letter-spacing:0.284160pt;}
.ls23{letter-spacing:0.349867pt;}
.ls27{letter-spacing:0.371200pt;}
.ls25{letter-spacing:0.398080pt;}
.ls2f{letter-spacing:0.416000pt;}
.ls2c{letter-spacing:0.426133pt;}
.ls20{letter-spacing:0.426240pt;}
.ls29{letter-spacing:0.549120pt;}
.ls1c{letter-spacing:0.554240pt;}
.ls24{letter-spacing:0.593280pt;}
.lsb{letter-spacing:0.661333pt;}
.ls30{letter-spacing:0.725760pt;}
.ls1a{letter-spacing:0.789333pt;}
.ls0{letter-spacing:0.794880pt;}
.ls28{letter-spacing:1.872640pt;}
.ls22{letter-spacing:5.072640pt;}
.ls37{letter-spacing:10.832640pt;}
.ls32{letter-spacing:15.952640pt;}
.lsc{letter-spacing:19.152640pt;}
.ls1{letter-spacing:33.872640pt;}
.ls36{letter-spacing:37.712640pt;}
.ws0{word-spacing:-16.957440pt;}
.ws3{word-spacing:-13.306880pt;}
.ws1{word-spacing:-13.189013pt;}
.ws2{word-spacing:-12.894613pt;}
.ws12{word-spacing:-12.279787pt;}
.ws15{word-spacing:-12.277120pt;}
.ws11{word-spacing:-12.249387pt;}
.wsd{word-spacing:-12.170987pt;}
.ws16{word-spacing:-12.155520pt;}
.wsa{word-spacing:-12.129920pt;}
.ws10{word-spacing:-12.026240pt;}
.ws8{word-spacing:-12.005120pt;}
.wsc{word-spacing:-11.976320pt;}
.ws14{word-spacing:-11.971200pt;}
.wse{word-spacing:-11.953280pt;}
.ws13{word-spacing:-11.947520pt;}
.ws9{word-spacing:-11.943253pt;}
.wsf{word-spacing:-11.909653pt;}
.ws6{word-spacing:-11.902187pt;}
.wsb{word-spacing:-11.791253pt;}
.ws4{word-spacing:-8.389120pt;}
.ws5{word-spacing:-7.810560pt;}
.ws7{word-spacing:0.000000pt;}
._1d{margin-left:-474.025387pt;}
._1e{margin-left:-469.386240pt;}
._1{margin-left:-433.669547pt;}
._6{margin-left:-363.781547pt;}
._8{margin-left:-272.408107pt;}
._4{margin-left:-257.148587pt;}
._5{margin-left:-255.806720pt;}
._0{margin-left:-244.424960pt;}
._b{margin-left:-213.786880pt;}
._12{margin-left:-207.866880pt;}
._17{margin-left:-204.436480pt;}
._16{margin-left:-197.693653pt;}
._f{margin-left:-180.325547pt;}
._18{margin-left:-178.235307pt;}
._21{margin-left:-174.878720pt;}
._20{margin-left:-168.954880pt;}
._e{margin-left:-152.048640pt;}
._26{margin-left:-150.899200pt;}
._d{margin-left:-146.952960pt;}
._9{margin-left:-136.688640pt;}
._3{margin-left:-133.346133pt;}
._a{margin-left:-132.019200pt;}
._25{margin-left:-129.237333pt;}
._10{margin-left:-126.263467pt;}
._c{margin-left:-119.281920pt;}
._1f{margin-left:-118.232320pt;}
._11{margin-left:-103.326720pt;}
._24{margin-left:-97.125547pt;}
._1c{margin-left:-90.977280pt;}
._7{margin-left:-80.999893pt;}
._1b{margin-left:-76.799787pt;}
._1a{margin-left:-74.240000pt;}
._13{margin-left:-73.182720pt;}
._22{margin-left:-71.437653pt;}
._15{margin-left:-59.292160pt;}
._14{margin-left:-43.993387pt;}
._23{margin-left:-31.226880pt;}
._19{margin-left:-28.861013pt;}
._29{margin-left:-3.815253pt;}
._27{margin-left:-2.618880pt;}
._2{margin-left:-1.198080pt;}
._28{width:1.170880pt;}
._2b{width:2.835093pt;}
._2d{width:3.741440pt;}
._30{width:4.646400pt;}
._33{width:5.787840pt;}
._2c{width:7.489920pt;}
._2e{width:8.605440pt;}
._2f{width:9.663360pt;}
._34{width:10.889600pt;}
._35{width:13.005440pt;}
._37{width:13.915200pt;}
._32{width:15.298560pt;}
._31{width:16.360960pt;}
._36{width:17.264000pt;}
._39{width:18.816107pt;}
._38{width:19.760640pt;}
._42{width:28.788800pt;}
._43{width:29.747200pt;}
._3e{width:31.447040pt;}
._2a{width:32.979627pt;}
._46{width:36.799147pt;}
._45{width:37.961600pt;}
._3f{width:40.424320pt;}
._3a{width:42.814720pt;}
._3b{width:43.877120pt;}
._3c{width:46.161280pt;}
._44{width:48.719787pt;}
._41{width:134.234240pt;}
._40{width:135.241280pt;}
._3d{width:194.525440pt;}
.fs2{font-size:32.000000pt;}
.fs6{font-size:34.560000pt;}
.fs5{font-size:37.120000pt;}
.fs7{font-size:42.880000pt;}
.fs4{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs0{font-size:74.880000pt;}
.fs3{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.y109{bottom:3.520000pt;}
.y13e{bottom:4.640000pt;}
.y7a{bottom:5.920000pt;}
.y143{bottom:6.400000pt;}
.y139{bottom:6.720000pt;}
.y7e{bottom:7.040000pt;}
.yec{bottom:7.080000pt;}
.y7c{bottom:7.200000pt;}
.y10e{bottom:7.360000pt;}
.y99{bottom:8.160000pt;}
.yb8{bottom:8.320000pt;}
.y128{bottom:9.120000pt;}
.y125{bottom:9.280000pt;}
.y123{bottom:9.440000pt;}
.y13b{bottom:9.760000pt;}
.y93{bottom:15.200000pt;}
.y95{bottom:15.360000pt;}
.y9d{bottom:15.386667pt;}
.y141{bottom:15.840000pt;}
.ycf{bottom:19.840000pt;}
.yba{bottom:20.000000pt;}
.yc7{bottom:23.360000pt;}
.yc2{bottom:23.400000pt;}
.ycb{bottom:23.520000pt;}
.y92{bottom:24.640000pt;}
.y9c{bottom:24.666667pt;}
.y142{bottom:25.120000pt;}
.ybd{bottom:32.800000pt;}
.yc6{bottom:42.080000pt;}
.yc1{bottom:42.120000pt;}
.y6{bottom:54.560000pt;}
.y31{bottom:81.920000pt;}
.y78{bottom:84.640000pt;}
.y13f{bottom:89.280000pt;}
.yb6{bottom:89.760000pt;}
.ye9{bottom:92.000000pt;}
.y8f{bottom:92.640000pt;}
.y153{bottom:92.800000pt;}
.y30{bottom:100.640000pt;}
.y13d{bottom:102.880000pt;}
.y77{bottom:103.360000pt;}
.y16b{bottom:107.200000pt;}
.y10c{bottom:107.840000pt;}
.yb5{bottom:108.480000pt;}
.ye8{bottom:110.720000pt;}
.y8e{bottom:111.360000pt;}
.y152{bottom:111.520000pt;}
.y2f{bottom:119.360000pt;}
.y13c{bottom:120.800000pt;}
.y76{bottom:122.080000pt;}
.yb4{bottom:127.200000pt;}
.ye7{bottom:129.440000pt;}
.y8d{bottom:130.080000pt;}
.y151{bottom:130.240000pt;}
.y13a{bottom:137.786667pt;}
.y2e{bottom:138.106667pt;}
.y75{bottom:140.826667pt;}
.yb3{bottom:145.946667pt;}
.ye6{bottom:148.186667pt;}
.y8c{bottom:148.826667pt;}
.y150{bottom:148.986667pt;}
.y2d{bottom:156.826667pt;}
.y74{bottom:159.546667pt;}
.yb2{bottom:164.666667pt;}
.ye5{bottom:166.906667pt;}
.y138{bottom:167.066667pt;}
.y8b{bottom:167.546667pt;}
.y14f{bottom:167.706667pt;}
.y10b{bottom:168.346667pt;}
.y2c{bottom:175.546667pt;}
.y73{bottom:178.266667pt;}
.yb1{bottom:183.386667pt;}
.ye4{bottom:185.626667pt;}
.y8a{bottom:186.266667pt;}
.y14e{bottom:186.426667pt;}
.y2b{bottom:194.266667pt;}
.y137{bottom:196.506667pt;}
.y72{bottom:196.986667pt;}
.y10a{bottom:198.746667pt;}
.yb0{bottom:202.106667pt;}
.ye3{bottom:204.346667pt;}
.y89{bottom:204.986667pt;}
.y14d{bottom:205.146667pt;}
.y2a{bottom:212.986667pt;}
.y136{bottom:215.226667pt;}
.y71{bottom:215.706667pt;}
.yaf{bottom:220.826667pt;}
.ye2{bottom:223.066667pt;}
.y88{bottom:223.706667pt;}
.y14c{bottom:223.866667pt;}
.y108{bottom:228.986667pt;}
.y29{bottom:231.706667pt;}
.y135{bottom:233.946667pt;}
.y70{bottom:234.426667pt;}
.yae{bottom:239.546667pt;}
.ye1{bottom:241.786667pt;}
.y87{bottom:242.426667pt;}
.y28{bottom:250.426667pt;}
.y134{bottom:252.666667pt;}
.y16a{bottom:253.146667pt;}
.yad{bottom:258.266667pt;}
.y107{bottom:258.426667pt;}
.ye0{bottom:260.506667pt;}
.y6f{bottom:261.146667pt;}
.y27{bottom:269.146667pt;}
.y133{bottom:271.386667pt;}
.y169{bottom:271.866667pt;}
.yac{bottom:276.986667pt;}
.y106{bottom:277.146667pt;}
.ydf{bottom:279.226667pt;}
.y6e{bottom:279.866667pt;}
.y26{bottom:287.866667pt;}
.y132{bottom:290.106667pt;}
.y168{bottom:290.586667pt;}
.yab{bottom:295.706667pt;}
.y105{bottom:295.866667pt;}
.yde{bottom:297.946667pt;}
.y6d{bottom:298.586667pt;}
.y25{bottom:306.586667pt;}
.y131{bottom:308.826667pt;}
.y167{bottom:309.306667pt;}
.yaa{bottom:314.426667pt;}
.y104{bottom:314.586667pt;}
.ydd{bottom:316.666667pt;}
.y6c{bottom:317.306667pt;}
.y24{bottom:325.306667pt;}
.y130{bottom:327.546667pt;}
.y166{bottom:328.026667pt;}
.ya9{bottom:333.146667pt;}
.y103{bottom:333.306667pt;}
.ydc{bottom:335.386667pt;}
.y6b{bottom:336.026667pt;}
.y23{bottom:344.026667pt;}
.y12f{bottom:346.266667pt;}
.y165{bottom:346.746667pt;}
.ya8{bottom:351.866667pt;}
.y102{bottom:352.026667pt;}
.ydb{bottom:354.106667pt;}
.y6a{bottom:354.746667pt;}
.y22{bottom:362.786667pt;}
.y12e{bottom:365.026667pt;}
.y164{bottom:365.506667pt;}
.ya7{bottom:370.626667pt;}
.y101{bottom:370.786667pt;}
.yda{bottom:372.866667pt;}
.y69{bottom:373.506667pt;}
.y21{bottom:381.506667pt;}
.y12d{bottom:383.746667pt;}
.y163{bottom:384.226667pt;}
.ya6{bottom:389.346667pt;}
.y100{bottom:389.506667pt;}
.yd9{bottom:391.586667pt;}
.y68{bottom:392.226667pt;}
.y20{bottom:400.226667pt;}
.y12c{bottom:402.466667pt;}
.y162{bottom:402.946667pt;}
.ya5{bottom:408.066667pt;}
.yff{bottom:408.226667pt;}
.yd8{bottom:410.306667pt;}
.y67{bottom:410.946667pt;}
.y1f{bottom:418.946667pt;}
.y12b{bottom:421.186667pt;}
.y161{bottom:421.666667pt;}
.ya4{bottom:426.786667pt;}
.yfe{bottom:426.946667pt;}
.yd7{bottom:429.026667pt;}
.y66{bottom:429.666667pt;}
.y86{bottom:434.466667pt;}
.y12a{bottom:434.626667pt;}
.y1e{bottom:437.666667pt;}
.y160{bottom:440.386667pt;}
.ya3{bottom:445.506667pt;}
.yfd{bottom:445.666667pt;}
.yd6{bottom:447.746667pt;}
.y65{bottom:448.386667pt;}
.y129{bottom:451.586667pt;}
.y1d{bottom:456.386667pt;}
.y15f{bottom:459.106667pt;}
.y85{bottom:460.066667pt;}
.ya2{bottom:464.226667pt;}
.yfc{bottom:464.386667pt;}
.yd5{bottom:466.466667pt;}
.y64{bottom:467.106667pt;}
.y127{bottom:468.546667pt;}
.y1c{bottom:475.106667pt;}
.y15e{bottom:477.826667pt;}
.yd4{bottom:485.186667pt;}
.y84{bottom:485.666667pt;}
.y63{bottom:485.826667pt;}
.ya1{bottom:490.946667pt;}
.yfb{bottom:491.106667pt;}
.y1b{bottom:493.826667pt;}
.y15d{bottom:496.546667pt;}
.y126{bottom:496.706667pt;}
.yd3{bottom:500.546667pt;}
.y62{bottom:504.546667pt;}
.ya0{bottom:509.666667pt;}
.yfa{bottom:509.826667pt;}
.y83{bottom:511.426667pt;}
.y4f{bottom:512.546667pt;}
.y1a{bottom:514.626667pt;}
.y15c{bottom:515.266667pt;}
.y61{bottom:523.266667pt;}
.y124{bottom:525.506667pt;}
.yd1{bottom:526.306667pt;}
.y9f{bottom:528.386667pt;}
.yf9{bottom:528.546667pt;}
.y4e{bottom:531.266667pt;}
.y15b{bottom:533.986667pt;}
.y82{bottom:537.026667pt;}
.y19{bottom:541.186667pt;}
.y60{bottom:541.986667pt;}
.y9e{bottom:547.106667pt;}
.yf8{bottom:547.266667pt;}
.y4d{bottom:549.986667pt;}
.yd2{bottom:551.906667pt;}
.y15a{bottom:552.706667pt;}
.y122{bottom:553.986667pt;}
.y18{bottom:559.906667pt;}
.y5f{bottom:560.706667pt;}
.y9b{bottom:562.466667pt;}
.y81{bottom:562.786667pt;}
.yf7{bottom:565.986667pt;}
.y4c{bottom:568.706667pt;}
.yce{bottom:577.693333pt;}
.y17{bottom:578.653333pt;}
.y5e{bottom:579.453333pt;}
.yf6{bottom:584.733333pt;}
.y4b{bottom:587.453333pt;}
.y80{bottom:588.413333pt;}
.y121{bottom:588.893333pt;}
.y14b{bottom:592.893333pt;}
.y16{bottom:597.373333pt;}
.y5d{bottom:598.173333pt;}
.yd0{bottom:603.293333pt;}
.yf5{bottom:603.453333pt;}
.y9a{bottom:604.733333pt;}
.y4a{bottom:606.173333pt;}
.y120{bottom:607.613333pt;}
.y14a{bottom:612.413333pt;}
.y7f{bottom:614.173333pt;}
.y15{bottom:616.093333pt;}
.y5c{bottom:616.893333pt;}
.yf4{bottom:622.173333pt;}
.y49{bottom:624.893333pt;}
.y11f{bottom:626.333333pt;}
.yca{bottom:628.893333pt;}
.y149{bottom:631.773333pt;}
.y14{bottom:634.813333pt;}
.y5b{bottom:635.613333pt;}
.y7d{bottom:639.773333pt;}
.yf3{bottom:640.893333pt;}
.y48{bottom:643.613333pt;}
.y11e{bottom:645.053333pt;}
.y98{bottom:646.813333pt;}
.y148{bottom:651.133333pt;}
.y13{bottom:653.533333pt;}
.y5a{bottom:654.333333pt;}
.ycd{bottom:654.653333pt;}
.yf2{bottom:659.613333pt;}
.y47{bottom:662.333333pt;}
.y11d{bottom:663.773333pt;}
.y7b{bottom:665.373333pt;}
.y147{bottom:670.493333pt;}
.y12{bottom:672.253333pt;}
.y97{bottom:672.413333pt;}
.y59{bottom:672.893333pt;}
.yf1{bottom:678.333333pt;}
.ycc{bottom:680.253333pt;}
.y46{bottom:680.893333pt;}
.y11c{bottom:682.493333pt;}
.y146{bottom:689.853333pt;}
.y11{bottom:690.973333pt;}
.y79{bottom:691.133333pt;}
.y58{bottom:691.613333pt;}
.yf0{bottom:693.853333pt;}
.y45{bottom:699.613333pt;}
.y11b{bottom:701.213333pt;}
.yc5{bottom:706.013333pt;}
.y145{bottom:709.213333pt;}
.y10{bottom:709.693333pt;}
.y57{bottom:710.333333pt;}
.y96{bottom:714.493333pt;}
.y44{bottom:718.333333pt;}
.yef{bottom:719.453333pt;}
.y11a{bottom:719.933333pt;}
.yf{bottom:728.413333pt;}
.y144{bottom:728.573333pt;}
.y56{bottom:729.053333pt;}
.yc9{bottom:731.613333pt;}
.y43{bottom:737.053333pt;}
.y119{bottom:738.653333pt;}
.yee{bottom:745.053333pt;}
.ye{bottom:747.133333pt;}
.y55{bottom:747.773333pt;}
.y140{bottom:748.093333pt;}
.y42{bottom:755.773333pt;}
.y94{bottom:756.573333pt;}
.yc8{bottom:757.373333pt;}
.y54{bottom:766.493333pt;}
.yd{bottom:767.773333pt;}
.yed{bottom:770.813333pt;}
.y41{bottom:774.493333pt;}
.y118{bottom:776.093333pt;}
.yc0{bottom:782.973333pt;}
.y53{bottom:785.213333pt;}
.yc{bottom:791.133333pt;}
.y40{bottom:793.213333pt;}
.y117{bottom:794.813333pt;}
.yeb{bottom:796.413333pt;}
.y91{bottom:798.853333pt;}
.y52{bottom:803.973333pt;}
.yc4{bottom:808.613333pt;}
.yb{bottom:809.893333pt;}
.y3f{bottom:811.973333pt;}
.y116{bottom:813.573333pt;}
.yea{bottom:822.213333pt;}
.y51{bottom:822.693333pt;}
.ya{bottom:824.773333pt;}
.y3e{bottom:830.693333pt;}
.y115{bottom:832.133333pt;}
.yc3{bottom:834.373333pt;}
.y90{bottom:840.933333pt;}
.y50{bottom:841.413333pt;}
.y9{bottom:844.613333pt;}
.y3d{bottom:849.413333pt;}
.y114{bottom:850.853333pt;}
.ybc{bottom:859.973333pt;}
.y159{bottom:860.133333pt;}
.y8{bottom:867.013333pt;}
.y3c{bottom:868.133333pt;}
.y113{bottom:869.573333pt;}
.y158{bottom:878.853333pt;}
.ybf{bottom:885.733333pt;}
.y3b{bottom:886.853333pt;}
.y112{bottom:888.293333pt;}
.y7{bottom:896.933333pt;}
.y157{bottom:897.573333pt;}
.y3a{bottom:905.573333pt;}
.y111{bottom:908.453333pt;}
.ybe{bottom:911.333333pt;}
.y156{bottom:916.293333pt;}
.y39{bottom:924.293333pt;}
.y5{bottom:932.613333pt;}
.y155{bottom:935.013333pt;}
.yb9{bottom:936.933333pt;}
.y110{bottom:938.853333pt;}
.y38{bottom:943.013333pt;}
.y154{bottom:953.733333pt;}
.y4{bottom:961.253333pt;}
.y37{bottom:961.733333pt;}
.ybb{bottom:962.693333pt;}
.y10f{bottom:969.093333pt;}
.y36{bottom:980.453333pt;}
.yb7{bottom:988.293333pt;}
.y3{bottom:989.893333pt;}
.y35{bottom:999.173333pt;}
.y10d{bottom:999.333333pt;}
.y34{bottom:1017.893333pt;}
.y2{bottom:1018.373333pt;}
.y33{bottom:1042.720000pt;}
.y1{bottom:1048.640000pt;}
.y32{bottom:1060.640000pt;}
.h16{height:16.160000pt;}
.h17{height:16.320000pt;}
.h20{height:16.352000pt;}
.h21{height:17.280000pt;}
.ha{height:18.720000pt;}
.hc{height:20.960000pt;}
.hd{height:20.992000pt;}
.hb{height:21.120000pt;}
.h15{height:21.152000pt;}
.h1e{height:22.880000pt;}
.h18{height:24.032000pt;}
.h1d{height:27.520000pt;}
.h1a{height:27.840000pt;}
.h1c{height:28.160000pt;}
.h19{height:28.352000pt;}
.h1f{height:28.640000pt;}
.h7{height:34.374375pt;}
.he{height:37.440000pt;}
.hf{height:37.472000pt;}
.h22{height:38.560000pt;}
.h8{height:42.745000pt;}
.h14{height:46.560000pt;}
.h10{height:46.720000pt;}
.h9{height:52.834688pt;}
.h1b{height:52.934375pt;}
.h5{height:54.390938pt;}
.h3{height:58.563750pt;}
.h6{height:60.288750pt;}
.h11{height:72.320000pt;}
.h12{height:72.352000pt;}
.h13{height:72.480000pt;}
.h2{height:76.671562pt;}
.h4{height:87.156562pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w1a{width:70.912000pt;}
.w13{width:78.752000pt;}
.w14{width:80.640000pt;}
.w10{width:81.600000pt;}
.w1d{width:84.160000pt;}
.w15{width:84.320000pt;}
.w16{width:84.352000pt;}
.w12{width:84.480000pt;}
.w11{width:84.512000pt;}
.w1c{width:85.152000pt;}
.wf{width:87.232000pt;}
.wa{width:99.520000pt;}
.w9{width:99.872000pt;}
.w25{width:102.880000pt;}
.w1f{width:107.712000pt;}
.w1b{width:112.800000pt;}
.w20{width:112.832000pt;}
.w6{width:122.272000pt;}
.w23{width:131.232000pt;}
.w18{width:131.360000pt;}
.w26{width:131.712000pt;}
.w19{width:135.706667pt;}
.wd{width:140.320000pt;}
.w21{width:140.986667pt;}
.we{width:150.426667pt;}
.w22{width:172.666667pt;}
.wb{width:178.746667pt;}
.w5{width:178.906667pt;}
.wc{width:180.026667pt;}
.w4{width:193.786667pt;}
.w3{width:195.426667pt;}
.w7{width:271.546667pt;}
.w8{width:359.586667pt;}
.w27{width:622.813333pt;}
.w1e{width:623.293333pt;}
.w24{width:668.160000pt;}
.w17{width:670.400000pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xa{left:2.720000pt;}
.x19{left:6.240000pt;}
.x12{left:8.640000pt;}
.x6{left:47.999988pt;}
.x8{left:62.399988pt;}
.x7{left:67.199988pt;}
.x2a{left:71.999988pt;}
.x14{left:80.992000pt;}
.x1f{left:85.312000pt;}
.x2b{left:96.031988pt;}
.xc{left:109.952000pt;}
.xf{left:116.832000pt;}
.x1a{left:141.146667pt;}
.x5{left:157.306655pt;}
.x24{left:171.226667pt;}
.x27{left:189.146667pt;}
.x9{left:201.946667pt;}
.x20{left:217.306667pt;}
.x15{left:222.106667pt;}
.x3{left:241.986655pt;}
.x25{left:284.706667pt;}
.xd{left:289.506667pt;}
.x13{left:296.386667pt;}
.x1b{left:307.586667pt;}
.x2{left:311.586655pt;}
.x28{left:321.506667pt;}
.x21{left:353.666667pt;}
.x4{left:372.546655pt;}
.x1c{left:392.546667pt;}
.xb{left:398.173333pt;}
.xe{left:412.413333pt;}
.x1{left:426.013322pt;}
.x29{left:453.853333pt;}
.x16{left:461.053333pt;}
.x10{left:477.053333pt;}
.x22{left:538.653333pt;}
.x17{left:543.293333pt;}
.x1d{left:562.693333pt;}
.x11{left:577.733333pt;}
.x26{left:599.813333pt;}
.x23{left:624.453333pt;}
.x18{left:628.453333pt;}
.x1e{left:647.813333pt;}
.x2c{left:745.279988pt;}
}




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