
    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_88e7c4d29dc1fc726aff0d1a.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.986328;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_146e781e7a3a2b5a1776a31e.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.776855;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_e0c37e651a33340634b9b4ac.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.077637;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_c5e30702988f9fd2a00a8080.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.767578;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_d75890e65a2452751bcc18e6.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.432129;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_fe2d1e795b05ac3a18a9646c.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.934082;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_f455ff6f60489f7f59edc0af.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_53519c27f5aa928985e0f959.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_bb20e738bdffa0e46c3e18c9.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_c971f715c41d539ec16eb062.woff2')format("woff");}.ffa{font-family:ffa;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;}
.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(0.254944,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254944,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254944,0.000000,0.000000,0.250000,0,0);}
.m2{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:-91.440000px;}
.v1{vertical-align:-87.120000px;}
.v0{vertical-align:0.000000px;}
.ls6{letter-spacing:-0.792000px;}
.ls9{letter-spacing:-0.216000px;}
.lsc{letter-spacing:-0.144000px;}
.lsb{letter-spacing:-0.072000px;}
.ls3{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.078000px;}
.ls4{letter-spacing:0.144000px;}
.ls5{letter-spacing:0.180000px;}
.ls1{letter-spacing:0.216000px;}
.lsd{letter-spacing:0.432000px;}
.ls7{letter-spacing:0.504000px;}
.lsa{letter-spacing:0.792000px;}
.ls8{letter-spacing:1.440000px;}
.ls2{letter-spacing:746.796000px;}
.sc_{text-shadow:none;}
.sc4{text-shadow:-0.015em 0 rgb(192,0,0),0 0.015em rgb(192,0,0),0.015em 0 rgb(192,0,0),0 -0.015em  rgb(192,0,0);}
.sc2{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
.sc1{text-shadow:-0.015em 0 rgb(0,0,255),0 0.015em rgb(0,0,255),0.015em 0 rgb(0,0,255),0 -0.015em  rgb(0,0,255);}
.sc3{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0{text-shadow:-0.015em 0 rgb(196,89,17),0 0.015em rgb(196,89,17),0.015em 0 rgb(196,89,17),0 -0.015em  rgb(196,89,17);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc4{-webkit-text-stroke:0.015em rgb(192,0,0);text-shadow:none;}
.sc2{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc1{-webkit-text-stroke:0.015em rgb(0,0,255);text-shadow:none;}
.sc3{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em rgb(196,89,17);text-shadow:none;}
}
.wsc{word-spacing:-40.608000px;}
.ws2{word-spacing:-21.060000px;}
.ws0{word-spacing:-19.728000px;}
.ws8{word-spacing:-19.440000px;}
.ws6{word-spacing:-18.144000px;}
.ws3{word-spacing:-18.000000px;}
.wsa{word-spacing:-17.928000px;}
.wsb{word-spacing:-17.856000px;}
.ws9{word-spacing:-17.784000px;}
.ws7{word-spacing:-17.208000px;}
.ws4{word-spacing:-16.272000px;}
.ws1{word-spacing:-0.049265px;}
.ws5{word-spacing:0.000000px;}
._4{margin-left:-12.240000px;}
._22{margin-left:-2.918983px;}
._0{margin-left:-1.728000px;}
._2{width:1.781001px;}
._15{width:2.830996px;}
._5{width:4.464000px;}
._6{width:5.544000px;}
._b{width:7.056000px;}
._a{width:8.352000px;}
._14{width:9.648000px;}
._18{width:10.674999px;}
._e{width:12.024000px;}
._f{width:13.032000px;}
._13{width:14.904000px;}
._9{width:16.200000px;}
._19{width:19.112160px;}
._7{width:20.304000px;}
._8{width:21.672000px;}
._1c{width:23.184000px;}
._1d{width:24.493998px;}
._1f{width:25.618002px;}
._11{width:27.360000px;}
._12{width:29.034999px;}
._24{width:30.077001px;}
._1a{width:32.040000px;}
._1b{width:33.168000px;}
._1e{width:34.224000px;}
._23{width:35.545998px;}
._26{width:37.512000px;}
._27{width:39.456000px;}
._20{width:42.294999px;}
._10{width:43.344000px;}
._21{width:44.449998px;}
._25{width:45.660000px;}
._c{width:71.208000px;}
._d{width:72.234999px;}
._3{width:209.238999px;}
._17{width:265.680000px;}
._1{width:431.998320px;}
._16{width:823.836000px;}
.fc4{color:rgb(192,0,0);}
.fc3{color:rgb(255,255,255);}
.fc2{color:rgb(0,0,0);}
.fc1{color:rgb(0,0,255);}
.fc5{color:transparent;}
.fc0{color:rgb(196,89,17);}
.fs2{font-size:41.760000px;}
.fs6{font-size:45.360000px;}
.fs3{font-size:48.240000px;}
.fs5{font-size:49.264682px;}
.fs4{font-size:54.000000px;}
.fs8{font-size:59.760000px;}
.fs9{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.fs7{font-size:84.240000px;}
.fs0{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y9{bottom:3.330266px;}
.yf{bottom:3.421500px;}
.y47{bottom:3.780000px;}
.yb1{bottom:4.125000px;}
.yc3{bottom:4.140000px;}
.yb3{bottom:4.485000px;}
.yc5{bottom:4.500000px;}
.y107{bottom:4.530000px;}
.y58{bottom:4.680000px;}
.y40{bottom:4.860000px;}
.y4b{bottom:7.920000px;}
.y57{bottom:8.100000px;}
.yb{bottom:9.180000px;}
.y11{bottom:16.020000px;}
.yd{bottom:19.980000px;}
.y46{bottom:21.060000px;}
.y56{bottom:25.380000px;}
.ye{bottom:26.818500px;}
.yc{bottom:27.000000px;}
.y10{bottom:27.360000px;}
.y4a{bottom:29.520000px;}
.y7{bottom:35.100000px;}
.y45{bottom:39.060000px;}
.y55{bottom:42.705000px;}
.y49{bottom:51.330000px;}
.y44{bottom:59.760000px;}
.y54{bottom:60.705000px;}
.y43{bottom:80.640000px;}
.y3e{bottom:81.000000px;}
.y53{bottom:81.405000px;}
.yaa{bottom:82.440000px;}
.y8c{bottom:82.800000px;}
.yf4{bottom:89.280000px;}
.y123{bottom:91.620000px;}
.yc1{bottom:99.540000px;}
.y3d{bottom:101.700000px;}
.y52{bottom:102.105000px;}
.ya9{bottom:103.140000px;}
.y8b{bottom:103.500000px;}
.yf3{bottom:109.980000px;}
.y122{bottom:112.320000px;}
.yc0{bottom:120.240000px;}
.y3c{bottom:122.400000px;}
.y51{bottom:122.805000px;}
.yab{bottom:123.840000px;}
.y8a{bottom:124.200000px;}
.yf2{bottom:130.680000px;}
.y121{bottom:133.020000px;}
.ybf{bottom:141.300000px;}
.y3b{bottom:142.920000px;}
.y50{bottom:143.505000px;}
.y89{bottom:144.900000px;}
.yf1{bottom:151.380000px;}
.y120{bottom:153.720000px;}
.ybe{bottom:162.000000px;}
.y3a{bottom:163.620000px;}
.y4f{bottom:164.205000px;}
.y9a{bottom:165.240000px;}
.y88{bottom:165.600000px;}
.yf0{bottom:172.080000px;}
.y11f{bottom:174.060000px;}
.ybd{bottom:182.700000px;}
.y39{bottom:184.320000px;}
.y4e{bottom:184.545000px;}
.y87{bottom:185.940000px;}
.ya2{bottom:186.300000px;}
.yef{bottom:192.420000px;}
.y11e{bottom:195.120000px;}
.ybc{bottom:203.400000px;}
.y38{bottom:205.020000px;}
.y86{bottom:206.670000px;}
.y99{bottom:207.030000px;}
.y4d{bottom:208.845000px;}
.y11d{bottom:212.085000px;}
.yee{bottom:213.510000px;}
.ybb{bottom:224.130000px;}
.y37{bottom:225.390000px;}
.y126{bottom:226.650000px;}
.y85{bottom:227.730000px;}
.yed{bottom:230.445000px;}
.y11c{bottom:233.505000px;}
.yba{bottom:244.830000px;}
.y36{bottom:246.450000px;}
.y84{bottom:248.430000px;}
.yec{bottom:252.045000px;}
.y11b{bottom:254.925000px;}
.yb9{bottom:265.530000px;}
.y35{bottom:267.150000px;}
.ya1{bottom:268.770000px;}
.y83{bottom:269.130000px;}
.yeb{bottom:273.465000px;}
.y11a{bottom:276.345000px;}
.yb8{bottom:286.230000px;}
.y34{bottom:287.850000px;}
.ya0{bottom:289.470000px;}
.y82{bottom:289.830000px;}
.yea{bottom:294.885000px;}
.y119{bottom:302.430000px;}
.yb7{bottom:306.570000px;}
.y33{bottom:308.550000px;}
.ya6{bottom:310.170000px;}
.y81{bottom:310.530000px;}
.ye9{bottom:320.790000px;}
.y118{bottom:323.130000px;}
.yb6{bottom:327.630000px;}
.y32{bottom:329.250000px;}
.y80{bottom:331.230000px;}
.ye8{bottom:341.490000px;}
.y117{bottom:343.470000px;}
.yb5{bottom:344.565000px;}
.y31{bottom:349.950000px;}
.y7f{bottom:351.570000px;}
.y98{bottom:351.930000px;}
.ye7{bottom:361.830000px;}
.y116{bottom:364.530000px;}
.yb4{bottom:365.985000px;}
.y30{bottom:370.650000px;}
.y7e{bottom:372.270000px;}
.y97{bottom:372.630000px;}
.ye6{bottom:382.890000px;}
.y115{bottom:385.230000px;}
.yb2{bottom:387.405000px;}
.y2f{bottom:391.350000px;}
.y7d{bottom:393.330000px;}
.ye5{bottom:403.590000px;}
.y114{bottom:405.930000px;}
.y4c{bottom:408.270000px;}
.yb0{bottom:408.825000px;}
.y2e{bottom:412.050000px;}
.y96{bottom:413.670000px;}
.y7c{bottom:414.030000px;}
.ye4{bottom:424.290000px;}
.y113{bottom:426.450000px;}
.y2d{bottom:432.750000px;}
.y95{bottom:434.370000px;}
.y7b{bottom:434.730000px;}
.ye3{bottom:445.035000px;}
.y112{bottom:447.195000px;}
.y2c{bottom:453.495000px;}
.ya5{bottom:455.115000px;}
.y7a{bottom:455.475000px;}
.ye2{bottom:465.735000px;}
.y111{bottom:467.895000px;}
.y2b{bottom:474.195000px;}
.y9f{bottom:475.815000px;}
.y79{bottom:476.175000px;}
.ye1{bottom:486.435000px;}
.y110{bottom:488.595000px;}
.y2a{bottom:494.895000px;}
.y9e{bottom:496.515000px;}
.y78{bottom:496.875000px;}
.ye0{bottom:507.135000px;}
.y10f{bottom:509.295000px;}
.y29{bottom:515.595000px;}
.y77{bottom:517.575000px;}
.ydf{bottom:527.475000px;}
.y10e{bottom:529.995000px;}
.y28{bottom:536.295000px;}
.y76{bottom:538.275000px;}
.yde{bottom:548.535000px;}
.y10d{bottom:550.695000px;}
.y27{bottom:556.995000px;}
.y94{bottom:558.615000px;}
.y75{bottom:558.975000px;}
.ydd{bottom:565.455000px;}
.y10c{bottom:571.035000px;}
.y26{bottom:577.695000px;}
.y74{bottom:579.315000px;}
.y9d{bottom:579.675000px;}
.ydc{bottom:586.875000px;}
.y10b{bottom:592.095000px;}
.y25{bottom:598.395000px;}
.y73{bottom:600.015000px;}
.y93{bottom:600.375000px;}
.ydb{bottom:608.295000px;}
.y10a{bottom:609.195000px;}
.y24{bottom:619.095000px;}
.y72{bottom:621.075000px;}
.yda{bottom:629.895000px;}
.y109{bottom:630.615000px;}
.y48{bottom:631.695000px;}
.y23{bottom:639.795000px;}
.y71{bottom:641.775000px;}
.y108{bottom:652.035000px;}
.yd9{bottom:655.815000px;}
.y22{bottom:660.495000px;}
.y70{bottom:662.475000px;}
.y106{bottom:673.455000px;}
.yd8{bottom:676.545000px;}
.y21{bottom:681.225000px;}
.y6f{bottom:683.205000px;}
.y105{bottom:694.905000px;}
.yd7{bottom:696.885000px;}
.y42{bottom:697.605000px;}
.y20{bottom:701.925000px;}
.y92{bottom:703.545000px;}
.y6e{bottom:703.905000px;}
.yd6{bottom:717.945000px;}
.y104{bottom:720.825000px;}
.y1f{bottom:722.625000px;}
.y91{bottom:724.245000px;}
.y6d{bottom:724.605000px;}
.yd5{bottom:738.645000px;}
.y103{bottom:741.525000px;}
.y1e{bottom:743.325000px;}
.yaf{bottom:744.945000px;}
.y6c{bottom:745.305000px;}
.yd4{bottom:759.345000px;}
.y102{bottom:761.865000px;}
.y1d{bottom:764.025000px;}
.yae{bottom:765.645000px;}
.y6b{bottom:766.005000px;}
.yd3{bottom:780.045000px;}
.y101{bottom:782.925000px;}
.y1c{bottom:784.725000px;}
.yad{bottom:786.345000px;}
.y6a{bottom:786.705000px;}
.y41{bottom:798.945000px;}
.yd2{bottom:800.745000px;}
.y100{bottom:803.625000px;}
.y9c{bottom:807.045000px;}
.y69{bottom:807.405000px;}
.yd1{bottom:821.445000px;}
.y3f{bottom:822.345000px;}
.yff{bottom:824.325000px;}
.y9b{bottom:827.745000px;}
.y68{bottom:828.105000px;}
.yd0{bottom:842.145000px;}
.yfe{bottom:845.025000px;}
.y90{bottom:848.445000px;}
.y67{bottom:848.805000px;}
.y1b{bottom:850.065000px;}
.ycf{bottom:862.845000px;}
.yfd{bottom:865.725000px;}
.y8f{bottom:869.145000px;}
.y66{bottom:869.505000px;}
.y1a{bottom:870.405000px;}
.yce{bottom:883.545000px;}
.yfc{bottom:886.425000px;}
.yac{bottom:889.845000px;}
.y65{bottom:890.205000px;}
.y19{bottom:891.465000px;}
.ycd{bottom:903.885000px;}
.yfb{bottom:907.125000px;}
.y64{bottom:910.950000px;}
.y18{bottom:912.210000px;}
.ycc{bottom:924.990000px;}
.yfa{bottom:927.510000px;}
.y63{bottom:931.650000px;}
.y17{bottom:932.910000px;}
.ycb{bottom:941.910000px;}
.yf9{bottom:948.570000px;}
.y62{bottom:952.350000px;}
.y16{bottom:953.250000px;}
.yca{bottom:963.330000px;}
.yf8{bottom:965.490000px;}
.y61{bottom:973.050000px;}
.y15{bottom:973.950000px;}
.yc9{bottom:984.750000px;}
.yf7{bottom:987.090000px;}
.y125{bottom:993.390000px;}
.y60{bottom:993.750000px;}
.y14{bottom:995.190000px;}
.yc8{bottom:1006.170000px;}
.yf6{bottom:1008.510000px;}
.y124{bottom:1014.090000px;}
.y5f{bottom:1014.450000px;}
.y13{bottom:1019.310000px;}
.yc7{bottom:1027.590000px;}
.yf5{bottom:1029.930000px;}
.ya8{bottom:1034.790000px;}
.y5e{bottom:1035.150000px;}
.y12{bottom:1043.430000px;}
.yc6{bottom:1049.190000px;}
.y8e{bottom:1055.490000px;}
.y5d{bottom:1055.850000px;}
.y6{bottom:1066.650000px;}
.yc4{bottom:1070.610000px;}
.y8d{bottom:1076.190000px;}
.y5c{bottom:1076.550000px;}
.y5{bottom:1084.110000px;}
.yc2{bottom:1092.030000px;}
.ya7{bottom:1096.890000px;}
.y5b{bottom:1097.250000px;}
.y4{bottom:1103.370000px;}
.y8{bottom:1110.215319px;}
.ya4{bottom:1117.590000px;}
.y5a{bottom:1117.950000px;}
.y3{bottom:1133.430000px;}
.ya3{bottom:1138.290000px;}
.y59{bottom:1138.650000px;}
.y2{bottom:1150.920000px;}
.y1{bottom:1179.720000px;}
.ya{bottom:1219.140000px;}
.h7{height:15.648467px;}
.h18{height:20.158500px;}
.h1a{height:20.685000px;}
.h1b{height:20.700000px;}
.h1c{height:20.730000px;}
.h12{height:21.960000px;}
.h5{height:31.952109px;}
.h9{height:32.400000px;}
.hd{height:33.118500px;}
.hc{height:34.396523px;}
.hb{height:40.140000px;}
.h6{height:40.948242px;}
.h4{height:41.738906px;}
.h19{height:50.068125px;}
.h8{height:51.381523px;}
.h3{height:54.070312px;}
.he{height:54.421875px;}
.h14{height:58.651172px;}
.h16{height:60.226875px;}
.ha{height:62.296875px;}
.h15{height:65.196000px;}
.h11{height:70.664062px;}
.h10{height:72.562500px;}
.h2{height:81.105469px;}
.hf{height:84.898125px;}
.h13{height:100.620000px;}
.h17{height:222.690000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w24{width:28.425000px;}
.w23{width:33.480000px;}
.wb{width:42.285000px;}
.w17{width:42.465000px;}
.w11{width:42.501000px;}
.w26{width:54.360000px;}
.w9{width:61.725000px;}
.w6{width:67.485000px;}
.w16{width:69.469500px;}
.wf{width:73.425000px;}
.wa{width:73.429500px;}
.w21{width:73.461000px;}
.w15{width:73.641000px;}
.w19{width:81.360000px;}
.w1f{width:81.396000px;}
.wd{width:81.540000px;}
.w1d{width:81.576000px;}
.w25{width:86.061000px;}
.w13{width:87.516000px;}
.w14{width:96.645000px;}
.we{width:96.696000px;}
.w20{width:96.825000px;}
.w1a{width:96.876000px;}
.w1c{width:99.360000px;}
.wc{width:99.381000px;}
.w12{width:99.540000px;}
.w18{width:99.561000px;}
.w10{width:102.949500px;}
.w2{width:103.946873px;}
.w1b{width:108.529500px;}
.w1e{width:132.469500px;}
.w22{width:156.979500px;}
.w3{width:193.320000px;}
.w8{width:263.595000px;}
.w7{width:418.755000px;}
.w4{width:442.980000px;}
.w5{width:443.100000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x15{left:8.100000px;}
.x9{left:9.540000px;}
.x7{left:11.281912px;}
.xa{left:15.120000px;}
.xb{left:22.860000px;}
.x13{left:49.500000px;}
.x14{left:77.616000px;}
.x17{left:127.306500px;}
.x2{left:135.036000px;}
.x36{left:136.476000px;}
.x1{left:148.536000px;}
.xe{left:164.730000px;}
.xd{left:169.590000px;}
.x3{left:172.110000px;}
.x35{left:175.530000px;}
.x12{left:177.870000px;}
.x21{left:197.505000px;}
.x18{left:201.645000px;}
.x1c{left:230.985000px;}
.x25{left:236.565000px;}
.x22{left:240.705000px;}
.x19{left:244.845000px;}
.x28{left:260.505000px;}
.x1d{left:274.215000px;}
.x26{left:279.795000px;}
.x2d{left:285.015000px;}
.xf{left:290.235000px;}
.x29{left:303.735000px;}
.x32{left:317.595000px;}
.x2e{left:319.215000px;}
.x10{left:327.675000px;}
.x11{left:340.815000px;}
.x1a{left:344.955000px;}
.x33{left:372.675000px;}
.x1e{left:374.475000px;}
.x27{left:379.875000px;}
.x2a{left:403.995000px;}
.x2f{left:419.475000px;}
.x23{left:423.075000px;}
.x1b{left:427.215000px;}
.x5{left:446.505000px;}
.x1f{left:462.720000px;}
.x34{left:470.280000px;}
.x2b{left:486.120000px;}
.x30{left:507.720000px;}
.x24{left:520.680000px;}
.x6{left:524.083689px;}
.x20{left:560.100000px;}
.x2c{left:583.680000px;}
.x31{left:605.100000px;}
.x4{left:629.970000px;}
.x8{left:652.213689px;}
.xc{left:682.890000px;}
.x16{left:695.850000px;}
@media print{
.v2{vertical-align:-81.280000pt;}
.v1{vertical-align:-77.440000pt;}
.v0{vertical-align:0.000000pt;}
.ls6{letter-spacing:-0.704000pt;}
.ls9{letter-spacing:-0.192000pt;}
.lsc{letter-spacing:-0.128000pt;}
.lsb{letter-spacing:-0.064000pt;}
.ls3{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.069333pt;}
.ls4{letter-spacing:0.128000pt;}
.ls5{letter-spacing:0.160000pt;}
.ls1{letter-spacing:0.192000pt;}
.lsd{letter-spacing:0.384000pt;}
.ls7{letter-spacing:0.448000pt;}
.lsa{letter-spacing:0.704000pt;}
.ls8{letter-spacing:1.280000pt;}
.ls2{letter-spacing:663.818667pt;}
.wsc{word-spacing:-36.096000pt;}
.ws2{word-spacing:-18.720000pt;}
.ws0{word-spacing:-17.536000pt;}
.ws8{word-spacing:-17.280000pt;}
.ws6{word-spacing:-16.128000pt;}
.ws3{word-spacing:-16.000000pt;}
.wsa{word-spacing:-15.936000pt;}
.wsb{word-spacing:-15.872000pt;}
.ws9{word-spacing:-15.808000pt;}
.ws7{word-spacing:-15.296000pt;}
.ws4{word-spacing:-14.464000pt;}
.ws1{word-spacing:-0.043791pt;}
.ws5{word-spacing:0.000000pt;}
._4{margin-left:-10.880000pt;}
._22{margin-left:-2.594651pt;}
._0{margin-left:-1.536000pt;}
._2{width:1.583112pt;}
._15{width:2.516441pt;}
._5{width:3.968000pt;}
._6{width:4.928000pt;}
._b{width:6.272000pt;}
._a{width:7.424000pt;}
._14{width:8.576000pt;}
._18{width:9.488888pt;}
._e{width:10.688000pt;}
._f{width:11.584000pt;}
._13{width:13.248000pt;}
._9{width:14.400000pt;}
._19{width:16.988587pt;}
._7{width:18.048000pt;}
._8{width:19.264000pt;}
._1c{width:20.608000pt;}
._1d{width:21.772443pt;}
._1f{width:22.771557pt;}
._11{width:24.320000pt;}
._12{width:25.808888pt;}
._24{width:26.735112pt;}
._1a{width:28.480000pt;}
._1b{width:29.482667pt;}
._1e{width:30.421333pt;}
._23{width:31.596443pt;}
._26{width:33.344000pt;}
._27{width:35.072000pt;}
._20{width:37.595555pt;}
._10{width:38.528000pt;}
._21{width:39.511110pt;}
._25{width:40.586667pt;}
._c{width:63.296000pt;}
._d{width:64.208888pt;}
._3{width:185.990221pt;}
._17{width:236.160000pt;}
._1{width:383.998507pt;}
._16{width:732.298667pt;}
.fs2{font-size:37.120000pt;}
.fs6{font-size:40.320000pt;}
.fs3{font-size:42.880000pt;}
.fs5{font-size:43.790828pt;}
.fs4{font-size:48.000000pt;}
.fs8{font-size:53.120000pt;}
.fs9{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.fs7{font-size:74.880000pt;}
.fs0{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y9{bottom:2.960237pt;}
.yf{bottom:3.041333pt;}
.y47{bottom:3.360000pt;}
.yb1{bottom:3.666667pt;}
.yc3{bottom:3.680000pt;}
.yb3{bottom:3.986667pt;}
.yc5{bottom:4.000000pt;}
.y107{bottom:4.026667pt;}
.y58{bottom:4.160000pt;}
.y40{bottom:4.320000pt;}
.y4b{bottom:7.040000pt;}
.y57{bottom:7.200000pt;}
.yb{bottom:8.160000pt;}
.y11{bottom:14.240000pt;}
.yd{bottom:17.760000pt;}
.y46{bottom:18.720000pt;}
.y56{bottom:22.560000pt;}
.ye{bottom:23.838667pt;}
.yc{bottom:24.000000pt;}
.y10{bottom:24.320000pt;}
.y4a{bottom:26.240000pt;}
.y7{bottom:31.200000pt;}
.y45{bottom:34.720000pt;}
.y55{bottom:37.960000pt;}
.y49{bottom:45.626667pt;}
.y44{bottom:53.120000pt;}
.y54{bottom:53.960000pt;}
.y43{bottom:71.680000pt;}
.y3e{bottom:72.000000pt;}
.y53{bottom:72.360000pt;}
.yaa{bottom:73.280000pt;}
.y8c{bottom:73.600000pt;}
.yf4{bottom:79.360000pt;}
.y123{bottom:81.440000pt;}
.yc1{bottom:88.480000pt;}
.y3d{bottom:90.400000pt;}
.y52{bottom:90.760000pt;}
.ya9{bottom:91.680000pt;}
.y8b{bottom:92.000000pt;}
.yf3{bottom:97.760000pt;}
.y122{bottom:99.840000pt;}
.yc0{bottom:106.880000pt;}
.y3c{bottom:108.800000pt;}
.y51{bottom:109.160000pt;}
.yab{bottom:110.080000pt;}
.y8a{bottom:110.400000pt;}
.yf2{bottom:116.160000pt;}
.y121{bottom:118.240000pt;}
.ybf{bottom:125.600000pt;}
.y3b{bottom:127.040000pt;}
.y50{bottom:127.560000pt;}
.y89{bottom:128.800000pt;}
.yf1{bottom:134.560000pt;}
.y120{bottom:136.640000pt;}
.ybe{bottom:144.000000pt;}
.y3a{bottom:145.440000pt;}
.y4f{bottom:145.960000pt;}
.y9a{bottom:146.880000pt;}
.y88{bottom:147.200000pt;}
.yf0{bottom:152.960000pt;}
.y11f{bottom:154.720000pt;}
.ybd{bottom:162.400000pt;}
.y39{bottom:163.840000pt;}
.y4e{bottom:164.040000pt;}
.y87{bottom:165.280000pt;}
.ya2{bottom:165.600000pt;}
.yef{bottom:171.040000pt;}
.y11e{bottom:173.440000pt;}
.ybc{bottom:180.800000pt;}
.y38{bottom:182.240000pt;}
.y86{bottom:183.706667pt;}
.y99{bottom:184.026667pt;}
.y4d{bottom:185.640000pt;}
.y11d{bottom:188.520000pt;}
.yee{bottom:189.786667pt;}
.ybb{bottom:199.226667pt;}
.y37{bottom:200.346667pt;}
.y126{bottom:201.466667pt;}
.y85{bottom:202.426667pt;}
.yed{bottom:204.840000pt;}
.y11c{bottom:207.560000pt;}
.yba{bottom:217.626667pt;}
.y36{bottom:219.066667pt;}
.y84{bottom:220.826667pt;}
.yec{bottom:224.040000pt;}
.y11b{bottom:226.600000pt;}
.yb9{bottom:236.026667pt;}
.y35{bottom:237.466667pt;}
.ya1{bottom:238.906667pt;}
.y83{bottom:239.226667pt;}
.yeb{bottom:243.080000pt;}
.y11a{bottom:245.640000pt;}
.yb8{bottom:254.426667pt;}
.y34{bottom:255.866667pt;}
.ya0{bottom:257.306667pt;}
.y82{bottom:257.626667pt;}
.yea{bottom:262.120000pt;}
.y119{bottom:268.826667pt;}
.yb7{bottom:272.506667pt;}
.y33{bottom:274.266667pt;}
.ya6{bottom:275.706667pt;}
.y81{bottom:276.026667pt;}
.ye9{bottom:285.146667pt;}
.y118{bottom:287.226667pt;}
.yb6{bottom:291.226667pt;}
.y32{bottom:292.666667pt;}
.y80{bottom:294.426667pt;}
.ye8{bottom:303.546667pt;}
.y117{bottom:305.306667pt;}
.yb5{bottom:306.280000pt;}
.y31{bottom:311.066667pt;}
.y7f{bottom:312.506667pt;}
.y98{bottom:312.826667pt;}
.ye7{bottom:321.626667pt;}
.y116{bottom:324.026667pt;}
.yb4{bottom:325.320000pt;}
.y30{bottom:329.466667pt;}
.y7e{bottom:330.906667pt;}
.y97{bottom:331.226667pt;}
.ye6{bottom:340.346667pt;}
.y115{bottom:342.426667pt;}
.yb2{bottom:344.360000pt;}
.y2f{bottom:347.866667pt;}
.y7d{bottom:349.626667pt;}
.ye5{bottom:358.746667pt;}
.y114{bottom:360.826667pt;}
.y4c{bottom:362.906667pt;}
.yb0{bottom:363.400000pt;}
.y2e{bottom:366.266667pt;}
.y96{bottom:367.706667pt;}
.y7c{bottom:368.026667pt;}
.ye4{bottom:377.146667pt;}
.y113{bottom:379.066667pt;}
.y2d{bottom:384.666667pt;}
.y95{bottom:386.106667pt;}
.y7b{bottom:386.426667pt;}
.ye3{bottom:395.586667pt;}
.y112{bottom:397.506667pt;}
.y2c{bottom:403.106667pt;}
.ya5{bottom:404.546667pt;}
.y7a{bottom:404.866667pt;}
.ye2{bottom:413.986667pt;}
.y111{bottom:415.906667pt;}
.y2b{bottom:421.506667pt;}
.y9f{bottom:422.946667pt;}
.y79{bottom:423.266667pt;}
.ye1{bottom:432.386667pt;}
.y110{bottom:434.306667pt;}
.y2a{bottom:439.906667pt;}
.y9e{bottom:441.346667pt;}
.y78{bottom:441.666667pt;}
.ye0{bottom:450.786667pt;}
.y10f{bottom:452.706667pt;}
.y29{bottom:458.306667pt;}
.y77{bottom:460.066667pt;}
.ydf{bottom:468.866667pt;}
.y10e{bottom:471.106667pt;}
.y28{bottom:476.706667pt;}
.y76{bottom:478.466667pt;}
.yde{bottom:487.586667pt;}
.y10d{bottom:489.506667pt;}
.y27{bottom:495.106667pt;}
.y94{bottom:496.546667pt;}
.y75{bottom:496.866667pt;}
.ydd{bottom:502.626667pt;}
.y10c{bottom:507.586667pt;}
.y26{bottom:513.506667pt;}
.y74{bottom:514.946667pt;}
.y9d{bottom:515.266667pt;}
.ydc{bottom:521.666667pt;}
.y10b{bottom:526.306667pt;}
.y25{bottom:531.906667pt;}
.y73{bottom:533.346667pt;}
.y93{bottom:533.666667pt;}
.ydb{bottom:540.706667pt;}
.y10a{bottom:541.506667pt;}
.y24{bottom:550.306667pt;}
.y72{bottom:552.066667pt;}
.yda{bottom:559.906667pt;}
.y109{bottom:560.546667pt;}
.y48{bottom:561.506667pt;}
.y23{bottom:568.706667pt;}
.y71{bottom:570.466667pt;}
.y108{bottom:579.586667pt;}
.yd9{bottom:582.946667pt;}
.y22{bottom:587.106667pt;}
.y70{bottom:588.866667pt;}
.y106{bottom:598.626667pt;}
.yd8{bottom:601.373333pt;}
.y21{bottom:605.533333pt;}
.y6f{bottom:607.293333pt;}
.y105{bottom:617.693333pt;}
.yd7{bottom:619.453333pt;}
.y42{bottom:620.093333pt;}
.y20{bottom:623.933333pt;}
.y92{bottom:625.373333pt;}
.y6e{bottom:625.693333pt;}
.yd6{bottom:638.173333pt;}
.y104{bottom:640.733333pt;}
.y1f{bottom:642.333333pt;}
.y91{bottom:643.773333pt;}
.y6d{bottom:644.093333pt;}
.yd5{bottom:656.573333pt;}
.y103{bottom:659.133333pt;}
.y1e{bottom:660.733333pt;}
.yaf{bottom:662.173333pt;}
.y6c{bottom:662.493333pt;}
.yd4{bottom:674.973333pt;}
.y102{bottom:677.213333pt;}
.y1d{bottom:679.133333pt;}
.yae{bottom:680.573333pt;}
.y6b{bottom:680.893333pt;}
.yd3{bottom:693.373333pt;}
.y101{bottom:695.933333pt;}
.y1c{bottom:697.533333pt;}
.yad{bottom:698.973333pt;}
.y6a{bottom:699.293333pt;}
.y41{bottom:710.173333pt;}
.yd2{bottom:711.773333pt;}
.y100{bottom:714.333333pt;}
.y9c{bottom:717.373333pt;}
.y69{bottom:717.693333pt;}
.yd1{bottom:730.173333pt;}
.y3f{bottom:730.973333pt;}
.yff{bottom:732.733333pt;}
.y9b{bottom:735.773333pt;}
.y68{bottom:736.093333pt;}
.yd0{bottom:748.573333pt;}
.yfe{bottom:751.133333pt;}
.y90{bottom:754.173333pt;}
.y67{bottom:754.493333pt;}
.y1b{bottom:755.613333pt;}
.ycf{bottom:766.973333pt;}
.yfd{bottom:769.533333pt;}
.y8f{bottom:772.573333pt;}
.y66{bottom:772.893333pt;}
.y1a{bottom:773.693333pt;}
.yce{bottom:785.373333pt;}
.yfc{bottom:787.933333pt;}
.yac{bottom:790.973333pt;}
.y65{bottom:791.293333pt;}
.y19{bottom:792.413333pt;}
.ycd{bottom:803.453333pt;}
.yfb{bottom:806.333333pt;}
.y64{bottom:809.733333pt;}
.y18{bottom:810.853333pt;}
.ycc{bottom:822.213333pt;}
.yfa{bottom:824.453333pt;}
.y63{bottom:828.133333pt;}
.y17{bottom:829.253333pt;}
.ycb{bottom:837.253333pt;}
.yf9{bottom:843.173333pt;}
.y62{bottom:846.533333pt;}
.y16{bottom:847.333333pt;}
.yca{bottom:856.293333pt;}
.yf8{bottom:858.213333pt;}
.y61{bottom:864.933333pt;}
.y15{bottom:865.733333pt;}
.yc9{bottom:875.333333pt;}
.yf7{bottom:877.413333pt;}
.y125{bottom:883.013333pt;}
.y60{bottom:883.333333pt;}
.y14{bottom:884.613333pt;}
.yc8{bottom:894.373333pt;}
.yf6{bottom:896.453333pt;}
.y124{bottom:901.413333pt;}
.y5f{bottom:901.733333pt;}
.y13{bottom:906.053333pt;}
.yc7{bottom:913.413333pt;}
.yf5{bottom:915.493333pt;}
.ya8{bottom:919.813333pt;}
.y5e{bottom:920.133333pt;}
.y12{bottom:927.493333pt;}
.yc6{bottom:932.613333pt;}
.y8e{bottom:938.213333pt;}
.y5d{bottom:938.533333pt;}
.y6{bottom:948.133333pt;}
.yc4{bottom:951.653333pt;}
.y8d{bottom:956.613333pt;}
.y5c{bottom:956.933333pt;}
.y5{bottom:963.653333pt;}
.yc2{bottom:970.693333pt;}
.ya7{bottom:975.013333pt;}
.y5b{bottom:975.333333pt;}
.y4{bottom:980.773333pt;}
.y8{bottom:986.858061pt;}
.ya4{bottom:993.413333pt;}
.y5a{bottom:993.733333pt;}
.y3{bottom:1007.493333pt;}
.ya3{bottom:1011.813333pt;}
.y59{bottom:1012.133333pt;}
.y2{bottom:1023.040000pt;}
.y1{bottom:1048.640000pt;}
.ya{bottom:1083.680000pt;}
.h7{height:13.909749pt;}
.h18{height:17.918667pt;}
.h1a{height:18.386667pt;}
.h1b{height:18.400000pt;}
.h1c{height:18.426667pt;}
.h12{height:19.520000pt;}
.h5{height:28.401875pt;}
.h9{height:28.800000pt;}
.hd{height:29.438667pt;}
.hc{height:30.574687pt;}
.hb{height:35.680000pt;}
.h6{height:36.398438pt;}
.h4{height:37.101250pt;}
.h19{height:44.505000pt;}
.h8{height:45.672465pt;}
.h3{height:48.062500pt;}
.he{height:48.375000pt;}
.h14{height:52.134375pt;}
.h16{height:53.535000pt;}
.ha{height:55.375000pt;}
.h15{height:57.952000pt;}
.h11{height:62.812500pt;}
.h10{height:64.500000pt;}
.h2{height:72.093750pt;}
.hf{height:75.465000pt;}
.h13{height:89.440000pt;}
.h17{height:197.946667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w24{width:25.266667pt;}
.w23{width:29.760000pt;}
.wb{width:37.586667pt;}
.w17{width:37.746667pt;}
.w11{width:37.778667pt;}
.w26{width:48.320000pt;}
.w9{width:54.866667pt;}
.w6{width:59.986667pt;}
.w16{width:61.750667pt;}
.wf{width:65.266667pt;}
.wa{width:65.270667pt;}
.w21{width:65.298667pt;}
.w15{width:65.458667pt;}
.w19{width:72.320000pt;}
.w1f{width:72.352000pt;}
.wd{width:72.480000pt;}
.w1d{width:72.512000pt;}
.w25{width:76.498667pt;}
.w13{width:77.792000pt;}
.w14{width:85.906667pt;}
.we{width:85.952000pt;}
.w20{width:86.066667pt;}
.w1a{width:86.112000pt;}
.w1c{width:88.320000pt;}
.wc{width:88.338667pt;}
.w12{width:88.480000pt;}
.w18{width:88.498667pt;}
.w10{width:91.510667pt;}
.w2{width:92.397221pt;}
.w1b{width:96.470667pt;}
.w1e{width:117.750667pt;}
.w22{width:139.537333pt;}
.w3{width:171.840000pt;}
.w8{width:234.306667pt;}
.w7{width:372.226667pt;}
.w4{width:393.760000pt;}
.w5{width:393.866667pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x15{left:7.200000pt;}
.x9{left:8.480000pt;}
.x7{left:10.028367pt;}
.xa{left:13.440000pt;}
.xb{left:20.320000pt;}
.x13{left:44.000000pt;}
.x14{left:68.992000pt;}
.x17{left:113.161333pt;}
.x2{left:120.032000pt;}
.x36{left:121.312000pt;}
.x1{left:132.032000pt;}
.xe{left:146.426667pt;}
.xd{left:150.746667pt;}
.x3{left:152.986667pt;}
.x35{left:156.026667pt;}
.x12{left:158.106667pt;}
.x21{left:175.560000pt;}
.x18{left:179.240000pt;}
.x1c{left:205.320000pt;}
.x25{left:210.280000pt;}
.x22{left:213.960000pt;}
.x19{left:217.640000pt;}
.x28{left:231.560000pt;}
.x1d{left:243.746667pt;}
.x26{left:248.706667pt;}
.x2d{left:253.346667pt;}
.xf{left:257.986667pt;}
.x29{left:269.986667pt;}
.x32{left:282.306667pt;}
.x2e{left:283.746667pt;}
.x10{left:291.266667pt;}
.x11{left:302.946667pt;}
.x1a{left:306.626667pt;}
.x33{left:331.266667pt;}
.x1e{left:332.866667pt;}
.x27{left:337.666667pt;}
.x2a{left:359.106667pt;}
.x2f{left:372.866667pt;}
.x23{left:376.066667pt;}
.x1b{left:379.746667pt;}
.x5{left:396.893333pt;}
.x1f{left:411.306667pt;}
.x34{left:418.026667pt;}
.x2b{left:432.106667pt;}
.x30{left:451.306667pt;}
.x24{left:462.826667pt;}
.x6{left:465.852168pt;}
.x20{left:497.866667pt;}
.x2c{left:518.826667pt;}
.x31{left:537.866667pt;}
.x4{left:559.973333pt;}
.x8{left:579.745501pt;}
.xc{left:607.013333pt;}
.x16{left:618.533333pt;}
}




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