
    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_4e2c63e38cb551dbbaf2ef59.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_6651534d7c94c824a3c5f8ec.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.750000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_33efd47536db8f57f7bdec6c.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.940430;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_6b726b98191cb1c98152116e.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_fe193a97988ae08480de3eb9.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_5d7056f78f7794069afb2025.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_f31adb56e726261fb91f89cd.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_8215eae1efe4c16f19a04915.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.091309;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_ac76abd4ae459a23c39f6bd1.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.893555;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_3b17501f31fc6b0c9ccdfda9.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.402354;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_96adab5ce1b0886fd96c7ce2.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.435059;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_4c26d853b4fd7a2b5f144bb1.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.402354;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);}
.v4{vertical-align:-70.560000px;}
.v1{vertical-align:-69.120000px;}
.v3{vertical-align:-27.360000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:27.360000px;}
.ls8{letter-spacing:-0.540000px;}
.lse{letter-spacing:-0.513600px;}
.ls1d{letter-spacing:-0.360000px;}
.ls19{letter-spacing:-0.259800px;}
.ls15{letter-spacing:-0.206400px;}
.ls11{letter-spacing:-0.189600px;}
.ls16{letter-spacing:-0.106800px;}
.ls7{letter-spacing:-0.053280px;}
.ls3{letter-spacing:0.000000px;}
.ls12{letter-spacing:0.037440px;}
.lsc{letter-spacing:0.053280px;}
.lsb{letter-spacing:0.180000px;}
.ls1f{letter-spacing:0.259800px;}
.ls6{letter-spacing:0.259920px;}
.ls1{letter-spacing:0.298800px;}
.ls9{letter-spacing:0.306600px;}
.ls2{letter-spacing:0.360000px;}
.lsf{letter-spacing:0.612000px;}
.ls10{letter-spacing:0.702000px;}
.lsd{letter-spacing:0.924000px;}
.ls1c{letter-spacing:1.080000px;}
.ls1e{letter-spacing:1.620000px;}
.ls5{letter-spacing:2.748000px;}
.ls0{letter-spacing:2.880000px;}
.ls4{letter-spacing:3.144000px;}
.ls13{letter-spacing:46.026720px;}
.ls1b{letter-spacing:89.436000px;}
.ls18{letter-spacing:122.556000px;}
.ls14{letter-spacing:124.482720px;}
.lsa{letter-spacing:135.540000px;}
.ls1a{letter-spacing:197.436000px;}
.ls17{letter-spacing:201.036000px;}
.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;}
}
.wsa{word-spacing:-24.642000px;}
.wsd{word-spacing:-23.977440px;}
.wsc{word-spacing:-23.940000px;}
.wsb{word-spacing:-23.750400px;}
.ws0{word-spacing:-19.642080px;}
.ws14{word-spacing:-16.560000px;}
.ws7{word-spacing:-15.864000px;}
.ws9{word-spacing:-15.552000px;}
.ws1{word-spacing:-15.300000px;}
.ws4{word-spacing:-15.246600px;}
.ws2{word-spacing:-15.238800px;}
.ws15{word-spacing:-15.199800px;}
.ws5{word-spacing:-14.993280px;}
.wse{word-spacing:-14.940000px;}
.ws6{word-spacing:-14.886720px;}
.ws11{word-spacing:-14.833200px;}
.ws10{word-spacing:-14.733600px;}
.ws12{word-spacing:-14.680200px;}
.ws13{word-spacing:-14.580000px;}
.ws8{word-spacing:-14.426400px;}
.wsf{word-spacing:-9.720000px;}
.ws3{word-spacing:0.000000px;}
._30{margin-left:-13.397280px;}
._36{margin-left:-2.324400px;}
._3{margin-left:-1.314720px;}
._1{width:1.842960px;}
._0{width:2.914560px;}
._2{width:4.384800px;}
._15{width:6.215040px;}
._12{width:7.240560px;}
._14{width:8.626800px;}
._f{width:9.630960px;}
._10{width:11.115360px;}
._7{width:12.320160px;}
._6{width:13.386240px;}
._11{width:16.622880px;}
._32{width:17.679360px;}
._e{width:18.714480px;}
._18{width:20.019600px;}
._13{width:21.095280px;}
._19{width:22.469760px;}
._b{width:23.794080px;}
._a{width:25.039440px;}
._37{width:26.234640px;}
._16{width:27.668880px;}
._34{width:29.839440px;}
._9{width:31.849200px;}
._8{width:33.047280px;}
._1a{width:35.138880px;}
._1b{width:36.513360px;}
._35{width:38.913360px;}
._31{width:40.602720px;}
._d{width:42.480000px;}
._c{width:43.983360px;}
._1d{width:53.186400px;}
._1c{width:54.262080px;}
._33{width:90.116640px;}
._29{width:101.306880px;}
._25{width:102.835920px;}
._1e{width:107.796000px;}
._23{width:109.673280px;}
._38{width:111.691440px;}
._2f{width:114.139440px;}
._27{width:116.246880px;}
._1f{width:117.669360px;}
._22{width:121.086720px;}
._21{width:122.089920px;}
._20{width:123.358560px;}
._24{width:130.545360px;}
._26{width:136.133280px;}
._2d{width:146.841840px;}
._28{width:150.646800px;}
._17{width:151.896000px;}
._2e{width:157.085520px;}
._2b{width:197.436000px;}
._2a{width:595.829760px;}
._2c{width:781.644480px;}
._4{width:1042.896000px;}
._5{width:1141.680000px;}
.fc2{color:transparent;}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(68,84,106);}
.fs6{font-size:38.880000px;}
.fs2{font-size:48.240000px;}
.fs1{font-size:54.000000px;}
.fs3{font-size:59.760000px;}
.fs0{font-size:66.240000px;}
.fs4{font-size:84.240000px;}
.fs5{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.y7{bottom:2.700000px;}
.y14{bottom:3.420000px;}
.yba{bottom:3.600000px;}
.y1a{bottom:3.780000px;}
.y6{bottom:4.140000px;}
.y5{bottom:8.100000px;}
.ya2{bottom:9.534000px;}
.y10a{bottom:9.540000px;}
.ye8{bottom:9.720000px;}
.yaf{bottom:9.750000px;}
.y124{bottom:10.260000px;}
.yb2{bottom:10.440000px;}
.yea{bottom:10.620000px;}
.y10c{bottom:10.800000px;}
.ye5{bottom:10.980000px;}
.ye1{bottom:11.160000px;}
.yd6{bottom:11.700000px;}
.ya5{bottom:12.060000px;}
.yd8{bottom:12.105000px;}
.yfd{bottom:12.240000px;}
.yda{bottom:12.420000px;}
.yd4{bottom:12.600000px;}
.y3{bottom:12.780000px;}
.ye3{bottom:12.960000px;}
.yff{bottom:13.320000px;}
.yd2{bottom:13.680000px;}
.y9c{bottom:14.400000px;}
.y9d{bottom:14.760000px;}
.ya3{bottom:15.654000px;}
.yb0{bottom:15.690000px;}
.y128{bottom:16.920000px;}
.yb3{bottom:17.100000px;}
.y12c{bottom:19.260000px;}
.y32{bottom:19.440000px;}
.ya6{bottom:20.340000px;}
.y12e{bottom:20.520000px;}
.yb7{bottom:20.700000px;}
.y19{bottom:20.880000px;}
.y2a{bottom:21.060000px;}
.ya0{bottom:21.600000px;}
.ya9{bottom:22.860000px;}
.yad{bottom:23.040000px;}
.y126{bottom:25.020000px;}
.y130{bottom:25.200000px;}
.y12a{bottom:27.540000px;}
.y134{bottom:28.440000px;}
.y2{bottom:28.980000px;}
.y127{bottom:34.020000px;}
.y131{bottom:34.230000px;}
.y31{bottom:36.360000px;}
.y12b{bottom:36.540000px;}
.y2b{bottom:37.980000px;}
.y18{bottom:38.160000px;}
.y29{bottom:38.340000px;}
.y9f{bottom:38.880000px;}
.ya8{bottom:51.120000px;}
.y30{bottom:54.000000px;}
.y159{bottom:55.305000px;}
.y17{bottom:55.440000px;}
.y15a{bottom:55.665000px;}
.yb{bottom:56.700000px;}
.y2f{bottom:71.280000px;}
.y16{bottom:72.360000px;}
.y1b{bottom:72.720000px;}
.y158{bottom:72.765000px;}
.ya{bottom:73.980000px;}
.y2e{bottom:88.380000px;}
.y157{bottom:89.685000px;}
.y27{bottom:90.000000px;}
.y2d{bottom:105.660000px;}
.y26{bottom:107.280000px;}
.y156{bottom:107.325000px;}
.ya4{bottom:114.156000px;}
.y148{bottom:116.856000px;}
.ye6{bottom:118.116000px;}
.y53{bottom:121.356000px;}
.y2c{bottom:122.580000px;}
.y8f{bottom:123.336000px;}
.y25{bottom:124.380000px;}
.y116{bottom:124.416000px;}
.y155{bottom:124.605000px;}
.ye4{bottom:132.336000px;}
.y147{bottom:134.136000px;}
.y52{bottom:138.636000px;}
.y14f{bottom:140.256000px;}
.y8e{bottom:140.616000px;}
.y154{bottom:141.525000px;}
.y24{bottom:141.660000px;}
.y115{bottom:141.696000px;}
.ya1{bottom:147.996000px;}
.y146{bottom:151.410000px;}
.y51{bottom:155.910000px;}
.y8d{bottom:157.890000px;}
.y23{bottom:158.940000px;}
.y114{bottom:158.970000px;}
.ye2{bottom:164.010000px;}
.y145{bottom:168.690000px;}
.y50{bottom:173.190000px;}
.y14e{bottom:174.810000px;}
.y8c{bottom:175.170000px;}
.y113{bottom:176.070000px;}
.y22{bottom:176.220000px;}
.y9e{bottom:180.030000px;}
.y144{bottom:185.970000px;}
.y4f{bottom:190.290000px;}
.y8b{bottom:192.450000px;}
.y112{bottom:193.350000px;}
.y21{bottom:193.545000px;}
.ye0{bottom:201.270000px;}
.y143{bottom:203.070000px;}
.y4e{bottom:207.570000px;}
.y8a{bottom:209.550000px;}
.y20{bottom:210.645000px;}
.y142{bottom:220.350000px;}
.y4d{bottom:224.850000px;}
.y89{bottom:226.830000px;}
.y111{bottom:227.910000px;}
.y1f{bottom:227.925000px;}
.y9b{bottom:236.190000px;}
.y141{bottom:237.630000px;}
.ydf{bottom:238.710000px;}
.y4c{bottom:242.130000px;}
.y88{bottom:244.110000px;}
.y1e{bottom:245.205000px;}
.y110{bottom:247.530000px;}
.y140{bottom:254.910000px;}
.yde{bottom:255.990000px;}
.y4b{bottom:259.410000px;}
.y87{bottom:261.390000px;}
.y1d{bottom:262.485000px;}
.y10f{bottom:264.990000px;}
.y9a{bottom:267.690000px;}
.y13f{bottom:272.190000px;}
.ydd{bottom:273.270000px;}
.y15c{bottom:276.330000px;}
.y4a{bottom:276.690000px;}
.y86{bottom:278.310000px;}
.y14d{bottom:278.670000px;}
.y10e{bottom:284.790000px;}
.y99{bottom:284.970000px;}
.y13e{bottom:289.470000px;}
.ydc{bottom:290.370000px;}
.y15b{bottom:290.550000px;}
.y49{bottom:293.790000px;}
.y85{bottom:295.590000px;}
.y14c{bottom:295.950000px;}
.y10d{bottom:299.190000px;}
.y98{bottom:302.610000px;}
.y13d{bottom:306.570000px;}
.ydb{bottom:307.650000px;}
.y153{bottom:307.830000px;}
.y48{bottom:311.070000px;}
.y84{bottom:313.050000px;}
.y97{bottom:319.890000px;}
.yd9{bottom:321.870000px;}
.y13c{bottom:323.850000px;}
.y47{bottom:328.350000px;}
.y83{bottom:330.330000px;}
.y10b{bottom:330.870000px;}
.y96{bottom:337.170000px;}
.y13b{bottom:341.130000px;}
.y46{bottom:345.630000px;}
.y82{bottom:347.610000px;}
.yd7{bottom:356.250000px;}
.y13a{bottom:358.410000px;}
.y45{bottom:362.955000px;}
.y109{bottom:363.495000px;}
.y81{bottom:364.935000px;}
.y139{bottom:375.735000px;}
.y44{bottom:380.235000px;}
.y14b{bottom:381.855000px;}
.y80{bottom:382.215000px;}
.yd5{bottom:390.855000px;}
.y138{bottom:392.835000px;}
.y43{bottom:397.335000px;}
.y7f{bottom:399.135000px;}
.y14a{bottom:399.495000px;}
.y137{bottom:410.115000px;}
.y42{bottom:414.615000px;}
.y108{bottom:414.975000px;}
.y7e{bottom:416.595000px;}
.yd3{bottom:423.975000px;}
.y136{bottom:427.035000px;}
.y107{bottom:429.195000px;}
.y41{bottom:431.895000px;}
.y7d{bottom:433.875000px;}
.y135{bottom:444.675000px;}
.y40{bottom:449.175000px;}
.y7c{bottom:451.155000px;}
.y133{bottom:458.895000px;}
.yd1{bottom:459.795000px;}
.y106{bottom:460.875000px;}
.y152{bottom:463.935000px;}
.y3f{bottom:466.455000px;}
.y7b{bottom:468.435000px;}
.y3e{bottom:483.735000px;}
.y7a{bottom:485.715000px;}
.y105{bottom:498.135000px;}
.y3d{bottom:500.835000px;}
.yd0{bottom:501.735000px;}
.y149{bottom:502.455000px;}
.y79{bottom:502.815000px;}
.y3c{bottom:518.115000px;}
.ycf{bottom:519.375000px;}
.y78{bottom:520.095000px;}
.y132{bottom:525.675000px;}
.y3b{bottom:535.395000px;}
.y104{bottom:535.575000px;}
.yce{bottom:536.655000px;}
.y77{bottom:537.375000px;}
.y3a{bottom:552.675000px;}
.y103{bottom:552.855000px;}
.ycd{bottom:553.395000px;}
.y76{bottom:554.655000px;}
.y39{bottom:569.955000px;}
.y102{bottom:570.135000px;}
.ycc{bottom:571.035000px;}
.y75{bottom:571.935000px;}
.y38{bottom:587.055000px;}
.y101{bottom:587.235000px;}
.ycb{bottom:588.315000px;}
.y74{bottom:589.215000px;}
.y12f{bottom:591.015000px;}
.y100{bottom:601.635000px;}
.y37{bottom:604.335000px;}
.yca{bottom:605.595000px;}
.y73{bottom:606.315000px;}
.y36{bottom:621.645000px;}
.yc9{bottom:622.905000px;}
.y72{bottom:623.625000px;}
.yfe{bottom:633.345000px;}
.y35{bottom:638.925000px;}
.yc8{bottom:640.005000px;}
.y71{bottom:640.905000px;}
.y12d{bottom:651.885000px;}
.y34{bottom:655.845000px;}
.yc7{bottom:657.285000px;}
.y70{bottom:658.185000px;}
.yfc{bottom:670.605000px;}
.y33{bottom:673.125000px;}
.yc6{bottom:674.565000px;}
.y6f{bottom:675.465000px;}
.y129{bottom:686.265000px;}
.y1c{bottom:687.705000px;}
.yc5{bottom:691.845000px;}
.y6e{bottom:692.745000px;}
.yfb{bottom:704.805000px;}
.yc4{bottom:709.125000px;}
.y6d{bottom:709.845000px;}
.yc3{bottom:726.405000px;}
.y6c{bottom:727.125000px;}
.yfa{bottom:739.365000px;}
.y95{bottom:744.045000px;}
.y6b{bottom:744.405000px;}
.y125{bottom:751.785000px;}
.yc2{bottom:760.785000px;}
.y94{bottom:761.325000px;}
.y6a{bottom:761.685000px;}
.yc1{bottom:778.065000px;}
.y69{bottom:778.965000px;}
.yf9{bottom:781.305000px;}
.yc0{bottom:795.345000px;}
.y68{bottom:796.065000px;}
.yf8{bottom:798.945000px;}
.ybf{bottom:812.625000px;}
.y123{bottom:813.165000px;}
.y67{bottom:813.345000px;}
.yf7{bottom:816.225000px;}
.y28{bottom:824.865000px;}
.ybe{bottom:829.905000px;}
.y66{bottom:830.625000px;}
.yf6{bottom:833.145000px;}
.ybd{bottom:847.005000px;}
.y65{bottom:847.905000px;}
.y122{bottom:848.445000px;}
.yf5{bottom:850.605000px;}
.ybc{bottom:863.925000px;}
.y64{bottom:865.185000px;}
.y121{bottom:865.905000px;}
.yf4{bottom:867.885000px;}
.y15{bottom:877.470000px;}
.ybb{bottom:880.170000px;}
.y63{bottom:882.510000px;}
.y120{bottom:883.230000px;}
.yf3{bottom:885.210000px;}
.ya7{bottom:886.290000px;}
.yac{bottom:888.630000px;}
.yab{bottom:890.790000px;}
.y62{bottom:899.610000px;}
.y11f{bottom:900.510000px;}
.yf2{bottom:902.490000px;}
.y61{bottom:916.890000px;}
.y11e{bottom:917.790000px;}
.yf1{bottom:919.770000px;}
.y60{bottom:934.170000px;}
.y11d{bottom:935.070000px;}
.yf0{bottom:936.870000px;}
.yb9{bottom:951.270000px;}
.y5f{bottom:951.450000px;}
.y11c{bottom:954.690000px;}
.y13{bottom:964.410000px;}
.yb8{bottom:968.550000px;}
.y5e{bottom:968.730000px;}
.yef{bottom:971.430000px;}
.y11b{bottom:972.150000px;}
.y5d{bottom:985.650000px;}
.y12{bottom:985.830000px;}
.y93{bottom:986.010000px;}
.yee{bottom:991.230000px;}
.y11a{bottom:991.770000px;}
.y11{bottom:1003.110000px;}
.yb6{bottom:1005.270000px;}
.y119{bottom:1005.450000px;}
.yed{bottom:1008.510000px;}
.y151{bottom:1020.030000px;}
.y10{bottom:1020.390000px;}
.yec{bottom:1028.310000px;}
.yaa{bottom:1030.290000px;}
.y5c{bottom:1037.670000px;}
.yf{bottom:1037.850000px;}
.y118{bottom:1038.030000px;}
.yeb{bottom:1042.710000px;}
.y5b{bottom:1054.950000px;}
.ye{bottom:1056.210000px;}
.yb5{bottom:1060.530000px;}
.y117{bottom:1071.870000px;}
.y5a{bottom:1072.230000px;}
.ye9{bottom:1074.570000px;}
.yb4{bottom:1077.810000px;}
.yd{bottom:1080.330000px;}
.y92{bottom:1089.150000px;}
.y59{bottom:1089.510000px;}
.yb1{bottom:1094.910000px;}
.yc{bottom:1104.450000px;}
.y150{bottom:1106.250000px;}
.y58{bottom:1106.610000px;}
.ye7{bottom:1106.970000px;}
.y91{bottom:1123.530000px;}
.y57{bottom:1123.890000px;}
.yae{bottom:1125.510000px;}
.y9{bottom:1127.670000px;}
.y90{bottom:1140.840000px;}
.y56{bottom:1141.200000px;}
.y8{bottom:1144.980000px;}
.y1{bottom:1158.480000px;}
.y55{bottom:1178.820000px;}
.y4{bottom:1179.360000px;}
.y54{bottom:1196.100000px;}
.h20{height:17.100000px;}
.hc{height:17.280000px;}
.h6{height:20.880000px;}
.h5{height:23.400000px;}
.h14{height:28.260000px;}
.h16{height:29.160000px;}
.h1b{height:29.196000px;}
.h2e{height:29.700000px;}
.h2a{height:29.736000px;}
.h1c{height:30.600000px;}
.h30{height:31.140000px;}
.h29{height:31.680000px;}
.h2d{height:31.716000px;}
.h2b{height:31.860000px;}
.h2f{height:31.896000px;}
.h27{height:32.940000px;}
.h25{height:33.120000px;}
.h17{height:33.840000px;}
.h26{height:33.876000px;}
.h2c{height:34.200000px;}
.h21{height:34.380000px;}
.h1d{height:34.560000px;}
.h24{height:35.100000px;}
.h28{height:36.360000px;}
.h7{height:36.651094px;}
.h23{height:37.800000px;}
.h8{height:40.500000px;}
.h10{height:41.493516px;}
.h2{height:44.280000px;}
.h11{height:51.876000px;}
.h13{height:52.319180px;}
.h15{height:52.740000px;}
.h4{height:54.421875px;}
.he{height:58.621992px;}
.h9{height:58.651172px;}
.hb{height:60.226875px;}
.h31{height:60.660000px;}
.h33{height:60.876000px;}
.h1e{height:61.423863px;}
.h22{height:62.211094px;}
.h34{height:65.340000px;}
.h1f{height:65.518594px;}
.h32{height:65.520000px;}
.h3{height:66.757500px;}
.h35{height:66.780000px;}
.ha{height:84.898125px;}
.hd{height:86.220000px;}
.h1a{height:90.540000px;}
.h18{height:90.720000px;}
.h19{height:93.983203px;}
.h12{height:136.440000px;}
.h36{height:155.370000px;}
.hf{height:275.970000px;}
.h0{height:1262.700000px;}
.h1{height:1263.000000px;}
.w7{width:30.960000px;}
.w12{width:74.340000px;}
.w11{width:81.540000px;}
.w15{width:100.980000px;}
.w14{width:101.016000px;}
.w1a{width:109.476000px;}
.w1c{width:114.696000px;}
.w18{width:121.140000px;}
.w1b{width:121.500000px;}
.w10{width:121.536000px;}
.w19{width:133.596000px;}
.wf{width:135.036000px;}
.w1d{width:141.300000px;}
.w20{width:155.160000px;}
.w22{width:155.370000px;}
.wa{width:173.730000px;}
.w6{width:176.250000px;}
.wc{width:183.630000px;}
.wb{width:194.970000px;}
.we{width:209.910000px;}
.w2{width:216.570000px;}
.w5{width:225.795000px;}
.w13{width:250.050000px;}
.w4{width:269.850000px;}
.w9{width:270.975000px;}
.w1e{width:283.575000px;}
.w1f{width:297.075000px;}
.w24{width:337.755000px;}
.w25{width:340.275000px;}
.w21{width:432.105000px;}
.w8{width:470.805000px;}
.w3{width:495.645000px;}
.wd{width:622.545000px;}
.w16{width:654.045000px;}
.w23{width:678.030000px;}
.w17{width:721.950000px;}
.w1{width:892.500000px;}
.w0{width:892.800000px;}
.x0{left:0.000000px;}
.x4{left:1.260000px;}
.x2{left:4.680000px;}
.x11{left:7.020000px;}
.xe{left:8.100000px;}
.x50{left:11.340000px;}
.x20{left:12.780000px;}
.x2a{left:15.480000px;}
.x19{left:17.100000px;}
.x4f{left:18.225000px;}
.x1c{left:19.440000px;}
.x45{left:20.880000px;}
.x4d{left:22.365000px;}
.x3e{left:24.660000px;}
.x30{left:26.640000px;}
.x2e{left:28.440000px;}
.x34{left:29.700000px;}
.x33{left:33.480000px;}
.x5{left:34.920000px;}
.x44{left:37.260000px;}
.x1b{left:38.520000px;}
.x4a{left:39.645000px;}
.x2c{left:41.220000px;}
.x3d{left:42.525000px;}
.x37{left:48.825000px;}
.x18{left:50.034000px;}
.x3c{left:52.770000px;}
.x1f{left:54.210000px;}
.x17{left:69.840000px;}
.x51{left:72.225000px;}
.x4e{left:77.580000px;}
.x14{left:86.796000px;}
.x1{left:90.396000px;}
.x47{left:94.536000px;}
.x28{left:97.014000px;}
.x27{left:99.936000px;}
.x7{left:108.036000px;}
.xa{left:112.896000px;}
.x32{left:115.014000px;}
.x55{left:118.656000px;}
.x3f{left:121.005000px;}
.x46{left:122.445000px;}
.x42{left:124.785000px;}
.x41{left:128.025000px;}
.x43{left:131.625000px;}
.x21{left:135.216000px;}
.x13{left:139.536000px;}
.xc{left:144.756000px;}
.x53{left:148.536000px;}
.x9{left:154.290000px;}
.x54{left:159.150000px;}
.x12{left:162.030000px;}
.x4b{left:169.065000px;}
.x48{left:178.965000px;}
.x56{left:189.030000px;}
.x35{left:197.679000px;}
.x4c{left:202.755000px;}
.x52{left:216.075000px;}
.x31{left:221.439000px;}
.x15{left:224.130000px;}
.x36{left:241.419000px;}
.x1a{left:259.815000px;}
.x57{left:274.539000px;}
.xf{left:283.755000px;}
.x3{left:306.975000px;}
.x10{left:314.715000px;}
.xb{left:338.475000px;}
.x22{left:345.315000px;}
.x29{left:349.995000px;}
.x38{left:354.675000px;}
.x1e{left:395.895000px;}
.xd{left:405.435000px;}
.x58{left:445.245000px;}
.x26{left:446.505000px;}
.x2b{left:451.005000px;}
.x39{left:464.145000px;}
.x23{left:480.345000px;}
.x16{left:495.105000px;}
.x40{left:524.805000px;}
.x2d{left:551.985000px;}
.x6{left:576.825000px;}
.x3a{left:585.645000px;}
.x24{left:601.890000px;}
.x2f{left:653.010000px;}
.x1d{left:670.470000px;}
.x49{left:673.350000px;}
.x25{left:683.430000px;}
.x3b{left:707.190000px;}
.x8{left:770.040000px;}
@media print{
.v4{vertical-align:-62.720000pt;}
.v1{vertical-align:-61.440000pt;}
.v3{vertical-align:-24.320000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:24.320000pt;}
.ls8{letter-spacing:-0.480000pt;}
.lse{letter-spacing:-0.456533pt;}
.ls1d{letter-spacing:-0.320000pt;}
.ls19{letter-spacing:-0.230933pt;}
.ls15{letter-spacing:-0.183467pt;}
.ls11{letter-spacing:-0.168533pt;}
.ls16{letter-spacing:-0.094933pt;}
.ls7{letter-spacing:-0.047360pt;}
.ls3{letter-spacing:0.000000pt;}
.ls12{letter-spacing:0.033280pt;}
.lsc{letter-spacing:0.047360pt;}
.lsb{letter-spacing:0.160000pt;}
.ls1f{letter-spacing:0.230933pt;}
.ls6{letter-spacing:0.231040pt;}
.ls1{letter-spacing:0.265600pt;}
.ls9{letter-spacing:0.272533pt;}
.ls2{letter-spacing:0.320000pt;}
.lsf{letter-spacing:0.544000pt;}
.ls10{letter-spacing:0.624000pt;}
.lsd{letter-spacing:0.821333pt;}
.ls1c{letter-spacing:0.960000pt;}
.ls1e{letter-spacing:1.440000pt;}
.ls5{letter-spacing:2.442667pt;}
.ls0{letter-spacing:2.560000pt;}
.ls4{letter-spacing:2.794667pt;}
.ls13{letter-spacing:40.912640pt;}
.ls1b{letter-spacing:79.498667pt;}
.ls18{letter-spacing:108.938667pt;}
.ls14{letter-spacing:110.651307pt;}
.lsa{letter-spacing:120.480000pt;}
.ls1a{letter-spacing:175.498667pt;}
.ls17{letter-spacing:178.698667pt;}
.wsa{word-spacing:-21.904000pt;}
.wsd{word-spacing:-21.313280pt;}
.wsc{word-spacing:-21.280000pt;}
.wsb{word-spacing:-21.111467pt;}
.ws0{word-spacing:-17.459627pt;}
.ws14{word-spacing:-14.720000pt;}
.ws7{word-spacing:-14.101333pt;}
.ws9{word-spacing:-13.824000pt;}
.ws1{word-spacing:-13.600000pt;}
.ws4{word-spacing:-13.552533pt;}
.ws2{word-spacing:-13.545600pt;}
.ws15{word-spacing:-13.510933pt;}
.ws5{word-spacing:-13.327360pt;}
.wse{word-spacing:-13.280000pt;}
.ws6{word-spacing:-13.232640pt;}
.ws11{word-spacing:-13.185067pt;}
.ws10{word-spacing:-13.096533pt;}
.ws12{word-spacing:-13.049067pt;}
.ws13{word-spacing:-12.960000pt;}
.ws8{word-spacing:-12.823467pt;}
.wsf{word-spacing:-8.640000pt;}
.ws3{word-spacing:0.000000pt;}
._30{margin-left:-11.908693pt;}
._36{margin-left:-2.066133pt;}
._3{margin-left:-1.168640pt;}
._1{width:1.638187pt;}
._0{width:2.590720pt;}
._2{width:3.897600pt;}
._15{width:5.524480pt;}
._12{width:6.436053pt;}
._14{width:7.668267pt;}
._f{width:8.560853pt;}
._10{width:9.880320pt;}
._7{width:10.951253pt;}
._6{width:11.898880pt;}
._11{width:14.775893pt;}
._32{width:15.714987pt;}
._e{width:16.635093pt;}
._18{width:17.795200pt;}
._13{width:18.751360pt;}
._19{width:19.973120pt;}
._b{width:21.150293pt;}
._a{width:22.257280pt;}
._37{width:23.319680pt;}
._16{width:24.594560pt;}
._34{width:26.523947pt;}
._9{width:28.310400pt;}
._8{width:29.375360pt;}
._1a{width:31.234560pt;}
._1b{width:32.456320pt;}
._35{width:34.589653pt;}
._31{width:36.091307pt;}
._d{width:37.760000pt;}
._c{width:39.096320pt;}
._1d{width:47.276800pt;}
._1c{width:48.232960pt;}
._33{width:80.103680pt;}
._29{width:90.050560pt;}
._25{width:91.409707pt;}
._1e{width:95.818667pt;}
._23{width:97.487360pt;}
._38{width:99.281280pt;}
._2f{width:101.457280pt;}
._27{width:103.330560pt;}
._1f{width:104.594987pt;}
._22{width:107.632640pt;}
._21{width:108.524373pt;}
._20{width:109.652053pt;}
._24{width:116.040320pt;}
._26{width:121.007360pt;}
._2d{width:130.526080pt;}
._28{width:133.908267pt;}
._17{width:135.018667pt;}
._2e{width:139.631573pt;}
._2b{width:175.498667pt;}
._2a{width:529.626453pt;}
._2c{width:694.795093pt;}
._4{width:927.018667pt;}
._5{width:1014.826667pt;}
.fs6{font-size:34.560000pt;}
.fs2{font-size:42.880000pt;}
.fs1{font-size:48.000000pt;}
.fs3{font-size:53.120000pt;}
.fs0{font-size:58.880000pt;}
.fs4{font-size:74.880000pt;}
.fs5{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.y7{bottom:2.400000pt;}
.y14{bottom:3.040000pt;}
.yba{bottom:3.200000pt;}
.y1a{bottom:3.360000pt;}
.y6{bottom:3.680000pt;}
.y5{bottom:7.200000pt;}
.ya2{bottom:8.474667pt;}
.y10a{bottom:8.480000pt;}
.ye8{bottom:8.640000pt;}
.yaf{bottom:8.666667pt;}
.y124{bottom:9.120000pt;}
.yb2{bottom:9.280000pt;}
.yea{bottom:9.440000pt;}
.y10c{bottom:9.600000pt;}
.ye5{bottom:9.760000pt;}
.ye1{bottom:9.920000pt;}
.yd6{bottom:10.400000pt;}
.ya5{bottom:10.720000pt;}
.yd8{bottom:10.760000pt;}
.yfd{bottom:10.880000pt;}
.yda{bottom:11.040000pt;}
.yd4{bottom:11.200000pt;}
.y3{bottom:11.360000pt;}
.ye3{bottom:11.520000pt;}
.yff{bottom:11.840000pt;}
.yd2{bottom:12.160000pt;}
.y9c{bottom:12.800000pt;}
.y9d{bottom:13.120000pt;}
.ya3{bottom:13.914667pt;}
.yb0{bottom:13.946667pt;}
.y128{bottom:15.040000pt;}
.yb3{bottom:15.200000pt;}
.y12c{bottom:17.120000pt;}
.y32{bottom:17.280000pt;}
.ya6{bottom:18.080000pt;}
.y12e{bottom:18.240000pt;}
.yb7{bottom:18.400000pt;}
.y19{bottom:18.560000pt;}
.y2a{bottom:18.720000pt;}
.ya0{bottom:19.200000pt;}
.ya9{bottom:20.320000pt;}
.yad{bottom:20.480000pt;}
.y126{bottom:22.240000pt;}
.y130{bottom:22.400000pt;}
.y12a{bottom:24.480000pt;}
.y134{bottom:25.280000pt;}
.y2{bottom:25.760000pt;}
.y127{bottom:30.240000pt;}
.y131{bottom:30.426667pt;}
.y31{bottom:32.320000pt;}
.y12b{bottom:32.480000pt;}
.y2b{bottom:33.760000pt;}
.y18{bottom:33.920000pt;}
.y29{bottom:34.080000pt;}
.y9f{bottom:34.560000pt;}
.ya8{bottom:45.440000pt;}
.y30{bottom:48.000000pt;}
.y159{bottom:49.160000pt;}
.y17{bottom:49.280000pt;}
.y15a{bottom:49.480000pt;}
.yb{bottom:50.400000pt;}
.y2f{bottom:63.360000pt;}
.y16{bottom:64.320000pt;}
.y1b{bottom:64.640000pt;}
.y158{bottom:64.680000pt;}
.ya{bottom:65.760000pt;}
.y2e{bottom:78.560000pt;}
.y157{bottom:79.720000pt;}
.y27{bottom:80.000000pt;}
.y2d{bottom:93.920000pt;}
.y26{bottom:95.360000pt;}
.y156{bottom:95.400000pt;}
.ya4{bottom:101.472000pt;}
.y148{bottom:103.872000pt;}
.ye6{bottom:104.992000pt;}
.y53{bottom:107.872000pt;}
.y2c{bottom:108.960000pt;}
.y8f{bottom:109.632000pt;}
.y25{bottom:110.560000pt;}
.y116{bottom:110.592000pt;}
.y155{bottom:110.760000pt;}
.ye4{bottom:117.632000pt;}
.y147{bottom:119.232000pt;}
.y52{bottom:123.232000pt;}
.y14f{bottom:124.672000pt;}
.y8e{bottom:124.992000pt;}
.y154{bottom:125.800000pt;}
.y24{bottom:125.920000pt;}
.y115{bottom:125.952000pt;}
.ya1{bottom:131.552000pt;}
.y146{bottom:134.586667pt;}
.y51{bottom:138.586667pt;}
.y8d{bottom:140.346667pt;}
.y23{bottom:141.280000pt;}
.y114{bottom:141.306667pt;}
.ye2{bottom:145.786667pt;}
.y145{bottom:149.946667pt;}
.y50{bottom:153.946667pt;}
.y14e{bottom:155.386667pt;}
.y8c{bottom:155.706667pt;}
.y113{bottom:156.506667pt;}
.y22{bottom:156.640000pt;}
.y9e{bottom:160.026667pt;}
.y144{bottom:165.306667pt;}
.y4f{bottom:169.146667pt;}
.y8b{bottom:171.066667pt;}
.y112{bottom:171.866667pt;}
.y21{bottom:172.040000pt;}
.ye0{bottom:178.906667pt;}
.y143{bottom:180.506667pt;}
.y4e{bottom:184.506667pt;}
.y8a{bottom:186.266667pt;}
.y20{bottom:187.240000pt;}
.y142{bottom:195.866667pt;}
.y4d{bottom:199.866667pt;}
.y89{bottom:201.626667pt;}
.y111{bottom:202.586667pt;}
.y1f{bottom:202.600000pt;}
.y9b{bottom:209.946667pt;}
.y141{bottom:211.226667pt;}
.ydf{bottom:212.186667pt;}
.y4c{bottom:215.226667pt;}
.y88{bottom:216.986667pt;}
.y1e{bottom:217.960000pt;}
.y110{bottom:220.026667pt;}
.y140{bottom:226.586667pt;}
.yde{bottom:227.546667pt;}
.y4b{bottom:230.586667pt;}
.y87{bottom:232.346667pt;}
.y1d{bottom:233.320000pt;}
.y10f{bottom:235.546667pt;}
.y9a{bottom:237.946667pt;}
.y13f{bottom:241.946667pt;}
.ydd{bottom:242.906667pt;}
.y15c{bottom:245.626667pt;}
.y4a{bottom:245.946667pt;}
.y86{bottom:247.386667pt;}
.y14d{bottom:247.706667pt;}
.y10e{bottom:253.146667pt;}
.y99{bottom:253.306667pt;}
.y13e{bottom:257.306667pt;}
.ydc{bottom:258.106667pt;}
.y15b{bottom:258.266667pt;}
.y49{bottom:261.146667pt;}
.y85{bottom:262.746667pt;}
.y14c{bottom:263.066667pt;}
.y10d{bottom:265.946667pt;}
.y98{bottom:268.986667pt;}
.y13d{bottom:272.506667pt;}
.ydb{bottom:273.466667pt;}
.y153{bottom:273.626667pt;}
.y48{bottom:276.506667pt;}
.y84{bottom:278.266667pt;}
.y97{bottom:284.346667pt;}
.yd9{bottom:286.106667pt;}
.y13c{bottom:287.866667pt;}
.y47{bottom:291.866667pt;}
.y83{bottom:293.626667pt;}
.y10b{bottom:294.106667pt;}
.y96{bottom:299.706667pt;}
.y13b{bottom:303.226667pt;}
.y46{bottom:307.226667pt;}
.y82{bottom:308.986667pt;}
.yd7{bottom:316.666667pt;}
.y13a{bottom:318.586667pt;}
.y45{bottom:322.626667pt;}
.y109{bottom:323.106667pt;}
.y81{bottom:324.386667pt;}
.y139{bottom:333.986667pt;}
.y44{bottom:337.986667pt;}
.y14b{bottom:339.426667pt;}
.y80{bottom:339.746667pt;}
.yd5{bottom:347.426667pt;}
.y138{bottom:349.186667pt;}
.y43{bottom:353.186667pt;}
.y7f{bottom:354.786667pt;}
.y14a{bottom:355.106667pt;}
.y137{bottom:364.546667pt;}
.y42{bottom:368.546667pt;}
.y108{bottom:368.866667pt;}
.y7e{bottom:370.306667pt;}
.yd3{bottom:376.866667pt;}
.y136{bottom:379.586667pt;}
.y107{bottom:381.506667pt;}
.y41{bottom:383.906667pt;}
.y7d{bottom:385.666667pt;}
.y135{bottom:395.266667pt;}
.y40{bottom:399.266667pt;}
.y7c{bottom:401.026667pt;}
.y133{bottom:407.906667pt;}
.yd1{bottom:408.706667pt;}
.y106{bottom:409.666667pt;}
.y152{bottom:412.386667pt;}
.y3f{bottom:414.626667pt;}
.y7b{bottom:416.386667pt;}
.y3e{bottom:429.986667pt;}
.y7a{bottom:431.746667pt;}
.y105{bottom:442.786667pt;}
.y3d{bottom:445.186667pt;}
.yd0{bottom:445.986667pt;}
.y149{bottom:446.626667pt;}
.y79{bottom:446.946667pt;}
.y3c{bottom:460.546667pt;}
.ycf{bottom:461.666667pt;}
.y78{bottom:462.306667pt;}
.y132{bottom:467.266667pt;}
.y3b{bottom:475.906667pt;}
.y104{bottom:476.066667pt;}
.yce{bottom:477.026667pt;}
.y77{bottom:477.666667pt;}
.y3a{bottom:491.266667pt;}
.y103{bottom:491.426667pt;}
.ycd{bottom:491.906667pt;}
.y76{bottom:493.026667pt;}
.y39{bottom:506.626667pt;}
.y102{bottom:506.786667pt;}
.ycc{bottom:507.586667pt;}
.y75{bottom:508.386667pt;}
.y38{bottom:521.826667pt;}
.y101{bottom:521.986667pt;}
.ycb{bottom:522.946667pt;}
.y74{bottom:523.746667pt;}
.y12f{bottom:525.346667pt;}
.y100{bottom:534.786667pt;}
.y37{bottom:537.186667pt;}
.yca{bottom:538.306667pt;}
.y73{bottom:538.946667pt;}
.y36{bottom:552.573333pt;}
.yc9{bottom:553.693333pt;}
.y72{bottom:554.333333pt;}
.yfe{bottom:562.973333pt;}
.y35{bottom:567.933333pt;}
.yc8{bottom:568.893333pt;}
.y71{bottom:569.693333pt;}
.y12d{bottom:579.453333pt;}
.y34{bottom:582.973333pt;}
.yc7{bottom:584.253333pt;}
.y70{bottom:585.053333pt;}
.yfc{bottom:596.093333pt;}
.y33{bottom:598.333333pt;}
.yc6{bottom:599.613333pt;}
.y6f{bottom:600.413333pt;}
.y129{bottom:610.013333pt;}
.y1c{bottom:611.293333pt;}
.yc5{bottom:614.973333pt;}
.y6e{bottom:615.773333pt;}
.yfb{bottom:626.493333pt;}
.yc4{bottom:630.333333pt;}
.y6d{bottom:630.973333pt;}
.yc3{bottom:645.693333pt;}
.y6c{bottom:646.333333pt;}
.yfa{bottom:657.213333pt;}
.y95{bottom:661.373333pt;}
.y6b{bottom:661.693333pt;}
.y125{bottom:668.253333pt;}
.yc2{bottom:676.253333pt;}
.y94{bottom:676.733333pt;}
.y6a{bottom:677.053333pt;}
.yc1{bottom:691.613333pt;}
.y69{bottom:692.413333pt;}
.yf9{bottom:694.493333pt;}
.yc0{bottom:706.973333pt;}
.y68{bottom:707.613333pt;}
.yf8{bottom:710.173333pt;}
.ybf{bottom:722.333333pt;}
.y123{bottom:722.813333pt;}
.y67{bottom:722.973333pt;}
.yf7{bottom:725.533333pt;}
.y28{bottom:733.213333pt;}
.ybe{bottom:737.693333pt;}
.y66{bottom:738.333333pt;}
.yf6{bottom:740.573333pt;}
.ybd{bottom:752.893333pt;}
.y65{bottom:753.693333pt;}
.y122{bottom:754.173333pt;}
.yf5{bottom:756.093333pt;}
.ybc{bottom:767.933333pt;}
.y64{bottom:769.053333pt;}
.y121{bottom:769.693333pt;}
.yf4{bottom:771.453333pt;}
.y15{bottom:779.973333pt;}
.ybb{bottom:782.373333pt;}
.y63{bottom:784.453333pt;}
.y120{bottom:785.093333pt;}
.yf3{bottom:786.853333pt;}
.ya7{bottom:787.813333pt;}
.yac{bottom:789.893333pt;}
.yab{bottom:791.813333pt;}
.y62{bottom:799.653333pt;}
.y11f{bottom:800.453333pt;}
.yf2{bottom:802.213333pt;}
.y61{bottom:815.013333pt;}
.y11e{bottom:815.813333pt;}
.yf1{bottom:817.573333pt;}
.y60{bottom:830.373333pt;}
.y11d{bottom:831.173333pt;}
.yf0{bottom:832.773333pt;}
.yb9{bottom:845.573333pt;}
.y5f{bottom:845.733333pt;}
.y11c{bottom:848.613333pt;}
.y13{bottom:857.253333pt;}
.yb8{bottom:860.933333pt;}
.y5e{bottom:861.093333pt;}
.yef{bottom:863.493333pt;}
.y11b{bottom:864.133333pt;}
.y5d{bottom:876.133333pt;}
.y12{bottom:876.293333pt;}
.y93{bottom:876.453333pt;}
.yee{bottom:881.093333pt;}
.y11a{bottom:881.573333pt;}
.y11{bottom:891.653333pt;}
.yb6{bottom:893.573333pt;}
.y119{bottom:893.733333pt;}
.yed{bottom:896.453333pt;}
.y151{bottom:906.693333pt;}
.y10{bottom:907.013333pt;}
.yec{bottom:914.053333pt;}
.yaa{bottom:915.813333pt;}
.y5c{bottom:922.373333pt;}
.yf{bottom:922.533333pt;}
.y118{bottom:922.693333pt;}
.yeb{bottom:926.853333pt;}
.y5b{bottom:937.733333pt;}
.ye{bottom:938.853333pt;}
.yb5{bottom:942.693333pt;}
.y117{bottom:952.773333pt;}
.y5a{bottom:953.093333pt;}
.ye9{bottom:955.173333pt;}
.yb4{bottom:958.053333pt;}
.yd{bottom:960.293333pt;}
.y92{bottom:968.133333pt;}
.y59{bottom:968.453333pt;}
.yb1{bottom:973.253333pt;}
.yc{bottom:981.733333pt;}
.y150{bottom:983.333333pt;}
.y58{bottom:983.653333pt;}
.ye7{bottom:983.973333pt;}
.y91{bottom:998.693333pt;}
.y57{bottom:999.013333pt;}
.yae{bottom:1000.453333pt;}
.y9{bottom:1002.373333pt;}
.y90{bottom:1014.080000pt;}
.y56{bottom:1014.400000pt;}
.y8{bottom:1017.760000pt;}
.y1{bottom:1029.760000pt;}
.y55{bottom:1047.840000pt;}
.y4{bottom:1048.320000pt;}
.y54{bottom:1063.200000pt;}
.h20{height:15.200000pt;}
.hc{height:15.360000pt;}
.h6{height:18.560000pt;}
.h5{height:20.800000pt;}
.h14{height:25.120000pt;}
.h16{height:25.920000pt;}
.h1b{height:25.952000pt;}
.h2e{height:26.400000pt;}
.h2a{height:26.432000pt;}
.h1c{height:27.200000pt;}
.h30{height:27.680000pt;}
.h29{height:28.160000pt;}
.h2d{height:28.192000pt;}
.h2b{height:28.320000pt;}
.h2f{height:28.352000pt;}
.h27{height:29.280000pt;}
.h25{height:29.440000pt;}
.h17{height:30.080000pt;}
.h26{height:30.112000pt;}
.h2c{height:30.400000pt;}
.h21{height:30.560000pt;}
.h1d{height:30.720000pt;}
.h24{height:31.200000pt;}
.h28{height:32.320000pt;}
.h7{height:32.578750pt;}
.h23{height:33.600000pt;}
.h8{height:36.000000pt;}
.h10{height:36.883125pt;}
.h2{height:39.360000pt;}
.h11{height:46.112000pt;}
.h13{height:46.505938pt;}
.h15{height:46.880000pt;}
.h4{height:48.375000pt;}
.he{height:52.108438pt;}
.h9{height:52.134375pt;}
.hb{height:53.535000pt;}
.h31{height:53.920000pt;}
.h33{height:54.112000pt;}
.h1e{height:54.598989pt;}
.h22{height:55.298750pt;}
.h34{height:58.080000pt;}
.h1f{height:58.238750pt;}
.h32{height:58.240000pt;}
.h3{height:59.340000pt;}
.h35{height:59.360000pt;}
.ha{height:75.465000pt;}
.hd{height:76.640000pt;}
.h1a{height:80.480000pt;}
.h18{height:80.640000pt;}
.h19{height:83.540625pt;}
.h12{height:121.280000pt;}
.h36{height:138.106667pt;}
.hf{height:245.306667pt;}
.h0{height:1122.400000pt;}
.h1{height:1122.666667pt;}
.w7{width:27.520000pt;}
.w12{width:66.080000pt;}
.w11{width:72.480000pt;}
.w15{width:89.760000pt;}
.w14{width:89.792000pt;}
.w1a{width:97.312000pt;}
.w1c{width:101.952000pt;}
.w18{width:107.680000pt;}
.w1b{width:108.000000pt;}
.w10{width:108.032000pt;}
.w19{width:118.752000pt;}
.wf{width:120.032000pt;}
.w1d{width:125.600000pt;}
.w20{width:137.920000pt;}
.w22{width:138.106667pt;}
.wa{width:154.426667pt;}
.w6{width:156.666667pt;}
.wc{width:163.226667pt;}
.wb{width:173.306667pt;}
.we{width:186.586667pt;}
.w2{width:192.506667pt;}
.w5{width:200.706667pt;}
.w13{width:222.266667pt;}
.w4{width:239.866667pt;}
.w9{width:240.866667pt;}
.w1e{width:252.066667pt;}
.w1f{width:264.066667pt;}
.w24{width:300.226667pt;}
.w25{width:302.466667pt;}
.w21{width:384.093333pt;}
.w8{width:418.493333pt;}
.w3{width:440.573333pt;}
.wd{width:553.373333pt;}
.w16{width:581.373333pt;}
.w23{width:602.693333pt;}
.w17{width:641.733333pt;}
.w1{width:793.333333pt;}
.w0{width:793.600000pt;}
.x0{left:0.000000pt;}
.x4{left:1.120000pt;}
.x2{left:4.160000pt;}
.x11{left:6.240000pt;}
.xe{left:7.200000pt;}
.x50{left:10.080000pt;}
.x20{left:11.360000pt;}
.x2a{left:13.760000pt;}
.x19{left:15.200000pt;}
.x4f{left:16.200000pt;}
.x1c{left:17.280000pt;}
.x45{left:18.560000pt;}
.x4d{left:19.880000pt;}
.x3e{left:21.920000pt;}
.x30{left:23.680000pt;}
.x2e{left:25.280000pt;}
.x34{left:26.400000pt;}
.x33{left:29.760000pt;}
.x5{left:31.040000pt;}
.x44{left:33.120000pt;}
.x1b{left:34.240000pt;}
.x4a{left:35.240000pt;}
.x2c{left:36.640000pt;}
.x3d{left:37.800000pt;}
.x37{left:43.400000pt;}
.x18{left:44.474667pt;}
.x3c{left:46.906667pt;}
.x1f{left:48.186667pt;}
.x17{left:62.080000pt;}
.x51{left:64.200000pt;}
.x4e{left:68.960000pt;}
.x14{left:77.152000pt;}
.x1{left:80.352000pt;}
.x47{left:84.032000pt;}
.x28{left:86.234667pt;}
.x27{left:88.832000pt;}
.x7{left:96.032000pt;}
.xa{left:100.352000pt;}
.x32{left:102.234667pt;}
.x55{left:105.472000pt;}
.x3f{left:107.560000pt;}
.x46{left:108.840000pt;}
.x42{left:110.920000pt;}
.x41{left:113.800000pt;}
.x43{left:117.000000pt;}
.x21{left:120.192000pt;}
.x13{left:124.032000pt;}
.xc{left:128.672000pt;}
.x53{left:132.032000pt;}
.x9{left:137.146667pt;}
.x54{left:141.466667pt;}
.x12{left:144.026667pt;}
.x4b{left:150.280000pt;}
.x48{left:159.080000pt;}
.x56{left:168.026667pt;}
.x35{left:175.714667pt;}
.x4c{left:180.226667pt;}
.x52{left:192.066667pt;}
.x31{left:196.834667pt;}
.x15{left:199.226667pt;}
.x36{left:214.594667pt;}
.x1a{left:230.946667pt;}
.x57{left:244.034667pt;}
.xf{left:252.226667pt;}
.x3{left:272.866667pt;}
.x10{left:279.746667pt;}
.xb{left:300.866667pt;}
.x22{left:306.946667pt;}
.x29{left:311.106667pt;}
.x38{left:315.266667pt;}
.x1e{left:351.906667pt;}
.xd{left:360.386667pt;}
.x58{left:395.773333pt;}
.x26{left:396.893333pt;}
.x2b{left:400.893333pt;}
.x39{left:412.573333pt;}
.x23{left:426.973333pt;}
.x16{left:440.093333pt;}
.x40{left:466.493333pt;}
.x2d{left:490.653333pt;}
.x6{left:512.733333pt;}
.x3a{left:520.573333pt;}
.x24{left:535.013333pt;}
.x2f{left:580.453333pt;}
.x1d{left:595.973333pt;}
.x49{left:598.533333pt;}
.x25{left:607.493333pt;}
.x3b{left:628.613333pt;}
.x8{left:684.480000pt;}
}




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