
    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_baa9a7dfb9e69a75cc865264.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_51379af9ea7dfb05fbc8dce2.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.093262;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_33f9adc2a647e0fbf1908aea.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_3222a4e3ef9b41101e9c02aa.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.284180;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_c96d35e135b5ca3cfd4f8baa.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_11d1303efa6c1326c3208b11.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.853027;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_9ef4b1e68850b1c78154c01b.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.910156;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_be74129d80dd593540c94afc.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_bd6f46ef8a6fe0914d732dfc.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.003906;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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:-21.600000px;}
.v3{vertical-align:-14.400000px;}
.v7{vertical-align:-6.000000px;}
.v9{vertical-align:-3.600000px;}
.v0{vertical-align:0.000000px;}
.va{vertical-align:3.600000px;}
.v8{vertical-align:6.000000px;}
.v4{vertical-align:14.400000px;}
.v1{vertical-align:21.660000px;}
.v6{vertical-align:36.000000px;}
.v5{vertical-align:56.400000px;}
.lsf{letter-spacing:-1.200000px;}
.lsd{letter-spacing:-1.188000px;}
.ls6{letter-spacing:-0.900000px;}
.ls9{letter-spacing:-0.600000px;}
.ls15{letter-spacing:-0.540000px;}
.ls18{letter-spacing:-0.480000px;}
.ls12{letter-spacing:-0.240000px;}
.lsa{letter-spacing:-0.208800px;}
.ls11{letter-spacing:-0.120000px;}
.ls5{letter-spacing:0.000000px;}
.lse{letter-spacing:0.013200px;}
.ls14{letter-spacing:0.030000px;}
.ls10{letter-spacing:0.420000px;}
.ls1{letter-spacing:0.540000px;}
.ls0{letter-spacing:0.600000px;}
.ls2{letter-spacing:0.660000px;}
.lsc{letter-spacing:0.924000px;}
.lsb{letter-spacing:0.984000px;}
.ls13{letter-spacing:1.800000px;}
.ls16{letter-spacing:2.040000px;}
.ls4{letter-spacing:15.000000px;}
.ls7{letter-spacing:24.216000px;}
.ls8{letter-spacing:35.016000px;}
.ls3{letter-spacing:56.082000px;}
.ls17{letter-spacing:107.640000px;}
.sc_{text-shadow:none;}
.sc1{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);}
.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;}
.sc1{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws3{word-spacing:-72.000000px;}
.ws4{word-spacing:-51.600000px;}
.ws1{word-spacing:-16.500000px;}
.wsc{word-spacing:-15.420000px;}
.ws0{word-spacing:-15.000000px;}
.wsa{word-spacing:-14.880000px;}
.wsb{word-spacing:-14.760000px;}
.wsd{word-spacing:-14.460000px;}
.ws9{word-spacing:-13.800000px;}
.ws8{word-spacing:-9.913200px;}
.ws5{word-spacing:-9.900000px;}
.ws6{word-spacing:-9.691200px;}
.ws7{word-spacing:-8.712000px;}
.ws2{word-spacing:0.000000px;}
._b{margin-left:-3.960000px;}
._a{margin-left:-2.040000px;}
._0{margin-left:-1.020000px;}
._1{width:1.020000px;}
._8{width:2.094000px;}
._9{width:3.612000px;}
._12{width:4.716000px;}
._11{width:5.760000px;}
._d{width:6.900000px;}
._c{width:8.100000px;}
._f{width:9.120000px;}
._e{width:10.260000px;}
._17{width:12.150000px;}
._18{width:13.170000px;}
._10{width:16.440000px;}
._1d{width:18.060000px;}
._1e{width:19.410000px;}
._14{width:21.570000px;}
._13{width:22.680000px;}
._22{width:26.400000px;}
._21{width:28.140000px;}
._1a{width:29.760000px;}
._19{width:31.200000px;}
._1c{width:66.540000px;}
._1b{width:68.130000px;}
._20{width:69.150000px;}
._1f{width:70.170000px;}
._23{width:108.960000px;}
._24{width:110.250000px;}
._15{width:141.494400px;}
._16{width:195.180000px;}
._7{width:586.380000px;}
._5{width:664.380000px;}
._3{width:703.980000px;}
._2{width:716.610000px;}
._4{width:921.450000px;}
._6{width:1311.450000px;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:39.600000px;}
.fs3{font-size:42.000000px;}
.fs5{font-size:51.600000px;}
.fs0{font-size:60.000000px;}
.fs2{font-size:66.000000px;}
.fs4{font-size:72.000000px;}
.fs1{font-size:84.000000px;}
.y0{bottom:0.000000px;}
.y70{bottom:3.600000px;}
.y72{bottom:3.615000px;}
.y95{bottom:3.900000px;}
.y6e{bottom:12.600000px;}
.y6d{bottom:17.100000px;}
.y94{bottom:28.500000px;}
.y39{bottom:54.037500px;}
.y5{bottom:55.237500px;}
.y38{bottom:71.437500px;}
.y4{bottom:87.337500px;}
.y37{bottom:88.537500px;}
.y3{bottom:104.437500px;}
.y10d{bottom:110.437500px;}
.y84{bottom:110.737500px;}
.yae{bottom:112.237500px;}
.y2{bottom:121.837500px;}
.y83{bottom:127.837500px;}
.yad{bottom:129.337500px;}
.y125{bottom:144.037500px;}
.y10c{bottom:144.937500px;}
.y82{bottom:145.237500px;}
.y34{bottom:155.730000px;}
.yd6{bottom:159.030000px;}
.y124{bottom:161.130000px;}
.yac{bottom:161.430000px;}
.y81{bottom:162.330000px;}
.y33{bottom:173.175000px;}
.yd5{bottom:176.475000px;}
.y123{bottom:178.575000px;}
.yab{bottom:178.875000px;}
.y10b{bottom:179.475000px;}
.y80{bottom:179.775000px;}
.y32{bottom:190.275000px;}
.yd4{bottom:193.575000px;}
.y122{bottom:195.675000px;}
.yaa{bottom:196.275000px;}
.y10a{bottom:196.875000px;}
.y90{bottom:200.775000px;}
.y31{bottom:207.675000px;}
.yd3{bottom:210.675000px;}
.y7f{bottom:211.575000px;}
.y121{bottom:213.075000px;}
.ya9{bottom:213.375000px;}
.y109{bottom:213.975000px;}
.y8f{bottom:214.575000px;}
.y30{bottom:224.775000px;}
.yd2{bottom:228.075000px;}
.y7e{bottom:229.275000px;}
.y120{bottom:230.175000px;}
.ya8{bottom:230.775000px;}
.y108{bottom:231.375000px;}
.y2f{bottom:242.175000px;}
.yd1{bottom:245.175000px;}
.y7d{bottom:246.375000px;}
.y11f{bottom:247.575000px;}
.ya7{bottom:247.875000px;}
.y107{bottom:248.475000px;}
.yd0{bottom:262.575000px;}
.y7c{bottom:263.775000px;}
.y11e{bottom:264.675000px;}
.ya6{bottom:265.275000px;}
.y106{bottom:265.875000px;}
.y2e{bottom:273.975000px;}
.ycf{bottom:279.675000px;}
.y11d{bottom:282.075000px;}
.ya5{bottom:282.375000px;}
.y105{bottom:282.975000px;}
.y2d{bottom:291.675000px;}
.y7b{bottom:295.575000px;}
.y11c{bottom:299.175000px;}
.ya4{bottom:299.775000px;}
.y104{bottom:300.375000px;}
.y2c{bottom:308.775000px;}
.yce{bottom:311.775000px;}
.y7a{bottom:313.275000px;}
.y11b{bottom:316.575000px;}
.ya3{bottom:316.875000px;}
.y103{bottom:317.475000px;}
.y2b{bottom:326.175000px;}
.ycd{bottom:329.175000px;}
.y79{bottom:330.375000px;}
.y11a{bottom:333.675000px;}
.ya2{bottom:334.275000px;}
.y102{bottom:334.875000px;}
.y2a{bottom:343.320000px;}
.ycc{bottom:346.620000px;}
.y78{bottom:347.820000px;}
.y119{bottom:351.105000px;}
.ya1{bottom:351.405000px;}
.y101{bottom:352.020000px;}
.y29{bottom:360.705000px;}
.y77{bottom:364.905000px;}
.y118{bottom:368.205000px;}
.ya0{bottom:368.820000px;}
.y100{bottom:369.420000px;}
.ycb{bottom:378.705000px;}
.y76{bottom:382.320000px;}
.y117{bottom:385.605000px;}
.y9f{bottom:385.920000px;}
.yff{bottom:386.505000px;}
.y28{bottom:392.520000px;}
.y5e{bottom:393.705000px;}
.yca{bottom:396.120000px;}
.y75{bottom:396.705000px;}
.y116{bottom:402.720000px;}
.y9e{bottom:403.320000px;}
.yfe{bottom:403.905000px;}
.y27{bottom:410.205000px;}
.y5d{bottom:411.420000px;}
.yc9{bottom:413.205000px;}
.y115{bottom:420.120000px;}
.y9d{bottom:420.420000px;}
.yfd{bottom:421.005000px;}
.y74{bottom:422.205000px;}
.y26{bottom:427.320000px;}
.y5c{bottom:428.505000px;}
.yc8{bottom:430.620000px;}
.y114{bottom:437.205000px;}
.yfc{bottom:438.420000px;}
.y25{bottom:444.720000px;}
.y73{bottom:447.705000px;}
.y9c{bottom:452.505000px;}
.y113{bottom:454.620000px;}
.yfb{bottom:455.505000px;}
.y5b{bottom:460.620000px;}
.y24{bottom:461.820000px;}
.yc7{bottom:465.120000px;}
.y9b{bottom:467.205000px;}
.y112{bottom:471.720000px;}
.yfa{bottom:472.905000px;}
.y71{bottom:473.205000px;}
.y5a{bottom:478.005000px;}
.y23{bottom:479.205000px;}
.yc6{bottom:482.205000px;}
.y111{bottom:489.120000px;}
.yf9{bottom:490.005000px;}
.y9a{bottom:492.705000px;}
.y22{bottom:496.320000px;}
.y6f{bottom:498.720000px;}
.yc5{bottom:499.620000px;}
.y110{bottom:506.205000px;}
.yf8{bottom:507.405000px;}
.y21{bottom:513.750000px;}
.yc4{bottom:516.750000px;}
.y99{bottom:518.250000px;}
.y10f{bottom:523.650000px;}
.y6c{bottom:524.250000px;}
.yf7{bottom:524.550000px;}
.y8b{bottom:529.050000px;}
.y59{bottom:530.850000px;}
.yc3{bottom:534.150000px;}
.y10e{bottom:541.350000px;}
.yf6{bottom:541.950000px;}
.y98{bottom:543.750000px;}
.y20{bottom:545.550000px;}
.y58{bottom:548.250000px;}
.yc2{bottom:551.250000px;}
.y8a{bottom:557.850000px;}
.yf5{bottom:559.050000px;}
.y1f{bottom:563.250000px;}
.yc1{bottom:568.650000px;}
.y97{bottom:569.250000px;}
.yf4{bottom:576.450000px;}
.y1e{bottom:580.350000px;}
.y6b{bottom:581.550000px;}
.y57{bottom:584.250000px;}
.yc0{bottom:585.750000px;}
.y56{bottom:593.250000px;}
.yf3{bottom:593.550000px;}
.y93{bottom:594.750000px;}
.y1d{bottom:597.750000px;}
.ybf{bottom:603.150000px;}
.yf2{bottom:610.950000px;}
.y6a{bottom:613.650000px;}
.y1c{bottom:615.150000px;}
.y96{bottom:620.250000px;}
.yf1{bottom:628.050000px;}
.y69{bottom:631.350000px;}
.y55{bottom:632.850000px;}
.ybe{bottom:637.650000px;}
.yf0{bottom:645.450000px;}
.y68{bottom:648.450000px;}
.y1b{bottom:648.750000px;}
.y54{bottom:650.250000px;}
.yef{bottom:662.550000px;}
.y92{bottom:664.050000px;}
.y67{bottom:665.850000px;}
.y53{bottom:667.650000px;}
.ybd{bottom:670.050000px;}
.y8e{bottom:673.350000px;}
.yee{bottom:679.995000px;}
.y1a{bottom:680.880000px;}
.y66{bottom:682.980000px;}
.y52{bottom:684.780000px;}
.y91{bottom:690.195000px;}
.y8d{bottom:690.495000px;}
.yed{bottom:697.095000px;}
.y19{bottom:698.580000px;}
.y65{bottom:700.395000px;}
.y51{bottom:702.195000px;}
.ybc{bottom:703.695000px;}
.y8c{bottom:704.280000px;}
.yec{bottom:714.495000px;}
.y18{bottom:715.695000px;}
.y64{bottom:717.495000px;}
.ybb{bottom:721.095000px;}
.yeb{bottom:731.595000px;}
.y17{bottom:733.095000px;}
.y50{bottom:733.995000px;}
.y63{bottom:734.880000px;}
.yba{bottom:738.480000px;}
.yea{bottom:748.980000px;}
.y16{bottom:750.195000px;}
.y4f{bottom:751.695000px;}
.y62{bottom:752.580000px;}
.yb9{bottom:755.580000px;}
.ye9{bottom:766.080000px;}
.y15{bottom:767.580000px;}
.y4e{bottom:768.795000px;}
.yb8{bottom:772.995000px;}
.ye8{bottom:783.495000px;}
.y14{bottom:784.695000px;}
.y4d{bottom:786.195000px;}
.y61{bottom:787.380000px;}
.yb7{bottom:790.080000px;}
.ye7{bottom:800.580000px;}
.y13{bottom:802.080000px;}
.y4c{bottom:803.295000px;}
.y60{bottom:805.080000px;}
.ye6{bottom:817.980000px;}
.y5f{bottom:818.895000px;}
.y12{bottom:819.195000px;}
.y4b{bottom:820.695000px;}
.yb6{bottom:822.195000px;}
.ye5{bottom:835.080000px;}
.y11{bottom:836.580000px;}
.y4a{bottom:837.795000px;}
.yb5{bottom:839.580000px;}
.ye4{bottom:852.525000px;}
.y10{bottom:853.725000px;}
.y49{bottom:855.225000px;}
.yb4{bottom:857.025000px;}
.ye3{bottom:869.625000px;}
.y48{bottom:872.325000px;}
.yb3{bottom:874.125000px;}
.ye2{bottom:887.025000px;}
.y47{bottom:889.725000px;}
.yb2{bottom:891.525000px;}
.yf{bottom:896.925000px;}
.ye1{bottom:904.125000px;}
.y46{bottom:906.825000px;}
.yb1{bottom:908.625000px;}
.ye0{bottom:921.525000px;}
.ye{bottom:923.625000px;}
.y45{bottom:924.225000px;}
.yb0{bottom:926.025000px;}
.ydf{bottom:938.625000px;}
.y44{bottom:941.625000px;}
.yd{bottom:942.825000px;}
.yaf{bottom:943.125000px;}
.yde{bottom:956.025000px;}
.yc{bottom:967.125000px;}
.ydd{bottom:973.125000px;}
.y43{bottom:975.225000px;}
.yb{bottom:980.625000px;}
.ydc{bottom:990.525000px;}
.y89{bottom:992.325000px;}
.y42{bottom:992.625000px;}
.ya{bottom:1004.925000px;}
.ydb{bottom:1007.625000px;}
.y41{bottom:1010.025000px;}
.y9{bottom:1018.755000px;}
.yda{bottom:1025.070000px;}
.y40{bottom:1027.170000px;}
.y8{bottom:1038.570000px;}
.yd9{bottom:1042.170000px;}
.y3f{bottom:1044.570000px;}
.yd8{bottom:1059.570000px;}
.y88{bottom:1061.670000px;}
.y7{bottom:1062.870000px;}
.y3e{bottom:1076.370000px;}
.yd7{bottom:1076.670000px;}
.y87{bottom:1079.070000px;}
.y6{bottom:1086.870000px;}
.y3d{bottom:1094.070000px;}
.y86{bottom:1096.170000px;}
.y3c{bottom:1111.170000px;}
.y1{bottom:1121.370000px;}
.y85{bottom:1128.255000px;}
.y3b{bottom:1128.570000px;}
.y3a{bottom:1145.670000px;}
.y36{bottom:1163.070000px;}
.y35{bottom:1189.200000px;}
.hd{height:24.900000px;}
.hc{height:24.937500px;}
.hb{height:38.400000px;}
.h5{height:43.143164px;}
.he{height:50.400000px;}
.hf{height:52.646484px;}
.h11{height:58.857422px;}
.h1{height:58.886719px;}
.h12{height:59.677734px;}
.h10{height:60.465234px;}
.h6{height:60.468750px;}
.h4{height:64.743164px;}
.h7{height:68.835938px;}
.ha{height:72.562500px;}
.h2{height:82.441406px;}
.h8{height:85.487109px;}
.h3{height:87.609375px;}
.h9{height:118.441406px;}
.h0{height:1263.000000px;}
.wc{width:42.337500px;}
.w8{width:42.600000px;}
.wb{width:43.800000px;}
.w9{width:43.837500px;}
.wd{width:46.800000px;}
.wa{width:46.837500px;}
.we{width:47.137500px;}
.w3{width:135.337500px;}
.w4{width:135.375000px;}
.w5{width:142.237500px;}
.w7{width:177.930000px;}
.w6{width:178.275000px;}
.w2{width:893.099987px;}
.w0{width:893.100000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x16{left:7.800000px;}
.x29{left:11.145000px;}
.x37{left:13.800000px;}
.x27{left:15.900000px;}
.x33{left:17.700000px;}
.x35{left:19.485000px;}
.x34{left:21.300000px;}
.x36{left:23.415000px;}
.x21{left:27.600000px;}
.x32{left:37.500000px;}
.x38{left:51.292500px;}
.x23{left:58.230000px;}
.x25{left:64.200000px;}
.x20{left:71.092500px;}
.x2{left:106.237487px;}
.x4{left:124.837487px;}
.xd{left:127.537487px;}
.xe{left:133.237487px;}
.x3{left:140.137487px;}
.xf{left:148.837487px;}
.x1d{left:156.629987px;}
.x11{left:159.344987px;}
.x7{left:167.429987px;}
.xc{left:170.129987px;}
.x1f{left:178.529987px;}
.x1c{left:180.674987px;}
.x12{left:198.974987px;}
.x9{left:216.374987px;}
.x17{left:243.075000px;}
.x22{left:249.975000px;}
.x14{left:258.374987px;}
.x5{left:266.174987px;}
.x28{left:293.475000px;}
.x6{left:330.719987px;}
.xa{left:334.619987px;}
.x2a{left:337.920000px;}
.x8{left:344.819987px;}
.x18{left:379.020000px;}
.x2b{left:381.420000px;}
.xb{left:405.719987px;}
.x24{left:429.150000px;}
.x15{left:446.549987px;}
.x2c{left:472.350000px;}
.x19{left:514.950000px;}
.x2d{left:517.050000px;}
.x2e{left:560.280000px;}
.x26{left:607.995000px;}
.x1e{left:619.694987px;}
.x13{left:649.979987px;}
.x2f{left:651.195000px;}
.x1a{left:677.024987px;}
.x30{left:695.925000px;}
.x31{left:739.125000px;}
.x10{left:771.824987px;}
.x1{left:786.569987px;}
.x1b{left:806.369987px;}
@media print{
.v2{vertical-align:-19.200000pt;}
.v3{vertical-align:-12.800000pt;}
.v7{vertical-align:-5.333333pt;}
.v9{vertical-align:-3.200000pt;}
.v0{vertical-align:0.000000pt;}
.va{vertical-align:3.200000pt;}
.v8{vertical-align:5.333333pt;}
.v4{vertical-align:12.800000pt;}
.v1{vertical-align:19.253333pt;}
.v6{vertical-align:32.000000pt;}
.v5{vertical-align:50.133333pt;}
.lsf{letter-spacing:-1.066667pt;}
.lsd{letter-spacing:-1.056000pt;}
.ls6{letter-spacing:-0.800000pt;}
.ls9{letter-spacing:-0.533333pt;}
.ls15{letter-spacing:-0.480000pt;}
.ls18{letter-spacing:-0.426667pt;}
.ls12{letter-spacing:-0.213333pt;}
.lsa{letter-spacing:-0.185600pt;}
.ls11{letter-spacing:-0.106667pt;}
.ls5{letter-spacing:0.000000pt;}
.lse{letter-spacing:0.011733pt;}
.ls14{letter-spacing:0.026667pt;}
.ls10{letter-spacing:0.373333pt;}
.ls1{letter-spacing:0.480000pt;}
.ls0{letter-spacing:0.533333pt;}
.ls2{letter-spacing:0.586667pt;}
.lsc{letter-spacing:0.821333pt;}
.lsb{letter-spacing:0.874667pt;}
.ls13{letter-spacing:1.600000pt;}
.ls16{letter-spacing:1.813333pt;}
.ls4{letter-spacing:13.333333pt;}
.ls7{letter-spacing:21.525333pt;}
.ls8{letter-spacing:31.125333pt;}
.ls3{letter-spacing:49.850667pt;}
.ls17{letter-spacing:95.680000pt;}
.ws3{word-spacing:-64.000000pt;}
.ws4{word-spacing:-45.866667pt;}
.ws1{word-spacing:-14.666667pt;}
.wsc{word-spacing:-13.706667pt;}
.ws0{word-spacing:-13.333333pt;}
.wsa{word-spacing:-13.226667pt;}
.wsb{word-spacing:-13.120000pt;}
.wsd{word-spacing:-12.853333pt;}
.ws9{word-spacing:-12.266667pt;}
.ws8{word-spacing:-8.811733pt;}
.ws5{word-spacing:-8.800000pt;}
.ws6{word-spacing:-8.614400pt;}
.ws7{word-spacing:-7.744000pt;}
.ws2{word-spacing:0.000000pt;}
._b{margin-left:-3.520000pt;}
._a{margin-left:-1.813333pt;}
._0{margin-left:-0.906667pt;}
._1{width:0.906667pt;}
._8{width:1.861333pt;}
._9{width:3.210667pt;}
._12{width:4.192000pt;}
._11{width:5.120000pt;}
._d{width:6.133333pt;}
._c{width:7.200000pt;}
._f{width:8.106667pt;}
._e{width:9.120000pt;}
._17{width:10.800000pt;}
._18{width:11.706667pt;}
._10{width:14.613333pt;}
._1d{width:16.053333pt;}
._1e{width:17.253333pt;}
._14{width:19.173333pt;}
._13{width:20.160000pt;}
._22{width:23.466667pt;}
._21{width:25.013333pt;}
._1a{width:26.453333pt;}
._19{width:27.733333pt;}
._1c{width:59.146667pt;}
._1b{width:60.560000pt;}
._20{width:61.466667pt;}
._1f{width:62.373333pt;}
._23{width:96.853333pt;}
._24{width:98.000000pt;}
._15{width:125.772800pt;}
._16{width:173.493333pt;}
._7{width:521.226667pt;}
._5{width:590.560000pt;}
._3{width:625.760000pt;}
._2{width:636.986667pt;}
._4{width:819.066667pt;}
._6{width:1165.733333pt;}
.fs6{font-size:35.200000pt;}
.fs3{font-size:37.333333pt;}
.fs5{font-size:45.866667pt;}
.fs0{font-size:53.333333pt;}
.fs2{font-size:58.666667pt;}
.fs4{font-size:64.000000pt;}
.fs1{font-size:74.666667pt;}
.y0{bottom:0.000000pt;}
.y70{bottom:3.200000pt;}
.y72{bottom:3.213333pt;}
.y95{bottom:3.466667pt;}
.y6e{bottom:11.200000pt;}
.y6d{bottom:15.200000pt;}
.y94{bottom:25.333333pt;}
.y39{bottom:48.033333pt;}
.y5{bottom:49.100000pt;}
.y38{bottom:63.500000pt;}
.y4{bottom:77.633333pt;}
.y37{bottom:78.700000pt;}
.y3{bottom:92.833333pt;}
.y10d{bottom:98.166667pt;}
.y84{bottom:98.433333pt;}
.yae{bottom:99.766667pt;}
.y2{bottom:108.300000pt;}
.y83{bottom:113.633333pt;}
.yad{bottom:114.966667pt;}
.y125{bottom:128.033333pt;}
.y10c{bottom:128.833333pt;}
.y82{bottom:129.100000pt;}
.y34{bottom:138.426667pt;}
.yd6{bottom:141.360000pt;}
.y124{bottom:143.226667pt;}
.yac{bottom:143.493333pt;}
.y81{bottom:144.293333pt;}
.y33{bottom:153.933333pt;}
.yd5{bottom:156.866667pt;}
.y123{bottom:158.733333pt;}
.yab{bottom:159.000000pt;}
.y10b{bottom:159.533333pt;}
.y80{bottom:159.800000pt;}
.y32{bottom:169.133333pt;}
.yd4{bottom:172.066667pt;}
.y122{bottom:173.933333pt;}
.yaa{bottom:174.466667pt;}
.y10a{bottom:175.000000pt;}
.y90{bottom:178.466667pt;}
.y31{bottom:184.600000pt;}
.yd3{bottom:187.266667pt;}
.y7f{bottom:188.066667pt;}
.y121{bottom:189.400000pt;}
.ya9{bottom:189.666667pt;}
.y109{bottom:190.200000pt;}
.y8f{bottom:190.733333pt;}
.y30{bottom:199.800000pt;}
.yd2{bottom:202.733333pt;}
.y7e{bottom:203.800000pt;}
.y120{bottom:204.600000pt;}
.ya8{bottom:205.133333pt;}
.y108{bottom:205.666667pt;}
.y2f{bottom:215.266667pt;}
.yd1{bottom:217.933333pt;}
.y7d{bottom:219.000000pt;}
.y11f{bottom:220.066667pt;}
.ya7{bottom:220.333333pt;}
.y107{bottom:220.866667pt;}
.yd0{bottom:233.400000pt;}
.y7c{bottom:234.466667pt;}
.y11e{bottom:235.266667pt;}
.ya6{bottom:235.800000pt;}
.y106{bottom:236.333333pt;}
.y2e{bottom:243.533333pt;}
.ycf{bottom:248.600000pt;}
.y11d{bottom:250.733333pt;}
.ya5{bottom:251.000000pt;}
.y105{bottom:251.533333pt;}
.y2d{bottom:259.266667pt;}
.y7b{bottom:262.733333pt;}
.y11c{bottom:265.933333pt;}
.ya4{bottom:266.466667pt;}
.y104{bottom:267.000000pt;}
.y2c{bottom:274.466667pt;}
.yce{bottom:277.133333pt;}
.y7a{bottom:278.466667pt;}
.y11b{bottom:281.400000pt;}
.ya3{bottom:281.666667pt;}
.y103{bottom:282.200000pt;}
.y2b{bottom:289.933333pt;}
.ycd{bottom:292.600000pt;}
.y79{bottom:293.666667pt;}
.y11a{bottom:296.600000pt;}
.ya2{bottom:297.133333pt;}
.y102{bottom:297.666667pt;}
.y2a{bottom:305.173333pt;}
.ycc{bottom:308.106667pt;}
.y78{bottom:309.173333pt;}
.y119{bottom:312.093333pt;}
.ya1{bottom:312.360000pt;}
.y101{bottom:312.906667pt;}
.y29{bottom:320.626667pt;}
.y77{bottom:324.360000pt;}
.y118{bottom:327.293333pt;}
.ya0{bottom:327.840000pt;}
.y100{bottom:328.373333pt;}
.ycb{bottom:336.626667pt;}
.y76{bottom:339.840000pt;}
.y117{bottom:342.760000pt;}
.y9f{bottom:343.040000pt;}
.yff{bottom:343.560000pt;}
.y28{bottom:348.906667pt;}
.y5e{bottom:349.960000pt;}
.yca{bottom:352.106667pt;}
.y75{bottom:352.626667pt;}
.y116{bottom:357.973333pt;}
.y9e{bottom:358.506667pt;}
.yfe{bottom:359.026667pt;}
.y27{bottom:364.626667pt;}
.y5d{bottom:365.706667pt;}
.yc9{bottom:367.293333pt;}
.y115{bottom:373.440000pt;}
.y9d{bottom:373.706667pt;}
.yfd{bottom:374.226667pt;}
.y74{bottom:375.293333pt;}
.y26{bottom:379.840000pt;}
.y5c{bottom:380.893333pt;}
.yc8{bottom:382.773333pt;}
.y114{bottom:388.626667pt;}
.yfc{bottom:389.706667pt;}
.y25{bottom:395.306667pt;}
.y73{bottom:397.960000pt;}
.y9c{bottom:402.226667pt;}
.y113{bottom:404.106667pt;}
.yfb{bottom:404.893333pt;}
.y5b{bottom:409.440000pt;}
.y24{bottom:410.506667pt;}
.yc7{bottom:413.440000pt;}
.y9b{bottom:415.293333pt;}
.y112{bottom:419.306667pt;}
.yfa{bottom:420.360000pt;}
.y71{bottom:420.626667pt;}
.y5a{bottom:424.893333pt;}
.y23{bottom:425.960000pt;}
.yc6{bottom:428.626667pt;}
.y111{bottom:434.773333pt;}
.yf9{bottom:435.560000pt;}
.y9a{bottom:437.960000pt;}
.y22{bottom:441.173333pt;}
.y6f{bottom:443.306667pt;}
.yc5{bottom:444.106667pt;}
.y110{bottom:449.960000pt;}
.yf8{bottom:451.026667pt;}
.y21{bottom:456.666667pt;}
.yc4{bottom:459.333333pt;}
.y99{bottom:460.666667pt;}
.y10f{bottom:465.466667pt;}
.y6c{bottom:466.000000pt;}
.yf7{bottom:466.266667pt;}
.y8b{bottom:470.266667pt;}
.y59{bottom:471.866667pt;}
.yc3{bottom:474.800000pt;}
.y10e{bottom:481.200000pt;}
.yf6{bottom:481.733333pt;}
.y98{bottom:483.333333pt;}
.y20{bottom:484.933333pt;}
.y58{bottom:487.333333pt;}
.yc2{bottom:490.000000pt;}
.y8a{bottom:495.866667pt;}
.yf5{bottom:496.933333pt;}
.y1f{bottom:500.666667pt;}
.yc1{bottom:505.466667pt;}
.y97{bottom:506.000000pt;}
.yf4{bottom:512.400000pt;}
.y1e{bottom:515.866667pt;}
.y6b{bottom:516.933333pt;}
.y57{bottom:519.333333pt;}
.yc0{bottom:520.666667pt;}
.y56{bottom:527.333333pt;}
.yf3{bottom:527.600000pt;}
.y93{bottom:528.666667pt;}
.y1d{bottom:531.333333pt;}
.ybf{bottom:536.133333pt;}
.yf2{bottom:543.066667pt;}
.y6a{bottom:545.466667pt;}
.y1c{bottom:546.800000pt;}
.y96{bottom:551.333333pt;}
.yf1{bottom:558.266667pt;}
.y69{bottom:561.200000pt;}
.y55{bottom:562.533333pt;}
.ybe{bottom:566.800000pt;}
.yf0{bottom:573.733333pt;}
.y68{bottom:576.400000pt;}
.y1b{bottom:576.666667pt;}
.y54{bottom:578.000000pt;}
.yef{bottom:588.933333pt;}
.y92{bottom:590.266667pt;}
.y67{bottom:591.866667pt;}
.y53{bottom:593.466667pt;}
.ybd{bottom:595.600000pt;}
.y8e{bottom:598.533333pt;}
.yee{bottom:604.440000pt;}
.y1a{bottom:605.226667pt;}
.y66{bottom:607.093333pt;}
.y52{bottom:608.693333pt;}
.y91{bottom:613.506667pt;}
.y8d{bottom:613.773333pt;}
.yed{bottom:619.640000pt;}
.y19{bottom:620.960000pt;}
.y65{bottom:622.573333pt;}
.y51{bottom:624.173333pt;}
.ybc{bottom:625.506667pt;}
.y8c{bottom:626.026667pt;}
.yec{bottom:635.106667pt;}
.y18{bottom:636.173333pt;}
.y64{bottom:637.773333pt;}
.ybb{bottom:640.973333pt;}
.yeb{bottom:650.306667pt;}
.y17{bottom:651.640000pt;}
.y50{bottom:652.440000pt;}
.y63{bottom:653.226667pt;}
.yba{bottom:656.426667pt;}
.yea{bottom:665.760000pt;}
.y16{bottom:666.840000pt;}
.y4f{bottom:668.173333pt;}
.y62{bottom:668.960000pt;}
.yb9{bottom:671.626667pt;}
.ye9{bottom:680.960000pt;}
.y15{bottom:682.293333pt;}
.y4e{bottom:683.373333pt;}
.yb8{bottom:687.106667pt;}
.ye8{bottom:696.440000pt;}
.y14{bottom:697.506667pt;}
.y4d{bottom:698.840000pt;}
.y61{bottom:699.893333pt;}
.yb7{bottom:702.293333pt;}
.ye7{bottom:711.626667pt;}
.y13{bottom:712.960000pt;}
.y4c{bottom:714.040000pt;}
.y60{bottom:715.626667pt;}
.ye6{bottom:727.093333pt;}
.y5f{bottom:727.906667pt;}
.y12{bottom:728.173333pt;}
.y4b{bottom:729.506667pt;}
.yb6{bottom:730.840000pt;}
.ye5{bottom:742.293333pt;}
.y11{bottom:743.626667pt;}
.y4a{bottom:744.706667pt;}
.yb5{bottom:746.293333pt;}
.ye4{bottom:757.800000pt;}
.y10{bottom:758.866667pt;}
.y49{bottom:760.200000pt;}
.yb4{bottom:761.800000pt;}
.ye3{bottom:773.000000pt;}
.y48{bottom:775.400000pt;}
.yb3{bottom:777.000000pt;}
.ye2{bottom:788.466667pt;}
.y47{bottom:790.866667pt;}
.yb2{bottom:792.466667pt;}
.yf{bottom:797.266667pt;}
.ye1{bottom:803.666667pt;}
.y46{bottom:806.066667pt;}
.yb1{bottom:807.666667pt;}
.ye0{bottom:819.133333pt;}
.ye{bottom:821.000000pt;}
.y45{bottom:821.533333pt;}
.yb0{bottom:823.133333pt;}
.ydf{bottom:834.333333pt;}
.y44{bottom:837.000000pt;}
.yd{bottom:838.066667pt;}
.yaf{bottom:838.333333pt;}
.yde{bottom:849.800000pt;}
.yc{bottom:859.666667pt;}
.ydd{bottom:865.000000pt;}
.y43{bottom:866.866667pt;}
.yb{bottom:871.666667pt;}
.ydc{bottom:880.466667pt;}
.y89{bottom:882.066667pt;}
.y42{bottom:882.333333pt;}
.ya{bottom:893.266667pt;}
.ydb{bottom:895.666667pt;}
.y41{bottom:897.800000pt;}
.y9{bottom:905.560000pt;}
.yda{bottom:911.173333pt;}
.y40{bottom:913.040000pt;}
.y8{bottom:923.173333pt;}
.yd9{bottom:926.373333pt;}
.y3f{bottom:928.506667pt;}
.yd8{bottom:941.840000pt;}
.y88{bottom:943.706667pt;}
.y7{bottom:944.773333pt;}
.y3e{bottom:956.773333pt;}
.yd7{bottom:957.040000pt;}
.y87{bottom:959.173333pt;}
.y6{bottom:966.106667pt;}
.y3d{bottom:972.506667pt;}
.y86{bottom:974.373333pt;}
.y3c{bottom:987.706667pt;}
.y1{bottom:996.773333pt;}
.y85{bottom:1002.893333pt;}
.y3b{bottom:1003.173333pt;}
.y3a{bottom:1018.373333pt;}
.y36{bottom:1033.840000pt;}
.y35{bottom:1057.066667pt;}
.hd{height:22.133333pt;}
.hc{height:22.166667pt;}
.hb{height:34.133333pt;}
.h5{height:38.349479pt;}
.he{height:44.800000pt;}
.hf{height:46.796875pt;}
.h11{height:52.317708pt;}
.h1{height:52.343750pt;}
.h12{height:53.046875pt;}
.h10{height:53.746875pt;}
.h6{height:53.750000pt;}
.h4{height:57.549479pt;}
.h7{height:61.187500pt;}
.ha{height:64.500000pt;}
.h2{height:73.281250pt;}
.h8{height:75.988542pt;}
.h3{height:77.875000pt;}
.h9{height:105.281250pt;}
.h0{height:1122.666667pt;}
.wc{width:37.633333pt;}
.w8{width:37.866667pt;}
.wb{width:38.933333pt;}
.w9{width:38.966667pt;}
.wd{width:41.600000pt;}
.wa{width:41.633333pt;}
.we{width:41.900000pt;}
.w3{width:120.300000pt;}
.w4{width:120.333333pt;}
.w5{width:126.433333pt;}
.w7{width:158.160000pt;}
.w6{width:158.466667pt;}
.w2{width:793.866655pt;}
.w0{width:793.866667pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x16{left:6.933333pt;}
.x29{left:9.906667pt;}
.x37{left:12.266667pt;}
.x27{left:14.133333pt;}
.x33{left:15.733333pt;}
.x35{left:17.320000pt;}
.x34{left:18.933333pt;}
.x36{left:20.813333pt;}
.x21{left:24.533333pt;}
.x32{left:33.333333pt;}
.x38{left:45.593333pt;}
.x23{left:51.760000pt;}
.x25{left:57.066667pt;}
.x20{left:63.193333pt;}
.x2{left:94.433322pt;}
.x4{left:110.966655pt;}
.xd{left:113.366655pt;}
.xe{left:118.433322pt;}
.x3{left:124.566655pt;}
.xf{left:132.299988pt;}
.x1d{left:139.226655pt;}
.x11{left:141.639988pt;}
.x7{left:148.826655pt;}
.xc{left:151.226655pt;}
.x1f{left:158.693322pt;}
.x1c{left:160.599988pt;}
.x12{left:176.866655pt;}
.x9{left:192.333322pt;}
.x17{left:216.066667pt;}
.x22{left:222.200000pt;}
.x14{left:229.666655pt;}
.x5{left:236.599988pt;}
.x28{left:260.866667pt;}
.x6{left:293.973322pt;}
.xa{left:297.439988pt;}
.x2a{left:300.373333pt;}
.x8{left:306.506655pt;}
.x18{left:336.906667pt;}
.x2b{left:339.040000pt;}
.xb{left:360.639988pt;}
.x24{left:381.466667pt;}
.x15{left:396.933322pt;}
.x2c{left:419.866667pt;}
.x19{left:457.733333pt;}
.x2d{left:459.600000pt;}
.x2e{left:498.026667pt;}
.x26{left:540.440000pt;}
.x1e{left:550.839988pt;}
.x13{left:577.759988pt;}
.x2f{left:578.840000pt;}
.x1a{left:601.799988pt;}
.x30{left:618.600000pt;}
.x31{left:657.000000pt;}
.x10{left:686.066655pt;}
.x1{left:699.173322pt;}
.x1b{left:716.773322pt;}
}




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