
    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_b8c327195112a0643c21cae7.woff')format("woff");}.ff1{font-family:ff1;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_728e8b888c6e10400d6fabac.woff')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_57cfbef7a150b47a098d17bc.woff')format("woff");}.ff3{font-family:ff3;line-height:1.087402;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_1dcc118980cc67e57655a074.woff')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_e4051b2214a52f8f54dccc57.woff')format("woff");}.ff5{font-family:ff5;line-height:1.435059;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_a6ed39aa539e212f5641ba64.woff')format("woff");}.ff6{font-family:ff6;line-height:1.372070;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_9da3f866e56aec188c234caa.woff')format("woff");}.ff7{font-family:ff7;line-height:1.087402;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_c4c1ebe5b1249f26a7eb515e.woff')format("woff");}.ff8{font-family:ff8;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v1{vertical-align:-20.880000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:15.120000px;}
.lse{letter-spacing:-0.186600px;}
.ls13{letter-spacing:-0.160800px;}
.ls18{letter-spacing:-0.159600px;}
.ls15{letter-spacing:-0.153600px;}
.ls7{letter-spacing:-0.135000px;}
.ls17{letter-spacing:-0.125400px;}
.ls9{letter-spacing:-0.121200px;}
.ls6{letter-spacing:-0.090000px;}
.ls8{letter-spacing:-0.084600px;}
.ls10{letter-spacing:-0.063600px;}
.ls14{letter-spacing:-0.014760px;}
.ls4{letter-spacing:0.000000px;}
.lsb{letter-spacing:0.045360px;}
.lsc{letter-spacing:0.048960px;}
.lsa{letter-spacing:0.074160px;}
.ls2{letter-spacing:0.090000px;}
.ls1{letter-spacing:0.093600px;}
.ls12{letter-spacing:0.116400px;}
.ls5{letter-spacing:0.144000px;}
.lsd{letter-spacing:0.173400px;}
.ls11{letter-spacing:0.181200px;}
.lsf{letter-spacing:0.199200px;}
.ls0{letter-spacing:0.360000px;}
.ls3{letter-spacing:0.374760px;}
.ls16{letter-spacing:80.846640px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc1{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.ws4{word-spacing:-14.493600px;}
.ws8{word-spacing:-14.372400px;}
.wsa{word-spacing:-13.425600px;}
.wsc{word-spacing:-13.407600px;}
.ws6{word-spacing:-13.399800px;}
.wsd{word-spacing:-13.342800px;}
.ws9{word-spacing:-13.275360px;}
.ws2{word-spacing:-13.226400px;}
.wsf{word-spacing:-13.211640px;}
.wsb{word-spacing:-13.162800px;}
.ws11{word-spacing:-13.101000px;}
.ws10{word-spacing:-13.072800px;}
.ws12{word-spacing:-13.066800px;}
.wse{word-spacing:-13.065600px;}
.ws7{word-spacing:-13.039800px;}
.ws0{word-spacing:-9.810000px;}
.ws1{word-spacing:-9.765000px;}
.ws5{word-spacing:0.000000px;}
.ws3{word-spacing:4.304880px;}
._4{margin-left:-3.126000px;}
._15{margin-left:-2.110202px;}
._0{margin-left:-1.110000px;}
._1{width:1.311600px;}
._2{width:2.695800px;}
._d{width:4.017599px;}
._10{width:5.050080px;}
._11{width:6.192360px;}
._7{width:7.335120px;}
._b{width:8.657400px;}
._6{width:10.340400px;}
._5{width:11.482800px;}
._12{width:14.428800px;}
._f{width:15.691200px;}
._e{width:17.408879px;}
._9{width:18.517200px;}
._a{width:19.838999px;}
._c{width:21.106208px;}
._16{width:22.251078px;}
._14{width:23.294280px;}
._13{width:24.348600px;}
._2f{width:25.822560px;}
._30{width:26.899920px;}
._31{width:27.944520px;}
._22{width:28.977840px;}
._8{width:30.060000px;}
._20{width:31.923720px;}
._55{width:33.607080px;}
._3{width:34.609320px;}
._1b{width:37.995840px;}
._19{width:40.340520px;}
._2b{width:42.324480px;}
._4b{width:45.090000px;}
._32{width:48.516840px;}
._2a{width:49.959720px;}
._1d{width:51.342480px;}
._52{width:54.829440px;}
._3c{width:57.474720px;}
._42{width:61.202160px;}
._46{width:67.394520px;}
._21{width:68.897520px;}
._3f{width:70.580880px;}
._25{width:71.903520px;}
._48{width:80.931600px;}
._49{width:82.962000px;}
._28{width:85.610880px;}
._4a{width:86.813280px;}
._50{width:93.005640px;}
._23{width:94.087800px;}
._3e{width:95.169960px;}
._1e{width:98.296200px;}
._39{width:105.811200px;}
._18{width:107.735040px;}
._1a{width:109.057680px;}
._3a{width:113.205960px;}
._58{width:116.961240px;}
._17{width:118.075680px;}
._36{width:119.458440px;}
._44{width:121.923360px;}
._2e{width:134.668800px;}
._38{width:138.576600px;}
._3b{width:139.658760px;}
._2d{width:142.905240px;}
._47{width:148.496400px;}
._37{width:149.999400px;}
._1c{width:153.606600px;}
._43{width:154.688760px;}
._35{width:162.263880px;}
._51{width:171.402120px;}
._4e{width:173.686680px;}
._53{width:175.911120px;}
._27{width:178.255800px;}
._2c{width:179.494920px;}
._40{width:185.530320px;}
._41{width:187.250040px;}
._4f{width:193.826880px;}
._4c{width:197.794800px;}
._54{width:211.141440px;}
._4d{width:212.945040px;}
._29{width:221.963040px;}
._45{width:241.562160px;}
._3d{width:248.716440px;}
._1f{width:262.063080px;}
._24{width:267.644880px;}
._33{width:273.425760px;}
._34{width:278.535960px;}
._26{width:303.245280px;}
._57{width:403.284960px;}
._56{width:639.496440px;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs0{font-size:38.880000px;}
.fs6{font-size:42.120000px;}
.fs3{font-size:45.000000px;}
.fs2{font-size:54.000000px;}
.fs1{font-size:60.120000px;}
.fs5{font-size:65.880000px;}
.fs4{font-size:83.880000px;}
.y0{bottom:0.000000px;}
.ydd{bottom:7.830000px;}
.ye1{bottom:7.920000px;}
.ydc{bottom:25.380000px;}
.ye0{bottom:25.470000px;}
.ydf{bottom:43.020000px;}
.ye5{bottom:43.110000px;}
.y132{bottom:60.570000px;}
.ye3{bottom:60.660000px;}
.y2{bottom:73.380000px;}
.y2a{bottom:74.190000px;}
.y12f{bottom:78.210000px;}
.y134{bottom:95.760000px;}
.y1{bottom:101.640000px;}
.y8c{bottom:116.850000px;}
.yff{bottom:124.050000px;}
.yda{bottom:129.090000px;}
.y12d{bottom:129.270000px;}
.y111{bottom:130.260000px;}
.y8b{bottom:134.400000px;}
.y58{bottom:138.270000px;}
.yfe{bottom:141.600000px;}
.yd9{bottom:146.640000px;}
.y12c{bottom:146.910000px;}
.y28{bottom:147.630000px;}
.y110{bottom:147.810000px;}
.y8a{bottom:152.040000px;}
.yfd{bottom:159.240000px;}
.y12b{bottom:164.460000px;}
.y27{bottom:165.270000px;}
.y10f{bottom:165.450000px;}
.y89{bottom:169.590000px;}
.yd8{bottom:173.280000px;}
.y57{bottom:173.910000px;}
.yfc{bottom:176.790000px;}
.y12a{bottom:182.100000px;}
.yb4{bottom:182.640000px;}
.y26{bottom:182.820000px;}
.y10e{bottom:183.000000px;}
.y56{bottom:191.460000px;}
.yfb{bottom:194.430000px;}
.y145{bottom:196.050000px;}
.y88{bottom:196.230000px;}
.yb3{bottom:200.280000px;}
.y25{bottom:200.370000px;}
.y10d{bottom:200.550000px;}
.y129{bottom:208.650000px;}
.yd7{bottom:208.830000px;}
.y55{bottom:209.100000px;}
.yfa{bottom:211.980000px;}
.y144{bottom:213.600000px;}
.yb2{bottom:217.830000px;}
.y24{bottom:218.010000px;}
.y10c{bottom:218.190000px;}
.yd6{bottom:226.380000px;}
.y54{bottom:226.650000px;}
.y143{bottom:231.240000px;}
.y87{bottom:231.780000px;}
.yb1{bottom:235.380000px;}
.y23{bottom:235.560000px;}
.y10b{bottom:235.740000px;}
.yf9{bottom:238.530000px;}
.yd5{bottom:244.020000px;}
.y53{bottom:244.200000px;}
.y142{bottom:248.790000px;}
.y86{bottom:249.330000px;}
.y52{bottom:261.840000px;}
.yb0{bottom:262.020000px;}
.y10a{bottom:262.380000px;}
.y141{bottom:266.430000px;}
.y85{bottom:266.970000px;}
.yd4{bottom:270.570000px;}
.y71{bottom:270.840000px;}
.y22{bottom:271.200000px;}
.yf8{bottom:274.170000px;}
.y51{bottom:279.390000px;}
.y140{bottom:283.980000px;}
.y84{bottom:284.520000px;}
.y21{bottom:288.750000px;}
.yf7{bottom:291.720000px;}
.y128{bottom:296.940000px;}
.yaf{bottom:297.570000px;}
.y109{bottom:297.930000px;}
.y13f{bottom:301.530000px;}
.y83{bottom:302.070000px;}
.y50{bottom:305.940000px;}
.yd3{bottom:306.120000px;}
.y20{bottom:306.300000px;}
.y70{bottom:306.390000px;}
.yf6{bottom:309.360000px;}
.y127{bottom:314.580000px;}
.yae{bottom:315.120000px;}
.y13e{bottom:319.170000px;}
.yd2{bottom:323.760000px;}
.y1f{bottom:323.940000px;}
.yf5{bottom:326.910000px;}
.y82{bottom:328.710000px;}
.y108{bottom:330.150000px;}
.y126{bottom:332.130000px;}
.yad{bottom:332.760000px;}
.y13d{bottom:336.720000px;}
.yd1{bottom:341.310000px;}
.y1e{bottom:341.490000px;}
.y4f{bottom:341.580000px;}
.yf4{bottom:344.460000px;}
.yac{bottom:350.310000px;}
.y13c{bottom:354.360000px;}
.y125{bottom:358.770000px;}
.yd0{bottom:358.950000px;}
.y1d{bottom:359.130000px;}
.yf3{bottom:362.100000px;}
.y81{bottom:364.260000px;}
.yab{bottom:367.950000px;}
.y13b{bottom:371.910000px;}
.y4e{bottom:376.770000px;}
.yf2{bottom:379.650000px;}
.y80{bottom:381.900000px;}
.ycf{bottom:385.500000px;}
.y1c{bottom:386.040000px;}
.y13a{bottom:389.460000px;}
.y4d{bottom:394.320000px;}
.yaa{bottom:394.500000px;}
.y7f{bottom:399.450000px;}
.yf1{bottom:406.290000px;}
.y139{bottom:407.100000px;}
.y4c{bottom:411.870000px;}
.y7e{bottom:417.000000px;}
.yce{bottom:421.050000px;}
.y138{bottom:424.650000px;}
.y4b{bottom:429.510000px;}
.ya9{bottom:430.050000px;}
.y1b{bottom:434.280000px;}
.y7d{bottom:434.640000px;}
.y6f{bottom:438.510000px;}
.ycd{bottom:438.690000px;}
.yf0{bottom:441.840000px;}
.y137{bottom:442.290000px;}
.y124{bottom:447.060000px;}
.ya8{bottom:447.690000px;}
.y1a{bottom:452.190000px;}
.y4a{bottom:456.060000px;}
.ycc{bottom:456.240000px;}
.yef{bottom:459.390000px;}
.y7c{bottom:461.190000px;}
.y123{bottom:464.700000px;}
.ya7{bottom:465.240000px;}
.y136{bottom:469.110000px;}
.ycb{bottom:473.910000px;}
.y6e{bottom:474.090000px;}
.yee{bottom:477.060000px;}
.y122{bottom:482.280000px;}
.ya6{bottom:482.910000px;}
.y19{bottom:489.210000px;}
.y49{bottom:491.730000px;}
.yed{bottom:494.610000px;}
.y7b{bottom:496.860000px;}
.ya5{bottom:500.460000px;}
.y18{bottom:506.850000px;}
.y121{bottom:508.830000px;}
.y48{bottom:509.280000px;}
.yec{bottom:512.160000px;}
.y7a{bottom:514.410000px;}
.y135{bottom:514.860000px;}
.y17{bottom:524.400000px;}
.y47{bottom:526.830000px;}
.ya4{bottom:527.010000px;}
.yeb{bottom:529.800000px;}
.y79{bottom:531.960000px;}
.yca{bottom:533.040000px;}
.y16{bottom:541.950000px;}
.y46{bottom:544.470000px;}
.yea{bottom:547.350000px;}
.y78{bottom:549.600000px;}
.y15{bottom:559.590000px;}
.y45{bottom:562.020000px;}
.y77{bottom:567.150000px;}
.yc9{bottom:568.590000px;}
.ye9{bottom:573.990000px;}
.y14{bottom:577.140000px;}
.y44{bottom:579.660000px;}
.yc8{bottom:586.230000px;}
.y6d{bottom:588.660000px;}
.y76{bottom:593.700000px;}
.y13{bottom:594.780000px;}
.ya3{bottom:595.230000px;}
.y120{bottom:597.210000px;}
.yc7{bottom:603.780000px;}
.y43{bottom:606.210000px;}
.ye8{bottom:609.900000px;}
.y12{bottom:612.330000px;}
.y133{bottom:612.510000px;}
.ya2{bottom:612.780000px;}
.y11f{bottom:614.760000px;}
.yc6{bottom:621.420000px;}
.y6c{bottom:624.210000px;}
.y75{bottom:626.370000px;}
.y11{bottom:629.880000px;}
.ya1{bottom:630.420000px;}
.y11e{bottom:632.400000px;}
.y42{bottom:641.760000px;}
.y10{bottom:647.520000px;}
.ya0{bottom:647.970000px;}
.ye7{bottom:655.530000px;}
.y11d{bottom:658.950000px;}
.y41{bottom:659.400000px;}
.y74{bottom:662.280000px;}
.yf{bottom:665.070000px;}
.y9f{bottom:674.520000px;}
.y40{bottom:676.950000px;}
.ye{bottom:682.710000px;}
.yc5{bottom:683.520000px;}
.y156{bottom:685.950000px;}
.y3f{bottom:694.590000px;}
.y11c{bottom:694.860000px;}
.yd{bottom:700.260000px;}
.yc4{bottom:701.160000px;}
.y155{bottom:703.590000px;}
.y9e{bottom:710.160000px;}
.y73{bottom:710.520000px;}
.y3e{bottom:712.140000px;}
.yc{bottom:717.810000px;}
.yc3{bottom:718.710000px;}
.y9d{bottom:727.710000px;}
.y131{bottom:727.800000px;}
.y3d{bottom:729.690000px;}
.y154{bottom:730.140000px;}
.yb{bottom:735.450000px;}
.ye6{bottom:735.630000px;}
.yc2{bottom:736.350000px;}
.y6b{bottom:738.690000px;}
.y72{bottom:742.740000px;}
.y11b{bottom:743.190000px;}
.y9c{bottom:745.350000px;}
.y107{bottom:747.330000px;}
.y153{bottom:747.690000px;}
.ya{bottom:753.000000px;}
.y3c{bottom:756.330000px;}
.y11a{bottom:760.740000px;}
.y9b{bottom:762.900000px;}
.y106{bottom:773.880000px;}
.y6a{bottom:774.330000px;}
.y119{bottom:778.290000px;}
.y9{bottom:779.910000px;}
.y9a{bottom:789.450000px;}
.y69{bottom:791.880000px;}
.y3b{bottom:792.240000px;}
.y118{bottom:795.930000px;}
.ye4{bottom:798.090000px;}
.yc1{bottom:798.450000px;}
.y68{bottom:809.520000px;}
.y105{bottom:809.790000px;}
.y117{bottom:813.480000px;}
.yc0{bottom:816.090000px;}
.y152{bottom:818.520000px;}
.y99{bottom:825.090000px;}
.y130{bottom:825.450000px;}
.y67{bottom:827.070000px;}
.y8{bottom:828.240000px;}
.y116{bottom:831.030000px;}
.ybf{bottom:833.640000px;}
.y151{bottom:836.070000px;}
.y3a{bottom:840.480000px;}
.y98{bottom:842.640000px;}
.y66{bottom:844.620000px;}
.ybe{bottom:851.280000px;}
.y150{bottom:853.620000px;}
.y115{bottom:857.670000px;}
.y39{bottom:858.030000px;}
.y97{bottom:860.280000px;}
.y65{bottom:862.260000px;}
.y7{bottom:863.790000px;}
.y38{bottom:875.670000px;}
.y96{bottom:877.830000px;}
.ye2{bottom:878.190000px;}
.y64{bottom:879.810000px;}
.y14f{bottom:880.260000px;}
.y37{bottom:893.220000px;}
.y95{bottom:895.380000px;}
.y14e{bottom:897.810000px;}
.y6{bottom:899.610000px;}
.y63{bottom:906.450000px;}
.y36{bottom:910.860000px;}
.ybd{bottom:913.380000px;}
.y94{bottom:922.020000px;}
.y12e{bottom:923.100000px;}
.y14d{bottom:924.450000px;}
.y35{bottom:928.410000px;}
.ybc{bottom:931.020000px;}
.y5{bottom:935.610000px;}
.y62{bottom:942.000000px;}
.y104{bottom:945.960000px;}
.ybb{bottom:948.570000px;}
.y93{bottom:957.570000px;}
.yde{bottom:958.290000px;}
.y61{bottom:959.550000px;}
.y114{bottom:963.600000px;}
.y34{bottom:963.960000px;}
.yba{bottom:966.210000px;}
.y4{bottom:971.700000px;}
.y103{bottom:972.600000px;}
.y92{bottom:975.210000px;}
.y60{bottom:977.190000px;}
.y113{bottom:981.150000px;}
.y33{bottom:981.600000px;}
.y14c{bottom:986.190000px;}
.y91{bottom:992.760000px;}
.y5f{bottom:994.740000px;}
.y32{bottom:999.150000px;}
.y14b{bottom:1003.740000px;}
.y112{bottom:1007.790000px;}
.y102{bottom:1008.150000px;}
.y3{bottom:1009.980000px;}
.y90{bottom:1010.340000px;}
.y5e{bottom:1012.320000px;}
.y31{bottom:1016.820000px;}
.ydb{bottom:1020.870000px;}
.y14a{bottom:1021.320000px;}
.yb9{bottom:1025.370000px;}
.y101{bottom:1025.820000px;}
.y8f{bottom:1027.980000px;}
.y5d{bottom:1029.960000px;}
.y100{bottom:1043.370000px;}
.y5c{bottom:1047.510000px;}
.y149{bottom:1047.960000px;}
.y30{bottom:1052.370000px;}
.y8e{bottom:1054.530000px;}
.yb8{bottom:1060.920000px;}
.y5b{bottom:1065.150000px;}
.y148{bottom:1065.510000px;}
.y2f{bottom:1069.920000px;}
.yb7{bottom:1078.560000px;}
.y147{bottom:1083.150000px;}
.y8d{bottom:1087.110000px;}
.y2e{bottom:1087.560000px;}
.y5a{bottom:1091.700000px;}
.yb6{bottom:1096.110000px;}
.y146{bottom:1100.700000px;}
.y2d{bottom:1105.110000px;}
.yb5{bottom:1113.750000px;}
.y2c{bottom:1122.750000px;}
.y59{bottom:1127.610000px;}
.y2b{bottom:1140.300000px;}
.y29{bottom:1194.300000px;}
.h2{height:30.022383px;}
.h3{height:39.111328px;}
.hc{height:44.100000px;}
.h6{height:50.902383px;}
.h7{height:52.252734px;}
.h8{height:55.779258px;}
.h5{height:57.258984px;}
.hb{height:59.973223px;}
.hf{height:61.740000px;}
.hd{height:61.770000px;}
.h13{height:61.793886px;}
.ha{height:62.585859px;}
.h9{height:68.582109px;}
.h4{height:72.903516px;}
.he{height:79.380000px;}
.h11{height:96.930000px;}
.h10{height:96.960000px;}
.h12{height:114.480000px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.w3{width:112.440000px;}
.w7{width:133.860000px;}
.wb{width:146.970000px;}
.w9{width:154.200000px;}
.w8{width:155.880000px;}
.wa{width:161.820000px;}
.w5{width:212.160000px;}
.w4{width:214.110000px;}
.w6{width:214.740000px;}
.w2{width:893.159987px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x6{left:7.740000px;}
.x1{left:68.040000px;}
.xf{left:111.239987px;}
.x5{left:127.259987px;}
.xb{left:130.319987px;}
.x7{left:182.010000px;}
.x2{left:202.799987px;}
.xc{left:359.940000px;}
.x8{left:396.840000px;}
.xd{left:514.860000px;}
.x9{left:609.720000px;}
.xe{left:677.490000px;}
.xa{left:700.889987px;}
.x4{left:787.559987px;}
.x3{left:792.059987px;}
@media print{
.v1{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:13.440000pt;}
.lse{letter-spacing:-0.165867pt;}
.ls13{letter-spacing:-0.142933pt;}
.ls18{letter-spacing:-0.141867pt;}
.ls15{letter-spacing:-0.136533pt;}
.ls7{letter-spacing:-0.120000pt;}
.ls17{letter-spacing:-0.111467pt;}
.ls9{letter-spacing:-0.107733pt;}
.ls6{letter-spacing:-0.080000pt;}
.ls8{letter-spacing:-0.075200pt;}
.ls10{letter-spacing:-0.056533pt;}
.ls14{letter-spacing:-0.013120pt;}
.ls4{letter-spacing:0.000000pt;}
.lsb{letter-spacing:0.040320pt;}
.lsc{letter-spacing:0.043520pt;}
.lsa{letter-spacing:0.065920pt;}
.ls2{letter-spacing:0.080000pt;}
.ls1{letter-spacing:0.083200pt;}
.ls12{letter-spacing:0.103467pt;}
.ls5{letter-spacing:0.128000pt;}
.lsd{letter-spacing:0.154133pt;}
.ls11{letter-spacing:0.161067pt;}
.lsf{letter-spacing:0.177067pt;}
.ls0{letter-spacing:0.320000pt;}
.ls3{letter-spacing:0.333120pt;}
.ls16{letter-spacing:71.863680pt;}
.ws4{word-spacing:-12.883200pt;}
.ws8{word-spacing:-12.775467pt;}
.wsa{word-spacing:-11.933867pt;}
.wsc{word-spacing:-11.917867pt;}
.ws6{word-spacing:-11.910933pt;}
.wsd{word-spacing:-11.860267pt;}
.ws9{word-spacing:-11.800320pt;}
.ws2{word-spacing:-11.756800pt;}
.wsf{word-spacing:-11.743680pt;}
.wsb{word-spacing:-11.700267pt;}
.ws11{word-spacing:-11.645333pt;}
.ws10{word-spacing:-11.620267pt;}
.ws12{word-spacing:-11.614933pt;}
.wse{word-spacing:-11.613867pt;}
.ws7{word-spacing:-11.590933pt;}
.ws0{word-spacing:-8.720000pt;}
.ws1{word-spacing:-8.680000pt;}
.ws5{word-spacing:0.000000pt;}
.ws3{word-spacing:3.826560pt;}
._4{margin-left:-2.778666pt;}
._15{margin-left:-1.875735pt;}
._0{margin-left:-0.986667pt;}
._1{width:1.165867pt;}
._2{width:2.396267pt;}
._d{width:3.571199pt;}
._10{width:4.488960pt;}
._11{width:5.504320pt;}
._7{width:6.520106pt;}
._b{width:7.695467pt;}
._6{width:9.191466pt;}
._5{width:10.206933pt;}
._12{width:12.825600pt;}
._f{width:13.947733pt;}
._e{width:15.474559pt;}
._9{width:16.459734pt;}
._a{width:17.634666pt;}
._c{width:18.761074pt;}
._16{width:19.778736pt;}
._14{width:20.706027pt;}
._13{width:21.643200pt;}
._2f{width:22.953387pt;}
._30{width:23.911040pt;}
._31{width:24.839573pt;}
._22{width:25.758080pt;}
._8{width:26.720000pt;}
._20{width:28.376640pt;}
._55{width:29.872960pt;}
._3{width:30.763840pt;}
._1b{width:33.774080pt;}
._19{width:35.858240pt;}
._2b{width:37.621760pt;}
._4b{width:40.080000pt;}
._32{width:43.126080pt;}
._2a{width:44.408640pt;}
._1d{width:45.637760pt;}
._52{width:48.737280pt;}
._3c{width:51.088640pt;}
._42{width:54.401920pt;}
._46{width:59.906240pt;}
._21{width:61.242240pt;}
._3f{width:62.738560pt;}
._25{width:63.914240pt;}
._48{width:71.939200pt;}
._49{width:73.744000pt;}
._28{width:76.098560pt;}
._4a{width:77.167360pt;}
._50{width:82.671680pt;}
._23{width:83.633600pt;}
._3e{width:84.595520pt;}
._1e{width:87.374400pt;}
._39{width:94.054400pt;}
._18{width:95.764480pt;}
._1a{width:96.940160pt;}
._3a{width:100.627520pt;}
._58{width:103.965547pt;}
._17{width:104.956160pt;}
._36{width:106.185280pt;}
._44{width:108.376320pt;}
._2e{width:119.705600pt;}
._38{width:123.179200pt;}
._3b{width:124.141120pt;}
._2d{width:127.026880pt;}
._47{width:131.996800pt;}
._37{width:133.332800pt;}
._1c{width:136.539200pt;}
._43{width:137.501120pt;}
._35{width:144.234560pt;}
._51{width:152.357440pt;}
._4e{width:154.388160pt;}
._53{width:156.365440pt;}
._27{width:158.449600pt;}
._2c{width:159.551040pt;}
._40{width:164.915840pt;}
._41{width:166.444480pt;}
._4f{width:172.290560pt;}
._4c{width:175.817600pt;}
._54{width:187.681280pt;}
._4d{width:189.284480pt;}
._29{width:197.300480pt;}
._45{width:214.721920pt;}
._3d{width:221.081280pt;}
._1f{width:232.944960pt;}
._24{width:237.906560pt;}
._33{width:243.045120pt;}
._34{width:247.587520pt;}
._26{width:269.551360pt;}
._57{width:358.475520pt;}
._56{width:568.441280pt;}
.fs0{font-size:34.560000pt;}
.fs6{font-size:37.440000pt;}
.fs3{font-size:40.000000pt;}
.fs2{font-size:48.000000pt;}
.fs1{font-size:53.440000pt;}
.fs5{font-size:58.560000pt;}
.fs4{font-size:74.560000pt;}
.y0{bottom:0.000000pt;}
.ydd{bottom:6.960000pt;}
.ye1{bottom:7.040000pt;}
.ydc{bottom:22.560000pt;}
.ye0{bottom:22.640000pt;}
.ydf{bottom:38.240000pt;}
.ye5{bottom:38.320000pt;}
.y132{bottom:53.840000pt;}
.ye3{bottom:53.920000pt;}
.y2{bottom:65.226667pt;}
.y2a{bottom:65.946667pt;}
.y12f{bottom:69.520000pt;}
.y134{bottom:85.120000pt;}
.y1{bottom:90.346667pt;}
.y8c{bottom:103.866667pt;}
.yff{bottom:110.266667pt;}
.yda{bottom:114.746667pt;}
.y12d{bottom:114.906667pt;}
.y111{bottom:115.786667pt;}
.y8b{bottom:119.466667pt;}
.y58{bottom:122.906667pt;}
.yfe{bottom:125.866667pt;}
.yd9{bottom:130.346667pt;}
.y12c{bottom:130.586667pt;}
.y28{bottom:131.226667pt;}
.y110{bottom:131.386667pt;}
.y8a{bottom:135.146667pt;}
.yfd{bottom:141.546667pt;}
.y12b{bottom:146.186667pt;}
.y27{bottom:146.906667pt;}
.y10f{bottom:147.066667pt;}
.y89{bottom:150.746667pt;}
.yd8{bottom:154.026667pt;}
.y57{bottom:154.586667pt;}
.yfc{bottom:157.146667pt;}
.y12a{bottom:161.866667pt;}
.yb4{bottom:162.346667pt;}
.y26{bottom:162.506667pt;}
.y10e{bottom:162.666667pt;}
.y56{bottom:170.186667pt;}
.yfb{bottom:172.826667pt;}
.y145{bottom:174.266667pt;}
.y88{bottom:174.426667pt;}
.yb3{bottom:178.026667pt;}
.y25{bottom:178.106667pt;}
.y10d{bottom:178.266667pt;}
.y129{bottom:185.466667pt;}
.yd7{bottom:185.626667pt;}
.y55{bottom:185.866667pt;}
.yfa{bottom:188.426667pt;}
.y144{bottom:189.866667pt;}
.yb2{bottom:193.626667pt;}
.y24{bottom:193.786667pt;}
.y10c{bottom:193.946667pt;}
.yd6{bottom:201.226667pt;}
.y54{bottom:201.466667pt;}
.y143{bottom:205.546667pt;}
.y87{bottom:206.026667pt;}
.yb1{bottom:209.226667pt;}
.y23{bottom:209.386667pt;}
.y10b{bottom:209.546667pt;}
.yf9{bottom:212.026667pt;}
.yd5{bottom:216.906667pt;}
.y53{bottom:217.066667pt;}
.y142{bottom:221.146667pt;}
.y86{bottom:221.626667pt;}
.y52{bottom:232.746667pt;}
.yb0{bottom:232.906667pt;}
.y10a{bottom:233.226667pt;}
.y141{bottom:236.826667pt;}
.y85{bottom:237.306667pt;}
.yd4{bottom:240.506667pt;}
.y71{bottom:240.746667pt;}
.y22{bottom:241.066667pt;}
.yf8{bottom:243.706667pt;}
.y51{bottom:248.346667pt;}
.y140{bottom:252.426667pt;}
.y84{bottom:252.906667pt;}
.y21{bottom:256.666667pt;}
.yf7{bottom:259.306667pt;}
.y128{bottom:263.946667pt;}
.yaf{bottom:264.506667pt;}
.y109{bottom:264.826667pt;}
.y13f{bottom:268.026667pt;}
.y83{bottom:268.506667pt;}
.y50{bottom:271.946667pt;}
.yd3{bottom:272.106667pt;}
.y20{bottom:272.266667pt;}
.y70{bottom:272.346667pt;}
.yf6{bottom:274.986667pt;}
.y127{bottom:279.626667pt;}
.yae{bottom:280.106667pt;}
.y13e{bottom:283.706667pt;}
.yd2{bottom:287.786667pt;}
.y1f{bottom:287.946667pt;}
.yf5{bottom:290.586667pt;}
.y82{bottom:292.186667pt;}
.y108{bottom:293.466667pt;}
.y126{bottom:295.226667pt;}
.yad{bottom:295.786667pt;}
.y13d{bottom:299.306667pt;}
.yd1{bottom:303.386667pt;}
.y1e{bottom:303.546667pt;}
.y4f{bottom:303.626667pt;}
.yf4{bottom:306.186667pt;}
.yac{bottom:311.386667pt;}
.y13c{bottom:314.986667pt;}
.y125{bottom:318.906667pt;}
.yd0{bottom:319.066667pt;}
.y1d{bottom:319.226667pt;}
.yf3{bottom:321.866667pt;}
.y81{bottom:323.786667pt;}
.yab{bottom:327.066667pt;}
.y13b{bottom:330.586667pt;}
.y4e{bottom:334.906667pt;}
.yf2{bottom:337.466667pt;}
.y80{bottom:339.466667pt;}
.ycf{bottom:342.666667pt;}
.y1c{bottom:343.146667pt;}
.y13a{bottom:346.186667pt;}
.y4d{bottom:350.506667pt;}
.yaa{bottom:350.666667pt;}
.y7f{bottom:355.066667pt;}
.yf1{bottom:361.146667pt;}
.y139{bottom:361.866667pt;}
.y4c{bottom:366.106667pt;}
.y7e{bottom:370.666667pt;}
.yce{bottom:374.266667pt;}
.y138{bottom:377.466667pt;}
.y4b{bottom:381.786667pt;}
.ya9{bottom:382.266667pt;}
.y1b{bottom:386.026667pt;}
.y7d{bottom:386.346667pt;}
.y6f{bottom:389.786667pt;}
.ycd{bottom:389.946667pt;}
.yf0{bottom:392.746667pt;}
.y137{bottom:393.146667pt;}
.y124{bottom:397.386667pt;}
.ya8{bottom:397.946667pt;}
.y1a{bottom:401.946667pt;}
.y4a{bottom:405.386667pt;}
.ycc{bottom:405.546667pt;}
.yef{bottom:408.346667pt;}
.y7c{bottom:409.946667pt;}
.y123{bottom:413.066667pt;}
.ya7{bottom:413.546667pt;}
.y136{bottom:416.986667pt;}
.ycb{bottom:421.253333pt;}
.y6e{bottom:421.413333pt;}
.yee{bottom:424.053333pt;}
.y122{bottom:428.693333pt;}
.ya6{bottom:429.253333pt;}
.y19{bottom:434.853333pt;}
.y49{bottom:437.093333pt;}
.yed{bottom:439.653333pt;}
.y7b{bottom:441.653333pt;}
.ya5{bottom:444.853333pt;}
.y18{bottom:450.533333pt;}
.y121{bottom:452.293333pt;}
.y48{bottom:452.693333pt;}
.yec{bottom:455.253333pt;}
.y7a{bottom:457.253333pt;}
.y135{bottom:457.653333pt;}
.y17{bottom:466.133333pt;}
.y47{bottom:468.293333pt;}
.ya4{bottom:468.453333pt;}
.yeb{bottom:470.933333pt;}
.y79{bottom:472.853333pt;}
.yca{bottom:473.813333pt;}
.y16{bottom:481.733333pt;}
.y46{bottom:483.973333pt;}
.yea{bottom:486.533333pt;}
.y78{bottom:488.533333pt;}
.y15{bottom:497.413333pt;}
.y45{bottom:499.573333pt;}
.y77{bottom:504.133333pt;}
.yc9{bottom:505.413333pt;}
.ye9{bottom:510.213333pt;}
.y14{bottom:513.013333pt;}
.y44{bottom:515.253333pt;}
.yc8{bottom:521.093333pt;}
.y6d{bottom:523.253333pt;}
.y76{bottom:527.733333pt;}
.y13{bottom:528.693333pt;}
.ya3{bottom:529.093333pt;}
.y120{bottom:530.853333pt;}
.yc7{bottom:536.693333pt;}
.y43{bottom:538.853333pt;}
.ye8{bottom:542.133333pt;}
.y12{bottom:544.293333pt;}
.y133{bottom:544.453333pt;}
.ya2{bottom:544.693333pt;}
.y11f{bottom:546.453333pt;}
.yc6{bottom:552.373333pt;}
.y6c{bottom:554.853333pt;}
.y75{bottom:556.773333pt;}
.y11{bottom:559.893333pt;}
.ya1{bottom:560.373333pt;}
.y11e{bottom:562.133333pt;}
.y42{bottom:570.453333pt;}
.y10{bottom:575.573333pt;}
.ya0{bottom:575.973333pt;}
.ye7{bottom:582.693333pt;}
.y11d{bottom:585.733333pt;}
.y41{bottom:586.133333pt;}
.y74{bottom:588.693333pt;}
.yf{bottom:591.173333pt;}
.y9f{bottom:599.573333pt;}
.y40{bottom:601.733333pt;}
.ye{bottom:606.853333pt;}
.yc5{bottom:607.573333pt;}
.y156{bottom:609.733333pt;}
.y3f{bottom:617.413333pt;}
.y11c{bottom:617.653333pt;}
.yd{bottom:622.453333pt;}
.yc4{bottom:623.253333pt;}
.y155{bottom:625.413333pt;}
.y9e{bottom:631.253333pt;}
.y73{bottom:631.573333pt;}
.y3e{bottom:633.013333pt;}
.yc{bottom:638.053333pt;}
.yc3{bottom:638.853333pt;}
.y9d{bottom:646.853333pt;}
.y131{bottom:646.933333pt;}
.y3d{bottom:648.613333pt;}
.y154{bottom:649.013333pt;}
.yb{bottom:653.733333pt;}
.ye6{bottom:653.893333pt;}
.yc2{bottom:654.533333pt;}
.y6b{bottom:656.613333pt;}
.y72{bottom:660.213333pt;}
.y11b{bottom:660.613333pt;}
.y9c{bottom:662.533333pt;}
.y107{bottom:664.293333pt;}
.y153{bottom:664.613333pt;}
.ya{bottom:669.333333pt;}
.y3c{bottom:672.293333pt;}
.y11a{bottom:676.213333pt;}
.y9b{bottom:678.133333pt;}
.y106{bottom:687.893333pt;}
.y6a{bottom:688.293333pt;}
.y119{bottom:691.813333pt;}
.y9{bottom:693.253333pt;}
.y9a{bottom:701.733333pt;}
.y69{bottom:703.893333pt;}
.y3b{bottom:704.213333pt;}
.y118{bottom:707.493333pt;}
.ye4{bottom:709.413333pt;}
.yc1{bottom:709.733333pt;}
.y68{bottom:719.573333pt;}
.y105{bottom:719.813333pt;}
.y117{bottom:723.093333pt;}
.yc0{bottom:725.413333pt;}
.y152{bottom:727.573333pt;}
.y99{bottom:733.413333pt;}
.y130{bottom:733.733333pt;}
.y67{bottom:735.173333pt;}
.y8{bottom:736.213333pt;}
.y116{bottom:738.693333pt;}
.ybf{bottom:741.013333pt;}
.y151{bottom:743.173333pt;}
.y3a{bottom:747.093333pt;}
.y98{bottom:749.013333pt;}
.y66{bottom:750.773333pt;}
.ybe{bottom:756.693333pt;}
.y150{bottom:758.773333pt;}
.y115{bottom:762.373333pt;}
.y39{bottom:762.693333pt;}
.y97{bottom:764.693333pt;}
.y65{bottom:766.453333pt;}
.y7{bottom:767.813333pt;}
.y38{bottom:778.373333pt;}
.y96{bottom:780.293333pt;}
.ye2{bottom:780.613333pt;}
.y64{bottom:782.053333pt;}
.y14f{bottom:782.453333pt;}
.y37{bottom:793.973333pt;}
.y95{bottom:795.893333pt;}
.y14e{bottom:798.053333pt;}
.y6{bottom:799.653333pt;}
.y63{bottom:805.733333pt;}
.y36{bottom:809.653333pt;}
.ybd{bottom:811.893333pt;}
.y94{bottom:819.573333pt;}
.y12e{bottom:820.533333pt;}
.y14d{bottom:821.733333pt;}
.y35{bottom:825.253333pt;}
.ybc{bottom:827.573333pt;}
.y5{bottom:831.653333pt;}
.y62{bottom:837.333333pt;}
.y104{bottom:840.853333pt;}
.ybb{bottom:843.173333pt;}
.y93{bottom:851.173333pt;}
.yde{bottom:851.813333pt;}
.y61{bottom:852.933333pt;}
.y114{bottom:856.533333pt;}
.y34{bottom:856.853333pt;}
.yba{bottom:858.853333pt;}
.y4{bottom:863.733333pt;}
.y103{bottom:864.533333pt;}
.y92{bottom:866.853333pt;}
.y60{bottom:868.613333pt;}
.y113{bottom:872.133333pt;}
.y33{bottom:872.533333pt;}
.y14c{bottom:876.613333pt;}
.y91{bottom:882.453333pt;}
.y5f{bottom:884.213333pt;}
.y32{bottom:888.133333pt;}
.y14b{bottom:892.213333pt;}
.y112{bottom:895.813333pt;}
.y102{bottom:896.133333pt;}
.y3{bottom:897.760000pt;}
.y90{bottom:898.080000pt;}
.y5e{bottom:899.840000pt;}
.y31{bottom:903.840000pt;}
.ydb{bottom:907.440000pt;}
.y14a{bottom:907.840000pt;}
.yb9{bottom:911.440000pt;}
.y101{bottom:911.840000pt;}
.y8f{bottom:913.760000pt;}
.y5d{bottom:915.520000pt;}
.y100{bottom:927.440000pt;}
.y5c{bottom:931.120000pt;}
.y149{bottom:931.520000pt;}
.y30{bottom:935.440000pt;}
.y8e{bottom:937.360000pt;}
.yb8{bottom:943.040000pt;}
.y5b{bottom:946.800000pt;}
.y148{bottom:947.120000pt;}
.y2f{bottom:951.040000pt;}
.yb7{bottom:958.720000pt;}
.y147{bottom:962.800000pt;}
.y8d{bottom:966.320000pt;}
.y2e{bottom:966.720000pt;}
.y5a{bottom:970.400000pt;}
.yb6{bottom:974.320000pt;}
.y146{bottom:978.400000pt;}
.y2d{bottom:982.320000pt;}
.yb5{bottom:990.000000pt;}
.y2c{bottom:998.000000pt;}
.y59{bottom:1002.320000pt;}
.y2b{bottom:1013.600000pt;}
.y29{bottom:1061.600000pt;}
.h2{height:26.686562pt;}
.h3{height:34.765625pt;}
.hc{height:39.200000pt;}
.h6{height:45.246562pt;}
.h7{height:46.446875pt;}
.h8{height:49.581562pt;}
.h5{height:50.896875pt;}
.hb{height:53.309531pt;}
.hf{height:54.880000pt;}
.hd{height:54.906667pt;}
.h13{height:54.927899pt;}
.ha{height:55.631875pt;}
.h9{height:60.961875pt;}
.h4{height:64.803125pt;}
.he{height:70.560000pt;}
.h11{height:86.160000pt;}
.h10{height:86.186667pt;}
.h12{height:101.760000pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.w3{width:99.946667pt;}
.w7{width:118.986667pt;}
.wb{width:130.640000pt;}
.w9{width:137.066667pt;}
.w8{width:138.560000pt;}
.wa{width:143.840000pt;}
.w5{width:188.586667pt;}
.w4{width:190.320000pt;}
.w6{width:190.880000pt;}
.w2{width:793.919988pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x6{left:6.880000pt;}
.x1{left:60.480000pt;}
.xf{left:98.879988pt;}
.x5{left:113.119988pt;}
.xb{left:115.839988pt;}
.x7{left:161.786667pt;}
.x2{left:180.266655pt;}
.xc{left:319.946667pt;}
.x8{left:352.746667pt;}
.xd{left:457.653333pt;}
.x9{left:541.973333pt;}
.xe{left:602.213333pt;}
.xa{left:623.013322pt;}
.x4{left:700.053322pt;}
.x3{left:704.053322pt;}
}




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