
    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_5b7e371e9b9fc67ef9306fa4.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_341cbddfd1df09dee962a15c.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_d74c12b121d8cabdd3745c71.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_998573fe0ddc26f994217ae2.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.747559;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_6ba6a6abb19328000f9eb113.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_00928121836ffbbf883d798c.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.202148;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_27ecb649bf9beb584b25b551.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_6193fc93719873dbca485474.woff2')format("woff");}.ff8{font-family:ff8;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;}
.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:-20.880000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:23.760000px;}
.ls8{letter-spacing:-0.924000px;}
.lsa{letter-spacing:-0.612000px;}
.ls10{letter-spacing:-0.360000px;}
.ls3{letter-spacing:-0.305400px;}
.ls6{letter-spacing:-0.208200px;}
.lsb{letter-spacing:-0.206400px;}
.ls12{letter-spacing:-0.106800px;}
.lsc{letter-spacing:-0.053280px;}
.ls7{letter-spacing:-0.018720px;}
.ls2{letter-spacing:0.000000px;}
.ls5{letter-spacing:0.037440px;}
.ls14{letter-spacing:0.053280px;}
.ls15{letter-spacing:0.073440px;}
.ls17{letter-spacing:0.106800px;}
.ls11{letter-spacing:0.153600px;}
.ls1{letter-spacing:0.180000px;}
.ls9{letter-spacing:0.259800px;}
.ls4{letter-spacing:0.262200px;}
.lse{letter-spacing:0.298800px;}
.lsd{letter-spacing:0.360000px;}
.ls13{letter-spacing:0.540000px;}
.ls19{letter-spacing:11.466720px;}
.ls0{letter-spacing:31.626720px;}
.ls16{letter-spacing:41.850720px;}
.lsf{letter-spacing:46.026720px;}
.ls18{letter-spacing:46.980000px;}
.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:-16.822200px;}
.ws2{word-spacing:-16.560000px;}
.ws0{word-spacing:-16.254600px;}
.wsb{word-spacing:-15.300000px;}
.wsa{word-spacing:-15.238800px;}
.ws6{word-spacing:-15.199800px;}
.wsc{word-spacing:-15.093600px;}
.wsf{word-spacing:-15.046800px;}
.wse{word-spacing:-14.993280px;}
.ws5{word-spacing:-14.940000px;}
.ws8{word-spacing:-14.886720px;}
.wsd{word-spacing:-14.833200px;}
.ws7{word-spacing:-14.733600px;}
.ws3{word-spacing:-10.440000px;}
.ws4{word-spacing:-9.720000px;}
.ws9{word-spacing:0.000000px;}
._1{margin-left:-2538.258480px;}
._3{margin-left:-1446.151680px;}
._5{margin-left:-1443.110040px;}
._4{margin-left:-1011.611520px;}
._6{margin-left:-576.348480px;}
._8{margin-left:-8.942400px;}
._44{margin-left:-5.408160px;}
._9{margin-left:-4.360560px;}
._7{margin-left:-2.361840px;}
._2{margin-left:-1.258560px;}
._0{width:1.244880px;}
._a{width:2.370480px;}
._b{width:3.801600px;}
._11{width:5.243040px;}
._15{width:6.260880px;}
._10{width:7.410240px;}
._c{width:8.485920px;}
._d{width:9.627840px;}
._16{width:10.756800px;}
._17{width:11.842800px;}
._f{width:12.858480px;}
._e{width:13.864320px;}
._12{width:16.374240px;}
._13{width:18.228720px;}
._2e{width:20.079360px;}
._14{width:21.404160px;}
._1b{width:23.366160px;}
._1a{width:25.338240px;}
._33{width:27.011520px;}
._19{width:30.481200px;}
._18{width:31.792320px;}
._2b{width:33.117120px;}
._23{width:36.164880px;}
._35{width:37.409760px;}
._34{width:38.485440px;}
._22{width:39.750480px;}
._40{width:42.858000px;}
._26{width:44.879760px;}
._42{width:48.057120px;}
._43{width:49.062960px;}
._1f{width:50.497200px;}
._36{width:56.652480px;}
._2f{width:60.656400px;}
._1d{width:62.578800px;}
._28{width:65.795760px;}
._3c{width:67.289760px;}
._3b{width:70.755840px;}
._2c{width:72.907200px;}
._24{width:78.345360px;}
._31{width:80.735760px;}
._32{width:81.871200px;}
._3a{width:82.897200px;}
._3d{width:86.891040px;}
._29{width:89.470800px;}
._39{width:90.715680px;}
._27{width:93.823200px;}
._2d{width:103.325040px;}
._30{width:109.838880px;}
._38{width:113.902560px;}
._25{width:119.231280px;}
._3f{width:129.689280px;}
._2a{width:133.563600px;}
._21{width:135.177120px;}
._3e{width:137.089440px;}
._41{width:139.659120px;}
._37{width:149.649120px;}
._1c{width:201.204000px;}
._1e{width:223.980480px;}
._20{width:290.254320px;}
.fc2{color:transparent;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:2.880000px;}
.fs4{font-size:38.880000px;}
.fs3{font-size:41.760000px;}
.fs5{font-size:48.240000px;}
.fs2{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs0{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.y77{bottom:5.760000px;}
.y6c{bottom:5.940000px;}
.y88{bottom:5.985000px;}
.y6a{bottom:6.120000px;}
.ya1{bottom:6.660000px;}
.yc7{bottom:6.705000px;}
.ya5{bottom:6.840000px;}
.ya0{bottom:7.560000px;}
.y116{bottom:7.740000px;}
.y8a{bottom:8.640000px;}
.y79{bottom:8.820000px;}
.y7a{bottom:9.000000px;}
.yeb{bottom:9.360000px;}
.y163{bottom:10.800000px;}
.y9b{bottom:15.660000px;}
.y9e{bottom:15.840000px;}
.y11b{bottom:18.180000px;}
.y9a{bottom:25.560000px;}
.yaa{bottom:25.590000px;}
.y9d{bottom:25.740000px;}
.y152{bottom:25.770000px;}
.y11d{bottom:25.785000px;}
.yb9{bottom:26.460000px;}
.yc2{bottom:26.640000px;}
.yfc{bottom:27.360000px;}
.yea{bottom:29.160000px;}
.y162{bottom:30.630000px;}
.y15f{bottom:34.770000px;}
.y114{bottom:35.640000px;}
.y140{bottom:45.360000px;}
.y14b{bottom:45.405000px;}
.y113{bottom:45.540000px;}
.y13d{bottom:45.570000px;}
.y11c{bottom:45.585000px;}
.y161{bottom:50.430000px;}
.y6{bottom:60.300000px;}
.y148{bottom:65.160000px;}
.y136{bottom:65.340000px;}
.y13c{bottom:65.370000px;}
.y14a{bottom:65.385000px;}
.y160{bottom:70.230000px;}
.y135{bottom:85.140000px;}
.y13b{bottom:85.170000px;}
.y156{bottom:85.185000px;}
.y98{bottom:91.260000px;}
.y68{bottom:95.940000px;}
.y119{bottom:98.640000px;}
.ye8{bottom:99.180000px;}
.y157{bottom:100.620000px;}
.y32{bottom:102.780000px;}
.y13f{bottom:104.940000px;}
.y13a{bottom:104.970000px;}
.y134{bottom:104.985000px;}
.y155{bottom:105.165000px;}
.y97{bottom:111.060000px;}
.y67{bottom:115.740000px;}
.ye7{bottom:119.160000px;}
.yc0{bottom:120.780000px;}
.y118{bottom:122.220000px;}
.y31{bottom:122.580000px;}
.y139{bottom:124.770000px;}
.y133{bottom:124.785000px;}
.y154{bottom:124.965000px;}
.y15e{bottom:129.060000px;}
.y96{bottom:130.860000px;}
.y15d{bottom:133.740000px;}
.y66{bottom:135.540000px;}
.ybf{bottom:135.720000px;}
.ye6{bottom:138.960000px;}
.y30{bottom:142.560000px;}
.y138{bottom:144.750000px;}
.y132{bottom:144.765000px;}
.y15c{bottom:153.570000px;}
.y95{bottom:154.290000px;}
.ybe{bottom:157.350000px;}
.ye5{bottom:158.790000px;}
.y117{bottom:162.030000px;}
.y2f{bottom:162.390000px;}
.y137{bottom:164.550000px;}
.y131{bottom:164.565000px;}
.y65{bottom:173.370000px;}
.ye4{bottom:178.590000px;}
.ybd{bottom:178.950000px;}
.y94{bottom:180.750000px;}
.y2e{bottom:182.190000px;}
.y130{bottom:184.365000px;}
.y115{bottom:185.610000px;}
.y146{bottom:185.805000px;}
.y64{bottom:193.350000px;}
.ye3{bottom:198.390000px;}
.y93{bottom:200.550000px;}
.y2d{bottom:201.990000px;}
.y145{bottom:205.605000px;}
.y112{bottom:209.910000px;}
.y63{bottom:213.150000px;}
.ye2{bottom:213.330000px;}
.y92{bottom:220.350000px;}
.y2c{bottom:221.790000px;}
.ybc{bottom:222.150000px;}
.y144{bottom:225.405000px;}
.y62{bottom:232.950000px;}
.ye1{bottom:234.930000px;}
.y91{bottom:240.330000px;}
.y2b{bottom:241.770000px;}
.ybb{bottom:243.750000px;}
.y143{bottom:245.205000px;}
.y15a{bottom:245.370000px;}
.y61{bottom:252.750000px;}
.ye0{bottom:256.530000px;}
.y90{bottom:260.130000px;}
.y2a{bottom:261.570000px;}
.y159{bottom:265.170000px;}
.y142{bottom:265.185000px;}
.y150{bottom:265.395000px;}
.yb8{bottom:266.070000px;}
.y60{bottom:272.550000px;}
.y111{bottom:275.970000px;}
.ydf{bottom:278.130000px;}
.y8f{bottom:279.930000px;}
.y29{bottom:281.370000px;}
.y12e{bottom:284.295000px;}
.y158{bottom:284.970000px;}
.y14f{bottom:285.195000px;}
.y5f{bottom:292.530000px;}
.y110{bottom:295.950000px;}
.y8e{bottom:299.730000px;}
.y15b{bottom:300.450000px;}
.y28{bottom:301.170000px;}
.y12d{bottom:304.095000px;}
.y14e{bottom:304.995000px;}
.yba{bottom:305.670000px;}
.y12f{bottom:310.170000px;}
.y5e{bottom:312.330000px;}
.y8d{bottom:314.490000px;}
.y10f{bottom:315.750000px;}
.yde{bottom:317.730000px;}
.y27{bottom:320.970000px;}
.y12c{bottom:324.075000px;}
.y14d{bottom:324.795000px;}
.y5d{bottom:332.130000px;}
.yb7{bottom:333.930000px;}
.y8c{bottom:334.470000px;}
.y10e{bottom:335.550000px;}
.ydd{bottom:339.330000px;}
.y26{bottom:340.950000px;}
.y12b{bottom:343.875000px;}
.y14c{bottom:344.595000px;}
.y5c{bottom:351.930000px;}
.yb6{bottom:353.730000px;}
.y8b{bottom:354.270000px;}
.y10d{bottom:355.350000px;}
.y25{bottom:360.750000px;}
.y12a{bottom:363.675000px;}
.y5b{bottom:371.730000px;}
.yb5{bottom:373.530000px;}
.y89{bottom:374.070000px;}
.y10c{bottom:375.150000px;}
.ydc{bottom:378.930000px;}
.y24{bottom:380.550000px;}
.y5a{bottom:391.710000px;}
.yb4{bottom:393.330000px;}
.y10b{bottom:395.130000px;}
.y87{bottom:397.470000px;}
.y23{bottom:400.350000px;}
.ydb{bottom:400.575000px;}
.y59{bottom:411.555000px;}
.yb3{bottom:413.175000px;}
.y10a{bottom:414.975000px;}
.y22{bottom:420.195000px;}
.y86{bottom:423.975000px;}
.y58{bottom:431.355000px;}
.yb2{bottom:433.155000px;}
.y109{bottom:434.775000px;}
.y21{bottom:440.175000px;}
.yda{bottom:440.355000px;}
.y85{bottom:443.775000px;}
.y57{bottom:451.155000px;}
.yb1{bottom:452.955000px;}
.y108{bottom:454.575000px;}
.y20{bottom:459.975000px;}
.y84{bottom:463.575000px;}
.y56{bottom:470.955000px;}
.yb0{bottom:472.755000px;}
.y107{bottom:474.375000px;}
.y1f{bottom:479.775000px;}
.yd8{bottom:480.675000px;}
.y83{bottom:483.555000px;}
.y106{bottom:489.315000px;}
.y55{bottom:490.935000px;}
.yaf{bottom:492.555000px;}
.y82{bottom:503.355000px;}
.y129{bottom:509.295000px;}
.y54{bottom:510.735000px;}
.y105{bottom:510.915000px;}
.yae{bottom:512.355000px;}
.yd9{bottom:520.455000px;}
.y1e{bottom:521.715000px;}
.y81{bottom:523.155000px;}
.y53{bottom:530.535000px;}
.yad{bottom:532.335000px;}
.y104{bottom:532.515000px;}
.y153{bottom:540.075000px;}
.y80{bottom:542.955000px;}
.yac{bottom:547.095000px;}
.yd7{bottom:548.535000px;}
.y52{bottom:550.335000px;}
.y1d{bottom:550.515000px;}
.y103{bottom:554.115000px;}
.y7f{bottom:562.755000px;}
.yd6{bottom:568.335000px;}
.yab{bottom:568.695000px;}
.y51{bottom:570.135000px;}
.y1c{bottom:570.315000px;}
.y128{bottom:575.355000px;}
.y102{bottom:575.715000px;}
.y7e{bottom:577.695000px;}
.yd5{bottom:588.315000px;}
.y50{bottom:590.115000px;}
.y1b{bottom:590.295000px;}
.y127{bottom:595.155000px;}
.y101{bottom:597.315000px;}
.y7d{bottom:597.495000px;}
.yd4{bottom:608.115000px;}
.y4f{bottom:609.915000px;}
.y1a{bottom:610.095000px;}
.y126{bottom:615.135000px;}
.y7c{bottom:617.295000px;}
.y100{bottom:618.915000px;}
.yd3{bottom:627.915000px;}
.y4e{bottom:629.715000px;}
.y19{bottom:629.895000px;}
.y125{bottom:634.935000px;}
.y7b{bottom:637.095000px;}
.y151{bottom:639.975000px;}
.yff{bottom:640.515000px;}
.yd2{bottom:647.715000px;}
.y4d{bottom:649.545000px;}
.y18{bottom:649.725000px;}
.y124{bottom:654.765000px;}
.y78{bottom:656.925000px;}
.yfe{bottom:662.145000px;}
.yd1{bottom:667.545000px;}
.y4c{bottom:669.345000px;}
.y17{bottom:669.525000px;}
.y123{bottom:674.565000px;}
.y76{bottom:680.505000px;}
.yfb{bottom:684.465000px;}
.yd0{bottom:687.525000px;}
.y4b{bottom:689.325000px;}
.y16{bottom:689.505000px;}
.ya9{bottom:691.125000px;}
.y122{bottom:694.365000px;}
.yfd{bottom:706.065000px;}
.y75{bottom:706.785000px;}
.ycf{bottom:707.325000px;}
.y4a{bottom:709.125000px;}
.y15{bottom:709.305000px;}
.ya8{bottom:712.725000px;}
.y121{bottom:714.345000px;}
.y74{bottom:726.765000px;}
.yce{bottom:727.125000px;}
.y49{bottom:728.925000px;}
.y14{bottom:729.105000px;}
.yfa{bottom:734.145000px;}
.ya7{bottom:734.325000px;}
.ycd{bottom:741.885000px;}
.y73{bottom:746.565000px;}
.y48{bottom:748.725000px;}
.y13{bottom:748.905000px;}
.yf9{bottom:753.945000px;}
.ya6{bottom:755.925000px;}
.y141{bottom:759.885000px;}
.ycc{bottom:763.485000px;}
.y72{bottom:766.365000px;}
.y47{bottom:768.525000px;}
.y12{bottom:768.705000px;}
.y120{bottom:773.745000px;}
.yf8{bottom:773.925000px;}
.ya4{bottom:777.525000px;}
.ycb{bottom:785.085000px;}
.y71{bottom:786.165000px;}
.y46{bottom:788.505000px;}
.y11{bottom:788.685000px;}
.y11f{bottom:793.545000px;}
.yf7{bottom:793.725000px;}
.ya3{bottom:799.125000px;}
.y70{bottom:805.965000px;}
.yca{bottom:806.685000px;}
.y45{bottom:808.305000px;}
.y10{bottom:808.485000px;}
.yf6{bottom:813.525000px;}
.y6f{bottom:825.945000px;}
.y44{bottom:828.105000px;}
.yf{bottom:828.285000px;}
.yf5{bottom:833.325000px;}
.ya2{bottom:838.905000px;}
.y6e{bottom:840.705000px;}
.y43{bottom:847.905000px;}
.ye{bottom:848.085000px;}
.yc9{bottom:849.885000px;}
.yf4{bottom:853.125000px;}
.y149{bottom:859.785000px;}
.y6d{bottom:860.505000px;}
.y42{bottom:867.705000px;}
.yd{bottom:870.225000px;}
.yc8{bottom:871.485000px;}
.y11e{bottom:872.925000px;}
.yf3{bottom:873.105000px;}
.y9f{bottom:878.505000px;}
.y6b{bottom:880.305000px;}
.y41{bottom:887.685000px;}
.yf2{bottom:892.905000px;}
.yc6{bottom:893.085000px;}
.yc{bottom:895.245000px;}
.y9c{bottom:900.150000px;}
.y69{bottom:900.870000px;}
.y40{bottom:907.530000px;}
.yf1{bottom:907.710000px;}
.yc5{bottom:914.730000px;}
.yb{bottom:915.090000px;}
.y3f{bottom:927.330000px;}
.yf0{bottom:929.310000px;}
.ya{bottom:930.210000px;}
.yc4{bottom:936.330000px;}
.y147{bottom:939.930000px;}
.y99{bottom:940.650000px;}
.y3e{bottom:947.130000px;}
.y11a{bottom:948.030000px;}
.yef{bottom:950.910000px;}
.y9{bottom:951.630000px;}
.yc1{bottom:958.650000px;}
.y3d{bottom:966.930000px;}
.yee{bottom:972.510000px;}
.y8{bottom:975.030000px;}
.y3c{bottom:986.910000px;}
.yed{bottom:994.110000px;}
.yc3{bottom:998.430000px;}
.y7{bottom:1006.710000px;}
.ye9{bottom:1016.430000px;}
.y3b{bottom:1026.510000px;}
.yec{bottom:1038.030000px;}
.y13e{bottom:1039.830000px;}
.y3a{bottom:1046.310000px;}
.y5{bottom:1051.170000px;}
.y39{bottom:1066.110000px;}
.y4{bottom:1081.950000px;}
.y38{bottom:1086.090000px;}
.y37{bottom:1105.890000px;}
.y3{bottom:1112.730000px;}
.y36{bottom:1125.690000px;}
.y2{bottom:1143.690000px;}
.y35{bottom:1145.490000px;}
.y34{bottom:1173.060000px;}
.y1{bottom:1177.560000px;}
.y33{bottom:1193.220000px;}
.h2c{height:2.010938px;}
.he{height:19.800000px;}
.hd{height:19.836000px;}
.hc{height:19.980000px;}
.h10{height:20.016000px;}
.h16{height:21.600000px;}
.h15{height:21.636000px;}
.h11{height:22.680000px;}
.h12{height:22.716000px;}
.hf{height:22.860000px;}
.h1c{height:23.580000px;}
.h7{height:27.147656px;}
.h1e{height:32.220000px;}
.h13{height:39.600000px;}
.h17{height:39.636000px;}
.h14{height:39.780000px;}
.h1d{height:39.816000px;}
.h8{height:41.493516px;}
.h9{height:41.726953px;}
.h5{height:42.164648px;}
.h1a{height:43.200000px;}
.ha{height:43.506914px;}
.h4{height:46.251562px;}
.h3{height:46.736719px;}
.h6{height:53.224453px;}
.h1b{height:59.580000px;}
.h1f{height:59.616000px;}
.h18{height:61.200000px;}
.h19{height:61.380000px;}
.h2{height:67.565039px;}
.hb{height:67.824844px;}
.h26{height:79.416000px;}
.h2b{height:84.276000px;}
.h25{height:99.180000px;}
.h2a{height:99.216000px;}
.h23{height:119.016000px;}
.h28{height:138.996000px;}
.h22{height:178.590000px;}
.h21{height:198.390000px;}
.h24{height:279.210000px;}
.h29{height:299.010000px;}
.h27{height:358.635000px;}
.h20{height:377.715000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w23{width:35.280000px;}
.w22{width:49.536000px;}
.w24{width:59.940000px;}
.w17{width:67.536000px;}
.w21{width:74.160000px;}
.w20{width:79.956000px;}
.w28{width:86.400000px;}
.w25{width:87.516000px;}
.w1a{width:87.660000px;}
.wf{width:87.876000px;}
.w30{width:93.780000px;}
.w31{width:103.536000px;}
.w2e{width:107.100000px;}
.w2f{width:113.976000px;}
.w2c{width:115.596000px;}
.w4{width:118.476000px;}
.w2d{width:120.636000px;}
.w32{width:120.816000px;}
.w26{width:126.360000px;}
.w10{width:128.160000px;}
.w29{width:128.376000px;}
.w13{width:129.240000px;}
.w2a{width:130.176000px;}
.w2b{width:132.840000px;}
.w14{width:133.956000px;}
.w1e{width:141.660000px;}
.wd{width:141.696000px;}
.wb{width:141.876000px;}
.w3{width:143.316000px;}
.w8{width:143.856000px;}
.w7{width:148.176000px;}
.w1f{width:154.800000px;}
.w6{width:157.890000px;}
.w1b{width:162.030000px;}
.wa{width:166.170000px;}
.w27{width:174.810000px;}
.w5{width:184.530000px;}
.w16{width:195.690000px;}
.w9{width:209.190000px;}
.wc{width:209.370000px;}
.w33{width:210.810000px;}
.w1d{width:229.530000px;}
.w19{width:249.690000px;}
.w12{width:263.190000px;}
.w11{width:389.775000px;}
.w18{width:418.575000px;}
.w1c{width:424.875000px;}
.we{width:465.735000px;}
.w15{width:513.075000px;}
.w34{width:581.010000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x6{left:8.100000px;}
.x2b{left:34.596000px;}
.x1{left:54.179987px;}
.x2a{left:56.520000px;}
.x31{left:70.199987px;}
.x3{left:75.599987px;}
.x12{left:89.136000px;}
.x17{left:92.196000px;}
.x15{left:95.796000px;}
.x32{left:98.135987px;}
.x4{left:102.635987px;}
.x2{left:108.035987px;}
.x1c{left:119.376000px;}
.xc{left:170.130000px;}
.x2c{left:173.010000px;}
.xf{left:176.790000px;}
.x33{left:191.370000px;}
.x9{left:197.130000px;}
.x5{left:223.410000px;}
.x1f{left:243.930000px;}
.x34{left:264.810000px;}
.x26{left:295.095000px;}
.x20{left:323.895000px;}
.xa{left:355.035000px;}
.x7{left:366.735000px;}
.xd{left:379.335000px;}
.x27{left:381.495000px;}
.x10{left:386.175000px;}
.x21{left:398.055000px;}
.x2d{left:402.555000px;}
.x22{left:447.585000px;}
.x23{left:482.865000px;}
.x8{left:485.205000px;}
.xb{left:503.205000px;}
.x28{left:509.865000px;}
.x2e{left:517.245000px;}
.x1a{left:521.205000px;}
.x24{left:542.805000px;}
.x1d{left:544.245000px;}
.xe{left:545.505000px;}
.x11{left:552.345000px;}
.x13{left:554.865000px;}
.x18{left:605.265000px;}
.x1b{left:608.865000px;}
.x2f{left:611.745000px;}
.x16{left:614.805000px;}
.x25{left:630.330000px;}
.x1e{left:632.130000px;}
.x29{left:640.050000px;}
.x14{left:642.750000px;}
.x19{left:672.810000px;}
.x30{left:716.010000px;}
@media print{
.v2{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.120000pt;}
.ls8{letter-spacing:-0.821333pt;}
.lsa{letter-spacing:-0.544000pt;}
.ls10{letter-spacing:-0.320000pt;}
.ls3{letter-spacing:-0.271467pt;}
.ls6{letter-spacing:-0.185067pt;}
.lsb{letter-spacing:-0.183467pt;}
.ls12{letter-spacing:-0.094933pt;}
.lsc{letter-spacing:-0.047360pt;}
.ls7{letter-spacing:-0.016640pt;}
.ls2{letter-spacing:0.000000pt;}
.ls5{letter-spacing:0.033280pt;}
.ls14{letter-spacing:0.047360pt;}
.ls15{letter-spacing:0.065280pt;}
.ls17{letter-spacing:0.094933pt;}
.ls11{letter-spacing:0.136533pt;}
.ls1{letter-spacing:0.160000pt;}
.ls9{letter-spacing:0.230933pt;}
.ls4{letter-spacing:0.233067pt;}
.lse{letter-spacing:0.265600pt;}
.lsd{letter-spacing:0.320000pt;}
.ls13{letter-spacing:0.480000pt;}
.ls19{letter-spacing:10.192640pt;}
.ls0{letter-spacing:28.112640pt;}
.ls16{letter-spacing:37.200640pt;}
.lsf{letter-spacing:40.912640pt;}
.ls18{letter-spacing:41.760000pt;}
.ws1{word-spacing:-14.953067pt;}
.ws2{word-spacing:-14.720000pt;}
.ws0{word-spacing:-14.448533pt;}
.wsb{word-spacing:-13.600000pt;}
.wsa{word-spacing:-13.545600pt;}
.ws6{word-spacing:-13.510933pt;}
.wsc{word-spacing:-13.416533pt;}
.wsf{word-spacing:-13.374933pt;}
.wse{word-spacing:-13.327360pt;}
.ws5{word-spacing:-13.280000pt;}
.ws8{word-spacing:-13.232640pt;}
.wsd{word-spacing:-13.185067pt;}
.ws7{word-spacing:-13.096533pt;}
.ws3{word-spacing:-9.280000pt;}
.ws4{word-spacing:-8.640000pt;}
.ws9{word-spacing:0.000000pt;}
._1{margin-left:-2256.229760pt;}
._3{margin-left:-1285.468160pt;}
._5{margin-left:-1282.764480pt;}
._4{margin-left:-899.210240pt;}
._6{margin-left:-512.309760pt;}
._8{margin-left:-7.948800pt;}
._44{margin-left:-4.807253pt;}
._9{margin-left:-3.876053pt;}
._7{margin-left:-2.099413pt;}
._2{margin-left:-1.118720pt;}
._0{width:1.106560pt;}
._a{width:2.107093pt;}
._b{width:3.379200pt;}
._11{width:4.660480pt;}
._15{width:5.565227pt;}
._10{width:6.586880pt;}
._c{width:7.543040pt;}
._d{width:8.558080pt;}
._16{width:9.561600pt;}
._17{width:10.526933pt;}
._f{width:11.429760pt;}
._e{width:12.323840pt;}
._12{width:14.554880pt;}
._13{width:16.203307pt;}
._2e{width:17.848320pt;}
._14{width:19.025920pt;}
._1b{width:20.769920pt;}
._1a{width:22.522880pt;}
._33{width:24.010240pt;}
._19{width:27.094400pt;}
._18{width:28.259840pt;}
._2b{width:29.437440pt;}
._23{width:32.146560pt;}
._35{width:33.253120pt;}
._34{width:34.209280pt;}
._22{width:35.333760pt;}
._40{width:38.096000pt;}
._26{width:39.893120pt;}
._42{width:42.717440pt;}
._43{width:43.611520pt;}
._1f{width:44.886400pt;}
._36{width:50.357760pt;}
._2f{width:53.916800pt;}
._1d{width:55.625600pt;}
._28{width:58.485120pt;}
._3c{width:59.813120pt;}
._3b{width:62.894080pt;}
._2c{width:64.806400pt;}
._24{width:69.640320pt;}
._31{width:71.765120pt;}
._32{width:72.774400pt;}
._3a{width:73.686400pt;}
._3d{width:77.236480pt;}
._29{width:79.529600pt;}
._39{width:80.636160pt;}
._27{width:83.398400pt;}
._2d{width:91.844480pt;}
._30{width:97.634560pt;}
._38{width:101.246720pt;}
._25{width:105.983360pt;}
._3f{width:115.279360pt;}
._2a{width:118.723200pt;}
._21{width:120.157440pt;}
._3e{width:121.857280pt;}
._41{width:124.141440pt;}
._37{width:133.021440pt;}
._1c{width:178.848000pt;}
._1e{width:199.093760pt;}
._20{width:258.003840pt;}
.fs6{font-size:2.560000pt;}
.fs4{font-size:34.560000pt;}
.fs3{font-size:37.120000pt;}
.fs5{font-size:42.880000pt;}
.fs2{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs0{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.y77{bottom:5.120000pt;}
.y6c{bottom:5.280000pt;}
.y88{bottom:5.320000pt;}
.y6a{bottom:5.440000pt;}
.ya1{bottom:5.920000pt;}
.yc7{bottom:5.960000pt;}
.ya5{bottom:6.080000pt;}
.ya0{bottom:6.720000pt;}
.y116{bottom:6.880000pt;}
.y8a{bottom:7.680000pt;}
.y79{bottom:7.840000pt;}
.y7a{bottom:8.000000pt;}
.yeb{bottom:8.320000pt;}
.y163{bottom:9.600000pt;}
.y9b{bottom:13.920000pt;}
.y9e{bottom:14.080000pt;}
.y11b{bottom:16.160000pt;}
.y9a{bottom:22.720000pt;}
.yaa{bottom:22.746667pt;}
.y9d{bottom:22.880000pt;}
.y152{bottom:22.906667pt;}
.y11d{bottom:22.920000pt;}
.yb9{bottom:23.520000pt;}
.yc2{bottom:23.680000pt;}
.yfc{bottom:24.320000pt;}
.yea{bottom:25.920000pt;}
.y162{bottom:27.226667pt;}
.y15f{bottom:30.906667pt;}
.y114{bottom:31.680000pt;}
.y140{bottom:40.320000pt;}
.y14b{bottom:40.360000pt;}
.y113{bottom:40.480000pt;}
.y13d{bottom:40.506667pt;}
.y11c{bottom:40.520000pt;}
.y161{bottom:44.826667pt;}
.y6{bottom:53.600000pt;}
.y148{bottom:57.920000pt;}
.y136{bottom:58.080000pt;}
.y13c{bottom:58.106667pt;}
.y14a{bottom:58.120000pt;}
.y160{bottom:62.426667pt;}
.y135{bottom:75.680000pt;}
.y13b{bottom:75.706667pt;}
.y156{bottom:75.720000pt;}
.y98{bottom:81.120000pt;}
.y68{bottom:85.280000pt;}
.y119{bottom:87.680000pt;}
.ye8{bottom:88.160000pt;}
.y157{bottom:89.440000pt;}
.y32{bottom:91.360000pt;}
.y13f{bottom:93.280000pt;}
.y13a{bottom:93.306667pt;}
.y134{bottom:93.320000pt;}
.y155{bottom:93.480000pt;}
.y97{bottom:98.720000pt;}
.y67{bottom:102.880000pt;}
.ye7{bottom:105.920000pt;}
.yc0{bottom:107.360000pt;}
.y118{bottom:108.640000pt;}
.y31{bottom:108.960000pt;}
.y139{bottom:110.906667pt;}
.y133{bottom:110.920000pt;}
.y154{bottom:111.080000pt;}
.y15e{bottom:114.720000pt;}
.y96{bottom:116.320000pt;}
.y15d{bottom:118.880000pt;}
.y66{bottom:120.480000pt;}
.ybf{bottom:120.640000pt;}
.ye6{bottom:123.520000pt;}
.y30{bottom:126.720000pt;}
.y138{bottom:128.666667pt;}
.y132{bottom:128.680000pt;}
.y15c{bottom:136.506667pt;}
.y95{bottom:137.146667pt;}
.ybe{bottom:139.866667pt;}
.ye5{bottom:141.146667pt;}
.y117{bottom:144.026667pt;}
.y2f{bottom:144.346667pt;}
.y137{bottom:146.266667pt;}
.y131{bottom:146.280000pt;}
.y65{bottom:154.106667pt;}
.ye4{bottom:158.746667pt;}
.ybd{bottom:159.066667pt;}
.y94{bottom:160.666667pt;}
.y2e{bottom:161.946667pt;}
.y130{bottom:163.880000pt;}
.y115{bottom:164.986667pt;}
.y146{bottom:165.160000pt;}
.y64{bottom:171.866667pt;}
.ye3{bottom:176.346667pt;}
.y93{bottom:178.266667pt;}
.y2d{bottom:179.546667pt;}
.y145{bottom:182.760000pt;}
.y112{bottom:186.586667pt;}
.y63{bottom:189.466667pt;}
.ye2{bottom:189.626667pt;}
.y92{bottom:195.866667pt;}
.y2c{bottom:197.146667pt;}
.ybc{bottom:197.466667pt;}
.y144{bottom:200.360000pt;}
.y62{bottom:207.066667pt;}
.ye1{bottom:208.826667pt;}
.y91{bottom:213.626667pt;}
.y2b{bottom:214.906667pt;}
.ybb{bottom:216.666667pt;}
.y143{bottom:217.960000pt;}
.y15a{bottom:218.106667pt;}
.y61{bottom:224.666667pt;}
.ye0{bottom:228.026667pt;}
.y90{bottom:231.226667pt;}
.y2a{bottom:232.506667pt;}
.y159{bottom:235.706667pt;}
.y142{bottom:235.720000pt;}
.y150{bottom:235.906667pt;}
.yb8{bottom:236.506667pt;}
.y60{bottom:242.266667pt;}
.y111{bottom:245.306667pt;}
.ydf{bottom:247.226667pt;}
.y8f{bottom:248.826667pt;}
.y29{bottom:250.106667pt;}
.y12e{bottom:252.706667pt;}
.y158{bottom:253.306667pt;}
.y14f{bottom:253.506667pt;}
.y5f{bottom:260.026667pt;}
.y110{bottom:263.066667pt;}
.y8e{bottom:266.426667pt;}
.y15b{bottom:267.066667pt;}
.y28{bottom:267.706667pt;}
.y12d{bottom:270.306667pt;}
.y14e{bottom:271.106667pt;}
.yba{bottom:271.706667pt;}
.y12f{bottom:275.706667pt;}
.y5e{bottom:277.626667pt;}
.y8d{bottom:279.546667pt;}
.y10f{bottom:280.666667pt;}
.yde{bottom:282.426667pt;}
.y27{bottom:285.306667pt;}
.y12c{bottom:288.066667pt;}
.y14d{bottom:288.706667pt;}
.y5d{bottom:295.226667pt;}
.yb7{bottom:296.826667pt;}
.y8c{bottom:297.306667pt;}
.y10e{bottom:298.266667pt;}
.ydd{bottom:301.626667pt;}
.y26{bottom:303.066667pt;}
.y12b{bottom:305.666667pt;}
.y14c{bottom:306.306667pt;}
.y5c{bottom:312.826667pt;}
.yb6{bottom:314.426667pt;}
.y8b{bottom:314.906667pt;}
.y10d{bottom:315.866667pt;}
.y25{bottom:320.666667pt;}
.y12a{bottom:323.266667pt;}
.y5b{bottom:330.426667pt;}
.yb5{bottom:332.026667pt;}
.y89{bottom:332.506667pt;}
.y10c{bottom:333.466667pt;}
.ydc{bottom:336.826667pt;}
.y24{bottom:338.266667pt;}
.y5a{bottom:348.186667pt;}
.yb4{bottom:349.626667pt;}
.y10b{bottom:351.226667pt;}
.y87{bottom:353.306667pt;}
.y23{bottom:355.866667pt;}
.ydb{bottom:356.066667pt;}
.y59{bottom:365.826667pt;}
.yb3{bottom:367.266667pt;}
.y10a{bottom:368.866667pt;}
.y22{bottom:373.506667pt;}
.y86{bottom:376.866667pt;}
.y58{bottom:383.426667pt;}
.yb2{bottom:385.026667pt;}
.y109{bottom:386.466667pt;}
.y21{bottom:391.266667pt;}
.yda{bottom:391.426667pt;}
.y85{bottom:394.466667pt;}
.y57{bottom:401.026667pt;}
.yb1{bottom:402.626667pt;}
.y108{bottom:404.066667pt;}
.y20{bottom:408.866667pt;}
.y84{bottom:412.066667pt;}
.y56{bottom:418.626667pt;}
.yb0{bottom:420.226667pt;}
.y107{bottom:421.666667pt;}
.y1f{bottom:426.466667pt;}
.yd8{bottom:427.266667pt;}
.y83{bottom:429.826667pt;}
.y106{bottom:434.946667pt;}
.y55{bottom:436.386667pt;}
.yaf{bottom:437.826667pt;}
.y82{bottom:447.426667pt;}
.y129{bottom:452.706667pt;}
.y54{bottom:453.986667pt;}
.y105{bottom:454.146667pt;}
.yae{bottom:455.426667pt;}
.yd9{bottom:462.626667pt;}
.y1e{bottom:463.746667pt;}
.y81{bottom:465.026667pt;}
.y53{bottom:471.586667pt;}
.yad{bottom:473.186667pt;}
.y104{bottom:473.346667pt;}
.y153{bottom:480.066667pt;}
.y80{bottom:482.626667pt;}
.yac{bottom:486.306667pt;}
.yd7{bottom:487.586667pt;}
.y52{bottom:489.186667pt;}
.y1d{bottom:489.346667pt;}
.y103{bottom:492.546667pt;}
.y7f{bottom:500.226667pt;}
.yd6{bottom:505.186667pt;}
.yab{bottom:505.506667pt;}
.y51{bottom:506.786667pt;}
.y1c{bottom:506.946667pt;}
.y128{bottom:511.426667pt;}
.y102{bottom:511.746667pt;}
.y7e{bottom:513.506667pt;}
.yd5{bottom:522.946667pt;}
.y50{bottom:524.546667pt;}
.y1b{bottom:524.706667pt;}
.y127{bottom:529.026667pt;}
.y101{bottom:530.946667pt;}
.y7d{bottom:531.106667pt;}
.yd4{bottom:540.546667pt;}
.y4f{bottom:542.146667pt;}
.y1a{bottom:542.306667pt;}
.y126{bottom:546.786667pt;}
.y7c{bottom:548.706667pt;}
.y100{bottom:550.146667pt;}
.yd3{bottom:558.146667pt;}
.y4e{bottom:559.746667pt;}
.y19{bottom:559.906667pt;}
.y125{bottom:564.386667pt;}
.y7b{bottom:566.306667pt;}
.y151{bottom:568.866667pt;}
.yff{bottom:569.346667pt;}
.yd2{bottom:575.746667pt;}
.y4d{bottom:577.373333pt;}
.y18{bottom:577.533333pt;}
.y124{bottom:582.013333pt;}
.y78{bottom:583.933333pt;}
.yfe{bottom:588.573333pt;}
.yd1{bottom:593.373333pt;}
.y4c{bottom:594.973333pt;}
.y17{bottom:595.133333pt;}
.y123{bottom:599.613333pt;}
.y76{bottom:604.893333pt;}
.yfb{bottom:608.413333pt;}
.yd0{bottom:611.133333pt;}
.y4b{bottom:612.733333pt;}
.y16{bottom:612.893333pt;}
.ya9{bottom:614.333333pt;}
.y122{bottom:617.213333pt;}
.yfd{bottom:627.613333pt;}
.y75{bottom:628.253333pt;}
.ycf{bottom:628.733333pt;}
.y4a{bottom:630.333333pt;}
.y15{bottom:630.493333pt;}
.ya8{bottom:633.533333pt;}
.y121{bottom:634.973333pt;}
.y74{bottom:646.013333pt;}
.yce{bottom:646.333333pt;}
.y49{bottom:647.933333pt;}
.y14{bottom:648.093333pt;}
.yfa{bottom:652.573333pt;}
.ya7{bottom:652.733333pt;}
.ycd{bottom:659.453333pt;}
.y73{bottom:663.613333pt;}
.y48{bottom:665.533333pt;}
.y13{bottom:665.693333pt;}
.yf9{bottom:670.173333pt;}
.ya6{bottom:671.933333pt;}
.y141{bottom:675.453333pt;}
.ycc{bottom:678.653333pt;}
.y72{bottom:681.213333pt;}
.y47{bottom:683.133333pt;}
.y12{bottom:683.293333pt;}
.y120{bottom:687.773333pt;}
.yf8{bottom:687.933333pt;}
.ya4{bottom:691.133333pt;}
.ycb{bottom:697.853333pt;}
.y71{bottom:698.813333pt;}
.y46{bottom:700.893333pt;}
.y11{bottom:701.053333pt;}
.y11f{bottom:705.373333pt;}
.yf7{bottom:705.533333pt;}
.ya3{bottom:710.333333pt;}
.y70{bottom:716.413333pt;}
.yca{bottom:717.053333pt;}
.y45{bottom:718.493333pt;}
.y10{bottom:718.653333pt;}
.yf6{bottom:723.133333pt;}
.y6f{bottom:734.173333pt;}
.y44{bottom:736.093333pt;}
.yf{bottom:736.253333pt;}
.yf5{bottom:740.733333pt;}
.ya2{bottom:745.693333pt;}
.y6e{bottom:747.293333pt;}
.y43{bottom:753.693333pt;}
.ye{bottom:753.853333pt;}
.yc9{bottom:755.453333pt;}
.yf4{bottom:758.333333pt;}
.y149{bottom:764.253333pt;}
.y6d{bottom:764.893333pt;}
.y42{bottom:771.293333pt;}
.yd{bottom:773.533333pt;}
.yc8{bottom:774.653333pt;}
.y11e{bottom:775.933333pt;}
.yf3{bottom:776.093333pt;}
.y9f{bottom:780.893333pt;}
.y6b{bottom:782.493333pt;}
.y41{bottom:789.053333pt;}
.yf2{bottom:793.693333pt;}
.yc6{bottom:793.853333pt;}
.yc{bottom:795.773333pt;}
.y9c{bottom:800.133333pt;}
.y69{bottom:800.773333pt;}
.y40{bottom:806.693333pt;}
.yf1{bottom:806.853333pt;}
.yc5{bottom:813.093333pt;}
.yb{bottom:813.413333pt;}
.y3f{bottom:824.293333pt;}
.yf0{bottom:826.053333pt;}
.ya{bottom:826.853333pt;}
.yc4{bottom:832.293333pt;}
.y147{bottom:835.493333pt;}
.y99{bottom:836.133333pt;}
.y3e{bottom:841.893333pt;}
.y11a{bottom:842.693333pt;}
.yef{bottom:845.253333pt;}
.y9{bottom:845.893333pt;}
.yc1{bottom:852.133333pt;}
.y3d{bottom:859.493333pt;}
.yee{bottom:864.453333pt;}
.y8{bottom:866.693333pt;}
.y3c{bottom:877.253333pt;}
.yed{bottom:883.653333pt;}
.yc3{bottom:887.493333pt;}
.y7{bottom:894.853333pt;}
.ye9{bottom:903.493333pt;}
.y3b{bottom:912.453333pt;}
.yec{bottom:922.693333pt;}
.y13e{bottom:924.293333pt;}
.y3a{bottom:930.053333pt;}
.y5{bottom:934.373333pt;}
.y39{bottom:947.653333pt;}
.y4{bottom:961.733333pt;}
.y38{bottom:965.413333pt;}
.y37{bottom:983.013333pt;}
.y3{bottom:989.093333pt;}
.y36{bottom:1000.613333pt;}
.y2{bottom:1016.613333pt;}
.y35{bottom:1018.213333pt;}
.y34{bottom:1042.720000pt;}
.y1{bottom:1046.720000pt;}
.y33{bottom:1060.640000pt;}
.h2c{height:1.787500pt;}
.he{height:17.600000pt;}
.hd{height:17.632000pt;}
.hc{height:17.760000pt;}
.h10{height:17.792000pt;}
.h16{height:19.200000pt;}
.h15{height:19.232000pt;}
.h11{height:20.160000pt;}
.h12{height:20.192000pt;}
.hf{height:20.320000pt;}
.h1c{height:20.960000pt;}
.h7{height:24.131250pt;}
.h1e{height:28.640000pt;}
.h13{height:35.200000pt;}
.h17{height:35.232000pt;}
.h14{height:35.360000pt;}
.h1d{height:35.392000pt;}
.h8{height:36.883125pt;}
.h9{height:37.090625pt;}
.h5{height:37.479688pt;}
.h1a{height:38.400000pt;}
.ha{height:38.672812pt;}
.h4{height:41.112500pt;}
.h3{height:41.543750pt;}
.h6{height:47.310625pt;}
.h1b{height:52.960000pt;}
.h1f{height:52.992000pt;}
.h18{height:54.400000pt;}
.h19{height:54.560000pt;}
.h2{height:60.057813pt;}
.hb{height:60.288750pt;}
.h26{height:70.592000pt;}
.h2b{height:74.912000pt;}
.h25{height:88.160000pt;}
.h2a{height:88.192000pt;}
.h23{height:105.792000pt;}
.h28{height:123.552000pt;}
.h22{height:158.746667pt;}
.h21{height:176.346667pt;}
.h24{height:248.186667pt;}
.h29{height:265.786667pt;}
.h27{height:318.786667pt;}
.h20{height:335.746667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w23{width:31.360000pt;}
.w22{width:44.032000pt;}
.w24{width:53.280000pt;}
.w17{width:60.032000pt;}
.w21{width:65.920000pt;}
.w20{width:71.072000pt;}
.w28{width:76.800000pt;}
.w25{width:77.792000pt;}
.w1a{width:77.920000pt;}
.wf{width:78.112000pt;}
.w30{width:83.360000pt;}
.w31{width:92.032000pt;}
.w2e{width:95.200000pt;}
.w2f{width:101.312000pt;}
.w2c{width:102.752000pt;}
.w4{width:105.312000pt;}
.w2d{width:107.232000pt;}
.w32{width:107.392000pt;}
.w26{width:112.320000pt;}
.w10{width:113.920000pt;}
.w29{width:114.112000pt;}
.w13{width:114.880000pt;}
.w2a{width:115.712000pt;}
.w2b{width:118.080000pt;}
.w14{width:119.072000pt;}
.w1e{width:125.920000pt;}
.wd{width:125.952000pt;}
.wb{width:126.112000pt;}
.w3{width:127.392000pt;}
.w8{width:127.872000pt;}
.w7{width:131.712000pt;}
.w1f{width:137.600000pt;}
.w6{width:140.346667pt;}
.w1b{width:144.026667pt;}
.wa{width:147.706667pt;}
.w27{width:155.386667pt;}
.w5{width:164.026667pt;}
.w16{width:173.946667pt;}
.w9{width:185.946667pt;}
.wc{width:186.106667pt;}
.w33{width:187.386667pt;}
.w1d{width:204.026667pt;}
.w19{width:221.946667pt;}
.w12{width:233.946667pt;}
.w11{width:346.466667pt;}
.w18{width:372.066667pt;}
.w1c{width:377.666667pt;}
.we{width:413.986667pt;}
.w15{width:456.066667pt;}
.w34{width:516.453333pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x6{left:7.200000pt;}
.x2b{left:30.752000pt;}
.x1{left:48.159988pt;}
.x2a{left:50.240000pt;}
.x31{left:62.399988pt;}
.x3{left:67.199988pt;}
.x12{left:79.232000pt;}
.x17{left:81.952000pt;}
.x15{left:85.152000pt;}
.x32{left:87.231988pt;}
.x4{left:91.231988pt;}
.x2{left:96.031988pt;}
.x1c{left:106.112000pt;}
.xc{left:151.226667pt;}
.x2c{left:153.786667pt;}
.xf{left:157.146667pt;}
.x33{left:170.106667pt;}
.x9{left:175.226667pt;}
.x5{left:198.586667pt;}
.x1f{left:216.826667pt;}
.x34{left:235.386667pt;}
.x26{left:262.306667pt;}
.x20{left:287.906667pt;}
.xa{left:315.586667pt;}
.x7{left:325.986667pt;}
.xd{left:337.186667pt;}
.x27{left:339.106667pt;}
.x10{left:343.266667pt;}
.x21{left:353.826667pt;}
.x2d{left:357.826667pt;}
.x22{left:397.853333pt;}
.x23{left:429.213333pt;}
.x8{left:431.293333pt;}
.xb{left:447.293333pt;}
.x28{left:453.213333pt;}
.x2e{left:459.773333pt;}
.x1a{left:463.293333pt;}
.x24{left:482.493333pt;}
.x1d{left:483.773333pt;}
.xe{left:484.893333pt;}
.x11{left:490.973333pt;}
.x13{left:493.213333pt;}
.x18{left:538.013333pt;}
.x1b{left:541.213333pt;}
.x2f{left:543.773333pt;}
.x16{left:546.493333pt;}
.x25{left:560.293333pt;}
.x1e{left:561.893333pt;}
.x29{left:568.933333pt;}
.x14{left:571.333333pt;}
.x19{left:598.053333pt;}
.x30{left:636.453333pt;}
}




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