
    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_83212d8a886dd58f71675e02.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_415734a60b866f488a7006bb.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.123047;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_4db8c192887b9a442da2f6be.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_3350347ce0969884240126ba.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_95366a679cfacf0618a9f860.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.080566;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_aace7eaa4e36eca744ae3b32.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_29d716445a9714b51ec2cc66.woff2')format("woff");}.ff7{font-family:ff7;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;}
.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);}
.v3{vertical-align:-138.420000px;}
.v2{vertical-align:-69.120000px;}
.v1{vertical-align:-67.680000px;}
.v4{vertical-align:-63.360000px;}
.v0{vertical-align:0.000000px;}
.lsb{letter-spacing:-2.382000px;}
.lsa{letter-spacing:-2.070000px;}
.ls3b{letter-spacing:-1.998000px;}
.ls3d{letter-spacing:-1.914000px;}
.ls19{letter-spacing:-1.902000px;}
.ls33{letter-spacing:-1.536000px;}
.ls38{letter-spacing:-1.440000px;}
.ls23{letter-spacing:-1.422000px;}
.ls41{letter-spacing:-1.254000px;}
.ls34{letter-spacing:-0.972000px;}
.ls40{letter-spacing:-0.810000px;}
.ls9{letter-spacing:-0.720000px;}
.ls16{letter-spacing:-0.684000px;}
.ls35{letter-spacing:-0.678000px;}
.ls3c{letter-spacing:-0.492600px;}
.ls36{letter-spacing:-0.486600px;}
.ls3f{letter-spacing:-0.475200px;}
.ls7{letter-spacing:-0.466800px;}
.ls39{letter-spacing:-0.276600px;}
.ls6{letter-spacing:0.000000px;}
.lsf{letter-spacing:0.020160px;}
.ls1a{letter-spacing:0.032160px;}
.ls1f{letter-spacing:0.140160px;}
.ls11{letter-spacing:0.164160px;}
.ls5{letter-spacing:0.172800px;}
.ls12{letter-spacing:0.200160px;}
.lsd{letter-spacing:0.339600px;}
.lsc{letter-spacing:0.466800px;}
.ls8{letter-spacing:0.486600px;}
.ls2a{letter-spacing:0.486720px;}
.ls17{letter-spacing:0.507000px;}
.ls37{letter-spacing:0.590400px;}
.ls3e{letter-spacing:0.630000px;}
.ls0{letter-spacing:0.720000px;}
.ls3a{letter-spacing:0.846000px;}
.ls22{letter-spacing:0.900000px;}
.ls18{letter-spacing:2.160000px;}
.lse{letter-spacing:3.600000px;}
.ls24{letter-spacing:6.480000px;}
.ls1b{letter-spacing:9.360000px;}
.ls25{letter-spacing:9.540000px;}
.ls13{letter-spacing:10.800000px;}
.ls29{letter-spacing:10.920000px;}
.ls2{letter-spacing:12.240000px;}
.ls10{letter-spacing:15.120000px;}
.ls26{letter-spacing:15.300000px;}
.ls15{letter-spacing:19.440000px;}
.ls27{letter-spacing:20.880000px;}
.ls28{letter-spacing:21.000000px;}
.ls14{letter-spacing:23.760000px;}
.ls31{letter-spacing:25.200000px;}
.ls30{letter-spacing:26.640000px;}
.ls2b{letter-spacing:29.520000px;}
.ls2d{letter-spacing:29.640000px;}
.ls2f{letter-spacing:29.700000px;}
.ls2e{letter-spacing:30.960000px;}
.ls2c{letter-spacing:31.080000px;}
.ls3{letter-spacing:36.720000px;}
.ls1d{letter-spacing:49.824000px;}
.ls1e{letter-spacing:71.280000px;}
.ls20{letter-spacing:154.920000px;}
.ls4{letter-spacing:154.944000px;}
.ls1{letter-spacing:156.384000px;}
.ls1c{letter-spacing:640.380000px;}
.ls32{letter-spacing:797.460000px;}
.ls21{letter-spacing:830.640000px;}
.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;}
}
.ws10{word-spacing:-15.966000px;}
.wse{word-spacing:-15.710400px;}
.ws2{word-spacing:-15.606600px;}
.ws9{word-spacing:-15.140160px;}
.ws1{word-spacing:-15.120000px;}
.wsf{word-spacing:-14.843400px;}
.ws0{word-spacing:-14.653200px;}
.wsd{word-spacing:-14.633400px;}
.wsc{word-spacing:-14.442000px;}
.ws8{word-spacing:-14.436000px;}
.wsa{word-spacing:-14.400000px;}
.ws14{word-spacing:-14.310000px;}
.wsb{word-spacing:-14.148000px;}
.ws6{word-spacing:-14.019600px;}
.ws3{word-spacing:-13.680000px;}
.ws15{word-spacing:-13.204800px;}
.ws12{word-spacing:-13.187400px;}
.ws16{word-spacing:-12.870000px;}
.ws17{word-spacing:-12.426000px;}
.ws11{word-spacing:-12.240000px;}
.ws13{word-spacing:-11.766000px;}
.ws4{word-spacing:-11.610000px;}
.ws5{word-spacing:-11.298000px;}
.ws7{word-spacing:0.000000px;}
._3{margin-left:-8.356800px;}
._6{margin-left:-7.107840px;}
._5{margin-left:-5.806080px;}
._4{margin-left:-3.760320px;}
._2{margin-left:-2.643600px;}
._0{margin-left:-1.320000px;}
._1{width:1.302480px;}
._7{width:2.622240px;}
._1a{width:3.696480px;}
._16{width:4.724400px;}
._12{width:5.927040px;}
._17{width:6.946800px;}
._14{width:8.335680px;}
._15{width:9.858240px;}
._13{width:11.408880px;}
._f{width:12.448320px;}
._e{width:13.805040px;}
._18{width:16.319040px;}
._19{width:17.510400px;}
._1c{width:18.944400px;}
._1b{width:20.570160px;}
._1e{width:22.196160px;}
._1d{width:24.131520px;}
._c{width:25.680000px;}
._b{width:27.618240px;}
._d{width:28.842000px;}
._20{width:29.997840px;}
._9{width:31.540320px;}
._8{width:32.588640px;}
._a{width:34.354080px;}
._10{width:35.793600px;}
._11{width:37.013760px;}
._21{width:38.292240px;}
._23{width:39.308880px;}
._22{width:40.510320px;}
._29{width:45.047040px;}
._28{width:46.921920px;}
._24{width:62.333760px;}
._1f{width:64.179840px;}
._26{width:81.889920px;}
._25{width:118.056960px;}
._27{width:956.813040px;}
.fc4{color:rgb(16,0,12);}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(255,0,0);}
.fc3{color:rgb(34,34,34);}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:47.520000px;}
.fs2{font-size:54.720000px;}
.fs0{font-size:60.480000px;}
.fs1{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.ya1{bottom:3.240000px;}
.y71{bottom:3.600000px;}
.ybb{bottom:6.120000px;}
.y77{bottom:9.720000px;}
.y9f{bottom:10.440000px;}
.y9e{bottom:10.800000px;}
.y9b{bottom:20.520000px;}
.y82{bottom:20.565000px;}
.y70{bottom:20.880000px;}
.yb9{bottom:20.910000px;}
.y2{bottom:24.480000px;}
.y9d{bottom:28.125000px;}
.y9a{bottom:37.800000px;}
.yb8{bottom:37.830000px;}
.y81{bottom:37.845000px;}
.y6f{bottom:38.160000px;}
.y99{bottom:55.080000px;}
.yb7{bottom:55.110000px;}
.y80{bottom:55.125000px;}
.y6e{bottom:55.470000px;}
.y1{bottom:65.520000px;}
.y7e{bottom:73.125000px;}
.y6c{bottom:73.440000px;}
.y7d{bottom:90.405000px;}
.y6b{bottom:90.750000px;}
.yec{bottom:102.600000px;}
.yad{bottom:106.200000px;}
.yd6{bottom:106.920000px;}
.y38{bottom:108.000000px;}
.y66{bottom:113.436000px;}
.y79{bottom:117.756000px;}
.y37{bottom:123.516000px;}
.yd5{bottom:124.236000px;}
.y65{bottom:130.716000px;}
.y78{bottom:132.156000px;}
.yeb{bottom:133.956000px;}
.y36{bottom:139.356000px;}
.yac{bottom:140.796000px;}
.yd4{bottom:141.516000px;}
.y64{bottom:147.996000px;}
.y76{bottom:150.150000px;}
.yea{bottom:150.870000px;}
.yab{bottom:158.070000px;}
.yd3{bottom:158.430000px;}
.y63{bottom:165.270000px;}
.ye9{bottom:168.510000px;}
.y35{bottom:173.910000px;}
.y75{bottom:174.270000px;}
.yaa{bottom:175.350000px;}
.y62{bottom:182.190000px;}
.ye8{bottom:185.430000px;}
.yd2{bottom:189.750000px;}
.y34{bottom:190.830000px;}
.y74{bottom:192.270000px;}
.ya9{bottom:192.630000px;}
.y61{bottom:199.110000px;}
.ye7{bottom:203.070000px;}
.yd1{bottom:207.030000px;}
.y33{bottom:208.110000px;}
.ya8{bottom:209.910000px;}
.y73{bottom:210.270000px;}
.y60{bottom:216.390000px;}
.ye6{bottom:220.395000px;}
.yd0{bottom:224.355000px;}
.y32{bottom:225.435000px;}
.ya7{bottom:227.235000px;}
.y72{bottom:228.315000px;}
.y5f{bottom:234.075000px;}
.ye5{bottom:237.675000px;}
.ycf{bottom:241.635000px;}
.y31{bottom:242.715000px;}
.ya6{bottom:244.515000px;}
.y6a{bottom:246.315000px;}
.y5e{bottom:251.355000px;}
.ye4{bottom:254.955000px;}
.yce{bottom:258.915000px;}
.y30{bottom:259.995000px;}
.ya5{bottom:261.795000px;}
.y5d{bottom:268.635000px;}
.ye3{bottom:272.235000px;}
.ycd{bottom:276.195000px;}
.y2f{bottom:277.275000px;}
.ya4{bottom:279.075000px;}
.y6d{bottom:281.595000px;}
.y5c{bottom:285.915000px;}
.ye2{bottom:289.515000px;}
.ycc{bottom:293.115000px;}
.ya3{bottom:293.475000px;}
.y2e{bottom:294.555000px;}
.y5b{bottom:303.195000px;}
.ye1{bottom:306.435000px;}
.ycb{bottom:310.755000px;}
.y2d{bottom:311.835000px;}
.y5a{bottom:320.475000px;}
.ye0{bottom:323.385000px;}
.yca{bottom:328.065000px;}
.ya2{bottom:328.785000px;}
.y2c{bottom:329.145000px;}
.y59{bottom:337.785000px;}
.ydf{bottom:341.025000px;}
.yc9{bottom:344.985000px;}
.y2b{bottom:346.425000px;}
.y69{bottom:354.705000px;}
.y58{bottom:355.065000px;}
.yde{bottom:358.305000px;}
.yc8{bottom:362.265000px;}
.y2a{bottom:363.705000px;}
.ya0{bottom:364.065000px;}
.y68{bottom:371.625000px;}
.y57{bottom:371.985000px;}
.ydd{bottom:375.585000px;}
.yc7{bottom:379.545000px;}
.y29{bottom:380.625000px;}
.y56{bottom:389.265000px;}
.ydc{bottom:392.865000px;}
.yc6{bottom:396.825000px;}
.y28{bottom:397.905000px;}
.y9c{bottom:398.985000px;}
.y55{bottom:406.545000px;}
.ydb{bottom:410.145000px;}
.yc5{bottom:414.105000px;}
.y27{bottom:415.185000px;}
.y54{bottom:423.825000px;}
.yda{bottom:427.470000px;}
.yc4{bottom:431.430000px;}
.y26{bottom:432.510000px;}
.y53{bottom:441.150000px;}
.y98{bottom:441.510000px;}
.yd9{bottom:444.750000px;}
.yc3{bottom:448.710000px;}
.y25{bottom:449.790000px;}
.y52{bottom:458.430000px;}
.yd8{bottom:462.030000px;}
.yc2{bottom:465.990000px;}
.y24{bottom:467.070000px;}
.y51{bottom:475.710000px;}
.yd7{bottom:478.230000px;}
.yc1{bottom:483.270000px;}
.y23{bottom:484.350000px;}
.y50{bottom:492.990000px;}
.yc0{bottom:500.550000px;}
.y22{bottom:501.630000px;}
.y4f{bottom:510.270000px;}
.y97{bottom:514.230000px;}
.ybf{bottom:517.830000px;}
.y21{bottom:518.910000px;}
.y4e{bottom:527.550000px;}
.y96{bottom:531.510000px;}
.ybe{bottom:535.140000px;}
.y20{bottom:536.220000px;}
.y4d{bottom:544.860000px;}
.y95{bottom:548.820000px;}
.ybd{bottom:552.060000px;}
.y1f{bottom:553.500000px;}
.y4c{bottom:562.140000px;}
.ybc{bottom:569.340000px;}
.y1e{bottom:570.420000px;}
.y4b{bottom:579.060000px;}
.y94{bottom:583.740000px;}
.y1d{bottom:587.700000px;}
.y4a{bottom:596.340000px;}
.y93{bottom:601.020000px;}
.yba{bottom:601.740000px;}
.y1c{bottom:604.980000px;}
.y49{bottom:613.620000px;}
.y92{bottom:618.300000px;}
.y1b{bottom:622.260000px;}
.y48{bottom:630.900000px;}
.y91{bottom:635.580000px;}
.y1a{bottom:639.570000px;}
.y47{bottom:648.210000px;}
.y90{bottom:652.890000px;}
.y19{bottom:656.850000px;}
.y46{bottom:665.490000px;}
.y8f{bottom:670.170000px;}
.y18{bottom:674.130000px;}
.y45{bottom:682.770000px;}
.y8e{bottom:687.090000px;}
.y17{bottom:691.410000px;}
.yb6{bottom:695.010000px;}
.y44{bottom:700.050000px;}
.y8d{bottom:704.370000px;}
.y16{bottom:708.330000px;}
.yb5{bottom:712.290000px;}
.y43{bottom:717.330000px;}
.y8c{bottom:721.650000px;}
.y15{bottom:725.610000px;}
.y42{bottom:734.610000px;}
.y8b{bottom:738.930000px;}
.y41{bottom:751.935000px;}
.y8a{bottom:756.255000px;}
.y14{bottom:760.215000px;}
.yb4{bottom:764.535000px;}
.y40{bottom:768.855000px;}
.y89{bottom:773.535000px;}
.y13{bottom:775.695000px;}
.yb3{bottom:778.935000px;}
.y3f{bottom:786.135000px;}
.y88{bottom:787.935000px;}
.y12{bottom:791.175000px;}
.y3e{bottom:803.415000px;}
.y87{bottom:805.935000px;}
.y11{bottom:806.655000px;}
.yb2{bottom:814.215000px;}
.y3d{bottom:820.695000px;}
.y10{bottom:821.775000px;}
.y86{bottom:830.055000px;}
.yf{bottom:837.975000px;}
.y85{bottom:848.085000px;}
.yb1{bottom:849.525000px;}
.ye{bottom:855.285000px;}
.y84{bottom:866.085000px;}
.yd{bottom:872.565000px;}
.y83{bottom:884.085000px;}
.yb0{bottom:884.805000px;}
.y3c{bottom:889.485000px;}
.yc{bottom:889.845000px;}
.y7c{bottom:902.085000px;}
.yb{bottom:906.765000px;}
.y67{bottom:907.125000px;}
.yaf{bottom:920.085000px;}
.ya{bottom:924.045000px;}
.y3b{bottom:924.405000px;}
.y7f{bottom:937.365000px;}
.y9{bottom:941.325000px;}
.y3a{bottom:941.685000px;}
.y8{bottom:958.650000px;}
.y39{bottom:959.010000px;}
.y7{bottom:975.930000px;}
.yae{bottom:992.850000px;}
.y6{bottom:993.210000px;}
.y7b{bottom:1010.130000px;}
.y5{bottom:1010.490000px;}
.y7a{bottom:1027.410000px;}
.y4{bottom:1027.770000px;}
.y3{bottom:1045.050000px;}
.hd{height:17.280000px;}
.he{height:17.316000px;}
.h16{height:19.800000px;}
.hf{height:23.400000px;}
.h12{height:34.200000px;}
.hc{height:34.560000px;}
.h15{height:34.596000px;}
.h14{height:41.436000px;}
.h17{height:46.638281px;}
.h18{height:47.891250px;}
.h5{height:52.299844px;}
.h8{height:53.704687px;}
.h9{height:54.219375px;}
.h7{height:55.147500px;}
.h4{height:59.328281px;}
.h2{height:59.357813px;}
.h6{height:60.952500px;}
.h13{height:68.760000px;}
.h11{height:68.796000px;}
.hb{height:69.156000px;}
.h3{height:70.664062px;}
.h10{height:104.076000px;}
.ha{height:104.436000px;}
.h1{height:1105.500000px;}
.h0{height:1105.560000px;}
.w16{width:75.636000px;}
.w10{width:94.716000px;}
.we{width:94.752000px;}
.w7{width:95.112000px;}
.w8{width:105.516000px;}
.w9{width:105.552000px;}
.wf{width:105.876000px;}
.w12{width:105.912000px;}
.wd{width:115.992000px;}
.w6{width:116.316000px;}
.w3{width:169.305000px;}
.wa{width:180.075000px;}
.wc{width:201.315000px;}
.w5{width:211.785000px;}
.wb{width:211.830000px;}
.w4{width:212.145000px;}
.w11{width:233.025000px;}
.w14{width:233.070000px;}
.w17{width:242.070000px;}
.w13{width:254.265000px;}
.w15{width:254.310000px;}
.w18{width:264.390000px;}
.w2{width:722.879989px;}
.w0{width:722.880000px;}
.w1{width:723.000000px;}
.x0{left:0.000000px;}
.x12{left:7.560000px;}
.x31{left:9.720000px;}
.x34{left:21.240000px;}
.x18{left:22.320000px;}
.x28{left:23.400000px;}
.x16{left:28.080000px;}
.x33{left:32.040000px;}
.x21{left:34.590000px;}
.x20{left:38.190000px;}
.x1e{left:39.645000px;}
.x17{left:41.430000px;}
.x1c{left:43.950000px;}
.x1d{left:45.000000px;}
.x1a{left:46.485000px;}
.x1f{left:48.600000px;}
.xe{left:51.155989px;}
.x30{left:52.950000px;}
.x1b{left:54.360000px;}
.x2e{left:56.916000px;}
.x23{left:60.155989px;}
.x35{left:66.645000px;}
.x2a{left:75.275989px;}
.x3{left:76.715989px;}
.x14{left:81.750000px;}
.x41{left:83.235000px;}
.x11{left:84.639000px;}
.xf{left:85.715989px;}
.x3d{left:88.235989px;}
.x25{left:89.676000px;}
.x7{left:90.755989px;}
.xd{left:93.635989px;}
.x2b{left:96.155989px;}
.x42{left:97.965000px;}
.x38{left:100.871989px;}
.x6{left:108.431989px;}
.x2d{left:116.319000px;}
.x2{left:119.231989px;}
.x39{left:121.751989px;}
.x36{left:127.155000px;}
.x9{left:139.391989px;}
.x3f{left:163.875000px;}
.xa{left:177.224989px;}
.x4{left:185.144989px;}
.x2c{left:201.344989px;}
.x43{left:209.624989px;}
.x3a{left:222.944989px;}
.x26{left:232.305000px;}
.x13{left:247.110000px;}
.x24{left:251.789989px;}
.x10{left:277.349989px;}
.x8{left:280.229989px;}
.x2f{left:285.270000px;}
.x3e{left:297.149989px;}
.x3b{left:311.220000px;}
.xc{left:337.859989px;}
.xb{left:349.019989px;}
.x1{left:363.419989px;}
.x5{left:374.609989px;}
.x32{left:391.890000px;}
.x40{left:406.650000px;}
.x3c{left:417.450000px;}
.x27{left:444.855000px;}
.x15{left:459.975000px;}
.x29{left:551.445000px;}
.x19{left:566.205000px;}
.x22{left:581.729989px;}
.x37{left:607.289989px;}
@media print{
.v3{vertical-align:-123.040000pt;}
.v2{vertical-align:-61.440000pt;}
.v1{vertical-align:-60.160000pt;}
.v4{vertical-align:-56.320000pt;}
.v0{vertical-align:0.000000pt;}
.lsb{letter-spacing:-2.117333pt;}
.lsa{letter-spacing:-1.840000pt;}
.ls3b{letter-spacing:-1.776000pt;}
.ls3d{letter-spacing:-1.701333pt;}
.ls19{letter-spacing:-1.690667pt;}
.ls33{letter-spacing:-1.365333pt;}
.ls38{letter-spacing:-1.280000pt;}
.ls23{letter-spacing:-1.264000pt;}
.ls41{letter-spacing:-1.114667pt;}
.ls34{letter-spacing:-0.864000pt;}
.ls40{letter-spacing:-0.720000pt;}
.ls9{letter-spacing:-0.640000pt;}
.ls16{letter-spacing:-0.608000pt;}
.ls35{letter-spacing:-0.602667pt;}
.ls3c{letter-spacing:-0.437867pt;}
.ls36{letter-spacing:-0.432533pt;}
.ls3f{letter-spacing:-0.422400pt;}
.ls7{letter-spacing:-0.414933pt;}
.ls39{letter-spacing:-0.245867pt;}
.ls6{letter-spacing:0.000000pt;}
.lsf{letter-spacing:0.017920pt;}
.ls1a{letter-spacing:0.028587pt;}
.ls1f{letter-spacing:0.124587pt;}
.ls11{letter-spacing:0.145920pt;}
.ls5{letter-spacing:0.153600pt;}
.ls12{letter-spacing:0.177920pt;}
.lsd{letter-spacing:0.301867pt;}
.lsc{letter-spacing:0.414933pt;}
.ls8{letter-spacing:0.432533pt;}
.ls2a{letter-spacing:0.432640pt;}
.ls17{letter-spacing:0.450667pt;}
.ls37{letter-spacing:0.524800pt;}
.ls3e{letter-spacing:0.560000pt;}
.ls0{letter-spacing:0.640000pt;}
.ls3a{letter-spacing:0.752000pt;}
.ls22{letter-spacing:0.800000pt;}
.ls18{letter-spacing:1.920000pt;}
.lse{letter-spacing:3.200000pt;}
.ls24{letter-spacing:5.760000pt;}
.ls1b{letter-spacing:8.320000pt;}
.ls25{letter-spacing:8.480000pt;}
.ls13{letter-spacing:9.600000pt;}
.ls29{letter-spacing:9.706667pt;}
.ls2{letter-spacing:10.880000pt;}
.ls10{letter-spacing:13.440000pt;}
.ls26{letter-spacing:13.600000pt;}
.ls15{letter-spacing:17.280000pt;}
.ls27{letter-spacing:18.560000pt;}
.ls28{letter-spacing:18.666667pt;}
.ls14{letter-spacing:21.120000pt;}
.ls31{letter-spacing:22.400000pt;}
.ls30{letter-spacing:23.680000pt;}
.ls2b{letter-spacing:26.240000pt;}
.ls2d{letter-spacing:26.346667pt;}
.ls2f{letter-spacing:26.400000pt;}
.ls2e{letter-spacing:27.520000pt;}
.ls2c{letter-spacing:27.626667pt;}
.ls3{letter-spacing:32.640000pt;}
.ls1d{letter-spacing:44.288000pt;}
.ls1e{letter-spacing:63.360000pt;}
.ls20{letter-spacing:137.706667pt;}
.ls4{letter-spacing:137.728000pt;}
.ls1{letter-spacing:139.008000pt;}
.ls1c{letter-spacing:569.226667pt;}
.ls32{letter-spacing:708.853333pt;}
.ls21{letter-spacing:738.346667pt;}
.ws10{word-spacing:-14.192000pt;}
.wse{word-spacing:-13.964800pt;}
.ws2{word-spacing:-13.872533pt;}
.ws9{word-spacing:-13.457920pt;}
.ws1{word-spacing:-13.440000pt;}
.wsf{word-spacing:-13.194133pt;}
.ws0{word-spacing:-13.025067pt;}
.wsd{word-spacing:-13.007467pt;}
.wsc{word-spacing:-12.837333pt;}
.ws8{word-spacing:-12.832000pt;}
.wsa{word-spacing:-12.800000pt;}
.ws14{word-spacing:-12.720000pt;}
.wsb{word-spacing:-12.576000pt;}
.ws6{word-spacing:-12.461867pt;}
.ws3{word-spacing:-12.160000pt;}
.ws15{word-spacing:-11.737600pt;}
.ws12{word-spacing:-11.722133pt;}
.ws16{word-spacing:-11.440000pt;}
.ws17{word-spacing:-11.045333pt;}
.ws11{word-spacing:-10.880000pt;}
.ws13{word-spacing:-10.458667pt;}
.ws4{word-spacing:-10.320000pt;}
.ws5{word-spacing:-10.042667pt;}
.ws7{word-spacing:0.000000pt;}
._3{margin-left:-7.428267pt;}
._6{margin-left:-6.318080pt;}
._5{margin-left:-5.160960pt;}
._4{margin-left:-3.342507pt;}
._2{margin-left:-2.349867pt;}
._0{margin-left:-1.173333pt;}
._1{width:1.157760pt;}
._7{width:2.330880pt;}
._1a{width:3.285760pt;}
._16{width:4.199467pt;}
._12{width:5.268480pt;}
._17{width:6.174933pt;}
._14{width:7.409493pt;}
._15{width:8.762880pt;}
._13{width:10.141227pt;}
._f{width:11.065173pt;}
._e{width:12.271147pt;}
._18{width:14.505813pt;}
._19{width:15.564800pt;}
._1c{width:16.839467pt;}
._1b{width:18.284587pt;}
._1e{width:19.729920pt;}
._1d{width:21.450240pt;}
._c{width:22.826667pt;}
._b{width:24.549547pt;}
._d{width:25.637333pt;}
._20{width:26.664747pt;}
._9{width:28.035840pt;}
._8{width:28.967680pt;}
._a{width:30.536960pt;}
._10{width:31.816533pt;}
._11{width:32.901120pt;}
._21{width:34.037547pt;}
._23{width:34.941227pt;}
._22{width:36.009173pt;}
._29{width:40.041813pt;}
._28{width:41.708373pt;}
._24{width:55.407787pt;}
._1f{width:57.048747pt;}
._26{width:72.791040pt;}
._25{width:104.939520pt;}
._27{width:850.500480pt;}
.fs3{font-size:42.240000pt;}
.fs2{font-size:48.640000pt;}
.fs0{font-size:53.760000pt;}
.fs1{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.ya1{bottom:2.880000pt;}
.y71{bottom:3.200000pt;}
.ybb{bottom:5.440000pt;}
.y77{bottom:8.640000pt;}
.y9f{bottom:9.280000pt;}
.y9e{bottom:9.600000pt;}
.y9b{bottom:18.240000pt;}
.y82{bottom:18.280000pt;}
.y70{bottom:18.560000pt;}
.yb9{bottom:18.586667pt;}
.y2{bottom:21.760000pt;}
.y9d{bottom:25.000000pt;}
.y9a{bottom:33.600000pt;}
.yb8{bottom:33.626667pt;}
.y81{bottom:33.640000pt;}
.y6f{bottom:33.920000pt;}
.y99{bottom:48.960000pt;}
.yb7{bottom:48.986667pt;}
.y80{bottom:49.000000pt;}
.y6e{bottom:49.306667pt;}
.y1{bottom:58.240000pt;}
.y7e{bottom:65.000000pt;}
.y6c{bottom:65.280000pt;}
.y7d{bottom:80.360000pt;}
.y6b{bottom:80.666667pt;}
.yec{bottom:91.200000pt;}
.yad{bottom:94.400000pt;}
.yd6{bottom:95.040000pt;}
.y38{bottom:96.000000pt;}
.y66{bottom:100.832000pt;}
.y79{bottom:104.672000pt;}
.y37{bottom:109.792000pt;}
.yd5{bottom:110.432000pt;}
.y65{bottom:116.192000pt;}
.y78{bottom:117.472000pt;}
.yeb{bottom:119.072000pt;}
.y36{bottom:123.872000pt;}
.yac{bottom:125.152000pt;}
.yd4{bottom:125.792000pt;}
.y64{bottom:131.552000pt;}
.y76{bottom:133.466667pt;}
.yea{bottom:134.106667pt;}
.yab{bottom:140.506667pt;}
.yd3{bottom:140.826667pt;}
.y63{bottom:146.906667pt;}
.ye9{bottom:149.786667pt;}
.y35{bottom:154.586667pt;}
.y75{bottom:154.906667pt;}
.yaa{bottom:155.866667pt;}
.y62{bottom:161.946667pt;}
.ye8{bottom:164.826667pt;}
.yd2{bottom:168.666667pt;}
.y34{bottom:169.626667pt;}
.y74{bottom:170.906667pt;}
.ya9{bottom:171.226667pt;}
.y61{bottom:176.986667pt;}
.ye7{bottom:180.506667pt;}
.yd1{bottom:184.026667pt;}
.y33{bottom:184.986667pt;}
.ya8{bottom:186.586667pt;}
.y73{bottom:186.906667pt;}
.y60{bottom:192.346667pt;}
.ye6{bottom:195.906667pt;}
.yd0{bottom:199.426667pt;}
.y32{bottom:200.386667pt;}
.ya7{bottom:201.986667pt;}
.y72{bottom:202.946667pt;}
.y5f{bottom:208.066667pt;}
.ye5{bottom:211.266667pt;}
.ycf{bottom:214.786667pt;}
.y31{bottom:215.746667pt;}
.ya6{bottom:217.346667pt;}
.y6a{bottom:218.946667pt;}
.y5e{bottom:223.426667pt;}
.ye4{bottom:226.626667pt;}
.yce{bottom:230.146667pt;}
.y30{bottom:231.106667pt;}
.ya5{bottom:232.706667pt;}
.y5d{bottom:238.786667pt;}
.ye3{bottom:241.986667pt;}
.ycd{bottom:245.506667pt;}
.y2f{bottom:246.466667pt;}
.ya4{bottom:248.066667pt;}
.y6d{bottom:250.306667pt;}
.y5c{bottom:254.146667pt;}
.ye2{bottom:257.346667pt;}
.ycc{bottom:260.546667pt;}
.ya3{bottom:260.866667pt;}
.y2e{bottom:261.826667pt;}
.y5b{bottom:269.506667pt;}
.ye1{bottom:272.386667pt;}
.ycb{bottom:276.226667pt;}
.y2d{bottom:277.186667pt;}
.y5a{bottom:284.866667pt;}
.ye0{bottom:287.453333pt;}
.yca{bottom:291.613333pt;}
.ya2{bottom:292.253333pt;}
.y2c{bottom:292.573333pt;}
.y59{bottom:300.253333pt;}
.ydf{bottom:303.133333pt;}
.yc9{bottom:306.653333pt;}
.y2b{bottom:307.933333pt;}
.y69{bottom:315.293333pt;}
.y58{bottom:315.613333pt;}
.yde{bottom:318.493333pt;}
.yc8{bottom:322.013333pt;}
.y2a{bottom:323.293333pt;}
.ya0{bottom:323.613333pt;}
.y68{bottom:330.333333pt;}
.y57{bottom:330.653333pt;}
.ydd{bottom:333.853333pt;}
.yc7{bottom:337.373333pt;}
.y29{bottom:338.333333pt;}
.y56{bottom:346.013333pt;}
.ydc{bottom:349.213333pt;}
.yc6{bottom:352.733333pt;}
.y28{bottom:353.693333pt;}
.y9c{bottom:354.653333pt;}
.y55{bottom:361.373333pt;}
.ydb{bottom:364.573333pt;}
.yc5{bottom:368.093333pt;}
.y27{bottom:369.053333pt;}
.y54{bottom:376.733333pt;}
.yda{bottom:379.973333pt;}
.yc4{bottom:383.493333pt;}
.y26{bottom:384.453333pt;}
.y53{bottom:392.133333pt;}
.y98{bottom:392.453333pt;}
.yd9{bottom:395.333333pt;}
.yc3{bottom:398.853333pt;}
.y25{bottom:399.813333pt;}
.y52{bottom:407.493333pt;}
.yd8{bottom:410.693333pt;}
.yc2{bottom:414.213333pt;}
.y24{bottom:415.173333pt;}
.y51{bottom:422.853333pt;}
.yd7{bottom:425.093333pt;}
.yc1{bottom:429.573333pt;}
.y23{bottom:430.533333pt;}
.y50{bottom:438.213333pt;}
.yc0{bottom:444.933333pt;}
.y22{bottom:445.893333pt;}
.y4f{bottom:453.573333pt;}
.y97{bottom:457.093333pt;}
.ybf{bottom:460.293333pt;}
.y21{bottom:461.253333pt;}
.y4e{bottom:468.933333pt;}
.y96{bottom:472.453333pt;}
.ybe{bottom:475.680000pt;}
.y20{bottom:476.640000pt;}
.y4d{bottom:484.320000pt;}
.y95{bottom:487.840000pt;}
.ybd{bottom:490.720000pt;}
.y1f{bottom:492.000000pt;}
.y4c{bottom:499.680000pt;}
.ybc{bottom:506.080000pt;}
.y1e{bottom:507.040000pt;}
.y4b{bottom:514.720000pt;}
.y94{bottom:518.880000pt;}
.y1d{bottom:522.400000pt;}
.y4a{bottom:530.080000pt;}
.y93{bottom:534.240000pt;}
.yba{bottom:534.880000pt;}
.y1c{bottom:537.760000pt;}
.y49{bottom:545.440000pt;}
.y92{bottom:549.600000pt;}
.y1b{bottom:553.120000pt;}
.y48{bottom:560.800000pt;}
.y91{bottom:564.960000pt;}
.y1a{bottom:568.506667pt;}
.y47{bottom:576.186667pt;}
.y90{bottom:580.346667pt;}
.y19{bottom:583.866667pt;}
.y46{bottom:591.546667pt;}
.y8f{bottom:595.706667pt;}
.y18{bottom:599.226667pt;}
.y45{bottom:606.906667pt;}
.y8e{bottom:610.746667pt;}
.y17{bottom:614.586667pt;}
.yb6{bottom:617.786667pt;}
.y44{bottom:622.266667pt;}
.y8d{bottom:626.106667pt;}
.y16{bottom:629.626667pt;}
.yb5{bottom:633.146667pt;}
.y43{bottom:637.626667pt;}
.y8c{bottom:641.466667pt;}
.y15{bottom:644.986667pt;}
.y42{bottom:652.986667pt;}
.y8b{bottom:656.826667pt;}
.y41{bottom:668.386667pt;}
.y8a{bottom:672.226667pt;}
.y14{bottom:675.746667pt;}
.yb4{bottom:679.586667pt;}
.y40{bottom:683.426667pt;}
.y89{bottom:687.586667pt;}
.y13{bottom:689.506667pt;}
.yb3{bottom:692.386667pt;}
.y3f{bottom:698.786667pt;}
.y88{bottom:700.386667pt;}
.y12{bottom:703.266667pt;}
.y3e{bottom:714.146667pt;}
.y87{bottom:716.386667pt;}
.y11{bottom:717.026667pt;}
.yb2{bottom:723.746667pt;}
.y3d{bottom:729.506667pt;}
.y10{bottom:730.466667pt;}
.y86{bottom:737.826667pt;}
.yf{bottom:744.866667pt;}
.y85{bottom:753.853333pt;}
.yb1{bottom:755.133333pt;}
.ye{bottom:760.253333pt;}
.y84{bottom:769.853333pt;}
.yd{bottom:775.613333pt;}
.y83{bottom:785.853333pt;}
.yb0{bottom:786.493333pt;}
.y3c{bottom:790.653333pt;}
.yc{bottom:790.973333pt;}
.y7c{bottom:801.853333pt;}
.yb{bottom:806.013333pt;}
.y67{bottom:806.333333pt;}
.yaf{bottom:817.853333pt;}
.ya{bottom:821.373333pt;}
.y3b{bottom:821.693333pt;}
.y7f{bottom:833.213333pt;}
.y9{bottom:836.733333pt;}
.y3a{bottom:837.053333pt;}
.y8{bottom:852.133333pt;}
.y39{bottom:852.453333pt;}
.y7{bottom:867.493333pt;}
.yae{bottom:882.533333pt;}
.y6{bottom:882.853333pt;}
.y7b{bottom:897.893333pt;}
.y5{bottom:898.213333pt;}
.y7a{bottom:913.253333pt;}
.y4{bottom:913.573333pt;}
.y3{bottom:928.933333pt;}
.hd{height:15.360000pt;}
.he{height:15.392000pt;}
.h16{height:17.600000pt;}
.hf{height:20.800000pt;}
.h12{height:30.400000pt;}
.hc{height:30.720000pt;}
.h15{height:30.752000pt;}
.h14{height:36.832000pt;}
.h17{height:41.456250pt;}
.h18{height:42.570000pt;}
.h5{height:46.488750pt;}
.h8{height:47.737500pt;}
.h9{height:48.195000pt;}
.h7{height:49.020000pt;}
.h4{height:52.736250pt;}
.h2{height:52.762500pt;}
.h6{height:54.180000pt;}
.h13{height:61.120000pt;}
.h11{height:61.152000pt;}
.hb{height:61.472000pt;}
.h3{height:62.812500pt;}
.h10{height:92.512000pt;}
.ha{height:92.832000pt;}
.h1{height:982.666667pt;}
.h0{height:982.720000pt;}
.w16{width:67.232000pt;}
.w10{width:84.192000pt;}
.we{width:84.224000pt;}
.w7{width:84.544000pt;}
.w8{width:93.792000pt;}
.w9{width:93.824000pt;}
.wf{width:94.112000pt;}
.w12{width:94.144000pt;}
.wd{width:103.104000pt;}
.w6{width:103.392000pt;}
.w3{width:150.493333pt;}
.wa{width:160.066667pt;}
.wc{width:178.946667pt;}
.w5{width:188.253333pt;}
.wb{width:188.293333pt;}
.w4{width:188.573333pt;}
.w11{width:207.133333pt;}
.w14{width:207.173333pt;}
.w17{width:215.173333pt;}
.w13{width:226.013333pt;}
.w15{width:226.053333pt;}
.w18{width:235.013333pt;}
.w2{width:642.559990pt;}
.w0{width:642.560000pt;}
.w1{width:642.666667pt;}
.x0{left:0.000000pt;}
.x12{left:6.720000pt;}
.x31{left:8.640000pt;}
.x34{left:18.880000pt;}
.x18{left:19.840000pt;}
.x28{left:20.800000pt;}
.x16{left:24.960000pt;}
.x33{left:28.480000pt;}
.x21{left:30.746667pt;}
.x20{left:33.946667pt;}
.x1e{left:35.240000pt;}
.x17{left:36.826667pt;}
.x1c{left:39.066667pt;}
.x1d{left:40.000000pt;}
.x1a{left:41.320000pt;}
.x1f{left:43.200000pt;}
.xe{left:45.471990pt;}
.x30{left:47.066667pt;}
.x1b{left:48.320000pt;}
.x2e{left:50.592000pt;}
.x23{left:53.471990pt;}
.x35{left:59.240000pt;}
.x2a{left:66.911990pt;}
.x3{left:68.191990pt;}
.x14{left:72.666667pt;}
.x41{left:73.986667pt;}
.x11{left:75.234667pt;}
.xf{left:76.191990pt;}
.x3d{left:78.431990pt;}
.x25{left:79.712000pt;}
.x7{left:80.671990pt;}
.xd{left:83.231990pt;}
.x2b{left:85.471990pt;}
.x42{left:87.080000pt;}
.x38{left:89.663990pt;}
.x6{left:96.383990pt;}
.x2d{left:103.394667pt;}
.x2{left:105.983990pt;}
.x39{left:108.223990pt;}
.x36{left:113.026667pt;}
.x9{left:123.903990pt;}
.x3f{left:145.666667pt;}
.xa{left:157.533324pt;}
.x4{left:164.573324pt;}
.x2c{left:178.973324pt;}
.x43{left:186.333324pt;}
.x3a{left:198.173324pt;}
.x26{left:206.493333pt;}
.x13{left:219.653333pt;}
.x24{left:223.813324pt;}
.x10{left:246.533324pt;}
.x8{left:249.093324pt;}
.x2f{left:253.573333pt;}
.x3e{left:264.133324pt;}
.x3b{left:276.640000pt;}
.xc{left:300.319990pt;}
.xb{left:310.239990pt;}
.x1{left:323.039990pt;}
.x5{left:332.986657pt;}
.x32{left:348.346667pt;}
.x40{left:361.466667pt;}
.x3c{left:371.066667pt;}
.x27{left:395.426667pt;}
.x15{left:408.866667pt;}
.x29{left:490.173333pt;}
.x19{left:503.293333pt;}
.x22{left:517.093324pt;}
.x37{left:539.813324pt;}
}




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