
    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_d59fde075639a4d9bb164dbf.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_4da3fd93b317cddf433fad6d.woff')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_5ba2e55b9db859a71d73a354.woff')format("woff");}.ff4{font-family:ff4;line-height:0.979004;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_e6497c266c809a76a2967e9e.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_8ffd1787e307ee7088acd0c6.woff')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_237bed9f2f9828d3c5a0e45a.woff')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_a6afd7e38bb589c984f728c0.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;}
.ls11{letter-spacing:-0.243600px;}
.lsf{letter-spacing:-0.186600px;}
.ls16{letter-spacing:-0.160800px;}
.ls7{letter-spacing:-0.135000px;}
.ls10{letter-spacing:-0.125400px;}
.lsa{letter-spacing:-0.121200px;}
.ls15{letter-spacing:-0.114000px;}
.ls6{letter-spacing:-0.090000px;}
.ls8{letter-spacing:-0.084600px;}
.ls13{letter-spacing:-0.014760px;}
.ls4{letter-spacing:0.000000px;}
.ls17{letter-spacing:0.020160px;}
.lsc{letter-spacing:0.045360px;}
.lsd{letter-spacing:0.048960px;}
.lsb{letter-spacing:0.074160px;}
.ls2{letter-spacing:0.090000px;}
.ls1{letter-spacing:0.093600px;}
.ls14{letter-spacing:0.115800px;}
.ls12{letter-spacing:0.116400px;}
.ls5{letter-spacing:0.144000px;}
.lse{letter-spacing:0.173400px;}
.ls9{letter-spacing:0.199200px;}
.ls0{letter-spacing:0.360000px;}
.ls3{letter-spacing:0.374760px;}
.ls19{letter-spacing:47.726640px;}
.ls18{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;}
}
.ws12{word-spacing:-60.120000px;}
.ws5{word-spacing:-14.493600px;}
.ws10{word-spacing:-14.379600px;}
.ws9{word-spacing:-14.372400px;}
.ws3{word-spacing:-13.425600px;}
.ws7{word-spacing:-13.399800px;}
.wsd{word-spacing:-13.342800px;}
.wsf{word-spacing:-13.342200px;}
.wsa{word-spacing:-13.275360px;}
.ws13{word-spacing:-13.246560px;}
.ws2{word-spacing:-13.226400px;}
.wse{word-spacing:-13.211640px;}
.wsb{word-spacing:-13.101000px;}
.ws11{word-spacing:-13.065600px;}
.ws8{word-spacing:-13.039800px;}
.wsc{word-spacing:-12.982800px;}
.ws0{word-spacing:-9.810000px;}
.ws1{word-spacing:-9.765000px;}
.ws6{word-spacing:0.000000px;}
.ws4{word-spacing:4.304880px;}
._10{margin-left:-4.411681px;}
._9{margin-left:-3.325199px;}
._6{margin-left:-2.205600px;}
._0{margin-left:-1.110000px;}
._1{width:1.270896px;}
._2{width:2.559913px;}
._3{width:3.602677px;}
._5{width:5.063768px;}
._7{width:6.646529px;}
._8{width:8.150943px;}
._4{width:9.919800px;}
._a{width:11.362680px;}
._e{width:14.308560px;}
._f{width:15.490440px;}
._c{width:16.567200px;}
._d{width:18.156240px;}
._b{width:19.599120px;}
._11{width:21.382680px;}
._14{width:22.965840px;}
._12{width:24.408720px;}
._13{width:25.731360px;}
._19{width:26.781240px;}
._15{width:27.835560px;}
._21{width:29.308320px;}
._1c{width:39.258360px;}
._17{width:45.330480px;}
._18{width:48.216240px;}
._1d{width:57.174120px;}
._23{width:75.150000px;}
._24{width:76.412520px;}
._1e{width:80.139960px;}
._1a{width:89.278200px;}
._16{width:93.787200px;}
._25{width:120.540600px;}
._26{width:121.891080px;}
._1b{width:134.488440px;}
._27{width:188.897040px;}
._28{width:190.099440px;}
._29{width:194.428080px;}
._1f{width:374.908320px;}
._22{width:609.917400px;}
._20{width:1103.442480px;}
.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;}
.fs7{font-size:72.000000px;}
.fs4{font-size:83.880000px;}
.y0{bottom:0.000000px;}
.y7a{bottom:7.830000px;}
.y78{bottom:7.920000px;}
.y125{bottom:25.380000px;}
.yca{bottom:25.470000px;}
.y2{bottom:73.380000px;}
.y2a{bottom:74.190000px;}
.y1{bottom:101.640000px;}
.y88{bottom:114.600000px;}
.y5d{bottom:121.980000px;}
.yfd{bottom:122.340000px;}
.y14e{bottom:124.050000px;}
.y122{bottom:126.840000px;}
.yb6{bottom:127.200000px;}
.y28{bottom:129.630000px;}
.y87{bottom:132.240000px;}
.yd0{bottom:138.090000px;}
.y5c{bottom:139.530000px;}
.yfc{bottom:139.980000px;}
.y14d{bottom:141.600000px;}
.y121{bottom:144.390000px;}
.yb5{bottom:144.840000px;}
.y27{bottom:147.270000px;}
.y86{bottom:149.790000px;}
.ycf{bottom:152.850000px;}
.y15e{bottom:152.940000px;}
.y5b{bottom:157.170000px;}
.yfb{bottom:157.530000px;}
.y14c{bottom:159.240000px;}
.y120{bottom:161.940000px;}
.yb4{bottom:162.390000px;}
.y26{bottom:164.820000px;}
.y85{bottom:167.430000px;}
.y180{bottom:168.240000px;}
.y15d{bottom:170.580000px;}
.y5a{bottom:174.720000px;}
.yfa{bottom:175.170000px;}
.y14b{bottom:176.790000px;}
.y11f{bottom:179.580000px;}
.yb3{bottom:179.940000px;}
.yce{bottom:180.210000px;}
.y15c{bottom:188.130000px;}
.y59{bottom:192.270000px;}
.yf9{bottom:192.720000px;}
.y14a{bottom:194.430000px;}
.y11e{bottom:197.130000px;}
.yb2{bottom:197.580000px;}
.y25{bottom:200.370000px;}
.y84{bottom:202.980000px;}
.y17f{bottom:203.790000px;}
.y15b{bottom:205.680000px;}
.ycd{bottom:207.570000px;}
.yf8{bottom:210.270000px;}
.y149{bottom:211.980000px;}
.y11d{bottom:214.680000px;}
.yb1{bottom:215.130000px;}
.y24{bottom:218.010000px;}
.y83{bottom:220.530000px;}
.y17e{bottom:221.430000px;}
.y15a{bottom:223.320000px;}
.y58{bottom:227.910000px;}
.y11c{bottom:232.320000px;}
.yb0{bottom:232.680000px;}
.ycc{bottom:234.840000px;}
.y23{bottom:235.560000px;}
.y82{bottom:238.170000px;}
.y17d{bottom:238.980000px;}
.y159{bottom:240.870000px;}
.y57{bottom:245.460000px;}
.yf7{bottom:245.910000px;}
.y148{bottom:247.530000px;}
.y11b{bottom:249.870000px;}
.yaf{bottom:250.320000px;}
.y22{bottom:253.200000px;}
.y81{bottom:255.720000px;}
.y17c{bottom:256.530000px;}
.y158{bottom:258.510000px;}
.ycb{bottom:262.200000px;}
.y56{bottom:263.100000px;}
.yf6{bottom:263.460000px;}
.y147{bottom:265.170000px;}
.yae{bottom:267.870000px;}
.y21{bottom:270.750000px;}
.y17b{bottom:274.170000px;}
.y157{bottom:276.060000px;}
.y55{bottom:280.650000px;}
.yf5{bottom:281.100000px;}
.y80{bottom:282.360000px;}
.y146{bottom:282.720000px;}
.yad{bottom:285.510000px;}
.y20{bottom:288.300000px;}
.yc9{bottom:289.560000px;}
.y17a{bottom:291.720000px;}
.y156{bottom:293.610000px;}
.y54{bottom:298.200000px;}
.yf4{bottom:298.650000px;}
.y145{bottom:300.360000px;}
.y11a{bottom:303.060000px;}
.y1f{bottom:305.940000px;}
.y179{bottom:309.360000px;}
.y53{bottom:315.840000px;}
.yf3{bottom:316.200000px;}
.y144{bottom:317.910000px;}
.y7f{bottom:318.180000px;}
.y155{bottom:320.250000px;}
.y119{bottom:320.610000px;}
.yac{bottom:321.060000px;}
.y178{bottom:326.910000px;}
.y52{bottom:333.390000px;}
.yf2{bottom:333.840000px;}
.y143{bottom:335.460000px;}
.y118{bottom:338.250000px;}
.yab{bottom:338.610000px;}
.y1e{bottom:341.490000px;}
.y177{bottom:344.460000px;}
.y51{bottom:350.940000px;}
.yf1{bottom:351.390000px;}
.y142{bottom:353.100000px;}
.yc8{bottom:355.800000px;}
.yaa{bottom:356.250000px;}
.y1d{bottom:359.130000px;}
.y176{bottom:362.100000px;}
.y7e{bottom:363.900000px;}
.y50{bottom:368.580000px;}
.yf0{bottom:368.940000px;}
.y141{bottom:370.650000px;}
.y117{bottom:373.440000px;}
.ya9{bottom:373.800000px;}
.y1c{bottom:376.680000px;}
.y175{bottom:379.650000px;}
.yef{bottom:386.580000px;}
.y140{bottom:388.290000px;}
.y116{bottom:390.990000px;}
.y7d{bottom:391.260000px;}
.ya8{bottom:391.440000px;}
.y1b{bottom:394.230000px;}
.y4f{bottom:395.130000px;}
.yee{bottom:404.130000px;}
.y174{bottom:406.560000px;}
.y115{bottom:408.540000px;}
.ya7{bottom:408.990000px;}
.y1a{bottom:411.870000px;}
.y7c{bottom:418.530000px;}
.y13f{bottom:423.840000px;}
.y114{bottom:426.180000px;}
.ya6{bottom:426.540000px;}
.y19{bottom:429.420000px;}
.y4e{bottom:430.770000px;}
.y13e{bottom:441.390000px;}
.y113{bottom:443.730000px;}
.ya5{bottom:444.180000px;}
.y7b{bottom:445.890000px;}
.y18{bottom:447.060000px;}
.y4d{bottom:448.320000px;}
.y173{bottom:454.800000px;}
.y13d{bottom:459.030000px;}
.y112{bottom:461.370000px;}
.ya4{bottom:461.730000px;}
.y4c{bottom:465.870000px;}
.yed{bottom:466.320000px;}
.y172{bottom:472.470000px;}
.y79{bottom:473.280000px;}
.y17{bottom:474.000000px;}
.y13c{bottom:476.610000px;}
.y154{bottom:478.950000px;}
.yc7{bottom:479.400000px;}
.y4b{bottom:483.540000px;}
.yec{bottom:483.900000px;}
.y171{bottom:490.020000px;}
.y13b{bottom:494.160000px;}
.y153{bottom:496.500000px;}
.yc6{bottom:496.950000px;}
.ya3{bottom:497.400000px;}
.y77{bottom:500.550000px;}
.y4a{bottom:501.090000px;}
.yeb{bottom:501.540000px;}
.y170{bottom:507.660000px;}
.y13a{bottom:511.800000px;}
.yc5{bottom:514.500000px;}
.ya2{bottom:514.950000px;}
.y49{bottom:518.730000px;}
.yea{bottom:519.090000px;}
.y16{bottom:522.510000px;}
.y16f{bottom:525.210000px;}
.y139{bottom:529.350000px;}
.yc4{bottom:532.140000px;}
.ya1{bottom:532.500000px;}
.y48{bottom:536.280000px;}
.ye9{bottom:536.730000px;}
.y16e{bottom:542.760000px;}
.y194{bottom:544.830000px;}
.y138{bottom:546.990000px;}
.y76{bottom:549.330000px;}
.yc3{bottom:549.690000px;}
.ya0{bottom:550.140000px;}
.y47{bottom:553.830000px;}
.ye8{bottom:554.280000px;}
.y15{bottom:559.590000px;}
.y16d{bottom:560.400000px;}
.y193{bottom:562.470000px;}
.y137{bottom:564.540000px;}
.y111{bottom:567.330000px;}
.y9f{bottom:567.690000px;}
.y46{bottom:571.470000px;}
.ye7{bottom:571.830000px;}
.y14{bottom:577.140000px;}
.y16c{bottom:577.950000px;}
.y192{bottom:580.020000px;}
.y75{bottom:584.880000px;}
.y9e{bottom:585.330000px;}
.y45{bottom:589.020000px;}
.ye6{bottom:589.470000px;}
.y13{bottom:594.780000px;}
.y136{bottom:600.090000px;}
.y74{bottom:602.430000px;}
.y9d{bottom:602.880000px;}
.y44{bottom:606.660000px;}
.ye5{bottom:607.020000px;}
.y12{bottom:612.330000px;}
.y16b{bottom:613.590000px;}
.y135{bottom:617.730000px;}
.y73{bottom:620.070000px;}
.y9c{bottom:620.430000px;}
.y43{bottom:624.210000px;}
.ye4{bottom:624.660000px;}
.y11{bottom:629.880000px;}
.y16a{bottom:631.140000px;}
.y134{bottom:635.280000px;}
.y72{bottom:637.620000px;}
.y9b{bottom:638.070000px;}
.y191{bottom:641.760000px;}
.ye3{bottom:642.210000px;}
.y10{bottom:647.520000px;}
.y169{bottom:648.690000px;}
.y133{bottom:652.920000px;}
.y71{bottom:655.260000px;}
.yc2{bottom:655.620000px;}
.y42{bottom:659.760000px;}
.y110{bottom:664.260000px;}
.y9a{bottom:664.620000px;}
.yf{bottom:665.070000px;}
.y168{bottom:666.330000px;}
.y190{bottom:668.400000px;}
.y132{bottom:670.470000px;}
.y70{bottom:672.810000px;}
.yc1{bottom:673.260000px;}
.y41{bottom:677.400000px;}
.ye{bottom:682.710000px;}
.y167{bottom:683.880000px;}
.y18f{bottom:685.950000px;}
.y131{bottom:688.020000px;}
.y6f{bottom:690.360000px;}
.yc0{bottom:690.810000px;}
.y40{bottom:694.950000px;}
.y10f{bottom:699.810000px;}
.yd{bottom:700.260000px;}
.y166{bottom:701.520000px;}
.y18e{bottom:703.590000px;}
.y130{bottom:705.660000px;}
.y6e{bottom:708.000000px;}
.ybf{bottom:708.360000px;}
.y3f{bottom:712.590000px;}
.ye2{bottom:712.950000px;}
.y10e{bottom:717.360000px;}
.yc{bottom:717.810000px;}
.y12f{bottom:723.210000px;}
.y6d{bottom:725.550000px;}
.ybe{bottom:726.000000px;}
.y165{bottom:728.070000px;}
.y3e{bottom:730.140000px;}
.ye1{bottom:730.590000px;}
.y10d{bottom:735.000000px;}
.y99{bottom:735.360000px;}
.yb{bottom:735.450000px;}
.y12e{bottom:740.850000px;}
.y152{bottom:743.550000px;}
.y3d{bottom:747.690000px;}
.ye0{bottom:748.140000px;}
.y10c{bottom:752.550000px;}
.ya{bottom:753.000000px;}
.y12d{bottom:758.400000px;}
.y164{bottom:761.010000px;}
.y6c{bottom:761.190000px;}
.ybd{bottom:761.550000px;}
.y3c{bottom:765.330000px;}
.ydf{bottom:765.690000px;}
.y10b{bottom:770.190000px;}
.y98{bottom:770.550000px;}
.y18d{bottom:774.330000px;}
.y6b{bottom:778.740000px;}
.ybc{bottom:779.190000px;}
.y9{bottom:779.910000px;}
.y3b{bottom:782.880000px;}
.yde{bottom:783.330000px;}
.y12c{bottom:784.950000px;}
.y10a{bottom:787.740000px;}
.y97{bottom:788.190000px;}
.y18c{bottom:791.880000px;}
.y6a{bottom:796.290000px;}
.ybb{bottom:796.740000px;}
.y3a{bottom:800.520000px;}
.ydd{bottom:800.880000px;}
.y109{bottom:805.290000px;}
.y96{bottom:805.740000px;}
.y163{bottom:805.920000px;}
.y18b{bottom:809.520000px;}
.y69{bottom:813.930000px;}
.yba{bottom:814.290000px;}
.y39{bottom:818.070000px;}
.ydc{bottom:818.520000px;}
.y12b{bottom:820.860000px;}
.y108{bottom:822.930000px;}
.y95{bottom:823.290000px;}
.y8{bottom:828.240000px;}
.y68{bottom:831.480000px;}
.yb9{bottom:831.930000px;}
.y162{bottom:833.280000px;}
.y38{bottom:835.620000px;}
.ydb{bottom:836.070000px;}
.y107{bottom:840.480000px;}
.y94{bottom:840.930000px;}
.y67{bottom:849.030000px;}
.yb8{bottom:849.480000px;}
.y37{bottom:853.260000px;}
.yda{bottom:853.620000px;}
.y106{bottom:858.030000px;}
.y93{bottom:858.480000px;}
.y161{bottom:860.640000px;}
.y7{bottom:863.790000px;}
.y12a{bottom:866.580000px;}
.yb7{bottom:867.030000px;}
.yd9{bottom:871.260000px;}
.y105{bottom:875.670000px;}
.y92{bottom:876.030000px;}
.y66{bottom:884.670000px;}
.y36{bottom:888.810000px;}
.y91{bottom:893.670000px;}
.y18a{bottom:897.810000px;}
.y6{bottom:899.610000px;}
.y65{bottom:902.220000px;}
.y160{bottom:905.550000px;}
.y35{bottom:906.450000px;}
.y90{bottom:911.220000px;}
.y129{bottom:911.490000px;}
.y189{bottom:915.450000px;}
.y64{bottom:919.860000px;}
.y34{bottom:924.000000px;}
.y8f{bottom:928.860000px;}
.y15f{bottom:932.910000px;}
.y5{bottom:935.610000px;}
.y63{bottom:937.410000px;}
.y128{bottom:938.850000px;}
.y33{bottom:941.550000px;}
.y188{bottom:942.000000px;}
.y104{bottom:946.410000px;}
.y62{bottom:954.960000px;}
.y32{bottom:959.190000px;}
.y187{bottom:959.550000px;}
.y103{bottom:963.960000px;}
.y8e{bottom:964.410000px;}
.y127{bottom:966.120000px;}
.y4{bottom:971.700000px;}
.y61{bottom:972.600000px;}
.yd8{bottom:977.190000px;}
.y102{bottom:981.600000px;}
.y8d{bottom:981.960000px;}
.y31{bottom:985.740000px;}
.y60{bottom:990.150000px;}
.y126{bottom:993.480000px;}
.yd7{bottom:994.740000px;}
.y101{bottom:999.150000px;}
.y8c{bottom:999.600000px;}
.y186{bottom:1003.740000px;}
.y5f{bottom:1007.790000px;}
.y3{bottom:1009.980000px;}
.yd6{bottom:1012.320000px;}
.y100{bottom:1016.820000px;}
.y8b{bottom:1017.180000px;}
.y124{bottom:1020.870000px;}
.y185{bottom:1021.320000px;}
.y30{bottom:1021.680000px;}
.y151{bottom:1025.370000px;}
.yd5{bottom:1029.960000px;}
.y5e{bottom:1034.370000px;}
.y8a{bottom:1034.820000px;}
.y184{bottom:1038.960000px;}
.y150{bottom:1042.920000px;}
.yd4{bottom:1047.510000px;}
.yff{bottom:1051.920000px;}
.y89{bottom:1052.370000px;}
.y14f{bottom:1060.560000px;}
.yd3{bottom:1065.150000px;}
.y183{bottom:1065.510000px;}
.yfe{bottom:1069.560000px;}
.y2f{bottom:1069.920000px;}
.y182{bottom:1083.150000px;}
.y123{bottom:1087.110000px;}
.y2e{bottom:1087.560000px;}
.yd2{bottom:1091.700000px;}
.y181{bottom:1100.700000px;}
.y2d{bottom:1105.110000px;}
.y2c{bottom:1122.750000px;}
.yd1{bottom:1127.610000px;}
.y2b{bottom:1140.300000px;}
.y29{bottom:1194.300000px;}
.he{height:26.550000px;}
.hf{height:26.580000px;}
.hc{height:26.640000px;}
.h2{height:30.022383px;}
.h3{height:39.155273px;}
.h12{height:44.100000px;}
.h10{height:44.190000px;}
.h6{height:50.667539px;}
.hd{height:50.902383px;}
.h7{height:52.311445px;}
.h8{height:55.779258px;}
.h5{height:57.323320px;}
.h9{height:60.960938px;}
.h11{height:61.793886px;}
.hb{height:62.585859px;}
.ha{height:68.582109px;}
.h4{height:72.985430px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.w14{width:95.310000px;}
.we{width:114.780000px;}
.w9{width:118.260000px;}
.w13{width:126.720000px;}
.wc{width:134.280000px;}
.wa{width:137.340000px;}
.wb{width:140.700000px;}
.w11{width:144.450000px;}
.w4{width:151.320000px;}
.w8{width:161.130000px;}
.wd{width:161.280000px;}
.w7{width:163.260000px;}
.w6{width:172.650000px;}
.w12{width:186.870000px;}
.w3{width:191.970000px;}
.w10{width:199.380000px;}
.wf{width:201.780000px;}
.w5{width:208.980000px;}
.w2{width:893.159987px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x11{left:3.960000px;}
.x5{left:7.740000px;}
.x1{left:68.040000px;}
.x16{left:111.239987px;}
.x4{left:169.680000px;}
.x2{left:202.799987px;}
.xd{left:210.180000px;}
.x8{left:242.130000px;}
.x12{left:268.950000px;}
.xe{left:345.180000px;}
.x6{left:362.460000px;}
.x9{left:406.200000px;}
.x13{left:414.120000px;}
.xc{left:446.609987px;}
.xf{left:507.180000px;}
.x7{left:514.590000px;}
.xa{left:568.140000px;}
.x14{left:601.710000px;}
.x10{left:622.680000px;}
.xb{left:687.120000px;}
.x15{left:729.150000px;}
.x3{left:792.059987px;}
@media print{
.v1{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:13.440000pt;}
.ls11{letter-spacing:-0.216533pt;}
.lsf{letter-spacing:-0.165867pt;}
.ls16{letter-spacing:-0.142933pt;}
.ls7{letter-spacing:-0.120000pt;}
.ls10{letter-spacing:-0.111467pt;}
.lsa{letter-spacing:-0.107733pt;}
.ls15{letter-spacing:-0.101333pt;}
.ls6{letter-spacing:-0.080000pt;}
.ls8{letter-spacing:-0.075200pt;}
.ls13{letter-spacing:-0.013120pt;}
.ls4{letter-spacing:0.000000pt;}
.ls17{letter-spacing:0.017920pt;}
.lsc{letter-spacing:0.040320pt;}
.lsd{letter-spacing:0.043520pt;}
.lsb{letter-spacing:0.065920pt;}
.ls2{letter-spacing:0.080000pt;}
.ls1{letter-spacing:0.083200pt;}
.ls14{letter-spacing:0.102933pt;}
.ls12{letter-spacing:0.103467pt;}
.ls5{letter-spacing:0.128000pt;}
.lse{letter-spacing:0.154133pt;}
.ls9{letter-spacing:0.177067pt;}
.ls0{letter-spacing:0.320000pt;}
.ls3{letter-spacing:0.333120pt;}
.ls19{letter-spacing:42.423680pt;}
.ls18{letter-spacing:71.863680pt;}
.ws12{word-spacing:-53.440000pt;}
.ws5{word-spacing:-12.883200pt;}
.ws10{word-spacing:-12.781867pt;}
.ws9{word-spacing:-12.775467pt;}
.ws3{word-spacing:-11.933867pt;}
.ws7{word-spacing:-11.910933pt;}
.wsd{word-spacing:-11.860267pt;}
.wsf{word-spacing:-11.859733pt;}
.wsa{word-spacing:-11.800320pt;}
.ws13{word-spacing:-11.774720pt;}
.ws2{word-spacing:-11.756800pt;}
.wse{word-spacing:-11.743680pt;}
.wsb{word-spacing:-11.645333pt;}
.ws11{word-spacing:-11.613867pt;}
.ws8{word-spacing:-11.590933pt;}
.wsc{word-spacing:-11.540267pt;}
.ws0{word-spacing:-8.720000pt;}
.ws1{word-spacing:-8.680000pt;}
.ws6{word-spacing:0.000000pt;}
.ws4{word-spacing:3.826560pt;}
._10{margin-left:-3.921495pt;}
._9{margin-left:-2.955733pt;}
._6{margin-left:-1.960534pt;}
._0{margin-left:-0.986667pt;}
._1{width:1.129685pt;}
._2{width:2.275478pt;}
._3{width:3.202380pt;}
._5{width:4.501127pt;}
._7{width:5.908025pt;}
._8{width:7.245283pt;}
._4{width:8.817600pt;}
._a{width:10.100160pt;}
._e{width:12.718720pt;}
._f{width:13.769280pt;}
._c{width:14.726400pt;}
._d{width:16.138880pt;}
._b{width:17.421440pt;}
._11{width:19.006827pt;}
._14{width:20.414080pt;}
._12{width:21.696640pt;}
._13{width:22.872320pt;}
._19{width:23.805547pt;}
._15{width:24.742720pt;}
._21{width:26.051840pt;}
._1c{width:34.896320pt;}
._17{width:40.293760pt;}
._18{width:42.858880pt;}
._1d{width:50.821440pt;}
._23{width:66.800000pt;}
._24{width:67.922240pt;}
._1e{width:71.235520pt;}
._1a{width:79.358400pt;}
._16{width:83.366400pt;}
._25{width:107.147200pt;}
._26{width:108.347627pt;}
._1b{width:119.545280pt;}
._27{width:167.908480pt;}
._28{width:168.977280pt;}
._29{width:172.824960pt;}
._1f{width:333.251840pt;}
._22{width:542.148800pt;}
._20{width:980.837760pt;}
.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;}
.fs7{font-size:64.000000pt;}
.fs4{font-size:74.560000pt;}
.y0{bottom:0.000000pt;}
.y7a{bottom:6.960000pt;}
.y78{bottom:7.040000pt;}
.y125{bottom:22.560000pt;}
.yca{bottom:22.640000pt;}
.y2{bottom:65.226667pt;}
.y2a{bottom:65.946667pt;}
.y1{bottom:90.346667pt;}
.y88{bottom:101.866667pt;}
.y5d{bottom:108.426667pt;}
.yfd{bottom:108.746667pt;}
.y14e{bottom:110.266667pt;}
.y122{bottom:112.746667pt;}
.yb6{bottom:113.066667pt;}
.y28{bottom:115.226667pt;}
.y87{bottom:117.546667pt;}
.yd0{bottom:122.746667pt;}
.y5c{bottom:124.026667pt;}
.yfc{bottom:124.426667pt;}
.y14d{bottom:125.866667pt;}
.y121{bottom:128.346667pt;}
.yb5{bottom:128.746667pt;}
.y27{bottom:130.906667pt;}
.y86{bottom:133.146667pt;}
.ycf{bottom:135.866667pt;}
.y15e{bottom:135.946667pt;}
.y5b{bottom:139.706667pt;}
.yfb{bottom:140.026667pt;}
.y14c{bottom:141.546667pt;}
.y120{bottom:143.946667pt;}
.yb4{bottom:144.346667pt;}
.y26{bottom:146.506667pt;}
.y85{bottom:148.826667pt;}
.y180{bottom:149.546667pt;}
.y15d{bottom:151.626667pt;}
.y5a{bottom:155.306667pt;}
.yfa{bottom:155.706667pt;}
.y14b{bottom:157.146667pt;}
.y11f{bottom:159.626667pt;}
.yb3{bottom:159.946667pt;}
.yce{bottom:160.186667pt;}
.y15c{bottom:167.226667pt;}
.y59{bottom:170.906667pt;}
.yf9{bottom:171.306667pt;}
.y14a{bottom:172.826667pt;}
.y11e{bottom:175.226667pt;}
.yb2{bottom:175.626667pt;}
.y25{bottom:178.106667pt;}
.y84{bottom:180.426667pt;}
.y17f{bottom:181.146667pt;}
.y15b{bottom:182.826667pt;}
.ycd{bottom:184.506667pt;}
.yf8{bottom:186.906667pt;}
.y149{bottom:188.426667pt;}
.y11d{bottom:190.826667pt;}
.yb1{bottom:191.226667pt;}
.y24{bottom:193.786667pt;}
.y83{bottom:196.026667pt;}
.y17e{bottom:196.826667pt;}
.y15a{bottom:198.506667pt;}
.y58{bottom:202.586667pt;}
.y11c{bottom:206.506667pt;}
.yb0{bottom:206.826667pt;}
.ycc{bottom:208.746667pt;}
.y23{bottom:209.386667pt;}
.y82{bottom:211.706667pt;}
.y17d{bottom:212.426667pt;}
.y159{bottom:214.106667pt;}
.y57{bottom:218.186667pt;}
.yf7{bottom:218.586667pt;}
.y148{bottom:220.026667pt;}
.y11b{bottom:222.106667pt;}
.yaf{bottom:222.506667pt;}
.y22{bottom:225.066667pt;}
.y81{bottom:227.306667pt;}
.y17c{bottom:228.026667pt;}
.y158{bottom:229.786667pt;}
.ycb{bottom:233.066667pt;}
.y56{bottom:233.866667pt;}
.yf6{bottom:234.186667pt;}
.y147{bottom:235.706667pt;}
.yae{bottom:238.106667pt;}
.y21{bottom:240.666667pt;}
.y17b{bottom:243.706667pt;}
.y157{bottom:245.386667pt;}
.y55{bottom:249.466667pt;}
.yf5{bottom:249.866667pt;}
.y80{bottom:250.986667pt;}
.y146{bottom:251.306667pt;}
.yad{bottom:253.786667pt;}
.y20{bottom:256.266667pt;}
.yc9{bottom:257.386667pt;}
.y17a{bottom:259.306667pt;}
.y156{bottom:260.986667pt;}
.y54{bottom:265.066667pt;}
.yf4{bottom:265.466667pt;}
.y145{bottom:266.986667pt;}
.y11a{bottom:269.386667pt;}
.y1f{bottom:271.946667pt;}
.y179{bottom:274.986667pt;}
.y53{bottom:280.746667pt;}
.yf3{bottom:281.066667pt;}
.y144{bottom:282.586667pt;}
.y7f{bottom:282.826667pt;}
.y155{bottom:284.666667pt;}
.y119{bottom:284.986667pt;}
.yac{bottom:285.386667pt;}
.y178{bottom:290.586667pt;}
.y52{bottom:296.346667pt;}
.yf2{bottom:296.746667pt;}
.y143{bottom:298.186667pt;}
.y118{bottom:300.666667pt;}
.yab{bottom:300.986667pt;}
.y1e{bottom:303.546667pt;}
.y177{bottom:306.186667pt;}
.y51{bottom:311.946667pt;}
.yf1{bottom:312.346667pt;}
.y142{bottom:313.866667pt;}
.yc8{bottom:316.266667pt;}
.yaa{bottom:316.666667pt;}
.y1d{bottom:319.226667pt;}
.y176{bottom:321.866667pt;}
.y7e{bottom:323.466667pt;}
.y50{bottom:327.626667pt;}
.yf0{bottom:327.946667pt;}
.y141{bottom:329.466667pt;}
.y117{bottom:331.946667pt;}
.ya9{bottom:332.266667pt;}
.y1c{bottom:334.826667pt;}
.y175{bottom:337.466667pt;}
.yef{bottom:343.626667pt;}
.y140{bottom:345.146667pt;}
.y116{bottom:347.546667pt;}
.y7d{bottom:347.786667pt;}
.ya8{bottom:347.946667pt;}
.y1b{bottom:350.426667pt;}
.y4f{bottom:351.226667pt;}
.yee{bottom:359.226667pt;}
.y174{bottom:361.386667pt;}
.y115{bottom:363.146667pt;}
.ya7{bottom:363.546667pt;}
.y1a{bottom:366.106667pt;}
.y7c{bottom:372.026667pt;}
.y13f{bottom:376.746667pt;}
.y114{bottom:378.826667pt;}
.ya6{bottom:379.146667pt;}
.y19{bottom:381.706667pt;}
.y4e{bottom:382.906667pt;}
.y13e{bottom:392.346667pt;}
.y113{bottom:394.426667pt;}
.ya5{bottom:394.826667pt;}
.y7b{bottom:396.346667pt;}
.y18{bottom:397.386667pt;}
.y4d{bottom:398.506667pt;}
.y173{bottom:404.266667pt;}
.y13d{bottom:408.026667pt;}
.y112{bottom:410.106667pt;}
.ya4{bottom:410.426667pt;}
.y4c{bottom:414.106667pt;}
.yed{bottom:414.506667pt;}
.y172{bottom:419.973333pt;}
.y79{bottom:420.693333pt;}
.y17{bottom:421.333333pt;}
.y13c{bottom:423.653333pt;}
.y154{bottom:425.733333pt;}
.yc7{bottom:426.133333pt;}
.y4b{bottom:429.813333pt;}
.yec{bottom:430.133333pt;}
.y171{bottom:435.573333pt;}
.y13b{bottom:439.253333pt;}
.y153{bottom:441.333333pt;}
.yc6{bottom:441.733333pt;}
.ya3{bottom:442.133333pt;}
.y77{bottom:444.933333pt;}
.y4a{bottom:445.413333pt;}
.yeb{bottom:445.813333pt;}
.y170{bottom:451.253333pt;}
.y13a{bottom:454.933333pt;}
.yc5{bottom:457.333333pt;}
.ya2{bottom:457.733333pt;}
.y49{bottom:461.093333pt;}
.yea{bottom:461.413333pt;}
.y16{bottom:464.453333pt;}
.y16f{bottom:466.853333pt;}
.y139{bottom:470.533333pt;}
.yc4{bottom:473.013333pt;}
.ya1{bottom:473.333333pt;}
.y48{bottom:476.693333pt;}
.ye9{bottom:477.093333pt;}
.y16e{bottom:482.453333pt;}
.y194{bottom:484.293333pt;}
.y138{bottom:486.213333pt;}
.y76{bottom:488.293333pt;}
.yc3{bottom:488.613333pt;}
.ya0{bottom:489.013333pt;}
.y47{bottom:492.293333pt;}
.ye8{bottom:492.693333pt;}
.y15{bottom:497.413333pt;}
.y16d{bottom:498.133333pt;}
.y193{bottom:499.973333pt;}
.y137{bottom:501.813333pt;}
.y111{bottom:504.293333pt;}
.y9f{bottom:504.613333pt;}
.y46{bottom:507.973333pt;}
.ye7{bottom:508.293333pt;}
.y14{bottom:513.013333pt;}
.y16c{bottom:513.733333pt;}
.y192{bottom:515.573333pt;}
.y75{bottom:519.893333pt;}
.y9e{bottom:520.293333pt;}
.y45{bottom:523.573333pt;}
.ye6{bottom:523.973333pt;}
.y13{bottom:528.693333pt;}
.y136{bottom:533.413333pt;}
.y74{bottom:535.493333pt;}
.y9d{bottom:535.893333pt;}
.y44{bottom:539.253333pt;}
.ye5{bottom:539.573333pt;}
.y12{bottom:544.293333pt;}
.y16b{bottom:545.413333pt;}
.y135{bottom:549.093333pt;}
.y73{bottom:551.173333pt;}
.y9c{bottom:551.493333pt;}
.y43{bottom:554.853333pt;}
.ye4{bottom:555.253333pt;}
.y11{bottom:559.893333pt;}
.y16a{bottom:561.013333pt;}
.y134{bottom:564.693333pt;}
.y72{bottom:566.773333pt;}
.y9b{bottom:567.173333pt;}
.y191{bottom:570.453333pt;}
.ye3{bottom:570.853333pt;}
.y10{bottom:575.573333pt;}
.y169{bottom:576.613333pt;}
.y133{bottom:580.373333pt;}
.y71{bottom:582.453333pt;}
.yc2{bottom:582.773333pt;}
.y42{bottom:586.453333pt;}
.y110{bottom:590.453333pt;}
.y9a{bottom:590.773333pt;}
.yf{bottom:591.173333pt;}
.y168{bottom:592.293333pt;}
.y190{bottom:594.133333pt;}
.y132{bottom:595.973333pt;}
.y70{bottom:598.053333pt;}
.yc1{bottom:598.453333pt;}
.y41{bottom:602.133333pt;}
.ye{bottom:606.853333pt;}
.y167{bottom:607.893333pt;}
.y18f{bottom:609.733333pt;}
.y131{bottom:611.573333pt;}
.y6f{bottom:613.653333pt;}
.yc0{bottom:614.053333pt;}
.y40{bottom:617.733333pt;}
.y10f{bottom:622.053333pt;}
.yd{bottom:622.453333pt;}
.y166{bottom:623.573333pt;}
.y18e{bottom:625.413333pt;}
.y130{bottom:627.253333pt;}
.y6e{bottom:629.333333pt;}
.ybf{bottom:629.653333pt;}
.y3f{bottom:633.413333pt;}
.ye2{bottom:633.733333pt;}
.y10e{bottom:637.653333pt;}
.yc{bottom:638.053333pt;}
.y12f{bottom:642.853333pt;}
.y6d{bottom:644.933333pt;}
.ybe{bottom:645.333333pt;}
.y165{bottom:647.173333pt;}
.y3e{bottom:649.013333pt;}
.ye1{bottom:649.413333pt;}
.y10d{bottom:653.333333pt;}
.y99{bottom:653.653333pt;}
.yb{bottom:653.733333pt;}
.y12e{bottom:658.533333pt;}
.y152{bottom:660.933333pt;}
.y3d{bottom:664.613333pt;}
.ye0{bottom:665.013333pt;}
.y10c{bottom:668.933333pt;}
.ya{bottom:669.333333pt;}
.y12d{bottom:674.133333pt;}
.y164{bottom:676.453333pt;}
.y6c{bottom:676.613333pt;}
.ybd{bottom:676.933333pt;}
.y3c{bottom:680.293333pt;}
.ydf{bottom:680.613333pt;}
.y10b{bottom:684.613333pt;}
.y98{bottom:684.933333pt;}
.y18d{bottom:688.293333pt;}
.y6b{bottom:692.213333pt;}
.ybc{bottom:692.613333pt;}
.y9{bottom:693.253333pt;}
.y3b{bottom:695.893333pt;}
.yde{bottom:696.293333pt;}
.y12c{bottom:697.733333pt;}
.y10a{bottom:700.213333pt;}
.y97{bottom:700.613333pt;}
.y18c{bottom:703.893333pt;}
.y6a{bottom:707.813333pt;}
.ybb{bottom:708.213333pt;}
.y3a{bottom:711.573333pt;}
.ydd{bottom:711.893333pt;}
.y109{bottom:715.813333pt;}
.y96{bottom:716.213333pt;}
.y163{bottom:716.373333pt;}
.y18b{bottom:719.573333pt;}
.y69{bottom:723.493333pt;}
.yba{bottom:723.813333pt;}
.y39{bottom:727.173333pt;}
.ydc{bottom:727.573333pt;}
.y12b{bottom:729.653333pt;}
.y108{bottom:731.493333pt;}
.y95{bottom:731.813333pt;}
.y8{bottom:736.213333pt;}
.y68{bottom:739.093333pt;}
.yb9{bottom:739.493333pt;}
.y162{bottom:740.693333pt;}
.y38{bottom:742.773333pt;}
.ydb{bottom:743.173333pt;}
.y107{bottom:747.093333pt;}
.y94{bottom:747.493333pt;}
.y67{bottom:754.693333pt;}
.yb8{bottom:755.093333pt;}
.y37{bottom:758.453333pt;}
.yda{bottom:758.773333pt;}
.y106{bottom:762.693333pt;}
.y93{bottom:763.093333pt;}
.y161{bottom:765.013333pt;}
.y7{bottom:767.813333pt;}
.y12a{bottom:770.293333pt;}
.yb7{bottom:770.693333pt;}
.yd9{bottom:774.453333pt;}
.y105{bottom:778.373333pt;}
.y92{bottom:778.693333pt;}
.y66{bottom:786.373333pt;}
.y36{bottom:790.053333pt;}
.y91{bottom:794.373333pt;}
.y18a{bottom:798.053333pt;}
.y6{bottom:799.653333pt;}
.y65{bottom:801.973333pt;}
.y160{bottom:804.933333pt;}
.y35{bottom:805.733333pt;}
.y90{bottom:809.973333pt;}
.y129{bottom:810.213333pt;}
.y189{bottom:813.733333pt;}
.y64{bottom:817.653333pt;}
.y34{bottom:821.333333pt;}
.y8f{bottom:825.653333pt;}
.y15f{bottom:829.253333pt;}
.y5{bottom:831.653333pt;}
.y63{bottom:833.253333pt;}
.y128{bottom:834.533333pt;}
.y33{bottom:836.933333pt;}
.y188{bottom:837.333333pt;}
.y104{bottom:841.253333pt;}
.y62{bottom:848.853333pt;}
.y32{bottom:852.613333pt;}
.y187{bottom:852.933333pt;}
.y103{bottom:856.853333pt;}
.y8e{bottom:857.253333pt;}
.y127{bottom:858.773333pt;}
.y4{bottom:863.733333pt;}
.y61{bottom:864.533333pt;}
.yd8{bottom:868.613333pt;}
.y102{bottom:872.533333pt;}
.y8d{bottom:872.853333pt;}
.y31{bottom:876.213333pt;}
.y60{bottom:880.133333pt;}
.y126{bottom:883.093333pt;}
.yd7{bottom:884.213333pt;}
.y101{bottom:888.133333pt;}
.y8c{bottom:888.533333pt;}
.y186{bottom:892.213333pt;}
.y5f{bottom:895.813333pt;}
.y3{bottom:897.760000pt;}
.yd6{bottom:899.840000pt;}
.y100{bottom:903.840000pt;}
.y8b{bottom:904.160000pt;}
.y124{bottom:907.440000pt;}
.y185{bottom:907.840000pt;}
.y30{bottom:908.160000pt;}
.y151{bottom:911.440000pt;}
.yd5{bottom:915.520000pt;}
.y5e{bottom:919.440000pt;}
.y8a{bottom:919.840000pt;}
.y184{bottom:923.520000pt;}
.y150{bottom:927.040000pt;}
.yd4{bottom:931.120000pt;}
.yff{bottom:935.040000pt;}
.y89{bottom:935.440000pt;}
.y14f{bottom:942.720000pt;}
.yd3{bottom:946.800000pt;}
.y183{bottom:947.120000pt;}
.yfe{bottom:950.720000pt;}
.y2f{bottom:951.040000pt;}
.y182{bottom:962.800000pt;}
.y123{bottom:966.320000pt;}
.y2e{bottom:966.720000pt;}
.yd2{bottom:970.400000pt;}
.y181{bottom:978.400000pt;}
.y2d{bottom:982.320000pt;}
.y2c{bottom:998.000000pt;}
.yd1{bottom:1002.320000pt;}
.y2b{bottom:1013.600000pt;}
.y29{bottom:1061.600000pt;}
.he{height:23.600000pt;}
.hf{height:23.626667pt;}
.hc{height:23.680000pt;}
.h2{height:26.686562pt;}
.h3{height:34.804688pt;}
.h12{height:39.200000pt;}
.h10{height:39.280000pt;}
.h6{height:45.037812pt;}
.hd{height:45.246562pt;}
.h7{height:46.499062pt;}
.h8{height:49.581562pt;}
.h5{height:50.954062pt;}
.h9{height:54.187500pt;}
.h11{height:54.927899pt;}
.hb{height:55.631875pt;}
.ha{height:60.961875pt;}
.h4{height:64.875937pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.w14{width:84.720000pt;}
.we{width:102.026667pt;}
.w9{width:105.120000pt;}
.w13{width:112.640000pt;}
.wc{width:119.360000pt;}
.wa{width:122.080000pt;}
.wb{width:125.066667pt;}
.w11{width:128.400000pt;}
.w4{width:134.506667pt;}
.w8{width:143.226667pt;}
.wd{width:143.360000pt;}
.w7{width:145.120000pt;}
.w6{width:153.466667pt;}
.w12{width:166.106667pt;}
.w3{width:170.640000pt;}
.w10{width:177.226667pt;}
.wf{width:179.360000pt;}
.w5{width:185.760000pt;}
.w2{width:793.919988pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x11{left:3.520000pt;}
.x5{left:6.880000pt;}
.x1{left:60.480000pt;}
.x16{left:98.879988pt;}
.x4{left:150.826667pt;}
.x2{left:180.266655pt;}
.xd{left:186.826667pt;}
.x8{left:215.226667pt;}
.x12{left:239.066667pt;}
.xe{left:306.826667pt;}
.x6{left:322.186667pt;}
.x9{left:361.066667pt;}
.x13{left:368.106667pt;}
.xc{left:396.986655pt;}
.xf{left:450.826667pt;}
.x7{left:457.413333pt;}
.xa{left:505.013333pt;}
.x14{left:534.853333pt;}
.x10{left:553.493333pt;}
.xb{left:610.773333pt;}
.x15{left:648.133333pt;}
.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; }
  