
    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_65b7379118c32049523e74d5.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_ad34b4901846c6be45d73b1f.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_a62eb8e57e9d7037d12bbbd4.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_f8fa8fb9a5159524c0d34069.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_359d01edf130577d36b3965b.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.035156;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_f534ef12a37e56b153830a92.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.065430;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_5ee712907c8062dd50a1de5f.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.064941;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_7d965b85ebad7cd36c6f8f34.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.690918;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_6e19acb9c72a4a4649972a8a.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.435059;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_60b41189443c63d049e5e803.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_4b681050731968e0baf9962f.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.938965;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:ffc;src:url('chunks/assets/font_c0f3bac021ad0078c30965bf.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.061035;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:ffd;src:url('chunks/assets/font_e1f7a7aae2c5451582acb37e.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.065430;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:ffe;src:url('chunks/assets/font_398bb0083ddb704e468c2f4f.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.783691;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:fff;src:url('chunks/assets/font_328e79f779d15fef7af97d0b.woff2')format("woff");}.fff{font-family:fff;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:ff10;src:url('chunks/assets/font_7f5466149016915a268fa1ea.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.708008;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:-67.680000px;}
.v0{vertical-align:0.000000px;}
.ls11{letter-spacing:-0.774000px;}
.ls1e{letter-spacing:-0.666000px;}
.ls21{letter-spacing:-0.540000px;}
.ls22{letter-spacing:-0.460200px;}
.lsd{letter-spacing:-0.354000px;}
.ls9{letter-spacing:-0.270600px;}
.ls7{letter-spacing:-0.270000px;}
.lse{letter-spacing:-0.206400px;}
.ls12{letter-spacing:-0.053280px;}
.ls3{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.022320px;}
.lsc{letter-spacing:0.053280px;}
.lsb{letter-spacing:0.106800px;}
.ls15{letter-spacing:0.153600px;}
.ls2{letter-spacing:0.180000px;}
.ls5{letter-spacing:0.224400px;}
.ls4{letter-spacing:0.241800px;}
.ls10{letter-spacing:0.259800px;}
.ls18{letter-spacing:0.259920px;}
.ls1b{letter-spacing:0.298800px;}
.ls20{letter-spacing:0.306600px;}
.ls6{letter-spacing:0.324000px;}
.ls1{letter-spacing:0.360000px;}
.ls8{letter-spacing:0.708000px;}
.ls1f{letter-spacing:1.080000px;}
.ls1c{letter-spacing:6.660000px;}
.ls24{letter-spacing:8.820000px;}
.ls23{letter-spacing:19.620000px;}
.ls1a{letter-spacing:21.060000px;}
.ls17{letter-spacing:21.546720px;}
.ls19{letter-spacing:23.220000px;}
.ls25{letter-spacing:28.260000px;}
.ls26{letter-spacing:32.580000px;}
.lsf{letter-spacing:44.562720px;}
.lsa{letter-spacing:44.586720px;}
.ls16{letter-spacing:46.002720px;}
.ls1d{letter-spacing:49.860000px;}
.ls27{letter-spacing:55.620000px;}
.ls14{letter-spacing:778.656000px;}
.ls13{letter-spacing:835.536000px;}
.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;}
}
.ws9{word-spacing:-59.760000px;}
.ws0{word-spacing:-15.300000px;}
.wsf{word-spacing:-15.238800px;}
.wsb{word-spacing:-15.199800px;}
.wsd{word-spacing:-15.093600px;}
.ws8{word-spacing:-15.046800px;}
.wsc{word-spacing:-14.993280px;}
.ws4{word-spacing:-14.940000px;}
.wsa{word-spacing:-14.586000px;}
.ws10{word-spacing:-14.479800px;}
.wse{word-spacing:-14.274000px;}
.ws1{word-spacing:-13.147200px;}
.ws5{word-spacing:-12.060000px;}
.ws3{word-spacing:-10.854600px;}
.ws2{word-spacing:-10.612800px;}
.ws6{word-spacing:-10.342200px;}
.ws7{word-spacing:0.000000px;}
._0{margin-left:-46.800000px;}
._46{margin-left:-9.153360px;}
._1d{margin-left:-3.682080px;}
._6{margin-left:-2.569680px;}
._3{margin-left:-1.457280px;}
._1{width:1.015920px;}
._2{width:2.441760px;}
._12{width:3.542640px;}
._18{width:5.182320px;}
._25{width:6.384960px;}
._7{width:7.410240px;}
._16{width:9.382320px;}
._17{width:10.600560px;}
._13{width:12.011760px;}
._1c{width:13.266720px;}
._8{width:14.342400px;}
._9{width:15.537600px;}
._15{width:16.613280px;}
._4{width:17.629200px;}
._5{width:18.708960px;}
._14{width:20.063040px;}
._27{width:21.596400px;}
._e{width:22.649040px;}
._1b{width:24.382080px;}
._34{width:25.637040px;}
._c{width:26.892000px;}
._b{width:27.967680px;}
._2b{width:29.089440px;}
._a{width:30.119040px;}
._d{width:31.493520px;}
._f{width:33.346080px;}
._32{width:35.198640px;}
._3c{width:36.835200px;}
._19{width:38.485440px;}
._10{width:39.800160px;}
._11{width:40.935600px;}
._23{width:42.608880px;}
._24{width:43.804080px;}
._22{width:45.178560px;}
._2f{width:46.732320px;}
._2c{width:47.808000px;}
._33{width:49.182480px;}
._1f{width:50.377680px;}
._1e{width:51.692400px;}
._2e{width:53.724240px;}
._35{width:55.696320px;}
._26{width:57.070800px;}
._45{width:58.086720px;}
._39{width:59.346000px;}
._3e{width:63.033120px;}
._3d{width:64.839600px;}
._36{width:66.154320px;}
._37{width:67.289760px;}
._43{width:68.903280px;}
._2d{width:69.978960px;}
._4b{width:71.712000px;}
._3a{width:73.811520px;}
._44{width:75.058560px;}
._3f{width:76.373280px;}
._38{width:78.100560px;}
._1a{width:79.483680px;}
._21{width:81.296640px;}
._20{width:82.349280px;}
._42{width:85.397040px;}
._28{width:87.667920px;}
._2a{width:90.416880px;}
._29{width:91.552320px;}
._41{width:101.054160px;}
._40{width:102.189600px;}
._4c{width:109.164000px;}
._49{width:112.314960px;}
._48{width:114.519120px;}
._47{width:115.795920px;}
._30{width:125.555760px;}
._31{width:126.631440px;}
._3b{width:136.380240px;}
._4a{width:196.229280px;}
.fc6{color:rgb(5,99,193);}
.fc5{color:transparent;}
.fc4{color:rgb(205,29,142);}
.fc3{color:rgb(28,78,123);}
.fc2{color:rgb(112,48,160);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs0{font-size:2.880000px;}
.fs7{font-size:5.760000px;}
.fs9{font-size:23.760000px;}
.fs8{font-size:36.000000px;}
.fs4{font-size:41.760000px;}
.fs2{font-size:48.240000px;}
.fs6{font-size:54.000000px;}
.fs3{font-size:59.760000px;}
.fs5{font-size:66.240000px;}
.fsa{font-size:72.000000px;}
.fs1{font-size:77.760000px;}
.y5c{bottom:-34.560000px;}
.y5b{bottom:-22.500000px;}
.y7{bottom:-16.590000px;}
.y5a{bottom:-10.620000px;}
.y6{bottom:-4.530000px;}
.y0{bottom:0.000000px;}
.y59{bottom:1.440000px;}
.y3f{bottom:3.240000px;}
.yaf{bottom:3.600000px;}
.y41{bottom:4.680000px;}
.y5{bottom:8.640000px;}
.ybb{bottom:12.060000px;}
.yb3{bottom:12.240000px;}
.ybf{bottom:12.270000px;}
.y57{bottom:16.200000px;}
.y3e{bottom:20.700000px;}
.yb1{bottom:20.880000px;}
.ybd{bottom:20.910000px;}
.y5e{bottom:23.040000px;}
.yb9{bottom:29.520000px;}
.ybe{bottom:29.550000px;}
.yb8{bottom:38.160000px;}
.yc0{bottom:38.190000px;}
.y3d{bottom:38.385000px;}
.y56{bottom:43.200000px;}
.y3c{bottom:56.025000px;}
.y3{bottom:58.140000px;}
.y3b{bottom:73.485000px;}
.y55{bottom:75.960000px;}
.y2{bottom:80.100000px;}
.y3a{bottom:91.125000px;}
.y54{bottom:97.380000px;}
.y39{bottom:108.765000px;}
.y53{bottom:110.160000px;}
.y5d{bottom:113.580000px;}
.y98{bottom:117.360000px;}
.y38{bottom:126.405000px;}
.ye0{bottom:127.080000px;}
.y9e{bottom:134.280000px;}
.y97{bottom:134.640000px;}
.y37{bottom:143.865000px;}
.ydf{bottom:144.360000px;}
.y96{bottom:151.920000px;}
.y36{bottom:161.505000px;}
.yde{bottom:161.640000px;}
.y95{bottom:169.200000px;}
.y26{bottom:169.245000px;}
.ydd{bottom:178.920000px;}
.y35{bottom:179.145000px;}
.y50{bottom:180.360000px;}
.y94{bottom:186.300000px;}
.y25{bottom:187.425000px;}
.ydc{bottom:196.200000px;}
.y34{bottom:196.605000px;}
.y4f{bottom:197.640000px;}
.y93{bottom:203.580000px;}
.y24{bottom:205.605000px;}
.ydb{bottom:213.330000px;}
.y33{bottom:214.245000px;}
.y4e{bottom:214.950000px;}
.yab{bottom:220.530000px;}
.y92{bottom:220.890000px;}
.y23{bottom:223.785000px;}
.yda{bottom:230.610000px;}
.y32{bottom:231.885000px;}
.y4d{bottom:232.230000px;}
.y91{bottom:238.170000px;}
.y22{bottom:239.265000px;}
.yd9{bottom:247.890000px;}
.y4c{bottom:249.330000px;}
.y31{bottom:249.345000px;}
.y21{bottom:253.305000px;}
.ya4{bottom:255.090000px;}
.y90{bottom:255.450000px;}
.yd8{bottom:265.170000px;}
.y4b{bottom:266.610000px;}
.y30{bottom:267.015000px;}
.y20{bottom:267.555000px;}
.ya3{bottom:272.370000px;}
.y8f{bottom:272.730000px;}
.y1f{bottom:281.595000px;}
.yd7{bottom:282.450000px;}
.y4a{bottom:283.890000px;}
.y2f{bottom:284.655000px;}
.y8e{bottom:289.830000px;}
.y1e{bottom:295.635000px;}
.yd6{bottom:299.730000px;}
.y49{bottom:301.170000px;}
.y2e{bottom:302.295000px;}
.ya9{bottom:306.750000px;}
.y8d{bottom:307.110000px;}
.y1d{bottom:309.315000px;}
.yd5{bottom:316.830000px;}
.y48{bottom:318.450000px;}
.y2d{bottom:319.755000px;}
.y1c{bottom:323.175000px;}
.ya8{bottom:324.030000px;}
.y8c{bottom:324.390000px;}
.yd4{bottom:334.110000px;}
.y47{bottom:335.550000px;}
.y1b{bottom:337.035000px;}
.y2c{bottom:337.395000px;}
.ye4{bottom:341.310000px;}
.y8b{bottom:341.670000px;}
.y1a{bottom:351.075000px;}
.yd3{bottom:351.390000px;}
.y46{bottom:352.830000px;}
.y2b{bottom:355.035000px;}
.ye3{bottom:358.590000px;}
.y8a{bottom:358.950000px;}
.y19{bottom:365.115000px;}
.yd2{bottom:368.670000px;}
.y45{bottom:370.110000px;}
.y2a{bottom:372.495000px;}
.y89{bottom:376.230000px;}
.y18{bottom:379.155000px;}
.yd1{bottom:385.950000px;}
.y44{bottom:387.030000px;}
.y51{bottom:387.390000px;}
.y29{bottom:390.135000px;}
.y88{bottom:393.330000px;}
.y17{bottom:393.735000px;}
.yd0{bottom:403.230000px;}
.y43{bottom:404.310000px;}
.y28{bottom:407.775000px;}
.y9d{bottom:410.250000px;}
.y87{bottom:410.610000px;}
.y16{bottom:411.735000px;}
.y42{bottom:418.710000px;}
.ycf{bottom:420.330000px;}
.y40{bottom:420.690000px;}
.y14{bottom:426.810000px;}
.ya2{bottom:427.530000px;}
.y86{bottom:427.890000px;}
.y27{bottom:428.475000px;}
.y15{bottom:429.015000px;}
.yce{bottom:437.610000px;}
.ye2{bottom:444.810000px;}
.y85{bottom:445.170000px;}
.ycd{bottom:454.935000px;}
.y84{bottom:462.495000px;}
.ycc{bottom:472.215000px;}
.y83{bottom:479.595000px;}
.ycb{bottom:489.495000px;}
.yaa{bottom:496.515000px;}
.y82{bottom:496.875000px;}
.yca{bottom:506.595000px;}
.y81{bottom:514.155000px;}
.yc9{bottom:523.875000px;}
.ya7{bottom:531.075000px;}
.y80{bottom:531.435000px;}
.yc8{bottom:541.155000px;}
.y7f{bottom:548.715000px;}
.yc7{bottom:558.435000px;}
.ye6{bottom:563.295000px;}
.y9c{bottom:565.635000px;}
.y7e{bottom:565.995000px;}
.yc6{bottom:575.715000px;}
.ye5{bottom:580.575000px;}
.ya1{bottom:582.735000px;}
.y7d{bottom:583.095000px;}
.yc5{bottom:592.995000px;}
.ya0{bottom:600.015000px;}
.y7c{bottom:600.375000px;}
.yc4{bottom:610.095000px;}
.y7b{bottom:617.655000px;}
.yc3{bottom:627.375000px;}
.ya6{bottom:634.575000px;}
.y7a{bottom:634.935000px;}
.yc2{bottom:644.655000px;}
.y79{bottom:652.215000px;}
.yc1{bottom:661.935000px;}
.y78{bottom:669.495000px;}
.ybc{bottom:676.335000px;}
.y9b{bottom:686.265000px;}
.y77{bottom:686.625000px;}
.y9a{bottom:703.545000px;}
.y76{bottom:703.905000px;}
.y99{bottom:720.825000px;}
.y75{bottom:721.185000px;}
.yba{bottom:728.925000px;}
.y74{bottom:738.465000px;}
.y73{bottom:755.745000px;}
.yb7{bottom:764.025000px;}
.ye1{bottom:772.485000px;}
.y72{bottom:772.845000px;}
.y71{bottom:790.125000px;}
.y70{bottom:807.405000px;}
.yb6{bottom:816.585000px;}
.y6f{bottom:824.685000px;}
.y6e{bottom:841.965000px;}
.yb5{bottom:855.105000px;}
.y6d{bottom:859.245000px;}
.y13{bottom:874.725000px;}
.y9f{bottom:875.985000px;}
.y6c{bottom:876.345000px;}
.yb4{bottom:887.145000px;}
.y6b{bottom:893.625000px;}
.y12{bottom:896.865000px;}
.y6a{bottom:910.905000px;}
.y11{bottom:914.145000px;}
.yb2{bottom:922.290000px;}
.y69{bottom:928.230000px;}
.y10{bottom:933.270000px;}
.y68{bottom:945.510000px;}
.yf{bottom:952.710000px;}
.yb0{bottom:957.570000px;}
.y67{bottom:962.790000px;}
.ye{bottom:975.030000px;}
.y66{bottom:979.890000px;}
.yae{bottom:992.850000px;}
.y65{bottom:997.170000px;}
.yd{bottom:998.610000px;}
.y52{bottom:1006.710000px;}
.y64{bottom:1014.450000px;}
.yc{bottom:1022.370000px;}
.yad{bottom:1031.370000px;}
.y63{bottom:1031.730000px;}
.yb{bottom:1046.310000px;}
.yac{bottom:1048.650000px;}
.y62{bottom:1049.010000px;}
.y61{bottom:1066.290000px;}
.ya{bottom:1070.070000px;}
.y60{bottom:1083.390000px;}
.y9{bottom:1093.830000px;}
.ya5{bottom:1100.310000px;}
.y5f{bottom:1100.670000px;}
.y8{bottom:1117.590000px;}
.y58{bottom:1121.370000px;}
.y4{bottom:1152.900000px;}
.y1{bottom:1191.240000px;}
.h11{height:5.653125px;}
.h12{height:5.805000px;}
.h13{height:5.920372px;}
.h10{height:6.120000px;}
.h1b{height:11.160000px;}
.h21{height:17.280000px;}
.h4{height:22.140000px;}
.h18{height:23.945625px;}
.h1d{height:34.200000px;}
.h25{height:34.380000px;}
.h23{height:34.416000px;}
.h22{height:34.560000px;}
.h17{height:36.281250px;}
.h1f{height:40.655391px;}
.hd{height:40.843828px;}
.h6{height:40.985156px;}
.h1c{height:42.086250px;}
.h15{height:43.215117px;}
.hf{height:45.720703px;}
.h1e{height:47.321367px;}
.h3{height:47.980898px;}
.h1a{height:48.616875px;}
.he{height:50.218594px;}
.hc{height:50.597578px;}
.h26{height:51.696000px;}
.h24{height:51.840000px;}
.h27{height:58.621992px;}
.ha{height:58.651172px;}
.h5{height:60.226875px;}
.h14{height:61.423863px;}
.h20{height:62.211094px;}
.h9{height:66.757500px;}
.h19{height:72.562500px;}
.h2{height:77.342344px;}
.h8{height:78.367500px;}
.h7{height:79.620469px;}
.h16{height:125.820000px;}
.hb{height:442.695000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w17{width:45.576000px;}
.w12{width:46.296000px;}
.w16{width:107.100000px;}
.w11{width:107.460000px;}
.w18{width:131.400000px;}
.w13{width:132.120000px;}
.we{width:147.780000px;}
.wb{width:148.140000px;}
.w19{width:157.350000px;}
.w14{width:158.070000px;}
.w9{width:206.130000px;}
.w4{width:212.115000px;}
.w6{width:212.655000px;}
.w1a{width:231.330000px;}
.w15{width:231.690000px;}
.wf{width:240.915000px;}
.wc{width:241.815000px;}
.w10{width:283.710000px;}
.wd{width:284.070000px;}
.w3{width:417.885000px;}
.w5{width:515.955000px;}
.w7{width:516.495000px;}
.w8{width:625.785000px;}
.wa{width:719.430000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x8{left:8.100000px;}
.x34{left:9.360000px;}
.x4{left:10.800000px;}
.x37{left:12.600000px;}
.x28{left:15.705000px;}
.x21{left:17.640000px;}
.x25{left:18.900000px;}
.xa{left:20.700000px;}
.x1f{left:22.005000px;}
.x2f{left:23.220000px;}
.x32{left:24.300000px;}
.x1d{left:26.820000px;}
.x27{left:28.080000px;}
.x2d{left:29.340000px;}
.x2a{left:36.000000px;}
.x23{left:37.260000px;}
.x19{left:39.060000px;}
.x31{left:42.300000px;}
.x33{left:46.080000px;}
.xe{left:52.200000px;}
.x1e{left:53.454000px;}
.x3{left:54.540000px;}
.x36{left:57.810000px;}
.x11{left:63.540000px;}
.x26{left:65.160000px;}
.x20{left:67.005000px;}
.x1c{left:77.220000px;}
.x1b{left:80.325000px;}
.x24{left:81.765000px;}
.x35{left:86.985000px;}
.x29{left:91.260000px;}
.x13{left:95.976000px;}
.x38{left:99.945000px;}
.x12{left:102.990000px;}
.x2{left:108.035987px;}
.x18{left:109.656000px;}
.x22{left:115.245000px;}
.x16{left:135.035987px;}
.xc{left:151.950000px;}
.xf{left:157.545000px;}
.x17{left:162.029987px;}
.x5{left:208.875000px;}
.x2b{left:216.210000px;}
.x1a{left:257.790000px;}
.x2c{left:262.515000px;}
.x9{left:267.195000px;}
.xd{left:312.915000px;}
.x10{left:345.855000px;}
.x2e{left:394.635000px;}
.x7{left:446.504987px;}
.x6{left:466.304987px;}
.xb{left:473.144987px;}
.x14{left:500.144987px;}
.x15{left:527.144987px;}
.x30{left:552.705000px;}
.x1{left:785.129987px;}
@media print{
.v1{vertical-align:-60.160000pt;}
.v0{vertical-align:0.000000pt;}
.ls11{letter-spacing:-0.688000pt;}
.ls1e{letter-spacing:-0.592000pt;}
.ls21{letter-spacing:-0.480000pt;}
.ls22{letter-spacing:-0.409067pt;}
.lsd{letter-spacing:-0.314667pt;}
.ls9{letter-spacing:-0.240533pt;}
.ls7{letter-spacing:-0.240000pt;}
.lse{letter-spacing:-0.183467pt;}
.ls12{letter-spacing:-0.047360pt;}
.ls3{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.019840pt;}
.lsc{letter-spacing:0.047360pt;}
.lsb{letter-spacing:0.094933pt;}
.ls15{letter-spacing:0.136533pt;}
.ls2{letter-spacing:0.160000pt;}
.ls5{letter-spacing:0.199467pt;}
.ls4{letter-spacing:0.214933pt;}
.ls10{letter-spacing:0.230933pt;}
.ls18{letter-spacing:0.231040pt;}
.ls1b{letter-spacing:0.265600pt;}
.ls20{letter-spacing:0.272533pt;}
.ls6{letter-spacing:0.288000pt;}
.ls1{letter-spacing:0.320000pt;}
.ls8{letter-spacing:0.629333pt;}
.ls1f{letter-spacing:0.960000pt;}
.ls1c{letter-spacing:5.920000pt;}
.ls24{letter-spacing:7.840000pt;}
.ls23{letter-spacing:17.440000pt;}
.ls1a{letter-spacing:18.720000pt;}
.ls17{letter-spacing:19.152640pt;}
.ls19{letter-spacing:20.640000pt;}
.ls25{letter-spacing:25.120000pt;}
.ls26{letter-spacing:28.960000pt;}
.lsf{letter-spacing:39.611307pt;}
.lsa{letter-spacing:39.632640pt;}
.ls16{letter-spacing:40.891307pt;}
.ls1d{letter-spacing:44.320000pt;}
.ls27{letter-spacing:49.440000pt;}
.ls14{letter-spacing:692.138667pt;}
.ls13{letter-spacing:742.698667pt;}
.ws9{word-spacing:-53.120000pt;}
.ws0{word-spacing:-13.600000pt;}
.wsf{word-spacing:-13.545600pt;}
.wsb{word-spacing:-13.510933pt;}
.wsd{word-spacing:-13.416533pt;}
.ws8{word-spacing:-13.374933pt;}
.wsc{word-spacing:-13.327360pt;}
.ws4{word-spacing:-13.280000pt;}
.wsa{word-spacing:-12.965333pt;}
.ws10{word-spacing:-12.870933pt;}
.wse{word-spacing:-12.688000pt;}
.ws1{word-spacing:-11.686400pt;}
.ws5{word-spacing:-10.720000pt;}
.ws3{word-spacing:-9.648533pt;}
.ws2{word-spacing:-9.433600pt;}
.ws6{word-spacing:-9.193067pt;}
.ws7{word-spacing:0.000000pt;}
._0{margin-left:-41.600000pt;}
._46{margin-left:-8.136320pt;}
._1d{margin-left:-3.272960pt;}
._6{margin-left:-2.284160pt;}
._3{margin-left:-1.295360pt;}
._1{width:0.903040pt;}
._2{width:2.170453pt;}
._12{width:3.149013pt;}
._18{width:4.606507pt;}
._25{width:5.675520pt;}
._7{width:6.586880pt;}
._16{width:8.339840pt;}
._17{width:9.422720pt;}
._13{width:10.677120pt;}
._1c{width:11.792640pt;}
._8{width:12.748800pt;}
._9{width:13.811200pt;}
._15{width:14.767360pt;}
._4{width:15.670400pt;}
._5{width:16.630187pt;}
._14{width:17.833813pt;}
._27{width:19.196800pt;}
._e{width:20.132480pt;}
._1b{width:21.672960pt;}
._34{width:22.788480pt;}
._c{width:23.904000pt;}
._b{width:24.860160pt;}
._2b{width:25.857280pt;}
._a{width:26.772480pt;}
._d{width:27.994240pt;}
._f{width:29.640960pt;}
._32{width:31.287680pt;}
._3c{width:32.742400pt;}
._19{width:34.209280pt;}
._10{width:35.377920pt;}
._11{width:36.387200pt;}
._23{width:37.874560pt;}
._24{width:38.936960pt;}
._22{width:40.158720pt;}
._2f{width:41.539840pt;}
._2c{width:42.496000pt;}
._33{width:43.717760pt;}
._1f{width:44.780160pt;}
._1e{width:45.948800pt;}
._2e{width:47.754880pt;}
._35{width:49.507840pt;}
._26{width:50.729600pt;}
._45{width:51.632640pt;}
._39{width:52.752000pt;}
._3e{width:56.029440pt;}
._3d{width:57.635200pt;}
._36{width:58.803840pt;}
._37{width:59.813120pt;}
._43{width:61.247360pt;}
._2d{width:62.203520pt;}
._4b{width:63.744000pt;}
._3a{width:65.610240pt;}
._44{width:66.718720pt;}
._3f{width:67.887360pt;}
._38{width:69.422720pt;}
._1a{width:70.652160pt;}
._21{width:72.263680pt;}
._20{width:73.199360pt;}
._42{width:75.908480pt;}
._28{width:77.927040pt;}
._2a{width:80.370560pt;}
._29{width:81.379840pt;}
._41{width:89.825920pt;}
._40{width:90.835200pt;}
._4c{width:97.034667pt;}
._49{width:99.835520pt;}
._48{width:101.794773pt;}
._47{width:102.929707pt;}
._30{width:111.605120pt;}
._31{width:112.561280pt;}
._3b{width:121.226880pt;}
._4a{width:174.426027pt;}
.fs0{font-size:2.560000pt;}
.fs7{font-size:5.120000pt;}
.fs9{font-size:21.120000pt;}
.fs8{font-size:32.000000pt;}
.fs4{font-size:37.120000pt;}
.fs2{font-size:42.880000pt;}
.fs6{font-size:48.000000pt;}
.fs3{font-size:53.120000pt;}
.fs5{font-size:58.880000pt;}
.fsa{font-size:64.000000pt;}
.fs1{font-size:69.120000pt;}
.y5c{bottom:-30.720000pt;}
.y5b{bottom:-20.000000pt;}
.y7{bottom:-14.746667pt;}
.y5a{bottom:-9.440000pt;}
.y6{bottom:-4.026667pt;}
.y0{bottom:0.000000pt;}
.y59{bottom:1.280000pt;}
.y3f{bottom:2.880000pt;}
.yaf{bottom:3.200000pt;}
.y41{bottom:4.160000pt;}
.y5{bottom:7.680000pt;}
.ybb{bottom:10.720000pt;}
.yb3{bottom:10.880000pt;}
.ybf{bottom:10.906667pt;}
.y57{bottom:14.400000pt;}
.y3e{bottom:18.400000pt;}
.yb1{bottom:18.560000pt;}
.ybd{bottom:18.586667pt;}
.y5e{bottom:20.480000pt;}
.yb9{bottom:26.240000pt;}
.ybe{bottom:26.266667pt;}
.yb8{bottom:33.920000pt;}
.yc0{bottom:33.946667pt;}
.y3d{bottom:34.120000pt;}
.y56{bottom:38.400000pt;}
.y3c{bottom:49.800000pt;}
.y3{bottom:51.680000pt;}
.y3b{bottom:65.320000pt;}
.y55{bottom:67.520000pt;}
.y2{bottom:71.200000pt;}
.y3a{bottom:81.000000pt;}
.y54{bottom:86.560000pt;}
.y39{bottom:96.680000pt;}
.y53{bottom:97.920000pt;}
.y5d{bottom:100.960000pt;}
.y98{bottom:104.320000pt;}
.y38{bottom:112.360000pt;}
.ye0{bottom:112.960000pt;}
.y9e{bottom:119.360000pt;}
.y97{bottom:119.680000pt;}
.y37{bottom:127.880000pt;}
.ydf{bottom:128.320000pt;}
.y96{bottom:135.040000pt;}
.y36{bottom:143.560000pt;}
.yde{bottom:143.680000pt;}
.y95{bottom:150.400000pt;}
.y26{bottom:150.440000pt;}
.ydd{bottom:159.040000pt;}
.y35{bottom:159.240000pt;}
.y50{bottom:160.320000pt;}
.y94{bottom:165.600000pt;}
.y25{bottom:166.600000pt;}
.ydc{bottom:174.400000pt;}
.y34{bottom:174.760000pt;}
.y4f{bottom:175.680000pt;}
.y93{bottom:180.960000pt;}
.y24{bottom:182.760000pt;}
.ydb{bottom:189.626667pt;}
.y33{bottom:190.440000pt;}
.y4e{bottom:191.066667pt;}
.yab{bottom:196.026667pt;}
.y92{bottom:196.346667pt;}
.y23{bottom:198.920000pt;}
.yda{bottom:204.986667pt;}
.y32{bottom:206.120000pt;}
.y4d{bottom:206.426667pt;}
.y91{bottom:211.706667pt;}
.y22{bottom:212.680000pt;}
.yd9{bottom:220.346667pt;}
.y4c{bottom:221.626667pt;}
.y31{bottom:221.640000pt;}
.y21{bottom:225.160000pt;}
.ya4{bottom:226.746667pt;}
.y90{bottom:227.066667pt;}
.yd8{bottom:235.706667pt;}
.y4b{bottom:236.986667pt;}
.y30{bottom:237.346667pt;}
.y20{bottom:237.826667pt;}
.ya3{bottom:242.106667pt;}
.y8f{bottom:242.426667pt;}
.y1f{bottom:250.306667pt;}
.yd7{bottom:251.066667pt;}
.y4a{bottom:252.346667pt;}
.y2f{bottom:253.026667pt;}
.y8e{bottom:257.626667pt;}
.y1e{bottom:262.786667pt;}
.yd6{bottom:266.426667pt;}
.y49{bottom:267.706667pt;}
.y2e{bottom:268.706667pt;}
.ya9{bottom:272.666667pt;}
.y8d{bottom:272.986667pt;}
.y1d{bottom:274.946667pt;}
.yd5{bottom:281.626667pt;}
.y48{bottom:283.066667pt;}
.y2d{bottom:284.226667pt;}
.y1c{bottom:287.266667pt;}
.ya8{bottom:288.026667pt;}
.y8c{bottom:288.346667pt;}
.yd4{bottom:296.986667pt;}
.y47{bottom:298.266667pt;}
.y1b{bottom:299.586667pt;}
.y2c{bottom:299.906667pt;}
.ye4{bottom:303.386667pt;}
.y8b{bottom:303.706667pt;}
.y1a{bottom:312.066667pt;}
.yd3{bottom:312.346667pt;}
.y46{bottom:313.626667pt;}
.y2b{bottom:315.586667pt;}
.ye3{bottom:318.746667pt;}
.y8a{bottom:319.066667pt;}
.y19{bottom:324.546667pt;}
.yd2{bottom:327.706667pt;}
.y45{bottom:328.986667pt;}
.y2a{bottom:331.106667pt;}
.y89{bottom:334.426667pt;}
.y18{bottom:337.026667pt;}
.yd1{bottom:343.066667pt;}
.y44{bottom:344.026667pt;}
.y51{bottom:344.346667pt;}
.y29{bottom:346.786667pt;}
.y88{bottom:349.626667pt;}
.y17{bottom:349.986667pt;}
.yd0{bottom:358.426667pt;}
.y43{bottom:359.386667pt;}
.y28{bottom:362.466667pt;}
.y9d{bottom:364.666667pt;}
.y87{bottom:364.986667pt;}
.y16{bottom:365.986667pt;}
.y42{bottom:372.186667pt;}
.ycf{bottom:373.626667pt;}
.y40{bottom:373.946667pt;}
.y14{bottom:379.386667pt;}
.ya2{bottom:380.026667pt;}
.y86{bottom:380.346667pt;}
.y27{bottom:380.866667pt;}
.y15{bottom:381.346667pt;}
.yce{bottom:388.986667pt;}
.ye2{bottom:395.386667pt;}
.y85{bottom:395.706667pt;}
.ycd{bottom:404.386667pt;}
.y84{bottom:411.106667pt;}
.ycc{bottom:419.746667pt;}
.y83{bottom:426.306667pt;}
.ycb{bottom:435.106667pt;}
.yaa{bottom:441.346667pt;}
.y82{bottom:441.666667pt;}
.yca{bottom:450.306667pt;}
.y81{bottom:457.026667pt;}
.yc9{bottom:465.666667pt;}
.ya7{bottom:472.066667pt;}
.y80{bottom:472.386667pt;}
.yc8{bottom:481.026667pt;}
.y7f{bottom:487.746667pt;}
.yc7{bottom:496.386667pt;}
.ye6{bottom:500.706667pt;}
.y9c{bottom:502.786667pt;}
.y7e{bottom:503.106667pt;}
.yc6{bottom:511.746667pt;}
.ye5{bottom:516.066667pt;}
.ya1{bottom:517.986667pt;}
.y7d{bottom:518.306667pt;}
.yc5{bottom:527.106667pt;}
.ya0{bottom:533.346667pt;}
.y7c{bottom:533.666667pt;}
.yc4{bottom:542.306667pt;}
.y7b{bottom:549.026667pt;}
.yc3{bottom:557.666667pt;}
.ya6{bottom:564.066667pt;}
.y7a{bottom:564.386667pt;}
.yc2{bottom:573.026667pt;}
.y79{bottom:579.746667pt;}
.yc1{bottom:588.386667pt;}
.y78{bottom:595.106667pt;}
.ybc{bottom:601.186667pt;}
.y9b{bottom:610.013333pt;}
.y77{bottom:610.333333pt;}
.y9a{bottom:625.373333pt;}
.y76{bottom:625.693333pt;}
.y99{bottom:640.733333pt;}
.y75{bottom:641.053333pt;}
.yba{bottom:647.933333pt;}
.y74{bottom:656.413333pt;}
.y73{bottom:671.773333pt;}
.yb7{bottom:679.133333pt;}
.ye1{bottom:686.653333pt;}
.y72{bottom:686.973333pt;}
.y71{bottom:702.333333pt;}
.y70{bottom:717.693333pt;}
.yb6{bottom:725.853333pt;}
.y6f{bottom:733.053333pt;}
.y6e{bottom:748.413333pt;}
.yb5{bottom:760.093333pt;}
.y6d{bottom:763.773333pt;}
.y13{bottom:777.533333pt;}
.y9f{bottom:778.653333pt;}
.y6c{bottom:778.973333pt;}
.yb4{bottom:788.573333pt;}
.y6b{bottom:794.333333pt;}
.y12{bottom:797.213333pt;}
.y6a{bottom:809.693333pt;}
.y11{bottom:812.573333pt;}
.yb2{bottom:819.813333pt;}
.y69{bottom:825.093333pt;}
.y10{bottom:829.573333pt;}
.y68{bottom:840.453333pt;}
.yf{bottom:846.853333pt;}
.yb0{bottom:851.173333pt;}
.y67{bottom:855.813333pt;}
.ye{bottom:866.693333pt;}
.y66{bottom:871.013333pt;}
.yae{bottom:882.533333pt;}
.y65{bottom:886.373333pt;}
.yd{bottom:887.653333pt;}
.y52{bottom:894.853333pt;}
.y64{bottom:901.733333pt;}
.yc{bottom:908.773333pt;}
.yad{bottom:916.773333pt;}
.y63{bottom:917.093333pt;}
.yb{bottom:930.053333pt;}
.yac{bottom:932.133333pt;}
.y62{bottom:932.453333pt;}
.y61{bottom:947.813333pt;}
.ya{bottom:951.173333pt;}
.y60{bottom:963.013333pt;}
.y9{bottom:972.293333pt;}
.ya5{bottom:978.053333pt;}
.y5f{bottom:978.373333pt;}
.y8{bottom:993.413333pt;}
.y58{bottom:996.773333pt;}
.y4{bottom:1024.800000pt;}
.y1{bottom:1058.880000pt;}
.h11{height:5.025000pt;}
.h12{height:5.160000pt;}
.h13{height:5.262553pt;}
.h10{height:5.440000pt;}
.h1b{height:9.920000pt;}
.h21{height:15.360000pt;}
.h4{height:19.680000pt;}
.h18{height:21.285000pt;}
.h1d{height:30.400000pt;}
.h25{height:30.560000pt;}
.h23{height:30.592000pt;}
.h22{height:30.720000pt;}
.h17{height:32.250000pt;}
.h1f{height:36.138125pt;}
.hd{height:36.305625pt;}
.h6{height:36.431250pt;}
.h1c{height:37.410000pt;}
.h15{height:38.413438pt;}
.hf{height:40.640625pt;}
.h1e{height:42.063437pt;}
.h3{height:42.649687pt;}
.h1a{height:43.215000pt;}
.he{height:44.638750pt;}
.hc{height:44.975625pt;}
.h26{height:45.952000pt;}
.h24{height:46.080000pt;}
.h27{height:52.108438pt;}
.ha{height:52.134375pt;}
.h5{height:53.535000pt;}
.h14{height:54.598989pt;}
.h20{height:55.298750pt;}
.h9{height:59.340000pt;}
.h19{height:64.500000pt;}
.h2{height:68.748750pt;}
.h8{height:69.660000pt;}
.h7{height:70.773750pt;}
.h16{height:111.840000pt;}
.hb{height:393.506667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w17{width:40.512000pt;}
.w12{width:41.152000pt;}
.w16{width:95.200000pt;}
.w11{width:95.520000pt;}
.w18{width:116.800000pt;}
.w13{width:117.440000pt;}
.we{width:131.360000pt;}
.wb{width:131.680000pt;}
.w19{width:139.866667pt;}
.w14{width:140.506667pt;}
.w9{width:183.226667pt;}
.w4{width:188.546667pt;}
.w6{width:189.026667pt;}
.w1a{width:205.626667pt;}
.w15{width:205.946667pt;}
.wf{width:214.146667pt;}
.wc{width:214.946667pt;}
.w10{width:252.186667pt;}
.wd{width:252.506667pt;}
.w3{width:371.453333pt;}
.w5{width:458.626667pt;}
.w7{width:459.106667pt;}
.w8{width:556.253333pt;}
.wa{width:639.493333pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x8{left:7.200000pt;}
.x34{left:8.320000pt;}
.x4{left:9.600000pt;}
.x37{left:11.200000pt;}
.x28{left:13.960000pt;}
.x21{left:15.680000pt;}
.x25{left:16.800000pt;}
.xa{left:18.400000pt;}
.x1f{left:19.560000pt;}
.x2f{left:20.640000pt;}
.x32{left:21.600000pt;}
.x1d{left:23.840000pt;}
.x27{left:24.960000pt;}
.x2d{left:26.080000pt;}
.x2a{left:32.000000pt;}
.x23{left:33.120000pt;}
.x19{left:34.720000pt;}
.x31{left:37.600000pt;}
.x33{left:40.960000pt;}
.xe{left:46.400000pt;}
.x1e{left:47.514667pt;}
.x3{left:48.480000pt;}
.x36{left:51.386667pt;}
.x11{left:56.480000pt;}
.x26{left:57.920000pt;}
.x20{left:59.560000pt;}
.x1c{left:68.640000pt;}
.x1b{left:71.400000pt;}
.x24{left:72.680000pt;}
.x35{left:77.320000pt;}
.x29{left:81.120000pt;}
.x13{left:85.312000pt;}
.x38{left:88.840000pt;}
.x12{left:91.546667pt;}
.x2{left:96.031988pt;}
.x18{left:97.472000pt;}
.x22{left:102.440000pt;}
.x16{left:120.031988pt;}
.xc{left:135.066667pt;}
.xf{left:140.040000pt;}
.x17{left:144.026655pt;}
.x5{left:185.666667pt;}
.x2b{left:192.186667pt;}
.x1a{left:229.146667pt;}
.x2c{left:233.346667pt;}
.x9{left:237.506667pt;}
.xd{left:278.146667pt;}
.x10{left:307.426667pt;}
.x2e{left:350.786667pt;}
.x7{left:396.893322pt;}
.x6{left:414.493322pt;}
.xb{left:420.573322pt;}
.x14{left:444.573322pt;}
.x15{left:468.573322pt;}
.x30{left:491.293333pt;}
.x1{left:697.893322pt;}
}




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