
    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_bbb397c392d00d53ae7ba55e.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_19172aecf45ff868e9aeeec2.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_8d687395f54abb200b668ddf.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_633d45d7aa71308e181d6559.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_6b15ea6dfaaef12a50348a3d.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.910645;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_60261f60689244a4c96d858d.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;}
.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);}
.v8{vertical-align:-73.380000px;}
.v2{vertical-align:-68.400000px;}
.v7{vertical-align:-66.240000px;}
.v5{vertical-align:-64.800000px;}
.v1{vertical-align:-62.640000px;}
.v6{vertical-align:-61.200000px;}
.ve{vertical-align:-45.024000px;}
.v12{vertical-align:-33.000000px;}
.v4{vertical-align:-23.760000px;}
.vb{vertical-align:-18.012000px;}
.v14{vertical-align:-14.406000px;}
.v11{vertical-align:-9.000000px;}
.v0{vertical-align:0.000000px;}
.vd{vertical-align:4.502400px;}
.vc{vertical-align:9.006000px;}
.va{vertical-align:22.512000px;}
.v13{vertical-align:24.000000px;}
.v15{vertical-align:25.206000px;}
.v3{vertical-align:30.240000px;}
.vf{vertical-align:40.524000px;}
.v10{vertical-align:49.530000px;}
.v9{vertical-align:63.060000px;}
.ls26{letter-spacing:-0.828000px;}
.lsc{letter-spacing:-0.540000px;}
.ls9{letter-spacing:-0.360000px;}
.lsb{letter-spacing:-0.220800px;}
.ls1d{letter-spacing:-0.108000px;}
.lsa{letter-spacing:-0.027360px;}
.ls15{letter-spacing:-0.018000px;}
.ls8{letter-spacing:0.000000px;}
.ls14{letter-spacing:0.018000px;}
.ls1b{letter-spacing:0.108000px;}
.ls13{letter-spacing:0.126000px;}
.ls1{letter-spacing:0.180000px;}
.ls1a{letter-spacing:0.234000px;}
.lsf{letter-spacing:0.262200px;}
.ls2{letter-spacing:0.360000px;}
.ls25{letter-spacing:0.702000px;}
.ls12{letter-spacing:0.738000px;}
.ls10{letter-spacing:0.900000px;}
.ls23{letter-spacing:2.988000px;}
.ls4{letter-spacing:25.380000px;}
.ls1f{letter-spacing:30.348000px;}
.ls5{letter-spacing:52.560000px;}
.ls7{letter-spacing:55.620000px;}
.ls3{letter-spacing:66.420000px;}
.ls0{letter-spacing:154.980000px;}
.ls22{letter-spacing:468.438000px;}
.ls21{letter-spacing:469.158000px;}
.ls11{letter-spacing:905.100000px;}
.ls16{letter-spacing:984.900000px;}
.ls17{letter-spacing:998.700000px;}
.lsd{letter-spacing:1059.900000px;}
.ls18{letter-spacing:1060.500000px;}
.ls1c{letter-spacing:1086.300000px;}
.lse{letter-spacing:1361.640000px;}
.ls6{letter-spacing:1367.340000px;}
.ls19{letter-spacing:1384.740000px;}
.ls1e{letter-spacing:1410.900000px;}
.ls20{letter-spacing:1985.700000px;}
.ls24{letter-spacing:2039.700000px;}
.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;}
}
.ws1{word-spacing:-19.980000px;}
.ws0{word-spacing:-18.000000px;}
.wsc{word-spacing:-16.822200px;}
.ws6{word-spacing:-16.560000px;}
.ws4{word-spacing:-14.580000px;}
.ws5{word-spacing:-14.220000px;}
.ws14{word-spacing:-14.202000px;}
.ws2{word-spacing:-14.192640px;}
.ws3{word-spacing:-13.999200px;}
.wsd{word-spacing:-13.860000px;}
.ws11{word-spacing:-13.734000px;}
.wse{word-spacing:-13.626000px;}
.ws12{word-spacing:-13.608000px;}
.wsf{word-spacing:-13.518000px;}
.ws9{word-spacing:-13.500000px;}
.ws10{word-spacing:-13.482000px;}
.ws13{word-spacing:-13.392000px;}
.wsa{word-spacing:-13.140000px;}
.ws16{word-spacing:-12.672000px;}
.ws7{word-spacing:-10.440000px;}
.ws8{word-spacing:-9.000000px;}
.wsb{word-spacing:0.000000px;}
.ws15{word-spacing:346.620000px;}
._1{margin-left:-3.225600px;}
._0{margin-left:-1.368000px;}
._2{width:1.524240px;}
._4{width:2.982960px;}
._7{width:4.068720px;}
._8{width:5.633760px;}
._9{width:6.702240px;}
._d{width:7.908000px;}
._f{width:9.234000px;}
._c{width:10.368000px;}
._b{width:11.502000px;}
._e{width:14.796000px;}
._5{width:16.632000px;}
._6{width:17.688000px;}
._10{width:19.019280px;}
._15{width:20.999760px;}
._14{width:22.032000px;}
._a{width:25.776000px;}
._12{width:79.553520px;}
._11{width:381.119760px;}
._1b{width:419.796000px;}
._1c{width:467.916000px;}
._13{width:1157.688000px;}
._19{width:1508.015280px;}
._3{width:1574.460000px;}
._1f{width:1656.623760px;}
._18{width:1770.365760px;}
._1a{width:1899.995760px;}
._1d{width:1953.467280px;}
._16{width:2012.885280px;}
._20{width:2199.011760px;}
._1e{width:2264.879760px;}
._17{width:2275.320000px;}
.fc6{color:transparent;}
.fc4{color:rgb(32,36,41);}
.fc3{color:rgb(255,0,0);}
.fc2{color:rgb(0,112,186);}
.fc5{color:rgb(0,0,255);}
.fc1{color:rgb(23,110,184);}
.fc0{color:rgb(0,0,0);}
.fs9{font-size:36.000000px;}
.fsb{font-size:38.880000px;}
.fs7{font-size:41.760000px;}
.fs4{font-size:48.240000px;}
.fs8{font-size:54.000000px;}
.fs5{font-size:56.880000px;}
.fs2{font-size:59.760000px;}
.fsa{font-size:63.360000px;}
.fs0{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.fs3{font-size:81.360000px;}
.fs6{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.y68{bottom:2.850000px;}
.y4a{bottom:3.000000px;}
.y4c{bottom:3.150000px;}
.y4f{bottom:3.300000px;}
.y51{bottom:3.450000px;}
.y5f{bottom:16.200000px;}
.y66{bottom:18.450000px;}
.yb9{bottom:22.950000px;}
.y95{bottom:24.075000px;}
.yd3{bottom:28.575000px;}
.y14e{bottom:29.700000px;}
.y11a{bottom:35.340000px;}
.y7f{bottom:50.025000px;}
.y3c{bottom:54.060000px;}
.y2{bottom:57.960000px;}
.yfd{bottom:59.310000px;}
.y94{bottom:59.670000px;}
.y5e{bottom:65.100000px;}
.yd2{bottom:68.850000px;}
.y119{bottom:70.230000px;}
.yb8{bottom:71.445000px;}
.yfc{bottom:75.000000px;}
.y93{bottom:75.360000px;}
.y1{bottom:76.890000px;}
.y5d{bottom:80.790000px;}
.y118{bottom:85.740000px;}
.yb7{bottom:87.285000px;}
.y14d{bottom:87.657600px;}
.yfb{bottom:90.480000px;}
.y92{bottom:90.840000px;}
.y5c{bottom:96.090000px;}
.y39{bottom:99.570000px;}
.yd1{bottom:99.660000px;}
.y117{bottom:101.220000px;}
.yb6{bottom:102.945000px;}
.y14c{bottom:103.316100px;}
.yfa{bottom:106.140000px;}
.y91{bottom:106.500000px;}
.y7e{bottom:109.350000px;}
.y5b{bottom:111.570000px;}
.yd0{bottom:112.440000px;}
.y38{bottom:115.230000px;}
.y116{bottom:116.700000px;}
.yb5{bottom:118.065000px;}
.y14b{bottom:118.796100px;}
.yf9{bottom:121.620000px;}
.y90{bottom:121.800000px;}
.y7d{bottom:125.010000px;}
.y5a{bottom:127.230000px;}
.y37{bottom:130.710000px;}
.y115{bottom:132.360000px;}
.yb4{bottom:133.725000px;}
.y149{bottom:134.456100px;}
.yf8{bottom:137.100000px;}
.y8f{bottom:137.280000px;}
.y7c{bottom:140.490000px;}
.y36{bottom:146.370000px;}
.y114{bottom:148.020000px;}
.yb3{bottom:149.745000px;}
.y148{bottom:150.116100px;}
.yf7{bottom:152.580000px;}
.y8e{bottom:152.940000px;}
.y7b{bottom:155.970000px;}
.y14a{bottom:156.056100px;}
.y59{bottom:159.450000px;}
.y35{bottom:162.030000px;}
.y113{bottom:163.500000px;}
.yb2{bottom:165.225000px;}
.y147{bottom:165.596100px;}
.yf6{bottom:168.240000px;}
.y8d{bottom:168.960000px;}
.y7a{bottom:171.450000px;}
.y58{bottom:175.200000px;}
.y112{bottom:175.920000px;}
.y34{bottom:177.510000px;}
.yb1{bottom:180.705000px;}
.y8c{bottom:181.200000px;}
.y146{bottom:181.256100px;}
.yf5{bottom:183.720000px;}
.y79{bottom:186.930000px;}
.y33{bottom:193.170000px;}
.yb0{bottom:196.185000px;}
.y144{bottom:196.916100px;}
.yf4{bottom:199.200000px;}
.y78{bottom:202.590000px;}
.y13f{bottom:207.693600px;}
.y32{bottom:208.830000px;}
.yaf{bottom:211.845000px;}
.y142{bottom:212.388600px;}
.y57{bottom:213.750000px;}
.yf3{bottom:214.860000px;}
.y77{bottom:218.250000px;}
.y145{bottom:218.666100px;}
.y143{bottom:222.519600px;}
.y31{bottom:224.310000px;}
.yae{bottom:227.325000px;}
.y141{bottom:228.048600px;}
.yf2{bottom:230.340000px;}
.y76{bottom:231.150000px;}
.y30{bottom:239.790000px;}
.y13c{bottom:241.173600px;}
.yad{bottom:242.805000px;}
.y13e{bottom:243.708600px;}
.y140{bottom:244.833600px;}
.yf1{bottom:246.000000px;}
.y56{bottom:252.450000px;}
.y2f{bottom:255.450000px;}
.yac{bottom:258.285000px;}
.y13b{bottom:259.188000px;}
.y13d{bottom:260.313600px;}
.yf0{bottom:261.480000px;}
.y2e{bottom:270.930000px;}
.yab{bottom:273.945000px;}
.y13a{bottom:274.846500px;}
.yef{bottom:276.960000px;}
.y2d{bottom:286.410000px;}
.yaa{bottom:289.425000px;}
.y139{bottom:290.326500px;}
.y55{bottom:291.000000px;}
.yee{bottom:292.440000px;}
.y2c{bottom:301.890000px;}
.ya9{bottom:304.905000px;}
.y136{bottom:305.985000px;}
.yed{bottom:308.100000px;}
.y2b{bottom:317.370000px;}
.y138{bottom:318.373500px;}
.ya8{bottom:320.205000px;}
.y135{bottom:321.645000px;}
.yec{bottom:323.580000px;}
.y137{bottom:324.001500px;}
.y54{bottom:329.400000px;}
.y2a{bottom:333.030000px;}
.ya7{bottom:335.865000px;}
.y134{bottom:336.765000px;}
.y75{bottom:338.100000px;}
.yeb{bottom:339.105000px;}
.y74{bottom:343.800000px;}
.y29{bottom:348.555000px;}
.ya6{bottom:351.750000px;}
.y133{bottom:352.470000px;}
.yea{bottom:354.765000px;}
.y28{bottom:364.035000px;}
.ya5{bottom:367.410000px;}
.y53{bottom:367.950000px;}
.y132{bottom:368.310000px;}
.ye9{bottom:370.245000px;}
.y27{bottom:379.515000px;}
.ya4{bottom:383.070000px;}
.y131{bottom:383.970000px;}
.ye8{bottom:385.545000px;}
.y26{bottom:395.175000px;}
.ya3{bottom:398.550000px;}
.y130{bottom:399.450000px;}
.ye7{bottom:401.565000px;}
.y52{bottom:406.500000px;}
.y25{bottom:410.655000px;}
.ya2{bottom:410.970000px;}
.y12f{bottom:414.930000px;}
.ye6{bottom:416.685000px;}
.y24{bottom:426.135000px;}
.y12e{bottom:430.590000px;}
.y50{bottom:445.050000px;}
.y12d{bottom:445.710000px;}
.ye5{bottom:448.005000px;}
.ycf{bottom:448.890000px;}
.y23{bottom:457.095000px;}
.ye4{bottom:460.605000px;}
.yce{bottom:464.370000px;}
.y73{bottom:469.350000px;}
.y111{bottom:471.720000px;}
.y12c{bottom:477.030000px;}
.ycd{bottom:479.850000px;}
.y4e{bottom:483.750000px;}
.y110{bottom:487.200000px;}
.y22{bottom:488.055000px;}
.y12b{bottom:492.870000px;}
.ycc{bottom:495.510000px;}
.y10f{bottom:502.860000px;}
.y12a{bottom:505.290000px;}
.y21{bottom:506.235000px;}
.ycb{bottom:510.630000px;}
.y10e{bottom:518.340000px;}
.y4d{bottom:522.300000px;}
.yca{bottom:526.290000px;}
.y10d{bottom:534.000000px;}
.y20{bottom:535.215000px;}
.y72{bottom:541.350000px;}
.yc9{bottom:541.950000px;}
.y71{bottom:543.600000px;}
.y10c{bottom:549.300000px;}
.y1f{bottom:553.395000px;}
.yc8{bottom:557.790000px;}
.y4b{bottom:560.850000px;}
.y10b{bottom:564.780000px;}
.y1e{bottom:569.055000px;}
.yc7{bottom:573.270000px;}
.y10a{bottom:580.620000px;}
.yc6{bottom:588.750000px;}
.y1d{bottom:591.555000px;}
.y8b{bottom:594.000000px;}
.y109{bottom:596.280000px;}
.y49{bottom:599.250000px;}
.yc5{bottom:604.410000px;}
.y1c{bottom:607.065000px;}
.y8a{bottom:609.510000px;}
.y108{bottom:611.790000px;}
.yc4{bottom:619.920000px;}
.y1b{bottom:622.545000px;}
.y89{bottom:625.170000px;}
.y107{bottom:627.270000px;}
.yc3{bottom:635.580000px;}
.y1a{bottom:638.205000px;}
.y88{bottom:640.650000px;}
.y70{bottom:647.100000px;}
.y87{bottom:656.130000px;}
.y48{bottom:656.730000px;}
.y106{bottom:658.050000px;}
.y19{bottom:660.525000px;}
.yc2{bottom:666.540000px;}
.y86{bottom:671.790000px;}
.y47{bottom:672.210000px;}
.y18{bottom:676.185000px;}
.yc1{bottom:682.200000px;}
.y46{bottom:687.870000px;}
.y105{bottom:689.730000px;}
.yc0{bottom:697.680000px;}
.y17{bottom:698.325000px;}
.y104{bottom:701.970000px;}
.y45{bottom:703.350000px;}
.y85{bottom:710.310000px;}
.y6e{bottom:712.350000px;}
.ybf{bottom:713.160000px;}
.y6f{bottom:713.400000px;}
.y44{bottom:718.830000px;}
.y16{bottom:725.145000px;}
.ybe{bottom:728.820000px;}
.y84{bottom:733.530000px;}
.y43{bottom:734.310000px;}
.y15{bottom:740.625000px;}
.ybd{bottom:744.480000px;}
.y83{bottom:749.550000px;}
.y42{bottom:749.970000px;}
.y14{bottom:756.105000px;}
.y82{bottom:765.210000px;}
.y41{bottom:765.450000px;}
.ybc{bottom:775.620000px;}
.y81{bottom:780.690000px;}
.y40{bottom:780.750000px;}
.ybb{bottom:787.860000px;}
.y13{bottom:790.845000px;}
.y80{bottom:793.110000px;}
.y3f{bottom:796.770000px;}
.y3e{bottom:809.010000px;}
.y12{bottom:812.265000px;}
.y6c{bottom:812.850000px;}
.y6d{bottom:813.000000px;}
.y11{bottom:841.065000px;}
.ye3{bottom:847.305000px;}
.ye2{bottom:863.145000px;}
.y10{bottom:876.030000px;}
.y6b{bottom:878.100000px;}
.ye1{bottom:878.670000px;}
.ye0{bottom:894.330000px;}
.y129{bottom:894.390000px;}
.ydf{bottom:909.810000px;}
.y128{bottom:910.050000px;}
.yf{bottom:915.270000px;}
.yde{bottom:925.470000px;}
.y127{bottom:925.530000px;}
.ye{bottom:939.390000px;}
.ydd{bottom:940.590000px;}
.y126{bottom:941.010000px;}
.ydc{bottom:956.250000px;}
.y125{bottom:956.490000px;}
.y124{bottom:972.150000px;}
.ya1{bottom:972.270000px;}
.y69{bottom:980.100000px;}
.yd{bottom:981.690000px;}
.y123{bottom:987.630000px;}
.ya0{bottom:987.750000px;}
.y122{bottom:1003.110000px;}
.ydb{bottom:1003.230000px;}
.y9f{bottom:1003.410000px;}
.y65{bottom:1010.400000px;}
.yc{bottom:1016.070000px;}
.y121{bottom:1018.590000px;}
.yda{bottom:1018.710000px;}
.y9e{bottom:1018.890000px;}
.y67{bottom:1025.100000px;}
.y6a{bottom:1031.850000px;}
.y9{bottom:1034.070000px;}
.y120{bottom:1034.250000px;}
.y9d{bottom:1034.370000px;}
.yb{bottom:1039.290000px;}
.yd9{bottom:1049.670000px;}
.y11f{bottom:1049.730000px;}
.y9c{bottom:1049.850000px;}
.y8{bottom:1057.290000px;}
.yd8{bottom:1065.150000px;}
.y11e{bottom:1065.210000px;}
.y9b{bottom:1065.330000px;}
.y103{bottom:1065.420000px;}
.ya{bottom:1071.330000px;}
.yd7{bottom:1080.810000px;}
.y11d{bottom:1080.870000px;}
.y102{bottom:1080.900000px;}
.y9a{bottom:1080.990000px;}
.y7{bottom:1086.630000px;}
.y11c{bottom:1095.990000px;}
.y101{bottom:1096.380000px;}
.y99{bottom:1096.470000px;}
.y64{bottom:1096.530000px;}
.yd6{bottom:1096.650000px;}
.y6{bottom:1105.710000px;}
.y11b{bottom:1111.650000px;}
.y63{bottom:1112.010000px;}
.y100{bottom:1112.040000px;}
.y98{bottom:1112.130000px;}
.y5{bottom:1122.990000px;}
.y97{bottom:1127.250000px;}
.yff{bottom:1127.520000px;}
.y62{bottom:1127.670000px;}
.yd5{bottom:1127.790000px;}
.y4{bottom:1140.300000px;}
.yfe{bottom:1142.850000px;}
.y96{bottom:1142.940000px;}
.y61{bottom:1143.180000px;}
.yd4{bottom:1143.300000px;}
.y3{bottom:1158.300000px;}
.yba{bottom:1158.510000px;}
.y60{bottom:1158.660000px;}
.y3d{bottom:1158.960000px;}
.y3b{bottom:1175.160000px;}
.y3a{bottom:1193.700000px;}
.hc{height:35.314453px;}
.h14{height:37.650000px;}
.h15{height:37.800000px;}
.h16{height:37.815000px;}
.h13{height:37.830000px;}
.hf{height:38.158594px;}
.h10{height:47.344922px;}
.h6{height:48.616875px;}
.hb{height:52.971680px;}
.h11{height:52.998047px;}
.hd{height:54.421875px;}
.h20{height:55.503491px;}
.h7{height:55.796836px;}
.h12{height:55.824609px;}
.h22{height:57.500447px;}
.h8{height:58.621992px;}
.h3{height:60.226875px;}
.h21{height:62.004047px;}
.he{height:62.153438px;}
.h1{height:65.010937px;}
.h4{height:66.757500px;}
.ha{height:72.326250px;}
.h2{height:72.562500px;}
.h1f{height:75.510047px;}
.h25{height:78.204047px;}
.h5{height:81.995625px;}
.h1d{height:82.676953px;}
.h9{height:84.898125px;}
.h17{height:97.020000px;}
.h23{height:102.528047px;}
.h24{height:115.998047px;}
.h1e{height:116.058047px;}
.h19{height:165.000000px;}
.h18{height:166.350000px;}
.h1a{height:177.000000px;}
.h1b{height:237.300000px;}
.h1c{height:237.450000px;}
.h0{height:1263.000000px;}
.w4{width:94.485000px;}
.w8{width:94.500000px;}
.w3{width:187.200000px;}
.w2{width:231.750000px;}
.w5{width:246.150000px;}
.w6{width:246.300000px;}
.w1{width:271.935000px;}
.w7{width:274.050000px;}
.w0{width:894.000000px;}
.x0{left:0.000000px;}
.x3a{left:8.145000px;}
.x29{left:14.145000px;}
.x31{left:17.595000px;}
.x1c{left:19.200000px;}
.x17{left:21.225000px;}
.x26{left:22.950000px;}
.x3c{left:25.395000px;}
.x1e{left:27.525000px;}
.x2{left:29.970000px;}
.x24{left:43.500000px;}
.xc{left:46.920000px;}
.x4d{left:47.940000px;}
.x8{left:50.520000px;}
.x9{left:57.720000px;}
.x1d{left:60.150000px;}
.x21{left:62.925000px;}
.x13{left:66.300000px;}
.x15{left:67.725000px;}
.x25{left:69.675000px;}
.x11{left:74.625000px;}
.x32{left:76.845000px;}
.x22{left:78.975000px;}
.x23{left:82.050000px;}
.x18{left:83.250000px;}
.x1b{left:84.525000px;}
.x1a{left:87.600000px;}
.x3e{left:89.100000px;}
.x19{left:90.525000px;}
.x37{left:92.100000px;}
.x1f{left:93.150000px;}
.x16{left:96.900000px;}
.x53{left:101.454000px;}
.x20{left:104.775000px;}
.x10{left:107.325000px;}
.x2e{left:109.500000px;}
.x28{left:145.305000px;}
.x35{left:146.430000px;}
.x39{left:147.555000px;}
.x2c{left:148.800000px;}
.x30{left:164.850000px;}
.xa{left:199.920000px;}
.x3d{left:230.100000px;}
.x36{left:234.600000px;}
.x2a{left:236.850000px;}
.x2b{left:240.150000px;}
.x33{left:241.350000px;}
.x5{left:244.170000px;}
.x3f{left:245.850000px;}
.x3{left:270.300000px;}
.x45{left:279.915000px;}
.x4f{left:285.240000px;}
.x4{left:290.610000px;}
.x42{left:302.400000px;}
.x48{left:325.155000px;}
.xe{left:365.430000px;}
.x12{left:379.650000px;}
.x52{left:403.854000px;}
.xb{left:413.610000px;}
.x49{left:415.200000px;}
.x40{left:416.436000px;}
.x50{left:417.450000px;}
.x43{left:418.860000px;}
.x62{left:421.950000px;}
.x46{left:423.000000px;}
.x27{left:424.650000px;}
.x4b{left:433.200000px;}
.x1{left:440.700000px;}
.xf{left:449.340000px;}
.x6{left:478.965000px;}
.x2d{left:481.200000px;}
.x2f{left:486.900000px;}
.x7{left:506.580000px;}
.x14{left:611.700000px;}
.x4e{left:616.890000px;}
.xd{left:639.480000px;}
.x4c{left:640.635000px;}
.x4a{left:652.080000px;}
.x51{left:659.664000px;}
.x44{left:669.465000px;}
.x41{left:709.050000px;}
.x34{left:741.450000px;}
.x3b{left:747.000000px;}
.x38{left:752.550000px;}
.x47{left:826.485000px;}
.x54{left:986.364000px;}
.x5b{left:993.357000px;}
.x56{left:997.345500px;}
.x61{left:1005.972000px;}
.x5a{left:1037.232000px;}
.x57{left:1041.580500px;}
.x5e{left:1048.587000px;}
.x55{left:1050.954000px;}
.x5c{left:1103.112000px;}
.x5d{left:1135.602000px;}
.x5f{left:1145.472000px;}
.x58{left:1152.012000px;}
.x59{left:1196.607000px;}
.x60{left:1203.612000px;}
@media print{
.v8{vertical-align:-65.226667pt;}
.v2{vertical-align:-60.800000pt;}
.v7{vertical-align:-58.880000pt;}
.v5{vertical-align:-57.600000pt;}
.v1{vertical-align:-55.680000pt;}
.v6{vertical-align:-54.400000pt;}
.ve{vertical-align:-40.021333pt;}
.v12{vertical-align:-29.333333pt;}
.v4{vertical-align:-21.120000pt;}
.vb{vertical-align:-16.010667pt;}
.v14{vertical-align:-12.805333pt;}
.v11{vertical-align:-8.000000pt;}
.v0{vertical-align:0.000000pt;}
.vd{vertical-align:4.002133pt;}
.vc{vertical-align:8.005333pt;}
.va{vertical-align:20.010667pt;}
.v13{vertical-align:21.333333pt;}
.v15{vertical-align:22.405333pt;}
.v3{vertical-align:26.880000pt;}
.vf{vertical-align:36.021333pt;}
.v10{vertical-align:44.026667pt;}
.v9{vertical-align:56.053333pt;}
.ls26{letter-spacing:-0.736000pt;}
.lsc{letter-spacing:-0.480000pt;}
.ls9{letter-spacing:-0.320000pt;}
.lsb{letter-spacing:-0.196267pt;}
.ls1d{letter-spacing:-0.096000pt;}
.lsa{letter-spacing:-0.024320pt;}
.ls15{letter-spacing:-0.016000pt;}
.ls8{letter-spacing:0.000000pt;}
.ls14{letter-spacing:0.016000pt;}
.ls1b{letter-spacing:0.096000pt;}
.ls13{letter-spacing:0.112000pt;}
.ls1{letter-spacing:0.160000pt;}
.ls1a{letter-spacing:0.208000pt;}
.lsf{letter-spacing:0.233067pt;}
.ls2{letter-spacing:0.320000pt;}
.ls25{letter-spacing:0.624000pt;}
.ls12{letter-spacing:0.656000pt;}
.ls10{letter-spacing:0.800000pt;}
.ls23{letter-spacing:2.656000pt;}
.ls4{letter-spacing:22.560000pt;}
.ls1f{letter-spacing:26.976000pt;}
.ls5{letter-spacing:46.720000pt;}
.ls7{letter-spacing:49.440000pt;}
.ls3{letter-spacing:59.040000pt;}
.ls0{letter-spacing:137.760000pt;}
.ls22{letter-spacing:416.389333pt;}
.ls21{letter-spacing:417.029333pt;}
.ls11{letter-spacing:804.533333pt;}
.ls16{letter-spacing:875.466667pt;}
.ls17{letter-spacing:887.733333pt;}
.lsd{letter-spacing:942.133333pt;}
.ls18{letter-spacing:942.666667pt;}
.ls1c{letter-spacing:965.600000pt;}
.lse{letter-spacing:1210.346667pt;}
.ls6{letter-spacing:1215.413333pt;}
.ls19{letter-spacing:1230.880000pt;}
.ls1e{letter-spacing:1254.133333pt;}
.ls20{letter-spacing:1765.066667pt;}
.ls24{letter-spacing:1813.066667pt;}
.ws1{word-spacing:-17.760000pt;}
.ws0{word-spacing:-16.000000pt;}
.wsc{word-spacing:-14.953067pt;}
.ws6{word-spacing:-14.720000pt;}
.ws4{word-spacing:-12.960000pt;}
.ws5{word-spacing:-12.640000pt;}
.ws14{word-spacing:-12.624000pt;}
.ws2{word-spacing:-12.615680pt;}
.ws3{word-spacing:-12.443733pt;}
.wsd{word-spacing:-12.320000pt;}
.ws11{word-spacing:-12.208000pt;}
.wse{word-spacing:-12.112000pt;}
.ws12{word-spacing:-12.096000pt;}
.wsf{word-spacing:-12.016000pt;}
.ws9{word-spacing:-12.000000pt;}
.ws10{word-spacing:-11.984000pt;}
.ws13{word-spacing:-11.904000pt;}
.wsa{word-spacing:-11.680000pt;}
.ws16{word-spacing:-11.264000pt;}
.ws7{word-spacing:-9.280000pt;}
.ws8{word-spacing:-8.000000pt;}
.wsb{word-spacing:0.000000pt;}
.ws15{word-spacing:308.106667pt;}
._1{margin-left:-2.867200pt;}
._0{margin-left:-1.216000pt;}
._2{width:1.354880pt;}
._4{width:2.651520pt;}
._7{width:3.616640pt;}
._8{width:5.007787pt;}
._9{width:5.957547pt;}
._d{width:7.029333pt;}
._f{width:8.208000pt;}
._c{width:9.216000pt;}
._b{width:10.224000pt;}
._e{width:13.152000pt;}
._5{width:14.784000pt;}
._6{width:15.722667pt;}
._10{width:16.906027pt;}
._15{width:18.666453pt;}
._14{width:19.584000pt;}
._a{width:22.912000pt;}
._12{width:70.714240pt;}
._11{width:338.773120pt;}
._1b{width:373.152000pt;}
._1c{width:415.925333pt;}
._13{width:1029.056000pt;}
._19{width:1340.458027pt;}
._3{width:1399.520000pt;}
._1f{width:1472.554453pt;}
._18{width:1573.658453pt;}
._1a{width:1688.885120pt;}
._1d{width:1736.415360pt;}
._16{width:1789.231360pt;}
._20{width:1954.677120pt;}
._1e{width:2013.226453pt;}
._17{width:2022.506667pt;}
.fs9{font-size:32.000000pt;}
.fsb{font-size:34.560000pt;}
.fs7{font-size:37.120000pt;}
.fs4{font-size:42.880000pt;}
.fs8{font-size:48.000000pt;}
.fs5{font-size:50.560000pt;}
.fs2{font-size:53.120000pt;}
.fsa{font-size:56.320000pt;}
.fs0{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.fs3{font-size:72.320000pt;}
.fs6{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.y68{bottom:2.533333pt;}
.y4a{bottom:2.666667pt;}
.y4c{bottom:2.800000pt;}
.y4f{bottom:2.933333pt;}
.y51{bottom:3.066667pt;}
.y5f{bottom:14.400000pt;}
.y66{bottom:16.400000pt;}
.yb9{bottom:20.400000pt;}
.y95{bottom:21.400000pt;}
.yd3{bottom:25.400000pt;}
.y14e{bottom:26.400000pt;}
.y11a{bottom:31.413333pt;}
.y7f{bottom:44.466667pt;}
.y3c{bottom:48.053333pt;}
.y2{bottom:51.520000pt;}
.yfd{bottom:52.720000pt;}
.y94{bottom:53.040000pt;}
.y5e{bottom:57.866667pt;}
.yd2{bottom:61.200000pt;}
.y119{bottom:62.426667pt;}
.yb8{bottom:63.506667pt;}
.yfc{bottom:66.666667pt;}
.y93{bottom:66.986667pt;}
.y1{bottom:68.346667pt;}
.y5d{bottom:71.813333pt;}
.y118{bottom:76.213333pt;}
.yb7{bottom:77.586667pt;}
.y14d{bottom:77.917867pt;}
.yfb{bottom:80.426667pt;}
.y92{bottom:80.746667pt;}
.y5c{bottom:85.413333pt;}
.y39{bottom:88.506667pt;}
.yd1{bottom:88.586667pt;}
.y117{bottom:89.973333pt;}
.yb6{bottom:91.506667pt;}
.y14c{bottom:91.836533pt;}
.yfa{bottom:94.346667pt;}
.y91{bottom:94.666667pt;}
.y7e{bottom:97.200000pt;}
.y5b{bottom:99.173333pt;}
.yd0{bottom:99.946667pt;}
.y38{bottom:102.426667pt;}
.y116{bottom:103.733333pt;}
.yb5{bottom:104.946667pt;}
.y14b{bottom:105.596533pt;}
.yf9{bottom:108.106667pt;}
.y90{bottom:108.266667pt;}
.y7d{bottom:111.120000pt;}
.y5a{bottom:113.093333pt;}
.y37{bottom:116.186667pt;}
.y115{bottom:117.653333pt;}
.yb4{bottom:118.866667pt;}
.y149{bottom:119.516533pt;}
.yf8{bottom:121.866667pt;}
.y8f{bottom:122.026667pt;}
.y7c{bottom:124.880000pt;}
.y36{bottom:130.106667pt;}
.y114{bottom:131.573333pt;}
.yb3{bottom:133.106667pt;}
.y148{bottom:133.436533pt;}
.yf7{bottom:135.626667pt;}
.y8e{bottom:135.946667pt;}
.y7b{bottom:138.640000pt;}
.y14a{bottom:138.716533pt;}
.y59{bottom:141.733333pt;}
.y35{bottom:144.026667pt;}
.y113{bottom:145.333333pt;}
.yb2{bottom:146.866667pt;}
.y147{bottom:147.196533pt;}
.yf6{bottom:149.546667pt;}
.y8d{bottom:150.186667pt;}
.y7a{bottom:152.400000pt;}
.y58{bottom:155.733333pt;}
.y112{bottom:156.373333pt;}
.y34{bottom:157.786667pt;}
.yb1{bottom:160.626667pt;}
.y8c{bottom:161.066667pt;}
.y146{bottom:161.116533pt;}
.yf5{bottom:163.306667pt;}
.y79{bottom:166.160000pt;}
.y33{bottom:171.706667pt;}
.yb0{bottom:174.386667pt;}
.y144{bottom:175.036533pt;}
.yf4{bottom:177.066667pt;}
.y78{bottom:180.080000pt;}
.y13f{bottom:184.616533pt;}
.y32{bottom:185.626667pt;}
.yaf{bottom:188.306667pt;}
.y142{bottom:188.789867pt;}
.y57{bottom:190.000000pt;}
.yf3{bottom:190.986667pt;}
.y77{bottom:194.000000pt;}
.y145{bottom:194.369867pt;}
.y143{bottom:197.795200pt;}
.y31{bottom:199.386667pt;}
.yae{bottom:202.066667pt;}
.y141{bottom:202.709867pt;}
.yf2{bottom:204.746667pt;}
.y76{bottom:205.466667pt;}
.y30{bottom:213.146667pt;}
.y13c{bottom:214.376533pt;}
.yad{bottom:215.826667pt;}
.y13e{bottom:216.629867pt;}
.y140{bottom:217.629867pt;}
.yf1{bottom:218.666667pt;}
.y56{bottom:224.400000pt;}
.y2f{bottom:227.066667pt;}
.yac{bottom:229.586667pt;}
.y13b{bottom:230.389333pt;}
.y13d{bottom:231.389867pt;}
.yf0{bottom:232.426667pt;}
.y2e{bottom:240.826667pt;}
.yab{bottom:243.506667pt;}
.y13a{bottom:244.308000pt;}
.yef{bottom:246.186667pt;}
.y2d{bottom:254.586667pt;}
.yaa{bottom:257.266667pt;}
.y139{bottom:258.068000pt;}
.y55{bottom:258.666667pt;}
.yee{bottom:259.946667pt;}
.y2c{bottom:268.346667pt;}
.ya9{bottom:271.026667pt;}
.y136{bottom:271.986667pt;}
.yed{bottom:273.866667pt;}
.y2b{bottom:282.106667pt;}
.y138{bottom:282.998667pt;}
.ya8{bottom:284.626667pt;}
.y135{bottom:285.906667pt;}
.yec{bottom:287.626667pt;}
.y137{bottom:288.001333pt;}
.y54{bottom:292.800000pt;}
.y2a{bottom:296.026667pt;}
.ya7{bottom:298.546667pt;}
.y134{bottom:299.346667pt;}
.y75{bottom:300.533333pt;}
.yeb{bottom:301.426667pt;}
.y74{bottom:305.600000pt;}
.y29{bottom:309.826667pt;}
.ya6{bottom:312.666667pt;}
.y133{bottom:313.306667pt;}
.yea{bottom:315.346667pt;}
.y28{bottom:323.586667pt;}
.ya5{bottom:326.586667pt;}
.y53{bottom:327.066667pt;}
.y132{bottom:327.386667pt;}
.ye9{bottom:329.106667pt;}
.y27{bottom:337.346667pt;}
.ya4{bottom:340.506667pt;}
.y131{bottom:341.306667pt;}
.ye8{bottom:342.706667pt;}
.y26{bottom:351.266667pt;}
.ya3{bottom:354.266667pt;}
.y130{bottom:355.066667pt;}
.ye7{bottom:356.946667pt;}
.y52{bottom:361.333333pt;}
.y25{bottom:365.026667pt;}
.ya2{bottom:365.306667pt;}
.y12f{bottom:368.826667pt;}
.ye6{bottom:370.386667pt;}
.y24{bottom:378.786667pt;}
.y12e{bottom:382.746667pt;}
.y50{bottom:395.600000pt;}
.y12d{bottom:396.186667pt;}
.ye5{bottom:398.226667pt;}
.ycf{bottom:399.013333pt;}
.y23{bottom:406.306667pt;}
.ye4{bottom:409.426667pt;}
.yce{bottom:412.773333pt;}
.y73{bottom:417.200000pt;}
.y111{bottom:419.306667pt;}
.y12c{bottom:424.026667pt;}
.ycd{bottom:426.533333pt;}
.y4e{bottom:430.000000pt;}
.y110{bottom:433.066667pt;}
.y22{bottom:433.826667pt;}
.y12b{bottom:438.106667pt;}
.ycc{bottom:440.453333pt;}
.y10f{bottom:446.986667pt;}
.y12a{bottom:449.146667pt;}
.y21{bottom:449.986667pt;}
.ycb{bottom:453.893333pt;}
.y10e{bottom:460.746667pt;}
.y4d{bottom:464.266667pt;}
.yca{bottom:467.813333pt;}
.y10d{bottom:474.666667pt;}
.y20{bottom:475.746667pt;}
.y72{bottom:481.200000pt;}
.yc9{bottom:481.733333pt;}
.y71{bottom:483.200000pt;}
.y10c{bottom:488.266667pt;}
.y1f{bottom:491.906667pt;}
.yc8{bottom:495.813333pt;}
.y4b{bottom:498.533333pt;}
.y10b{bottom:502.026667pt;}
.y1e{bottom:505.826667pt;}
.yc7{bottom:509.573333pt;}
.y10a{bottom:516.106667pt;}
.yc6{bottom:523.333333pt;}
.y1d{bottom:525.826667pt;}
.y8b{bottom:528.000000pt;}
.y109{bottom:530.026667pt;}
.y49{bottom:532.666667pt;}
.yc5{bottom:537.253333pt;}
.y1c{bottom:539.613333pt;}
.y8a{bottom:541.786667pt;}
.y108{bottom:543.813333pt;}
.yc4{bottom:551.040000pt;}
.y1b{bottom:553.373333pt;}
.y89{bottom:555.706667pt;}
.y107{bottom:557.573333pt;}
.yc3{bottom:564.960000pt;}
.y1a{bottom:567.293333pt;}
.y88{bottom:569.466667pt;}
.y70{bottom:575.200000pt;}
.y87{bottom:583.226667pt;}
.y48{bottom:583.760000pt;}
.y106{bottom:584.933333pt;}
.y19{bottom:587.133333pt;}
.yc2{bottom:592.480000pt;}
.y86{bottom:597.146667pt;}
.y47{bottom:597.520000pt;}
.y18{bottom:601.053333pt;}
.yc1{bottom:606.400000pt;}
.y46{bottom:611.440000pt;}
.y105{bottom:613.093333pt;}
.yc0{bottom:620.160000pt;}
.y17{bottom:620.733333pt;}
.y104{bottom:623.973333pt;}
.y45{bottom:625.200000pt;}
.y85{bottom:631.386667pt;}
.y6e{bottom:633.200000pt;}
.ybf{bottom:633.920000pt;}
.y6f{bottom:634.133333pt;}
.y44{bottom:638.960000pt;}
.y16{bottom:644.573333pt;}
.ybe{bottom:647.840000pt;}
.y84{bottom:652.026667pt;}
.y43{bottom:652.720000pt;}
.y15{bottom:658.333333pt;}
.ybd{bottom:661.760000pt;}
.y83{bottom:666.266667pt;}
.y42{bottom:666.640000pt;}
.y14{bottom:672.093333pt;}
.y82{bottom:680.186667pt;}
.y41{bottom:680.400000pt;}
.ybc{bottom:689.440000pt;}
.y81{bottom:693.946667pt;}
.y40{bottom:694.000000pt;}
.ybb{bottom:700.320000pt;}
.y13{bottom:702.973333pt;}
.y80{bottom:704.986667pt;}
.y3f{bottom:708.240000pt;}
.y3e{bottom:719.120000pt;}
.y12{bottom:722.013333pt;}
.y6c{bottom:722.533333pt;}
.y6d{bottom:722.666667pt;}
.y11{bottom:747.613333pt;}
.ye3{bottom:753.160000pt;}
.ye2{bottom:767.240000pt;}
.y10{bottom:778.693333pt;}
.y6b{bottom:780.533333pt;}
.ye1{bottom:781.040000pt;}
.ye0{bottom:794.960000pt;}
.y129{bottom:795.013333pt;}
.ydf{bottom:808.720000pt;}
.y128{bottom:808.933333pt;}
.yf{bottom:813.573333pt;}
.yde{bottom:822.640000pt;}
.y127{bottom:822.693333pt;}
.ye{bottom:835.013333pt;}
.ydd{bottom:836.080000pt;}
.y126{bottom:836.453333pt;}
.ydc{bottom:850.000000pt;}
.y125{bottom:850.213333pt;}
.y124{bottom:864.133333pt;}
.ya1{bottom:864.240000pt;}
.y69{bottom:871.200000pt;}
.yd{bottom:872.613333pt;}
.y123{bottom:877.893333pt;}
.ya0{bottom:878.000000pt;}
.y122{bottom:891.653333pt;}
.ydb{bottom:891.760000pt;}
.y9f{bottom:891.920000pt;}
.y65{bottom:898.133333pt;}
.yc{bottom:903.173333pt;}
.y121{bottom:905.413333pt;}
.yda{bottom:905.520000pt;}
.y9e{bottom:905.680000pt;}
.y67{bottom:911.200000pt;}
.y6a{bottom:917.200000pt;}
.y9{bottom:919.173333pt;}
.y120{bottom:919.333333pt;}
.y9d{bottom:919.440000pt;}
.yb{bottom:923.813333pt;}
.yd9{bottom:933.040000pt;}
.y11f{bottom:933.093333pt;}
.y9c{bottom:933.200000pt;}
.y8{bottom:939.813333pt;}
.yd8{bottom:946.800000pt;}
.y11e{bottom:946.853333pt;}
.y9b{bottom:946.960000pt;}
.y103{bottom:947.040000pt;}
.ya{bottom:952.293333pt;}
.yd7{bottom:960.720000pt;}
.y11d{bottom:960.773333pt;}
.y102{bottom:960.800000pt;}
.y9a{bottom:960.880000pt;}
.y7{bottom:965.893333pt;}
.y11c{bottom:974.213333pt;}
.y101{bottom:974.560000pt;}
.y99{bottom:974.640000pt;}
.y64{bottom:974.693333pt;}
.yd6{bottom:974.800000pt;}
.y6{bottom:982.853333pt;}
.y11b{bottom:988.133333pt;}
.y63{bottom:988.453333pt;}
.y100{bottom:988.480000pt;}
.y98{bottom:988.560000pt;}
.y5{bottom:998.213333pt;}
.y97{bottom:1002.000000pt;}
.yff{bottom:1002.240000pt;}
.y62{bottom:1002.373333pt;}
.yd5{bottom:1002.480000pt;}
.y4{bottom:1013.600000pt;}
.yfe{bottom:1015.866667pt;}
.y96{bottom:1015.946667pt;}
.y61{bottom:1016.160000pt;}
.yd4{bottom:1016.266667pt;}
.y3{bottom:1029.600000pt;}
.yba{bottom:1029.786667pt;}
.y60{bottom:1029.920000pt;}
.y3d{bottom:1030.186667pt;}
.y3b{bottom:1044.586667pt;}
.y3a{bottom:1061.066667pt;}
.hc{height:31.390625pt;}
.h14{height:33.466667pt;}
.h15{height:33.600000pt;}
.h16{height:33.613333pt;}
.h13{height:33.626667pt;}
.hf{height:33.918750pt;}
.h10{height:42.084375pt;}
.h6{height:43.215000pt;}
.hb{height:47.085938pt;}
.h11{height:47.109375pt;}
.hd{height:48.375000pt;}
.h20{height:49.336436pt;}
.h7{height:49.597187pt;}
.h12{height:49.621875pt;}
.h22{height:51.111508pt;}
.h8{height:52.108438pt;}
.h3{height:53.535000pt;}
.h21{height:55.114708pt;}
.he{height:55.247500pt;}
.h1{height:57.787500pt;}
.h4{height:59.340000pt;}
.ha{height:64.290000pt;}
.h2{height:64.500000pt;}
.h1f{height:67.120042pt;}
.h25{height:69.514708pt;}
.h5{height:72.885000pt;}
.h1d{height:73.490625pt;}
.h9{height:75.465000pt;}
.h17{height:86.240000pt;}
.h23{height:91.136042pt;}
.h24{height:103.109375pt;}
.h1e{height:103.162708pt;}
.h19{height:146.666667pt;}
.h18{height:147.866667pt;}
.h1a{height:157.333333pt;}
.h1b{height:210.933333pt;}
.h1c{height:211.066667pt;}
.h0{height:1122.666667pt;}
.w4{width:83.986667pt;}
.w8{width:84.000000pt;}
.w3{width:166.400000pt;}
.w2{width:206.000000pt;}
.w5{width:218.800000pt;}
.w6{width:218.933333pt;}
.w1{width:241.720000pt;}
.w7{width:243.600000pt;}
.w0{width:794.666667pt;}
.x0{left:0.000000pt;}
.x3a{left:7.240000pt;}
.x29{left:12.573333pt;}
.x31{left:15.640000pt;}
.x1c{left:17.066667pt;}
.x17{left:18.866667pt;}
.x26{left:20.400000pt;}
.x3c{left:22.573333pt;}
.x1e{left:24.466667pt;}
.x2{left:26.640000pt;}
.x24{left:38.666667pt;}
.xc{left:41.706667pt;}
.x4d{left:42.613333pt;}
.x8{left:44.906667pt;}
.x9{left:51.306667pt;}
.x1d{left:53.466667pt;}
.x21{left:55.933333pt;}
.x13{left:58.933333pt;}
.x15{left:60.200000pt;}
.x25{left:61.933333pt;}
.x11{left:66.333333pt;}
.x32{left:68.306667pt;}
.x22{left:70.200000pt;}
.x23{left:72.933333pt;}
.x18{left:74.000000pt;}
.x1b{left:75.133333pt;}
.x1a{left:77.866667pt;}
.x3e{left:79.200000pt;}
.x19{left:80.466667pt;}
.x37{left:81.866667pt;}
.x1f{left:82.800000pt;}
.x16{left:86.133333pt;}
.x53{left:90.181333pt;}
.x20{left:93.133333pt;}
.x10{left:95.400000pt;}
.x2e{left:97.333333pt;}
.x28{left:129.160000pt;}
.x35{left:130.160000pt;}
.x39{left:131.160000pt;}
.x2c{left:132.266667pt;}
.x30{left:146.533333pt;}
.xa{left:177.706667pt;}
.x3d{left:204.533333pt;}
.x36{left:208.533333pt;}
.x2a{left:210.533333pt;}
.x2b{left:213.466667pt;}
.x33{left:214.533333pt;}
.x5{left:217.040000pt;}
.x3f{left:218.533333pt;}
.x3{left:240.266667pt;}
.x45{left:248.813333pt;}
.x4f{left:253.546667pt;}
.x4{left:258.320000pt;}
.x42{left:268.800000pt;}
.x48{left:289.026667pt;}
.xe{left:324.826667pt;}
.x12{left:337.466667pt;}
.x52{left:358.981333pt;}
.xb{left:367.653333pt;}
.x49{left:369.066667pt;}
.x40{left:370.165333pt;}
.x50{left:371.066667pt;}
.x43{left:372.320000pt;}
.x62{left:375.066667pt;}
.x46{left:376.000000pt;}
.x27{left:377.466667pt;}
.x4b{left:385.066667pt;}
.x1{left:391.733333pt;}
.xf{left:399.413333pt;}
.x6{left:425.746667pt;}
.x2d{left:427.733333pt;}
.x2f{left:432.800000pt;}
.x7{left:450.293333pt;}
.x14{left:543.733333pt;}
.x4e{left:548.346667pt;}
.xd{left:568.426667pt;}
.x4c{left:569.453333pt;}
.x4a{left:579.626667pt;}
.x51{left:586.368000pt;}
.x44{left:595.080000pt;}
.x41{left:630.266667pt;}
.x34{left:659.066667pt;}
.x3b{left:664.000000pt;}
.x38{left:668.933333pt;}
.x47{left:734.653333pt;}
.x54{left:876.768000pt;}
.x5b{left:882.984000pt;}
.x56{left:886.529333pt;}
.x61{left:894.197333pt;}
.x5a{left:921.984000pt;}
.x57{left:925.849333pt;}
.x5e{left:932.077333pt;}
.x55{left:934.181333pt;}
.x5c{left:980.544000pt;}
.x5d{left:1009.424000pt;}
.x5f{left:1018.197333pt;}
.x58{left:1024.010667pt;}
.x59{left:1063.650667pt;}
.x60{left:1069.877333pt;}
}




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