
    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_ef06f266cc3668d30781632b.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.073242;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_eb44284f314e250d52d013f3.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.073242;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_6cca43f00e50bbb94986b1d0.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.049805;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_099065dcab3f5cf4f821bc7b.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.040039;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_b8f3915b372cd27f049b9ea8.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.040039;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_37201fdcfc4740d55b680cf2.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.049805;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_fb376a2b04bd66ab46318ec4.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.682617;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_66e0d4e7a69949665d0ff687.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.092285;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_cf5b54b838ee9f69dcdff9c4.woff2')format("woff");}.ff9{font-family:ff9;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:-27.360000px;}
.v8{vertical-align:-10.800000px;}
.v6{vertical-align:-7.920000px;}
.va{vertical-align:-2.160000px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:2.160000px;}
.v7{vertical-align:7.920000px;}
.vb{vertical-align:10.800000px;}
.v9{vertical-align:12.960000px;}
.v1{vertical-align:27.360000px;}
.v5{vertical-align:32.400000px;}
.v3{vertical-align:36.000000px;}
.ls10{letter-spacing:-0.360000px;}
.lsf{letter-spacing:-0.108000px;}
.ls3{letter-spacing:0.000000px;}
.ls4{letter-spacing:0.018000px;}
.ls11{letter-spacing:0.151200px;}
.lse{letter-spacing:0.180000px;}
.ls2{letter-spacing:0.198000px;}
.ls1{letter-spacing:0.360000px;}
.ls0{letter-spacing:0.540000px;}
.ls6{letter-spacing:0.810000px;}
.ls5{letter-spacing:1.278000px;}
.ls7{letter-spacing:1.621440px;}
.lsa{letter-spacing:3.772800px;}
.ls12{letter-spacing:5.220000px;}
.lsd{letter-spacing:10.972800px;}
.lsc{letter-spacing:11.692800px;}
.ls14{letter-spacing:12.509280px;}
.lsb{letter-spacing:14.572800px;}
.ls9{letter-spacing:15.292800px;}
.ls13{letter-spacing:36.269280px;}
.ls8{letter-spacing:73.190880px;}
.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;}
}
.ws0{word-spacing:-18.000000px;}
.ws3{word-spacing:-16.560000px;}
.ws2{word-spacing:-13.860000px;}
.ws1{word-spacing:-13.500000px;}
.ws5{word-spacing:-13.392000px;}
.wsd{word-spacing:-12.420000px;}
.wsc{word-spacing:-12.060000px;}
.ws7{word-spacing:-11.880000px;}
.wse{word-spacing:-11.700000px;}
.ws8{word-spacing:-8.553600px;}
.ws9{word-spacing:-6.804000px;}
.wsa{word-spacing:-6.652800px;}
.ws4{word-spacing:0.000000px;}
.wsb{word-spacing:8.534880px;}
.ws6{word-spacing:9.990000px;}
._1a{margin-left:-4.150080px;}
._12{margin-left:-2.491920px;}
._0{margin-left:-1.179360px;}
._1{width:1.083360px;}
._5{width:2.268000px;}
._3{width:3.834000px;}
._c{width:4.968000px;}
._2{width:6.156000px;}
._b{width:8.154000px;}
._e{width:9.774000px;}
._d{width:11.286000px;}
._6{width:12.411360px;}
._4{width:14.688000px;}
._10{width:15.818640px;}
._11{width:17.344080px;}
._8{width:18.954000px;}
._f{width:20.799360px;}
._7{width:21.978000px;}
._26{width:23.112000px;}
._15{width:24.732000px;}
._19{width:26.400000px;}
._14{width:27.918000px;}
._1e{width:29.430000px;}
._1d{width:30.834000px;}
._24{width:32.931360px;}
._18{width:34.236000px;}
._1f{width:35.478000px;}
._22{width:37.206000px;}
._13{width:38.772000px;}
._17{width:40.554000px;}
._25{width:42.008640px;}
._a{width:43.956000px;}
._9{width:45.144000px;}
._27{width:46.656000px;}
._28{width:47.952000px;}
._23{width:51.516000px;}
._29{width:53.892000px;}
._20{width:54.972000px;}
._21{width:55.998000px;}
._16{width:63.882000px;}
._2a{width:68.452560px;}
._1c{width:81.918000px;}
._1b{width:82.944000px;}
._2b{width:275.182560px;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:30.240000px;}
.fs5{font-size:38.880000px;}
.fs2{font-size:48.240000px;}
.fs3{font-size:54.000000px;}
.fs4{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.fs0{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.yba{bottom:1.080000px;}
.yc1{bottom:5.580000px;}
.yc6{bottom:11.340000px;}
.ybb{bottom:11.520000px;}
.yc0{bottom:12.240000px;}
.yb9{bottom:20.340000px;}
.y59{bottom:151.590000px;}
.y36{bottom:158.970000px;}
.y117{bottom:161.670000px;}
.y58{bottom:167.070000px;}
.yc5{bottom:169.950000px;}
.y116{bottom:177.330000px;}
.y35{bottom:177.510000px;}
.y90{bottom:182.370000px;}
.y57{bottom:182.550000px;}
.y149{bottom:183.270000px;}
.ye7{bottom:191.730000px;}
.y115{bottom:192.810000px;}
.y34{bottom:196.050000px;}
.y56{bottom:198.030000px;}
.y8f{bottom:200.910000px;}
.y148{bottom:201.810000px;}
.ye6{bottom:207.210000px;}
.y114{bottom:208.290000px;}
.yc4{bottom:208.470000px;}
.y33{bottom:211.530000px;}
.y55{bottom:213.690000px;}
.y8e{bottom:216.390000px;}
.y147{bottom:220.170000px;}
.ye5{bottom:222.690000px;}
.y113{bottom:223.770000px;}
.yc3{bottom:223.950000px;}
.y32{bottom:227.190000px;}
.y54{bottom:229.170000px;}
.y8d{bottom:231.870000px;}
.ye4{bottom:238.170000px;}
.y146{bottom:238.710000px;}
.y112{bottom:239.430000px;}
.yc2{bottom:242.490000px;}
.y31{bottom:242.670000px;}
.y53{bottom:244.650000px;}
.y8c{bottom:247.350000px;}
.y111{bottom:254.910000px;}
.ybf{bottom:255.090000px;}
.ye3{bottom:256.710000px;}
.y145{bottom:257.250000px;}
.y30{bottom:258.150000px;}
.y8b{bottom:263.010000px;}
.y110{bottom:270.390000px;}
.ye2{bottom:272.190000px;}
.y2f{bottom:273.630000px;}
.y144{bottom:275.790000px;}
.y8a{bottom:278.490000px;}
.y52{bottom:282.630000px;}
.ye1{bottom:287.850000px;}
.y2e{bottom:289.290000px;}
.ybe{bottom:293.610000px;}
.y143{bottom:294.330000px;}
.y51{bottom:298.290000px;}
.ye0{bottom:303.330000px;}
.y89{bottom:303.510000px;}
.y2d{bottom:304.770000px;}
.y10f{bottom:308.370000px;}
.ybd{bottom:309.090000px;}
.y142{bottom:309.810000px;}
.y50{bottom:313.770000px;}
.ydf{bottom:318.810000px;}
.y2c{bottom:320.250000px;}
.y10e{bottom:324.030000px;}
.y141{bottom:325.470000px;}
.ybc{bottom:327.630000px;}
.y4f{bottom:329.250000px;}
.y2b{bottom:335.730000px;}
.y88{bottom:338.430000px;}
.y10d{bottom:339.510000px;}
.yb8{bottom:340.230000px;}
.y140{bottom:340.950000px;}
.yde{bottom:343.290000px;}
.y4e{bottom:344.730000px;}
.y2a{bottom:351.390000px;}
.y87{bottom:353.910000px;}
.y10c{bottom:354.990000px;}
.y13f{bottom:356.430000px;}
.y4d{bottom:360.210000px;}
.y29{bottom:366.870000px;}
.y86{bottom:369.570000px;}
.y10b{bottom:370.470000px;}
.y13e{bottom:374.970000px;}
.ydd{bottom:375.330000px;}
.y4c{bottom:375.870000px;}
.yb7{bottom:378.750000px;}
.y28{bottom:382.350000px;}
.y85{bottom:385.050000px;}
.y10a{bottom:386.130000px;}
.y13d{bottom:390.495000px;}
.ya5{bottom:391.035000px;}
.y4b{bottom:391.395000px;}
.yb6{bottom:394.455000px;}
.y27{bottom:397.875000px;}
.y84{bottom:400.575000px;}
.y109{bottom:401.655000px;}
.y13c{bottom:405.975000px;}
.ya4{bottom:406.515000px;}
.y4a{bottom:406.875000px;}
.yb5{bottom:412.995000px;}
.y26{bottom:413.355000px;}
.y83{bottom:416.055000px;}
.y13b{bottom:421.635000px;}
.ya3{bottom:421.995000px;}
.y49{bottom:422.355000px;}
.ydc{bottom:425.055000px;}
.yb4{bottom:428.475000px;}
.y25{bottom:429.015000px;}
.y82{bottom:431.715000px;}
.y13a{bottom:437.115000px;}
.ya2{bottom:437.475000px;}
.y48{bottom:438.015000px;}
.y108{bottom:439.635000px;}
.ydb{bottom:440.535000px;}
.yb3{bottom:443.955000px;}
.y81{bottom:447.195000px;}
.ya1{bottom:453.135000px;}
.y47{bottom:453.495000px;}
.y24{bottom:454.035000px;}
.y139{bottom:455.655000px;}
.yda{bottom:456.015000px;}
.yb2{bottom:459.435000px;}
.y80{bottom:462.675000px;}
.y46{bottom:468.975000px;}
.y138{bottom:471.135000px;}
.y107{bottom:471.675000px;}
.yd9{bottom:474.555000px;}
.yb1{bottom:475.095000px;}
.ya0{bottom:477.615000px;}
.y7f{bottom:478.155000px;}
.y23{bottom:481.395000px;}
.y45{bottom:484.455000px;}
.y173{bottom:485.355000px;}
.y137{bottom:486.615000px;}
.y106{bottom:487.155000px;}
.yd8{bottom:490.035000px;}
.y7e{bottom:493.815000px;}
.y22{bottom:497.055000px;}
.y172{bottom:498.855000px;}
.yb0{bottom:499.575000px;}
.y44{bottom:500.115000px;}
.y136{bottom:502.275000px;}
.y105{bottom:502.815000px;}
.y7d{bottom:509.295000px;}
.y9f{bottom:509.655000px;}
.y171{bottom:512.355000px;}
.y21{bottom:512.535000px;}
.y135{bottom:517.755000px;}
.y104{bottom:518.295000px;}
.y9e{bottom:525.135000px;}
.y20{bottom:528.015000px;}
.y170{bottom:529.635000px;}
.yaf{bottom:531.615000px;}
.y7c{bottom:534.315000px;}
.y134{bottom:536.295000px;}
.y103{bottom:536.835000px;}
.y43{bottom:538.095000px;}
.y16f{bottom:543.135000px;}
.y1f{bottom:543.495000px;}
.y9d{bottom:543.675000px;}
.yae{bottom:547.095000px;}
.y133{bottom:551.775000px;}
.y102{bottom:552.315000px;}
.y42{bottom:553.575000px;}
.y16e{bottom:556.635000px;}
.y1e{bottom:559.155000px;}
.y9c{bottom:559.335000px;}
.yad{bottom:565.635000px;}
.y132{bottom:567.255000px;}
.y101{bottom:567.795000px;}
.y41{bottom:569.055000px;}
.y7b{bottom:569.235000px;}
.y16d{bottom:573.915000px;}
.y1d{bottom:574.635000px;}
.yac{bottom:581.115000px;}
.y131{bottom:582.735000px;}
.y100{bottom:583.275000px;}
.y40{bottom:584.715000px;}
.y16c{bottom:587.415000px;}
.y1c{bottom:590.115000px;}
.y130{bottom:598.395000px;}
.yff{bottom:598.935000px;}
.y3f{bottom:600.195000px;}
.y7a{bottom:600.375000px;}
.y16b{bottom:604.695000px;}
.y1b{bottom:605.595000px;}
.y12f{bottom:613.875000px;}
.yfe{bottom:614.415000px;}
.y3e{bottom:615.675000px;}
.y79{bottom:615.855000px;}
.y16a{bottom:618.195000px;}
.y1a{bottom:621.255000px;}
.yfd{bottom:629.895000px;}
.y3d{bottom:631.155000px;}
.y169{bottom:631.695000px;}
.y78{bottom:634.395000px;}
.y19{bottom:636.735000px;}
.y12e{bottom:638.895000px;}
.y3c{bottom:646.845000px;}
.y168{bottom:648.825000px;}
.y77{bottom:649.905000px;}
.y18{bottom:652.245000px;}
.yfc{bottom:654.405000px;}
.y3b{bottom:662.325000px;}
.y76{bottom:665.385000px;}
.y17{bottom:667.725000px;}
.y167{bottom:675.825000px;}
.y3a{bottom:677.805000px;}
.y12d{bottom:679.965000px;}
.y75{bottom:680.865000px;}
.y16{bottom:683.385000px;}
.yfb{bottom:686.445000px;}
.y166{bottom:689.325000px;}
.y39{bottom:693.285000px;}
.y12c{bottom:695.445000px;}
.y74{bottom:696.525000px;}
.y15{bottom:698.865000px;}
.yfa{bottom:702.105000px;}
.y165{bottom:706.605000px;}
.y38{bottom:708.945000px;}
.y12b{bottom:710.925000px;}
.y73{bottom:712.005000px;}
.y14{bottom:714.345000px;}
.yf9{bottom:717.585000px;}
.y164{bottom:720.105000px;}
.y12a{bottom:726.405000px;}
.y13{bottom:729.825000px;}
.y72{bottom:730.545000px;}
.yf8{bottom:733.065000px;}
.y163{bottom:733.605000px;}
.y129{bottom:742.065000px;}
.y71{bottom:746.025000px;}
.y37{bottom:747.465000px;}
.y162{bottom:750.885000px;}
.y12{bottom:755.025000px;}
.y128{bottom:757.545000px;}
.yf7{bottom:758.085000px;}
.yab{bottom:760.425000px;}
.y70{bottom:761.505000px;}
.y161{bottom:764.385000px;}
.y9b{bottom:766.545000px;}
.y127{bottom:773.025000px;}
.yaa{bottom:775.905000px;}
.y6f{bottom:777.165000px;}
.y160{bottom:777.885000px;}
.y9a{bottom:782.025000px;}
.y126{bottom:788.505000px;}
.yd7{bottom:790.845000px;}
.ya9{bottom:791.385000px;}
.y6e{bottom:792.645000px;}
.yf6{bottom:793.005000px;}
.y15f{bottom:795.165000px;}
.y11{bottom:795.885000px;}
.y99{bottom:800.565000px;}
.y125{bottom:804.165000px;}
.yd6{bottom:806.325000px;}
.ya8{bottom:807.045000px;}
.y6d{bottom:808.125000px;}
.yf5{bottom:808.665000px;}
.y10{bottom:811.185000px;}
.y98{bottom:816.045000px;}
.y124{bottom:819.645000px;}
.yd5{bottom:821.985000px;}
.y15e{bottom:822.165000px;}
.yf4{bottom:824.145000px;}
.yf{bottom:826.485000px;}
.y6c{bottom:826.665000px;}
.y97{bottom:831.525000px;}
.y123{bottom:835.125000px;}
.yd4{bottom:837.465000px;}
.y15d{bottom:839.445000px;}
.yf3{bottom:839.625000px;}
.ye{bottom:841.785000px;}
.y6b{bottom:842.145000px;}
.y96{bottom:850.065000px;}
.y122{bottom:850.605000px;}
.yd3{bottom:852.945000px;}
.yd{bottom:856.905000px;}
.y6a{bottom:857.625000px;}
.yf2{bottom:858.165000px;}
.ya7{bottom:863.565000px;}
.y95{bottom:865.725000px;}
.yd2{bottom:868.425000px;}
.y15c{bottom:870.225000px;}
.y69{bottom:873.285000px;}
.yf1{bottom:873.645000px;}
.yc{bottom:877.605000px;}
.ya6{bottom:879.045000px;}
.y15b{bottom:883.725000px;}
.yd1{bottom:884.085000px;}
.y68{bottom:888.765000px;}
.yf0{bottom:889.125000px;}
.y15a{bottom:897.270000px;}
.y67{bottom:904.290000px;}
.yef{bottom:904.830000px;}
.yb{bottom:905.190000px;}
.yd0{bottom:908.610000px;}
.y159{bottom:914.370000px;}
.ya{bottom:919.050000px;}
.y66{bottom:919.770000px;}
.yee{bottom:920.310000px;}
.y158{bottom:927.870000px;}
.y121{bottom:935.250000px;}
.y65{bottom:935.430000px;}
.yed{bottom:935.790000px;}
.y9{bottom:939.750000px;}
.y157{bottom:941.370000px;}
.ycf{bottom:947.130000px;}
.y120{bottom:950.730000px;}
.y64{bottom:953.970000px;}
.y156{bottom:958.650000px;}
.yec{bottom:960.270000px;}
.y8{bottom:960.450000px;}
.y11f{bottom:966.390000px;}
.y63{bottom:969.450000px;}
.y155{bottom:972.150000px;}
.yce{bottom:979.170000px;}
.y11e{bottom:981.870000px;}
.y62{bottom:984.930000px;}
.y154{bottom:985.650000px;}
.y7{bottom:987.990000px;}
.yeb{bottom:992.310000px;}
.ycd{bottom:994.650000px;}
.y11d{bottom:997.350000px;}
.y61{bottom:1000.410000px;}
.y6{bottom:1001.850000px;}
.y153{bottom:1002.930000px;}
.yea{bottom:1007.970000px;}
.ycc{bottom:1010.130000px;}
.y11c{bottom:1012.830000px;}
.y60{bottom:1016.070000px;}
.y152{bottom:1016.430000px;}
.y5{bottom:1022.550000px;}
.ye9{bottom:1023.450000px;}
.ycb{bottom:1025.790000px;}
.y11b{bottom:1028.490000px;}
.y5f{bottom:1031.550000px;}
.y151{bottom:1033.710000px;}
.ye8{bottom:1038.930000px;}
.yca{bottom:1041.630000px;}
.y4{bottom:1043.250000px;}
.y11a{bottom:1043.970000px;}
.y5e{bottom:1047.030000px;}
.y150{bottom:1047.210000px;}
.yc9{bottom:1054.410000px;}
.y119{bottom:1059.450000px;}
.y3{bottom:1063.950000px;}
.y14f{bottom:1064.490000px;}
.y5d{bottom:1072.050000px;}
.y94{bottom:1072.950000px;}
.y14e{bottom:1077.990000px;}
.y2{bottom:1085.190000px;}
.y93{bottom:1088.430000px;}
.y14d{bottom:1091.490000px;}
.yc8{bottom:1092.930000px;}
.y118{bottom:1097.430000px;}
.y92{bottom:1104.090000px;}
.yc7{bottom:1105.530000px;}
.y14c{bottom:1108.770000px;}
.y5c{bottom:1113.090000px;}
.y1{bottom:1116.870000px;}
.y91{bottom:1119.570000px;}
.y14b{bottom:1122.270000px;}
.y5b{bottom:1128.570000px;}
.y14a{bottom:1139.910000px;}
.y5a{bottom:1144.050000px;}
.he{height:32.580000px;}
.hb{height:32.760000px;}
.h7{height:35.991211px;}
.h5{height:40.231406px;}
.h9{height:45.035156px;}
.ha{height:46.300781px;}
.hc{height:47.065430px;}
.h11{height:49.225430px;}
.h8{height:56.795625px;}
.h3{height:60.046875px;}
.h6{height:61.734375px;}
.hf{height:66.287109px;}
.h4{height:67.120312px;}
.h10{height:71.675156px;}
.h2{height:72.229219px;}
.hd{height:85.225430px;}
.h1{height:1263.000000px;}
.h0{height:1263.060000px;}
.w4{width:31.860000px;}
.w6{width:32.040000px;}
.w5{width:307.470000px;}
.w3{width:307.695000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x20{left:8.100000px;}
.x23{left:70.230000px;}
.xd{left:84.959987px;}
.x25{left:100.980000px;}
.x4{left:112.355987px;}
.x1e{left:113.430000px;}
.x21{left:117.030000px;}
.x1b{left:120.455987px;}
.x13{left:138.995987px;}
.x22{left:166.170000px;}
.x15{left:174.449987px;}
.x12{left:177.869987px;}
.x8{left:182.369987px;}
.x14{left:188.849987px;}
.x1d{left:204.329987px;}
.x2b{left:216.029987px;}
.x29{left:218.909987px;}
.xe{left:222.689987px;}
.xc{left:229.529987px;}
.xa{left:264.449987px;}
.x2{left:288.974987px;}
.x1{left:298.334987px;}
.x7{left:341.174987px;}
.x6{left:342.974987px;}
.x9{left:349.994987px;}
.xb{left:364.394987px;}
.x1c{left:379.334987px;}
.x1a{left:383.834987px;}
.x1f{left:392.655000px;}
.x5{left:408.854987px;}
.x3{left:446.474987px;}
.x11{left:467.924987px;}
.x10{left:521.924987px;}
.x28{left:536.864987px;}
.x26{left:564.944987px;}
.x19{left:569.804987px;}
.x17{left:575.744987px;}
.x2a{left:608.144987px;}
.xf{left:611.924987px;}
.x18{left:750.569987px;}
.x24{left:775.410000px;}
.x16{left:784.589987px;}
.x27{left:808.169987px;}
@media print{
.v2{vertical-align:-24.320000pt;}
.v8{vertical-align:-9.600000pt;}
.v6{vertical-align:-7.040000pt;}
.va{vertical-align:-1.920000pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:1.920000pt;}
.v7{vertical-align:7.040000pt;}
.vb{vertical-align:9.600000pt;}
.v9{vertical-align:11.520000pt;}
.v1{vertical-align:24.320000pt;}
.v5{vertical-align:28.800000pt;}
.v3{vertical-align:32.000000pt;}
.ls10{letter-spacing:-0.320000pt;}
.lsf{letter-spacing:-0.096000pt;}
.ls3{letter-spacing:0.000000pt;}
.ls4{letter-spacing:0.016000pt;}
.ls11{letter-spacing:0.134400pt;}
.lse{letter-spacing:0.160000pt;}
.ls2{letter-spacing:0.176000pt;}
.ls1{letter-spacing:0.320000pt;}
.ls0{letter-spacing:0.480000pt;}
.ls6{letter-spacing:0.720000pt;}
.ls5{letter-spacing:1.136000pt;}
.ls7{letter-spacing:1.441280pt;}
.lsa{letter-spacing:3.353600pt;}
.ls12{letter-spacing:4.640000pt;}
.lsd{letter-spacing:9.753600pt;}
.lsc{letter-spacing:10.393600pt;}
.ls14{letter-spacing:11.119360pt;}
.lsb{letter-spacing:12.953600pt;}
.ls9{letter-spacing:13.593600pt;}
.ls13{letter-spacing:32.239360pt;}
.ls8{letter-spacing:65.058560pt;}
.ws0{word-spacing:-16.000000pt;}
.ws3{word-spacing:-14.720000pt;}
.ws2{word-spacing:-12.320000pt;}
.ws1{word-spacing:-12.000000pt;}
.ws5{word-spacing:-11.904000pt;}
.wsd{word-spacing:-11.040000pt;}
.wsc{word-spacing:-10.720000pt;}
.ws7{word-spacing:-10.560000pt;}
.wse{word-spacing:-10.400000pt;}
.ws8{word-spacing:-7.603200pt;}
.ws9{word-spacing:-6.048000pt;}
.wsa{word-spacing:-5.913600pt;}
.ws4{word-spacing:0.000000pt;}
.wsb{word-spacing:7.586560pt;}
.ws6{word-spacing:8.880000pt;}
._1a{margin-left:-3.688960pt;}
._12{margin-left:-2.215040pt;}
._0{margin-left:-1.048320pt;}
._1{width:0.962987pt;}
._5{width:2.016000pt;}
._3{width:3.408000pt;}
._c{width:4.416000pt;}
._2{width:5.472000pt;}
._b{width:7.248000pt;}
._e{width:8.688000pt;}
._d{width:10.032000pt;}
._6{width:11.032320pt;}
._4{width:13.056000pt;}
._10{width:14.061013pt;}
._11{width:15.416960pt;}
._8{width:16.848000pt;}
._f{width:18.488320pt;}
._7{width:19.536000pt;}
._26{width:20.544000pt;}
._15{width:21.984000pt;}
._19{width:23.466667pt;}
._14{width:24.816000pt;}
._1e{width:26.160000pt;}
._1d{width:27.408000pt;}
._24{width:29.272320pt;}
._18{width:30.432000pt;}
._1f{width:31.536000pt;}
._22{width:33.072000pt;}
._13{width:34.464000pt;}
._17{width:36.048000pt;}
._25{width:37.341013pt;}
._a{width:39.072000pt;}
._9{width:40.128000pt;}
._27{width:41.472000pt;}
._28{width:42.624000pt;}
._23{width:45.792000pt;}
._29{width:47.904000pt;}
._20{width:48.864000pt;}
._21{width:49.776000pt;}
._16{width:56.784000pt;}
._2a{width:60.846720pt;}
._1c{width:72.816000pt;}
._1b{width:73.728000pt;}
._2b{width:244.606720pt;}
.fs6{font-size:26.880000pt;}
.fs5{font-size:34.560000pt;}
.fs2{font-size:42.880000pt;}
.fs3{font-size:48.000000pt;}
.fs4{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.fs0{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.yba{bottom:0.960000pt;}
.yc1{bottom:4.960000pt;}
.yc6{bottom:10.080000pt;}
.ybb{bottom:10.240000pt;}
.yc0{bottom:10.880000pt;}
.yb9{bottom:18.080000pt;}
.y59{bottom:134.746667pt;}
.y36{bottom:141.306667pt;}
.y117{bottom:143.706667pt;}
.y58{bottom:148.506667pt;}
.yc5{bottom:151.066667pt;}
.y116{bottom:157.626667pt;}
.y35{bottom:157.786667pt;}
.y90{bottom:162.106667pt;}
.y57{bottom:162.266667pt;}
.y149{bottom:162.906667pt;}
.ye7{bottom:170.426667pt;}
.y115{bottom:171.386667pt;}
.y34{bottom:174.266667pt;}
.y56{bottom:176.026667pt;}
.y8f{bottom:178.586667pt;}
.y148{bottom:179.386667pt;}
.ye6{bottom:184.186667pt;}
.y114{bottom:185.146667pt;}
.yc4{bottom:185.306667pt;}
.y33{bottom:188.026667pt;}
.y55{bottom:189.946667pt;}
.y8e{bottom:192.346667pt;}
.y147{bottom:195.706667pt;}
.ye5{bottom:197.946667pt;}
.y113{bottom:198.906667pt;}
.yc3{bottom:199.066667pt;}
.y32{bottom:201.946667pt;}
.y54{bottom:203.706667pt;}
.y8d{bottom:206.106667pt;}
.ye4{bottom:211.706667pt;}
.y146{bottom:212.186667pt;}
.y112{bottom:212.826667pt;}
.yc2{bottom:215.546667pt;}
.y31{bottom:215.706667pt;}
.y53{bottom:217.466667pt;}
.y8c{bottom:219.866667pt;}
.y111{bottom:226.586667pt;}
.ybf{bottom:226.746667pt;}
.ye3{bottom:228.186667pt;}
.y145{bottom:228.666667pt;}
.y30{bottom:229.466667pt;}
.y8b{bottom:233.786667pt;}
.y110{bottom:240.346667pt;}
.ye2{bottom:241.946667pt;}
.y2f{bottom:243.226667pt;}
.y144{bottom:245.146667pt;}
.y8a{bottom:247.546667pt;}
.y52{bottom:251.226667pt;}
.ye1{bottom:255.866667pt;}
.y2e{bottom:257.146667pt;}
.ybe{bottom:260.986667pt;}
.y143{bottom:261.626667pt;}
.y51{bottom:265.146667pt;}
.ye0{bottom:269.626667pt;}
.y89{bottom:269.786667pt;}
.y2d{bottom:270.906667pt;}
.y10f{bottom:274.106667pt;}
.ybd{bottom:274.746667pt;}
.y142{bottom:275.386667pt;}
.y50{bottom:278.906667pt;}
.ydf{bottom:283.386667pt;}
.y2c{bottom:284.666667pt;}
.y10e{bottom:288.026667pt;}
.y141{bottom:289.306667pt;}
.ybc{bottom:291.226667pt;}
.y4f{bottom:292.666667pt;}
.y2b{bottom:298.426667pt;}
.y88{bottom:300.826667pt;}
.y10d{bottom:301.786667pt;}
.yb8{bottom:302.426667pt;}
.y140{bottom:303.066667pt;}
.yde{bottom:305.146667pt;}
.y4e{bottom:306.426667pt;}
.y2a{bottom:312.346667pt;}
.y87{bottom:314.586667pt;}
.y10c{bottom:315.546667pt;}
.y13f{bottom:316.826667pt;}
.y4d{bottom:320.186667pt;}
.y29{bottom:326.106667pt;}
.y86{bottom:328.506667pt;}
.y10b{bottom:329.306667pt;}
.y13e{bottom:333.306667pt;}
.ydd{bottom:333.626667pt;}
.y4c{bottom:334.106667pt;}
.yb7{bottom:336.666667pt;}
.y28{bottom:339.866667pt;}
.y85{bottom:342.266667pt;}
.y10a{bottom:343.226667pt;}
.y13d{bottom:347.106667pt;}
.ya5{bottom:347.586667pt;}
.y4b{bottom:347.906667pt;}
.yb6{bottom:350.626667pt;}
.y27{bottom:353.666667pt;}
.y84{bottom:356.066667pt;}
.y109{bottom:357.026667pt;}
.y13c{bottom:360.866667pt;}
.ya4{bottom:361.346667pt;}
.y4a{bottom:361.666667pt;}
.yb5{bottom:367.106667pt;}
.y26{bottom:367.426667pt;}
.y83{bottom:369.826667pt;}
.y13b{bottom:374.786667pt;}
.ya3{bottom:375.106667pt;}
.y49{bottom:375.426667pt;}
.ydc{bottom:377.826667pt;}
.yb4{bottom:380.866667pt;}
.y25{bottom:381.346667pt;}
.y82{bottom:383.746667pt;}
.y13a{bottom:388.546667pt;}
.ya2{bottom:388.866667pt;}
.y48{bottom:389.346667pt;}
.y108{bottom:390.786667pt;}
.ydb{bottom:391.586667pt;}
.yb3{bottom:394.626667pt;}
.y81{bottom:397.506667pt;}
.ya1{bottom:402.786667pt;}
.y47{bottom:403.106667pt;}
.y24{bottom:403.586667pt;}
.y139{bottom:405.026667pt;}
.yda{bottom:405.346667pt;}
.yb2{bottom:408.386667pt;}
.y80{bottom:411.266667pt;}
.y46{bottom:416.866667pt;}
.y138{bottom:418.786667pt;}
.y107{bottom:419.266667pt;}
.yd9{bottom:421.826667pt;}
.yb1{bottom:422.306667pt;}
.ya0{bottom:424.546667pt;}
.y7f{bottom:425.026667pt;}
.y23{bottom:427.906667pt;}
.y45{bottom:430.626667pt;}
.y173{bottom:431.426667pt;}
.y137{bottom:432.546667pt;}
.y106{bottom:433.026667pt;}
.yd8{bottom:435.586667pt;}
.y7e{bottom:438.946667pt;}
.y22{bottom:441.826667pt;}
.y172{bottom:443.426667pt;}
.yb0{bottom:444.066667pt;}
.y44{bottom:444.546667pt;}
.y136{bottom:446.466667pt;}
.y105{bottom:446.946667pt;}
.y7d{bottom:452.706667pt;}
.y9f{bottom:453.026667pt;}
.y171{bottom:455.426667pt;}
.y21{bottom:455.586667pt;}
.y135{bottom:460.226667pt;}
.y104{bottom:460.706667pt;}
.y9e{bottom:466.786667pt;}
.y20{bottom:469.346667pt;}
.y170{bottom:470.786667pt;}
.yaf{bottom:472.546667pt;}
.y7c{bottom:474.946667pt;}
.y134{bottom:476.706667pt;}
.y103{bottom:477.186667pt;}
.y43{bottom:478.306667pt;}
.y16f{bottom:482.786667pt;}
.y1f{bottom:483.106667pt;}
.y9d{bottom:483.266667pt;}
.yae{bottom:486.306667pt;}
.y133{bottom:490.466667pt;}
.y102{bottom:490.946667pt;}
.y42{bottom:492.066667pt;}
.y16e{bottom:494.786667pt;}
.y1e{bottom:497.026667pt;}
.y9c{bottom:497.186667pt;}
.yad{bottom:502.786667pt;}
.y132{bottom:504.226667pt;}
.y101{bottom:504.706667pt;}
.y41{bottom:505.826667pt;}
.y7b{bottom:505.986667pt;}
.y16d{bottom:510.146667pt;}
.y1d{bottom:510.786667pt;}
.yac{bottom:516.546667pt;}
.y131{bottom:517.986667pt;}
.y100{bottom:518.466667pt;}
.y40{bottom:519.746667pt;}
.y16c{bottom:522.146667pt;}
.y1c{bottom:524.546667pt;}
.y130{bottom:531.906667pt;}
.yff{bottom:532.386667pt;}
.y3f{bottom:533.506667pt;}
.y7a{bottom:533.666667pt;}
.y16b{bottom:537.506667pt;}
.y1b{bottom:538.306667pt;}
.y12f{bottom:545.666667pt;}
.yfe{bottom:546.146667pt;}
.y3e{bottom:547.266667pt;}
.y79{bottom:547.426667pt;}
.y16a{bottom:549.506667pt;}
.y1a{bottom:552.226667pt;}
.yfd{bottom:559.906667pt;}
.y3d{bottom:561.026667pt;}
.y169{bottom:561.506667pt;}
.y78{bottom:563.906667pt;}
.y19{bottom:565.986667pt;}
.y12e{bottom:567.906667pt;}
.y3c{bottom:574.973333pt;}
.y168{bottom:576.733333pt;}
.y77{bottom:577.693333pt;}
.y18{bottom:579.773333pt;}
.yfc{bottom:581.693333pt;}
.y3b{bottom:588.733333pt;}
.y76{bottom:591.453333pt;}
.y17{bottom:593.533333pt;}
.y167{bottom:600.733333pt;}
.y3a{bottom:602.493333pt;}
.y12d{bottom:604.413333pt;}
.y75{bottom:605.213333pt;}
.y16{bottom:607.453333pt;}
.yfb{bottom:610.173333pt;}
.y166{bottom:612.733333pt;}
.y39{bottom:616.253333pt;}
.y12c{bottom:618.173333pt;}
.y74{bottom:619.133333pt;}
.y15{bottom:621.213333pt;}
.yfa{bottom:624.093333pt;}
.y165{bottom:628.093333pt;}
.y38{bottom:630.173333pt;}
.y12b{bottom:631.933333pt;}
.y73{bottom:632.893333pt;}
.y14{bottom:634.973333pt;}
.yf9{bottom:637.853333pt;}
.y164{bottom:640.093333pt;}
.y12a{bottom:645.693333pt;}
.y13{bottom:648.733333pt;}
.y72{bottom:649.373333pt;}
.yf8{bottom:651.613333pt;}
.y163{bottom:652.093333pt;}
.y129{bottom:659.613333pt;}
.y71{bottom:663.133333pt;}
.y37{bottom:664.413333pt;}
.y162{bottom:667.453333pt;}
.y12{bottom:671.133333pt;}
.y128{bottom:673.373333pt;}
.yf7{bottom:673.853333pt;}
.yab{bottom:675.933333pt;}
.y70{bottom:676.893333pt;}
.y161{bottom:679.453333pt;}
.y9b{bottom:681.373333pt;}
.y127{bottom:687.133333pt;}
.yaa{bottom:689.693333pt;}
.y6f{bottom:690.813333pt;}
.y160{bottom:691.453333pt;}
.y9a{bottom:695.133333pt;}
.y126{bottom:700.893333pt;}
.yd7{bottom:702.973333pt;}
.ya9{bottom:703.453333pt;}
.y6e{bottom:704.573333pt;}
.yf6{bottom:704.893333pt;}
.y15f{bottom:706.813333pt;}
.y11{bottom:707.453333pt;}
.y99{bottom:711.613333pt;}
.y125{bottom:714.813333pt;}
.yd6{bottom:716.733333pt;}
.ya8{bottom:717.373333pt;}
.y6d{bottom:718.333333pt;}
.yf5{bottom:718.813333pt;}
.y10{bottom:721.053333pt;}
.y98{bottom:725.373333pt;}
.y124{bottom:728.573333pt;}
.yd5{bottom:730.653333pt;}
.y15e{bottom:730.813333pt;}
.yf4{bottom:732.573333pt;}
.yf{bottom:734.653333pt;}
.y6c{bottom:734.813333pt;}
.y97{bottom:739.133333pt;}
.y123{bottom:742.333333pt;}
.yd4{bottom:744.413333pt;}
.y15d{bottom:746.173333pt;}
.yf3{bottom:746.333333pt;}
.ye{bottom:748.253333pt;}
.y6b{bottom:748.573333pt;}
.y96{bottom:755.613333pt;}
.y122{bottom:756.093333pt;}
.yd3{bottom:758.173333pt;}
.yd{bottom:761.693333pt;}
.y6a{bottom:762.333333pt;}
.yf2{bottom:762.813333pt;}
.ya7{bottom:767.613333pt;}
.y95{bottom:769.533333pt;}
.yd2{bottom:771.933333pt;}
.y15c{bottom:773.533333pt;}
.y69{bottom:776.253333pt;}
.yf1{bottom:776.573333pt;}
.yc{bottom:780.093333pt;}
.ya6{bottom:781.373333pt;}
.y15b{bottom:785.533333pt;}
.yd1{bottom:785.853333pt;}
.y68{bottom:790.013333pt;}
.yf0{bottom:790.333333pt;}
.y15a{bottom:797.573333pt;}
.y67{bottom:803.813333pt;}
.yef{bottom:804.293333pt;}
.yb{bottom:804.613333pt;}
.yd0{bottom:807.653333pt;}
.y159{bottom:812.773333pt;}
.ya{bottom:816.933333pt;}
.y66{bottom:817.573333pt;}
.yee{bottom:818.053333pt;}
.y158{bottom:824.773333pt;}
.y121{bottom:831.333333pt;}
.y65{bottom:831.493333pt;}
.yed{bottom:831.813333pt;}
.y9{bottom:835.333333pt;}
.y157{bottom:836.773333pt;}
.ycf{bottom:841.893333pt;}
.y120{bottom:845.093333pt;}
.y64{bottom:847.973333pt;}
.y156{bottom:852.133333pt;}
.yec{bottom:853.573333pt;}
.y8{bottom:853.733333pt;}
.y11f{bottom:859.013333pt;}
.y63{bottom:861.733333pt;}
.y155{bottom:864.133333pt;}
.yce{bottom:870.373333pt;}
.y11e{bottom:872.773333pt;}
.y62{bottom:875.493333pt;}
.y154{bottom:876.133333pt;}
.y7{bottom:878.213333pt;}
.yeb{bottom:882.053333pt;}
.ycd{bottom:884.133333pt;}
.y11d{bottom:886.533333pt;}
.y61{bottom:889.253333pt;}
.y6{bottom:890.533333pt;}
.y153{bottom:891.493333pt;}
.yea{bottom:895.973333pt;}
.ycc{bottom:897.893333pt;}
.y11c{bottom:900.293333pt;}
.y60{bottom:903.173333pt;}
.y152{bottom:903.493333pt;}
.y5{bottom:908.933333pt;}
.ye9{bottom:909.733333pt;}
.ycb{bottom:911.813333pt;}
.y11b{bottom:914.213333pt;}
.y5f{bottom:916.933333pt;}
.y151{bottom:918.853333pt;}
.ye8{bottom:923.493333pt;}
.yca{bottom:925.893333pt;}
.y4{bottom:927.333333pt;}
.y11a{bottom:927.973333pt;}
.y5e{bottom:930.693333pt;}
.y150{bottom:930.853333pt;}
.yc9{bottom:937.253333pt;}
.y119{bottom:941.733333pt;}
.y3{bottom:945.733333pt;}
.y14f{bottom:946.213333pt;}
.y5d{bottom:952.933333pt;}
.y94{bottom:953.733333pt;}
.y14e{bottom:958.213333pt;}
.y2{bottom:964.613333pt;}
.y93{bottom:967.493333pt;}
.y14d{bottom:970.213333pt;}
.yc8{bottom:971.493333pt;}
.y118{bottom:975.493333pt;}
.y92{bottom:981.413333pt;}
.yc7{bottom:982.693333pt;}
.y14c{bottom:985.573333pt;}
.y5c{bottom:989.413333pt;}
.y1{bottom:992.773333pt;}
.y91{bottom:995.173333pt;}
.y14b{bottom:997.573333pt;}
.y5b{bottom:1003.173333pt;}
.y14a{bottom:1013.253333pt;}
.y5a{bottom:1016.933333pt;}
.he{height:28.960000pt;}
.hb{height:29.120000pt;}
.h7{height:31.992188pt;}
.h5{height:35.761250pt;}
.h9{height:40.031250pt;}
.ha{height:41.156250pt;}
.hc{height:41.835938pt;}
.h11{height:43.755937pt;}
.h8{height:50.485000pt;}
.h3{height:53.375000pt;}
.h6{height:54.875000pt;}
.hf{height:58.921875pt;}
.h4{height:59.662500pt;}
.h10{height:63.711250pt;}
.h2{height:64.203750pt;}
.hd{height:75.755938pt;}
.h1{height:1122.666667pt;}
.h0{height:1122.720000pt;}
.w4{width:28.320000pt;}
.w6{width:28.480000pt;}
.w5{width:273.306667pt;}
.w3{width:273.506667pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x20{left:7.200000pt;}
.x23{left:62.426667pt;}
.xd{left:75.519988pt;}
.x25{left:89.760000pt;}
.x4{left:99.871988pt;}
.x1e{left:100.826667pt;}
.x21{left:104.026667pt;}
.x1b{left:107.071988pt;}
.x13{left:123.551988pt;}
.x22{left:147.706667pt;}
.x15{left:155.066655pt;}
.x12{left:158.106655pt;}
.x8{left:162.106655pt;}
.x14{left:167.866655pt;}
.x1d{left:181.626655pt;}
.x2b{left:192.026655pt;}
.x29{left:194.586655pt;}
.xe{left:197.946655pt;}
.xc{left:204.026655pt;}
.xa{left:235.066655pt;}
.x2{left:256.866655pt;}
.x1{left:265.186655pt;}
.x7{left:303.266655pt;}
.x6{left:304.866655pt;}
.x9{left:311.106655pt;}
.xb{left:323.906655pt;}
.x1c{left:337.186655pt;}
.x1a{left:341.186655pt;}
.x1f{left:349.026667pt;}
.x5{left:363.426655pt;}
.x3{left:396.866655pt;}
.x11{left:415.933322pt;}
.x10{left:463.933322pt;}
.x28{left:477.213322pt;}
.x26{left:502.173322pt;}
.x19{left:506.493322pt;}
.x17{left:511.773322pt;}
.x2a{left:540.573322pt;}
.xf{left:543.933322pt;}
.x18{left:667.173322pt;}
.x24{left:689.253333pt;}
.x16{left:697.413322pt;}
.x27{left:718.373322pt;}
}




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