
    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_b0a7342409a75aa22e915bca.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_303e194d15b44fed65ff7923.woff')format("woff");}.ff3{font-family:ff3;line-height:1.087402;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_47806f7f434c430cd9cd7b1b.woff')format("woff");}.ff4{font-family:ff4;line-height:1.064941;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_bebbcb7e4e5d67873ff3d288.woff')format("woff");}.ff5{font-family:ff5;line-height:1.087402;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_3577328690edade9712b56f4.woff')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_a005548d841dcf6848a46430.woff')format("woff");}.ff7{font-family:ff7;line-height:1.063477;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_e6d61a30c13f9822ec81a447.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;}
.v3{vertical-align:-15.120000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:15.120000px;}
.v8{vertical-align:27.000000px;}
.v7{vertical-align:40.320000px;}
.v6{vertical-align:44.280000px;}
.v5{vertical-align:45.360000px;}
.v4{vertical-align:47.880000px;}
.ls22{letter-spacing:-0.444000px;}
.ls1b{letter-spacing:-0.318000px;}
.ls18{letter-spacing:-0.193800px;}
.ls7{letter-spacing:-0.186600px;}
.ls11{letter-spacing:-0.124200px;}
.ls9{letter-spacing:-0.121200px;}
.ls12{letter-spacing:-0.101400px;}
.ls5{letter-spacing:-0.090000px;}
.lsf{letter-spacing:-0.014760px;}
.ls15{letter-spacing:-0.013320px;}
.ls6{letter-spacing:-0.008400px;}
.ls8{letter-spacing:-0.007800px;}
.ls4{letter-spacing:0.000000px;}
.ls17{letter-spacing:0.041760px;}
.ls19{letter-spacing:0.042480px;}
.ls1e{letter-spacing:0.051840px;}
.ls1f{letter-spacing:0.060600px;}
.ls2{letter-spacing:0.065520px;}
.lsa{letter-spacing:0.074160px;}
.ls1{letter-spacing:0.093600px;}
.ls13{letter-spacing:0.111000px;}
.ls10{letter-spacing:0.115800px;}
.ls1a{letter-spacing:0.118200px;}
.ls14{letter-spacing:0.166200px;}
.lsc{letter-spacing:0.173400px;}
.ls3{letter-spacing:0.180000px;}
.ls21{letter-spacing:0.181200px;}
.ls16{letter-spacing:0.202200px;}
.ls0{letter-spacing:0.360000px;}
.lsd{letter-spacing:13.410360px;}
.ls20{letter-spacing:45.206640px;}
.ls1c{letter-spacing:45.926640px;}
.lsb{letter-spacing:56.565360px;}
.ls1d{letter-spacing:78.326640px;}
.lse{letter-spacing:171.053040px;}
.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;}
}
.wsc{word-spacing:-60.235800px;}
.wsb{word-spacing:-46.931040px;}
.ws9{word-spacing:-43.469640px;}
.ws5{word-spacing:-14.493600px;}
.ws8{word-spacing:-14.372400px;}
.ws13{word-spacing:-13.428600px;}
.ws1c{word-spacing:-13.407600px;}
.ws7{word-spacing:-13.399800px;}
.ws11{word-spacing:-13.392600px;}
.ws17{word-spacing:-13.344600px;}
.ws10{word-spacing:-13.337400px;}
.ws1b{word-spacing:-13.287000px;}
.ws1a{word-spacing:-13.278240px;}
.ws16{word-spacing:-13.268880px;}
.ws14{word-spacing:-13.268160px;}
.ws2{word-spacing:-13.226400px;}
.ws3{word-spacing:-13.218600px;}
.ws12{word-spacing:-13.213080px;}
.wsf{word-spacing:-13.125000px;}
.wse{word-spacing:-13.102200px;}
.ws1{word-spacing:-13.039800px;}
.ws15{word-spacing:-13.032600px;}
.ws18{word-spacing:-12.908400px;}
.ws0{word-spacing:-9.810000px;}
.ws19{word-spacing:-8.553600px;}
.ws6{word-spacing:0.000000px;}
.wsa{word-spacing:14.254920px;}
.ws4{word-spacing:60.824880px;}
.wsd{word-spacing:189.572520px;}
._e{margin-left:-3.246600px;}
._d{margin-left:-2.044200px;}
._0{margin-left:-1.020000px;}
._1{width:1.006728px;}
._5{width:2.600472px;}
._b{width:4.509000px;}
._12{width:5.519760px;}
._7{width:6.854401px;}
._6{width:7.875600px;}
._11{width:8.898000px;}
._a{width:9.977399px;}
._8{width:11.062200px;}
._9{width:12.144000px;}
._c{width:14.248200px;}
._2{width:15.934560px;}
._4{width:17.254200px;}
._3{width:18.276600px;}
._15{width:22.124160px;}
._10{width:23.747400px;}
._f{width:25.407360px;}
._16{width:28.376640px;}
._17{width:29.819640px;}
._18{width:37.437552px;}
._19{width:38.596463px;}
._1a{width:39.642840px;}
._1b{width:40.701817px;}
._13{width:103.286160px;}
._14{width:107.975520px;}
.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:69.120000px;}
.fs4{font-size:83.880000px;}
.y0{bottom:0.000000px;}
.y6e{bottom:7.830000px;}
.ya5{bottom:7.860000px;}
.y7a{bottom:7.920000px;}
.y76{bottom:25.380000px;}
.y72{bottom:25.470000px;}
.y74{bottom:70.290000px;}
.y70{bottom:70.380000px;}
.y78{bottom:70.410000px;}
.y2{bottom:73.380000px;}
.y2a{bottom:74.190000px;}
.yc1{bottom:74.460000px;}
.y1{bottom:101.640000px;}
.y81{bottom:110.820000px;}
.y5c{bottom:112.530000px;}
.y11d{bottom:113.340000px;}
.y5b{bottom:130.170000px;}
.y11c{bottom:130.890000px;}
.y5a{bottom:147.720000px;}
.y11b{bottom:148.530000px;}
.y146{bottom:148.800000px;}
.y28{bottom:148.980000px;}
.y7f{bottom:155.820000px;}
.y59{bottom:165.270000px;}
.ya0{bottom:165.900000px;}
.y11a{bottom:166.080000px;}
.y145{bottom:166.350000px;}
.y27{bottom:166.530000px;}
.y58{bottom:182.910000px;}
.y9f{bottom:183.450000px;}
.y119{bottom:183.720000px;}
.y144{bottom:183.990000px;}
.y26{bottom:184.170000px;}
.ybf{bottom:196.950000px;}
.y80{bottom:200.730000px;}
.y9e{bottom:201.090000px;}
.y118{bottom:201.270000px;}
.y25{bottom:201.720000px;}
.y143{bottom:210.540000px;}
.ybe{bottom:214.590000px;}
.y57{bottom:218.460000px;}
.y9d{bottom:218.640000px;}
.y142{bottom:228.090000px;}
.ybd{bottom:232.140000px;}
.y56{bottom:236.100000px;}
.y9c{bottom:236.280000px;}
.y117{bottom:236.820000px;}
.y24{bottom:237.360000px;}
.y7d{bottom:245.640000px;}
.y141{bottom:245.730000px;}
.ybc{bottom:249.780000px;}
.y55{bottom:253.650000px;}
.y9b{bottom:253.830000px;}
.y116{bottom:254.460000px;}
.y23{bottom:254.910000px;}
.ybb{bottom:267.330000px;}
.y54{bottom:271.200000px;}
.y9a{bottom:271.380000px;}
.y115{bottom:272.010000px;}
.y140{bottom:272.280000px;}
.y22{bottom:272.460000px;}
.yba{bottom:284.880000px;}
.y53{bottom:288.840000px;}
.y99{bottom:289.020000px;}
.y114{bottom:289.650000px;}
.y13f{bottom:289.830000px;}
.y21{bottom:290.100000px;}
.y7e{bottom:290.550000px;}
.yf8{bottom:292.890000px;}
.y52{bottom:306.390000px;}
.y98{bottom:306.570000px;}
.y13e{bottom:307.470000px;}
.y20{bottom:307.650000px;}
.yf7{bottom:310.530000px;}
.yb9{bottom:320.520000px;}
.y51{bottom:323.940000px;}
.y97{bottom:324.120000px;}
.y13d{bottom:325.020000px;}
.y1f{bottom:325.200000px;}
.yf6{bottom:328.080000px;}
.y7b{bottom:335.460000px;}
.yb8{bottom:338.070000px;}
.yd2{bottom:339.600000px;}
.y50{bottom:341.580000px;}
.y96{bottom:341.760000px;}
.y13c{bottom:342.660000px;}
.y113{bottom:342.750000px;}
.yf5{bottom:345.720000px;}
.y1e{bottom:352.110000px;}
.ye5{bottom:356.970000px;}
.y4f{bottom:359.130000px;}
.y95{bottom:359.310000px;}
.y112{bottom:360.390000px;}
.yf4{bottom:363.270000px;}
.yd1{bottom:366.870000px;}
.y13b{bottom:369.570000px;}
.yb7{bottom:370.290000px;}
.y4e{bottom:376.770000px;}
.y111{bottom:377.940000px;}
.y7c{bottom:380.370000px;}
.yf3{bottom:380.820000px;}
.ye4{bottom:392.520000px;}
.yd0{bottom:394.260000px;}
.y94{bottom:394.950000px;}
.y110{bottom:395.580000px;}
.y1d{bottom:400.440000px;}
.ye3{bottom:410.160000px;}
.y4d{bottom:412.320000px;}
.y93{bottom:412.500000px;}
.yf2{bottom:416.460000px;}
.y13a{bottom:417.810000px;}
.y1c{bottom:418.350000px;}
.ycf{bottom:421.620000px;}
.y77{bottom:425.280000px;}
.ye2{bottom:427.710000px;}
.y4c{bottom:429.870000px;}
.y92{bottom:430.050000px;}
.y10f{bottom:431.130000px;}
.yf1{bottom:434.010000px;}
.y139{bottom:444.720000px;}
.ye1{bottom:445.350000px;}
.y4b{bottom:447.510000px;}
.y91{bottom:447.690000px;}
.y10e{bottom:448.680000px;}
.yce{bottom:448.890000px;}
.y1b{bottom:455.340000px;}
.ye0{bottom:462.900000px;}
.y4a{bottom:465.060000px;}
.yf0{bottom:466.230000px;}
.y10d{bottom:466.320000px;}
.y79{bottom:470.220000px;}
.y1a{bottom:473.010000px;}
.ycd{bottom:476.250000px;}
.ydf{bottom:480.480000px;}
.y8f{bottom:480.660000px;}
.y138{bottom:481.740000px;}
.y49{bottom:482.730000px;}
.y10c{bottom:483.900000px;}
.y19{bottom:490.560000px;}
.y137{bottom:499.380000px;}
.y10b{bottom:501.540000px;}
.ycc{bottom:503.610000px;}
.y18{bottom:508.110000px;}
.y73{bottom:515.220000px;}
.yde{bottom:516.120000px;}
.y48{bottom:518.280000px;}
.y10a{bottom:519.090000px;}
.y90{bottom:525.570000px;}
.y17{bottom:525.750000px;}
.y136{bottom:526.290000px;}
.ycb{bottom:530.970000px;}
.y15e{bottom:531.330000px;}
.ydd{bottom:533.670000px;}
.y47{bottom:535.830000px;}
.y16{bottom:543.300000px;}
.y15d{bottom:548.880000px;}
.y46{bottom:553.470000px;}
.y109{bottom:554.640000px;}
.yca{bottom:558.240000px;}
.y75{bottom:560.130000px;}
.y15{bottom:560.940000px;}
.y135{bottom:563.640000px;}
.ydc{bottom:565.890000px;}
.y8d{bottom:570.480000px;}
.y45{bottom:571.020000px;}
.y108{bottom:572.280000px;}
.y15c{bottom:575.430000px;}
.yb6{bottom:578.220000px;}
.y14{bottom:578.490000px;}
.yc9{bottom:585.600000px;}
.y107{bottom:589.830000px;}
.y15b{bottom:593.070000px;}
.yb5{bottom:595.770000px;}
.y13{bottom:596.040000px;}
.y6f{bottom:605.040000px;}
.y44{bottom:606.660000px;}
.y106{bottom:607.470000px;}
.y15a{bottom:610.620000px;}
.y134{bottom:611.880000px;}
.yc8{bottom:612.960000px;}
.yb4{bottom:613.410000px;}
.y12{bottom:613.680000px;}
.y8e{bottom:615.480000px;}
.y43{bottom:624.210000px;}
.y133{bottom:629.430000px;}
.yb3{bottom:630.960000px;}
.y11{bottom:631.230000px;}
.y159{bottom:637.260000px;}
.yc7{bottom:640.320000px;}
.y42{bottom:641.760000px;}
.y105{bottom:643.020000px;}
.y132{bottom:647.070000px;}
.y10{bottom:648.780000px;}
.y71{bottom:649.950000px;}
.y158{bottom:654.810000px;}
.y41{bottom:659.400000px;}
.y8b{bottom:660.390000px;}
.y104{bottom:660.570000px;}
.y131{bottom:664.620000px;}
.yf{bottom:666.420000px;}
.yb2{bottom:666.600000px;}
.yc6{bottom:667.590000px;}
.y157{bottom:672.360000px;}
.y40{bottom:676.950000px;}
.y103{bottom:678.210000px;}
.yb1{bottom:681.540000px;}
.y130{bottom:682.260000px;}
.ye{bottom:683.970000px;}
.y156{bottom:690.000000px;}
.y6d{bottom:694.860000px;}
.yc5{bottom:694.950000px;}
.y102{bottom:695.760000px;}
.yef{bottom:697.830000px;}
.y12f{bottom:699.810000px;}
.yd{bottom:701.610000px;}
.y3f{bottom:703.860000px;}
.y8c{bottom:705.300000px;}
.yb0{bottom:708.900000px;}
.y155{bottom:716.550000px;}
.y12e{bottom:717.360000px;}
.yc4{bottom:722.310000px;}
.y101{bottom:722.670000px;}
.yc{bottom:728.520000px;}
.yee{bottom:733.470000px;}
.y12d{bottom:735.000000px;}
.yaf{bottom:736.170000px;}
.y154{bottom:743.190000px;}
.y6c{bottom:743.550000px;}
.yc3{bottom:749.610000px;}
.y89{bottom:750.210000px;}
.yed{bottom:751.020000px;}
.y3e{bottom:752.190000px;}
.y12c{bottom:752.550000px;}
.y153{bottom:760.740000px;}
.yae{bottom:763.530000px;}
.yec{bottom:768.660000px;}
.ydb{bottom:769.470000px;}
.y3d{bottom:769.740000px;}
.y12b{bottom:770.190000px;}
.y100{bottom:770.910000px;}
.yb{bottom:776.760000px;}
.y152{bottom:778.290000px;}
.y6b{bottom:779.190000px;}
.yeb{bottom:786.210000px;}
.yda{bottom:787.020000px;}
.y3c{bottom:787.290000px;}
.y12a{bottom:787.740000px;}
.yff{bottom:788.550000px;}
.yad{bottom:790.890000px;}
.y8a{bottom:795.120000px;}
.y151{bottom:795.930000px;}
.y6a{bottom:796.740000px;}
.yc2{bottom:798.390000px;}
.yea{bottom:803.760000px;}
.yd9{bottom:804.660000px;}
.y3b{bottom:804.930000px;}
.y129{bottom:805.290000px;}
.yfe{bottom:806.100000px;}
.ya{bottom:812.310000px;}
.y69{bottom:814.290000px;}
.yac{bottom:818.250000px;}
.ye9{bottom:821.400000px;}
.yd8{bottom:822.210000px;}
.y150{bottom:822.480000px;}
.y128{bottom:822.930000px;}
.yfd{bottom:823.740000px;}
.yc0{bottom:824.940000px;}
.y68{bottom:831.930000px;}
.yd7{bottom:839.760000px;}
.y87{bottom:840.030000px;}
.y3a{bottom:840.480000px;}
.yfc{bottom:841.290000px;}
.yab{bottom:845.520000px;}
.y9{bottom:847.950000px;}
.ye8{bottom:856.950000px;}
.yd6{bottom:857.400000px;}
.y14f{bottom:857.670000px;}
.y39{bottom:858.030000px;}
.y67{bottom:858.840000px;}
.yaa{bottom:872.880000px;}
.ye7{bottom:874.590000px;}
.y38{bottom:875.670000px;}
.y127{bottom:876.030000px;}
.y8{bottom:883.500000px;}
.y14e{bottom:884.220000px;}
.y88{bottom:884.940000px;}
.yd5{bottom:892.950000px;}
.y37{bottom:893.220000px;}
.y126{bottom:893.670000px;}
.yfb{bottom:894.480000px;}
.ya9{bottom:900.240000px;}
.y14d{bottom:901.860000px;}
.y7{bottom:904.920000px;}
.ye6{bottom:906.810000px;}
.y66{bottom:907.080000px;}
.yd4{bottom:910.590000px;}
.y36{bottom:910.860000px;}
.y125{bottom:911.220000px;}
.yfa{bottom:912.030000px;}
.y14c{bottom:919.410000px;}
.y6{bottom:922.470000px;}
.ya8{bottom:927.600000px;}
.y35{bottom:928.410000px;}
.y124{bottom:928.860000px;}
.y85{bottom:929.850000px;}
.y65{bottom:942.630000px;}
.yd3{bottom:942.810000px;}
.yf9{bottom:944.250000px;}
.y14b{bottom:945.960000px;}
.y123{bottom:946.410000px;}
.y5{bottom:954.600000px;}
.ya7{bottom:954.870000px;}
.y14a{bottom:963.600000px;}
.y34{bottom:963.960000px;}
.y4{bottom:973.950000px;}
.y86{bottom:974.850000px;}
.y64{bottom:978.270000px;}
.y33{bottom:981.600000px;}
.y122{bottom:981.960000px;}
.ya6{bottom:982.230000px;}
.y149{bottom:990.150000px;}
.y32{bottom:999.150000px;}
.y121{bottom:999.600000px;}
.y148{bottom:1007.790000px;}
.ya4{bottom:1009.590000px;}
.y63{bottom:1010.430000px;}
.y3{bottom:1012.230000px;}
.y31{bottom:1016.820000px;}
.y120{bottom:1017.180000px;}
.y83{bottom:1019.790000px;}
.y60{bottom:1020.510000px;}
.y62{bottom:1028.610000px;}
.y30{bottom:1034.370000px;}
.y11f{bottom:1034.820000px;}
.ya3{bottom:1036.890000px;}
.y61{bottom:1037.520000px;}
.y2f{bottom:1051.920000px;}
.y11e{bottom:1052.370000px;}
.ya2{bottom:1064.250000px;}
.y84{bottom:1064.700000px;}
.y2e{bottom:1069.560000px;}
.y5f{bottom:1069.920000px;}
.y147{bottom:1078.560000px;}
.y2d{bottom:1087.110000px;}
.y5e{bottom:1087.560000px;}
.ya1{bottom:1091.610000px;}
.y5d{bottom:1105.110000px;}
.y82{bottom:1109.610000px;}
.y2c{bottom:1122.750000px;}
.y2b{bottom:1140.300000px;}
.y29{bottom:1194.300000px;}
.hf{height:26.550000px;}
.h17{height:26.580000px;}
.h16{height:26.640000px;}
.h1a{height:26.670000px;}
.h2{height:30.022383px;}
.hc{height:35.497617px;}
.h6{height:35.782383px;}
.h3{height:39.111328px;}
.h13{height:44.100000px;}
.h15{height:44.130000px;}
.h11{height:44.190000px;}
.h7{height:50.902383px;}
.h8{height:52.252734px;}
.h9{height:55.779258px;}
.h5{height:57.258984px;}
.h1b{height:61.793886px;}
.ha{height:68.582109px;}
.h4{height:72.903516px;}
.hd{height:79.777617px;}
.h1c{height:87.075000px;}
.h12{height:89.010000px;}
.h10{height:89.100000px;}
.h14{height:89.130000px;}
.he{height:92.572734px;}
.hb{height:98.547539px;}
.h18{height:893.160000px;}
.h19{height:893.250000px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.w14{width:47.520000px;}
.w15{width:47.550000px;}
.w12{width:47.610000px;}
.w13{width:47.640000px;}
.wb{width:51.750000px;}
.w16{width:54.900000px;}
.wa{width:60.030000px;}
.wc{width:60.120000px;}
.wd{width:60.150000px;}
.w11{width:63.540000px;}
.w3{width:66.060000px;}
.w9{width:66.090000px;}
.w4{width:82.200000px;}
.w6{width:99.720000px;}
.w7{width:99.750000px;}
.w5{width:99.810000px;}
.w8{width:100.980000px;}
.w2{width:893.159987px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.wf{width:1262.250000px;}
.w10{width:1262.519981px;}
.we{width:1262.520000px;}
.x0{left:0.000000px;}
.x21{left:1.710000px;}
.x7{left:7.740000px;}
.x1{left:68.040000px;}
.x40{left:75.869987px;}
.x1c{left:78.029987px;}
.x3d{left:83.249987px;}
.x3a{left:85.769987px;}
.x36{left:88.379987px;}
.x42{left:95.039987px;}
.x20{left:107.999981px;}
.x44{left:110.609987px;}
.x43{left:122.039987px;}
.x8{left:135.630000px;}
.x12{left:144.000000px;}
.x22{left:173.070000px;}
.x2{left:209.819987px;}
.x13{left:210.900000px;}
.x9{left:218.550000px;}
.x23{left:221.400000px;}
.xf{left:233.039987px;}
.x3b{left:253.469987px;}
.x37{left:254.819987px;}
.x24{left:269.850000px;}
.x14{left:271.650000px;}
.x41{left:283.889987px;}
.x1d{left:284.969987px;}
.x3e{left:287.309987px;}
.xa{left:319.080000px;}
.x15{left:324.210000px;}
.x25{left:366.600000px;}
.x4{left:374.609987px;}
.x16{left:384.960000px;}
.x1e{left:394.499981px;}
.x26{left:414.930000px;}
.xb{left:419.610000px;}
.x5{left:435.449987px;}
.x10{left:442.469987px;}
.x11{left:446.609987px;}
.x27{left:463.350000px;}
.x6{left:467.489987px;}
.x17{left:506.640000px;}
.x28{left:511.680000px;}
.xc{left:520.080000px;}
.x29{left:560.100000px;}
.x18{left:567.510000px;}
.x2a{left:608.430000px;}
.xd{left:621.780000px;}
.x19{left:628.350000px;}
.x2b{left:656.850000px;}
.x1a{left:689.190000px;}
.x2c{left:705.180000px;}
.xe{left:723.480000px;}
.x2d{left:753.510000px;}
.x38{left:763.079987px;}
.x1b{left:765.959987px;}
.x3c{left:768.209987px;}
.x35{left:769.559987px;}
.x3f{left:773.159987px;}
.x39{left:789.089987px;}
.x3{left:800.339987px;}
.x2e{left:801.780000px;}
.x2f{left:850.110000px;}
.x30{left:898.440000px;}
.x31{left:946.680000px;}
.x32{left:995.010000px;}
.x33{left:1043.340000px;}
.x34{left:1098.960000px;}
.x1f{left:1129.649981px;}
@media print{
.v1{vertical-align:-18.560000pt;}
.v3{vertical-align:-13.440000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:13.440000pt;}
.v8{vertical-align:24.000000pt;}
.v7{vertical-align:35.840000pt;}
.v6{vertical-align:39.360000pt;}
.v5{vertical-align:40.320000pt;}
.v4{vertical-align:42.560000pt;}
.ls22{letter-spacing:-0.394667pt;}
.ls1b{letter-spacing:-0.282667pt;}
.ls18{letter-spacing:-0.172267pt;}
.ls7{letter-spacing:-0.165867pt;}
.ls11{letter-spacing:-0.110400pt;}
.ls9{letter-spacing:-0.107733pt;}
.ls12{letter-spacing:-0.090133pt;}
.ls5{letter-spacing:-0.080000pt;}
.lsf{letter-spacing:-0.013120pt;}
.ls15{letter-spacing:-0.011840pt;}
.ls6{letter-spacing:-0.007467pt;}
.ls8{letter-spacing:-0.006933pt;}
.ls4{letter-spacing:0.000000pt;}
.ls17{letter-spacing:0.037120pt;}
.ls19{letter-spacing:0.037760pt;}
.ls1e{letter-spacing:0.046080pt;}
.ls1f{letter-spacing:0.053867pt;}
.ls2{letter-spacing:0.058240pt;}
.lsa{letter-spacing:0.065920pt;}
.ls1{letter-spacing:0.083200pt;}
.ls13{letter-spacing:0.098667pt;}
.ls10{letter-spacing:0.102933pt;}
.ls1a{letter-spacing:0.105067pt;}
.ls14{letter-spacing:0.147733pt;}
.lsc{letter-spacing:0.154133pt;}
.ls3{letter-spacing:0.160000pt;}
.ls21{letter-spacing:0.161067pt;}
.ls16{letter-spacing:0.179733pt;}
.ls0{letter-spacing:0.320000pt;}
.lsd{letter-spacing:11.920320pt;}
.ls20{letter-spacing:40.183680pt;}
.ls1c{letter-spacing:40.823680pt;}
.lsb{letter-spacing:50.280320pt;}
.ls1d{letter-spacing:69.623680pt;}
.lse{letter-spacing:152.047147pt;}
.wsc{word-spacing:-53.542933pt;}
.wsb{word-spacing:-41.716480pt;}
.ws9{word-spacing:-38.639680pt;}
.ws5{word-spacing:-12.883200pt;}
.ws8{word-spacing:-12.775467pt;}
.ws13{word-spacing:-11.936533pt;}
.ws1c{word-spacing:-11.917867pt;}
.ws7{word-spacing:-11.910933pt;}
.ws11{word-spacing:-11.904533pt;}
.ws17{word-spacing:-11.861867pt;}
.ws10{word-spacing:-11.855467pt;}
.ws1b{word-spacing:-11.810667pt;}
.ws1a{word-spacing:-11.802880pt;}
.ws16{word-spacing:-11.794560pt;}
.ws14{word-spacing:-11.793920pt;}
.ws2{word-spacing:-11.756800pt;}
.ws3{word-spacing:-11.749867pt;}
.ws12{word-spacing:-11.744960pt;}
.wsf{word-spacing:-11.666667pt;}
.wse{word-spacing:-11.646400pt;}
.ws1{word-spacing:-11.590933pt;}
.ws15{word-spacing:-11.584533pt;}
.ws18{word-spacing:-11.474133pt;}
.ws0{word-spacing:-8.720000pt;}
.ws19{word-spacing:-7.603200pt;}
.ws6{word-spacing:0.000000pt;}
.wsa{word-spacing:12.671040pt;}
.ws4{word-spacing:54.066560pt;}
.wsd{word-spacing:168.508907pt;}
._e{margin-left:-2.885867pt;}
._d{margin-left:-1.817067pt;}
._0{margin-left:-0.906667pt;}
._1{width:0.894869pt;}
._5{width:2.311531pt;}
._b{width:4.008000pt;}
._12{width:4.906453pt;}
._7{width:6.092801pt;}
._6{width:7.000533pt;}
._11{width:7.909334pt;}
._a{width:8.868799pt;}
._8{width:9.833067pt;}
._9{width:10.794666pt;}
._c{width:12.665066pt;}
._2{width:14.164053pt;}
._4{width:15.337066pt;}
._3{width:16.245867pt;}
._15{width:19.665920pt;}
._10{width:21.108800pt;}
._f{width:22.584320pt;}
._16{width:25.223680pt;}
._17{width:26.506347pt;}
._18{width:33.277824pt;}
._19{width:34.307967pt;}
._1a{width:35.238080pt;}
._1b{width:36.179393pt;}
._13{width:91.809920pt;}
._14{width:95.978240pt;}
.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:61.440000pt;}
.fs4{font-size:74.560000pt;}
.y0{bottom:0.000000pt;}
.y6e{bottom:6.960000pt;}
.ya5{bottom:6.986667pt;}
.y7a{bottom:7.040000pt;}
.y76{bottom:22.560000pt;}
.y72{bottom:22.640000pt;}
.y74{bottom:62.480000pt;}
.y70{bottom:62.560000pt;}
.y78{bottom:62.586667pt;}
.y2{bottom:65.226667pt;}
.y2a{bottom:65.946667pt;}
.yc1{bottom:66.186667pt;}
.y1{bottom:90.346667pt;}
.y81{bottom:98.506667pt;}
.y5c{bottom:100.026667pt;}
.y11d{bottom:100.746667pt;}
.y5b{bottom:115.706667pt;}
.y11c{bottom:116.346667pt;}
.y5a{bottom:131.306667pt;}
.y11b{bottom:132.026667pt;}
.y146{bottom:132.266667pt;}
.y28{bottom:132.426667pt;}
.y7f{bottom:138.506667pt;}
.y59{bottom:146.906667pt;}
.ya0{bottom:147.466667pt;}
.y11a{bottom:147.626667pt;}
.y145{bottom:147.866667pt;}
.y27{bottom:148.026667pt;}
.y58{bottom:162.586667pt;}
.y9f{bottom:163.066667pt;}
.y119{bottom:163.306667pt;}
.y144{bottom:163.546667pt;}
.y26{bottom:163.706667pt;}
.ybf{bottom:175.066667pt;}
.y80{bottom:178.426667pt;}
.y9e{bottom:178.746667pt;}
.y118{bottom:178.906667pt;}
.y25{bottom:179.306667pt;}
.y143{bottom:187.146667pt;}
.ybe{bottom:190.746667pt;}
.y57{bottom:194.186667pt;}
.y9d{bottom:194.346667pt;}
.y142{bottom:202.746667pt;}
.ybd{bottom:206.346667pt;}
.y56{bottom:209.866667pt;}
.y9c{bottom:210.026667pt;}
.y117{bottom:210.506667pt;}
.y24{bottom:210.986667pt;}
.y7d{bottom:218.346667pt;}
.y141{bottom:218.426667pt;}
.ybc{bottom:222.026667pt;}
.y55{bottom:225.466667pt;}
.y9b{bottom:225.626667pt;}
.y116{bottom:226.186667pt;}
.y23{bottom:226.586667pt;}
.ybb{bottom:237.626667pt;}
.y54{bottom:241.066667pt;}
.y9a{bottom:241.226667pt;}
.y115{bottom:241.786667pt;}
.y140{bottom:242.026667pt;}
.y22{bottom:242.186667pt;}
.yba{bottom:253.226667pt;}
.y53{bottom:256.746667pt;}
.y99{bottom:256.906667pt;}
.y114{bottom:257.466667pt;}
.y13f{bottom:257.626667pt;}
.y21{bottom:257.866667pt;}
.y7e{bottom:258.266667pt;}
.yf8{bottom:260.346667pt;}
.y52{bottom:272.346667pt;}
.y98{bottom:272.506667pt;}
.y13e{bottom:273.306667pt;}
.y20{bottom:273.466667pt;}
.yf7{bottom:276.026667pt;}
.yb9{bottom:284.906667pt;}
.y51{bottom:287.946667pt;}
.y97{bottom:288.106667pt;}
.y13d{bottom:288.906667pt;}
.y1f{bottom:289.066667pt;}
.yf6{bottom:291.626667pt;}
.y7b{bottom:298.186667pt;}
.yb8{bottom:300.506667pt;}
.yd2{bottom:301.866667pt;}
.y50{bottom:303.626667pt;}
.y96{bottom:303.786667pt;}
.y13c{bottom:304.586667pt;}
.y113{bottom:304.666667pt;}
.yf5{bottom:307.306667pt;}
.y1e{bottom:312.986667pt;}
.ye5{bottom:317.306667pt;}
.y4f{bottom:319.226667pt;}
.y95{bottom:319.386667pt;}
.y112{bottom:320.346667pt;}
.yf4{bottom:322.906667pt;}
.yd1{bottom:326.106667pt;}
.y13b{bottom:328.506667pt;}
.yb7{bottom:329.146667pt;}
.y4e{bottom:334.906667pt;}
.y111{bottom:335.946667pt;}
.y7c{bottom:338.106667pt;}
.yf3{bottom:338.506667pt;}
.ye4{bottom:348.906667pt;}
.yd0{bottom:350.453333pt;}
.y94{bottom:351.066667pt;}
.y110{bottom:351.626667pt;}
.y1d{bottom:355.946667pt;}
.ye3{bottom:364.586667pt;}
.y4d{bottom:366.506667pt;}
.y93{bottom:366.666667pt;}
.yf2{bottom:370.186667pt;}
.y13a{bottom:371.386667pt;}
.y1c{bottom:371.866667pt;}
.ycf{bottom:374.773333pt;}
.y77{bottom:378.026667pt;}
.ye2{bottom:380.186667pt;}
.y4c{bottom:382.106667pt;}
.y92{bottom:382.266667pt;}
.y10f{bottom:383.226667pt;}
.yf1{bottom:385.786667pt;}
.y139{bottom:395.306667pt;}
.ye1{bottom:395.866667pt;}
.y4b{bottom:397.786667pt;}
.y91{bottom:397.946667pt;}
.y10e{bottom:398.826667pt;}
.yce{bottom:399.013333pt;}
.y1b{bottom:404.746667pt;}
.ye0{bottom:411.466667pt;}
.y4a{bottom:413.386667pt;}
.yf0{bottom:414.426667pt;}
.y10d{bottom:414.506667pt;}
.y79{bottom:417.973333pt;}
.y1a{bottom:420.453333pt;}
.ycd{bottom:423.333333pt;}
.ydf{bottom:427.093333pt;}
.y8f{bottom:427.253333pt;}
.y138{bottom:428.213333pt;}
.y49{bottom:429.093333pt;}
.y10c{bottom:430.133333pt;}
.y19{bottom:436.053333pt;}
.y137{bottom:443.893333pt;}
.y10b{bottom:445.813333pt;}
.ycc{bottom:447.653333pt;}
.y18{bottom:451.653333pt;}
.y73{bottom:457.973333pt;}
.yde{bottom:458.773333pt;}
.y48{bottom:460.693333pt;}
.y10a{bottom:461.413333pt;}
.y90{bottom:467.173333pt;}
.y17{bottom:467.333333pt;}
.y136{bottom:467.813333pt;}
.ycb{bottom:471.973333pt;}
.y15e{bottom:472.293333pt;}
.ydd{bottom:474.373333pt;}
.y47{bottom:476.293333pt;}
.y16{bottom:482.933333pt;}
.y15d{bottom:487.893333pt;}
.y46{bottom:491.973333pt;}
.y109{bottom:493.013333pt;}
.yca{bottom:496.213333pt;}
.y75{bottom:497.893333pt;}
.y15{bottom:498.613333pt;}
.y135{bottom:501.013333pt;}
.ydc{bottom:503.013333pt;}
.y8d{bottom:507.093333pt;}
.y45{bottom:507.573333pt;}
.y108{bottom:508.693333pt;}
.y15c{bottom:511.493333pt;}
.yb6{bottom:513.973333pt;}
.y14{bottom:514.213333pt;}
.yc9{bottom:520.533333pt;}
.y107{bottom:524.293333pt;}
.y15b{bottom:527.173333pt;}
.yb5{bottom:529.573333pt;}
.y13{bottom:529.813333pt;}
.y6f{bottom:537.813333pt;}
.y44{bottom:539.253333pt;}
.y106{bottom:539.973333pt;}
.y15a{bottom:542.773333pt;}
.y134{bottom:543.893333pt;}
.yc8{bottom:544.853333pt;}
.yb4{bottom:545.253333pt;}
.y12{bottom:545.493333pt;}
.y8e{bottom:547.093333pt;}
.y43{bottom:554.853333pt;}
.y133{bottom:559.493333pt;}
.yb3{bottom:560.853333pt;}
.y11{bottom:561.093333pt;}
.y159{bottom:566.453333pt;}
.yc7{bottom:569.173333pt;}
.y42{bottom:570.453333pt;}
.y105{bottom:571.573333pt;}
.y132{bottom:575.173333pt;}
.y10{bottom:576.693333pt;}
.y71{bottom:577.733333pt;}
.y158{bottom:582.053333pt;}
.y41{bottom:586.133333pt;}
.y8b{bottom:587.013333pt;}
.y104{bottom:587.173333pt;}
.y131{bottom:590.773333pt;}
.yf{bottom:592.373333pt;}
.yb2{bottom:592.533333pt;}
.yc6{bottom:593.413333pt;}
.y157{bottom:597.653333pt;}
.y40{bottom:601.733333pt;}
.y103{bottom:602.853333pt;}
.yb1{bottom:605.813333pt;}
.y130{bottom:606.453333pt;}
.ye{bottom:607.973333pt;}
.y156{bottom:613.333333pt;}
.y6d{bottom:617.653333pt;}
.yc5{bottom:617.733333pt;}
.y102{bottom:618.453333pt;}
.yef{bottom:620.293333pt;}
.y12f{bottom:622.053333pt;}
.yd{bottom:623.653333pt;}
.y3f{bottom:625.653333pt;}
.y8c{bottom:626.933333pt;}
.yb0{bottom:630.133333pt;}
.y155{bottom:636.933333pt;}
.y12e{bottom:637.653333pt;}
.yc4{bottom:642.053333pt;}
.y101{bottom:642.373333pt;}
.yc{bottom:647.573333pt;}
.yee{bottom:651.973333pt;}
.y12d{bottom:653.333333pt;}
.yaf{bottom:654.373333pt;}
.y154{bottom:660.613333pt;}
.y6c{bottom:660.933333pt;}
.yc3{bottom:666.320000pt;}
.y89{bottom:666.853333pt;}
.yed{bottom:667.573333pt;}
.y3e{bottom:668.613333pt;}
.y12c{bottom:668.933333pt;}
.y153{bottom:676.213333pt;}
.yae{bottom:678.693333pt;}
.yec{bottom:683.253333pt;}
.ydb{bottom:683.973333pt;}
.y3d{bottom:684.213333pt;}
.y12b{bottom:684.613333pt;}
.y100{bottom:685.253333pt;}
.yb{bottom:690.453333pt;}
.y152{bottom:691.813333pt;}
.y6b{bottom:692.613333pt;}
.yeb{bottom:698.853333pt;}
.yda{bottom:699.573333pt;}
.y3c{bottom:699.813333pt;}
.y12a{bottom:700.213333pt;}
.yff{bottom:700.933333pt;}
.yad{bottom:703.013333pt;}
.y8a{bottom:706.773333pt;}
.y151{bottom:707.493333pt;}
.y6a{bottom:708.213333pt;}
.yc2{bottom:709.680000pt;}
.yea{bottom:714.453333pt;}
.yd9{bottom:715.253333pt;}
.y3b{bottom:715.493333pt;}
.y129{bottom:715.813333pt;}
.yfe{bottom:716.533333pt;}
.ya{bottom:722.053333pt;}
.y69{bottom:723.813333pt;}
.yac{bottom:727.333333pt;}
.ye9{bottom:730.133333pt;}
.yd8{bottom:730.853333pt;}
.y150{bottom:731.093333pt;}
.y128{bottom:731.493333pt;}
.yfd{bottom:732.213333pt;}
.yc0{bottom:733.280000pt;}
.y68{bottom:739.493333pt;}
.yd7{bottom:746.453333pt;}
.y87{bottom:746.693333pt;}
.y3a{bottom:747.093333pt;}
.yfc{bottom:747.813333pt;}
.yab{bottom:751.573333pt;}
.y9{bottom:753.733333pt;}
.ye8{bottom:761.733333pt;}
.yd6{bottom:762.133333pt;}
.y14f{bottom:762.373333pt;}
.y39{bottom:762.693333pt;}
.y67{bottom:763.413333pt;}
.yaa{bottom:775.893333pt;}
.ye7{bottom:777.413333pt;}
.y38{bottom:778.373333pt;}
.y127{bottom:778.693333pt;}
.y8{bottom:785.333333pt;}
.y14e{bottom:785.973333pt;}
.y88{bottom:786.613333pt;}
.yd5{bottom:793.733333pt;}
.y37{bottom:793.973333pt;}
.y126{bottom:794.373333pt;}
.yfb{bottom:795.093333pt;}
.ya9{bottom:800.213333pt;}
.y14d{bottom:801.653333pt;}
.y7{bottom:804.373333pt;}
.ye6{bottom:806.053333pt;}
.y66{bottom:806.293333pt;}
.yd4{bottom:809.413333pt;}
.y36{bottom:809.653333pt;}
.y125{bottom:809.973333pt;}
.yfa{bottom:810.693333pt;}
.y14c{bottom:817.253333pt;}
.y6{bottom:819.973333pt;}
.ya8{bottom:824.533333pt;}
.y35{bottom:825.253333pt;}
.y124{bottom:825.653333pt;}
.y85{bottom:826.533333pt;}
.y65{bottom:837.893333pt;}
.yd3{bottom:838.053333pt;}
.yf9{bottom:839.333333pt;}
.y14b{bottom:840.853333pt;}
.y123{bottom:841.253333pt;}
.y5{bottom:848.533333pt;}
.ya7{bottom:848.773333pt;}
.y14a{bottom:856.533333pt;}
.y34{bottom:856.853333pt;}
.y4{bottom:865.733333pt;}
.y86{bottom:866.533333pt;}
.y64{bottom:869.573333pt;}
.y33{bottom:872.533333pt;}
.y122{bottom:872.853333pt;}
.ya6{bottom:873.093333pt;}
.y149{bottom:880.133333pt;}
.y32{bottom:888.133333pt;}
.y121{bottom:888.533333pt;}
.y148{bottom:895.813333pt;}
.ya4{bottom:897.413333pt;}
.y63{bottom:898.160000pt;}
.y3{bottom:899.760000pt;}
.y31{bottom:903.840000pt;}
.y120{bottom:904.160000pt;}
.y83{bottom:906.480000pt;}
.y60{bottom:907.120000pt;}
.y62{bottom:914.320000pt;}
.y30{bottom:919.440000pt;}
.y11f{bottom:919.840000pt;}
.ya3{bottom:921.680000pt;}
.y61{bottom:922.240000pt;}
.y2f{bottom:935.040000pt;}
.y11e{bottom:935.440000pt;}
.ya2{bottom:946.000000pt;}
.y84{bottom:946.400000pt;}
.y2e{bottom:950.720000pt;}
.y5f{bottom:951.040000pt;}
.y147{bottom:958.720000pt;}
.y2d{bottom:966.320000pt;}
.y5e{bottom:966.720000pt;}
.ya1{bottom:970.320000pt;}
.y5d{bottom:982.320000pt;}
.y82{bottom:986.320000pt;}
.y2c{bottom:998.000000pt;}
.y2b{bottom:1013.600000pt;}
.y29{bottom:1061.600000pt;}
.hf{height:23.600000pt;}
.h17{height:23.626667pt;}
.h16{height:23.680000pt;}
.h1a{height:23.706667pt;}
.h2{height:26.686562pt;}
.hc{height:31.553437pt;}
.h6{height:31.806562pt;}
.h3{height:34.765625pt;}
.h13{height:39.200000pt;}
.h15{height:39.226667pt;}
.h11{height:39.280000pt;}
.h7{height:45.246562pt;}
.h8{height:46.446875pt;}
.h9{height:49.581562pt;}
.h5{height:50.896875pt;}
.h1b{height:54.927899pt;}
.ha{height:60.961875pt;}
.h4{height:64.803125pt;}
.hd{height:70.913437pt;}
.h1c{height:77.400000pt;}
.h12{height:79.120000pt;}
.h10{height:79.200000pt;}
.h14{height:79.226667pt;}
.he{height:82.286875pt;}
.hb{height:87.597813pt;}
.h18{height:793.920000pt;}
.h19{height:794.000000pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.w14{width:42.240000pt;}
.w15{width:42.266667pt;}
.w12{width:42.320000pt;}
.w13{width:42.346667pt;}
.wb{width:46.000000pt;}
.w16{width:48.800000pt;}
.wa{width:53.360000pt;}
.wc{width:53.440000pt;}
.wd{width:53.466667pt;}
.w11{width:56.480000pt;}
.w3{width:58.720000pt;}
.w9{width:58.746667pt;}
.w4{width:73.066667pt;}
.w6{width:88.640000pt;}
.w7{width:88.666667pt;}
.w5{width:88.720000pt;}
.w8{width:89.760000pt;}
.w2{width:793.919988pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.wf{width:1122.000000pt;}
.w10{width:1122.239983pt;}
.we{width:1122.240000pt;}
.x0{left:0.000000pt;}
.x21{left:1.520000pt;}
.x7{left:6.880000pt;}
.x1{left:60.480000pt;}
.x40{left:67.439988pt;}
.x1c{left:69.359988pt;}
.x3d{left:73.999988pt;}
.x3a{left:76.239988pt;}
.x36{left:78.559988pt;}
.x42{left:84.479988pt;}
.x20{left:95.999983pt;}
.x44{left:98.319988pt;}
.x43{left:108.479988pt;}
.x8{left:120.560000pt;}
.x12{left:128.000000pt;}
.x22{left:153.840000pt;}
.x2{left:186.506655pt;}
.x13{left:187.466667pt;}
.x9{left:194.266667pt;}
.x23{left:196.800000pt;}
.xf{left:207.146655pt;}
.x3b{left:225.306655pt;}
.x37{left:226.506655pt;}
.x24{left:239.866667pt;}
.x14{left:241.466667pt;}
.x41{left:252.346655pt;}
.x1d{left:253.306655pt;}
.x3e{left:255.386655pt;}
.xa{left:283.626667pt;}
.x15{left:288.186667pt;}
.x25{left:325.866667pt;}
.x4{left:332.986655pt;}
.x16{left:342.186667pt;}
.x1e{left:350.666650pt;}
.x26{left:368.826667pt;}
.xb{left:372.986667pt;}
.x5{left:387.066655pt;}
.x10{left:393.306655pt;}
.x11{left:396.986655pt;}
.x27{left:411.866667pt;}
.x6{left:415.546655pt;}
.x17{left:450.346667pt;}
.x28{left:454.826667pt;}
.xc{left:462.293333pt;}
.x29{left:497.866667pt;}
.x18{left:504.453333pt;}
.x2a{left:540.826667pt;}
.xd{left:552.693333pt;}
.x19{left:558.533333pt;}
.x2b{left:583.866667pt;}
.x1a{left:612.613333pt;}
.x2c{left:626.826667pt;}
.xe{left:643.093333pt;}
.x2d{left:669.786667pt;}
.x38{left:678.293322pt;}
.x1b{left:680.853322pt;}
.x3c{left:682.853322pt;}
.x35{left:684.053322pt;}
.x3f{left:687.253322pt;}
.x39{left:701.413322pt;}
.x3{left:711.413322pt;}
.x2e{left:712.693333pt;}
.x2f{left:755.653333pt;}
.x30{left:798.613333pt;}
.x31{left:841.493333pt;}
.x32{left:884.453333pt;}
.x33{left:927.413333pt;}
.x34{left:976.853333pt;}
.x1f{left:1004.133317pt;}
}




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