
    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_f2cbba6fff7abaf7dcec0963.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.005000;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_86555b0d3b0cd41f16dd3329.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.005000;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_e7c2194ca8b26d34bf1654a7.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.005000;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_67e3d3271dd3a1725dc41eb0.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.088379;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_b2d0abe4c8da27bcd12280a0.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.138184;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_936f780fe4453ed295374a9f.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.088379;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_6a704c024821b8cddd1b6e2f.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.065430;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_6b0eb15cb8b25dfd2d9f5bcc.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.064941;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_3d459fdd965b9b53bdfd129f.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.767578;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_5c604b3d24c19e4d4c159b62.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.064941;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-12.240000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:12.240000px;}
.v1{vertical-align:20.880000px;}
.ls29{letter-spacing:-0.990000px;}
.ls14{letter-spacing:-0.954000px;}
.ls13{letter-spacing:-0.762000px;}
.ls10{letter-spacing:-0.618000px;}
.ls19{letter-spacing:-0.576000px;}
.lsc{letter-spacing:-0.414600px;}
.ls24{letter-spacing:-0.396000px;}
.ls1e{letter-spacing:-0.270000px;}
.ls8{letter-spacing:-0.226200px;}
.ls25{letter-spacing:-0.198000px;}
.ls2d{letter-spacing:-0.180000px;}
.ls4{letter-spacing:-0.172800px;}
.ls1f{letter-spacing:-0.162000px;}
.lsa{letter-spacing:-0.109200px;}
.ls11{letter-spacing:-0.103800px;}
.ls28{letter-spacing:-0.090000px;}
.ls31{letter-spacing:-0.054000px;}
.ls1b{letter-spacing:-0.043200px;}
.ls2a{letter-spacing:-0.036000px;}
.ls0{letter-spacing:0.000000px;}
.ls26{letter-spacing:0.018000px;}
.lsd{letter-spacing:0.023040px;}
.ls5{letter-spacing:0.072000px;}
.lse{letter-spacing:0.075000px;}
.ls27{letter-spacing:0.090000px;}
.lsf{letter-spacing:0.100800px;}
.ls15{letter-spacing:0.106800px;}
.ls1c{letter-spacing:0.108000px;}
.ls3{letter-spacing:0.123120px;}
.ls1a{letter-spacing:0.126000px;}
.ls1d{letter-spacing:0.144000px;}
.ls12{letter-spacing:0.180000px;}
.lsb{letter-spacing:0.187200px;}
.ls23{letter-spacing:0.198000px;}
.ls2f{letter-spacing:0.216000px;}
.ls2{letter-spacing:0.252000px;}
.ls18{letter-spacing:0.288000px;}
.ls17{letter-spacing:0.305400px;}
.ls2c{letter-spacing:0.306000px;}
.ls9{letter-spacing:0.316800px;}
.ls7{letter-spacing:0.324000px;}
.ls22{letter-spacing:0.336000px;}
.ls1{letter-spacing:0.360000px;}
.ls6{letter-spacing:0.450000px;}
.ls21{letter-spacing:1.267200px;}
.ls2b{letter-spacing:3.240000px;}
.ls2e{letter-spacing:5.400000px;}
.ls30{letter-spacing:6.120000px;}
.ls20{letter-spacing:8.280000px;}
.ls16{letter-spacing:17.107200px;}
.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.532800px;}
.ws9{word-spacing:-14.889600px;}
.ws10{word-spacing:-14.878200px;}
.wsf{word-spacing:-14.679600px;}
.wsc{word-spacing:-14.647800px;}
.wsb{word-spacing:-14.595840px;}
.ws5{word-spacing:-14.572800px;}
.ws13{word-spacing:-14.529600px;}
.wsd{word-spacing:-14.469000px;}
.wsa{word-spacing:-14.463600px;}
.wse{word-spacing:-13.618800px;}
.ws8{word-spacing:-12.316200px;}
.ws7{word-spacing:-12.204000px;}
.ws11{word-spacing:-12.168000px;}
.ws3{word-spacing:-12.132000px;}
.ws1b{word-spacing:-12.096000px;}
.ws12{word-spacing:-12.006000px;}
.ws15{word-spacing:-11.988000px;}
.ws6{word-spacing:-11.880000px;}
.ws19{word-spacing:-11.844000px;}
.ws1c{word-spacing:-11.826000px;}
.ws18{word-spacing:-11.790000px;}
.ws14{word-spacing:-11.718000px;}
.ws1a{word-spacing:-11.700000px;}
.ws17{word-spacing:-11.682000px;}
.ws16{word-spacing:-11.484000px;}
.ws2{word-spacing:-7.992000px;}
.ws1{word-spacing:-7.920000px;}
.ws1d{word-spacing:-7.740000px;}
.ws0{word-spacing:0.000000px;}
._b{margin-left:-4.250160px;}
._8{margin-left:-2.970000px;}
._0{margin-left:-1.562400px;}
._3{width:1.274400px;}
._9{width:2.484000px;}
._2{width:4.072800px;}
._1{width:5.184000px;}
._6{width:6.534000px;}
._7{width:7.797600px;}
._c{width:9.093600px;}
._5{width:10.584000px;}
._10{width:11.629440px;}
._d{width:13.115520px;}
._1e{width:14.138400px;}
._4{width:15.336000px;}
._11{width:16.626240px;}
._a{width:18.576000px;}
._14{width:20.108160px;}
._1b{width:21.687360px;}
._19{width:23.250240px;}
._16{width:24.512160px;}
._15{width:25.740000px;}
._1a{width:27.201600px;}
._1c{width:28.549440px;}
._1d{width:29.648160px;}
._17{width:38.220480px;}
._18{width:39.545280px;}
._e{width:125.673960px;}
._12{width:197.963760px;}
._f{width:203.457600px;}
._13{width:205.387200px;}
.fc6{color:rgb(5,99,193);}
.fc5{color:rgb(24,23,21);}
.fc4{color:rgb(29,29,27);}
.fc3{color:rgb(19,20,19);}
.fc1{color:rgb(38,90,63);}
.fc2{color:rgb(17,17,17);}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:36.000000px;}
.fse{font-size:41.760000px;}
.fs4{font-size:42.000000px;}
.fsc{font-size:48.240000px;}
.fs8{font-size:54.000000px;}
.fsd{font-size:59.760000px;}
.fs3{font-size:60.000000px;}
.fs1{font-size:63.000000px;}
.fs5{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.fsb{font-size:84.240000px;}
.fs9{font-size:95.760000px;}
.fs2{font-size:102.000000px;}
.fsa{font-size:102.240000px;}
.fs6{font-size:156.240000px;}
.y0{bottom:0.000000px;}
.y63{bottom:4.860000px;}
.y3d{bottom:24.300000px;}
.y3c{bottom:42.480000px;}
.y3b{bottom:60.840000px;}
.y4e{bottom:63.000000px;}
.y5{bottom:66.525004px;}
.y3a{bottom:79.020000px;}
.y4d{bottom:79.740000px;}
.y24{bottom:86.976000px;}
.y65{bottom:92.016000px;}
.y4{bottom:97.125005px;}
.y39{bottom:97.200000px;}
.y23{bottom:97.596000px;}
.y4c{bottom:100.800000px;}
.y38{bottom:115.410000px;}
.y4b{bottom:117.390000px;}
.y37{bottom:133.590000px;}
.y4a{bottom:134.130000px;}
.y21{bottom:139.264499px;}
.y36{bottom:151.770000px;}
.yba{bottom:152.670000px;}
.y61{bottom:153.390000px;}
.y125{bottom:153.930000px;}
.y49{bottom:155.190000px;}
.yb9{bottom:155.730000px;}
.y60{bottom:157.170000px;}
.y94{bottom:164.010000px;}
.yed{bottom:168.330000px;}
.yb8{bottom:169.230000px;}
.y35{bottom:169.950000px;}
.y124{bottom:170.670000px;}
.yac{bottom:171.030000px;}
.y48{bottom:171.750000px;}
.yb7{bottom:172.290000px;}
.y5f{bottom:176.070000px;}
.y93{bottom:184.350000px;}
.yec{bottom:184.890000px;}
.yb6{bottom:185.790000px;}
.y123{bottom:187.230000px;}
.y34{bottom:188.130000px;}
.y5e{bottom:189.390000px;}
.yab{bottom:191.370000px;}
.y47{bottom:192.990000px;}
.y18{bottom:196.933500px;}
.yeb{bottom:201.630000px;}
.y122{bottom:203.790000px;}
.y92{bottom:204.690000px;}
.y33{bottom:206.310000px;}
.y20{bottom:209.518500px;}
.y17{bottom:209.533503px;}
.yaa{bottom:211.530000px;}
.y5c{bottom:213.330000px;}
.y46{bottom:214.050000px;}
.y5d{bottom:217.110000px;}
.yea{bottom:218.190000px;}
.y121{bottom:220.530000px;}
.y1f{bottom:222.118502px;}
.y16{bottom:222.133505px;}
.yde{bottom:224.130000px;}
.y32{bottom:224.670000px;}
.y91{bottom:225.030000px;}
.y45{bottom:230.610000px;}
.ya9{bottom:231.870000px;}
.y5b{bottom:233.490000px;}
.y1e{bottom:234.718504px;}
.y15{bottom:234.733496px;}
.ye9{bottom:234.750000px;}
.y120{bottom:237.090000px;}
.ye7{bottom:237.450000px;}
.y31{bottom:242.850000px;}
.ydd{bottom:244.470000px;}
.y90{bottom:245.370000px;}
.y44{bottom:247.350000px;}
.ya8{bottom:252.210000px;}
.y11f{bottom:253.650000px;}
.y5a{bottom:253.830000px;}
.ye6{bottom:257.610000px;}
.y1d{bottom:259.918497px;}
.y14{bottom:259.933500px;}
.y30{bottom:261.030000px;}
.y43{bottom:263.910000px;}
.ydc{bottom:264.810000px;}
.y8f{bottom:265.530000px;}
.ye8{bottom:270.210000px;}
.y11e{bottom:270.390000px;}
.y1c{bottom:272.518500px;}
.y13{bottom:272.533503px;}
.ya7{bottom:272.550000px;}
.y59{bottom:274.170000px;}
.ye5{bottom:277.950000px;}
.y2f{bottom:279.210000px;}
.y42{bottom:284.970000px;}
.y1b{bottom:285.118502px;}
.y12{bottom:285.133499px;}
.ydb{bottom:285.150000px;}
.y8e{bottom:285.870000px;}
.y11d{bottom:286.950000px;}
.ya6{bottom:292.890000px;}
.y58{bottom:294.510000px;}
.y2e{bottom:297.390000px;}
.ye4{bottom:298.290000px;}
.y41{bottom:301.710000px;}
.y11c{bottom:303.510000px;}
.yda{bottom:305.490000px;}
.y8d{bottom:306.210000px;}
.y1a{bottom:310.318501px;}
.y11{bottom:310.333501px;}
.ya5{bottom:313.230000px;}
.y3e{bottom:313.950000px;}
.y57{bottom:314.850000px;}
.y2d{bottom:315.570000px;}
.y40{bottom:318.270000px;}
.ye3{bottom:318.630000px;}
.y11b{bottom:320.250000px;}
.y19{bottom:322.918500px;}
.y10{bottom:322.933500px;}
.yd9{bottom:325.830000px;}
.y8c{bottom:326.550000px;}
.y2c{bottom:331.770000px;}
.ya4{bottom:333.615000px;}
.y3f{bottom:334.830000px;}
.y56{bottom:335.235000px;}
.y11a{bottom:336.855000px;}
.ye2{bottom:337.755000px;}
.yd8{bottom:346.035000px;}
.y8b{bottom:346.935000px;}
.yf{bottom:348.133500px;}
.y119{bottom:353.415000px;}
.ya3{bottom:353.775000px;}
.ye1{bottom:355.215000px;}
.y55{bottom:355.395000px;}
.yd7{bottom:366.375000px;}
.y8a{bottom:367.275000px;}
.y118{bottom:370.155000px;}
.ya2{bottom:374.115000px;}
.y54{bottom:375.735000px;}
.y126{bottom:383.835000px;}
.yd6{bottom:386.715000px;}
.ye{bottom:386.785499px;}
.y89{bottom:387.615000px;}
.yb3{bottom:392.115000px;}
.ya1{bottom:394.455000px;}
.y53{bottom:396.075000px;}
.y117{bottom:403.275000px;}
.yd5{bottom:407.055000px;}
.y88{bottom:407.775000px;}
.yd{bottom:408.044999px;}
.ya0{bottom:414.795000px;}
.y52{bottom:416.415000px;}
.y116{bottom:420.015000px;}
.yd4{bottom:427.395000px;}
.y87{bottom:428.115000px;}
.y9f{bottom:435.135000px;}
.y51{bottom:435.495000px;}
.y115{bottom:436.575000px;}
.yd3{bottom:447.735000px;}
.y86{bottom:448.455000px;}
.y50{bottom:452.955000px;}
.y114{bottom:453.135000px;}
.y9e{bottom:455.475000px;}
.yd2{bottom:467.895000px;}
.y85{bottom:468.795000px;}
.y113{bottom:469.875000px;}
.y4f{bottom:470.595000px;}
.ye0{bottom:472.575000px;}
.y9d{bottom:475.635000px;}
.y2b{bottom:481.935000px;}
.y112{bottom:486.435000px;}
.yd1{bottom:488.235000px;}
.y84{bottom:489.135000px;}
.y9c{bottom:495.975000px;}
.yc{bottom:502.864502px;}
.y111{bottom:502.995000px;}
.yd0{bottom:508.575000px;}
.y83{bottom:509.475000px;}
.y9b{bottom:516.315000px;}
.y110{bottom:519.735000px;}
.yb{bottom:520.864502px;}
.ycf{bottom:528.915000px;}
.y82{bottom:529.635000px;}
.y10f{bottom:536.295000px;}
.y9a{bottom:536.655000px;}
.ya{bottom:538.864499px;}
.yce{bottom:549.255000px;}
.y81{bottom:549.975000px;}
.y10e{bottom:552.855000px;}
.y9{bottom:556.864499px;}
.y99{bottom:556.995000px;}
.ycd{bottom:569.595000px;}
.y80{bottom:570.315000px;}
.y98{bottom:577.335000px;}
.y10d{bottom:586.155000px;}
.ycc{bottom:589.755000px;}
.y7f{bottom:590.655000px;}
.y97{bottom:597.525000px;}
.y10c{bottom:602.745000px;}
.ycb{bottom:610.125000px;}
.y7e{bottom:611.025000px;}
.y96{bottom:617.865000px;}
.y10b{bottom:619.485000px;}
.yca{bottom:630.465000px;}
.y7d{bottom:631.365000px;}
.y10a{bottom:636.045000px;}
.yb2{bottom:638.205000px;}
.y8{bottom:645.510000px;}
.yc9{bottom:650.805000px;}
.y7c{bottom:651.525000px;}
.y109{bottom:652.605000px;}
.y95{bottom:656.205000px;}
.yb1{bottom:658.545000px;}
.y7{bottom:666.771000px;}
.y108{bottom:669.165000px;}
.yc8{bottom:671.145000px;}
.y7b{bottom:671.865000px;}
.yb0{bottom:678.885000px;}
.y107{bottom:685.905000px;}
.y7a{bottom:692.205000px;}
.yaf{bottom:699.225000px;}
.y106{bottom:702.465000px;}
.y79{bottom:712.545000px;}
.yc7{bottom:713.265000px;}
.y105{bottom:719.025000px;}
.yae{bottom:719.385000px;}
.y6{bottom:726.298500px;}
.y78{bottom:732.885000px;}
.y104{bottom:735.765000px;}
.yc6{bottom:737.385000px;}
.yc5{bottom:739.725000px;}
.y103{bottom:752.325000px;}
.y3{bottom:752.599495px;}
.y77{bottom:753.225000px;}
.yad{bottom:757.725000px;}
.yc4{bottom:760.065000px;}
.y102{bottom:768.885000px;}
.y76{bottom:773.385000px;}
.yc3{bottom:780.405000px;}
.y101{bottom:785.625000px;}
.y75{bottom:793.725000px;}
.yc2{bottom:800.745000px;}
.y100{bottom:802.185000px;}
.y74{bottom:814.065000px;}
.yff{bottom:818.745000px;}
.yc1{bottom:821.085000px;}
.y2a{bottom:832.965000px;}
.y73{bottom:834.405000px;}
.yfe{bottom:835.485000px;}
.yc0{bottom:841.425000px;}
.yfd{bottom:852.045000px;}
.y72{bottom:854.745000px;}
.ydf{bottom:858.525000px;}
.ybf{bottom:861.585000px;}
.y29{bottom:868.470000px;}
.yfc{bottom:868.650000px;}
.y71{bottom:875.130000px;}
.y2{bottom:879.369000px;}
.ybe{bottom:881.970000px;}
.yfb{bottom:885.390000px;}
.y70{bottom:895.470000px;}
.yfa{bottom:901.950000px;}
.ybd{bottom:902.310000px;}
.y6f{bottom:915.630000px;}
.yf9{bottom:918.510000px;}
.y28{bottom:922.470000px;}
.ybc{bottom:922.650000px;}
.yf8{bottom:935.250000px;}
.y6e{bottom:935.970000px;}
.yf7{bottom:951.810000px;}
.y27{bottom:953.970000px;}
.y6d{bottom:956.310000px;}
.ybb{bottom:960.990000px;}
.y1{bottom:966.726000px;}
.yf6{bottom:968.370000px;}
.y6c{bottom:976.650000px;}
.yf5{bottom:985.110000px;}
.y6b{bottom:996.990000px;}
.yf4{bottom:1001.670000px;}
.y62{bottom:1010.130000px;}
.y26{bottom:1011.930000px;}
.y6a{bottom:1017.330000px;}
.yf3{bottom:1018.230000px;}
.yf2{bottom:1034.970000px;}
.y69{bottom:1037.490000px;}
.y25{bottom:1037.850000px;}
.yf1{bottom:1051.530000px;}
.y68{bottom:1057.830000px;}
.yb5{bottom:1061.610000px;}
.yf0{bottom:1068.090000px;}
.y67{bottom:1078.170000px;}
.yef{bottom:1084.830000px;}
.y66{bottom:1098.510000px;}
.yee{bottom:1101.390000px;}
.yb4{bottom:1102.290000px;}
.y22{bottom:1131.840000px;}
.y64{bottom:1164.060000px;}
.h1b{height:17.625000px;}
.ha{height:31.324219px;}
.h7{height:32.130000px;}
.h1a{height:34.746328px;}
.h19{height:36.336094px;}
.h12{height:40.843828px;}
.h10{height:41.974453px;}
.h1c{height:45.060117px;}
.h13{height:45.720703px;}
.h6{height:45.900000px;}
.h15{height:46.986328px;}
.h3{height:48.195000px;}
.h16{height:50.597578px;}
.h17{height:51.998203px;}
.h2{height:55.080000px;}
.h14{height:56.084062px;}
.hb{height:57.636562px;}
.hf{height:73.298672px;}
.h5{height:78.030000px;}
.hc{height:81.078047px;}
.hd{height:86.564531px;}
.he{height:88.960781px;}
.h4{height:119.055004px;}
.h9{height:145.940977px;}
.h11{height:347.610000px;}
.h0{height:1262.833500px;}
.h1{height:1263.000000px;}
.h18{height:1263.044910px;}
.h8{height:1263.060000px;}
.w5{width:13.320000px;}
.w6{width:321.375000px;}
.w4{width:345.801000px;}
.w2{width:637.794021px;}
.w8{width:671.130000px;}
.w0{width:892.912500px;}
.w7{width:892.957500px;}
.w3{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xa{left:4.131000px;}
.x14{left:10.791000px;}
.x13{left:99.945000px;}
.x1{left:102.045000px;}
.x2{left:106.297500px;}
.x12{left:112.176000px;}
.x15{left:133.416000px;}
.x6{left:156.090000px;}
.x19{left:190.627500px;}
.x5{left:196.410000px;}
.x4{left:203.484001px;}
.x1a{left:232.747500px;}
.x1b{left:241.950000px;}
.x7{left:245.910000px;}
.x8{left:276.150000px;}
.x11{left:322.455000px;}
.x9{left:368.355000px;}
.x20{left:430.455000px;}
.xb{left:452.235000px;}
.x3{left:454.959000px;}
.xc{left:465.555000px;}
.xf{left:471.832500px;}
.x10{left:477.645000px;}
.xd{left:484.485000px;}
.x1c{left:494.002500px;}
.x1d{left:499.785000px;}
.x1e{left:606.862500px;}
.x1f{left:612.645000px;}
.x21{left:616.425000px;}
.x16{left:669.390000px;}
.xe{left:690.270000px;}
.x17{left:732.007500px;}
.x18{left:737.790000px;}
@media print{
.v2{vertical-align:-10.880000pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:10.880000pt;}
.v1{vertical-align:18.560000pt;}
.ls29{letter-spacing:-0.880000pt;}
.ls14{letter-spacing:-0.848000pt;}
.ls13{letter-spacing:-0.677333pt;}
.ls10{letter-spacing:-0.549333pt;}
.ls19{letter-spacing:-0.512000pt;}
.lsc{letter-spacing:-0.368533pt;}
.ls24{letter-spacing:-0.352000pt;}
.ls1e{letter-spacing:-0.240000pt;}
.ls8{letter-spacing:-0.201067pt;}
.ls25{letter-spacing:-0.176000pt;}
.ls2d{letter-spacing:-0.160000pt;}
.ls4{letter-spacing:-0.153600pt;}
.ls1f{letter-spacing:-0.144000pt;}
.lsa{letter-spacing:-0.097067pt;}
.ls11{letter-spacing:-0.092267pt;}
.ls28{letter-spacing:-0.080000pt;}
.ls31{letter-spacing:-0.048000pt;}
.ls1b{letter-spacing:-0.038400pt;}
.ls2a{letter-spacing:-0.032000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls26{letter-spacing:0.016000pt;}
.lsd{letter-spacing:0.020480pt;}
.ls5{letter-spacing:0.064000pt;}
.lse{letter-spacing:0.066667pt;}
.ls27{letter-spacing:0.080000pt;}
.lsf{letter-spacing:0.089600pt;}
.ls15{letter-spacing:0.094933pt;}
.ls1c{letter-spacing:0.096000pt;}
.ls3{letter-spacing:0.109440pt;}
.ls1a{letter-spacing:0.112000pt;}
.ls1d{letter-spacing:0.128000pt;}
.ls12{letter-spacing:0.160000pt;}
.lsb{letter-spacing:0.166400pt;}
.ls23{letter-spacing:0.176000pt;}
.ls2f{letter-spacing:0.192000pt;}
.ls2{letter-spacing:0.224000pt;}
.ls18{letter-spacing:0.256000pt;}
.ls17{letter-spacing:0.271467pt;}
.ls2c{letter-spacing:0.272000pt;}
.ls9{letter-spacing:0.281600pt;}
.ls7{letter-spacing:0.288000pt;}
.ls22{letter-spacing:0.298667pt;}
.ls1{letter-spacing:0.320000pt;}
.ls6{letter-spacing:0.400000pt;}
.ls21{letter-spacing:1.126400pt;}
.ls2b{letter-spacing:2.880000pt;}
.ls2e{letter-spacing:4.800000pt;}
.ls30{letter-spacing:5.440000pt;}
.ls20{letter-spacing:7.360000pt;}
.ls16{letter-spacing:15.206400pt;}
.ws4{word-spacing:-16.473600pt;}
.ws9{word-spacing:-13.235200pt;}
.ws10{word-spacing:-13.225067pt;}
.wsf{word-spacing:-13.048533pt;}
.wsc{word-spacing:-13.020267pt;}
.wsb{word-spacing:-12.974080pt;}
.ws5{word-spacing:-12.953600pt;}
.ws13{word-spacing:-12.915200pt;}
.wsd{word-spacing:-12.861333pt;}
.wsa{word-spacing:-12.856533pt;}
.wse{word-spacing:-12.105600pt;}
.ws8{word-spacing:-10.947733pt;}
.ws7{word-spacing:-10.848000pt;}
.ws11{word-spacing:-10.816000pt;}
.ws3{word-spacing:-10.784000pt;}
.ws1b{word-spacing:-10.752000pt;}
.ws12{word-spacing:-10.672000pt;}
.ws15{word-spacing:-10.656000pt;}
.ws6{word-spacing:-10.560000pt;}
.ws19{word-spacing:-10.528000pt;}
.ws1c{word-spacing:-10.512000pt;}
.ws18{word-spacing:-10.480000pt;}
.ws14{word-spacing:-10.416000pt;}
.ws1a{word-spacing:-10.400000pt;}
.ws17{word-spacing:-10.384000pt;}
.ws16{word-spacing:-10.208000pt;}
.ws2{word-spacing:-7.104000pt;}
.ws1{word-spacing:-7.040000pt;}
.ws1d{word-spacing:-6.880000pt;}
.ws0{word-spacing:0.000000pt;}
._b{margin-left:-3.777920pt;}
._8{margin-left:-2.640000pt;}
._0{margin-left:-1.388800pt;}
._3{width:1.132800pt;}
._9{width:2.208000pt;}
._2{width:3.620267pt;}
._1{width:4.608000pt;}
._6{width:5.808000pt;}
._7{width:6.931200pt;}
._c{width:8.083200pt;}
._5{width:9.408000pt;}
._10{width:10.337280pt;}
._d{width:11.658240pt;}
._1e{width:12.567467pt;}
._4{width:13.632000pt;}
._11{width:14.778880pt;}
._a{width:16.512000pt;}
._14{width:17.873920pt;}
._1b{width:19.277653pt;}
._19{width:20.666880pt;}
._16{width:21.788587pt;}
._15{width:22.880000pt;}
._1a{width:24.179200pt;}
._1c{width:25.377280pt;}
._1d{width:26.353920pt;}
._17{width:33.973760pt;}
._18{width:35.151360pt;}
._e{width:111.710187pt;}
._12{width:175.967787pt;}
._f{width:180.851200pt;}
._13{width:182.566400pt;}
.fs7{font-size:32.000000pt;}
.fse{font-size:37.120000pt;}
.fs4{font-size:37.333333pt;}
.fsc{font-size:42.880000pt;}
.fs8{font-size:48.000000pt;}
.fsd{font-size:53.120000pt;}
.fs3{font-size:53.333333pt;}
.fs1{font-size:56.000000pt;}
.fs5{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.fsb{font-size:74.880000pt;}
.fs9{font-size:85.120000pt;}
.fs2{font-size:90.666667pt;}
.fsa{font-size:90.880000pt;}
.fs6{font-size:138.880000pt;}
.y0{bottom:0.000000pt;}
.y63{bottom:4.320000pt;}
.y3d{bottom:21.600000pt;}
.y3c{bottom:37.760000pt;}
.y3b{bottom:54.080000pt;}
.y4e{bottom:56.000000pt;}
.y5{bottom:59.133337pt;}
.y3a{bottom:70.240000pt;}
.y4d{bottom:70.880000pt;}
.y24{bottom:77.312000pt;}
.y65{bottom:81.792000pt;}
.y4{bottom:86.333337pt;}
.y39{bottom:86.400000pt;}
.y23{bottom:86.752000pt;}
.y4c{bottom:89.600000pt;}
.y38{bottom:102.586667pt;}
.y4b{bottom:104.346667pt;}
.y37{bottom:118.746667pt;}
.y4a{bottom:119.226667pt;}
.y21{bottom:123.790666pt;}
.y36{bottom:134.906667pt;}
.yba{bottom:135.706667pt;}
.y61{bottom:136.346667pt;}
.y125{bottom:136.826667pt;}
.y49{bottom:137.946667pt;}
.yb9{bottom:138.426667pt;}
.y60{bottom:139.706667pt;}
.y94{bottom:145.786667pt;}
.yed{bottom:149.626667pt;}
.yb8{bottom:150.426667pt;}
.y35{bottom:151.066667pt;}
.y124{bottom:151.706667pt;}
.yac{bottom:152.026667pt;}
.y48{bottom:152.666667pt;}
.yb7{bottom:153.146667pt;}
.y5f{bottom:156.506667pt;}
.y93{bottom:163.866667pt;}
.yec{bottom:164.346667pt;}
.yb6{bottom:165.146667pt;}
.y123{bottom:166.426667pt;}
.y34{bottom:167.226667pt;}
.y5e{bottom:168.346667pt;}
.yab{bottom:170.106667pt;}
.y47{bottom:171.546667pt;}
.y18{bottom:175.052000pt;}
.yeb{bottom:179.226667pt;}
.y122{bottom:181.146667pt;}
.y92{bottom:181.946667pt;}
.y33{bottom:183.386667pt;}
.y20{bottom:186.238666pt;}
.y17{bottom:186.252002pt;}
.yaa{bottom:188.026667pt;}
.y5c{bottom:189.626667pt;}
.y46{bottom:190.266667pt;}
.y5d{bottom:192.986667pt;}
.yea{bottom:193.946667pt;}
.y121{bottom:196.026667pt;}
.y1f{bottom:197.438668pt;}
.y16{bottom:197.452004pt;}
.yde{bottom:199.226667pt;}
.y32{bottom:199.706667pt;}
.y91{bottom:200.026667pt;}
.y45{bottom:204.986667pt;}
.ya9{bottom:206.106667pt;}
.y5b{bottom:207.546667pt;}
.y1e{bottom:208.638670pt;}
.y15{bottom:208.651996pt;}
.ye9{bottom:208.666667pt;}
.y120{bottom:210.746667pt;}
.ye7{bottom:211.066667pt;}
.y31{bottom:215.866667pt;}
.ydd{bottom:217.306667pt;}
.y90{bottom:218.106667pt;}
.y44{bottom:219.866667pt;}
.ya8{bottom:224.186667pt;}
.y11f{bottom:225.466667pt;}
.y5a{bottom:225.626667pt;}
.ye6{bottom:228.986667pt;}
.y1d{bottom:231.038664pt;}
.y14{bottom:231.052000pt;}
.y30{bottom:232.026667pt;}
.y43{bottom:234.586667pt;}
.ydc{bottom:235.386667pt;}
.y8f{bottom:236.026667pt;}
.ye8{bottom:240.186667pt;}
.y11e{bottom:240.346667pt;}
.y1c{bottom:242.238666pt;}
.y13{bottom:242.252002pt;}
.ya7{bottom:242.266667pt;}
.y59{bottom:243.706667pt;}
.ye5{bottom:247.066667pt;}
.y2f{bottom:248.186667pt;}
.y42{bottom:253.306667pt;}
.y1b{bottom:253.438668pt;}
.y12{bottom:253.451999pt;}
.ydb{bottom:253.466667pt;}
.y8e{bottom:254.106667pt;}
.y11d{bottom:255.066667pt;}
.ya6{bottom:260.346667pt;}
.y58{bottom:261.786667pt;}
.y2e{bottom:264.346667pt;}
.ye4{bottom:265.146667pt;}
.y41{bottom:268.186667pt;}
.y11c{bottom:269.786667pt;}
.yda{bottom:271.546667pt;}
.y8d{bottom:272.186667pt;}
.y1a{bottom:275.838667pt;}
.y11{bottom:275.852001pt;}
.ya5{bottom:278.426667pt;}
.y3e{bottom:279.066667pt;}
.y57{bottom:279.866667pt;}
.y2d{bottom:280.506667pt;}
.y40{bottom:282.906667pt;}
.ye3{bottom:283.226667pt;}
.y11b{bottom:284.666667pt;}
.y19{bottom:287.038667pt;}
.y10{bottom:287.052000pt;}
.yd9{bottom:289.626667pt;}
.y8c{bottom:290.266667pt;}
.y2c{bottom:294.906667pt;}
.ya4{bottom:296.546667pt;}
.y3f{bottom:297.626667pt;}
.y56{bottom:297.986667pt;}
.y11a{bottom:299.426667pt;}
.ye2{bottom:300.226667pt;}
.yd8{bottom:307.586667pt;}
.y8b{bottom:308.386667pt;}
.yf{bottom:309.452000pt;}
.y119{bottom:314.146667pt;}
.ya3{bottom:314.466667pt;}
.ye1{bottom:315.746667pt;}
.y55{bottom:315.906667pt;}
.yd7{bottom:325.666667pt;}
.y8a{bottom:326.466667pt;}
.y118{bottom:329.026667pt;}
.ya2{bottom:332.546667pt;}
.y54{bottom:333.986667pt;}
.y126{bottom:341.186667pt;}
.yd6{bottom:343.746667pt;}
.ye{bottom:343.809333pt;}
.y89{bottom:344.546667pt;}
.yb3{bottom:348.546667pt;}
.ya1{bottom:350.626667pt;}
.y53{bottom:352.066667pt;}
.y117{bottom:358.466667pt;}
.yd5{bottom:361.826667pt;}
.y88{bottom:362.466667pt;}
.yd{bottom:362.706666pt;}
.ya0{bottom:368.706667pt;}
.y52{bottom:370.146667pt;}
.y116{bottom:373.346667pt;}
.yd4{bottom:379.906667pt;}
.y87{bottom:380.546667pt;}
.y9f{bottom:386.786667pt;}
.y51{bottom:387.106667pt;}
.y115{bottom:388.066667pt;}
.yd3{bottom:397.986667pt;}
.y86{bottom:398.626667pt;}
.y50{bottom:402.626667pt;}
.y114{bottom:402.786667pt;}
.y9e{bottom:404.866667pt;}
.yd2{bottom:415.906667pt;}
.y85{bottom:416.706667pt;}
.y113{bottom:417.666667pt;}
.y4f{bottom:418.306667pt;}
.ye0{bottom:420.066667pt;}
.y9d{bottom:422.786667pt;}
.y2b{bottom:428.386667pt;}
.y112{bottom:432.386667pt;}
.yd1{bottom:433.986667pt;}
.y84{bottom:434.786667pt;}
.y9c{bottom:440.866667pt;}
.yc{bottom:446.990669pt;}
.y111{bottom:447.106667pt;}
.yd0{bottom:452.066667pt;}
.y83{bottom:452.866667pt;}
.y9b{bottom:458.946667pt;}
.y110{bottom:461.986667pt;}
.yb{bottom:462.990669pt;}
.ycf{bottom:470.146667pt;}
.y82{bottom:470.786667pt;}
.y10f{bottom:476.706667pt;}
.y9a{bottom:477.026667pt;}
.ya{bottom:478.990666pt;}
.yce{bottom:488.226667pt;}
.y81{bottom:488.866667pt;}
.y10e{bottom:491.426667pt;}
.y9{bottom:494.990666pt;}
.y99{bottom:495.106667pt;}
.ycd{bottom:506.306667pt;}
.y80{bottom:506.946667pt;}
.y98{bottom:513.186667pt;}
.y10d{bottom:521.026667pt;}
.ycc{bottom:524.226667pt;}
.y7f{bottom:525.026667pt;}
.y97{bottom:531.133333pt;}
.y10c{bottom:535.773333pt;}
.ycb{bottom:542.333333pt;}
.y7e{bottom:543.133333pt;}
.y96{bottom:549.213333pt;}
.y10b{bottom:550.653333pt;}
.yca{bottom:560.413333pt;}
.y7d{bottom:561.213333pt;}
.y10a{bottom:565.373333pt;}
.yb2{bottom:567.293333pt;}
.y8{bottom:573.786667pt;}
.yc9{bottom:578.493333pt;}
.y7c{bottom:579.133333pt;}
.y109{bottom:580.093333pt;}
.y95{bottom:583.293333pt;}
.yb1{bottom:585.373333pt;}
.y7{bottom:592.685334pt;}
.y108{bottom:594.813333pt;}
.yc8{bottom:596.573333pt;}
.y7b{bottom:597.213333pt;}
.yb0{bottom:603.453333pt;}
.y107{bottom:609.693333pt;}
.y7a{bottom:615.293333pt;}
.yaf{bottom:621.533333pt;}
.y106{bottom:624.413333pt;}
.y79{bottom:633.373333pt;}
.yc7{bottom:634.013333pt;}
.y105{bottom:639.133333pt;}
.yae{bottom:639.453333pt;}
.y6{bottom:645.598667pt;}
.y78{bottom:651.453333pt;}
.y104{bottom:654.013333pt;}
.yc6{bottom:655.453333pt;}
.yc5{bottom:657.533333pt;}
.y103{bottom:668.733333pt;}
.y3{bottom:668.977329pt;}
.y77{bottom:669.533333pt;}
.yad{bottom:673.533333pt;}
.yc4{bottom:675.613333pt;}
.y102{bottom:683.453333pt;}
.y76{bottom:687.453333pt;}
.yc3{bottom:693.693333pt;}
.y101{bottom:698.333333pt;}
.y75{bottom:705.533333pt;}
.yc2{bottom:711.773333pt;}
.y100{bottom:713.053333pt;}
.y74{bottom:723.613333pt;}
.yff{bottom:727.773333pt;}
.yc1{bottom:729.853333pt;}
.y2a{bottom:740.413333pt;}
.y73{bottom:741.693333pt;}
.yfe{bottom:742.653333pt;}
.yc0{bottom:747.933333pt;}
.yfd{bottom:757.373333pt;}
.y72{bottom:759.773333pt;}
.ydf{bottom:763.133333pt;}
.ybf{bottom:765.853333pt;}
.y29{bottom:771.973333pt;}
.yfc{bottom:772.133333pt;}
.y71{bottom:777.893333pt;}
.y2{bottom:781.661334pt;}
.ybe{bottom:783.973333pt;}
.yfb{bottom:787.013333pt;}
.y70{bottom:795.973333pt;}
.yfa{bottom:801.733333pt;}
.ybd{bottom:802.053333pt;}
.y6f{bottom:813.893333pt;}
.yf9{bottom:816.453333pt;}
.y28{bottom:819.973333pt;}
.ybc{bottom:820.133333pt;}
.yf8{bottom:831.333333pt;}
.y6e{bottom:831.973333pt;}
.yf7{bottom:846.053333pt;}
.y27{bottom:847.973333pt;}
.y6d{bottom:850.053333pt;}
.ybb{bottom:854.213333pt;}
.y1{bottom:859.312000pt;}
.yf6{bottom:860.773333pt;}
.y6c{bottom:868.133333pt;}
.yf5{bottom:875.653333pt;}
.y6b{bottom:886.213333pt;}
.yf4{bottom:890.373333pt;}
.y62{bottom:897.893333pt;}
.y26{bottom:899.493333pt;}
.y6a{bottom:904.293333pt;}
.yf3{bottom:905.093333pt;}
.yf2{bottom:919.973333pt;}
.y69{bottom:922.213333pt;}
.y25{bottom:922.533333pt;}
.yf1{bottom:934.693333pt;}
.y68{bottom:940.293333pt;}
.yb5{bottom:943.653333pt;}
.yf0{bottom:949.413333pt;}
.y67{bottom:958.373333pt;}
.yef{bottom:964.293333pt;}
.y66{bottom:976.453333pt;}
.yee{bottom:979.013333pt;}
.yb4{bottom:979.813333pt;}
.y22{bottom:1006.080000pt;}
.y64{bottom:1034.720000pt;}
.h1b{height:15.666667pt;}
.ha{height:27.843750pt;}
.h7{height:28.560000pt;}
.h1a{height:30.885625pt;}
.h19{height:32.298750pt;}
.h12{height:36.305625pt;}
.h10{height:37.310625pt;}
.h1c{height:40.053437pt;}
.h13{height:40.640625pt;}
.h6{height:40.800000pt;}
.h15{height:41.765625pt;}
.h3{height:42.840000pt;}
.h16{height:44.975625pt;}
.h17{height:46.220625pt;}
.h2{height:48.960000pt;}
.h14{height:49.852500pt;}
.hb{height:51.232500pt;}
.hf{height:65.154375pt;}
.h5{height:69.360000pt;}
.hc{height:72.069375pt;}
.hd{height:76.946250pt;}
.he{height:79.076250pt;}
.h4{height:105.826671pt;}
.h9{height:129.725313pt;}
.h11{height:308.986667pt;}
.h0{height:1122.518667pt;}
.h1{height:1122.666667pt;}
.h18{height:1122.706587pt;}
.h8{height:1122.720000pt;}
.w5{width:11.840000pt;}
.w6{width:285.666667pt;}
.w4{width:307.378667pt;}
.w2{width:566.928019pt;}
.w8{width:596.560000pt;}
.w0{width:793.700000pt;}
.w7{width:793.740000pt;}
.w3{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xa{left:3.672000pt;}
.x14{left:9.592000pt;}
.x13{left:88.840000pt;}
.x1{left:90.706667pt;}
.x2{left:94.486667pt;}
.x12{left:99.712000pt;}
.x15{left:118.592000pt;}
.x6{left:138.746667pt;}
.x19{left:169.446667pt;}
.x5{left:174.586667pt;}
.x4{left:180.874667pt;}
.x1a{left:206.886667pt;}
.x1b{left:215.066667pt;}
.x7{left:218.586667pt;}
.x8{left:245.466667pt;}
.x11{left:286.626667pt;}
.x9{left:327.426667pt;}
.x20{left:382.626667pt;}
.xb{left:401.986667pt;}
.x3{left:404.408000pt;}
.xc{left:413.826667pt;}
.xf{left:419.406667pt;}
.x10{left:424.573333pt;}
.xd{left:430.653333pt;}
.x1c{left:439.113333pt;}
.x1d{left:444.253333pt;}
.x1e{left:539.433333pt;}
.x1f{left:544.573333pt;}
.x21{left:547.933333pt;}
.x16{left:595.013333pt;}
.xe{left:613.573333pt;}
.x17{left:650.673333pt;}
.x18{left:655.813333pt;}
}




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