
    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_8bc288f1497102bb29535fe9.woff')format("woff");}.ff1{font-family:ff1;line-height:1.466309;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_26aaf8463387f553e1c02e97.woff')format("woff");}.ff2{font-family:ff2;line-height:1.096680;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_354601ba63b4d37c0ecfcf0a.woff')format("woff");}.ff3{font-family:ff3;line-height:1.466309;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_2d96f689786d8fbccb991b71.woff')format("woff");}.ff4{font-family:ff4;line-height:1.120605;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_73c848a0d6f6727f81f002d7.woff')format("woff");}.ff5{font-family:ff5;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_0ef2a6c5ce78d2aa42094397.woff')format("woff");}.ff6{font-family:ff6;line-height:1.096680;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_f43291e5949ac0621fe1f055.woff')format("woff");}.ff7{font-family:ff7;line-height:0.683594;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_92c1852dfff674fb5fe398d5.woff')format("woff");}.ff8{font-family:ff8;line-height:1.486328;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_cbf7d3cb593c354a42d2d2ce.woff')format("woff");}.ff9{font-family:ff9;line-height:1.486328;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v1{vertical-align:-83.880000px;}
.v3{vertical-align:-80.280000px;}
.v2{vertical-align:-76.680000px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:24.120000px;}
.ls1c{letter-spacing:-0.288000px;}
.ls8{letter-spacing:-0.216000px;}
.ls7{letter-spacing:-0.180000px;}
.ls12{letter-spacing:-0.165600px;}
.ls14{letter-spacing:-0.144000px;}
.lsb{letter-spacing:-0.112200px;}
.ls1e{letter-spacing:-0.072000px;}
.ls6{letter-spacing:-0.031680px;}
.ls22{letter-spacing:-0.022680px;}
.ls5{letter-spacing:0.000000px;}
.ls23{letter-spacing:0.000001px;}
.ls9{letter-spacing:0.006840px;}
.lsf{letter-spacing:0.027000px;}
.ls1f{letter-spacing:0.048000px;}
.ls15{letter-spacing:0.072000px;}
.ls24{letter-spacing:0.083400px;}
.ls2{letter-spacing:0.144000px;}
.ls13{letter-spacing:0.150000px;}
.lsa{letter-spacing:0.153600px;}
.ls21{letter-spacing:0.155400px;}
.lsc{letter-spacing:0.172080px;}
.ls1{letter-spacing:0.180000px;}
.ls4{letter-spacing:0.207720px;}
.ls1a{letter-spacing:0.216000px;}
.ls3{letter-spacing:0.288000px;}
.ls1b{letter-spacing:0.336000px;}
.ls20{letter-spacing:0.360000px;}
.lse{letter-spacing:0.386280px;}
.ls19{letter-spacing:0.432000px;}
.ls0{letter-spacing:8.666280px;}
.ls17{letter-spacing:9.648000px;}
.lsd{letter-spacing:16.586280px;}
.ls18{letter-spacing:18.360000px;}
.ls10{letter-spacing:34.946280px;}
.ls16{letter-spacing:191.568000px;}
.ls1d{letter-spacing:192.288000px;}
.ls11{letter-spacing:194.906280px;}
.ls25{letter-spacing:847.226280px;}
.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;}
}
.ws13{word-spacing:-20.592000px;}
.ws16{word-spacing:-20.448000px;}
.ws12{word-spacing:-20.376000px;}
.wse{word-spacing:-20.304000px;}
.ws18{word-spacing:-20.232001px;}
.ws9{word-spacing:-20.232000px;}
.ws15{word-spacing:-20.160000px;}
.wsd{word-spacing:-20.088000px;}
.ws3{word-spacing:-19.440000px;}
.ws4{word-spacing:-19.224000px;}
.ws7{word-spacing:-18.665880px;}
.ws5{word-spacing:-18.519120px;}
.ws6{word-spacing:-18.512280px;}
.ws1d{word-spacing:-18.072000px;}
.ws1a{word-spacing:-17.928000px;}
.ws1c{word-spacing:-17.856000px;}
.wsf{word-spacing:-17.784000px;}
.ws10{word-spacing:-17.712000px;}
.ws19{word-spacing:-17.640000px;}
.ws0{word-spacing:-17.073720px;}
.wsc{word-spacing:-17.043720px;}
.ws1{word-spacing:-16.893720px;}
.ws2{word-spacing:-16.713720px;}
.wsa{word-spacing:-16.232400px;}
.ws11{word-spacing:-16.128000px;}
.wsb{word-spacing:-16.066800px;}
.ws14{word-spacing:-11.991120px;}
.ws1b{word-spacing:-11.919120px;}
.ws17{word-spacing:-11.813040px;}
.ws8{word-spacing:0.000000px;}
._28{margin-left:-11.400000px;}
._25{margin-left:-7.200000px;}
._24{margin-left:-4.824000px;}
._27{margin-left:-3.240000px;}
._26{margin-left:-2.232000px;}
._0{margin-left:-1.082160px;}
._7{width:1.032480px;}
._9{width:2.058720px;}
._a{width:3.771000px;}
._5{width:5.591160px;}
._3{width:7.284960px;}
._2{width:8.347440px;}
._6{width:10.289760px;}
._12{width:11.715960px;}
._1{width:12.805560px;}
._4{width:13.827600px;}
._11{width:15.789360px;}
._1a{width:17.010120px;}
._d{width:18.492840px;}
._c{width:19.719360px;}
._e{width:20.880840px;}
._f{width:22.145880px;}
._10{width:23.211720px;}
._18{width:24.336000px;}
._19{width:25.388280px;}
._b{width:26.573040px;}
._15{width:27.792000px;}
._16{width:29.232000px;}
._1b{width:30.888000px;}
._1c{width:32.400000px;}
._14{width:34.328280px;}
._1f{width:36.260640px;}
._13{width:37.755360px;}
._20{width:38.952000px;}
._21{width:39.960000px;}
._23{width:42.144000px;}
._22{width:43.320000px;}
._17{width:44.856000px;}
._2c{width:47.016000px;}
._2b{width:48.168000px;}
._1d{width:50.832000px;}
._2a{width:51.888000px;}
._29{width:52.920000px;}
._1e{width:63.576000px;}
._8{width:959.014080px;}
.fc1{color:rgb(70,120,134);}
.fc2{color:rgb(17,17,17);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:42.120000px;}
.fs2{font-size:54.000000px;}
.fs0{font-size:60.120000px;}
.fs3{font-size:65.880000px;}
.fs1{font-size:72.000000px;}
.fs4{font-size:83.880000px;}
.y0{bottom:0.000000px;}
.yb2{bottom:4.680000px;}
.yb0{bottom:4.770000px;}
.y5{bottom:23.310000px;}
.yaf{bottom:24.750000px;}
.y4{bottom:40.050000px;}
.y3{bottom:56.700000px;}
.y2{bottom:73.350000px;}
.y3c{bottom:76.230000px;}
.y11{bottom:93.420000px;}
.y3b{bottom:95.220000px;}
.y10{bottom:113.670000px;}
.yce{bottom:118.800000px;}
.yaa{bottom:120.060000px;}
.yfc{bottom:125.190000px;}
.y76{bottom:133.380000px;}
.ycd{bottom:138.870000px;}
.ya9{bottom:140.040000px;}
.yfb{bottom:145.260000px;}
.y75{bottom:153.450000px;}
.yf{bottom:153.630000px;}
.yd2{bottom:155.610000px;}
.ycc{bottom:158.850000px;}
.ya8{bottom:160.110000px;}
.y11d{bottom:163.260000px;}
.ye{bottom:170.370000px;}
.y74{bottom:173.430000px;}
.yfa{bottom:174.240000px;}
.yd1{bottom:175.590000px;}
.ycb{bottom:178.830000px;}
.ya7{bottom:180.090000px;}
.y11c{bottom:183.240000px;}
.yd{bottom:187.020000px;}
.y73{bottom:193.500000px;}
.yf9{bottom:194.220000px;}
.yd0{bottom:195.660000px;}
.ya6{bottom:200.160000px;}
.y11b{bottom:203.220000px;}
.yc{bottom:203.670000px;}
.y72{bottom:213.510000px;}
.y106{bottom:214.320000px;}
.ycf{bottom:215.670000px;}
.yca{bottom:218.910000px;}
.ya5{bottom:220.170000px;}
.yb{bottom:220.440000px;}
.yf8{bottom:223.320000px;}
.y71{bottom:233.490000px;}
.ya{bottom:237.090000px;}
.yc9{bottom:238.980000px;}
.ya4{bottom:240.240000px;}
.yf7{bottom:243.300000px;}
.y11a{bottom:252.300000px;}
.y70{bottom:253.560000px;}
.y9{bottom:253.740000px;}
.yc8{bottom:258.960000px;}
.ya3{bottom:260.220000px;}
.yf6{bottom:263.370000px;}
.y8{bottom:270.480000px;}
.y119{bottom:272.370000px;}
.y6f{bottom:273.540000px;}
.yc7{bottom:279.030000px;}
.ya2{bottom:280.290000px;}
.y105{bottom:283.350000px;}
.yf5{bottom:292.350000px;}
.yc6{bottom:299.010000px;}
.ya1{bottom:300.270000px;}
.y104{bottom:303.420000px;}
.y7{bottom:303.780000px;}
.yf4{bottom:312.420000px;}
.y6e{bottom:312.780000px;}
.yc5{bottom:319.080000px;}
.ya0{bottom:320.250000px;}
.y118{bottom:321.420000px;}
.y103{bottom:323.400000px;}
.y6d{bottom:329.520000px;}
.yf3{bottom:332.400000px;}
.y3a{bottom:336.810000px;}
.yc4{bottom:339.060000px;}
.y9f{bottom:340.320000px;}
.y117{bottom:341.400000px;}
.y102{bottom:343.470000px;}
.y6c{bottom:346.170000px;}
.yf2{bottom:352.470000px;}
.y39{bottom:355.170000px;}
.yc3{bottom:359.130000px;}
.y9e{bottom:360.300000px;}
.y116{bottom:361.470000px;}
.y6b{bottom:362.820000px;}
.y101{bottom:372.450000px;}
.y38{bottom:373.530000px;}
.yc2{bottom:379.110000px;}
.y6a{bottom:379.560000px;}
.y9d{bottom:380.370000px;}
.yf1{bottom:381.450000px;}
.y115{bottom:390.450000px;}
.y37{bottom:391.890000px;}
.y100{bottom:392.520000px;}
.y69{bottom:396.210000px;}
.yc1{bottom:399.180000px;}
.y9c{bottom:400.350000px;}
.yf0{bottom:401.520000px;}
.y36{bottom:410.250000px;}
.y114{bottom:410.520000px;}
.y68{bottom:412.950000px;}
.yc0{bottom:419.160000px;}
.y9b{bottom:420.420000px;}
.yef{bottom:421.500000px;}
.y35{bottom:428.610000px;}
.y67{bottom:429.600000px;}
.ybf{bottom:439.140000px;}
.y113{bottom:439.500000px;}
.y9a{bottom:440.400000px;}
.yee{bottom:441.570000px;}
.y66{bottom:446.250000px;}
.y34{bottom:446.970000px;}
.ybe{bottom:459.210000px;}
.y112{bottom:459.570000px;}
.y99{bottom:460.470000px;}
.yed{bottom:461.550000px;}
.y65{bottom:462.990000px;}
.y33{bottom:465.240000px;}
.ybd{bottom:479.190000px;}
.y111{bottom:479.550000px;}
.y64{bottom:479.640000px;}
.y98{bottom:480.450000px;}
.y32{bottom:483.600000px;}
.yec{bottom:490.530000px;}
.y63{bottom:496.290000px;}
.ybc{bottom:499.260000px;}
.y110{bottom:499.530000px;}
.y97{bottom:500.520000px;}
.y31{bottom:501.960000px;}
.yeb{bottom:510.600000px;}
.y62{bottom:513.030000px;}
.ybb{bottom:519.240000px;}
.y30{bottom:520.320000px;}
.y96{bottom:520.500000px;}
.y10f{bottom:528.600000px;}
.y61{bottom:529.680000px;}
.yea{bottom:530.580000px;}
.y2f{bottom:538.680000px;}
.yba{bottom:539.310000px;}
.y95{bottom:540.570000px;}
.y60{bottom:546.420000px;}
.y10e{bottom:548.580000px;}
.y2e{bottom:557.040000px;}
.yb9{bottom:559.290000px;}
.ye9{bottom:559.650000px;}
.y94{bottom:560.550000px;}
.y5f{bottom:563.070000px;}
.y10d{bottom:568.650000px;}
.y2d{bottom:575.400000px;}
.yb8{bottom:579.360000px;}
.ye8{bottom:579.630000px;}
.y5e{bottom:579.720000px;}
.y93{bottom:580.530000px;}
.y10c{bottom:588.630000px;}
.y2c{bottom:593.760000px;}
.y5d{bottom:596.460000px;}
.y92{bottom:600.600000px;}
.ye7{bottom:608.700000px;}
.y2b{bottom:612.120000px;}
.y5c{bottom:613.110000px;}
.y10b{bottom:617.700000px;}
.yb7{bottom:619.410000px;}
.y91{bottom:620.580000px;}
.y125{bottom:624.720000px;}
.ye6{bottom:628.680000px;}
.y5b{bottom:629.850000px;}
.y2a{bottom:630.480000px;}
.yb6{bottom:635.460000px;}
.y10a{bottom:637.710000px;}
.y90{bottom:640.680000px;}
.y5a{bottom:646.530000px;}
.y124{bottom:646.710000px;}
.yff{bottom:648.780000px;}
.y29{bottom:648.870000px;}
.ye5{bottom:657.780000px;}
.y8f{bottom:660.660000px;}
.y59{bottom:663.180000px;}
.y123{bottom:666.780000px;}
.y28{bottom:667.230000px;}
.yb5{bottom:675.510000px;}
.ye4{bottom:677.760000px;}
.y58{bottom:679.920000px;}
.y8e{bottom:680.730000px;}
.y27{bottom:685.590000px;}
.y122{bottom:686.760000px;}
.y57{bottom:696.570000px;}
.ye3{bottom:697.830000px;}
.y8d{bottom:700.710000px;}
.y26{bottom:703.860000px;}
.y121{bottom:706.830000px;}
.y56{bottom:713.220000px;}
.yb4{bottom:715.560000px;}
.y8c{bottom:720.780000px;}
.y25{bottom:722.220000px;}
.ye2{bottom:726.810000px;}
.y55{bottom:729.960000px;}
.y120{bottom:735.810000px;}
.y24{bottom:740.580000px;}
.y8b{bottom:740.760000px;}
.y54{bottom:746.610000px;}
.ye1{bottom:746.790000px;}
.yb3{bottom:755.610000px;}
.y11f{bottom:755.790000px;}
.y23{bottom:758.940000px;}
.y8a{bottom:760.830000px;}
.y53{bottom:763.350000px;}
.yfe{bottom:766.860000px;}
.ye0{bottom:775.860000px;}
.y22{bottom:777.300000px;}
.y52{bottom:780.000000px;}
.y89{bottom:780.810000px;}
.y21{bottom:795.660000px;}
.ydf{bottom:795.840000px;}
.y51{bottom:796.650000px;}
.y88{bottom:800.790000px;}
.y50{bottom:813.390000px;}
.y20{bottom:814.020000px;}
.yde{bottom:815.910000px;}
.y87{bottom:820.860000px;}
.y4f{bottom:830.040000px;}
.y1f{bottom:832.380000px;}
.yb1{bottom:835.710000px;}
.y86{bottom:840.840000px;}
.ydd{bottom:844.890000px;}
.y4e{bottom:846.690000px;}
.y1e{bottom:850.740000px;}
.y85{bottom:860.910000px;}
.y4d{bottom:863.430000px;}
.ydc{bottom:864.960000px;}
.yae{bottom:865.410000px;}
.y1d{bottom:869.100000px;}
.y4c{bottom:880.080000px;}
.y84{bottom:880.890000px;}
.ydb{bottom:884.940000px;}
.y1c{bottom:887.460000px;}
.y4b{bottom:896.820000px;}
.y83{bottom:900.960000px;}
.y109{bottom:905.010000px;}
.y1b{bottom:905.820000px;}
.yad{bottom:910.140000px;}
.y4a{bottom:913.470000px;}
.yda{bottom:914.010000px;}
.y82{bottom:920.940000px;}
.y1a{bottom:924.180000px;}
.yac{bottom:926.790000px;}
.y49{bottom:930.120000px;}
.yd9{bottom:933.990000px;}
.y81{bottom:941.010000px;}
.y19{bottom:942.450000px;}
.yab{bottom:943.530000px;}
.y48{bottom:946.860000px;}
.y108{bottom:954.060000px;}
.y18{bottom:960.450000px;}
.y80{bottom:960.990000px;}
.yd8{bottom:963.060000px;}
.y47{bottom:963.510000px;}
.y107{bottom:974.040000px;}
.y17{bottom:977.910000px;}
.y46{bottom:980.250000px;}
.y7f{bottom:981.060000px;}
.yd7{bottom:983.040000px;}
.y45{bottom:996.900000px;}
.y16{bottom:997.980000px;}
.y7e{bottom:1001.040000px;}
.yd6{bottom:1003.110000px;}
.yfd{bottom:1012.110000px;}
.y44{bottom:1013.550000px;}
.y7d{bottom:1021.110000px;}
.y11e{bottom:1023.090000px;}
.y15{bottom:1027.770000px;}
.y43{bottom:1031.100000px;}
.yd5{bottom:1032.090000px;}
.y7c{bottom:1041.090000px;}
.y42{bottom:1050.720000px;}
.y14{bottom:1051.080000px;}
.yd4{bottom:1052.070000px;}
.y7b{bottom:1061.100000px;}
.y41{bottom:1069.110000px;}
.yd3{bottom:1072.170000px;}
.y13{bottom:1074.510000px;}
.y7a{bottom:1081.170000px;}
.y40{bottom:1087.470000px;}
.y12{bottom:1096.650000px;}
.y79{bottom:1101.150000px;}
.y3f{bottom:1105.830000px;}
.y6{bottom:1115.550000px;}
.y78{bottom:1121.220000px;}
.y3e{bottom:1124.100000px;}
.y1{bottom:1134.180000px;}
.y77{bottom:1141.200000px;}
.y3d{bottom:1142.460000px;}
.hd{height:28.980000px;}
.hc{height:40.050000px;}
.h4{height:51.929824px;}
.h6{height:58.192383px;}
.h7{height:61.793886px;}
.ha{height:62.191406px;}
.h3{height:64.787520px;}
.h8{height:70.994707px;}
.h5{height:71.613281px;}
.h9{height:72.452988px;}
.he{height:76.218750px;}
.hb{height:77.589844px;}
.h2{height:86.130000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w3{width:50.850000px;}
.w6{width:116.400000px;}
.wa{width:117.990000px;}
.w7{width:133.110000px;}
.w9{width:144.480000px;}
.w8{width:164.280000px;}
.w4{width:329.700000px;}
.w2{width:331.890000px;}
.w5{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x4{left:8.100000px;}
.x1{left:98.280000px;}
.x8{left:104.669987px;}
.x6{left:106.379987px;}
.xa{left:159.599987px;}
.x2{left:185.880000px;}
.xb{left:214.410000px;}
.xc{left:347.520000px;}
.x3{left:430.170000px;}
.x7{left:446.549987px;}
.x5{left:481.020000px;}
.xd{left:511.800000px;}
.xe{left:656.280000px;}
.xf{left:768.419987px;}
.x9{left:777.599987px;}
@media print{
.v1{vertical-align:-74.560000pt;}
.v3{vertical-align:-71.360000pt;}
.v2{vertical-align:-68.160000pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:21.440000pt;}
.ls1c{letter-spacing:-0.256000pt;}
.ls8{letter-spacing:-0.192000pt;}
.ls7{letter-spacing:-0.160000pt;}
.ls12{letter-spacing:-0.147200pt;}
.ls14{letter-spacing:-0.128000pt;}
.lsb{letter-spacing:-0.099733pt;}
.ls1e{letter-spacing:-0.064000pt;}
.ls6{letter-spacing:-0.028160pt;}
.ls22{letter-spacing:-0.020160pt;}
.ls5{letter-spacing:0.000000pt;}
.ls23{letter-spacing:0.000001pt;}
.ls9{letter-spacing:0.006080pt;}
.lsf{letter-spacing:0.024000pt;}
.ls1f{letter-spacing:0.042667pt;}
.ls15{letter-spacing:0.064000pt;}
.ls24{letter-spacing:0.074133pt;}
.ls2{letter-spacing:0.128000pt;}
.ls13{letter-spacing:0.133333pt;}
.lsa{letter-spacing:0.136533pt;}
.ls21{letter-spacing:0.138133pt;}
.lsc{letter-spacing:0.152960pt;}
.ls1{letter-spacing:0.160000pt;}
.ls4{letter-spacing:0.184640pt;}
.ls1a{letter-spacing:0.192000pt;}
.ls3{letter-spacing:0.256000pt;}
.ls1b{letter-spacing:0.298667pt;}
.ls20{letter-spacing:0.320000pt;}
.lse{letter-spacing:0.343360pt;}
.ls19{letter-spacing:0.384000pt;}
.ls0{letter-spacing:7.703360pt;}
.ls17{letter-spacing:8.576000pt;}
.lsd{letter-spacing:14.743360pt;}
.ls18{letter-spacing:16.320000pt;}
.ls10{letter-spacing:31.063360pt;}
.ls16{letter-spacing:170.282667pt;}
.ls1d{letter-spacing:170.922667pt;}
.ls11{letter-spacing:173.250027pt;}
.ls25{letter-spacing:753.090027pt;}
.ws13{word-spacing:-18.304000pt;}
.ws16{word-spacing:-18.176000pt;}
.ws12{word-spacing:-18.112000pt;}
.wse{word-spacing:-18.048000pt;}
.ws18{word-spacing:-17.984001pt;}
.ws9{word-spacing:-17.984000pt;}
.ws15{word-spacing:-17.920000pt;}
.wsd{word-spacing:-17.856000pt;}
.ws3{word-spacing:-17.280000pt;}
.ws4{word-spacing:-17.088000pt;}
.ws7{word-spacing:-16.591893pt;}
.ws5{word-spacing:-16.461440pt;}
.ws6{word-spacing:-16.455360pt;}
.ws1d{word-spacing:-16.064000pt;}
.ws1a{word-spacing:-15.936000pt;}
.ws1c{word-spacing:-15.872000pt;}
.wsf{word-spacing:-15.808000pt;}
.ws10{word-spacing:-15.744000pt;}
.ws19{word-spacing:-15.680000pt;}
.ws0{word-spacing:-15.176640pt;}
.wsc{word-spacing:-15.149973pt;}
.ws1{word-spacing:-15.016640pt;}
.ws2{word-spacing:-14.856640pt;}
.wsa{word-spacing:-14.428800pt;}
.ws11{word-spacing:-14.336000pt;}
.wsb{word-spacing:-14.281600pt;}
.ws14{word-spacing:-10.658773pt;}
.ws1b{word-spacing:-10.594773pt;}
.ws17{word-spacing:-10.500480pt;}
.ws8{word-spacing:0.000000pt;}
._28{margin-left:-10.133333pt;}
._25{margin-left:-6.400000pt;}
._24{margin-left:-4.288000pt;}
._27{margin-left:-2.880000pt;}
._26{margin-left:-1.984000pt;}
._0{margin-left:-0.961920pt;}
._7{width:0.917760pt;}
._9{width:1.829973pt;}
._a{width:3.352000pt;}
._5{width:4.969920pt;}
._3{width:6.475520pt;}
._2{width:7.419947pt;}
._6{width:9.146453pt;}
._12{width:10.414187pt;}
._1{width:11.382720pt;}
._4{width:12.291200pt;}
._11{width:14.034987pt;}
._1a{width:15.120107pt;}
._d{width:16.438080pt;}
._c{width:17.528320pt;}
._e{width:18.560747pt;}
._f{width:19.685227pt;}
._10{width:20.632640pt;}
._18{width:21.632000pt;}
._19{width:22.567360pt;}
._b{width:23.620480pt;}
._15{width:24.704000pt;}
._16{width:25.984000pt;}
._1b{width:27.456000pt;}
._1c{width:28.800000pt;}
._14{width:30.514027pt;}
._1f{width:32.231680pt;}
._13{width:33.560320pt;}
._20{width:34.624000pt;}
._21{width:35.520000pt;}
._23{width:37.461333pt;}
._22{width:38.506667pt;}
._17{width:39.872000pt;}
._2c{width:41.792000pt;}
._2b{width:42.816000pt;}
._1d{width:45.184000pt;}
._2a{width:46.122667pt;}
._29{width:47.040000pt;}
._1e{width:56.512000pt;}
._8{width:852.456960pt;}
.fs5{font-size:37.440000pt;}
.fs2{font-size:48.000000pt;}
.fs0{font-size:53.440000pt;}
.fs3{font-size:58.560000pt;}
.fs1{font-size:64.000000pt;}
.fs4{font-size:74.560000pt;}
.y0{bottom:0.000000pt;}
.yb2{bottom:4.160000pt;}
.yb0{bottom:4.240000pt;}
.y5{bottom:20.720000pt;}
.yaf{bottom:22.000000pt;}
.y4{bottom:35.600000pt;}
.y3{bottom:50.400000pt;}
.y2{bottom:65.200000pt;}
.y3c{bottom:67.760000pt;}
.y11{bottom:83.040000pt;}
.y3b{bottom:84.640000pt;}
.y10{bottom:101.040000pt;}
.yce{bottom:105.600000pt;}
.yaa{bottom:106.720000pt;}
.yfc{bottom:111.280000pt;}
.y76{bottom:118.560000pt;}
.ycd{bottom:123.440000pt;}
.ya9{bottom:124.480000pt;}
.yfb{bottom:129.120000pt;}
.y75{bottom:136.400000pt;}
.yf{bottom:136.560000pt;}
.yd2{bottom:138.320000pt;}
.ycc{bottom:141.200000pt;}
.ya8{bottom:142.320000pt;}
.y11d{bottom:145.120000pt;}
.ye{bottom:151.440000pt;}
.y74{bottom:154.160000pt;}
.yfa{bottom:154.880000pt;}
.yd1{bottom:156.080000pt;}
.ycb{bottom:158.960000pt;}
.ya7{bottom:160.080000pt;}
.y11c{bottom:162.880000pt;}
.yd{bottom:166.240000pt;}
.y73{bottom:172.000000pt;}
.yf9{bottom:172.640000pt;}
.yd0{bottom:173.920000pt;}
.ya6{bottom:177.920000pt;}
.y11b{bottom:180.640000pt;}
.yc{bottom:181.040000pt;}
.y72{bottom:189.786667pt;}
.y106{bottom:190.506667pt;}
.ycf{bottom:191.706667pt;}
.yca{bottom:194.586667pt;}
.ya5{bottom:195.706667pt;}
.yb{bottom:195.946667pt;}
.yf8{bottom:198.506667pt;}
.y71{bottom:207.546667pt;}
.ya{bottom:210.746667pt;}
.yc9{bottom:212.426667pt;}
.ya4{bottom:213.546667pt;}
.yf7{bottom:216.266667pt;}
.y11a{bottom:224.266667pt;}
.y70{bottom:225.386667pt;}
.y9{bottom:225.546667pt;}
.yc8{bottom:230.186667pt;}
.ya3{bottom:231.306667pt;}
.yf6{bottom:234.106667pt;}
.y8{bottom:240.426667pt;}
.y119{bottom:242.106667pt;}
.y6f{bottom:243.146667pt;}
.yc7{bottom:248.026667pt;}
.ya2{bottom:249.146667pt;}
.y105{bottom:251.866667pt;}
.yf5{bottom:259.866667pt;}
.yc6{bottom:265.786667pt;}
.ya1{bottom:266.906667pt;}
.y104{bottom:269.706667pt;}
.y7{bottom:270.026667pt;}
.yf4{bottom:277.706667pt;}
.y6e{bottom:278.026667pt;}
.yc5{bottom:283.626667pt;}
.ya0{bottom:284.666667pt;}
.y118{bottom:285.706667pt;}
.y103{bottom:287.466667pt;}
.y6d{bottom:292.906667pt;}
.yf3{bottom:295.466667pt;}
.y3a{bottom:299.386667pt;}
.yc4{bottom:301.386667pt;}
.y9f{bottom:302.506667pt;}
.y117{bottom:303.466667pt;}
.y102{bottom:305.306667pt;}
.y6c{bottom:307.706667pt;}
.yf2{bottom:313.306667pt;}
.y39{bottom:315.706667pt;}
.yc3{bottom:319.226667pt;}
.y9e{bottom:320.266667pt;}
.y116{bottom:321.306667pt;}
.y6b{bottom:322.506667pt;}
.y101{bottom:331.066667pt;}
.y38{bottom:332.026667pt;}
.yc2{bottom:336.986667pt;}
.y6a{bottom:337.386667pt;}
.y9d{bottom:338.106667pt;}
.yf1{bottom:339.066667pt;}
.y115{bottom:347.066667pt;}
.y37{bottom:348.346667pt;}
.y100{bottom:348.906667pt;}
.y69{bottom:352.186667pt;}
.yc1{bottom:354.826667pt;}
.y9c{bottom:355.866667pt;}
.yf0{bottom:356.906667pt;}
.y36{bottom:364.666667pt;}
.y114{bottom:364.906667pt;}
.y68{bottom:367.066667pt;}
.yc0{bottom:372.586667pt;}
.y9b{bottom:373.706667pt;}
.yef{bottom:374.666667pt;}
.y35{bottom:380.986667pt;}
.y67{bottom:381.866667pt;}
.ybf{bottom:390.346667pt;}
.y113{bottom:390.666667pt;}
.y9a{bottom:391.466667pt;}
.yee{bottom:392.506667pt;}
.y66{bottom:396.666667pt;}
.y34{bottom:397.306667pt;}
.ybe{bottom:408.186667pt;}
.y112{bottom:408.506667pt;}
.y99{bottom:409.306667pt;}
.yed{bottom:410.266667pt;}
.y65{bottom:411.546667pt;}
.y33{bottom:413.546667pt;}
.ybd{bottom:425.946667pt;}
.y111{bottom:426.266667pt;}
.y64{bottom:426.346667pt;}
.y98{bottom:427.066667pt;}
.y32{bottom:429.866667pt;}
.yec{bottom:436.026667pt;}
.y63{bottom:441.146667pt;}
.ybc{bottom:443.786667pt;}
.y110{bottom:444.026667pt;}
.y97{bottom:444.906667pt;}
.y31{bottom:446.186667pt;}
.yeb{bottom:453.866667pt;}
.y62{bottom:456.026667pt;}
.ybb{bottom:461.546667pt;}
.y30{bottom:462.506667pt;}
.y96{bottom:462.666667pt;}
.y10f{bottom:469.866667pt;}
.y61{bottom:470.826667pt;}
.yea{bottom:471.626667pt;}
.y2f{bottom:478.826667pt;}
.yba{bottom:479.386667pt;}
.y95{bottom:480.506667pt;}
.y60{bottom:485.706667pt;}
.y10e{bottom:487.626667pt;}
.y2e{bottom:495.146667pt;}
.yb9{bottom:497.146667pt;}
.ye9{bottom:497.466667pt;}
.y94{bottom:498.266667pt;}
.y5f{bottom:500.506667pt;}
.y10d{bottom:505.466667pt;}
.y2d{bottom:511.466667pt;}
.yb8{bottom:514.986667pt;}
.ye8{bottom:515.226667pt;}
.y5e{bottom:515.306667pt;}
.y93{bottom:516.026667pt;}
.y10c{bottom:523.226667pt;}
.y2c{bottom:527.786667pt;}
.y5d{bottom:530.186667pt;}
.y92{bottom:533.866667pt;}
.ye7{bottom:541.066667pt;}
.y2b{bottom:544.106667pt;}
.y5c{bottom:544.986667pt;}
.y10b{bottom:549.066667pt;}
.yb7{bottom:550.586667pt;}
.y91{bottom:551.626667pt;}
.y125{bottom:555.306667pt;}
.ye6{bottom:558.826667pt;}
.y5b{bottom:559.866667pt;}
.y2a{bottom:560.426667pt;}
.yb6{bottom:564.853333pt;}
.y10a{bottom:566.853333pt;}
.y90{bottom:569.493333pt;}
.y5a{bottom:574.693333pt;}
.y124{bottom:574.853333pt;}
.yff{bottom:576.693333pt;}
.y29{bottom:576.773333pt;}
.ye5{bottom:584.693333pt;}
.y8f{bottom:587.253333pt;}
.y59{bottom:589.493333pt;}
.y123{bottom:592.693333pt;}
.y28{bottom:593.093333pt;}
.yb5{bottom:600.453333pt;}
.ye4{bottom:602.453333pt;}
.y58{bottom:604.373333pt;}
.y8e{bottom:605.093333pt;}
.y27{bottom:609.413333pt;}
.y122{bottom:610.453333pt;}
.y57{bottom:619.173333pt;}
.ye3{bottom:620.293333pt;}
.y8d{bottom:622.853333pt;}
.y26{bottom:625.653333pt;}
.y121{bottom:628.293333pt;}
.y56{bottom:633.973333pt;}
.yb4{bottom:636.053333pt;}
.y8c{bottom:640.693333pt;}
.y25{bottom:641.973333pt;}
.ye2{bottom:646.053333pt;}
.y55{bottom:648.853333pt;}
.y120{bottom:654.053333pt;}
.y24{bottom:658.293333pt;}
.y8b{bottom:658.453333pt;}
.y54{bottom:663.653333pt;}
.ye1{bottom:663.813333pt;}
.yb3{bottom:671.653333pt;}
.y11f{bottom:671.813333pt;}
.y23{bottom:674.613333pt;}
.y8a{bottom:676.293333pt;}
.y53{bottom:678.533333pt;}
.yfe{bottom:681.653333pt;}
.ye0{bottom:689.653333pt;}
.y22{bottom:690.933333pt;}
.y52{bottom:693.333333pt;}
.y89{bottom:694.053333pt;}
.y21{bottom:707.253333pt;}
.ydf{bottom:707.413333pt;}
.y51{bottom:708.133333pt;}
.y88{bottom:711.813333pt;}
.y50{bottom:723.013333pt;}
.y20{bottom:723.573333pt;}
.yde{bottom:725.253333pt;}
.y87{bottom:729.653333pt;}
.y4f{bottom:737.813333pt;}
.y1f{bottom:739.893333pt;}
.yb1{bottom:742.853333pt;}
.y86{bottom:747.413333pt;}
.ydd{bottom:751.013333pt;}
.y4e{bottom:752.613333pt;}
.y1e{bottom:756.213333pt;}
.y85{bottom:765.253333pt;}
.y4d{bottom:767.493333pt;}
.ydc{bottom:768.853333pt;}
.yae{bottom:769.253333pt;}
.y1d{bottom:772.533333pt;}
.y4c{bottom:782.293333pt;}
.y84{bottom:783.013333pt;}
.ydb{bottom:786.613333pt;}
.y1c{bottom:788.853333pt;}
.y4b{bottom:797.173333pt;}
.y83{bottom:800.853333pt;}
.y109{bottom:804.453333pt;}
.y1b{bottom:805.173333pt;}
.yad{bottom:809.013333pt;}
.y4a{bottom:811.973333pt;}
.yda{bottom:812.453333pt;}
.y82{bottom:818.613333pt;}
.y1a{bottom:821.493333pt;}
.yac{bottom:823.813333pt;}
.y49{bottom:826.773333pt;}
.yd9{bottom:830.213333pt;}
.y81{bottom:836.453333pt;}
.y19{bottom:837.733333pt;}
.yab{bottom:838.693333pt;}
.y48{bottom:841.653333pt;}
.y108{bottom:848.053333pt;}
.y18{bottom:853.733333pt;}
.y80{bottom:854.213333pt;}
.yd8{bottom:856.053333pt;}
.y47{bottom:856.453333pt;}
.y107{bottom:865.813333pt;}
.y17{bottom:869.253333pt;}
.y46{bottom:871.333333pt;}
.y7f{bottom:872.053333pt;}
.yd7{bottom:873.813333pt;}
.y45{bottom:886.133333pt;}
.y16{bottom:887.093333pt;}
.y7e{bottom:889.813333pt;}
.yd6{bottom:891.653333pt;}
.yfd{bottom:899.653333pt;}
.y44{bottom:900.933333pt;}
.y7d{bottom:907.653333pt;}
.y11e{bottom:909.413333pt;}
.y15{bottom:913.573333pt;}
.y43{bottom:916.533333pt;}
.yd5{bottom:917.413333pt;}
.y7c{bottom:925.413333pt;}
.y42{bottom:933.973333pt;}
.y14{bottom:934.293333pt;}
.yd4{bottom:935.173333pt;}
.y7b{bottom:943.200000pt;}
.y41{bottom:950.320000pt;}
.yd3{bottom:953.040000pt;}
.y13{bottom:955.120000pt;}
.y7a{bottom:961.040000pt;}
.y40{bottom:966.640000pt;}
.y12{bottom:974.800000pt;}
.y79{bottom:978.800000pt;}
.y3f{bottom:982.960000pt;}
.y6{bottom:991.600000pt;}
.y78{bottom:996.640000pt;}
.y3e{bottom:999.200000pt;}
.y1{bottom:1008.160000pt;}
.y77{bottom:1014.400000pt;}
.y3d{bottom:1015.520000pt;}
.hd{height:25.760000pt;}
.hc{height:35.600000pt;}
.h4{height:46.159844pt;}
.h6{height:51.726562pt;}
.h7{height:54.927899pt;}
.ha{height:55.281250pt;}
.h3{height:57.588906pt;}
.h8{height:63.106406pt;}
.h5{height:63.656250pt;}
.h9{height:64.402656pt;}
.he{height:67.750000pt;}
.hb{height:68.968750pt;}
.h2{height:76.560000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w3{width:45.200000pt;}
.w6{width:103.466667pt;}
.wa{width:104.880000pt;}
.w7{width:118.320000pt;}
.w9{width:128.426667pt;}
.w8{width:146.026667pt;}
.w4{width:293.066667pt;}
.w2{width:295.013333pt;}
.w5{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x4{left:7.200000pt;}
.x1{left:87.360000pt;}
.x8{left:93.039988pt;}
.x6{left:94.559988pt;}
.xa{left:141.866655pt;}
.x2{left:165.226667pt;}
.xb{left:190.586667pt;}
.xc{left:308.906667pt;}
.x3{left:382.373333pt;}
.x7{left:396.933322pt;}
.x5{left:427.573333pt;}
.xd{left:454.933333pt;}
.xe{left:583.360000pt;}
.xf{left:683.039988pt;}
.x9{left:691.199988pt;}
}




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