
    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_3aeb0b7af2ec459fff6187b0.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_23225afabe7ee24a49d2fb6d.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_7ae73e5df2c81d9c63a22fab.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_9ea2d8abb506261a4b5a2da9.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_08cbc0ba9f9ee7b0a95a40ae.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.921387;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_e5f93799997e697f2d886820.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.938965;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_792f5bed9cec6627f7d48a85.woff2')format("woff");}.ff7{font-family:ff7;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;}
.m1{transform:matrix(0.000000,0.250000,-0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,0.250000,-0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,0.250000,-0.250000,0.000000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v5{vertical-align:-27.360000px;}
.v3{vertical-align:-20.880000px;}
.v4{vertical-align:-9.360000px;}
.v0{vertical-align:0.000000px;}
.v7{vertical-align:20.880000px;}
.v6{vertical-align:23.760000px;}
.v1{vertical-align:27.360000px;}
.v2{vertical-align:30.240000px;}
.ls26{letter-spacing:-1.392000px;}
.ls28{letter-spacing:-0.672000px;}
.ls15{letter-spacing:-0.666000px;}
.ls11{letter-spacing:-0.540000px;}
.ls25{letter-spacing:-0.486600px;}
.ls14{letter-spacing:-0.460200px;}
.ls24{letter-spacing:-0.450600px;}
.lse{letter-spacing:-0.360000px;}
.ls13{letter-spacing:-0.223800px;}
.ls20{letter-spacing:-0.108000px;}
.ls18{letter-spacing:-0.053280px;}
.lsf{letter-spacing:-0.018000px;}
.ls9{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.012960px;}
.lsc{letter-spacing:0.018000px;}
.ls12{letter-spacing:0.053280px;}
.ls1b{letter-spacing:0.072000px;}
.ls17{letter-spacing:0.106800px;}
.ls10{letter-spacing:0.108000px;}
.ls4{letter-spacing:0.180000px;}
.ls16{letter-spacing:0.206400px;}
.ls1f{letter-spacing:0.223920px;}
.ls22{letter-spacing:0.259800px;}
.ls21{letter-spacing:0.269400px;}
.ls1a{letter-spacing:0.298800px;}
.lsd{letter-spacing:0.305400px;}
.ls3{letter-spacing:0.315360px;}
.ls0{letter-spacing:0.360000px;}
.ls1d{letter-spacing:0.460080px;}
.lsa{letter-spacing:0.493800px;}
.ls29{letter-spacing:0.496200px;}
.ls1e{letter-spacing:0.630720px;}
.lsb{letter-spacing:0.720000px;}
.ls1c{letter-spacing:0.738000px;}
.ls19{letter-spacing:0.900000px;}
.ls23{letter-spacing:1.620000px;}
.ls8{letter-spacing:2.880000px;}
.ls1{letter-spacing:3.960000px;}
.ls27{letter-spacing:5.940000px;}
.ls5{letter-spacing:66.240000px;}
.ls7{letter-spacing:66.960000px;}
.ls6{letter-spacing:67.680000px;}
.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;}
}
.ws7{word-spacing:-23.940000px;}
.ws5{word-spacing:-18.000000px;}
.wsb{word-spacing:-16.865400px;}
.ws12{word-spacing:-15.300000px;}
.ws19{word-spacing:-15.199800px;}
.ws14{word-spacing:-15.046800px;}
.ws6{word-spacing:-14.940000px;}
.ws15{word-spacing:-14.886720px;}
.ws13{word-spacing:-14.274000px;}
.ws0{word-spacing:-13.860000px;}
.ws18{word-spacing:-13.518000px;}
.wsa{word-spacing:-13.500000px;}
.wsd{word-spacing:-13.482000px;}
.ws16{word-spacing:-13.392000px;}
.wsc{word-spacing:-13.140000px;}
.ws1d{word-spacing:-12.556200px;}
.ws4{word-spacing:-12.420000px;}
.ws11{word-spacing:-12.060000px;}
.wsf{word-spacing:-11.836200px;}
.ws10{word-spacing:-11.700000px;}
.ws3{word-spacing:-11.160000px;}
.ws2{word-spacing:-10.933800px;}
.ws1b{word-spacing:-10.668000px;}
.ws1{word-spacing:-10.440000px;}
.ws8{word-spacing:-9.720000px;}
.ws17{word-spacing:-9.000000px;}
.ws1c{word-spacing:-8.280000px;}
.ws9{word-spacing:-7.560000px;}
.ws1a{word-spacing:-7.073400px;}
.wse{word-spacing:0.000000px;}
._1a{margin-left:-2.197440px;}
._1{margin-left:-1.127520px;}
._0{width:1.419840px;}
._2{width:2.634240px;}
._3{width:3.885120px;}
._4{width:4.923360px;}
._5{width:5.995200px;}
._d{width:7.211040px;}
._8{width:8.550960px;}
._7{width:9.574320px;}
._c{width:10.626960px;}
._e{width:11.686320px;}
._13{width:12.795120px;}
._10{width:13.864320px;}
._11{width:16.104480px;}
._9{width:17.715600px;}
._a{width:18.722880px;}
._12{width:20.198880px;}
._18{width:21.340800px;}
._19{width:22.410000px;}
._16{width:23.963760px;}
._15{width:28.691280px;}
._14{width:29.700720px;}
._1f{width:32.628240px;}
._21{width:37.825920px;}
._22{width:43.850160px;}
._23{width:45.679440px;}
._1d{width:53.419680px;}
._1e{width:55.714560px;}
._20{width:66.185280px;}
._b{width:68.183040px;}
._1c{width:397.551600px;}
._1b{width:398.848320px;}
._24{width:440.304480px;}
._25{width:441.697440px;}
._17{width:1314.707520px;}
._f{width:1834.296000px;}
._6{width:2055.689280px;}
.fc9{color:rgb(0,0,255);}
.fc8{color:transparent;}
.fc7{color:rgb(3,50,255);}
.fc4{color:rgb(255,0,0);}
.fcc{color:rgb(35,35,35);}
.fcb{color:rgb(85,85,85);}
.fca{color:rgb(34,34,34);}
.fc6{color:rgb(166,166,166);}
.fc5{color:rgb(128,128,128);}
.fc3{color:rgb(13,13,13);}
.fc2{color:rgb(17,17,17);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:5.760000px;}
.fsa{font-size:18.000000px;}
.fsd{font-size:23.760000px;}
.fs9{font-size:30.240000px;}
.fs7{font-size:36.000000px;}
.fs5{font-size:38.880000px;}
.fs1{font-size:41.760000px;}
.fs2{font-size:48.240000px;}
.fs0{font-size:54.000000px;}
.fs4{font-size:59.760000px;}
.fsb{font-size:66.240000px;}
.fs3{font-size:72.000000px;}
.fsc{font-size:84.240000px;}
.fs8{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.yf0{bottom:0.885000px;}
.yf3{bottom:3.600000px;}
.y49{bottom:4.320000px;}
.yf5{bottom:4.500000px;}
.yab{bottom:5.400000px;}
.y2d{bottom:5.580000px;}
.yd1{bottom:5.760000px;}
.ya9{bottom:5.940000px;}
.yae{bottom:6.480000px;}
.ya7{bottom:7.020000px;}
.y105{bottom:7.560000px;}
.yfa{bottom:7.740000px;}
.y109{bottom:8.085000px;}
.yf8{bottom:8.100000px;}
.y10b{bottom:8.265000px;}
.yfe{bottom:8.280000px;}
.y100{bottom:8.445000px;}
.yfc{bottom:8.460000px;}
.yce{bottom:14.400000px;}
.y48{bottom:18.180000px;}
.y85{bottom:18.900000px;}
.y4c{bottom:19.260000px;}
.y2c{bottom:19.440000px;}
.y4{bottom:19.800000px;}
.ycf{bottom:23.250000px;}
.y2b{bottom:27.000000px;}
.y3{bottom:33.840000px;}
.y2a{bottom:42.660000px;}
.y2{bottom:47.700000px;}
.y29{bottom:58.140000px;}
.y1{bottom:60.480000px;}
.ybf{bottom:73.260000px;}
.y28{bottom:73.620000px;}
.ycc{bottom:77.220000px;}
.y18f{bottom:80.640000px;}
.y46{bottom:83.880000px;}
.y118{bottom:86.040000px;}
.y27{bottom:89.100000px;}
.ybe{bottom:93.420000px;}
.y18e{bottom:94.320000px;}
.ycb{bottom:96.660000px;}
.yee{bottom:96.840000px;}
.y14e{bottom:99.000000px;}
.y45{bottom:103.860000px;}
.y26{bottom:104.760000px;}
.y117{bottom:105.840000px;}
.y18d{bottom:108.180000px;}
.y82{bottom:108.900000px;}
.yed{bottom:110.700000px;}
.yca{bottom:111.420000px;}
.y14d{bottom:112.860000px;}
.ybd{bottom:113.220000px;}
.y25{bottom:120.270000px;}
.y18c{bottom:122.040000px;}
.y44{bottom:123.660000px;}
.yec{bottom:124.740000px;}
.y116{bottom:125.640000px;}
.y81{bottom:128.700000px;}
.y14c{bottom:132.660000px;}
.ybc{bottom:133.200000px;}
.y18b{bottom:135.720000px;}
.y24{bottom:135.750000px;}
.y43{bottom:143.460000px;}
.y115{bottom:145.620000px;}
.y14b{bottom:146.340000px;}
.y80{bottom:148.500000px;}
.y18a{bottom:149.616000px;}
.y23{bottom:151.230000px;}
.ybb{bottom:153.030000px;}
.y2f{bottom:155.010000px;}
.y42{bottom:163.290000px;}
.y189{bottom:163.470000px;}
.y114{bottom:165.450000px;}
.y14a{bottom:166.170000px;}
.y22{bottom:166.890000px;}
.y7f{bottom:168.330000px;}
.yba{bottom:172.830000px;}
.y188{bottom:177.150000px;}
.y149{bottom:180.030000px;}
.y21{bottom:182.370000px;}
.y41{bottom:183.090000px;}
.y113{bottom:185.250000px;}
.y7e{bottom:188.310000px;}
.y187{bottom:191.010000px;}
.yb9{bottom:192.630000px;}
.y148{bottom:193.710000px;}
.y20{bottom:197.850000px;}
.y40{bottom:203.070000px;}
.y186{bottom:204.870000px;}
.y112{bottom:205.050000px;}
.y7d{bottom:207.750000px;}
.yb8{bottom:212.430000px;}
.y1f{bottom:213.330000px;}
.y147{bottom:213.510000px;}
.y185{bottom:221.790000px;}
.y3f{bottom:222.870000px;}
.y111{bottom:224.850000px;}
.y146{bottom:227.370000px;}
.y7c{bottom:227.550000px;}
.y1e{bottom:228.810000px;}
.yb7{bottom:232.410000px;}
.y184{bottom:241.590000px;}
.y3e{bottom:242.670000px;}
.y1d{bottom:244.470000px;}
.y110{bottom:244.830000px;}
.y145{bottom:247.170000px;}
.y7b{bottom:247.710000px;}
.yb6{bottom:252.210000px;}
.y1c{bottom:259.950000px;}
.y144{bottom:261.030000px;}
.y183{bottom:261.390000px;}
.y3d{bottom:262.470000px;}
.y10f{bottom:264.630000px;}
.y7a{bottom:267.510000px;}
.yb5{bottom:272.010000px;}
.y1b{bottom:275.430000px;}
.y143{bottom:280.830000px;}
.y182{bottom:281.190000px;}
.y3c{bottom:282.270000px;}
.y10e{bottom:284.430000px;}
.y79{bottom:287.490000px;}
.yb4{bottom:291.810000px;}
.y142{bottom:294.510000px;}
.y1a{bottom:297.390000px;}
.yf1{bottom:301.185000px;}
.y3b{bottom:302.250000px;}
.yef{bottom:302.985000px;}
.y181{bottom:303.870000px;}
.y10d{bottom:304.230000px;}
.y78{bottom:307.290000px;}
.y141{bottom:308.370000px;}
.y2e{bottom:309.990000px;}
.yb3{bottom:311.610000px;}
.y180{bottom:317.730000px;}
.y3a{bottom:322.050000px;}
.y10c{bottom:324.030000px;}
.y77{bottom:327.090000px;}
.y140{bottom:328.170000px;}
.yb2{bottom:331.590000px;}
.yeb{bottom:332.310000px;}
.y39{bottom:341.850000px;}
.y13f{bottom:342.030000px;}
.y102{bottom:343.650000px;}
.y76{bottom:346.890000px;}
.yb1{bottom:351.030000px;}
.y17f{bottom:351.390000px;}
.yea{bottom:352.290000px;}
.y101{bottom:358.425000px;}
.y10a{bottom:361.485000px;}
.y38{bottom:361.650000px;}
.y13e{bottom:361.830000px;}
.y17e{bottom:365.070000px;}
.y75{bottom:366.690000px;}
.yb0{bottom:370.830000px;}
.ye9{bottom:372.090000px;}
.y13d{bottom:375.510000px;}
.y37{bottom:381.450000px;}
.yff{bottom:381.825000px;}
.y108{bottom:384.525000px;}
.y17d{bottom:384.870000px;}
.y74{bottom:386.670000px;}
.yaf{bottom:389.730000px;}
.ye8{bottom:391.890000px;}
.y13c{bottom:395.310000px;}
.y17c{bottom:398.775000px;}
.y36{bottom:401.475000px;}
.yfd{bottom:405.435000px;}
.y73{bottom:406.155000px;}
.y107{bottom:407.415000px;}
.y13b{bottom:409.215000px;}
.ye7{bottom:411.735000px;}
.y17b{bottom:412.635000px;}
.y35{bottom:421.275000px;}
.yad{bottom:423.075000px;}
.y72{bottom:425.955000px;}
.y17a{bottom:426.315000px;}
.yfb{bottom:428.835000px;}
.y13a{bottom:429.015000px;}
.y106{bottom:430.455000px;}
.ye6{bottom:431.535000px;}
.y34{bottom:441.075000px;}
.y139{bottom:442.875000px;}
.yac{bottom:443.955000px;}
.yc9{bottom:445.755000px;}
.y71{bottom:446.115000px;}
.ye5{bottom:451.515000px;}
.yf9{bottom:452.415000px;}
.y104{bottom:453.315000px;}
.y179{bottom:459.975000px;}
.y33{bottom:460.875000px;}
.y138{bottom:462.675000px;}
.yaa{bottom:464.655000px;}
.y70{bottom:465.915000px;}
.ye4{bottom:471.315000px;}
.yf7{bottom:475.275000px;}
.y103{bottom:475.815000px;}
.y137{bottom:476.355000px;}
.y178{bottom:479.775000px;}
.y32{bottom:480.675000px;}
.ya8{bottom:484.275000px;}
.y6f{bottom:485.895000px;}
.y136{bottom:490.215000px;}
.ye3{bottom:490.755000px;}
.y177{bottom:493.635000px;}
.y31{bottom:500.295000px;}
.y6e{bottom:505.695000px;}
.ya6{bottom:505.875000px;}
.y135{bottom:507.135000px;}
.ye2{bottom:511.815000px;}
.y176{bottom:513.435000px;}
.y30{bottom:520.455000px;}
.y6d{bottom:525.135000px;}
.yc8{bottom:525.495000px;}
.y134{bottom:526.575000px;}
.y175{bottom:527.115000px;}
.y19{bottom:534.135000px;}
.ye1{bottom:534.675000px;}
.ya5{bottom:536.295000px;}
.y6c{bottom:544.935000px;}
.yc7{bottom:545.295000px;}
.y174{bottom:546.915000px;}
.y133{bottom:547.815000px;}
.ye0{bottom:554.655000px;}
.ya4{bottom:556.095000px;}
.y173{bottom:560.775000px;}
.y6b{bottom:565.095000px;}
.y132{bottom:568.155000px;}
.ydf{bottom:571.035000px;}
.y172{bottom:574.635000px;}
.ya3{bottom:576.075000px;}
.y6a{bottom:585.075000px;}
.y171{bottom:594.435000px;}
.ya2{bottom:595.875000px;}
.y131{bottom:602.355000px;}
.y69{bottom:604.875000px;}
.y170{bottom:608.115000px;}
.ya1{bottom:615.675000px;}
.y130{bottom:619.995000px;}
.y68{bottom:624.675000px;}
.y16f{bottom:627.915000px;}
.ya0{bottom:635.475000px;}
.y12f{bottom:637.275000px;}
.y16e{bottom:641.775000px;}
.y67{bottom:644.475000px;}
.y12e{bottom:654.585000px;}
.y9f{bottom:655.305000px;}
.y16d{bottom:655.665000px;}
.y66{bottom:664.305000px;}
.y12d{bottom:671.325000px;}
.y9e{bottom:675.285000px;}
.y16c{bottom:675.465000px;}
.y65{bottom:684.285000px;}
.y12c{bottom:688.605000px;}
.y16b{bottom:689.145000px;}
.y9d{bottom:695.085000px;}
.y16a{bottom:703.005000px;}
.y64{bottom:704.085000px;}
.y12b{bottom:706.245000px;}
.y9c{bottom:714.885000px;}
.y169{bottom:722.805000px;}
.y12a{bottom:723.525000px;}
.y63{bottom:723.885000px;}
.y9b{bottom:734.685000px;}
.y168{bottom:736.665000px;}
.y129{bottom:740.445000px;}
.y62{bottom:743.685000px;}
.y9a{bottom:754.485000px;}
.y167{bottom:756.465000px;}
.y128{bottom:757.725000px;}
.y61{bottom:763.125000px;}
.yc6{bottom:763.485000px;}
.y166{bottom:770.145000px;}
.y99{bottom:774.465000px;}
.y127{bottom:775.185000px;}
.y60{bottom:783.105000px;}
.yc5{bottom:783.465000px;}
.yf4{bottom:787.785000px;}
.yf2{bottom:789.405000px;}
.y165{bottom:789.945000px;}
.y126{bottom:792.465000px;}
.y98{bottom:794.265000px;}
.y5f{bottom:803.265000px;}
.y164{bottom:803.805000px;}
.y125{bottom:809.385000px;}
.y97{bottom:814.065000px;}
.y163{bottom:817.485000px;}
.y5e{bottom:823.065000px;}
.y124{bottom:826.665000px;}
.y96{bottom:833.865000px;}
.y162{bottom:837.285000px;}
.y5d{bottom:842.865000px;}
.y123{bottom:844.305000px;}
.yde{bottom:845.205000px;}
.y18{bottom:850.065000px;}
.y161{bottom:851.145000px;}
.y95{bottom:853.665000px;}
.y122{bottom:861.585000px;}
.y5c{bottom:862.665000px;}
.ydd{bottom:865.005000px;}
.y17{bottom:868.965000px;}
.y94{bottom:873.645000px;}
.y121{bottom:878.325000px;}
.y16{bottom:881.745000px;}
.y5b{bottom:882.285000px;}
.yc4{bottom:882.645000px;}
.ydc{bottom:884.805000px;}
.y93{bottom:893.445000px;}
.y15{bottom:893.985000px;}
.y120{bottom:895.605000px;}
.y160{bottom:898.530000px;}
.y5a{bottom:902.130000px;}
.yc3{bottom:902.490000px;}
.ydb{bottom:904.650000px;}
.y14{bottom:907.890000px;}
.y15f{bottom:912.390000px;}
.y92{bottom:912.930000px;}
.y11f{bottom:913.290000px;}
.y13{bottom:921.750000px;}
.y59{bottom:921.930000px;}
.yf6{bottom:922.290000px;}
.yda{bottom:924.630000px;}
.y11e{bottom:930.570000px;}
.y15e{bottom:932.190000px;}
.y91{bottom:932.730000px;}
.y12{bottom:935.430000px;}
.yc2{bottom:941.730000px;}
.y58{bottom:942.090000px;}
.y11{bottom:944.430000px;}
.y15d{bottom:946.050000px;}
.y11d{bottom:947.490000px;}
.y90{bottom:952.890000px;}
.y10{bottom:955.950000px;}
.y15c{bottom:959.730000px;}
.yc1{bottom:961.530000px;}
.y57{bottom:961.890000px;}
.yd9{bottom:964.230000px;}
.y11c{bottom:964.590000px;}
.y8f{bottom:972.870000px;}
.yf{bottom:976.110000px;}
.y15b{bottom:979.530000px;}
.yc0{bottom:981.510000px;}
.y56{bottom:981.870000px;}
.yd8{bottom:984.030000px;}
.y11b{bottom:984.390000px;}
.y8e{bottom:992.670000px;}
.y15a{bottom:993.390000px;}
.ye{bottom:999.870000px;}
.y55{bottom:1001.670000px;}
.yd7{bottom:1003.470000px;}
.y11a{bottom:1007.070000px;}
.y159{bottom:1007.250000px;}
.y8d{bottom:1012.470000px;}
.y158{bottom:1020.930000px;}
.y54{bottom:1021.470000px;}
.yd{bottom:1022.010000px;}
.yd6{bottom:1023.450000px;}
.y8c{bottom:1032.270000px;}
.yd5{bottom:1038.210000px;}
.y157{bottom:1040.730000px;}
.y53{bottom:1041.270000px;}
.yc{bottom:1049.550000px;}
.y8b{bottom:1052.070000px;}
.y156{bottom:1054.590000px;}
.yd4{bottom:1056.030000px;}
.y52{bottom:1061.070000px;}
.y155{bottom:1068.450000px;}
.y8a{bottom:1072.050000px;}
.yd3{bottom:1073.850000px;}
.yb{bottom:1077.090000px;}
.y51{bottom:1081.050000px;}
.y154{bottom:1088.250000px;}
.yd2{bottom:1091.670000px;}
.y89{bottom:1091.850000px;}
.y50{bottom:1100.850000px;}
.y153{bottom:1101.930000px;}
.ya{bottom:1102.470000px;}
.yd0{bottom:1109.490000px;}
.y88{bottom:1111.650000px;}
.y47{bottom:1112.730000px;}
.y9{bottom:1117.950000px;}
.y4f{bottom:1120.650000px;}
.y152{bottom:1121.730000px;}
.ycd{bottom:1128.210000px;}
.y87{bottom:1131.450000px;}
.y151{bottom:1135.590000px;}
.y4e{bottom:1140.450000px;}
.y150{bottom:1149.480000px;}
.y119{bottom:1150.920000px;}
.y86{bottom:1151.280000px;}
.y8{bottom:1155.960000px;}
.y4d{bottom:1160.280000px;}
.y14f{bottom:1163.160000px;}
.y7{bottom:1167.480000px;}
.y84{bottom:1169.460000px;}
.y6{bottom:1175.940000px;}
.y4b{bottom:1178.460000px;}
.y83{bottom:1188.720000px;}
.y5{bottom:1197.540000px;}
.y4a{bottom:1197.720000px;}
.h6{height:5.650313px;}
.h23{height:11.865000px;}
.hd{height:17.666016px;}
.h22{height:17.805000px;}
.h21{height:17.985000px;}
.h11{height:18.140625px;}
.h1a{height:19.605000px;}
.h24{height:19.800000px;}
.h1b{height:20.685000px;}
.h25{height:20.700000px;}
.h19{height:20.865000px;}
.h1c{height:21.585000px;}
.h2a{height:21.765000px;}
.h27{height:22.125000px;}
.h29{height:22.845000px;}
.h2c{height:22.881000px;}
.h2b{height:23.025000px;}
.h26{height:23.385000px;}
.h18{height:23.565000px;}
.h28{height:23.601000px;}
.h15{height:27.705000px;}
.hc{height:29.664141px;}
.h1f{height:36.030000px;}
.hb{height:36.281250px;}
.h3{height:40.985156px;}
.h16{height:42.922699px;}
.h7{height:47.344922px;}
.h4{height:48.616875px;}
.h2e{height:50.558906px;}
.h2{height:52.998047px;}
.h8{height:54.421875px;}
.h13{height:55.503472px;}
.h14{height:58.651172px;}
.h20{height:60.041250px;}
.he{height:60.226875px;}
.h10{height:65.010937px;}
.h1d{height:65.518594px;}
.h1e{height:65.638594px;}
.ha{height:66.543750px;}
.h12{height:66.757500px;}
.h17{height:70.664062px;}
.h5{height:72.562500px;}
.h2d{height:82.676953px;}
.h9{height:96.508125px;}
.hf{height:309.990000px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.wf{width:28.245000px;}
.wd{width:28.249500px;}
.we{width:28.260000px;}
.w11{width:31.485000px;}
.w10{width:33.649500px;}
.w8{width:59.209500px;}
.w12{width:95.029500px;}
.w3{width:101.730000px;}
.w15{width:101.865000px;}
.w16{width:117.741000px;}
.w13{width:117.921000px;}
.w7{width:121.350000px;}
.wa{width:127.656000px;}
.w17{width:132.870000px;}
.w14{width:140.256000px;}
.w9{width:170.839500px;}
.w6{width:175.155000px;}
.wb{width:191.175000px;}
.wc{width:191.190000px;}
.w4{width:232.050000px;}
.w5{width:429.184500px;}
.w2{width:640.890000px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.xc{left:-36.900000px;}
.xb{left:-19.800000px;}
.xa{left:-5.040000px;}
.x0{left:0.000000px;}
.x12{left:8.089500px;}
.x9{left:10.650000px;}
.x1d{left:14.563500px;}
.x37{left:18.900000px;}
.x1b{left:21.229500px;}
.x32{left:22.500000px;}
.x23{left:23.760000px;}
.x8{left:26.850000px;}
.x14{left:30.765000px;}
.x25{left:32.745000px;}
.x24{left:36.000000px;}
.x33{left:39.420000px;}
.x26{left:40.500000px;}
.x7{left:42.510000px;}
.x31{left:44.100000px;}
.x27{left:50.760000px;}
.x1e{left:52.183500px;}
.x30{left:55.425000px;}
.x6{left:58.710000px;}
.x22{left:65.520000px;}
.x19{left:68.430000px;}
.x28{left:70.365000px;}
.x18{left:71.670000px;}
.x17{left:75.090000px;}
.x5{left:78.150000px;}
.x2{left:81.036000px;}
.x16{left:84.090000px;}
.x2a{left:86.446500px;}
.xd{left:108.036000px;}
.x38{left:113.076000px;}
.x1c{left:138.106500px;}
.x39{left:158.250000px;}
.x2e{left:176.085000px;}
.x2f{left:293.835000px;}
.x1f{left:308.955000px;}
.x2b{left:332.175000px;}
.xf{left:359.715000px;}
.x11{left:393.735000px;}
.x29{left:409.965000px;}
.x10{left:434.265000px;}
.x1{left:435.345000px;}
.x20{left:436.620000px;}
.x3{left:445.605000px;}
.x34{left:459.105000px;}
.x2d{left:499.260000px;}
.x13{left:510.240000px;}
.x35{left:561.000000px;}
.x2c{left:571.650000px;}
.xe{left:590.370000px;}
.x1a{left:625.650000px;}
.x21{left:627.810000px;}
.x36{left:678.750000px;}
.x15{left:685.410000px;}
.x4{left:721.950000px;}
@media print{
.v5{vertical-align:-24.320000pt;}
.v3{vertical-align:-18.560000pt;}
.v4{vertical-align:-8.320000pt;}
.v0{vertical-align:0.000000pt;}
.v7{vertical-align:18.560000pt;}
.v6{vertical-align:21.120000pt;}
.v1{vertical-align:24.320000pt;}
.v2{vertical-align:26.880000pt;}
.ls26{letter-spacing:-1.237333pt;}
.ls28{letter-spacing:-0.597333pt;}
.ls15{letter-spacing:-0.592000pt;}
.ls11{letter-spacing:-0.480000pt;}
.ls25{letter-spacing:-0.432533pt;}
.ls14{letter-spacing:-0.409067pt;}
.ls24{letter-spacing:-0.400533pt;}
.lse{letter-spacing:-0.320000pt;}
.ls13{letter-spacing:-0.198933pt;}
.ls20{letter-spacing:-0.096000pt;}
.ls18{letter-spacing:-0.047360pt;}
.lsf{letter-spacing:-0.016000pt;}
.ls9{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.011520pt;}
.lsc{letter-spacing:0.016000pt;}
.ls12{letter-spacing:0.047360pt;}
.ls1b{letter-spacing:0.064000pt;}
.ls17{letter-spacing:0.094933pt;}
.ls10{letter-spacing:0.096000pt;}
.ls4{letter-spacing:0.160000pt;}
.ls16{letter-spacing:0.183467pt;}
.ls1f{letter-spacing:0.199040pt;}
.ls22{letter-spacing:0.230933pt;}
.ls21{letter-spacing:0.239467pt;}
.ls1a{letter-spacing:0.265600pt;}
.lsd{letter-spacing:0.271467pt;}
.ls3{letter-spacing:0.280320pt;}
.ls0{letter-spacing:0.320000pt;}
.ls1d{letter-spacing:0.408960pt;}
.lsa{letter-spacing:0.438933pt;}
.ls29{letter-spacing:0.441067pt;}
.ls1e{letter-spacing:0.560640pt;}
.lsb{letter-spacing:0.640000pt;}
.ls1c{letter-spacing:0.656000pt;}
.ls19{letter-spacing:0.800000pt;}
.ls23{letter-spacing:1.440000pt;}
.ls8{letter-spacing:2.560000pt;}
.ls1{letter-spacing:3.520000pt;}
.ls27{letter-spacing:5.280000pt;}
.ls5{letter-spacing:58.880000pt;}
.ls7{letter-spacing:59.520000pt;}
.ls6{letter-spacing:60.160000pt;}
.ws7{word-spacing:-21.280000pt;}
.ws5{word-spacing:-16.000000pt;}
.wsb{word-spacing:-14.991467pt;}
.ws12{word-spacing:-13.600000pt;}
.ws19{word-spacing:-13.510933pt;}
.ws14{word-spacing:-13.374933pt;}
.ws6{word-spacing:-13.280000pt;}
.ws15{word-spacing:-13.232640pt;}
.ws13{word-spacing:-12.688000pt;}
.ws0{word-spacing:-12.320000pt;}
.ws18{word-spacing:-12.016000pt;}
.wsa{word-spacing:-12.000000pt;}
.wsd{word-spacing:-11.984000pt;}
.ws16{word-spacing:-11.904000pt;}
.wsc{word-spacing:-11.680000pt;}
.ws1d{word-spacing:-11.161067pt;}
.ws4{word-spacing:-11.040000pt;}
.ws11{word-spacing:-10.720000pt;}
.wsf{word-spacing:-10.521067pt;}
.ws10{word-spacing:-10.400000pt;}
.ws3{word-spacing:-9.920000pt;}
.ws2{word-spacing:-9.718933pt;}
.ws1b{word-spacing:-9.482667pt;}
.ws1{word-spacing:-9.280000pt;}
.ws8{word-spacing:-8.640000pt;}
.ws17{word-spacing:-8.000000pt;}
.ws1c{word-spacing:-7.360000pt;}
.ws9{word-spacing:-6.720000pt;}
.ws1a{word-spacing:-6.287467pt;}
.wse{word-spacing:0.000000pt;}
._1a{margin-left:-1.953280pt;}
._1{margin-left:-1.002240pt;}
._0{width:1.262080pt;}
._2{width:2.341547pt;}
._3{width:3.453440pt;}
._4{width:4.376320pt;}
._5{width:5.329067pt;}
._d{width:6.409813pt;}
._8{width:7.600853pt;}
._7{width:8.510507pt;}
._c{width:9.446187pt;}
._e{width:10.387840pt;}
._13{width:11.373440pt;}
._10{width:12.323840pt;}
._11{width:14.315093pt;}
._9{width:15.747200pt;}
._a{width:16.642560pt;}
._12{width:17.954560pt;}
._18{width:18.969600pt;}
._19{width:19.920000pt;}
._16{width:21.301120pt;}
._15{width:25.503360pt;}
._14{width:26.400640pt;}
._1f{width:29.002880pt;}
._21{width:33.623040pt;}
._22{width:38.977920pt;}
._23{width:40.603947pt;}
._1d{width:47.484160pt;}
._1e{width:49.524053pt;}
._20{width:58.831360pt;}
._b{width:60.607147pt;}
._1c{width:353.379200pt;}
._1b{width:354.531840pt;}
._24{width:391.381760pt;}
._25{width:392.619947pt;}
._17{width:1168.628907pt;}
._f{width:1630.485333pt;}
._6{width:1827.279360pt;}
.fs6{font-size:5.120000pt;}
.fsa{font-size:16.000000pt;}
.fsd{font-size:21.120000pt;}
.fs9{font-size:26.880000pt;}
.fs7{font-size:32.000000pt;}
.fs5{font-size:34.560000pt;}
.fs1{font-size:37.120000pt;}
.fs2{font-size:42.880000pt;}
.fs0{font-size:48.000000pt;}
.fs4{font-size:53.120000pt;}
.fsb{font-size:58.880000pt;}
.fs3{font-size:64.000000pt;}
.fsc{font-size:74.880000pt;}
.fs8{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.yf0{bottom:0.786667pt;}
.yf3{bottom:3.200000pt;}
.y49{bottom:3.840000pt;}
.yf5{bottom:4.000000pt;}
.yab{bottom:4.800000pt;}
.y2d{bottom:4.960000pt;}
.yd1{bottom:5.120000pt;}
.ya9{bottom:5.280000pt;}
.yae{bottom:5.760000pt;}
.ya7{bottom:6.240000pt;}
.y105{bottom:6.720000pt;}
.yfa{bottom:6.880000pt;}
.y109{bottom:7.186667pt;}
.yf8{bottom:7.200000pt;}
.y10b{bottom:7.346667pt;}
.yfe{bottom:7.360000pt;}
.y100{bottom:7.506667pt;}
.yfc{bottom:7.520000pt;}
.yce{bottom:12.800000pt;}
.y48{bottom:16.160000pt;}
.y85{bottom:16.800000pt;}
.y4c{bottom:17.120000pt;}
.y2c{bottom:17.280000pt;}
.y4{bottom:17.600000pt;}
.ycf{bottom:20.666667pt;}
.y2b{bottom:24.000000pt;}
.y3{bottom:30.080000pt;}
.y2a{bottom:37.920000pt;}
.y2{bottom:42.400000pt;}
.y29{bottom:51.680000pt;}
.y1{bottom:53.760000pt;}
.ybf{bottom:65.120000pt;}
.y28{bottom:65.440000pt;}
.ycc{bottom:68.640000pt;}
.y18f{bottom:71.680000pt;}
.y46{bottom:74.560000pt;}
.y118{bottom:76.480000pt;}
.y27{bottom:79.200000pt;}
.ybe{bottom:83.040000pt;}
.y18e{bottom:83.840000pt;}
.ycb{bottom:85.920000pt;}
.yee{bottom:86.080000pt;}
.y14e{bottom:88.000000pt;}
.y45{bottom:92.320000pt;}
.y26{bottom:93.120000pt;}
.y117{bottom:94.080000pt;}
.y18d{bottom:96.160000pt;}
.y82{bottom:96.800000pt;}
.yed{bottom:98.400000pt;}
.yca{bottom:99.040000pt;}
.y14d{bottom:100.320000pt;}
.ybd{bottom:100.640000pt;}
.y25{bottom:106.906667pt;}
.y18c{bottom:108.480000pt;}
.y44{bottom:109.920000pt;}
.yec{bottom:110.880000pt;}
.y116{bottom:111.680000pt;}
.y81{bottom:114.400000pt;}
.y14c{bottom:117.920000pt;}
.ybc{bottom:118.400000pt;}
.y18b{bottom:120.640000pt;}
.y24{bottom:120.666667pt;}
.y43{bottom:127.520000pt;}
.y115{bottom:129.440000pt;}
.y14b{bottom:130.080000pt;}
.y80{bottom:132.000000pt;}
.y18a{bottom:132.992000pt;}
.y23{bottom:134.426667pt;}
.ybb{bottom:136.026667pt;}
.y2f{bottom:137.786667pt;}
.y42{bottom:145.146667pt;}
.y189{bottom:145.306667pt;}
.y114{bottom:147.066667pt;}
.y14a{bottom:147.706667pt;}
.y22{bottom:148.346667pt;}
.y7f{bottom:149.626667pt;}
.yba{bottom:153.626667pt;}
.y188{bottom:157.466667pt;}
.y149{bottom:160.026667pt;}
.y21{bottom:162.106667pt;}
.y41{bottom:162.746667pt;}
.y113{bottom:164.666667pt;}
.y7e{bottom:167.386667pt;}
.y187{bottom:169.786667pt;}
.yb9{bottom:171.226667pt;}
.y148{bottom:172.186667pt;}
.y20{bottom:175.866667pt;}
.y40{bottom:180.506667pt;}
.y186{bottom:182.106667pt;}
.y112{bottom:182.266667pt;}
.y7d{bottom:184.666667pt;}
.yb8{bottom:188.826667pt;}
.y1f{bottom:189.626667pt;}
.y147{bottom:189.786667pt;}
.y185{bottom:197.146667pt;}
.y3f{bottom:198.106667pt;}
.y111{bottom:199.866667pt;}
.y146{bottom:202.106667pt;}
.y7c{bottom:202.266667pt;}
.y1e{bottom:203.386667pt;}
.yb7{bottom:206.586667pt;}
.y184{bottom:214.746667pt;}
.y3e{bottom:215.706667pt;}
.y1d{bottom:217.306667pt;}
.y110{bottom:217.626667pt;}
.y145{bottom:219.706667pt;}
.y7b{bottom:220.186667pt;}
.yb6{bottom:224.186667pt;}
.y1c{bottom:231.066667pt;}
.y144{bottom:232.026667pt;}
.y183{bottom:232.346667pt;}
.y3d{bottom:233.306667pt;}
.y10f{bottom:235.226667pt;}
.y7a{bottom:237.786667pt;}
.yb5{bottom:241.786667pt;}
.y1b{bottom:244.826667pt;}
.y143{bottom:249.626667pt;}
.y182{bottom:249.946667pt;}
.y3c{bottom:250.906667pt;}
.y10e{bottom:252.826667pt;}
.y79{bottom:255.546667pt;}
.yb4{bottom:259.386667pt;}
.y142{bottom:261.786667pt;}
.y1a{bottom:264.346667pt;}
.yf1{bottom:267.720000pt;}
.y3b{bottom:268.666667pt;}
.yef{bottom:269.320000pt;}
.y181{bottom:270.106667pt;}
.y10d{bottom:270.426667pt;}
.y78{bottom:273.146667pt;}
.y141{bottom:274.106667pt;}
.y2e{bottom:275.546667pt;}
.yb3{bottom:276.986667pt;}
.y180{bottom:282.426667pt;}
.y3a{bottom:286.266667pt;}
.y10c{bottom:288.026667pt;}
.y77{bottom:290.746667pt;}
.y140{bottom:291.706667pt;}
.yb2{bottom:294.746667pt;}
.yeb{bottom:295.386667pt;}
.y39{bottom:303.866667pt;}
.y13f{bottom:304.026667pt;}
.y102{bottom:305.466667pt;}
.y76{bottom:308.346667pt;}
.yb1{bottom:312.026667pt;}
.y17f{bottom:312.346667pt;}
.yea{bottom:313.146667pt;}
.y101{bottom:318.600000pt;}
.y10a{bottom:321.320000pt;}
.y38{bottom:321.466667pt;}
.y13e{bottom:321.626667pt;}
.y17e{bottom:324.506667pt;}
.y75{bottom:325.946667pt;}
.yb0{bottom:329.626667pt;}
.ye9{bottom:330.746667pt;}
.y13d{bottom:333.786667pt;}
.y37{bottom:339.066667pt;}
.yff{bottom:339.400000pt;}
.y108{bottom:341.800000pt;}
.y17d{bottom:342.106667pt;}
.y74{bottom:343.706667pt;}
.yaf{bottom:346.426667pt;}
.ye8{bottom:348.346667pt;}
.y13c{bottom:351.386667pt;}
.y17c{bottom:354.466667pt;}
.y36{bottom:356.866667pt;}
.yfd{bottom:360.386667pt;}
.y73{bottom:361.026667pt;}
.y107{bottom:362.146667pt;}
.y13b{bottom:363.746667pt;}
.ye7{bottom:365.986667pt;}
.y17b{bottom:366.786667pt;}
.y35{bottom:374.466667pt;}
.yad{bottom:376.066667pt;}
.y72{bottom:378.626667pt;}
.y17a{bottom:378.946667pt;}
.yfb{bottom:381.186667pt;}
.y13a{bottom:381.346667pt;}
.y106{bottom:382.626667pt;}
.ye6{bottom:383.586667pt;}
.y34{bottom:392.066667pt;}
.y139{bottom:393.666667pt;}
.yac{bottom:394.626667pt;}
.yc9{bottom:396.226667pt;}
.y71{bottom:396.546667pt;}
.ye5{bottom:401.346667pt;}
.yf9{bottom:402.146667pt;}
.y104{bottom:402.946667pt;}
.y179{bottom:408.866667pt;}
.y33{bottom:409.666667pt;}
.y138{bottom:411.266667pt;}
.yaa{bottom:413.026667pt;}
.y70{bottom:414.146667pt;}
.ye4{bottom:418.946667pt;}
.yf7{bottom:422.466667pt;}
.y103{bottom:422.946667pt;}
.y137{bottom:423.426667pt;}
.y178{bottom:426.466667pt;}
.y32{bottom:427.266667pt;}
.ya8{bottom:430.466667pt;}
.y6f{bottom:431.906667pt;}
.y136{bottom:435.746667pt;}
.ye3{bottom:436.226667pt;}
.y177{bottom:438.786667pt;}
.y31{bottom:444.706667pt;}
.y6e{bottom:449.506667pt;}
.ya6{bottom:449.666667pt;}
.y135{bottom:450.786667pt;}
.ye2{bottom:454.946667pt;}
.y176{bottom:456.386667pt;}
.y30{bottom:462.626667pt;}
.y6d{bottom:466.786667pt;}
.yc8{bottom:467.106667pt;}
.y134{bottom:468.066667pt;}
.y175{bottom:468.546667pt;}
.y19{bottom:474.786667pt;}
.ye1{bottom:475.266667pt;}
.ya5{bottom:476.706667pt;}
.y6c{bottom:484.386667pt;}
.yc7{bottom:484.706667pt;}
.y174{bottom:486.146667pt;}
.y133{bottom:486.946667pt;}
.ye0{bottom:493.026667pt;}
.ya4{bottom:494.306667pt;}
.y173{bottom:498.466667pt;}
.y6b{bottom:502.306667pt;}
.y132{bottom:505.026667pt;}
.ydf{bottom:507.586667pt;}
.y172{bottom:510.786667pt;}
.ya3{bottom:512.066667pt;}
.y6a{bottom:520.066667pt;}
.y171{bottom:528.386667pt;}
.ya2{bottom:529.666667pt;}
.y131{bottom:535.426667pt;}
.y69{bottom:537.666667pt;}
.y170{bottom:540.546667pt;}
.ya1{bottom:547.266667pt;}
.y130{bottom:551.106667pt;}
.y68{bottom:555.266667pt;}
.y16f{bottom:558.146667pt;}
.ya0{bottom:564.866667pt;}
.y12f{bottom:566.466667pt;}
.y16e{bottom:570.466667pt;}
.y67{bottom:572.866667pt;}
.y12e{bottom:581.853333pt;}
.y9f{bottom:582.493333pt;}
.y16d{bottom:582.813333pt;}
.y66{bottom:590.493333pt;}
.y12d{bottom:596.733333pt;}
.y9e{bottom:600.253333pt;}
.y16c{bottom:600.413333pt;}
.y65{bottom:608.253333pt;}
.y12c{bottom:612.093333pt;}
.y16b{bottom:612.573333pt;}
.y9d{bottom:617.853333pt;}
.y16a{bottom:624.893333pt;}
.y64{bottom:625.853333pt;}
.y12b{bottom:627.773333pt;}
.y9c{bottom:635.453333pt;}
.y169{bottom:642.493333pt;}
.y12a{bottom:643.133333pt;}
.y63{bottom:643.453333pt;}
.y9b{bottom:653.053333pt;}
.y168{bottom:654.813333pt;}
.y129{bottom:658.173333pt;}
.y62{bottom:661.053333pt;}
.y9a{bottom:670.653333pt;}
.y167{bottom:672.413333pt;}
.y128{bottom:673.533333pt;}
.y61{bottom:678.333333pt;}
.yc6{bottom:678.653333pt;}
.y166{bottom:684.573333pt;}
.y99{bottom:688.413333pt;}
.y127{bottom:689.053333pt;}
.y60{bottom:696.093333pt;}
.yc5{bottom:696.413333pt;}
.yf4{bottom:700.253333pt;}
.yf2{bottom:701.693333pt;}
.y165{bottom:702.173333pt;}
.y126{bottom:704.413333pt;}
.y98{bottom:706.013333pt;}
.y5f{bottom:714.013333pt;}
.y164{bottom:714.493333pt;}
.y125{bottom:719.453333pt;}
.y97{bottom:723.613333pt;}
.y163{bottom:726.653333pt;}
.y5e{bottom:731.613333pt;}
.y124{bottom:734.813333pt;}
.y96{bottom:741.213333pt;}
.y162{bottom:744.253333pt;}
.y5d{bottom:749.213333pt;}
.y123{bottom:750.493333pt;}
.yde{bottom:751.293333pt;}
.y18{bottom:755.613333pt;}
.y161{bottom:756.573333pt;}
.y95{bottom:758.813333pt;}
.y122{bottom:765.853333pt;}
.y5c{bottom:766.813333pt;}
.ydd{bottom:768.893333pt;}
.y17{bottom:772.413333pt;}
.y94{bottom:776.573333pt;}
.y121{bottom:780.733333pt;}
.y16{bottom:783.773333pt;}
.y5b{bottom:784.253333pt;}
.yc4{bottom:784.573333pt;}
.ydc{bottom:786.493333pt;}
.y93{bottom:794.173333pt;}
.y15{bottom:794.653333pt;}
.y120{bottom:796.093333pt;}
.y160{bottom:798.693333pt;}
.y5a{bottom:801.893333pt;}
.yc3{bottom:802.213333pt;}
.ydb{bottom:804.133333pt;}
.y14{bottom:807.013333pt;}
.y15f{bottom:811.013333pt;}
.y92{bottom:811.493333pt;}
.y11f{bottom:811.813333pt;}
.y13{bottom:819.333333pt;}
.y59{bottom:819.493333pt;}
.yf6{bottom:819.813333pt;}
.yda{bottom:821.893333pt;}
.y11e{bottom:827.173333pt;}
.y15e{bottom:828.613333pt;}
.y91{bottom:829.093333pt;}
.y12{bottom:831.493333pt;}
.yc2{bottom:837.093333pt;}
.y58{bottom:837.413333pt;}
.y11{bottom:839.493333pt;}
.y15d{bottom:840.933333pt;}
.y11d{bottom:842.213333pt;}
.y90{bottom:847.013333pt;}
.y10{bottom:849.733333pt;}
.y15c{bottom:853.093333pt;}
.yc1{bottom:854.693333pt;}
.y57{bottom:855.013333pt;}
.yd9{bottom:857.093333pt;}
.y11c{bottom:857.413333pt;}
.y8f{bottom:864.773333pt;}
.yf{bottom:867.653333pt;}
.y15b{bottom:870.693333pt;}
.yc0{bottom:872.453333pt;}
.y56{bottom:872.773333pt;}
.yd8{bottom:874.693333pt;}
.y11b{bottom:875.013333pt;}
.y8e{bottom:882.373333pt;}
.y15a{bottom:883.013333pt;}
.ye{bottom:888.773333pt;}
.y55{bottom:890.373333pt;}
.yd7{bottom:891.973333pt;}
.y11a{bottom:895.173333pt;}
.y159{bottom:895.333333pt;}
.y8d{bottom:899.973333pt;}
.y158{bottom:907.493333pt;}
.y54{bottom:907.973333pt;}
.yd{bottom:908.453333pt;}
.yd6{bottom:909.733333pt;}
.y8c{bottom:917.573333pt;}
.yd5{bottom:922.853333pt;}
.y157{bottom:925.093333pt;}
.y53{bottom:925.573333pt;}
.yc{bottom:932.933333pt;}
.y8b{bottom:935.173333pt;}
.y156{bottom:937.413333pt;}
.yd4{bottom:938.693333pt;}
.y52{bottom:943.173333pt;}
.y155{bottom:949.733333pt;}
.y8a{bottom:952.933333pt;}
.yd3{bottom:954.533333pt;}
.yb{bottom:957.413333pt;}
.y51{bottom:960.933333pt;}
.y154{bottom:967.333333pt;}
.yd2{bottom:970.373333pt;}
.y89{bottom:970.533333pt;}
.y50{bottom:978.533333pt;}
.y153{bottom:979.493333pt;}
.ya{bottom:979.973333pt;}
.yd0{bottom:986.213333pt;}
.y88{bottom:988.133333pt;}
.y47{bottom:989.093333pt;}
.y9{bottom:993.733333pt;}
.y4f{bottom:996.133333pt;}
.y152{bottom:997.093333pt;}
.ycd{bottom:1002.853333pt;}
.y87{bottom:1005.733333pt;}
.y151{bottom:1009.413333pt;}
.y4e{bottom:1013.733333pt;}
.y150{bottom:1021.760000pt;}
.y119{bottom:1023.040000pt;}
.y86{bottom:1023.360000pt;}
.y8{bottom:1027.520000pt;}
.y4d{bottom:1031.360000pt;}
.y14f{bottom:1033.920000pt;}
.y7{bottom:1037.760000pt;}
.y84{bottom:1039.520000pt;}
.y6{bottom:1045.280000pt;}
.y4b{bottom:1047.520000pt;}
.y83{bottom:1056.640000pt;}
.y5{bottom:1064.480000pt;}
.y4a{bottom:1064.640000pt;}
.h6{height:5.022500pt;}
.h23{height:10.546667pt;}
.hd{height:15.703125pt;}
.h22{height:15.826667pt;}
.h21{height:15.986667pt;}
.h11{height:16.125000pt;}
.h1a{height:17.426667pt;}
.h24{height:17.600000pt;}
.h1b{height:18.386667pt;}
.h25{height:18.400000pt;}
.h19{height:18.546667pt;}
.h1c{height:19.186667pt;}
.h2a{height:19.346667pt;}
.h27{height:19.666667pt;}
.h29{height:20.306667pt;}
.h2c{height:20.338667pt;}
.h2b{height:20.466667pt;}
.h26{height:20.786667pt;}
.h18{height:20.946667pt;}
.h28{height:20.978667pt;}
.h15{height:24.626667pt;}
.hc{height:26.368125pt;}
.h1f{height:32.026667pt;}
.hb{height:32.250000pt;}
.h3{height:36.431250pt;}
.h16{height:38.153511pt;}
.h7{height:42.084375pt;}
.h4{height:43.215000pt;}
.h2e{height:44.941250pt;}
.h2{height:47.109375pt;}
.h8{height:48.375000pt;}
.h13{height:49.336419pt;}
.h14{height:52.134375pt;}
.h20{height:53.370000pt;}
.he{height:53.535000pt;}
.h10{height:57.787500pt;}
.h1d{height:58.238750pt;}
.h1e{height:58.345417pt;}
.ha{height:59.150000pt;}
.h12{height:59.340000pt;}
.h17{height:62.812500pt;}
.h5{height:64.500000pt;}
.h2d{height:73.490625pt;}
.h9{height:85.785000pt;}
.hf{height:275.546667pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.wf{width:25.106667pt;}
.wd{width:25.110667pt;}
.we{width:25.120000pt;}
.w11{width:27.986667pt;}
.w10{width:29.910667pt;}
.w8{width:52.630667pt;}
.w12{width:84.470667pt;}
.w3{width:90.426667pt;}
.w15{width:90.546667pt;}
.w16{width:104.658667pt;}
.w13{width:104.818667pt;}
.w7{width:107.866667pt;}
.wa{width:113.472000pt;}
.w17{width:118.106667pt;}
.w14{width:124.672000pt;}
.w9{width:151.857333pt;}
.w6{width:155.693333pt;}
.wb{width:169.933333pt;}
.wc{width:169.946667pt;}
.w4{width:206.266667pt;}
.w5{width:381.497333pt;}
.w2{width:569.680000pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.xc{left:-32.800000pt;}
.xb{left:-17.600000pt;}
.xa{left:-4.480000pt;}
.x0{left:0.000000pt;}
.x12{left:7.190667pt;}
.x9{left:9.466667pt;}
.x1d{left:12.945333pt;}
.x37{left:16.800000pt;}
.x1b{left:18.870667pt;}
.x32{left:20.000000pt;}
.x23{left:21.120000pt;}
.x8{left:23.866667pt;}
.x14{left:27.346667pt;}
.x25{left:29.106667pt;}
.x24{left:32.000000pt;}
.x33{left:35.040000pt;}
.x26{left:36.000000pt;}
.x7{left:37.786667pt;}
.x31{left:39.200000pt;}
.x27{left:45.120000pt;}
.x1e{left:46.385333pt;}
.x30{left:49.266667pt;}
.x6{left:52.186667pt;}
.x22{left:58.240000pt;}
.x19{left:60.826667pt;}
.x28{left:62.546667pt;}
.x18{left:63.706667pt;}
.x17{left:66.746667pt;}
.x5{left:69.466667pt;}
.x2{left:72.032000pt;}
.x16{left:74.746667pt;}
.x2a{left:76.841333pt;}
.xd{left:96.032000pt;}
.x38{left:100.512000pt;}
.x1c{left:122.761333pt;}
.x39{left:140.666667pt;}
.x2e{left:156.520000pt;}
.x2f{left:261.186667pt;}
.x1f{left:274.626667pt;}
.x2b{left:295.266667pt;}
.xf{left:319.746667pt;}
.x11{left:349.986667pt;}
.x29{left:364.413333pt;}
.x10{left:386.013333pt;}
.x1{left:386.973333pt;}
.x20{left:388.106667pt;}
.x3{left:396.093333pt;}
.x34{left:408.093333pt;}
.x2d{left:443.786667pt;}
.x13{left:453.546667pt;}
.x35{left:498.666667pt;}
.x2c{left:508.133333pt;}
.xe{left:524.773333pt;}
.x1a{left:556.133333pt;}
.x21{left:558.053333pt;}
.x36{left:603.333333pt;}
.x15{left:609.253333pt;}
.x4{left:641.733333pt;}
}




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