
    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_af35e2e51eb47e84493eed27.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.172852;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_de87fc761d1f7d84365e9a33.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.202148;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_2ddae509ce2228913eaf8da0.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.202148;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_da69e919c01cea43d3e745ce.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.172852;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_01ce8cbd34e42b9a86a59126.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_0298d66afca3213f59219ad8.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_d654c9905f52faf3fc7625b0.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.937500;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_926e739e230852b0261d26f4.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.104004;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_6f22bc6a2f0a3a60bfb3ebb9.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_1cc61d1fe06dfacd0250fa24.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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);}
.v0{vertical-align:0.000000px;}
.ls12{letter-spacing:-0.936000px;}
.ls15{letter-spacing:-0.348600px;}
.ls14{letter-spacing:-0.216000px;}
.ls8{letter-spacing:-0.132600px;}
.ls9{letter-spacing:-0.115200px;}
.ls3{letter-spacing:0.000000px;}
.lsc{letter-spacing:0.017280px;}
.lsf{letter-spacing:0.020160px;}
.ls10{letter-spacing:0.069000px;}
.lsb{letter-spacing:0.074880px;}
.ls17{letter-spacing:0.138240px;}
.ls0{letter-spacing:0.149760px;}
.lsa{letter-spacing:0.150000px;}
.ls13{letter-spacing:0.233400px;}
.ls5{letter-spacing:0.247800px;}
.ls4{letter-spacing:0.256200px;}
.ls11{letter-spacing:0.288000px;}
.lse{letter-spacing:0.299520px;}
.ls6{letter-spacing:0.869760px;}
.ls16{letter-spacing:11.669760px;}
.ls18{letter-spacing:54.840000px;}
.ls1{letter-spacing:56.826720px;}
.lsd{letter-spacing:59.321280px;}
.ls2{letter-spacing:64.026720px;}
.ls7{letter-spacing:849.185760px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsa{word-spacing:-72.000000px;}
.ws6{word-spacing:-66.240000px;}
.ws2{word-spacing:-59.760000px;}
.ws4{word-spacing:-21.641760px;}
.ws0{word-spacing:-15.226440px;}
.ws8{word-spacing:-15.203640px;}
.ws7{word-spacing:-15.039240px;}
.ws1{word-spacing:-14.970240px;}
.ws5{word-spacing:-14.837640px;}
.ws9{word-spacing:-14.754240px;}
.ws3{word-spacing:0.000000px;}
._4{margin-left:-13.729920px;}
._9{margin-left:-10.983840px;}
._5{margin-left:-9.888000px;}
._6{margin-left:-8.731680px;}
._1a{margin-left:-7.562880px;}
._a{margin-left:-6.460800px;}
._7{margin-left:-4.836000px;}
._b{margin-left:-3.518880px;}
._8{margin-left:-2.499840px;}
._1{margin-left:-1.126080px;}
._3{width:1.192320px;}
._e{width:2.318400px;}
._19{width:3.362640px;}
._12{width:4.371840px;}
._17{width:6.075840px;}
._10{width:7.335360px;}
._2{width:8.478720px;}
._0{width:9.538560px;}
._f{width:10.581120px;}
._13{width:12.519360px;}
._14{width:13.671840px;}
._16{width:16.036320px;}
._15{width:17.089920px;}
._18{width:19.010880px;}
._11{width:20.600640px;}
._c{width:22.124160px;}
._d{width:23.223840px;}
._1b{width:24.418080px;}
._1c{width:25.536960px;}
._1e{width:27.423360px;}
._1d{width:36.731520px;}
._1f{width:45.765120px;}
._21{width:847.596000px;}
._20{width:849.185760px;}
.fc2{color:rgb(5,99,193);}
.fc1{color:rgb(255,0,0);}
.fc3{color:rgb(75,75,75);}
.fc0{color:rgb(0,0,0);}
.fs1{font-size:54.000000px;}
.fs2{font-size:59.760000px;}
.fs0{font-size:66.240000px;}
.fs4{font-size:72.000000px;}
.fs3{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.y59{bottom:13.320000px;}
.y56{bottom:13.500000px;}
.y63{bottom:13.545000px;}
.y66{bottom:33.660000px;}
.y65{bottom:53.820000px;}
.y1a1{bottom:57.420000px;}
.y19c{bottom:57.456000px;}
.y3{bottom:57.600000px;}
.y2{bottom:77.580000px;}
.y19b{bottom:77.616000px;}
.y168{bottom:112.680000px;}
.y107{bottom:114.120000px;}
.y1ba{bottom:120.240000px;}
.y187{bottom:120.420000px;}
.y30{bottom:121.500000px;}
.y12b{bottom:126.540000px;}
.y1d9{bottom:129.240000px;}
.y8f{bottom:129.420000px;}
.yb5{bottom:131.580000px;}
.y106{bottom:135.540000px;}
.y1b9{bottom:135.900000px;}
.y19e{bottom:136.476000px;}
.y6c{bottom:138.960000px;}
.y186{bottom:141.840000px;}
.y167{bottom:146.520000px;}
.y12a{bottom:148.320000px;}
.y1d8{bottom:149.220000px;}
.ydc{bottom:150.480000px;}
.yb4{bottom:153.360000px;}
.y2f{bottom:155.340000px;}
.y105{bottom:157.140000px;}
.y14d{bottom:160.740000px;}
.y8e{bottom:162.900000px;}
.y185{bottom:163.260000px;}
.y129{bottom:169.950000px;}
.y1d7{bottom:170.310000px;}
.ydb{bottom:172.110000px;}
.y6b{bottom:172.830000px;}
.yb3{bottom:175.170000px;}
.y104{bottom:178.590000px;}
.y166{bottom:180.210000px;}
.y14c{bottom:182.550000px;}
.y8d{bottom:184.530000px;}
.y184{bottom:185.790000px;}
.y2e{bottom:189.030000px;}
.y1d6{bottom:191.370000px;}
.y128{bottom:191.730000px;}
.yda{bottom:193.890000px;}
.yb2{bottom:196.770000px;}
.y103{bottom:200.010000px;}
.y14b{bottom:204.150000px;}
.y8c{bottom:205.950000px;}
.y6a{bottom:206.490000px;}
.y183{bottom:207.210000px;}
.y127{bottom:213.510000px;}
.y165{bottom:213.870000px;}
.yb1{bottom:218.550000px;}
.y102{bottom:222.330000px;}
.y2d{bottom:222.870000px;}
.yd9{bottom:227.910000px;}
.y8b{bottom:228.270000px;}
.y182{bottom:228.630000px;}
.y126{bottom:235.290000px;}
.y14a{bottom:237.990000px;}
.y69{bottom:240.330000px;}
.y101{bottom:244.830000px;}
.y164{bottom:247.710000px;}
.y8a{bottom:249.870000px;}
.y181{bottom:250.230000px;}
.yb0{bottom:252.390000px;}
.y1d5{bottom:255.630000px;}
.y2c{bottom:256.530000px;}
.y125{bottom:256.890000px;}
.y149{bottom:259.590000px;}
.yd8{bottom:263.010000px;}
.y100{bottom:266.250000px;}
.y163{bottom:269.490000px;}
.y89{bottom:271.290000px;}
.y68{bottom:273.990000px;}
.y1d4{bottom:275.790000px;}
.y124{bottom:278.670000px;}
.y148{bottom:281.370000px;}
.yd7{bottom:284.790000px;}
.yff{bottom:287.670000px;}
.y67{bottom:289.650000px;}
.y2b{bottom:290.190000px;}
.y162{bottom:291.090000px;}
.y88{bottom:293.610000px;}
.y1d3{bottom:296.850000px;}
.y123{bottom:300.450000px;}
.y147{bottom:303.150000px;}
.yd6{bottom:306.570000px;}
.yaf{bottom:308.010000px;}
.yfe{bottom:309.270000px;}
.y161{bottom:312.870000px;}
.y180{bottom:318.450000px;}
.y122{bottom:322.230000px;}
.y2a{bottom:324.030000px;}
.y146{bottom:324.930000px;}
.y87{bottom:328.350000px;}
.y64{bottom:328.530000px;}
.yfd{bottom:331.590000px;}
.y1d2{bottom:333.750000px;}
.y49{bottom:334.470000px;}
.y160{bottom:334.650000px;}
.y17f{bottom:340.230000px;}
.yae{bottom:343.290000px;}
.y121{bottom:343.830000px;}
.y29{bottom:344.190000px;}
.y145{bottom:346.530000px;}
.yd5{bottom:349.950000px;}
.yfc{bottom:353.010000px;}
.y15f{bottom:356.430000px;}
.y1d1{bottom:361.110000px;}
.y86{bottom:362.010000px;}
.y28{bottom:364.350000px;}
.yad{bottom:364.890000px;}
.y120{bottom:365.610000px;}
.y144{bottom:368.310000px;}
.yfb{bottom:375.510000px;}
.y17e{bottom:376.230000px;}
.y48{bottom:377.850000px;}
.y15e{bottom:378.030000px;}
.y1d0{bottom:381.270000px;}
.yd4{bottom:383.430000px;}
.y85{bottom:383.790000px;}
.y27{bottom:384.510000px;}
.yac{bottom:386.670000px;}
.y11f{bottom:387.390000px;}
.y143{bottom:390.090000px;}
.yfa{bottom:396.930000px;}
.y15d{bottom:399.810000px;}
.y1cf{bottom:402.150000px;}
.y26{bottom:404.670000px;}
.yd3{bottom:405.030000px;}
.y84{bottom:405.390000px;}
.y62{bottom:407.730000px;}
.y11e{bottom:409.170000px;}
.y142{bottom:411.870000px;}
.y17d{bottom:417.315000px;}
.yf9{bottom:418.395000px;}
.y47{bottom:418.755000px;}
.yab{bottom:420.195000px;}
.y15c{bottom:421.635000px;}
.y1ce{bottom:423.255000px;}
.y25{bottom:424.695000px;}
.yd2{bottom:426.495000px;}
.y141{bottom:433.515000px;}
.y17c{bottom:439.095000px;}
.y83{bottom:441.615000px;}
.y11d{bottom:442.695000px;}
.y15b{bottom:443.415000px;}
.y24{bottom:444.855000px;}
.y61{bottom:446.655000px;}
.y46{bottom:447.915000px;}
.yf8{bottom:453.135000px;}
.y140{bottom:455.295000px;}
.y1cd{bottom:460.155000px;}
.y17b{bottom:460.695000px;}
.yaa{bottom:463.215000px;}
.y11c{bottom:464.115000px;}
.y23{bottom:465.015000px;}
.yd1{bottom:470.415000px;}
.yf7{bottom:474.735000px;}
.y13f{bottom:477.075000px;}
.y45{bottom:477.255000px;}
.y82{bottom:482.475000px;}
.y22{bottom:485.175000px;}
.y60{bottom:485.535000px;}
.y15a{bottom:486.795000px;}
.y1cc{bottom:487.515000px;}
.yd0{bottom:492.735000px;}
.y1b8{bottom:495.435000px;}
.yf6{bottom:496.515000px;}
.y13e{bottom:498.855000px;}
.y81{bottom:504.255000px;}
.y21{bottom:505.335000px;}
.y44{bottom:506.415000px;}
.ya9{bottom:506.955000px;}
.y1cb{bottom:507.675000px;}
.y11b{bottom:508.035000px;}
.y159{bottom:508.575000px;}
.ycf{bottom:514.155000px;}
.y1b7{bottom:515.595000px;}
.y17a{bottom:516.315000px;}
.yf5{bottom:518.295000px;}
.y5f{bottom:524.415000px;}
.y20{bottom:525.495000px;}
.ya8{bottom:528.555000px;}
.y1ca{bottom:528.735000px;}
.y11a{bottom:529.455000px;}
.y158{bottom:530.355000px;}
.y13d{bottom:532.515000px;}
.y43{bottom:535.755000px;}
.yce{bottom:536.475000px;}
.y80{bottom:537.915000px;}
.yf4{bottom:540.075000px;}
.y1f{bottom:545.655000px;}
.y1c9{bottom:549.795000px;}
.ya7{bottom:550.875000px;}
.y13c{bottom:554.295000px;}
.y1b6{bottom:555.915000px;}
.y42{bottom:557.355000px;}
.ycd{bottom:558.975000px;}
.y7f{bottom:559.695000px;}
.yf3{bottom:561.675000px;}
.y5e{bottom:563.295000px;}
.y157{bottom:564.015000px;}
.y1e{bottom:565.815000px;}
.y1c8{bottom:570.855000px;}
.ya6{bottom:572.295000px;}
.y119{bottom:572.475000px;}
.y13b{bottom:576.075000px;}
.y1b5{bottom:576.795000px;}
.ycc{bottom:580.395000px;}
.y7e{bottom:581.475000px;}
.yf2{bottom:583.455000px;}
.y156{bottom:585.795000px;}
.y1d{bottom:585.975000px;}
.y41{bottom:586.695000px;}
.y179{bottom:593.535000px;}
.ya5{bottom:593.895000px;}
.y13a{bottom:597.675000px;}
.y5d{bottom:602.175000px;}
.ycb{bottom:602.715000px;}
.yf1{bottom:605.235000px;}
.y1c{bottom:605.955000px;}
.y155{bottom:607.575000px;}
.y1c7{bottom:607.755000px;}
.y1b4{bottom:613.695000px;}
.y7d{bottom:615.135000px;}
.y118{bottom:615.315000px;}
.y40{bottom:615.855000px;}
.ya4{bottom:616.215000px;}
.y139{bottom:619.455000px;}
.yca{bottom:624.315000px;}
.y1b{bottom:626.115000px;}
.y154{bottom:629.175000px;}
.y7c{bottom:636.915000px;}
.ya3{bottom:637.635000px;}
.yf0{bottom:638.895000px;}
.y5c{bottom:641.055000px;}
.y138{bottom:641.235000px;}
.y3f{bottom:645.195000px;}
.y1a{bottom:646.275000px;}
.yc9{bottom:646.635000px;}
.y153{bottom:650.955000px;}
.y117{bottom:658.365000px;}
.y178{bottom:658.725000px;}
.ya2{bottom:659.265000px;}
.yef{bottom:660.705000px;}
.y1b3{bottom:662.145000px;}
.y137{bottom:663.045000px;}
.y19{bottom:666.465000px;}
.yc8{bottom:668.085000px;}
.y7b{bottom:670.605000px;}
.y152{bottom:672.765000px;}
.y3e{bottom:674.385000px;}
.y199{bottom:676.005000px;}
.y116{bottom:679.785000px;}
.y5b{bottom:679.965000px;}
.y1c6{bottom:680.325000px;}
.y177{bottom:680.505000px;}
.ya1{bottom:680.685000px;}
.yee{bottom:682.485000px;}
.y136{bottom:684.645000px;}
.y18{bottom:686.625000px;}
.yc7{bottom:689.685000px;}
.y7a{bottom:692.385000px;}
.y151{bottom:694.545000px;}
.y198{bottom:697.785000px;}
.y1b2{bottom:699.045000px;}
.y176{bottom:702.105000px;}
.y3d{bottom:703.545000px;}
.yed{bottom:704.265000px;}
.y1c5{bottom:704.985000px;}
.y135{bottom:706.425000px;}
.y17{bottom:706.785000px;}
.y79{bottom:714.165000px;}
.y115{bottom:714.525000px;}
.ya0{bottom:715.245000px;}
.y150{bottom:716.145000px;}
.y19f{bottom:718.350000px;}
.y5a{bottom:719.025000px;}
.yc6{bottom:724.245000px;}
.yec{bottom:725.865000px;}
.y1b1{bottom:726.405000px;}
.y16{bottom:726.945000px;}
.y134{bottom:728.205000px;}
.y1c4{bottom:729.645000px;}
.y197{bottom:731.265000px;}
.y3c{bottom:732.885000px;}
.y78{bottom:735.945000px;}
.y114{bottom:736.305000px;}
.y9f{bottom:737.025000px;}
.y14f{bottom:737.925000px;}
.yc5{bottom:746.025000px;}
.y15{bottom:747.105000px;}
.y1b0{bottom:747.465000px;}
.yeb{bottom:747.645000px;}
.y133{bottom:749.985000px;}
.y196{bottom:752.685000px;}
.y1c3{bottom:754.305000px;}
.y19d{bottom:754.530000px;}
.y175{bottom:757.545000px;}
.y58{bottom:757.905000px;}
.y9e{bottom:758.805000px;}
.y3b{bottom:762.045000px;}
.y14{bottom:767.265000px;}
.yc4{bottom:767.625000px;}
.y1af{bottom:768.525000px;}
.yea{bottom:769.425000px;}
.y77{bottom:769.605000px;}
.y113{bottom:770.325000px;}
.y132{bottom:771.765000px;}
.y195{bottom:774.105000px;}
.y1c2{bottom:778.965000px;}
.y174{bottom:779.325000px;}
.y19a{bottom:781.890000px;}
.y13{bottom:787.425000px;}
.yc3{bottom:789.405000px;}
.y1ae{bottom:789.585000px;}
.ye9{bottom:791.205000px;}
.y3a{bottom:791.385000px;}
.y131{bottom:793.365000px;}
.y9d{bottom:794.805000px;}
.y57{bottom:796.785000px;}
.y173{bottom:801.105000px;}
.y1c1{bottom:803.625000px;}
.y112{bottom:805.425000px;}
.y12{bottom:807.405000px;}
.y194{bottom:808.125000px;}
.y1ad{bottom:810.465000px;}
.yc2{bottom:811.185000px;}
.ye8{bottom:812.805000px;}
.y76{bottom:813.165000px;}
.y130{bottom:815.145000px;}
.y39{bottom:820.545000px;}
.y111{bottom:827.205000px;}
.y11{bottom:827.565000px;}
.y1c0{bottom:828.285000px;}
.yc1{bottom:832.965000px;}
.y75{bottom:834.765000px;}
.y9c{bottom:835.485000px;}
.y55{bottom:835.665000px;}
.y12f{bottom:836.925000px;}
.y193{bottom:842.685000px;}
.ye7{bottom:846.645000px;}
.y1ac{bottom:847.365000px;}
.y10{bottom:847.725000px;}
.y110{bottom:848.805000px;}
.y38{bottom:849.885000px;}
.y1bf{bottom:852.945000px;}
.yc0{bottom:854.745000px;}
.y172{bottom:856.545000px;}
.y9b{bottom:856.905000px;}
.y12e{bottom:858.705000px;}
.y192{bottom:865.005000px;}
.yf{bottom:867.885000px;}
.ye6{bottom:868.425000px;}
.y74{bottom:868.605000px;}
.y10f{bottom:870.585000px;}
.y1ab{bottom:874.725000px;}
.ybf{bottom:876.345000px;}
.y171{bottom:878.325000px;}
.y37{bottom:879.045000px;}
.y9a{bottom:879.405000px;}
.y12d{bottom:880.305000px;}
.y191{bottom:887.325000px;}
.ye{bottom:888.045000px;}
.ye5{bottom:890.025000px;}
.y73{bottom:890.385000px;}
.y1be{bottom:891.645000px;}
.y10e{bottom:892.365000px;}
.y54{bottom:892.545000px;}
.y1aa{bottom:895.785000px;}
.y170{bottom:900.105000px;}
.y99{bottom:901.725000px;}
.y12c{bottom:902.085000px;}
.yd{bottom:908.250000px;}
.y190{bottom:908.790000px;}
.ybe{bottom:910.410000px;}
.ye4{bottom:911.850000px;}
.y72{bottom:912.030000px;}
.y10d{bottom:914.190000px;}
.y53{bottom:914.370000px;}
.y1a9{bottom:916.890000px;}
.y1bd{bottom:919.050000px;}
.y98{bottom:923.190000px;}
.y14e{bottom:923.910000px;}
.y18f{bottom:931.290000px;}
.ye3{bottom:933.630000px;}
.y16f{bottom:933.810000px;}
.y10c{bottom:935.790000px;}
.y52{bottom:936.150000px;}
.y36{bottom:937.590000px;}
.y1bc{bottom:939.030000px;}
.y97{bottom:944.790000px;}
.ybd{bottom:945.690000px;}
.y71{bottom:945.870000px;}
.yc{bottom:949.290000px;}
.y18e{bottom:953.610000px;}
.y1a8{bottom:953.790000px;}
.ye2{bottom:955.410000px;}
.y16e{bottom:955.590000px;}
.y10b{bottom:957.570000px;}
.y51{bottom:957.750000px;}
.y1bb{bottom:960.090000px;}
.y35{bottom:966.750000px;}
.y96{bottom:967.110000px;}
.ybc{bottom:967.290000px;}
.y70{bottom:967.650000px;}
.yb{bottom:969.450000px;}
.y18d{bottom:975.930000px;}
.ye1{bottom:977.010000px;}
.y16d{bottom:977.370000px;}
.y10a{bottom:979.350000px;}
.y50{bottom:979.530000px;}
.y1a7{bottom:981.150000px;}
.y95{bottom:988.530000px;}
.ybb{bottom:989.070000px;}
.y6f{bottom:989.250000px;}
.ya{bottom:989.610000px;}
.y34{bottom:996.090000px;}
.y18c{bottom:997.350000px;}
.ye0{bottom:998.790000px;}
.y16c{bottom:998.970000px;}
.y109{bottom:1001.130000px;}
.y4f{bottom:1001.310000px;}
.y1a6{bottom:1002.210000px;}
.y9{bottom:1009.770000px;}
.y94{bottom:1010.130000px;}
.yba{bottom:1010.850000px;}
.y6e{bottom:1011.030000px;}
.y16b{bottom:1020.750000px;}
.y108{bottom:1022.730000px;}
.y4e{bottom:1023.090000px;}
.y1a5{bottom:1023.270000px;}
.y33{bottom:1025.250000px;}
.y8{bottom:1029.930000px;}
.y18b{bottom:1031.370000px;}
.y93{bottom:1032.450000px;}
.ydf{bottom:1032.630000px;}
.y6d{bottom:1032.810000px;}
.y1a4{bottom:1044.150000px;}
.yb9{bottom:1044.510000px;}
.y4d{bottom:1044.690000px;}
.y92{bottom:1053.870000px;}
.yde{bottom:1054.230000px;}
.y32{bottom:1054.590000px;}
.y16a{bottom:1056.750000px;}
.yb8{bottom:1066.290000px;}
.y4c{bottom:1066.470000px;}
.y18a{bottom:1068.450000px;}
.y7{bottom:1071.150000px;}
.y91{bottom:1075.470000px;}
.ydd{bottom:1076.010000px;}
.y1a3{bottom:1081.050000px;}
.yb7{bottom:1088.070000px;}
.y4b{bottom:1088.250000px;}
.y31{bottom:1090.590000px;}
.y6{bottom:1091.310000px;}
.y90{bottom:1096.890000px;}
.y169{bottom:1097.790000px;}
.y189{bottom:1109.130000px;}
.yb6{bottom:1109.850000px;}
.y5{bottom:1111.290000px;}
.y4a{bottom:1124.250000px;}
.y1a2{bottom:1124.430000px;}
.y188{bottom:1130.550000px;}
.y4{bottom:1131.450000px;}
.y1da{bottom:1131.630000px;}
.y1{bottom:1151.640000px;}
.y1a0{bottom:1151.820000px;}
.h6{height:37.980000px;}
.h5{height:38.160000px;}
.h7{height:38.196000px;}
.h2{height:65.884219px;}
.h3{height:67.824844px;}
.ha{height:68.084282px;}
.hb{height:73.722656px;}
.hf{height:74.004654px;}
.hc{height:74.953125px;}
.h8{height:78.480000px;}
.h9{height:95.245664px;}
.h4{height:98.051133px;}
.hd{height:892.980000px;}
.he{height:893.250000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w3{width:30.960000px;}
.w5{width:31.680000px;}
.w4{width:488.265000px;}
.w6{width:488.985000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.w9{width:1262.879981px;}
.w7{width:1262.880000px;}
.w8{width:1263.000000px;}
.x0{left:0.000000px;}
.x8{left:7.740000px;}
.xa{left:20.520000px;}
.x1{left:106.415987px;}
.x7{left:122.975987px;}
.xd{left:133.415987px;}
.xe{left:160.409987px;}
.x4{left:177.149987px;}
.xb{left:186.150000px;}
.x5{left:187.409987px;}
.x9{left:218.190000px;}
.x6{left:241.409987px;}
.x3{left:309.674987px;}
.xc{left:418.035000px;}
.xf{left:770.009987px;}
.x2{left:778.469987px;}
.x12{left:786.749987px;}
.x10{left:1140.119981px;}
.x11{left:1163.879981px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls12{letter-spacing:-0.832000pt;}
.ls15{letter-spacing:-0.309867pt;}
.ls14{letter-spacing:-0.192000pt;}
.ls8{letter-spacing:-0.117867pt;}
.ls9{letter-spacing:-0.102400pt;}
.ls3{letter-spacing:0.000000pt;}
.lsc{letter-spacing:0.015360pt;}
.lsf{letter-spacing:0.017920pt;}
.ls10{letter-spacing:0.061333pt;}
.lsb{letter-spacing:0.066560pt;}
.ls17{letter-spacing:0.122880pt;}
.ls0{letter-spacing:0.133120pt;}
.lsa{letter-spacing:0.133333pt;}
.ls13{letter-spacing:0.207467pt;}
.ls5{letter-spacing:0.220267pt;}
.ls4{letter-spacing:0.227733pt;}
.ls11{letter-spacing:0.256000pt;}
.lse{letter-spacing:0.266240pt;}
.ls6{letter-spacing:0.773120pt;}
.ls16{letter-spacing:10.373120pt;}
.ls18{letter-spacing:48.746667pt;}
.ls1{letter-spacing:50.512640pt;}
.lsd{letter-spacing:52.730027pt;}
.ls2{letter-spacing:56.912640pt;}
.ls7{letter-spacing:754.831787pt;}
.wsa{word-spacing:-64.000000pt;}
.ws6{word-spacing:-58.880000pt;}
.ws2{word-spacing:-53.120000pt;}
.ws4{word-spacing:-19.237120pt;}
.ws0{word-spacing:-13.534613pt;}
.ws8{word-spacing:-13.514347pt;}
.ws7{word-spacing:-13.368213pt;}
.ws1{word-spacing:-13.306880pt;}
.ws5{word-spacing:-13.189013pt;}
.ws9{word-spacing:-13.114880pt;}
.ws3{word-spacing:0.000000pt;}
._4{margin-left:-12.204373pt;}
._9{margin-left:-9.763413pt;}
._5{margin-left:-8.789333pt;}
._6{margin-left:-7.761493pt;}
._1a{margin-left:-6.722560pt;}
._a{margin-left:-5.742933pt;}
._7{margin-left:-4.298667pt;}
._b{margin-left:-3.127893pt;}
._8{margin-left:-2.222080pt;}
._1{margin-left:-1.000960pt;}
._3{width:1.059840pt;}
._e{width:2.060800pt;}
._19{width:2.989013pt;}
._12{width:3.886080pt;}
._17{width:5.400747pt;}
._10{width:6.520320pt;}
._2{width:7.536640pt;}
._0{width:8.478720pt;}
._f{width:9.405440pt;}
._13{width:11.128320pt;}
._14{width:12.152747pt;}
._16{width:14.254507pt;}
._15{width:15.191040pt;}
._18{width:16.898560pt;}
._11{width:18.311680pt;}
._c{width:19.665920pt;}
._d{width:20.643413pt;}
._1b{width:21.704960pt;}
._1c{width:22.699520pt;}
._1e{width:24.376320pt;}
._1d{width:32.650240pt;}
._1f{width:40.680107pt;}
._21{width:753.418667pt;}
._20{width:754.831787pt;}
.fs1{font-size:48.000000pt;}
.fs2{font-size:53.120000pt;}
.fs0{font-size:58.880000pt;}
.fs4{font-size:64.000000pt;}
.fs3{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.y59{bottom:11.840000pt;}
.y56{bottom:12.000000pt;}
.y63{bottom:12.040000pt;}
.y66{bottom:29.920000pt;}
.y65{bottom:47.840000pt;}
.y1a1{bottom:51.040000pt;}
.y19c{bottom:51.072000pt;}
.y3{bottom:51.200000pt;}
.y2{bottom:68.960000pt;}
.y19b{bottom:68.992000pt;}
.y168{bottom:100.160000pt;}
.y107{bottom:101.440000pt;}
.y1ba{bottom:106.880000pt;}
.y187{bottom:107.040000pt;}
.y30{bottom:108.000000pt;}
.y12b{bottom:112.480000pt;}
.y1d9{bottom:114.880000pt;}
.y8f{bottom:115.040000pt;}
.yb5{bottom:116.960000pt;}
.y106{bottom:120.480000pt;}
.y1b9{bottom:120.800000pt;}
.y19e{bottom:121.312000pt;}
.y6c{bottom:123.520000pt;}
.y186{bottom:126.080000pt;}
.y167{bottom:130.240000pt;}
.y12a{bottom:131.840000pt;}
.y1d8{bottom:132.640000pt;}
.ydc{bottom:133.760000pt;}
.yb4{bottom:136.320000pt;}
.y2f{bottom:138.080000pt;}
.y105{bottom:139.680000pt;}
.y14d{bottom:142.880000pt;}
.y8e{bottom:144.800000pt;}
.y185{bottom:145.120000pt;}
.y129{bottom:151.066667pt;}
.y1d7{bottom:151.386667pt;}
.ydb{bottom:152.986667pt;}
.y6b{bottom:153.626667pt;}
.yb3{bottom:155.706667pt;}
.y104{bottom:158.746667pt;}
.y166{bottom:160.186667pt;}
.y14c{bottom:162.266667pt;}
.y8d{bottom:164.026667pt;}
.y184{bottom:165.146667pt;}
.y2e{bottom:168.026667pt;}
.y1d6{bottom:170.106667pt;}
.y128{bottom:170.426667pt;}
.yda{bottom:172.346667pt;}
.yb2{bottom:174.906667pt;}
.y103{bottom:177.786667pt;}
.y14b{bottom:181.466667pt;}
.y8c{bottom:183.066667pt;}
.y6a{bottom:183.546667pt;}
.y183{bottom:184.186667pt;}
.y127{bottom:189.786667pt;}
.y165{bottom:190.106667pt;}
.yb1{bottom:194.266667pt;}
.y102{bottom:197.626667pt;}
.y2d{bottom:198.106667pt;}
.yd9{bottom:202.586667pt;}
.y8b{bottom:202.906667pt;}
.y182{bottom:203.226667pt;}
.y126{bottom:209.146667pt;}
.y14a{bottom:211.546667pt;}
.y69{bottom:213.626667pt;}
.y101{bottom:217.626667pt;}
.y164{bottom:220.186667pt;}
.y8a{bottom:222.106667pt;}
.y181{bottom:222.426667pt;}
.yb0{bottom:224.346667pt;}
.y1d5{bottom:227.226667pt;}
.y2c{bottom:228.026667pt;}
.y125{bottom:228.346667pt;}
.y149{bottom:230.746667pt;}
.yd8{bottom:233.786667pt;}
.y100{bottom:236.666667pt;}
.y163{bottom:239.546667pt;}
.y89{bottom:241.146667pt;}
.y68{bottom:243.546667pt;}
.y1d4{bottom:245.146667pt;}
.y124{bottom:247.706667pt;}
.y148{bottom:250.106667pt;}
.yd7{bottom:253.146667pt;}
.yff{bottom:255.706667pt;}
.y67{bottom:257.466667pt;}
.y2b{bottom:257.946667pt;}
.y162{bottom:258.746667pt;}
.y88{bottom:260.986667pt;}
.y1d3{bottom:263.866667pt;}
.y123{bottom:267.066667pt;}
.y147{bottom:269.466667pt;}
.yd6{bottom:272.506667pt;}
.yaf{bottom:273.786667pt;}
.yfe{bottom:274.906667pt;}
.y161{bottom:278.106667pt;}
.y180{bottom:283.066667pt;}
.y122{bottom:286.426667pt;}
.y2a{bottom:288.026667pt;}
.y146{bottom:288.826667pt;}
.y87{bottom:291.866667pt;}
.y64{bottom:292.026667pt;}
.yfd{bottom:294.746667pt;}
.y1d2{bottom:296.666667pt;}
.y49{bottom:297.306667pt;}
.y160{bottom:297.466667pt;}
.y17f{bottom:302.426667pt;}
.yae{bottom:305.146667pt;}
.y121{bottom:305.626667pt;}
.y29{bottom:305.946667pt;}
.y145{bottom:308.026667pt;}
.yd5{bottom:311.066667pt;}
.yfc{bottom:313.786667pt;}
.y15f{bottom:316.826667pt;}
.y1d1{bottom:320.986667pt;}
.y86{bottom:321.786667pt;}
.y28{bottom:323.866667pt;}
.yad{bottom:324.346667pt;}
.y120{bottom:324.986667pt;}
.y144{bottom:327.386667pt;}
.yfb{bottom:333.786667pt;}
.y17e{bottom:334.426667pt;}
.y48{bottom:335.866667pt;}
.y15e{bottom:336.026667pt;}
.y1d0{bottom:338.906667pt;}
.yd4{bottom:340.826667pt;}
.y85{bottom:341.146667pt;}
.y27{bottom:341.786667pt;}
.yac{bottom:343.706667pt;}
.y11f{bottom:344.346667pt;}
.y143{bottom:346.746667pt;}
.yfa{bottom:352.826667pt;}
.y15d{bottom:355.386667pt;}
.y1cf{bottom:357.466667pt;}
.y26{bottom:359.706667pt;}
.yd3{bottom:360.026667pt;}
.y84{bottom:360.346667pt;}
.y62{bottom:362.426667pt;}
.y11e{bottom:363.706667pt;}
.y142{bottom:366.106667pt;}
.y17d{bottom:370.946667pt;}
.yf9{bottom:371.906667pt;}
.y47{bottom:372.226667pt;}
.yab{bottom:373.506667pt;}
.y15c{bottom:374.786667pt;}
.y1ce{bottom:376.226667pt;}
.y25{bottom:377.506667pt;}
.yd2{bottom:379.106667pt;}
.y141{bottom:385.346667pt;}
.y17c{bottom:390.306667pt;}
.y83{bottom:392.546667pt;}
.y11d{bottom:393.506667pt;}
.y15b{bottom:394.146667pt;}
.y24{bottom:395.426667pt;}
.y61{bottom:397.026667pt;}
.y46{bottom:398.146667pt;}
.yf8{bottom:402.786667pt;}
.y140{bottom:404.706667pt;}
.y1cd{bottom:409.026667pt;}
.y17b{bottom:409.506667pt;}
.yaa{bottom:411.746667pt;}
.y11c{bottom:412.546667pt;}
.y23{bottom:413.346667pt;}
.yd1{bottom:418.146667pt;}
.yf7{bottom:421.986667pt;}
.y13f{bottom:424.066667pt;}
.y45{bottom:424.226667pt;}
.y82{bottom:428.866667pt;}
.y22{bottom:431.266667pt;}
.y60{bottom:431.586667pt;}
.y15a{bottom:432.706667pt;}
.y1cc{bottom:433.346667pt;}
.yd0{bottom:437.986667pt;}
.y1b8{bottom:440.386667pt;}
.yf6{bottom:441.346667pt;}
.y13e{bottom:443.426667pt;}
.y81{bottom:448.226667pt;}
.y21{bottom:449.186667pt;}
.y44{bottom:450.146667pt;}
.ya9{bottom:450.626667pt;}
.y1cb{bottom:451.266667pt;}
.y11b{bottom:451.586667pt;}
.y159{bottom:452.066667pt;}
.ycf{bottom:457.026667pt;}
.y1b7{bottom:458.306667pt;}
.y17a{bottom:458.946667pt;}
.yf5{bottom:460.706667pt;}
.y5f{bottom:466.146667pt;}
.y20{bottom:467.106667pt;}
.ya8{bottom:469.826667pt;}
.y1ca{bottom:469.986667pt;}
.y11a{bottom:470.626667pt;}
.y158{bottom:471.426667pt;}
.y13d{bottom:473.346667pt;}
.y43{bottom:476.226667pt;}
.yce{bottom:476.866667pt;}
.y80{bottom:478.146667pt;}
.yf4{bottom:480.066667pt;}
.y1f{bottom:485.026667pt;}
.y1c9{bottom:488.706667pt;}
.ya7{bottom:489.666667pt;}
.y13c{bottom:492.706667pt;}
.y1b6{bottom:494.146667pt;}
.y42{bottom:495.426667pt;}
.ycd{bottom:496.866667pt;}
.y7f{bottom:497.506667pt;}
.yf3{bottom:499.266667pt;}
.y5e{bottom:500.706667pt;}
.y157{bottom:501.346667pt;}
.y1e{bottom:502.946667pt;}
.y1c8{bottom:507.426667pt;}
.ya6{bottom:508.706667pt;}
.y119{bottom:508.866667pt;}
.y13b{bottom:512.066667pt;}
.y1b5{bottom:512.706667pt;}
.ycc{bottom:515.906667pt;}
.y7e{bottom:516.866667pt;}
.yf2{bottom:518.626667pt;}
.y156{bottom:520.706667pt;}
.y1d{bottom:520.866667pt;}
.y41{bottom:521.506667pt;}
.y179{bottom:527.586667pt;}
.ya5{bottom:527.906667pt;}
.y13a{bottom:531.266667pt;}
.y5d{bottom:535.266667pt;}
.ycb{bottom:535.746667pt;}
.yf1{bottom:537.986667pt;}
.y1c{bottom:538.626667pt;}
.y155{bottom:540.066667pt;}
.y1c7{bottom:540.226667pt;}
.y1b4{bottom:545.506667pt;}
.y7d{bottom:546.786667pt;}
.y118{bottom:546.946667pt;}
.y40{bottom:547.426667pt;}
.ya4{bottom:547.746667pt;}
.y139{bottom:550.626667pt;}
.yca{bottom:554.946667pt;}
.y1b{bottom:556.546667pt;}
.y154{bottom:559.266667pt;}
.y7c{bottom:566.146667pt;}
.ya3{bottom:566.786667pt;}
.yf0{bottom:567.906667pt;}
.y5c{bottom:569.826667pt;}
.y138{bottom:569.986667pt;}
.y3f{bottom:573.506667pt;}
.y1a{bottom:574.466667pt;}
.yc9{bottom:574.786667pt;}
.y153{bottom:578.626667pt;}
.y117{bottom:585.213333pt;}
.y178{bottom:585.533333pt;}
.ya2{bottom:586.013333pt;}
.yef{bottom:587.293333pt;}
.y1b3{bottom:588.573333pt;}
.y137{bottom:589.373333pt;}
.y19{bottom:592.413333pt;}
.yc8{bottom:593.853333pt;}
.y7b{bottom:596.093333pt;}
.y152{bottom:598.013333pt;}
.y3e{bottom:599.453333pt;}
.y199{bottom:600.893333pt;}
.y116{bottom:604.253333pt;}
.y5b{bottom:604.413333pt;}
.y1c6{bottom:604.733333pt;}
.y177{bottom:604.893333pt;}
.ya1{bottom:605.053333pt;}
.yee{bottom:606.653333pt;}
.y136{bottom:608.573333pt;}
.y18{bottom:610.333333pt;}
.yc7{bottom:613.053333pt;}
.y7a{bottom:615.453333pt;}
.y151{bottom:617.373333pt;}
.y198{bottom:620.253333pt;}
.y1b2{bottom:621.373333pt;}
.y176{bottom:624.093333pt;}
.y3d{bottom:625.373333pt;}
.yed{bottom:626.013333pt;}
.y1c5{bottom:626.653333pt;}
.y135{bottom:627.933333pt;}
.y17{bottom:628.253333pt;}
.y79{bottom:634.813333pt;}
.y115{bottom:635.133333pt;}
.ya0{bottom:635.773333pt;}
.y150{bottom:636.573333pt;}
.y19f{bottom:638.533333pt;}
.y5a{bottom:639.133333pt;}
.yc6{bottom:643.773333pt;}
.yec{bottom:645.213333pt;}
.y1b1{bottom:645.693333pt;}
.y16{bottom:646.173333pt;}
.y134{bottom:647.293333pt;}
.y1c4{bottom:648.573333pt;}
.y197{bottom:650.013333pt;}
.y3c{bottom:651.453333pt;}
.y78{bottom:654.173333pt;}
.y114{bottom:654.493333pt;}
.y9f{bottom:655.133333pt;}
.y14f{bottom:655.933333pt;}
.yc5{bottom:663.133333pt;}
.y15{bottom:664.093333pt;}
.y1b0{bottom:664.413333pt;}
.yeb{bottom:664.573333pt;}
.y133{bottom:666.653333pt;}
.y196{bottom:669.053333pt;}
.y1c3{bottom:670.493333pt;}
.y19d{bottom:670.693333pt;}
.y175{bottom:673.373333pt;}
.y58{bottom:673.693333pt;}
.y9e{bottom:674.493333pt;}
.y3b{bottom:677.373333pt;}
.y14{bottom:682.013333pt;}
.yc4{bottom:682.333333pt;}
.y1af{bottom:683.133333pt;}
.yea{bottom:683.933333pt;}
.y77{bottom:684.093333pt;}
.y113{bottom:684.733333pt;}
.y132{bottom:686.013333pt;}
.y195{bottom:688.093333pt;}
.y1c2{bottom:692.413333pt;}
.y174{bottom:692.733333pt;}
.y19a{bottom:695.013333pt;}
.y13{bottom:699.933333pt;}
.yc3{bottom:701.693333pt;}
.y1ae{bottom:701.853333pt;}
.ye9{bottom:703.293333pt;}
.y3a{bottom:703.453333pt;}
.y131{bottom:705.213333pt;}
.y9d{bottom:706.493333pt;}
.y57{bottom:708.253333pt;}
.y173{bottom:712.093333pt;}
.y1c1{bottom:714.333333pt;}
.y112{bottom:715.933333pt;}
.y12{bottom:717.693333pt;}
.y194{bottom:718.333333pt;}
.y1ad{bottom:720.413333pt;}
.yc2{bottom:721.053333pt;}
.ye8{bottom:722.493333pt;}
.y76{bottom:722.813333pt;}
.y130{bottom:724.573333pt;}
.y39{bottom:729.373333pt;}
.y111{bottom:735.293333pt;}
.y11{bottom:735.613333pt;}
.y1c0{bottom:736.253333pt;}
.yc1{bottom:740.413333pt;}
.y75{bottom:742.013333pt;}
.y9c{bottom:742.653333pt;}
.y55{bottom:742.813333pt;}
.y12f{bottom:743.933333pt;}
.y193{bottom:749.053333pt;}
.ye7{bottom:752.573333pt;}
.y1ac{bottom:753.213333pt;}
.y10{bottom:753.533333pt;}
.y110{bottom:754.493333pt;}
.y38{bottom:755.453333pt;}
.y1bf{bottom:758.173333pt;}
.yc0{bottom:759.773333pt;}
.y172{bottom:761.373333pt;}
.y9b{bottom:761.693333pt;}
.y12e{bottom:763.293333pt;}
.y192{bottom:768.893333pt;}
.yf{bottom:771.453333pt;}
.ye6{bottom:771.933333pt;}
.y74{bottom:772.093333pt;}
.y10f{bottom:773.853333pt;}
.y1ab{bottom:777.533333pt;}
.ybf{bottom:778.973333pt;}
.y171{bottom:780.733333pt;}
.y37{bottom:781.373333pt;}
.y9a{bottom:781.693333pt;}
.y12d{bottom:782.493333pt;}
.y191{bottom:788.733333pt;}
.ye{bottom:789.373333pt;}
.ye5{bottom:791.133333pt;}
.y73{bottom:791.453333pt;}
.y1be{bottom:792.573333pt;}
.y10e{bottom:793.213333pt;}
.y54{bottom:793.373333pt;}
.y1aa{bottom:796.253333pt;}
.y170{bottom:800.093333pt;}
.y99{bottom:801.533333pt;}
.y12c{bottom:801.853333pt;}
.yd{bottom:807.333333pt;}
.y190{bottom:807.813333pt;}
.ybe{bottom:809.253333pt;}
.ye4{bottom:810.533333pt;}
.y72{bottom:810.693333pt;}
.y10d{bottom:812.613333pt;}
.y53{bottom:812.773333pt;}
.y1a9{bottom:815.013333pt;}
.y1bd{bottom:816.933333pt;}
.y98{bottom:820.613333pt;}
.y14e{bottom:821.253333pt;}
.y18f{bottom:827.813333pt;}
.ye3{bottom:829.893333pt;}
.y16f{bottom:830.053333pt;}
.y10c{bottom:831.813333pt;}
.y52{bottom:832.133333pt;}
.y36{bottom:833.413333pt;}
.y1bc{bottom:834.693333pt;}
.y97{bottom:839.813333pt;}
.ybd{bottom:840.613333pt;}
.y71{bottom:840.773333pt;}
.yc{bottom:843.813333pt;}
.y18e{bottom:847.653333pt;}
.y1a8{bottom:847.813333pt;}
.ye2{bottom:849.253333pt;}
.y16e{bottom:849.413333pt;}
.y10b{bottom:851.173333pt;}
.y51{bottom:851.333333pt;}
.y1bb{bottom:853.413333pt;}
.y35{bottom:859.333333pt;}
.y96{bottom:859.653333pt;}
.ybc{bottom:859.813333pt;}
.y70{bottom:860.133333pt;}
.yb{bottom:861.733333pt;}
.y18d{bottom:867.493333pt;}
.ye1{bottom:868.453333pt;}
.y16d{bottom:868.773333pt;}
.y10a{bottom:870.533333pt;}
.y50{bottom:870.693333pt;}
.y1a7{bottom:872.133333pt;}
.y95{bottom:878.693333pt;}
.ybb{bottom:879.173333pt;}
.y6f{bottom:879.333333pt;}
.ya{bottom:879.653333pt;}
.y34{bottom:885.413333pt;}
.y18c{bottom:886.533333pt;}
.ye0{bottom:887.813333pt;}
.y16c{bottom:887.973333pt;}
.y109{bottom:889.893333pt;}
.y4f{bottom:890.053333pt;}
.y1a6{bottom:890.853333pt;}
.y9{bottom:897.573333pt;}
.y94{bottom:897.893333pt;}
.yba{bottom:898.533333pt;}
.y6e{bottom:898.693333pt;}
.y16b{bottom:907.333333pt;}
.y108{bottom:909.093333pt;}
.y4e{bottom:909.413333pt;}
.y1a5{bottom:909.573333pt;}
.y33{bottom:911.333333pt;}
.y8{bottom:915.493333pt;}
.y18b{bottom:916.773333pt;}
.y93{bottom:917.733333pt;}
.ydf{bottom:917.893333pt;}
.y6d{bottom:918.053333pt;}
.y1a4{bottom:928.133333pt;}
.yb9{bottom:928.453333pt;}
.y4d{bottom:928.613333pt;}
.y92{bottom:936.773333pt;}
.yde{bottom:937.093333pt;}
.y32{bottom:937.413333pt;}
.y16a{bottom:939.333333pt;}
.yb8{bottom:947.813333pt;}
.y4c{bottom:947.973333pt;}
.y18a{bottom:949.733333pt;}
.y7{bottom:952.133333pt;}
.y91{bottom:955.973333pt;}
.ydd{bottom:956.453333pt;}
.y1a3{bottom:960.933333pt;}
.yb7{bottom:967.173333pt;}
.y4b{bottom:967.333333pt;}
.y31{bottom:969.413333pt;}
.y6{bottom:970.053333pt;}
.y90{bottom:975.013333pt;}
.y169{bottom:975.813333pt;}
.y189{bottom:985.893333pt;}
.yb6{bottom:986.533333pt;}
.y5{bottom:987.813333pt;}
.y4a{bottom:999.333333pt;}
.y1a2{bottom:999.493333pt;}
.y188{bottom:1004.933333pt;}
.y4{bottom:1005.733333pt;}
.y1da{bottom:1005.893333pt;}
.y1{bottom:1023.680000pt;}
.y1a0{bottom:1023.840000pt;}
.h6{height:33.760000pt;}
.h5{height:33.920000pt;}
.h7{height:33.952000pt;}
.h2{height:58.563750pt;}
.h3{height:60.288750pt;}
.ha{height:60.519362pt;}
.hb{height:65.531250pt;}
.hf{height:65.781915pt;}
.hc{height:66.625000pt;}
.h8{height:69.760000pt;}
.h9{height:84.662813pt;}
.h4{height:87.156562pt;}
.hd{height:793.760000pt;}
.he{height:794.000000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w3{width:27.520000pt;}
.w5{width:28.160000pt;}
.w4{width:434.013333pt;}
.w6{width:434.653333pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.w9{width:1122.559983pt;}
.w7{width:1122.560000pt;}
.w8{width:1122.666667pt;}
.x0{left:0.000000pt;}
.x8{left:6.880000pt;}
.xa{left:18.240000pt;}
.x1{left:94.591988pt;}
.x7{left:109.311988pt;}
.xd{left:118.591988pt;}
.xe{left:142.586655pt;}
.x4{left:157.466655pt;}
.xb{left:165.466667pt;}
.x5{left:166.586655pt;}
.x9{left:193.946667pt;}
.x6{left:214.586655pt;}
.x3{left:275.266655pt;}
.xc{left:371.586667pt;}
.xf{left:684.453322pt;}
.x2{left:691.973322pt;}
.x12{left:699.333322pt;}
.x10{left:1013.439983pt;}
.x11{left:1034.559983pt;}
}




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