
    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_f0acbc5772f8c43f0f03369d.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_98c3659af1cee86c57e7194c.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_4960d3a2bbc1d31f18802f15.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_dabfbc3303f2d4d318a559c9.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_a0b648f17067bfd81c09db48.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_9a74d58e4f8434d540d8eba5.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.128418;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_4aa24e58766233145fbfb6cc.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;}
@font-face{font-family:ff8;src:url('chunks/assets/font_85e82575e1e9fd13c87fab00.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.909180;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);}
.v3{vertical-align:-70.680000px;}
.v15{vertical-align:-61.920000px;}
.v13{vertical-align:-12.240000px;}
.v6{vertical-align:-10.800000px;}
.v8{vertical-align:-2.880000px;}
.v0{vertical-align:0.000000px;}
.v9{vertical-align:2.160000px;}
.vd{vertical-align:3.600000px;}
.vb{vertical-align:10.800000px;}
.va{vertical-align:12.960000px;}
.ve{vertical-align:14.400000px;}
.v7{vertical-align:15.840000px;}
.vc{vertical-align:17.280000px;}
.v1{vertical-align:27.360000px;}
.v2{vertical-align:30.240000px;}
.v11{vertical-align:36.000000px;}
.v10{vertical-align:41.040000px;}
.v14{vertical-align:43.920000px;}
.v4{vertical-align:45.360000px;}
.v5{vertical-align:48.240000px;}
.vf{vertical-align:50.400000px;}
.v12{vertical-align:68.400000px;}
.ls2a{letter-spacing:-0.540000px;}
.ls29{letter-spacing:-0.450600px;}
.lsc{letter-spacing:-0.360000px;}
.ls24{letter-spacing:-0.223800px;}
.lsd{letter-spacing:-0.206400px;}
.ls21{letter-spacing:-0.053280px;}
.lsa{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.012960px;}
.ls22{letter-spacing:0.033120px;}
.ls11{letter-spacing:0.108000px;}
.ls4{letter-spacing:0.180000px;}
.ls20{letter-spacing:0.181200px;}
.ls25{letter-spacing:0.259800px;}
.ls8{letter-spacing:0.298800px;}
.ls3{letter-spacing:0.315360px;}
.ls23{letter-spacing:0.324000px;}
.ls0{letter-spacing:0.360000px;}
.lsb{letter-spacing:0.493800px;}
.ls26{letter-spacing:0.496080px;}
.ls12{letter-spacing:0.900000px;}
.lse{letter-spacing:1.080000px;}
.ls10{letter-spacing:2.340000px;}
.ls27{letter-spacing:2.880000px;}
.ls1{letter-spacing:3.780000px;}
.ls17{letter-spacing:4.085280px;}
.ls28{letter-spacing:4.500000px;}
.ls5{letter-spacing:5.220000px;}
.ls6{letter-spacing:6.660000px;}
.ls9{letter-spacing:9.540000px;}
.ls13{letter-spacing:10.044000px;}
.ls15{letter-spacing:10.833120px;}
.ls16{letter-spacing:11.328480px;}
.ls7{letter-spacing:11.700000px;}
.ls1f{letter-spacing:13.680000px;}
.ls1e{letter-spacing:15.849120px;}
.ls1d{letter-spacing:17.088480px;}
.ls19{letter-spacing:17.279280px;}
.ls1a{letter-spacing:17.742240px;}
.ls1c{letter-spacing:17.854560px;}
.ls18{letter-spacing:20.622240px;}
.ls1b{letter-spacing:20.734560px;}
.lsf{letter-spacing:26.076000px;}
.ls14{letter-spacing:72.570000px;}
.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;}
}
.ws4{word-spacing:-18.000000px;}
.wsb{word-spacing:-16.020000px;}
.ws1c{word-spacing:-15.300000px;}
.wsa{word-spacing:-15.238800px;}
.ws1d{word-spacing:-15.199800px;}
.ws5{word-spacing:-14.940000px;}
.wse{word-spacing:-14.886720px;}
.ws0{word-spacing:-13.860000px;}
.ws8{word-spacing:-13.500000px;}
.ws19{word-spacing:-13.147200px;}
.ws9{word-spacing:-13.140000px;}
.ws3{word-spacing:-12.420000px;}
.wsd{word-spacing:-12.241200px;}
.ws7{word-spacing:-12.060000px;}
.ws11{word-spacing:-11.880000px;}
.ws1b{word-spacing:-11.836200px;}
.ws6{word-spacing:-11.700000px;}
.ws1e{word-spacing:-11.609400px;}
.ws2{word-spacing:-10.933800px;}
.ws1{word-spacing:-10.440000px;}
.ws12{word-spacing:-8.586720px;}
.ws13{word-spacing:-8.553600px;}
.wsc{word-spacing:0.000000px;}
.ws1a{word-spacing:4.132080px;}
.wsf{word-spacing:5.094000px;}
.ws16{word-spacing:54.234000px;}
.ws10{word-spacing:63.594000px;}
.ws18{word-spacing:83.390880px;}
.ws15{word-spacing:92.731680px;}
.ws14{word-spacing:209.390880px;}
.ws17{word-spacing:245.594880px;}
._1f{margin-left:-6.027120px;}
._1c{margin-left:-4.898400px;}
._1d{margin-left:-3.186000px;}
._3{margin-left:-1.529040px;}
._1{width:1.085760px;}
._0{width:2.881440px;}
._2{width:3.967680px;}
._9{width:5.778000px;}
._f{width:7.019520px;}
._c{width:8.063040px;}
._b{width:9.342000px;}
._8{width:11.340000px;}
._d{width:12.473520px;}
._10{width:13.548720px;}
._a{width:14.580000px;}
._23{width:16.232160px;}
._12{width:17.643360px;}
._11{width:18.746640px;}
._22{width:20.035440px;}
._1e{width:21.619440px;}
._2c{width:22.901280px;}
._1a{width:24.202800px;}
._15{width:25.338240px;}
._14{width:26.354160px;}
._19{width:27.429840px;}
._30{width:30.417120px;}
._13{width:32.808240px;}
._5{width:34.272000px;}
._29{width:46.889280px;}
._2a{width:47.935920px;}
._2b{width:49.048560px;}
._18{width:50.078880px;}
._17{width:51.453360px;}
._27{width:55.331280px;}
._28{width:56.700960px;}
._31{width:60.878880px;}
._32{width:62.567280px;}
._33{width:63.732720px;}
._7{width:65.580480px;}
._6{width:66.982080px;}
._2e{width:71.597280px;}
._2d{width:72.731280px;}
._2f{width:74.253600px;}
._1b{width:79.883280px;}
._20{width:87.816480px;}
._16{width:97.647840px;}
._34{width:128.993760px;}
._35{width:130.281600px;}
._24{width:155.202720px;}
._21{width:201.240000px;}
._25{width:216.259920px;}
._26{width:217.342800px;}
._e{width:1834.296000px;}
._4{width:2056.084800px;}
.fc8{color:transparent;}
.fc6{color:rgb(0,0,255);}
.fc3{color:rgb(255,0,0);}
.fc9{color:rgb(17,17,17);}
.fc7{color:rgb(0,51,204);}
.fc5{color:rgb(166,166,166);}
.fc4{color:rgb(128,128,128);}
.fc2{color:rgb(13,13,13);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:5.760000px;}
.fsa{font-size:12.240000px;}
.fsb{font-size:18.000000px;}
.fs8{font-size:36.000000px;}
.fs6{font-size:38.880000px;}
.fs1{font-size:41.760000px;}
.fs3{font-size:48.240000px;}
.fs0{font-size:54.000000px;}
.fs5{font-size:59.760000px;}
.fsc{font-size:66.240000px;}
.fs4{font-size:72.000000px;}
.fse{font-size:84.240000px;}
.fsd{font-size:95.760000px;}
.fs2{font-size:120.240000px;}
.fs9{font-size:126.000000px;}
.y0{bottom:0.000000px;}
.yd1{bottom:2.880000px;}
.yd5{bottom:3.060000px;}
.ye2{bottom:3.600000px;}
.y47{bottom:4.320000px;}
.yab{bottom:4.860000px;}
.yad{bottom:5.220000px;}
.yb1{bottom:5.400000px;}
.yaf{bottom:5.430000px;}
.y26{bottom:5.580000px;}
.ydd{bottom:9.900000px;}
.ye5{bottom:16.740000px;}
.yde{bottom:16.920000px;}
.y46{bottom:18.180000px;}
.y4a{bottom:18.900000px;}
.y8d{bottom:19.260000px;}
.y25{bottom:19.440000px;}
.y3{bottom:19.800000px;}
.yd3{bottom:24.660000px;}
.yec{bottom:24.840000px;}
.y24{bottom:31.530000px;}
.yd9{bottom:31.680000px;}
.ye0{bottom:32.220000px;}
.y2{bottom:33.840000px;}
.yeb{bottom:38.700000px;}
.y1{bottom:46.620000px;}
.y23{bottom:47.190000px;}
.y22{bottom:62.670000px;}
.y103{bottom:74.160000px;}
.y44{bottom:75.420000px;}
.y137{bottom:75.960000px;}
.ycf{bottom:78.120000px;}
.y21{bottom:78.150000px;}
.y16f{bottom:78.660000px;}
.yb6{bottom:79.380000px;}
.yf2{bottom:86.940000px;}
.y1a6{bottom:88.560000px;}
.y8a{bottom:89.820000px;}
.yb5{bottom:91.620000px;}
.y16e{bottom:92.520000px;}
.y20{bottom:93.630000px;}
.yce{bottom:93.780000px;}
.y102{bottom:93.960000px;}
.y43{bottom:95.400000px;}
.y136{bottom:95.760000px;}
.yf1{bottom:99.180000px;}
.y1a5{bottom:104.040000px;}
.ycd{bottom:106.020000px;}
.y1f{bottom:109.290000px;}
.y89{bottom:109.620000px;}
.y16d{bottom:112.320000px;}
.y101{bottom:113.940000px;}
.y42{bottom:115.200000px;}
.y135{bottom:115.560000px;}
.y1a4{bottom:119.700000px;}
.y1e{bottom:124.770000px;}
.y16c{bottom:126.000000px;}
.y28{bottom:126.210000px;}
.y88{bottom:129.420000px;}
.y100{bottom:133.740000px;}
.y41{bottom:135.000000px;}
.y1a3{bottom:135.180000px;}
.y134{bottom:135.360000px;}
.y1d{bottom:140.250000px;}
.y16b{bottom:145.800000px;}
.y87{bottom:149.256000px;}
.y1a2{bottom:150.690000px;}
.yff{bottom:153.570000px;}
.y40{bottom:154.830000px;}
.y133{bottom:155.010000px;}
.y1c{bottom:155.730000px;}
.y16a{bottom:159.690000px;}
.y1a1{bottom:166.170000px;}
.y86{bottom:169.230000px;}
.y1b{bottom:171.210000px;}
.yfe{bottom:173.370000px;}
.y3f{bottom:174.630000px;}
.y132{bottom:174.810000px;}
.y169{bottom:179.490000px;}
.y1a0{bottom:181.830000px;}
.y1a{bottom:186.870000px;}
.y85{bottom:189.030000px;}
.yfd{bottom:193.170000px;}
.y168{bottom:193.350000px;}
.y3e{bottom:194.610000px;}
.y131{bottom:194.970000px;}
.y19f{bottom:197.310000px;}
.y19{bottom:202.350000px;}
.y84{bottom:208.650000px;}
.y83{bottom:208.830000px;}
.y19e{bottom:212.790000px;}
.yfc{bottom:213.150000px;}
.y3d{bottom:214.410000px;}
.y130{bottom:214.770000px;}
.y18{bottom:217.830000px;}
.y167{bottom:226.830000px;}
.y82{bottom:228.630000px;}
.yfb{bottom:232.950000px;}
.y3c{bottom:234.210000px;}
.y12f{bottom:234.570000px;}
.y17{bottom:239.790000px;}
.y166{bottom:240.690000px;}
.y19d{bottom:243.750000px;}
.y81{bottom:245.010000px;}
.y27{bottom:252.390000px;}
.yfa{bottom:252.750000px;}
.y7f{bottom:253.110000px;}
.y3b{bottom:254.010000px;}
.y12e{bottom:254.550000px;}
.y19c{bottom:259.410000px;}
.y165{bottom:260.490000px;}
.y7e{bottom:262.110000px;}
.yf9{bottom:272.550000px;}
.y3a{bottom:273.810000px;}
.y12d{bottom:274.350000px;}
.y19b{bottom:280.830000px;}
.y80{bottom:282.090000px;}
.y164{bottom:288.030000px;}
.yf8{bottom:292.350000px;}
.y39{bottom:293.790000px;}
.y7d{bottom:297.030000px;}
.y19a{bottom:302.070000px;}
.y163{bottom:307.830000px;}
.yf7{bottom:308.370000px;}
.y38{bottom:313.590000px;}
.y7c{bottom:318.450000px;}
.y162{bottom:321.690000px;}
.y199{bottom:321.870000px;}
.yf6{bottom:324.030000px;}
.y37{bottom:333.390000px;}
.y12c{bottom:333.750000px;}
.y7b{bottom:336.990000px;}
.y161{bottom:341.490000px;}
.y198{bottom:341.670000px;}
.yf5{bottom:343.290000px;}
.y79{bottom:345.090000px;}
.y36{bottom:353.190000px;}
.y12b{bottom:353.730000px;}
.y78{bottom:354.090000px;}
.y160{bottom:355.350000px;}
.y197{bottom:361.470000px;}
.yf4{bottom:368.850000px;}
.y35{bottom:372.990000px;}
.y12a{bottom:373.170000px;}
.y7a{bottom:374.070000px;}
.y15f{bottom:375.150000px;}
.yf3{bottom:381.090000px;}
.y196{bottom:381.270000px;}
.y77{bottom:387.030000px;}
.y15e{bottom:388.830000px;}
.y34{bottom:392.970000px;}
.y129{bottom:393.330000px;}
.y195{bottom:401.115000px;}
.y76{bottom:405.435000px;}
.y15d{bottom:408.675000px;}
.y74{bottom:409.755000px;}
.y33{bottom:412.815000px;}
.y128{bottom:413.175000px;}
.y75{bottom:414.075000px;}
.y71{bottom:418.035000px;}
.y194{bottom:420.915000px;}
.y15c{bottom:422.535000px;}
.y73{bottom:426.135000px;}
.y32{bottom:432.615000px;}
.y72{bottom:434.775000px;}
.y193{bottom:440.715000px;}
.y15b{bottom:442.335000px;}
.y70{bottom:446.835000px;}
.y31{bottom:452.415000px;}
.y127{bottom:452.595000px;}
.y15a{bottom:456.195000px;}
.y192{bottom:460.515000px;}
.y6f{bottom:464.115000px;}
.y126{bottom:469.875000px;}
.y30{bottom:472.215000px;}
.y159{bottom:475.995000px;}
.y191{bottom:480.315000px;}
.y6e{bottom:481.395000px;}
.y125{bottom:489.675000px;}
.y2f{bottom:492.195000px;}
.y6d{bottom:498.495000px;}
.y190{bottom:500.115000px;}
.y158{bottom:509.475000px;}
.y2e{bottom:511.995000px;}
.y6c{bottom:515.775000px;}
.y124{bottom:517.575000px;}
.y18f{bottom:519.915000px;}
.y157{bottom:523.335000px;}
.y2d{bottom:531.795000px;}
.y6b{bottom:533.055000px;}
.y123{bottom:537.375000px;}
.y18e{bottom:539.715000px;}
.y156{bottom:543.135000px;}
.y6a{bottom:550.335000px;}
.y2c{bottom:551.595000px;}
.y155{bottom:556.815000px;}
.y122{bottom:557.175000px;}
.y18d{bottom:559.515000px;}
.y69{bottom:567.615000px;}
.y2b{bottom:571.395000px;}
.yb4{bottom:572.475000px;}
.y154{bottom:576.615000px;}
.y121{bottom:576.975000px;}
.y18c{bottom:579.315000px;}
.y68{bottom:584.715000px;}
.yb3{bottom:586.695000px;}
.y153{bottom:590.475000px;}
.y2a{bottom:591.015000px;}
.y120{bottom:596.955000px;}
.y18b{bottom:599.115000px;}
.y67{bottom:601.995000px;}
.yb2{bottom:606.315000px;}
.y152{bottom:610.275000px;}
.y29{bottom:611.175000px;}
.y11f{bottom:616.755000px;}
.y66{bottom:618.915000px;}
.y151{bottom:624.135000px;}
.y16{bottom:624.855000px;}
.yb0{bottom:625.755000px;}
.y11e{bottom:636.555000px;}
.y18a{bottom:638.715000px;}
.y150{bottom:643.935000px;}
.yae{bottom:645.375000px;}
.y65{bottom:653.865000px;}
.y11d{bottom:656.025000px;}
.y14f{bottom:657.645000px;}
.y189{bottom:658.545000px;}
.yac{bottom:665.025000px;}
.y64{bottom:673.485000px;}
.y11c{bottom:675.825000px;}
.y14e{bottom:677.445000px;}
.y188{bottom:678.345000px;}
.yaa{bottom:685.365000px;}
.y14d{bottom:691.305000px;}
.y63{bottom:693.285000px;}
.y187{bottom:698.145000px;}
.y11b{bottom:698.685000px;}
.ya9{bottom:709.485000px;}
.y14c{bottom:711.105000px;}
.y62{bottom:713.085000px;}
.ycc{bottom:715.065000px;}
.y186{bottom:717.945000px;}
.y11a{bottom:723.885000px;}
.y14b{bottom:724.965000px;}
.ya8{bottom:726.585000px;}
.y61{bottom:733.065000px;}
.ycb{bottom:734.685000px;}
.y185{bottom:737.745000px;}
.y119{bottom:743.685000px;}
.ya7{bottom:743.865000px;}
.y14a{bottom:744.765000px;}
.y60{bottom:752.865000px;}
.yca{bottom:754.485000px;}
.y184{bottom:757.545000px;}
.y149{bottom:758.445000px;}
.yf0{bottom:760.785000px;}
.ya6{bottom:761.145000px;}
.y118{bottom:763.485000px;}
.y5f{bottom:772.665000px;}
.yc9{bottom:774.465000px;}
.y183{bottom:777.345000px;}
.yea{bottom:777.705000px;}
.y148{bottom:778.245000px;}
.ya5{bottom:778.425000px;}
.y117{bottom:783.465000px;}
.y147{bottom:792.105000px;}
.yef{bottom:792.285000px;}
.y5e{bottom:792.465000px;}
.yc8{bottom:794.265000px;}
.ya4{bottom:795.705000px;}
.y182{bottom:797.145000px;}
.y116{bottom:803.265000px;}
.y146{bottom:811.905000px;}
.y5d{bottom:812.265000px;}
.ya3{bottom:812.805000px;}
.yc7{bottom:814.065000px;}
.y181{bottom:816.945000px;}
.yee{bottom:820.725000px;}
.y115{bottom:823.065000px;}
.y145{bottom:825.765000px;}
.ya2{bottom:830.085000px;}
.y5c{bottom:832.245000px;}
.yc6{bottom:833.865000px;}
.yed{bottom:835.125000px;}
.y180{bottom:836.745000px;}
.y114{bottom:842.865000px;}
.y144{bottom:845.565000px;}
.ya1{bottom:847.365000px;}
.ye6{bottom:849.705000px;}
.y5b{bottom:852.045000px;}
.yc5{bottom:853.665000px;}
.y17f{bottom:856.545000px;}
.y143{bottom:859.245000px;}
.y113{bottom:862.665000px;}
.ye9{bottom:864.285000px;}
.ya0{bottom:864.645000px;}
.y5a{bottom:871.845000px;}
.y142{bottom:873.105000px;}
.yc4{bottom:873.645000px;}
.y17e{bottom:876.345000px;}
.y9f{bottom:881.925000px;}
.y112{bottom:882.645000px;}
.y15{bottom:883.185000px;}
.y59{bottom:891.645000px;}
.ye8{bottom:892.725000px;}
.y141{bottom:892.905000px;}
.yc3{bottom:893.445000px;}
.y17d{bottom:896.145000px;}
.y9e{bottom:899.250000px;}
.y14{bottom:902.130000px;}
.y111{bottom:902.490000px;}
.y140{bottom:906.810000px;}
.ye7{bottom:907.170000px;}
.y58{bottom:911.490000px;}
.yc2{bottom:913.290000px;}
.y13{bottom:914.370000px;}
.y17c{bottom:915.990000px;}
.y9d{bottom:916.350000px;}
.y12{bottom:919.950000px;}
.y13f{bottom:920.490000px;}
.ydf{bottom:921.750000px;}
.y110{bottom:922.290000px;}
.y57{bottom:931.470000px;}
.yc1{bottom:933.090000px;}
.y9c{bottom:933.630000px;}
.y11{bottom:933.810000px;}
.y17b{bottom:935.790000px;}
.ye4{bottom:936.330000px;}
.y13e{bottom:940.290000px;}
.y10f{bottom:942.090000px;}
.y10{bottom:947.670000px;}
.y9b{bottom:950.910000px;}
.y56{bottom:951.270000px;}
.yc0{bottom:952.890000px;}
.y13d{bottom:954.150000px;}
.y17a{bottom:955.590000px;}
.yf{bottom:961.350000px;}
.y10e{bottom:961.890000px;}
.ye3{bottom:964.770000px;}
.y13c{bottom:968.010000px;}
.y9a{bottom:968.190000px;}
.y55{bottom:971.070000px;}
.ybf{bottom:972.870000px;}
.y179{bottom:975.390000px;}
.ye{bottom:975.750000px;}
.ye1{bottom:979.170000px;}
.y10d{bottom:981.870000px;}
.y99{bottom:985.470000px;}
.y13b{bottom:987.810000px;}
.yd{bottom:988.890000px;}
.y54{bottom:990.870000px;}
.ybe{bottom:992.670000px;}
.yd8{bottom:994.830000px;}
.y178{bottom:995.190000px;}
.y10c{bottom:1001.670000px;}
.y13a{bottom:1004.370000px;}
.y98{bottom:1004.730000px;}
.ydc{bottom:1009.230000px;}
.y53{bottom:1010.670000px;}
.yc{bottom:1011.210000px;}
.ybd{bottom:1012.470000px;}
.y177{bottom:1014.990000px;}
.y10b{bottom:1021.470000px;}
.y97{bottom:1022.190000px;}
.y139{bottom:1023.630000px;}
.y52{bottom:1030.290000px;}
.yb{bottom:1032.270000px;}
.y176{bottom:1034.790000px;}
.ydb{bottom:1037.670000px;}
.y96{bottom:1039.470000px;}
.y10a{bottom:1041.270000px;}
.y51{bottom:1047.570000px;}
.y175{bottom:1048.650000px;}
.ybc{bottom:1052.070000px;}
.yda{bottom:1052.250000px;}
.y95{bottom:1056.930000px;}
.y109{bottom:1061.070000px;}
.y50{bottom:1065.210000px;}
.yd2{bottom:1066.830000px;}
.ya{bottom:1068.450000px;}
.ybb{bottom:1072.050000px;}
.y94{bottom:1074.210000px;}
.y108{bottom:1081.050000px;}
.yd7{bottom:1081.230000px;}
.y174{bottom:1082.130000px;}
.y4f{bottom:1082.490000px;}
.y93{bottom:1091.310000px;}
.y92{bottom:1091.490000px;}
.yba{bottom:1091.850000px;}
.yd6{bottom:1095.810000px;}
.y173{bottom:1095.990000px;}
.y4e{bottom:1099.770000px;}
.y107{bottom:1100.850000px;}
.y9{bottom:1101.210000px;}
.y91{bottom:1108.770000px;}
.yd4{bottom:1110.390000px;}
.yb9{bottom:1111.650000px;}
.y45{bottom:1112.730000px;}
.y172{bottom:1115.790000px;}
.y4d{bottom:1116.690000px;}
.y8{bottom:1117.950000px;}
.y106{bottom:1120.650000px;}
.yd0{bottom:1124.970000px;}
.y90{bottom:1126.050000px;}
.y171{bottom:1129.650000px;}
.yb8{bottom:1131.450000px;}
.y4c{bottom:1133.970000px;}
.y105{bottom:1140.450000px;}
.y8f{bottom:1143.330000px;}
.y138{bottom:1150.920000px;}
.y4b{bottom:1151.100000px;}
.yb7{bottom:1151.280000px;}
.y7{bottom:1155.960000px;}
.y104{bottom:1160.280000px;}
.y8e{bottom:1160.460000px;}
.y170{bottom:1163.160000px;}
.y6{bottom:1167.480000px;}
.y49{bottom:1169.460000px;}
.y5{bottom:1175.940000px;}
.y8c{bottom:1178.460000px;}
.y48{bottom:1188.720000px;}
.y4{bottom:1197.540000px;}
.y8b{bottom:1197.720000px;}
.h7{height:5.650313px;}
.he{height:12.012891px;}
.h2e{height:13.665000px;}
.h39{height:13.680000px;}
.h35{height:13.702500px;}
.h2c{height:13.845000px;}
.h37{height:13.860000px;}
.h32{height:14.745000px;}
.h12{height:18.140625px;}
.h2a{height:19.425000px;}
.h29{height:19.605000px;}
.h27{height:19.620000px;}
.h28{height:19.650000px;}
.h33{height:27.525000px;}
.h36{height:27.540000px;}
.h15{height:27.705000px;}
.h4{height:40.985156px;}
.hc{height:42.086250px;}
.h16{height:42.922699px;}
.h30{height:44.023711px;}
.hd{height:47.321367px;}
.h8{height:47.344922px;}
.h19{height:48.220313px;}
.h5{height:48.616875px;}
.h11{height:49.280273px;}
.h2{height:52.998047px;}
.h9{height:54.421875px;}
.h24{height:54.536836px;}
.h26{height:55.256836px;}
.h14{height:55.503472px;}
.h2d{height:57.405000px;}
.hf{height:58.651172px;}
.h25{height:59.371172px;}
.ha{height:60.226875px;}
.h2b{height:64.978594px;}
.h13{height:66.757500px;}
.h1b{height:66.972656px;}
.h3b{height:70.628906px;}
.h17{height:70.664062px;}
.h2f{height:71.085000px;}
.h38{height:71.280000px;}
.h34{height:71.302500px;}
.h31{height:72.165000px;}
.h6{height:72.562500px;}
.h22{height:74.116406px;}
.h21{height:76.276406px;}
.h3c{height:82.676953px;}
.h1a{height:82.812656px;}
.h1c{height:84.252656px;}
.h3d{height:93.983203px;}
.h3a{height:96.508125px;}
.h1f{height:102.972656px;}
.h1d{height:103.398047px;}
.h1e{height:108.012656px;}
.h23{height:110.892656px;}
.h18{height:115.212656px;}
.h3{height:121.179375px;}
.hb{height:126.984375px;}
.h20{height:135.372656px;}
.h10{height:252.390000px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.wb{width:47.689500px;}
.w3{width:101.730000px;}
.wa{width:108.741000px;}
.w7{width:130.521000px;}
.wc{width:149.422500px;}
.w8{width:160.050000px;}
.w6{width:174.450000px;}
.w9{width:196.230000px;}
.w4{width:232.050000px;}
.w5{width:270.379500px;}
.wd{width:532.185000px;}
.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;}
.x21{left:8.089500px;}
.x9{left:10.650000px;}
.x8{left:26.850000px;}
.x23{left:30.240000px;}
.x26{left:35.820000px;}
.x7{left:42.510000px;}
.x2c{left:44.130000px;}
.x29{left:47.550000px;}
.x30{left:49.303500px;}
.x2a{left:57.600000px;}
.x6{left:58.710000px;}
.x5{left:78.150000px;}
.x2{left:81.036000px;}
.x2b{left:87.870000px;}
.x27{left:91.290000px;}
.x10{left:92.556000px;}
.xd{left:108.036000px;}
.x16{left:113.256000px;}
.x35{left:114.876000px;}
.x1b{left:116.676000px;}
.x1a{left:121.716000px;}
.x12{left:123.876000px;}
.x2f{left:126.586500px;}
.x13{left:130.356000px;}
.x18{left:133.056000px;}
.x17{left:138.636000px;}
.x14{left:139.896000px;}
.x11{left:152.310000px;}
.x19{left:158.430000px;}
.x1c{left:188.670000px;}
.x15{left:190.290000px;}
.x32{left:227.910000px;}
.x31{left:275.835000px;}
.x22{left:351.435000px;}
.x1e{left:359.715000px;}
.xf{left:401.655000px;}
.x1f{left:434.265000px;}
.x1{left:435.345000px;}
.x3{left:445.605000px;}
.x1d{left:452.556000px;}
.x24{left:525.900000px;}
.x28{left:547.680000px;}
.x20{left:568.545000px;}
.x2d{left:578.850000px;}
.xe{left:590.370000px;}
.x25{left:656.430000px;}
.x2e{left:666.150000px;}
.x34{left:711.150000px;}
.x4{left:721.950000px;}
.x33{left:726.810000px;}
@media print{
.v3{vertical-align:-62.826667pt;}
.v15{vertical-align:-55.040000pt;}
.v13{vertical-align:-10.880000pt;}
.v6{vertical-align:-9.600000pt;}
.v8{vertical-align:-2.560000pt;}
.v0{vertical-align:0.000000pt;}
.v9{vertical-align:1.920000pt;}
.vd{vertical-align:3.200000pt;}
.vb{vertical-align:9.600000pt;}
.va{vertical-align:11.520000pt;}
.ve{vertical-align:12.800000pt;}
.v7{vertical-align:14.080000pt;}
.vc{vertical-align:15.360000pt;}
.v1{vertical-align:24.320000pt;}
.v2{vertical-align:26.880000pt;}
.v11{vertical-align:32.000000pt;}
.v10{vertical-align:36.480000pt;}
.v14{vertical-align:39.040000pt;}
.v4{vertical-align:40.320000pt;}
.v5{vertical-align:42.880000pt;}
.vf{vertical-align:44.800000pt;}
.v12{vertical-align:60.800000pt;}
.ls2a{letter-spacing:-0.480000pt;}
.ls29{letter-spacing:-0.400533pt;}
.lsc{letter-spacing:-0.320000pt;}
.ls24{letter-spacing:-0.198933pt;}
.lsd{letter-spacing:-0.183467pt;}
.ls21{letter-spacing:-0.047360pt;}
.lsa{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.011520pt;}
.ls22{letter-spacing:0.029440pt;}
.ls11{letter-spacing:0.096000pt;}
.ls4{letter-spacing:0.160000pt;}
.ls20{letter-spacing:0.161067pt;}
.ls25{letter-spacing:0.230933pt;}
.ls8{letter-spacing:0.265600pt;}
.ls3{letter-spacing:0.280320pt;}
.ls23{letter-spacing:0.288000pt;}
.ls0{letter-spacing:0.320000pt;}
.lsb{letter-spacing:0.438933pt;}
.ls26{letter-spacing:0.440960pt;}
.ls12{letter-spacing:0.800000pt;}
.lse{letter-spacing:0.960000pt;}
.ls10{letter-spacing:2.080000pt;}
.ls27{letter-spacing:2.560000pt;}
.ls1{letter-spacing:3.360000pt;}
.ls17{letter-spacing:3.631360pt;}
.ls28{letter-spacing:4.000000pt;}
.ls5{letter-spacing:4.640000pt;}
.ls6{letter-spacing:5.920000pt;}
.ls9{letter-spacing:8.480000pt;}
.ls13{letter-spacing:8.928000pt;}
.ls15{letter-spacing:9.629440pt;}
.ls16{letter-spacing:10.069760pt;}
.ls7{letter-spacing:10.400000pt;}
.ls1f{letter-spacing:12.160000pt;}
.ls1e{letter-spacing:14.088107pt;}
.ls1d{letter-spacing:15.189760pt;}
.ls19{letter-spacing:15.359360pt;}
.ls1a{letter-spacing:15.770880pt;}
.ls1c{letter-spacing:15.870720pt;}
.ls18{letter-spacing:18.330880pt;}
.ls1b{letter-spacing:18.430720pt;}
.lsf{letter-spacing:23.178667pt;}
.ls14{letter-spacing:64.506667pt;}
.ws4{word-spacing:-16.000000pt;}
.wsb{word-spacing:-14.240000pt;}
.ws1c{word-spacing:-13.600000pt;}
.wsa{word-spacing:-13.545600pt;}
.ws1d{word-spacing:-13.510933pt;}
.ws5{word-spacing:-13.280000pt;}
.wse{word-spacing:-13.232640pt;}
.ws0{word-spacing:-12.320000pt;}
.ws8{word-spacing:-12.000000pt;}
.ws19{word-spacing:-11.686400pt;}
.ws9{word-spacing:-11.680000pt;}
.ws3{word-spacing:-11.040000pt;}
.wsd{word-spacing:-10.881067pt;}
.ws7{word-spacing:-10.720000pt;}
.ws11{word-spacing:-10.560000pt;}
.ws1b{word-spacing:-10.521067pt;}
.ws6{word-spacing:-10.400000pt;}
.ws1e{word-spacing:-10.319467pt;}
.ws2{word-spacing:-9.718933pt;}
.ws1{word-spacing:-9.280000pt;}
.ws12{word-spacing:-7.632640pt;}
.ws13{word-spacing:-7.603200pt;}
.wsc{word-spacing:0.000000pt;}
.ws1a{word-spacing:3.672960pt;}
.wsf{word-spacing:4.528000pt;}
.ws16{word-spacing:48.208000pt;}
.ws10{word-spacing:56.528000pt;}
.ws18{word-spacing:74.125227pt;}
.ws15{word-spacing:82.428160pt;}
.ws14{word-spacing:186.125227pt;}
.ws17{word-spacing:218.306560pt;}
._1f{margin-left:-5.357440pt;}
._1c{margin-left:-4.354133pt;}
._1d{margin-left:-2.832000pt;}
._3{margin-left:-1.359147pt;}
._1{width:0.965120pt;}
._0{width:2.561280pt;}
._2{width:3.526827pt;}
._9{width:5.136000pt;}
._f{width:6.239573pt;}
._c{width:7.167147pt;}
._b{width:8.304000pt;}
._8{width:10.080000pt;}
._d{width:11.087573pt;}
._10{width:12.043307pt;}
._a{width:12.960000pt;}
._23{width:14.428587pt;}
._12{width:15.682987pt;}
._11{width:16.663680pt;}
._22{width:17.809280pt;}
._1e{width:19.217280pt;}
._2c{width:20.356693pt;}
._1a{width:21.513600pt;}
._15{width:22.522880pt;}
._14{width:23.425920pt;}
._19{width:24.382080pt;}
._30{width:27.037440pt;}
._13{width:29.162880pt;}
._5{width:30.464000pt;}
._29{width:41.679360pt;}
._2a{width:42.609707pt;}
._2b{width:43.598720pt;}
._18{width:44.514560pt;}
._17{width:45.736320pt;}
._27{width:49.183360pt;}
._28{width:50.400853pt;}
._31{width:54.114560pt;}
._32{width:55.615360pt;}
._33{width:56.651307pt;}
._7{width:58.293760pt;}
._6{width:59.539627pt;}
._2e{width:63.642027pt;}
._2d{width:64.650027pt;}
._2f{width:66.003200pt;}
._1b{width:71.007360pt;}
._20{width:78.059093pt;}
._16{width:86.798080pt;}
._34{width:114.661120pt;}
._35{width:115.805867pt;}
._24{width:137.957973pt;}
._21{width:178.880000pt;}
._25{width:192.231040pt;}
._26{width:193.193600pt;}
._e{width:1630.485333pt;}
._4{width:1827.630933pt;}
.fs7{font-size:5.120000pt;}
.fsa{font-size:10.880000pt;}
.fsb{font-size:16.000000pt;}
.fs8{font-size:32.000000pt;}
.fs6{font-size:34.560000pt;}
.fs1{font-size:37.120000pt;}
.fs3{font-size:42.880000pt;}
.fs0{font-size:48.000000pt;}
.fs5{font-size:53.120000pt;}
.fsc{font-size:58.880000pt;}
.fs4{font-size:64.000000pt;}
.fse{font-size:74.880000pt;}
.fsd{font-size:85.120000pt;}
.fs2{font-size:106.880000pt;}
.fs9{font-size:112.000000pt;}
.y0{bottom:0.000000pt;}
.yd1{bottom:2.560000pt;}
.yd5{bottom:2.720000pt;}
.ye2{bottom:3.200000pt;}
.y47{bottom:3.840000pt;}
.yab{bottom:4.320000pt;}
.yad{bottom:4.640000pt;}
.yb1{bottom:4.800000pt;}
.yaf{bottom:4.826667pt;}
.y26{bottom:4.960000pt;}
.ydd{bottom:8.800000pt;}
.ye5{bottom:14.880000pt;}
.yde{bottom:15.040000pt;}
.y46{bottom:16.160000pt;}
.y4a{bottom:16.800000pt;}
.y8d{bottom:17.120000pt;}
.y25{bottom:17.280000pt;}
.y3{bottom:17.600000pt;}
.yd3{bottom:21.920000pt;}
.yec{bottom:22.080000pt;}
.y24{bottom:28.026667pt;}
.yd9{bottom:28.160000pt;}
.ye0{bottom:28.640000pt;}
.y2{bottom:30.080000pt;}
.yeb{bottom:34.400000pt;}
.y1{bottom:41.440000pt;}
.y23{bottom:41.946667pt;}
.y22{bottom:55.706667pt;}
.y103{bottom:65.920000pt;}
.y44{bottom:67.040000pt;}
.y137{bottom:67.520000pt;}
.ycf{bottom:69.440000pt;}
.y21{bottom:69.466667pt;}
.y16f{bottom:69.920000pt;}
.yb6{bottom:70.560000pt;}
.yf2{bottom:77.280000pt;}
.y1a6{bottom:78.720000pt;}
.y8a{bottom:79.840000pt;}
.yb5{bottom:81.440000pt;}
.y16e{bottom:82.240000pt;}
.y20{bottom:83.226667pt;}
.yce{bottom:83.360000pt;}
.y102{bottom:83.520000pt;}
.y43{bottom:84.800000pt;}
.y136{bottom:85.120000pt;}
.yf1{bottom:88.160000pt;}
.y1a5{bottom:92.480000pt;}
.ycd{bottom:94.240000pt;}
.y1f{bottom:97.146667pt;}
.y89{bottom:97.440000pt;}
.y16d{bottom:99.840000pt;}
.y101{bottom:101.280000pt;}
.y42{bottom:102.400000pt;}
.y135{bottom:102.720000pt;}
.y1a4{bottom:106.400000pt;}
.y1e{bottom:110.906667pt;}
.y16c{bottom:112.000000pt;}
.y28{bottom:112.186667pt;}
.y88{bottom:115.040000pt;}
.y100{bottom:118.880000pt;}
.y41{bottom:120.000000pt;}
.y1a3{bottom:120.160000pt;}
.y134{bottom:120.320000pt;}
.y1d{bottom:124.666667pt;}
.y16b{bottom:129.600000pt;}
.y87{bottom:132.672000pt;}
.y1a2{bottom:133.946667pt;}
.yff{bottom:136.506667pt;}
.y40{bottom:137.626667pt;}
.y133{bottom:137.786667pt;}
.y1c{bottom:138.426667pt;}
.y16a{bottom:141.946667pt;}
.y1a1{bottom:147.706667pt;}
.y86{bottom:150.426667pt;}
.y1b{bottom:152.186667pt;}
.yfe{bottom:154.106667pt;}
.y3f{bottom:155.226667pt;}
.y132{bottom:155.386667pt;}
.y169{bottom:159.546667pt;}
.y1a0{bottom:161.626667pt;}
.y1a{bottom:166.106667pt;}
.y85{bottom:168.026667pt;}
.yfd{bottom:171.706667pt;}
.y168{bottom:171.866667pt;}
.y3e{bottom:172.986667pt;}
.y131{bottom:173.306667pt;}
.y19f{bottom:175.386667pt;}
.y19{bottom:179.866667pt;}
.y84{bottom:185.466667pt;}
.y83{bottom:185.626667pt;}
.y19e{bottom:189.146667pt;}
.yfc{bottom:189.466667pt;}
.y3d{bottom:190.586667pt;}
.y130{bottom:190.906667pt;}
.y18{bottom:193.626667pt;}
.y167{bottom:201.626667pt;}
.y82{bottom:203.226667pt;}
.yfb{bottom:207.066667pt;}
.y3c{bottom:208.186667pt;}
.y12f{bottom:208.506667pt;}
.y17{bottom:213.146667pt;}
.y166{bottom:213.946667pt;}
.y19d{bottom:216.666667pt;}
.y81{bottom:217.786667pt;}
.y27{bottom:224.346667pt;}
.yfa{bottom:224.666667pt;}
.y7f{bottom:224.986667pt;}
.y3b{bottom:225.786667pt;}
.y12e{bottom:226.266667pt;}
.y19c{bottom:230.586667pt;}
.y165{bottom:231.546667pt;}
.y7e{bottom:232.986667pt;}
.yf9{bottom:242.266667pt;}
.y3a{bottom:243.386667pt;}
.y12d{bottom:243.866667pt;}
.y19b{bottom:249.626667pt;}
.y80{bottom:250.746667pt;}
.y164{bottom:256.026667pt;}
.yf8{bottom:259.866667pt;}
.y39{bottom:261.146667pt;}
.y7d{bottom:264.026667pt;}
.y19a{bottom:268.506667pt;}
.y163{bottom:273.626667pt;}
.yf7{bottom:274.106667pt;}
.y38{bottom:278.746667pt;}
.y7c{bottom:283.066667pt;}
.y162{bottom:285.946667pt;}
.y199{bottom:286.106667pt;}
.yf6{bottom:288.026667pt;}
.y37{bottom:296.346667pt;}
.y12c{bottom:296.666667pt;}
.y7b{bottom:299.546667pt;}
.y161{bottom:303.546667pt;}
.y198{bottom:303.706667pt;}
.yf5{bottom:305.146667pt;}
.y79{bottom:306.746667pt;}
.y36{bottom:313.946667pt;}
.y12b{bottom:314.426667pt;}
.y78{bottom:314.746667pt;}
.y160{bottom:315.866667pt;}
.y197{bottom:321.306667pt;}
.yf4{bottom:327.866667pt;}
.y35{bottom:331.546667pt;}
.y12a{bottom:331.706667pt;}
.y7a{bottom:332.506667pt;}
.y15f{bottom:333.466667pt;}
.yf3{bottom:338.746667pt;}
.y196{bottom:338.906667pt;}
.y77{bottom:344.026667pt;}
.y15e{bottom:345.626667pt;}
.y34{bottom:349.306667pt;}
.y129{bottom:349.626667pt;}
.y195{bottom:356.546667pt;}
.y76{bottom:360.386667pt;}
.y15d{bottom:363.266667pt;}
.y74{bottom:364.226667pt;}
.y33{bottom:366.946667pt;}
.y128{bottom:367.266667pt;}
.y75{bottom:368.066667pt;}
.y71{bottom:371.586667pt;}
.y194{bottom:374.146667pt;}
.y15c{bottom:375.586667pt;}
.y73{bottom:378.786667pt;}
.y32{bottom:384.546667pt;}
.y72{bottom:386.466667pt;}
.y193{bottom:391.746667pt;}
.y15b{bottom:393.186667pt;}
.y70{bottom:397.186667pt;}
.y31{bottom:402.146667pt;}
.y127{bottom:402.306667pt;}
.y15a{bottom:405.506667pt;}
.y192{bottom:409.346667pt;}
.y6f{bottom:412.546667pt;}
.y126{bottom:417.666667pt;}
.y30{bottom:419.746667pt;}
.y159{bottom:423.106667pt;}
.y191{bottom:426.946667pt;}
.y6e{bottom:427.906667pt;}
.y125{bottom:435.266667pt;}
.y2f{bottom:437.506667pt;}
.y6d{bottom:443.106667pt;}
.y190{bottom:444.546667pt;}
.y158{bottom:452.866667pt;}
.y2e{bottom:455.106667pt;}
.y6c{bottom:458.466667pt;}
.y124{bottom:460.066667pt;}
.y18f{bottom:462.146667pt;}
.y157{bottom:465.186667pt;}
.y2d{bottom:472.706667pt;}
.y6b{bottom:473.826667pt;}
.y123{bottom:477.666667pt;}
.y18e{bottom:479.746667pt;}
.y156{bottom:482.786667pt;}
.y6a{bottom:489.186667pt;}
.y2c{bottom:490.306667pt;}
.y155{bottom:494.946667pt;}
.y122{bottom:495.266667pt;}
.y18d{bottom:497.346667pt;}
.y69{bottom:504.546667pt;}
.y2b{bottom:507.906667pt;}
.yb4{bottom:508.866667pt;}
.y154{bottom:512.546667pt;}
.y121{bottom:512.866667pt;}
.y18c{bottom:514.946667pt;}
.y68{bottom:519.746667pt;}
.yb3{bottom:521.506667pt;}
.y153{bottom:524.866667pt;}
.y2a{bottom:525.346667pt;}
.y120{bottom:530.626667pt;}
.y18b{bottom:532.546667pt;}
.y67{bottom:535.106667pt;}
.yb2{bottom:538.946667pt;}
.y152{bottom:542.466667pt;}
.y29{bottom:543.266667pt;}
.y11f{bottom:548.226667pt;}
.y66{bottom:550.146667pt;}
.y151{bottom:554.786667pt;}
.y16{bottom:555.426667pt;}
.yb0{bottom:556.226667pt;}
.y11e{bottom:565.826667pt;}
.y18a{bottom:567.746667pt;}
.y150{bottom:572.386667pt;}
.yae{bottom:573.666667pt;}
.y65{bottom:581.213333pt;}
.y11d{bottom:583.133333pt;}
.y14f{bottom:584.573333pt;}
.y189{bottom:585.373333pt;}
.yac{bottom:591.133333pt;}
.y64{bottom:598.653333pt;}
.y11c{bottom:600.733333pt;}
.y14e{bottom:602.173333pt;}
.y188{bottom:602.973333pt;}
.yaa{bottom:609.213333pt;}
.y14d{bottom:614.493333pt;}
.y63{bottom:616.253333pt;}
.y187{bottom:620.573333pt;}
.y11b{bottom:621.053333pt;}
.ya9{bottom:630.653333pt;}
.y14c{bottom:632.093333pt;}
.y62{bottom:633.853333pt;}
.ycc{bottom:635.613333pt;}
.y186{bottom:638.173333pt;}
.y11a{bottom:643.453333pt;}
.y14b{bottom:644.413333pt;}
.ya8{bottom:645.853333pt;}
.y61{bottom:651.613333pt;}
.ycb{bottom:653.053333pt;}
.y185{bottom:655.773333pt;}
.y119{bottom:661.053333pt;}
.ya7{bottom:661.213333pt;}
.y14a{bottom:662.013333pt;}
.y60{bottom:669.213333pt;}
.yca{bottom:670.653333pt;}
.y184{bottom:673.373333pt;}
.y149{bottom:674.173333pt;}
.yf0{bottom:676.253333pt;}
.ya6{bottom:676.573333pt;}
.y118{bottom:678.653333pt;}
.y5f{bottom:686.813333pt;}
.yc9{bottom:688.413333pt;}
.y183{bottom:690.973333pt;}
.yea{bottom:691.293333pt;}
.y148{bottom:691.773333pt;}
.ya5{bottom:691.933333pt;}
.y117{bottom:696.413333pt;}
.y147{bottom:704.093333pt;}
.yef{bottom:704.253333pt;}
.y5e{bottom:704.413333pt;}
.yc8{bottom:706.013333pt;}
.ya4{bottom:707.293333pt;}
.y182{bottom:708.573333pt;}
.y116{bottom:714.013333pt;}
.y146{bottom:721.693333pt;}
.y5d{bottom:722.013333pt;}
.ya3{bottom:722.493333pt;}
.yc7{bottom:723.613333pt;}
.y181{bottom:726.173333pt;}
.yee{bottom:729.533333pt;}
.y115{bottom:731.613333pt;}
.y145{bottom:734.013333pt;}
.ya2{bottom:737.853333pt;}
.y5c{bottom:739.773333pt;}
.yc6{bottom:741.213333pt;}
.yed{bottom:742.333333pt;}
.y180{bottom:743.773333pt;}
.y114{bottom:749.213333pt;}
.y144{bottom:751.613333pt;}
.ya1{bottom:753.213333pt;}
.ye6{bottom:755.293333pt;}
.y5b{bottom:757.373333pt;}
.yc5{bottom:758.813333pt;}
.y17f{bottom:761.373333pt;}
.y143{bottom:763.773333pt;}
.y113{bottom:766.813333pt;}
.ye9{bottom:768.253333pt;}
.ya0{bottom:768.573333pt;}
.y5a{bottom:774.973333pt;}
.y142{bottom:776.093333pt;}
.yc4{bottom:776.573333pt;}
.y17e{bottom:778.973333pt;}
.y9f{bottom:783.933333pt;}
.y112{bottom:784.573333pt;}
.y15{bottom:785.053333pt;}
.y59{bottom:792.573333pt;}
.ye8{bottom:793.533333pt;}
.y141{bottom:793.693333pt;}
.yc3{bottom:794.173333pt;}
.y17d{bottom:796.573333pt;}
.y9e{bottom:799.333333pt;}
.y14{bottom:801.893333pt;}
.y111{bottom:802.213333pt;}
.y140{bottom:806.053333pt;}
.ye7{bottom:806.373333pt;}
.y58{bottom:810.213333pt;}
.yc2{bottom:811.813333pt;}
.y13{bottom:812.773333pt;}
.y17c{bottom:814.213333pt;}
.y9d{bottom:814.533333pt;}
.y12{bottom:817.733333pt;}
.y13f{bottom:818.213333pt;}
.ydf{bottom:819.333333pt;}
.y110{bottom:819.813333pt;}
.y57{bottom:827.973333pt;}
.yc1{bottom:829.413333pt;}
.y9c{bottom:829.893333pt;}
.y11{bottom:830.053333pt;}
.y17b{bottom:831.813333pt;}
.ye4{bottom:832.293333pt;}
.y13e{bottom:835.813333pt;}
.y10f{bottom:837.413333pt;}
.y10{bottom:842.373333pt;}
.y9b{bottom:845.253333pt;}
.y56{bottom:845.573333pt;}
.yc0{bottom:847.013333pt;}
.y13d{bottom:848.133333pt;}
.y17a{bottom:849.413333pt;}
.yf{bottom:854.533333pt;}
.y10e{bottom:855.013333pt;}
.ye3{bottom:857.573333pt;}
.y13c{bottom:860.453333pt;}
.y9a{bottom:860.613333pt;}
.y55{bottom:863.173333pt;}
.ybf{bottom:864.773333pt;}
.y179{bottom:867.013333pt;}
.ye{bottom:867.333333pt;}
.ye1{bottom:870.373333pt;}
.y10d{bottom:872.773333pt;}
.y99{bottom:875.973333pt;}
.y13b{bottom:878.053333pt;}
.yd{bottom:879.013333pt;}
.y54{bottom:880.773333pt;}
.ybe{bottom:882.373333pt;}
.yd8{bottom:884.293333pt;}
.y178{bottom:884.613333pt;}
.y10c{bottom:890.373333pt;}
.y13a{bottom:892.773333pt;}
.y98{bottom:893.093333pt;}
.ydc{bottom:897.093333pt;}
.y53{bottom:898.373333pt;}
.yc{bottom:898.853333pt;}
.ybd{bottom:899.973333pt;}
.y177{bottom:902.213333pt;}
.y10b{bottom:907.973333pt;}
.y97{bottom:908.613333pt;}
.y139{bottom:909.893333pt;}
.y52{bottom:915.813333pt;}
.yb{bottom:917.573333pt;}
.y176{bottom:919.813333pt;}
.ydb{bottom:922.373333pt;}
.y96{bottom:923.973333pt;}
.y10a{bottom:925.573333pt;}
.y51{bottom:931.173333pt;}
.y175{bottom:932.133333pt;}
.ybc{bottom:935.173333pt;}
.yda{bottom:935.333333pt;}
.y95{bottom:939.493333pt;}
.y109{bottom:943.173333pt;}
.y50{bottom:946.853333pt;}
.yd2{bottom:948.293333pt;}
.ya{bottom:949.733333pt;}
.ybb{bottom:952.933333pt;}
.y94{bottom:954.853333pt;}
.y108{bottom:960.933333pt;}
.yd7{bottom:961.093333pt;}
.y174{bottom:961.893333pt;}
.y4f{bottom:962.213333pt;}
.y93{bottom:970.053333pt;}
.y92{bottom:970.213333pt;}
.yba{bottom:970.533333pt;}
.yd6{bottom:974.053333pt;}
.y173{bottom:974.213333pt;}
.y4e{bottom:977.573333pt;}
.y107{bottom:978.533333pt;}
.y9{bottom:978.853333pt;}
.y91{bottom:985.573333pt;}
.yd4{bottom:987.013333pt;}
.yb9{bottom:988.133333pt;}
.y45{bottom:989.093333pt;}
.y172{bottom:991.813333pt;}
.y4d{bottom:992.613333pt;}
.y8{bottom:993.733333pt;}
.y106{bottom:996.133333pt;}
.yd0{bottom:999.973333pt;}
.y90{bottom:1000.933333pt;}
.y171{bottom:1004.133333pt;}
.yb8{bottom:1005.733333pt;}
.y4c{bottom:1007.973333pt;}
.y105{bottom:1013.733333pt;}
.y8f{bottom:1016.293333pt;}
.y138{bottom:1023.040000pt;}
.y4b{bottom:1023.200000pt;}
.yb7{bottom:1023.360000pt;}
.y7{bottom:1027.520000pt;}
.y104{bottom:1031.360000pt;}
.y8e{bottom:1031.520000pt;}
.y170{bottom:1033.920000pt;}
.y6{bottom:1037.760000pt;}
.y49{bottom:1039.520000pt;}
.y5{bottom:1045.280000pt;}
.y8c{bottom:1047.520000pt;}
.y48{bottom:1056.640000pt;}
.y4{bottom:1064.480000pt;}
.y8b{bottom:1064.640000pt;}
.h7{height:5.022500pt;}
.he{height:10.678125pt;}
.h2e{height:12.146667pt;}
.h39{height:12.160000pt;}
.h35{height:12.180000pt;}
.h2c{height:12.306667pt;}
.h37{height:12.320000pt;}
.h32{height:13.106667pt;}
.h12{height:16.125000pt;}
.h2a{height:17.266667pt;}
.h29{height:17.426667pt;}
.h27{height:17.440000pt;}
.h28{height:17.466667pt;}
.h33{height:24.466667pt;}
.h36{height:24.480000pt;}
.h15{height:24.626667pt;}
.h4{height:36.431250pt;}
.hc{height:37.410000pt;}
.h16{height:38.153511pt;}
.h30{height:39.132187pt;}
.hd{height:42.063437pt;}
.h8{height:42.084375pt;}
.h19{height:42.862500pt;}
.h5{height:43.215000pt;}
.h11{height:43.804688pt;}
.h2{height:47.109375pt;}
.h9{height:48.375000pt;}
.h24{height:48.477187pt;}
.h26{height:49.117188pt;}
.h14{height:49.336419pt;}
.h2d{height:51.026667pt;}
.hf{height:52.134375pt;}
.h25{height:52.774375pt;}
.ha{height:53.535000pt;}
.h2b{height:57.758750pt;}
.h13{height:59.340000pt;}
.h1b{height:59.531250pt;}
.h3b{height:62.781250pt;}
.h17{height:62.812500pt;}
.h2f{height:63.186667pt;}
.h38{height:63.360000pt;}
.h34{height:63.380000pt;}
.h31{height:64.146667pt;}
.h6{height:64.500000pt;}
.h22{height:65.881250pt;}
.h21{height:67.801250pt;}
.h3c{height:73.490625pt;}
.h1a{height:73.611250pt;}
.h1c{height:74.891250pt;}
.h3d{height:83.540625pt;}
.h3a{height:85.785000pt;}
.h1f{height:91.531250pt;}
.h1d{height:91.909375pt;}
.h1e{height:96.011250pt;}
.h23{height:98.571250pt;}
.h18{height:102.411250pt;}
.h3{height:107.715000pt;}
.hb{height:112.875000pt;}
.h20{height:120.331250pt;}
.h10{height:224.346667pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.wb{width:42.390667pt;}
.w3{width:90.426667pt;}
.wa{width:96.658667pt;}
.w7{width:116.018667pt;}
.wc{width:132.820000pt;}
.w8{width:142.266667pt;}
.w6{width:155.066667pt;}
.w9{width:174.426667pt;}
.w4{width:206.266667pt;}
.w5{width:240.337333pt;}
.wd{width:473.053333pt;}
.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;}
.x21{left:7.190667pt;}
.x9{left:9.466667pt;}
.x8{left:23.866667pt;}
.x23{left:26.880000pt;}
.x26{left:31.840000pt;}
.x7{left:37.786667pt;}
.x2c{left:39.226667pt;}
.x29{left:42.266667pt;}
.x30{left:43.825333pt;}
.x2a{left:51.200000pt;}
.x6{left:52.186667pt;}
.x5{left:69.466667pt;}
.x2{left:72.032000pt;}
.x2b{left:78.106667pt;}
.x27{left:81.146667pt;}
.x10{left:82.272000pt;}
.xd{left:96.032000pt;}
.x16{left:100.672000pt;}
.x35{left:102.112000pt;}
.x1b{left:103.712000pt;}
.x1a{left:108.192000pt;}
.x12{left:110.112000pt;}
.x2f{left:112.521333pt;}
.x13{left:115.872000pt;}
.x18{left:118.272000pt;}
.x17{left:123.232000pt;}
.x14{left:124.352000pt;}
.x11{left:135.386667pt;}
.x19{left:140.826667pt;}
.x1c{left:167.706667pt;}
.x15{left:169.146667pt;}
.x32{left:202.586667pt;}
.x31{left:245.186667pt;}
.x22{left:312.386667pt;}
.x1e{left:319.746667pt;}
.xf{left:357.026667pt;}
.x1f{left:386.013333pt;}
.x1{left:386.973333pt;}
.x3{left:396.093333pt;}
.x1d{left:402.272000pt;}
.x24{left:467.466667pt;}
.x28{left:486.826667pt;}
.x20{left:505.373333pt;}
.x2d{left:514.533333pt;}
.xe{left:524.773333pt;}
.x25{left:583.493333pt;}
.x2e{left:592.133333pt;}
.x34{left:632.133333pt;}
.x4{left:641.733333pt;}
.x33{left:646.053333pt;}
}




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