
    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_8ec96170a8b4bd7a1104d673.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.921387;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_5b7de6bd7c771e705b900ad7.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.914062;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_6ae27df7cf2b72e48e440e41.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.921387;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_27ecb649bf9beb584b25b551.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.003906;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_73fb1a30a933eac00326d643.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.978027;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_da60be986a22891986b0b5f7.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.914062;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_6193fc93719873dbca485474.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.739746;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_933a72c6e614651cf930fc4f.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.978027;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_6baedc9c1ffded3e30801606.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.999512;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);}
.v2{vertical-align:-23.760000px;}
.v3{vertical-align:-20.880000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:23.760000px;}
.ls1a{letter-spacing:-1.332000px;}
.ls15{letter-spacing:-1.284000px;}
.ls19{letter-spacing:-1.260000px;}
.ls18{letter-spacing:-1.182000px;}
.ls13{letter-spacing:-1.080000px;}
.ls8{letter-spacing:-0.774000px;}
.ls2{letter-spacing:-0.720000px;}
.ls1c{letter-spacing:-0.612000px;}
.ls9{letter-spacing:-0.540000px;}
.ls4{letter-spacing:-0.460200px;}
.ls6{letter-spacing:-0.360000px;}
.ls23{letter-spacing:-0.259800px;}
.ls2a{letter-spacing:-0.253200px;}
.ls11{letter-spacing:-0.206400px;}
.ls12{letter-spacing:-0.106800px;}
.ls3{letter-spacing:-0.053280px;}
.ls1{letter-spacing:0.000000px;}
.lsa{letter-spacing:0.053280px;}
.ls7{letter-spacing:0.106800px;}
.ls22{letter-spacing:0.153600px;}
.lsb{letter-spacing:0.180000px;}
.ls24{letter-spacing:0.206400px;}
.ls5{letter-spacing:0.259800px;}
.lsc{letter-spacing:0.259920px;}
.ls10{letter-spacing:0.298800px;}
.ls20{letter-spacing:0.306600px;}
.ls0{letter-spacing:0.360000px;}
.ls1f{letter-spacing:0.666720px;}
.ls1b{letter-spacing:0.828000px;}
.lsf{letter-spacing:0.900000px;}
.ls14{letter-spacing:1.620000px;}
.lsd{letter-spacing:3.780000px;}
.ls1d{letter-spacing:4.266720px;}
.lse{letter-spacing:4.500000px;}
.ls16{letter-spacing:6.660000px;}
.ls17{letter-spacing:7.380000px;}
.ls27{letter-spacing:9.540000px;}
.ls1e{letter-spacing:12.186720px;}
.ls26{letter-spacing:16.020000px;}
.ls25{letter-spacing:16.506720px;}
.ls28{letter-spacing:18.900000px;}
.ls29{letter-spacing:19.620000px;}
.ls21{letter-spacing:46.026720px;}
.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;}
}
.ws18{word-spacing:-59.760000px;}
.ws3{word-spacing:-24.300000px;}
.ws0{word-spacing:-16.560000px;}
.ws2{word-spacing:-15.840000px;}
.ws4{word-spacing:-15.300000px;}
.ws14{word-spacing:-15.246600px;}
.ws7{word-spacing:-15.199800px;}
.ws17{word-spacing:-15.146400px;}
.ws16{word-spacing:-15.093600px;}
.wsc{word-spacing:-15.046800px;}
.wse{word-spacing:-14.993280px;}
.ws9{word-spacing:-14.940000px;}
.ws5{word-spacing:-14.886720px;}
.wsf{word-spacing:-14.833200px;}
.wsd{word-spacing:-14.733600px;}
.ws19{word-spacing:-14.686800px;}
.ws15{word-spacing:-14.680200px;}
.ws8{word-spacing:-14.580000px;}
.ws6{word-spacing:-14.479800px;}
.wsb{word-spacing:-14.166000px;}
.ws10{word-spacing:-13.860000px;}
.ws12{word-spacing:-13.758000px;}
.ws11{word-spacing:-13.656000px;}
.ws13{word-spacing:-13.608000px;}
.ws1{word-spacing:-10.440000px;}
.wsa{word-spacing:0.000000px;}
._1e{margin-left:-6.834960px;}
._1b{margin-left:-5.720640px;}
._14{margin-left:-4.246320px;}
._11{margin-left:-2.682960px;}
._0{margin-left:-1.080000px;}
._12{width:1.114080px;}
._1{width:2.220000px;}
._13{width:3.662160px;}
._16{width:4.808160px;}
._17{width:6.450480px;}
._18{width:7.450560px;}
._19{width:8.711040px;}
._1c{width:9.720240px;}
._6{width:10.800000px;}
._15{width:11.956560px;}
._1d{width:13.527120px;}
._1a{width:16.553520px;}
._28{width:17.934720px;}
._f{width:18.948000px;}
._1f{width:20.578560px;}
._29{width:23.912400px;}
._22{width:25.040160px;}
._2a{width:31.006800px;}
._23{width:32.239920px;}
._25{width:37.855920px;}
._20{width:39.602880px;}
._24{width:46.873200px;}
._26{width:51.122880px;}
._7{width:76.284960px;}
._10{width:99.660000px;}
._27{width:122.239920px;}
._21{width:145.097280px;}
._8{width:154.080000px;}
._c{width:195.240000px;}
._e{width:199.584000px;}
._2{width:255.692640px;}
._3{width:357.120000px;}
._4{width:388.174560px;}
._5{width:436.320000px;}
._9{width:604.364160px;}
._d{width:637.380000px;}
._a{width:1097.040000px;}
._b{width:1176.060000px;}
.fc3{color:transparent;}
.fc2{color:rgb(5,99,193);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(0,112,192);}
.fs3{font-size:2.880000px;}
.fs6{font-size:38.880000px;}
.fs4{font-size:41.760000px;}
.fs2{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs0{font-size:90.000000px;}
.fs5{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.ye{bottom:5.760000px;}
.y70{bottom:5.805000px;}
.y6c{bottom:5.940000px;}
.ye6{bottom:6.660000px;}
.yf3{bottom:8.280000px;}
.yf6{bottom:8.460000px;}
.ybc{bottom:9.180000px;}
.yb9{bottom:9.360000px;}
.yc3{bottom:10.440000px;}
.y9f{bottom:12.060000px;}
.y6{bottom:12.420000px;}
.yed{bottom:13.140000px;}
.y9b{bottom:16.560000px;}
.ya0{bottom:16.605000px;}
.y8{bottom:18.180000px;}
.y97{bottom:21.060000px;}
.yf7{bottom:24.120000px;}
.yb3{bottom:24.660000px;}
.yca{bottom:25.560000px;}
.ye5{bottom:26.460000px;}
.yd6{bottom:26.865000px;}
.yd4{bottom:27.000000px;}
.yf2{bottom:28.260000px;}
.ybb{bottom:28.980000px;}
.yb8{bottom:29.160000px;}
.yce{bottom:29.700000px;}
.yc2{bottom:30.240000px;}
.y9e{bottom:31.860000px;}
.yec{bottom:32.940000px;}
.yc{bottom:36.000000px;}
.ycf{bottom:39.780000px;}
.y5{bottom:40.320000px;}
.yc9{bottom:45.360000px;}
.yd5{bottom:46.665000px;}
.yd3{bottom:46.800000px;}
.yf1{bottom:48.060000px;}
.yf5{bottom:48.105000px;}
.yfb{bottom:48.780000px;}
.yba{bottom:48.960000px;}
.yb7{bottom:49.005000px;}
.ycd{bottom:49.500000px;}
.yc1{bottom:50.040000px;}
.yeb{bottom:52.920000px;}
.yb{bottom:57.780000px;}
.yc8{bottom:65.160000px;}
.yf0{bottom:67.860000px;}
.y4{bottom:68.400000px;}
.ycc{bottom:69.300000px;}
.yc0{bottom:69.840000px;}
.yea{bottom:72.720000px;}
.yd{bottom:75.960000px;}
.ya{bottom:79.560000px;}
.yc7{bottom:85.140000px;}
.yef{bottom:87.705000px;}
.y3{bottom:96.330000px;}
.ye8{bottom:103.860000px;}
.yc6{bottom:104.940000px;}
.y3a{bottom:108.720000px;}
.yb1{bottom:108.900000px;}
.yd1{bottom:109.125000px;}
.y81{bottom:111.420000px;}
.y12f{bottom:113.040000px;}
.yf9{bottom:113.220000px;}
.yb5{bottom:113.445000px;}
.y132{bottom:113.580000px;}
.y118{bottom:114.660000px;}
.y69{bottom:115.920000px;}
.ye4{bottom:118.620000px;}
.yc5{bottom:124.740000px;}
.y2{bottom:125.670000px;}
.y99{bottom:128.205000px;}
.y39{bottom:128.520000px;}
.yb0{bottom:128.700000px;}
.y80{bottom:131.220000px;}
.y12e{bottom:133.020000px;}
.y131{bottom:133.560000px;}
.y117{bottom:134.460000px;}
.y68{bottom:135.720000px;}
.ye7{bottom:139.320000px;}
.y38{bottom:148.320000px;}
.yaf{bottom:148.680000px;}
.y7f{bottom:151.020000px;}
.y12d{bottom:152.820000px;}
.y130{bottom:153.180000px;}
.y116{bottom:154.260000px;}
.y67{bottom:155.520000px;}
.ye3{bottom:159.840000px;}
.y37{bottom:168.300000px;}
.yae{bottom:168.480000px;}
.y7e{bottom:171.000000px;}
.y12c{bottom:172.620000px;}
.y115{bottom:174.240000px;}
.y66{bottom:175.500000px;}
.ye2{bottom:186.300000px;}
.y36{bottom:188.100000px;}
.yad{bottom:188.280000px;}
.y7d{bottom:190.800000px;}
.y12b{bottom:192.420000px;}
.y114{bottom:194.040000px;}
.y65{bottom:195.300000px;}
.ye1{bottom:203.580000px;}
.y35{bottom:207.900000px;}
.yac{bottom:208.080000px;}
.y7c{bottom:210.630000px;}
.y12a{bottom:212.250000px;}
.y113{bottom:213.870000px;}
.y64{bottom:215.130000px;}
.ye0{bottom:223.410000px;}
.y34{bottom:227.730000px;}
.yab{bottom:227.910000px;}
.y7b{bottom:230.430000px;}
.y129{bottom:232.230000px;}
.y112{bottom:233.670000px;}
.y63{bottom:234.930000px;}
.ydf{bottom:243.210000px;}
.y33{bottom:247.530000px;}
.yaa{bottom:247.890000px;}
.y7a{bottom:250.230000px;}
.y128{bottom:252.030000px;}
.y111{bottom:253.470000px;}
.y62{bottom:254.730000px;}
.yde{bottom:263.010000px;}
.y32{bottom:267.510000px;}
.ya9{bottom:267.690000px;}
.y79{bottom:270.030000px;}
.y127{bottom:271.830000px;}
.y110{bottom:273.450000px;}
.y61{bottom:274.530000px;}
.ydd{bottom:282.810000px;}
.y31{bottom:287.310000px;}
.ya8{bottom:287.490000px;}
.y78{bottom:290.010000px;}
.y126{bottom:291.630000px;}
.y10f{bottom:293.250000px;}
.y60{bottom:294.510000px;}
.ya7{bottom:307.290000px;}
.y77{bottom:309.810000px;}
.y125{bottom:311.430000px;}
.ydc{bottom:311.610000px;}
.y10e{bottom:313.050000px;}
.y5f{bottom:314.310000px;}
.y30{bottom:316.110000px;}
.ya6{bottom:327.090000px;}
.y76{bottom:329.610000px;}
.y124{bottom:331.410000px;}
.ydb{bottom:331.590000px;}
.y10d{bottom:332.850000px;}
.y5e{bottom:334.110000px;}
.y2f{bottom:335.910000px;}
.ya5{bottom:347.070000px;}
.y75{bottom:349.410000px;}
.y123{bottom:351.210000px;}
.yda{bottom:351.390000px;}
.y10c{bottom:352.650000px;}
.y5d{bottom:353.910000px;}
.y2e{bottom:355.710000px;}
.ya4{bottom:366.870000px;}
.y74{bottom:369.210000px;}
.y122{bottom:371.010000px;}
.yd9{bottom:371.190000px;}
.y10b{bottom:372.630000px;}
.y5c{bottom:373.710000px;}
.y2d{bottom:375.690000px;}
.ya3{bottom:386.670000px;}
.y73{bottom:389.190000px;}
.y121{bottom:390.810000px;}
.yd8{bottom:390.990000px;}
.y10a{bottom:392.430000px;}
.y5b{bottom:393.690000px;}
.y2c{bottom:395.490000px;}
.ya2{bottom:406.470000px;}
.y72{bottom:408.990000px;}
.y120{bottom:410.610000px;}
.yd7{bottom:410.790000px;}
.y109{bottom:412.230000px;}
.y5a{bottom:413.490000px;}
.y2b{bottom:415.290000px;}
.ya1{bottom:426.270000px;}
.yd0{bottom:426.450000px;}
.y71{bottom:428.790000px;}
.y11f{bottom:430.590000px;}
.y108{bottom:432.030000px;}
.y59{bottom:433.290000px;}
.y2a{bottom:435.090000px;}
.y98{bottom:441.930000px;}
.y6f{bottom:443.550000px;}
.y11e{bottom:450.435000px;}
.y107{bottom:451.875000px;}
.y58{bottom:453.135000px;}
.y29{bottom:454.935000px;}
.y6e{bottom:464.295000px;}
.y11d{bottom:470.235000px;}
.y106{bottom:471.855000px;}
.y57{bottom:472.935000px;}
.y9d{bottom:474.195000px;}
.y28{bottom:474.915000px;}
.y6d{bottom:484.815000px;}
.yd2{bottom:488.775000px;}
.y11c{bottom:490.035000px;}
.y105{bottom:491.655000px;}
.y56{bottom:492.915000px;}
.y27{bottom:494.715000px;}
.y6b{bottom:505.335000px;}
.y11b{bottom:509.835000px;}
.y104{bottom:511.455000px;}
.y55{bottom:512.715000px;}
.y26{bottom:514.515000px;}
.y9c{bottom:521.535000px;}
.y6a{bottom:526.035000px;}
.y11a{bottom:531.075000px;}
.y103{bottom:531.255000px;}
.y54{bottom:532.515000px;}
.y25{bottom:534.315000px;}
.y119{bottom:550.875000px;}
.y102{bottom:551.055000px;}
.yc4{bottom:551.235000px;}
.y53{bottom:552.315000px;}
.y9a{bottom:553.575000px;}
.y24{bottom:554.115000px;}
.y101{bottom:571.035000px;}
.y52{bottom:572.115000px;}
.y23{bottom:574.095000px;}
.y96{bottom:585.615000px;}
.y100{bottom:590.835000px;}
.y51{bottom:592.095000px;}
.y22{bottom:593.895000px;}
.ycb{bottom:606.675000px;}
.yff{bottom:610.635000px;}
.y50{bottom:611.895000px;}
.y21{bottom:613.695000px;}
.y95{bottom:626.475000px;}
.yfe{bottom:630.435000px;}
.y4f{bottom:631.695000px;}
.y20{bottom:633.495000px;}
.y94{bottom:646.275000px;}
.yfd{bottom:650.235000px;}
.y4e{bottom:651.495000px;}
.y1f{bottom:653.295000px;}
.y93{bottom:666.075000px;}
.yfc{bottom:670.215000px;}
.y4d{bottom:671.295000px;}
.y1e{bottom:673.275000px;}
.y92{bottom:686.085000px;}
.ybf{bottom:690.045000px;}
.y4c{bottom:691.305000px;}
.y1d{bottom:693.105000px;}
.yf8{bottom:705.525000px;}
.y91{bottom:705.885000px;}
.y4b{bottom:711.105000px;}
.y1c{bottom:712.905000px;}
.y90{bottom:725.685000px;}
.y4a{bottom:730.905000px;}
.y1b{bottom:732.705000px;}
.y8f{bottom:745.485000px;}
.y49{bottom:750.705000px;}
.y1a{bottom:752.505000px;}
.y8e{bottom:765.285000px;}
.yfa{bottom:769.965000px;}
.y48{bottom:770.505000px;}
.y19{bottom:772.485000px;}
.ybe{bottom:779.685000px;}
.y8d{bottom:785.265000px;}
.y47{bottom:790.485000px;}
.y18{bottom:792.285000px;}
.ybd{bottom:799.665000px;}
.y8c{bottom:805.065000px;}
.y46{bottom:810.285000px;}
.y17{bottom:812.085000px;}
.yb4{bottom:815.145000px;}
.y8b{bottom:824.865000px;}
.y45{bottom:830.085000px;}
.y16{bottom:831.885000px;}
.yee{bottom:834.225000px;}
.y8a{bottom:844.665000px;}
.y44{bottom:849.885000px;}
.y15{bottom:851.685000px;}
.y89{bottom:864.465000px;}
.y43{bottom:869.685000px;}
.yf4{bottom:873.825000px;}
.y14{bottom:876.885000px;}
.yb6{bottom:879.585000px;}
.y88{bottom:884.265000px;}
.y42{bottom:889.665000px;}
.y13{bottom:892.005000px;}
.y87{bottom:899.205000px;}
.y41{bottom:909.465000px;}
.y12{bottom:913.785000px;}
.y86{bottom:919.770000px;}
.y40{bottom:929.310000px;}
.ye9{bottom:935.970000px;}
.y11{bottom:938.670000px;}
.y85{bottom:940.290000px;}
.yb2{bottom:944.250000px;}
.y3f{bottom:949.110000px;}
.y84{bottom:960.990000px;}
.y3e{bottom:968.910000px;}
.y10{bottom:970.530000px;}
.y83{bottom:981.510000px;}
.y3d{bottom:988.890000px;}
.y82{bottom:1002.030000px;}
.yf{bottom:1002.210000px;}
.y3c{bottom:1008.690000px;}
.y3b{bottom:1028.490000px;}
.y9{bottom:1046.130000px;}
.y1{bottom:1062.330000px;}
.y7{bottom:1096.530000px;}
.h6{height:2.010938px;}
.h11{height:19.800000px;}
.h13{height:19.836000px;}
.h12{height:19.980000px;}
.hb{height:21.240000px;}
.hd{height:27.147656px;}
.h16{height:30.600000px;}
.h18{height:30.636000px;}
.h7{height:33.480000px;}
.h14{height:35.100000px;}
.h28{height:38.160000px;}
.h19{height:38.700000px;}
.h24{height:40.500000px;}
.hf{height:41.726953px;}
.he{height:42.164648px;}
.h2b{height:43.506914px;}
.h2d{height:45.024258px;}
.h10{height:45.549492px;}
.h17{height:45.900000px;}
.h8{height:46.251562px;}
.h4{height:46.736719px;}
.h2c{height:48.224531px;}
.h9{height:53.224453px;}
.h20{height:53.820000px;}
.h23{height:60.696000px;}
.h22{height:60.840000px;}
.h27{height:62.136000px;}
.h2a{height:62.820000px;}
.h1c{height:63.000000px;}
.h1b{height:63.036000px;}
.h3{height:63.500977px;}
.ha{height:65.884219px;}
.hc{height:67.565039px;}
.h1f{height:83.376000px;}
.h1d{height:83.880000px;}
.h25{height:86.760000px;}
.h26{height:101.736000px;}
.h5{height:112.536000px;}
.h21{height:123.156000px;}
.h29{height:127.260000px;}
.h1a{height:127.476000px;}
.h1e{height:138.816000px;}
.h15{height:142.236000px;}
.h2{height:146.736000px;}
.h1{height:1263.000000px;}
.h0{height:1263.060000px;}
.w5{width:9.900000px;}
.w30{width:42.660000px;}
.w26{width:42.696000px;}
.w29{width:46.296000px;}
.w31{width:53.640000px;}
.w32{width:53.820000px;}
.w3a{width:54.936000px;}
.w1d{width:55.116000px;}
.w13{width:55.260000px;}
.w38{width:55.476000px;}
.w24{width:56.736000px;}
.w1e{width:63.720000px;}
.w2a{width:64.260000px;}
.w23{width:67.860000px;}
.w22{width:69.336000px;}
.wc{width:69.696000px;}
.w36{width:72.936000px;}
.w17{width:75.600000px;}
.w11{width:75.780000px;}
.w10{width:75.816000px;}
.w16{width:76.536000px;}
.w12{width:76.716000px;}
.w1f{width:77.796000px;}
.w20{width:78.120000px;}
.wd{width:79.380000px;}
.w1c{width:79.920000px;}
.w33{width:83.196000px;}
.w37{width:84.240000px;}
.w8{width:86.220000px;}
.wa{width:91.656000px;}
.w34{width:94.140000px;}
.w28{width:106.020000px;}
.w18{width:106.956000px;}
.w15{width:110.016000px;}
.w39{width:110.700000px;}
.w27{width:119.736000px;}
.w6{width:123.336000px;}
.w25{width:124.920000px;}
.w2b{width:124.956000px;}
.w3{width:130.896000px;}
.w2c{width:134.316000px;}
.w21{width:138.636000px;}
.w7{width:151.770000px;}
.w35{width:158.610000px;}
.w9{width:159.870000px;}
.w14{width:184.710000px;}
.wb{width:213.510000px;}
.w2f{width:221.115000px;}
.w1b{width:224.355000px;}
.we{width:233.175000px;}
.w2d{width:265.395000px;}
.w19{width:305.895000px;}
.wf{width:349.995000px;}
.w1a{width:476.025000px;}
.w2e{width:493.485000px;}
.w2{width:649.410000px;}
.w1{width:893.250000px;}
.w4{width:893.339987px;}
.w0{width:893.340000px;}
.x0{left:0.000000px;}
.xf{left:1.080000px;}
.x41{left:2.700000px;}
.x24{left:4.500000px;}
.x17{left:6.300000px;}
.x2{left:8.100000px;}
.x1b{left:9.174000px;}
.x51{left:10.260000px;}
.x2e{left:11.340000px;}
.x4c{left:13.320000px;}
.x39{left:14.580000px;}
.x38{left:15.840000px;}
.x44{left:17.460000px;}
.x20{left:18.900000px;}
.x2c{left:20.700000px;}
.x16{left:21.780000px;}
.x1f{left:23.400000px;}
.x18{left:28.440000px;}
.x3d{left:44.280000px;}
.x5{left:53.999987px;}
.x19{left:55.259987px;}
.x1{left:56.520000px;}
.x7{left:60.299987px;}
.x8{left:65.159987px;}
.x45{left:66.420000px;}
.x52{left:76.175987px;}
.x54{left:81.035987px;}
.x53{left:97.415987px;}
.x11{left:99.180000px;}
.x14{left:103.005000px;}
.xd{left:108.035987px;}
.x3b{left:111.636000px;}
.x4{left:118.290000px;}
.x4f{left:121.896000px;}
.xe{left:141.336000px;}
.x31{left:143.130000px;}
.x1a{left:149.616000px;}
.x22{left:156.810000px;}
.x21{left:160.769987px;}
.x28{left:162.029987px;}
.x46{left:165.090000px;}
.x30{left:176.610000px;}
.x29{left:197.130000px;}
.xc{left:206.849987px;}
.x26{left:212.070000px;}
.xb{left:223.589987px;}
.x50{left:232.770000px;}
.x3c{left:236.550000px;}
.x10{left:264.675000px;}
.x3e{left:270.075000px;}
.x32{left:280.875000px;}
.x48{left:289.155000px;}
.x47{left:333.435000px;}
.x9{left:345.494987px;}
.x1c{left:363.135000px;}
.x3f{left:376.095000px;}
.x2a{left:381.855000px;}
.x49{left:388.515000px;}
.x27{left:396.795000px;}
.x12{left:416.445000px;}
.x33{left:418.965000px;}
.x40{left:422.385000px;}
.x1d{left:432.825000px;}
.xa{left:446.864987px;}
.x2b{left:460.005000px;}
.x34{left:475.665000px;}
.x42{left:486.645000px;}
.x4a{left:487.905000px;}
.x13{left:502.665000px;}
.x23{left:508.245000px;}
.x1e{left:512.205000px;}
.x2d{left:537.225000px;}
.x35{left:540.825000px;}
.x4b{left:572.550000px;}
.x25{left:585.690000px;}
.x43{left:611.610000px;}
.x36{left:620.250000px;}
.x2f{left:645.630000px;}
.x15{left:662.550000px;}
.x4d{left:668.310000px;}
.x37{left:699.810000px;}
.x3{left:705.930000px;}
.x4e{left:742.680000px;}
.x3a{left:770.580000px;}
.x6{left:829.620000px;}
@media print{
.v2{vertical-align:-21.120000pt;}
.v3{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.120000pt;}
.ls1a{letter-spacing:-1.184000pt;}
.ls15{letter-spacing:-1.141333pt;}
.ls19{letter-spacing:-1.120000pt;}
.ls18{letter-spacing:-1.050667pt;}
.ls13{letter-spacing:-0.960000pt;}
.ls8{letter-spacing:-0.688000pt;}
.ls2{letter-spacing:-0.640000pt;}
.ls1c{letter-spacing:-0.544000pt;}
.ls9{letter-spacing:-0.480000pt;}
.ls4{letter-spacing:-0.409067pt;}
.ls6{letter-spacing:-0.320000pt;}
.ls23{letter-spacing:-0.230933pt;}
.ls2a{letter-spacing:-0.225067pt;}
.ls11{letter-spacing:-0.183467pt;}
.ls12{letter-spacing:-0.094933pt;}
.ls3{letter-spacing:-0.047360pt;}
.ls1{letter-spacing:0.000000pt;}
.lsa{letter-spacing:0.047360pt;}
.ls7{letter-spacing:0.094933pt;}
.ls22{letter-spacing:0.136533pt;}
.lsb{letter-spacing:0.160000pt;}
.ls24{letter-spacing:0.183467pt;}
.ls5{letter-spacing:0.230933pt;}
.lsc{letter-spacing:0.231040pt;}
.ls10{letter-spacing:0.265600pt;}
.ls20{letter-spacing:0.272533pt;}
.ls0{letter-spacing:0.320000pt;}
.ls1f{letter-spacing:0.592640pt;}
.ls1b{letter-spacing:0.736000pt;}
.lsf{letter-spacing:0.800000pt;}
.ls14{letter-spacing:1.440000pt;}
.lsd{letter-spacing:3.360000pt;}
.ls1d{letter-spacing:3.792640pt;}
.lse{letter-spacing:4.000000pt;}
.ls16{letter-spacing:5.920000pt;}
.ls17{letter-spacing:6.560000pt;}
.ls27{letter-spacing:8.480000pt;}
.ls1e{letter-spacing:10.832640pt;}
.ls26{letter-spacing:14.240000pt;}
.ls25{letter-spacing:14.672640pt;}
.ls28{letter-spacing:16.800000pt;}
.ls29{letter-spacing:17.440000pt;}
.ls21{letter-spacing:40.912640pt;}
.ws18{word-spacing:-53.120000pt;}
.ws3{word-spacing:-21.600000pt;}
.ws0{word-spacing:-14.720000pt;}
.ws2{word-spacing:-14.080000pt;}
.ws4{word-spacing:-13.600000pt;}
.ws14{word-spacing:-13.552533pt;}
.ws7{word-spacing:-13.510933pt;}
.ws17{word-spacing:-13.463467pt;}
.ws16{word-spacing:-13.416533pt;}
.wsc{word-spacing:-13.374933pt;}
.wse{word-spacing:-13.327360pt;}
.ws9{word-spacing:-13.280000pt;}
.ws5{word-spacing:-13.232640pt;}
.wsf{word-spacing:-13.185067pt;}
.wsd{word-spacing:-13.096533pt;}
.ws19{word-spacing:-13.054933pt;}
.ws15{word-spacing:-13.049067pt;}
.ws8{word-spacing:-12.960000pt;}
.ws6{word-spacing:-12.870933pt;}
.wsb{word-spacing:-12.592000pt;}
.ws10{word-spacing:-12.320000pt;}
.ws12{word-spacing:-12.229333pt;}
.ws11{word-spacing:-12.138667pt;}
.ws13{word-spacing:-12.096000pt;}
.ws1{word-spacing:-9.280000pt;}
.wsa{word-spacing:0.000000pt;}
._1e{margin-left:-6.075520pt;}
._1b{margin-left:-5.085013pt;}
._14{margin-left:-3.774507pt;}
._11{margin-left:-2.384853pt;}
._0{margin-left:-0.960000pt;}
._12{width:0.990293pt;}
._1{width:1.973333pt;}
._13{width:3.255253pt;}
._16{width:4.273920pt;}
._17{width:5.733760pt;}
._18{width:6.622720pt;}
._19{width:7.743147pt;}
._1c{width:8.640213pt;}
._6{width:9.600000pt;}
._15{width:10.628053pt;}
._1d{width:12.024107pt;}
._1a{width:14.714240pt;}
._28{width:15.941973pt;}
._f{width:16.842667pt;}
._1f{width:18.292053pt;}
._29{width:21.255467pt;}
._22{width:22.257920pt;}
._2a{width:27.561600pt;}
._23{width:28.657707pt;}
._25{width:33.649707pt;}
._20{width:35.202560pt;}
._24{width:41.665067pt;}
._26{width:45.442560pt;}
._7{width:67.808853pt;}
._10{width:88.586667pt;}
._27{width:108.657707pt;}
._21{width:128.975360pt;}
._8{width:136.960000pt;}
._c{width:173.546667pt;}
._e{width:177.408000pt;}
._2{width:227.282347pt;}
._3{width:317.440000pt;}
._4{width:345.044053pt;}
._5{width:387.840000pt;}
._9{width:537.212587pt;}
._d{width:566.560000pt;}
._a{width:975.146667pt;}
._b{width:1045.386667pt;}
.fs3{font-size:2.560000pt;}
.fs6{font-size:34.560000pt;}
.fs4{font-size:37.120000pt;}
.fs2{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs0{font-size:80.000000pt;}
.fs5{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.ye{bottom:5.120000pt;}
.y70{bottom:5.160000pt;}
.y6c{bottom:5.280000pt;}
.ye6{bottom:5.920000pt;}
.yf3{bottom:7.360000pt;}
.yf6{bottom:7.520000pt;}
.ybc{bottom:8.160000pt;}
.yb9{bottom:8.320000pt;}
.yc3{bottom:9.280000pt;}
.y9f{bottom:10.720000pt;}
.y6{bottom:11.040000pt;}
.yed{bottom:11.680000pt;}
.y9b{bottom:14.720000pt;}
.ya0{bottom:14.760000pt;}
.y8{bottom:16.160000pt;}
.y97{bottom:18.720000pt;}
.yf7{bottom:21.440000pt;}
.yb3{bottom:21.920000pt;}
.yca{bottom:22.720000pt;}
.ye5{bottom:23.520000pt;}
.yd6{bottom:23.880000pt;}
.yd4{bottom:24.000000pt;}
.yf2{bottom:25.120000pt;}
.ybb{bottom:25.760000pt;}
.yb8{bottom:25.920000pt;}
.yce{bottom:26.400000pt;}
.yc2{bottom:26.880000pt;}
.y9e{bottom:28.320000pt;}
.yec{bottom:29.280000pt;}
.yc{bottom:32.000000pt;}
.ycf{bottom:35.360000pt;}
.y5{bottom:35.840000pt;}
.yc9{bottom:40.320000pt;}
.yd5{bottom:41.480000pt;}
.yd3{bottom:41.600000pt;}
.yf1{bottom:42.720000pt;}
.yf5{bottom:42.760000pt;}
.yfb{bottom:43.360000pt;}
.yba{bottom:43.520000pt;}
.yb7{bottom:43.560000pt;}
.ycd{bottom:44.000000pt;}
.yc1{bottom:44.480000pt;}
.yeb{bottom:47.040000pt;}
.yb{bottom:51.360000pt;}
.yc8{bottom:57.920000pt;}
.yf0{bottom:60.320000pt;}
.y4{bottom:60.800000pt;}
.ycc{bottom:61.600000pt;}
.yc0{bottom:62.080000pt;}
.yea{bottom:64.640000pt;}
.yd{bottom:67.520000pt;}
.ya{bottom:70.720000pt;}
.yc7{bottom:75.680000pt;}
.yef{bottom:77.960000pt;}
.y3{bottom:85.626667pt;}
.ye8{bottom:92.320000pt;}
.yc6{bottom:93.280000pt;}
.y3a{bottom:96.640000pt;}
.yb1{bottom:96.800000pt;}
.yd1{bottom:97.000000pt;}
.y81{bottom:99.040000pt;}
.y12f{bottom:100.480000pt;}
.yf9{bottom:100.640000pt;}
.yb5{bottom:100.840000pt;}
.y132{bottom:100.960000pt;}
.y118{bottom:101.920000pt;}
.y69{bottom:103.040000pt;}
.ye4{bottom:105.440000pt;}
.yc5{bottom:110.880000pt;}
.y2{bottom:111.706667pt;}
.y99{bottom:113.960000pt;}
.y39{bottom:114.240000pt;}
.yb0{bottom:114.400000pt;}
.y80{bottom:116.640000pt;}
.y12e{bottom:118.240000pt;}
.y131{bottom:118.720000pt;}
.y117{bottom:119.520000pt;}
.y68{bottom:120.640000pt;}
.ye7{bottom:123.840000pt;}
.y38{bottom:131.840000pt;}
.yaf{bottom:132.160000pt;}
.y7f{bottom:134.240000pt;}
.y12d{bottom:135.840000pt;}
.y130{bottom:136.160000pt;}
.y116{bottom:137.120000pt;}
.y67{bottom:138.240000pt;}
.ye3{bottom:142.080000pt;}
.y37{bottom:149.600000pt;}
.yae{bottom:149.760000pt;}
.y7e{bottom:152.000000pt;}
.y12c{bottom:153.440000pt;}
.y115{bottom:154.880000pt;}
.y66{bottom:156.000000pt;}
.ye2{bottom:165.600000pt;}
.y36{bottom:167.200000pt;}
.yad{bottom:167.360000pt;}
.y7d{bottom:169.600000pt;}
.y12b{bottom:171.040000pt;}
.y114{bottom:172.480000pt;}
.y65{bottom:173.600000pt;}
.ye1{bottom:180.960000pt;}
.y35{bottom:184.800000pt;}
.yac{bottom:184.960000pt;}
.y7c{bottom:187.226667pt;}
.y12a{bottom:188.666667pt;}
.y113{bottom:190.106667pt;}
.y64{bottom:191.226667pt;}
.ye0{bottom:198.586667pt;}
.y34{bottom:202.426667pt;}
.yab{bottom:202.586667pt;}
.y7b{bottom:204.826667pt;}
.y129{bottom:206.426667pt;}
.y112{bottom:207.706667pt;}
.y63{bottom:208.826667pt;}
.ydf{bottom:216.186667pt;}
.y33{bottom:220.026667pt;}
.yaa{bottom:220.346667pt;}
.y7a{bottom:222.426667pt;}
.y128{bottom:224.026667pt;}
.y111{bottom:225.306667pt;}
.y62{bottom:226.426667pt;}
.yde{bottom:233.786667pt;}
.y32{bottom:237.786667pt;}
.ya9{bottom:237.946667pt;}
.y79{bottom:240.026667pt;}
.y127{bottom:241.626667pt;}
.y110{bottom:243.066667pt;}
.y61{bottom:244.026667pt;}
.ydd{bottom:251.386667pt;}
.y31{bottom:255.386667pt;}
.ya8{bottom:255.546667pt;}
.y78{bottom:257.786667pt;}
.y126{bottom:259.226667pt;}
.y10f{bottom:260.666667pt;}
.y60{bottom:261.786667pt;}
.ya7{bottom:273.146667pt;}
.y77{bottom:275.386667pt;}
.y125{bottom:276.826667pt;}
.ydc{bottom:276.986667pt;}
.y10e{bottom:278.266667pt;}
.y5f{bottom:279.386667pt;}
.y30{bottom:280.986667pt;}
.ya6{bottom:290.746667pt;}
.y76{bottom:292.986667pt;}
.y124{bottom:294.586667pt;}
.ydb{bottom:294.746667pt;}
.y10d{bottom:295.866667pt;}
.y5e{bottom:296.986667pt;}
.y2f{bottom:298.586667pt;}
.ya5{bottom:308.506667pt;}
.y75{bottom:310.586667pt;}
.y123{bottom:312.186667pt;}
.yda{bottom:312.346667pt;}
.y10c{bottom:313.466667pt;}
.y5d{bottom:314.586667pt;}
.y2e{bottom:316.186667pt;}
.ya4{bottom:326.106667pt;}
.y74{bottom:328.186667pt;}
.y122{bottom:329.786667pt;}
.yd9{bottom:329.946667pt;}
.y10b{bottom:331.226667pt;}
.y5c{bottom:332.186667pt;}
.y2d{bottom:333.946667pt;}
.ya3{bottom:343.706667pt;}
.y73{bottom:345.946667pt;}
.y121{bottom:347.386667pt;}
.yd8{bottom:347.546667pt;}
.y10a{bottom:348.826667pt;}
.y5b{bottom:349.946667pt;}
.y2c{bottom:351.546667pt;}
.ya2{bottom:361.306667pt;}
.y72{bottom:363.546667pt;}
.y120{bottom:364.986667pt;}
.yd7{bottom:365.146667pt;}
.y109{bottom:366.426667pt;}
.y5a{bottom:367.546667pt;}
.y2b{bottom:369.146667pt;}
.ya1{bottom:378.906667pt;}
.yd0{bottom:379.066667pt;}
.y71{bottom:381.146667pt;}
.y11f{bottom:382.746667pt;}
.y108{bottom:384.026667pt;}
.y59{bottom:385.146667pt;}
.y2a{bottom:386.746667pt;}
.y98{bottom:392.826667pt;}
.y6f{bottom:394.266667pt;}
.y11e{bottom:400.386667pt;}
.y107{bottom:401.666667pt;}
.y58{bottom:402.786667pt;}
.y29{bottom:404.386667pt;}
.y6e{bottom:412.706667pt;}
.y11d{bottom:417.986667pt;}
.y106{bottom:419.426667pt;}
.y57{bottom:420.386667pt;}
.y9d{bottom:421.506667pt;}
.y28{bottom:422.146667pt;}
.y6d{bottom:430.946667pt;}
.yd2{bottom:434.466667pt;}
.y11c{bottom:435.586667pt;}
.y105{bottom:437.026667pt;}
.y56{bottom:438.146667pt;}
.y27{bottom:439.746667pt;}
.y6b{bottom:449.186667pt;}
.y11b{bottom:453.186667pt;}
.y104{bottom:454.626667pt;}
.y55{bottom:455.746667pt;}
.y26{bottom:457.346667pt;}
.y9c{bottom:463.586667pt;}
.y6a{bottom:467.586667pt;}
.y11a{bottom:472.066667pt;}
.y103{bottom:472.226667pt;}
.y54{bottom:473.346667pt;}
.y25{bottom:474.946667pt;}
.y119{bottom:489.666667pt;}
.y102{bottom:489.826667pt;}
.yc4{bottom:489.986667pt;}
.y53{bottom:490.946667pt;}
.y9a{bottom:492.066667pt;}
.y24{bottom:492.546667pt;}
.y101{bottom:507.586667pt;}
.y52{bottom:508.546667pt;}
.y23{bottom:510.306667pt;}
.y96{bottom:520.546667pt;}
.y100{bottom:525.186667pt;}
.y51{bottom:526.306667pt;}
.y22{bottom:527.906667pt;}
.ycb{bottom:539.266667pt;}
.yff{bottom:542.786667pt;}
.y50{bottom:543.906667pt;}
.y21{bottom:545.506667pt;}
.y95{bottom:556.866667pt;}
.yfe{bottom:560.386667pt;}
.y4f{bottom:561.506667pt;}
.y20{bottom:563.106667pt;}
.y94{bottom:574.466667pt;}
.yfd{bottom:577.986667pt;}
.y4e{bottom:579.106667pt;}
.y1f{bottom:580.706667pt;}
.y93{bottom:592.066667pt;}
.yfc{bottom:595.746667pt;}
.y4d{bottom:596.706667pt;}
.y1e{bottom:598.466667pt;}
.y92{bottom:609.853333pt;}
.ybf{bottom:613.373333pt;}
.y4c{bottom:614.493333pt;}
.y1d{bottom:616.093333pt;}
.yf8{bottom:627.133333pt;}
.y91{bottom:627.453333pt;}
.y4b{bottom:632.093333pt;}
.y1c{bottom:633.693333pt;}
.y90{bottom:645.053333pt;}
.y4a{bottom:649.693333pt;}
.y1b{bottom:651.293333pt;}
.y8f{bottom:662.653333pt;}
.y49{bottom:667.293333pt;}
.y1a{bottom:668.893333pt;}
.y8e{bottom:680.253333pt;}
.yfa{bottom:684.413333pt;}
.y48{bottom:684.893333pt;}
.y19{bottom:686.653333pt;}
.ybe{bottom:693.053333pt;}
.y8d{bottom:698.013333pt;}
.y47{bottom:702.653333pt;}
.y18{bottom:704.253333pt;}
.ybd{bottom:710.813333pt;}
.y8c{bottom:715.613333pt;}
.y46{bottom:720.253333pt;}
.y17{bottom:721.853333pt;}
.yb4{bottom:724.573333pt;}
.y8b{bottom:733.213333pt;}
.y45{bottom:737.853333pt;}
.y16{bottom:739.453333pt;}
.yee{bottom:741.533333pt;}
.y8a{bottom:750.813333pt;}
.y44{bottom:755.453333pt;}
.y15{bottom:757.053333pt;}
.y89{bottom:768.413333pt;}
.y43{bottom:773.053333pt;}
.yf4{bottom:776.733333pt;}
.y14{bottom:779.453333pt;}
.yb6{bottom:781.853333pt;}
.y88{bottom:786.013333pt;}
.y42{bottom:790.813333pt;}
.y13{bottom:792.893333pt;}
.y87{bottom:799.293333pt;}
.y41{bottom:808.413333pt;}
.y12{bottom:812.253333pt;}
.y86{bottom:817.573333pt;}
.y40{bottom:826.053333pt;}
.ye9{bottom:831.973333pt;}
.y11{bottom:834.373333pt;}
.y85{bottom:835.813333pt;}
.yb2{bottom:839.333333pt;}
.y3f{bottom:843.653333pt;}
.y84{bottom:854.213333pt;}
.y3e{bottom:861.253333pt;}
.y10{bottom:862.693333pt;}
.y83{bottom:872.453333pt;}
.y3d{bottom:879.013333pt;}
.y82{bottom:890.693333pt;}
.yf{bottom:890.853333pt;}
.y3c{bottom:896.613333pt;}
.y3b{bottom:914.213333pt;}
.y9{bottom:929.893333pt;}
.y1{bottom:944.293333pt;}
.y7{bottom:974.693333pt;}
.h6{height:1.787500pt;}
.h11{height:17.600000pt;}
.h13{height:17.632000pt;}
.h12{height:17.760000pt;}
.hb{height:18.880000pt;}
.hd{height:24.131250pt;}
.h16{height:27.200000pt;}
.h18{height:27.232000pt;}
.h7{height:29.760000pt;}
.h14{height:31.200000pt;}
.h28{height:33.920000pt;}
.h19{height:34.400000pt;}
.h24{height:36.000000pt;}
.hf{height:37.090625pt;}
.he{height:37.479688pt;}
.h2b{height:38.672812pt;}
.h2d{height:40.021563pt;}
.h10{height:40.488438pt;}
.h17{height:40.800000pt;}
.h8{height:41.112500pt;}
.h4{height:41.543750pt;}
.h2c{height:42.866250pt;}
.h9{height:47.310625pt;}
.h20{height:47.840000pt;}
.h23{height:53.952000pt;}
.h22{height:54.080000pt;}
.h27{height:55.232000pt;}
.h2a{height:55.840000pt;}
.h1c{height:56.000000pt;}
.h1b{height:56.032000pt;}
.h3{height:56.445312pt;}
.ha{height:58.563750pt;}
.hc{height:60.057813pt;}
.h1f{height:74.112000pt;}
.h1d{height:74.560000pt;}
.h25{height:77.120000pt;}
.h26{height:90.432000pt;}
.h5{height:100.032000pt;}
.h21{height:109.472000pt;}
.h29{height:113.120000pt;}
.h1a{height:113.312000pt;}
.h1e{height:123.392000pt;}
.h15{height:126.432000pt;}
.h2{height:130.432000pt;}
.h1{height:1122.666667pt;}
.h0{height:1122.720000pt;}
.w5{width:8.800000pt;}
.w30{width:37.920000pt;}
.w26{width:37.952000pt;}
.w29{width:41.152000pt;}
.w31{width:47.680000pt;}
.w32{width:47.840000pt;}
.w3a{width:48.832000pt;}
.w1d{width:48.992000pt;}
.w13{width:49.120000pt;}
.w38{width:49.312000pt;}
.w24{width:50.432000pt;}
.w1e{width:56.640000pt;}
.w2a{width:57.120000pt;}
.w23{width:60.320000pt;}
.w22{width:61.632000pt;}
.wc{width:61.952000pt;}
.w36{width:64.832000pt;}
.w17{width:67.200000pt;}
.w11{width:67.360000pt;}
.w10{width:67.392000pt;}
.w16{width:68.032000pt;}
.w12{width:68.192000pt;}
.w1f{width:69.152000pt;}
.w20{width:69.440000pt;}
.wd{width:70.560000pt;}
.w1c{width:71.040000pt;}
.w33{width:73.952000pt;}
.w37{width:74.880000pt;}
.w8{width:76.640000pt;}
.wa{width:81.472000pt;}
.w34{width:83.680000pt;}
.w28{width:94.240000pt;}
.w18{width:95.072000pt;}
.w15{width:97.792000pt;}
.w39{width:98.400000pt;}
.w27{width:106.432000pt;}
.w6{width:109.632000pt;}
.w25{width:111.040000pt;}
.w2b{width:111.072000pt;}
.w3{width:116.352000pt;}
.w2c{width:119.392000pt;}
.w21{width:123.232000pt;}
.w7{width:134.906667pt;}
.w35{width:140.986667pt;}
.w9{width:142.106667pt;}
.w14{width:164.186667pt;}
.wb{width:189.786667pt;}
.w2f{width:196.546667pt;}
.w1b{width:199.426667pt;}
.we{width:207.266667pt;}
.w2d{width:235.906667pt;}
.w19{width:271.906667pt;}
.wf{width:311.106667pt;}
.w1a{width:423.133333pt;}
.w2e{width:438.653333pt;}
.w2{width:577.253333pt;}
.w1{width:794.000000pt;}
.w4{width:794.079988pt;}
.w0{width:794.080000pt;}
.x0{left:0.000000pt;}
.xf{left:0.960000pt;}
.x41{left:2.400000pt;}
.x24{left:4.000000pt;}
.x17{left:5.600000pt;}
.x2{left:7.200000pt;}
.x1b{left:8.154667pt;}
.x51{left:9.120000pt;}
.x2e{left:10.080000pt;}
.x4c{left:11.840000pt;}
.x39{left:12.960000pt;}
.x38{left:14.080000pt;}
.x44{left:15.520000pt;}
.x20{left:16.800000pt;}
.x2c{left:18.400000pt;}
.x16{left:19.360000pt;}
.x1f{left:20.800000pt;}
.x18{left:25.280000pt;}
.x3d{left:39.360000pt;}
.x5{left:47.999988pt;}
.x19{left:49.119988pt;}
.x1{left:50.240000pt;}
.x7{left:53.599988pt;}
.x8{left:57.919988pt;}
.x45{left:59.040000pt;}
.x52{left:67.711988pt;}
.x54{left:72.031988pt;}
.x53{left:86.591988pt;}
.x11{left:88.160000pt;}
.x14{left:91.560000pt;}
.xd{left:96.031988pt;}
.x3b{left:99.232000pt;}
.x4{left:105.146667pt;}
.x4f{left:108.352000pt;}
.xe{left:125.632000pt;}
.x31{left:127.226667pt;}
.x1a{left:132.992000pt;}
.x22{left:139.386667pt;}
.x21{left:142.906655pt;}
.x28{left:144.026655pt;}
.x46{left:146.746667pt;}
.x30{left:156.986667pt;}
.x29{left:175.226667pt;}
.xc{left:183.866655pt;}
.x26{left:188.506667pt;}
.xb{left:198.746655pt;}
.x50{left:206.906667pt;}
.x3c{left:210.266667pt;}
.x10{left:235.266667pt;}
.x3e{left:240.066667pt;}
.x32{left:249.666667pt;}
.x48{left:257.026667pt;}
.x47{left:296.386667pt;}
.x9{left:307.106655pt;}
.x1c{left:322.786667pt;}
.x3f{left:334.306667pt;}
.x2a{left:339.426667pt;}
.x49{left:345.346667pt;}
.x27{left:352.706667pt;}
.x12{left:370.173333pt;}
.x33{left:372.413333pt;}
.x40{left:375.453333pt;}
.x1d{left:384.733333pt;}
.xa{left:397.213321pt;}
.x2b{left:408.893333pt;}
.x34{left:422.813333pt;}
.x42{left:432.573333pt;}
.x4a{left:433.693333pt;}
.x13{left:446.813333pt;}
.x23{left:451.773333pt;}
.x1e{left:455.293333pt;}
.x2d{left:477.533333pt;}
.x35{left:480.733333pt;}
.x4b{left:508.933333pt;}
.x25{left:520.613333pt;}
.x43{left:543.653333pt;}
.x36{left:551.333333pt;}
.x2f{left:573.893333pt;}
.x15{left:588.933333pt;}
.x4d{left:594.053333pt;}
.x37{left:622.053333pt;}
.x3{left:627.493333pt;}
.x4e{left:660.160000pt;}
.x3a{left:684.960000pt;}
.x6{left:737.440000pt;}
}




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