
    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_33120429ba8022d09b8a9b4d.woff')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_f58e92456e2ba3393a548233.woff')format("woff");}.ff2{font-family:ff2;line-height:1.088379;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_25e4d004198274df82ac4eee.woff')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_0394a62dcb457713a28185fc.woff')format("woff");}.ff4{font-family:ff4;line-height:1.088379;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_e6311f3e6b6f256179eb111f.woff')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_1c928bab536ea1b60ba774cc.woff')format("woff");}.ff6{font-family:ff6;line-height:1.372070;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_5d123772bb4c8abe91c34807.woff')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_f79ce9d8e5f4e93d86ca6606.woff')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_32e3a72201333fb5f8150f35.woff')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_460afaf1ae687975d23a629d.woff')format("woff");}.ffa{font-family:ffa;line-height:1.066406;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_cac29a43cde1e7f4ecbd538e.woff')format("woff");}.ffb{font-family:ffb;line-height:0.987305;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_9da4ac318527ad9161168782.woff')format("woff");}.ffc{font-family:ffc;line-height:1.401855;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:-15.120000px;}
.v3{vertical-align:-2.880000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:15.120000px;}
.v5{vertical-align:40.320000px;}
.v4{vertical-align:45.360000px;}
.ls38{letter-spacing:-0.546600px;}
.ls22{letter-spacing:-0.485400px;}
.ls28{letter-spacing:-0.397800px;}
.lsf{letter-spacing:-0.285600px;}
.ls19{letter-spacing:-0.243600px;}
.lsd{letter-spacing:-0.186600px;}
.ls18{letter-spacing:-0.178800px;}
.ls1a{letter-spacing:-0.160800px;}
.ls36{letter-spacing:-0.153600px;}
.ls9{letter-spacing:-0.135000px;}
.ls21{letter-spacing:-0.125400px;}
.ls15{letter-spacing:-0.121200px;}
.ls2f{letter-spacing:-0.092400px;}
.ls8{letter-spacing:-0.090000px;}
.lsc{letter-spacing:-0.084600px;}
.ls23{letter-spacing:-0.063600px;}
.ls10{letter-spacing:-0.031800px;}
.ls27{letter-spacing:-0.016560px;}
.ls37{letter-spacing:-0.015480px;}
.ls34{letter-spacing:-0.014760px;}
.ls1b{letter-spacing:-0.011160px;}
.ls35{letter-spacing:-0.009000px;}
.lsb{letter-spacing:-0.008400px;}
.ls20{letter-spacing:-0.008280px;}
.ls2a{letter-spacing:-0.007560px;}
.ls6{letter-spacing:0.000000px;}
.ls29{letter-spacing:0.021960px;}
.ls11{letter-spacing:0.045360px;}
.ls1c{letter-spacing:0.048960px;}
.ls5{letter-spacing:0.051120px;}
.ls24{letter-spacing:0.060480px;}
.ls1e{letter-spacing:0.064800px;}
.ls2{letter-spacing:0.065520px;}
.ls3{letter-spacing:0.086400px;}
.ls1{letter-spacing:0.090000px;}
.ls4{letter-spacing:0.092160px;}
.ls2e{letter-spacing:0.111000px;}
.ls2b{letter-spacing:0.116400px;}
.ls7{letter-spacing:0.144000px;}
.ls1d{letter-spacing:0.171360px;}
.lse{letter-spacing:0.173400px;}
.lsa{letter-spacing:0.174600px;}
.ls17{letter-spacing:0.181200px;}
.ls25{letter-spacing:0.198000px;}
.ls16{letter-spacing:0.199200px;}
.ls30{letter-spacing:0.206640px;}
.ls31{letter-spacing:1.533600px;}
.ls2c{letter-spacing:2.613600px;}
.ls13{letter-spacing:4.406400px;}
.ls12{letter-spacing:4.413600px;}
.ls26{letter-spacing:6.678000px;}
.ls2d{letter-spacing:9.453600px;}
.ls14{letter-spacing:11.613600px;}
.ls0{letter-spacing:13.347360px;}
.ls33{letter-spacing:47.726640px;}
.ls1f{letter-spacing:63.566640px;}
.ls32{letter-spacing:80.846640px;}
.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;}
}
.ws1e{word-spacing:-14.493600px;}
.ws8{word-spacing:-14.372400px;}
.ws9{word-spacing:-13.425600px;}
.ws14{word-spacing:-13.424400px;}
.wsa{word-spacing:-13.407600px;}
.ws5{word-spacing:-13.399800px;}
.ws1b{word-spacing:-13.342800px;}
.ws1d{word-spacing:-13.337400px;}
.wsf{word-spacing:-13.275360px;}
.ws17{word-spacing:-13.248360px;}
.ws3{word-spacing:-13.226400px;}
.ws1a{word-spacing:-13.218840px;}
.ws10{word-spacing:-13.218120px;}
.ws21{word-spacing:-13.217400px;}
.wse{word-spacing:-13.215240px;}
.ws20{word-spacing:-13.211640px;}
.ws23{word-spacing:-13.210920px;}
.ws13{word-spacing:-13.162800px;}
.ws1f{word-spacing:-13.134000px;}
.ws11{word-spacing:-13.101000px;}
.ws22{word-spacing:-13.072800px;}
.wsd{word-spacing:-13.065600px;}
.wsb{word-spacing:-13.047600px;}
.ws4{word-spacing:-13.039800px;}
.wsc{word-spacing:-12.982800px;}
.ws6{word-spacing:-12.940800px;}
.ws16{word-spacing:-12.828600px;}
.ws12{word-spacing:-12.741000px;}
.ws24{word-spacing:-12.679800px;}
.ws15{word-spacing:-10.517040px;}
.ws0{word-spacing:-9.810000px;}
.ws1{word-spacing:-9.765000px;}
.ws2{word-spacing:-8.553600px;}
.ws19{word-spacing:-0.056040px;}
.ws7{word-spacing:0.000000px;}
.ws18{word-spacing:0.303960px;}
.ws1c{word-spacing:0.640440px;}
._11{margin-left:-12.939622px;}
._15{margin-left:-6.321240px;}
._e{margin-left:-4.332962px;}
._6{margin-left:-3.180598px;}
._5{margin-left:-2.135400px;}
._0{margin-left:-1.110000px;}
._1{width:1.489152px;}
._3{width:2.623272px;}
._2{width:3.623400px;}
._4{width:4.821000px;}
._8{width:6.312600px;}
._9{width:8.212680px;}
._13{width:9.226681px;}
._b{width:10.280400px;}
._7{width:11.723400px;}
._c{width:14.623008px;}
._12{width:16.136641px;}
._14{width:17.421120px;}
._a{width:21.102000px;}
._10{width:22.222250px;}
._f{width:23.230344px;}
._d{width:24.333840px;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs0{font-size:38.880000px;}
.fs5{font-size:42.120000px;}
.fs2{font-size:45.000000px;}
.fs7{font-size:47.880000px;}
.fs1{font-size:54.000000px;}
.fs6{font-size:60.120000px;}
.fs4{font-size:65.880000px;}
.fs3{font-size:83.880000px;}
.y0{bottom:0.000000px;}
.yb8{bottom:7.830000px;}
.yb6{bottom:7.920000px;}
.y2{bottom:73.560000px;}
.y28{bottom:74.460000px;}
.y1{bottom:100.380000px;}
.y5c{bottom:113.340000px;}
.ybe{bottom:129.540000px;}
.y5b{bottom:130.980000px;}
.y8d{bottom:139.530000px;}
.yd6{bottom:145.380000px;}
.y5a{bottom:148.530000px;}
.ybd{bottom:156.900000px;}
.y8c{bottom:157.170000px;}
.y59{bottom:166.170000px;}
.y26{bottom:170.220000px;}
.y8b{bottom:174.720000px;}
.yd5{bottom:180.930000px;}
.ybc{bottom:184.260000px;}
.yf7{bottom:184.620000px;}
.yd4{bottom:191.010000px;}
.y8a{bottom:193.170000px;}
.y119{bottom:197.580000px;}
.y58{bottom:201.720000px;}
.yf6{bottom:202.170000px;}
.y25{bottom:205.860000px;}
.y89{bottom:210.720000px;}
.ybb{bottom:211.530000px;}
.y118{bottom:215.220000px;}
.y57{bottom:219.270000px;}
.yf5{bottom:219.720000px;}
.y24{bottom:223.410000px;}
.y88{bottom:229.080000px;}
.yd3{bottom:236.460000px;}
.y56{bottom:236.910000px;}
.yf4{bottom:237.360000px;}
.yba{bottom:238.890000px;}
.y23{bottom:241.050000px;}
.y117{bottom:241.770000px;}
.y87{bottom:247.530000px;}
.yd2{bottom:254.100000px;}
.y55{bottom:254.460000px;}
.yf3{bottom:254.910000px;}
.y22{bottom:258.600000px;}
.y116{bottom:259.410000px;}
.y86{bottom:265.980000px;}
.yb9{bottom:266.250000px;}
.yd1{bottom:271.650000px;}
.y54{bottom:272.100000px;}
.yf2{bottom:272.550000px;}
.y21{bottom:276.150000px;}
.y85{bottom:283.530000px;}
.y115{bottom:285.960000px;}
.yd0{bottom:289.290000px;}
.y53{bottom:289.650000px;}
.yf1{bottom:290.100000px;}
.yb7{bottom:293.610000px;}
.y84{bottom:301.080000px;}
.y114{bottom:303.510000px;}
.y52{bottom:307.200000px;}
.yf0{bottom:307.650000px;}
.y20{bottom:311.790000px;}
.y83{bottom:318.630000px;}
.yb5{bottom:320.880000px;}
.ycf{bottom:324.840000px;}
.yef{bottom:325.290000px;}
.y1f{bottom:329.340000px;}
.y113{bottom:330.150000px;}
.yce{bottom:334.920000px;}
.y82{bottom:337.080000px;}
.y51{bottom:342.840000px;}
.y1e{bottom:346.980000px;}
.y112{bottom:347.700000px;}
.yee{bottom:351.840000px;}
.y81{bottom:355.530000px;}
.y50{bottom:360.390000px;}
.y1d{bottom:364.530000px;}
.yb4{bottom:369.570000px;}
.ycd{bottom:371.370000px;}
.y80{bottom:373.080000px;}
.y111{bottom:374.340000px;}
.y4f{bottom:377.940000px;}
.yed{bottom:387.480000px;}
.y7f{bottom:391.530000px;}
.y110{bottom:391.890000px;}
.y4e{bottom:395.580000px;}
.yb3{bottom:396.210000px;}
.y1c{bottom:400.080000px;}
.yec{bottom:405.030000px;}
.ycc{bottom:407.010000px;}
.y7e{bottom:409.080000px;}
.y4d{bottom:413.130000px;}
.y1b{bottom:417.720000px;}
.y10f{bottom:418.440000px;}
.yeb{bottom:422.580000px;}
.y7d{bottom:427.530000px;}
.y4c{bottom:430.770000px;}
.yb2{bottom:432.120000px;}
.y1a{bottom:435.270000px;}
.ycb{bottom:439.230000px;}
.yea{bottom:440.220000px;}
.y7c{bottom:445.080000px;}
.y4b{bottom:448.320000px;}
.y19{bottom:452.910000px;}
.ye9{bottom:457.770000px;}
.y7b{bottom:463.530000px;}
.y4a{bottom:465.870000px;}
.y10e{bottom:471.660000px;}
.ye8{bottom:475.350000px;}
.yb1{bottom:480.390000px;}
.y7a{bottom:481.110000px;}
.y49{bottom:483.540000px;}
.y18{bottom:488.490000px;}
.y10d{bottom:489.300000px;}
.ye7{bottom:492.990000px;}
.yb0{bottom:497.940000px;}
.y79{bottom:499.560000px;}
.y48{bottom:501.090000px;}
.y17{bottom:506.040000px;}
.y10c{bottom:506.850000px;}
.ye6{bottom:510.540000px;}
.yaf{bottom:515.490000px;}
.y78{bottom:518.010000px;}
.y16{bottom:523.680000px;}
.y10b{bottom:533.400000px;}
.yae{bottom:533.940000px;}
.y77{bottom:535.560000px;}
.y47{bottom:536.730000px;}
.ye5{bottom:537.180000px;}
.y15{bottom:541.230000px;}
.y10a{bottom:551.040000px;}
.yad{bottom:552.390000px;}
.y76{bottom:553.110000px;}
.y46{bottom:554.280000px;}
.y14{bottom:558.780000px;}
.yac{bottom:569.940000px;}
.y75{bottom:571.560000px;}
.y45{bottom:571.830000px;}
.ye4{bottom:573.090000px;}
.y109{bottom:577.590000px;}
.yab{bottom:588.390000px;}
.y74{bottom:589.110000px;}
.y44{bottom:589.470000px;}
.y13{bottom:594.420000px;}
.y108{bottom:595.230000px;}
.y73{bottom:606.660000px;}
.yaa{bottom:606.840000px;}
.y12{bottom:611.970000px;}
.ye3{bottom:621.330000px;}
.y107{bottom:622.140000px;}
.ya9{bottom:624.390000px;}
.y43{bottom:625.020000px;}
.y72{bottom:625.110000px;}
.y11{bottom:629.610000px;}
.ye2{bottom:638.880000px;}
.ya8{bottom:641.940000px;}
.y42{bottom:642.660000px;}
.y10{bottom:647.160000px;}
.y71{bottom:652.560000px;}
.ye1{bottom:656.520000px;}
.y41{bottom:660.210000px;}
.ya7{bottom:660.390000px;}
.yf{bottom:664.710000px;}
.y106{bottom:670.380000px;}
.ye0{bottom:674.070000px;}
.y40{bottom:677.760000px;}
.ya6{bottom:678.750000px;}
.ye{bottom:682.350000px;}
.y70{bottom:685.140000px;}
.y3f{bottom:695.400000px;}
.ya5{bottom:697.200000px;}
.y105{bottom:697.290000px;}
.yd{bottom:699.900000px;}
.ydf{bottom:709.710000px;}
.y3e{bottom:712.950000px;}
.ya4{bottom:715.560000px;}
.yc{bottom:717.540000px;}
.y6f{bottom:720.690000px;}
.yde{bottom:724.650000px;}
.y3d{bottom:730.590000px;}
.ya3{bottom:734.010000px;}
.y104{bottom:734.640000px;}
.y6e{bottom:738.330000px;}
.yb{bottom:744.450000px;}
.y3c{bottom:748.140000px;}
.ydd{bottom:752.010000px;}
.ya2{bottom:752.460000px;}
.y6d{bottom:755.880000px;}
.y3b{bottom:765.690000px;}
.ya1{bottom:770.010000px;}
.y6c{bottom:773.520000px;}
.ydc{bottom:779.280000px;}
.y103{bottom:782.880000px;}
.ya0{bottom:787.560000px;}
.ya{bottom:792.690000px;}
.y6b{bottom:800.070000px;}
.y102{bottom:800.520000px;}
.y3a{bottom:801.330000px;}
.y9f{bottom:806.010000px;}
.ydb{bottom:806.640000px;}
.yca{bottom:816.090000px;}
.y101{bottom:818.070000px;}
.y39{bottom:818.880000px;}
.y9{bottom:828.510000px;}
.y9e{bottom:833.460000px;}
.y6a{bottom:835.620000px;}
.y38{bottom:836.520000px;}
.yc9{bottom:850.920000px;}
.y69{bottom:853.260000px;}
.y37{bottom:854.070000px;}
.yda{bottom:855.330000px;}
.yc8{bottom:863.160000px;}
.y8{bottom:864.510000px;}
.y9d{bottom:869.010000px;}
.y68{bottom:870.810000px;}
.y100{bottom:871.260000px;}
.y36{bottom:871.620000px;}
.yd9{bottom:881.970000px;}
.y9c{bottom:886.560000px;}
.y67{bottom:888.450000px;}
.yff{bottom:888.810000px;}
.y35{bottom:889.260000px;}
.yc7{bottom:890.430000px;}
.y7{bottom:904.290000px;}
.y9b{bottom:905.010000px;}
.yfe{bottom:906.450000px;}
.y66{bottom:915.000000px;}
.yd8{bottom:917.520000px;}
.yc6{bottom:917.790000px;}
.y6{bottom:922.290000px;}
.y9a{bottom:922.560000px;}
.y34{bottom:924.810000px;}
.y99{bottom:941.010000px;}
.yfd{bottom:942.000000px;}
.y33{bottom:942.450000px;}
.yc5{bottom:945.150000px;}
.yd7{bottom:949.740000px;}
.y65{bottom:950.910000px;}
.y5{bottom:954.600000px;}
.y98{bottom:958.560000px;}
.yfc{bottom:959.550000px;}
.y32{bottom:960.000000px;}
.yc4{bottom:972.510000px;}
.y4{bottom:973.950000px;}
.y97{bottom:977.010000px;}
.yfb{bottom:977.190000px;}
.y31{bottom:977.550000px;}
.y96{bottom:994.560000px;}
.yfa{bottom:994.740000px;}
.y30{bottom:995.190000px;}
.y64{bottom:999.150000px;}
.y3{bottom:1012.230000px;}
.yf9{bottom:1012.320000px;}
.y2f{bottom:1012.770000px;}
.y95{bottom:1013.040000px;}
.y63{bottom:1016.820000px;}
.yc3{bottom:1021.230000px;}
.yf8{bottom:1029.960000px;}
.y2e{bottom:1030.320000px;}
.y94{bottom:1031.400000px;}
.y62{bottom:1034.370000px;}
.yc2{bottom:1045.170000px;}
.y2d{bottom:1047.960000px;}
.y93{bottom:1049.850000px;}
.y61{bottom:1051.920000px;}
.y2c{bottom:1065.510000px;}
.y92{bottom:1067.400000px;}
.y60{bottom:1069.560000px;}
.yc1{bottom:1072.530000px;}
.y2b{bottom:1083.150000px;}
.y91{bottom:1085.850000px;}
.y5f{bottom:1087.110000px;}
.yc0{bottom:1099.890000px;}
.y2a{bottom:1100.700000px;}
.y90{bottom:1103.400000px;}
.y8f{bottom:1121.850000px;}
.y5e{bottom:1122.750000px;}
.ybf{bottom:1127.160000px;}
.y29{bottom:1127.610000px;}
.y8e{bottom:1139.400000px;}
.y5d{bottom:1140.300000px;}
.y27{bottom:1194.300000px;}
.hf{height:26.550000px;}
.hd{height:26.640000px;}
.h2{height:32.918906px;}
.h6{height:35.782383px;}
.h3{height:39.155273px;}
.h10{height:41.661211px;}
.he{height:50.902383px;}
.h7{height:52.311445px;}
.h8{height:55.779258px;}
.h5{height:57.323320px;}
.hb{height:59.973223px;}
.h13{height:60.589687px;}
.hc{height:61.793886px;}
.ha{height:62.585859px;}
.h9{height:68.582109px;}
.h4{height:72.985430px;}
.h12{height:92.631445px;}
.h11{height:96.027539px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.w8{width:97.380000px;}
.w6{width:97.500000px;}
.w4{width:110.100000px;}
.w5{width:136.710000px;}
.w3{width:194.850000px;}
.w7{width:241.500000px;}
.w2{width:893.159987px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x7{left:7.740000px;}
.x1{left:68.040000px;}
.x4{left:95.039987px;}
.x16{left:111.239987px;}
.x5{left:122.039987px;}
.x2{left:192.719987px;}
.xb{left:276.599987px;}
.x6{left:293.790000px;}
.x10{left:301.079987px;}
.x14{left:313.229987px;}
.xe{left:317.099987px;}
.x9{left:329.160000px;}
.xd{left:335.369987px;}
.x12{left:443.009987px;}
.x11{left:462.179987px;}
.xa{left:466.590000px;}
.xf{left:482.339987px;}
.x8{left:489.360000px;}
.x15{left:519.090000px;}
.x13{left:679.559987px;}
.xc{left:718.889987px;}
.x3{left:800.339987px;}
@media print{
.v1{vertical-align:-13.440000pt;}
.v3{vertical-align:-2.560000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:13.440000pt;}
.v5{vertical-align:35.840000pt;}
.v4{vertical-align:40.320000pt;}
.ls38{letter-spacing:-0.485867pt;}
.ls22{letter-spacing:-0.431467pt;}
.ls28{letter-spacing:-0.353600pt;}
.lsf{letter-spacing:-0.253867pt;}
.ls19{letter-spacing:-0.216533pt;}
.lsd{letter-spacing:-0.165867pt;}
.ls18{letter-spacing:-0.158933pt;}
.ls1a{letter-spacing:-0.142933pt;}
.ls36{letter-spacing:-0.136533pt;}
.ls9{letter-spacing:-0.120000pt;}
.ls21{letter-spacing:-0.111467pt;}
.ls15{letter-spacing:-0.107733pt;}
.ls2f{letter-spacing:-0.082133pt;}
.ls8{letter-spacing:-0.080000pt;}
.lsc{letter-spacing:-0.075200pt;}
.ls23{letter-spacing:-0.056533pt;}
.ls10{letter-spacing:-0.028267pt;}
.ls27{letter-spacing:-0.014720pt;}
.ls37{letter-spacing:-0.013760pt;}
.ls34{letter-spacing:-0.013120pt;}
.ls1b{letter-spacing:-0.009920pt;}
.ls35{letter-spacing:-0.008000pt;}
.lsb{letter-spacing:-0.007467pt;}
.ls20{letter-spacing:-0.007360pt;}
.ls2a{letter-spacing:-0.006720pt;}
.ls6{letter-spacing:0.000000pt;}
.ls29{letter-spacing:0.019520pt;}
.ls11{letter-spacing:0.040320pt;}
.ls1c{letter-spacing:0.043520pt;}
.ls5{letter-spacing:0.045440pt;}
.ls24{letter-spacing:0.053760pt;}
.ls1e{letter-spacing:0.057600pt;}
.ls2{letter-spacing:0.058240pt;}
.ls3{letter-spacing:0.076800pt;}
.ls1{letter-spacing:0.080000pt;}
.ls4{letter-spacing:0.081920pt;}
.ls2e{letter-spacing:0.098667pt;}
.ls2b{letter-spacing:0.103467pt;}
.ls7{letter-spacing:0.128000pt;}
.ls1d{letter-spacing:0.152320pt;}
.lse{letter-spacing:0.154133pt;}
.lsa{letter-spacing:0.155200pt;}
.ls17{letter-spacing:0.161067pt;}
.ls25{letter-spacing:0.176000pt;}
.ls16{letter-spacing:0.177067pt;}
.ls30{letter-spacing:0.183680pt;}
.ls31{letter-spacing:1.363200pt;}
.ls2c{letter-spacing:2.323200pt;}
.ls13{letter-spacing:3.916800pt;}
.ls12{letter-spacing:3.923200pt;}
.ls26{letter-spacing:5.936000pt;}
.ls2d{letter-spacing:8.403200pt;}
.ls14{letter-spacing:10.323200pt;}
.ls0{letter-spacing:11.864320pt;}
.ls33{letter-spacing:42.423680pt;}
.ls1f{letter-spacing:56.503680pt;}
.ls32{letter-spacing:71.863680pt;}
.ws1e{word-spacing:-12.883200pt;}
.ws8{word-spacing:-12.775467pt;}
.ws9{word-spacing:-11.933867pt;}
.ws14{word-spacing:-11.932800pt;}
.wsa{word-spacing:-11.917867pt;}
.ws5{word-spacing:-11.910933pt;}
.ws1b{word-spacing:-11.860267pt;}
.ws1d{word-spacing:-11.855467pt;}
.wsf{word-spacing:-11.800320pt;}
.ws17{word-spacing:-11.776320pt;}
.ws3{word-spacing:-11.756800pt;}
.ws1a{word-spacing:-11.750080pt;}
.ws10{word-spacing:-11.749440pt;}
.ws21{word-spacing:-11.748800pt;}
.wse{word-spacing:-11.746880pt;}
.ws20{word-spacing:-11.743680pt;}
.ws23{word-spacing:-11.743040pt;}
.ws13{word-spacing:-11.700267pt;}
.ws1f{word-spacing:-11.674667pt;}
.ws11{word-spacing:-11.645333pt;}
.ws22{word-spacing:-11.620267pt;}
.wsd{word-spacing:-11.613867pt;}
.wsb{word-spacing:-11.597867pt;}
.ws4{word-spacing:-11.590933pt;}
.wsc{word-spacing:-11.540267pt;}
.ws6{word-spacing:-11.502933pt;}
.ws16{word-spacing:-11.403200pt;}
.ws12{word-spacing:-11.325333pt;}
.ws24{word-spacing:-11.270933pt;}
.ws15{word-spacing:-9.348480pt;}
.ws0{word-spacing:-8.720000pt;}
.ws1{word-spacing:-8.680000pt;}
.ws2{word-spacing:-7.603200pt;}
.ws19{word-spacing:-0.049813pt;}
.ws7{word-spacing:0.000000pt;}
.ws18{word-spacing:0.270187pt;}
.ws1c{word-spacing:0.569280pt;}
._11{margin-left:-11.501886pt;}
._15{margin-left:-5.618880pt;}
._e{margin-left:-3.851521pt;}
._6{margin-left:-2.827199pt;}
._5{margin-left:-1.898134pt;}
._0{margin-left:-0.986667pt;}
._1{width:1.323691pt;}
._3{width:2.331797pt;}
._2{width:3.220800pt;}
._4{width:4.285333pt;}
._8{width:5.611200pt;}
._9{width:7.300160pt;}
._13{width:8.201494pt;}
._b{width:9.138133pt;}
._7{width:10.420800pt;}
._c{width:12.998229pt;}
._12{width:14.343681pt;}
._14{width:15.485440pt;}
._a{width:18.757333pt;}
._10{width:19.753111pt;}
._f{width:20.649194pt;}
._d{width:21.630080pt;}
.fs0{font-size:34.560000pt;}
.fs5{font-size:37.440000pt;}
.fs2{font-size:40.000000pt;}
.fs7{font-size:42.560000pt;}
.fs1{font-size:48.000000pt;}
.fs6{font-size:53.440000pt;}
.fs4{font-size:58.560000pt;}
.fs3{font-size:74.560000pt;}
.y0{bottom:0.000000pt;}
.yb8{bottom:6.960000pt;}
.yb6{bottom:7.040000pt;}
.y2{bottom:65.386667pt;}
.y28{bottom:66.186667pt;}
.y1{bottom:89.226667pt;}
.y5c{bottom:100.746667pt;}
.ybe{bottom:115.146667pt;}
.y5b{bottom:116.426667pt;}
.y8d{bottom:124.026667pt;}
.yd6{bottom:129.226667pt;}
.y5a{bottom:132.026667pt;}
.ybd{bottom:139.466667pt;}
.y8c{bottom:139.706667pt;}
.y59{bottom:147.706667pt;}
.y26{bottom:151.306667pt;}
.y8b{bottom:155.306667pt;}
.yd5{bottom:160.826667pt;}
.ybc{bottom:163.786667pt;}
.yf7{bottom:164.106667pt;}
.yd4{bottom:169.786667pt;}
.y8a{bottom:171.706667pt;}
.y119{bottom:175.626667pt;}
.y58{bottom:179.306667pt;}
.yf6{bottom:179.706667pt;}
.y25{bottom:182.986667pt;}
.y89{bottom:187.306667pt;}
.ybb{bottom:188.026667pt;}
.y118{bottom:191.306667pt;}
.y57{bottom:194.906667pt;}
.yf5{bottom:195.306667pt;}
.y24{bottom:198.586667pt;}
.y88{bottom:203.626667pt;}
.yd3{bottom:210.186667pt;}
.y56{bottom:210.586667pt;}
.yf4{bottom:210.986667pt;}
.yba{bottom:212.346667pt;}
.y23{bottom:214.266667pt;}
.y117{bottom:214.906667pt;}
.y87{bottom:220.026667pt;}
.yd2{bottom:225.866667pt;}
.y55{bottom:226.186667pt;}
.yf3{bottom:226.586667pt;}
.y22{bottom:229.866667pt;}
.y116{bottom:230.586667pt;}
.y86{bottom:236.426667pt;}
.yb9{bottom:236.666667pt;}
.yd1{bottom:241.466667pt;}
.y54{bottom:241.866667pt;}
.yf2{bottom:242.266667pt;}
.y21{bottom:245.466667pt;}
.y85{bottom:252.026667pt;}
.y115{bottom:254.186667pt;}
.yd0{bottom:257.146667pt;}
.y53{bottom:257.466667pt;}
.yf1{bottom:257.866667pt;}
.yb7{bottom:260.986667pt;}
.y84{bottom:267.626667pt;}
.y114{bottom:269.786667pt;}
.y52{bottom:273.066667pt;}
.yf0{bottom:273.466667pt;}
.y20{bottom:277.146667pt;}
.y83{bottom:283.226667pt;}
.yb5{bottom:285.226667pt;}
.ycf{bottom:288.746667pt;}
.yef{bottom:289.146667pt;}
.y1f{bottom:292.746667pt;}
.y113{bottom:293.466667pt;}
.yce{bottom:297.706667pt;}
.y82{bottom:299.626667pt;}
.y51{bottom:304.746667pt;}
.y1e{bottom:308.426667pt;}
.y112{bottom:309.066667pt;}
.yee{bottom:312.746667pt;}
.y81{bottom:316.026667pt;}
.y50{bottom:320.346667pt;}
.y1d{bottom:324.026667pt;}
.yb4{bottom:328.506667pt;}
.ycd{bottom:330.106667pt;}
.y80{bottom:331.626667pt;}
.y111{bottom:332.746667pt;}
.y4f{bottom:335.946667pt;}
.yed{bottom:344.426667pt;}
.y7f{bottom:348.026667pt;}
.y110{bottom:348.346667pt;}
.y4e{bottom:351.626667pt;}
.yb3{bottom:352.186667pt;}
.y1c{bottom:355.626667pt;}
.yec{bottom:360.026667pt;}
.ycc{bottom:361.786667pt;}
.y7e{bottom:363.626667pt;}
.y4d{bottom:367.226667pt;}
.y1b{bottom:371.306667pt;}
.y10f{bottom:371.946667pt;}
.yeb{bottom:375.626667pt;}
.y7d{bottom:380.026667pt;}
.y4c{bottom:382.906667pt;}
.yb2{bottom:384.106667pt;}
.y1a{bottom:386.906667pt;}
.ycb{bottom:390.426667pt;}
.yea{bottom:391.306667pt;}
.y7c{bottom:395.626667pt;}
.y4b{bottom:398.506667pt;}
.y19{bottom:402.586667pt;}
.ye9{bottom:406.906667pt;}
.y7b{bottom:412.026667pt;}
.y4a{bottom:414.106667pt;}
.y10e{bottom:419.253333pt;}
.ye8{bottom:422.533333pt;}
.yb1{bottom:427.013333pt;}
.y7a{bottom:427.653333pt;}
.y49{bottom:429.813333pt;}
.y18{bottom:434.213333pt;}
.y10d{bottom:434.933333pt;}
.ye7{bottom:438.213333pt;}
.yb0{bottom:442.613333pt;}
.y79{bottom:444.053333pt;}
.y48{bottom:445.413333pt;}
.y17{bottom:449.813333pt;}
.y10c{bottom:450.533333pt;}
.ye6{bottom:453.813333pt;}
.yaf{bottom:458.213333pt;}
.y78{bottom:460.453333pt;}
.y16{bottom:465.493333pt;}
.y10b{bottom:474.133333pt;}
.yae{bottom:474.613333pt;}
.y77{bottom:476.053333pt;}
.y47{bottom:477.093333pt;}
.ye5{bottom:477.493333pt;}
.y15{bottom:481.093333pt;}
.y10a{bottom:489.813333pt;}
.yad{bottom:491.013333pt;}
.y76{bottom:491.653333pt;}
.y46{bottom:492.693333pt;}
.y14{bottom:496.693333pt;}
.yac{bottom:506.613333pt;}
.y75{bottom:508.053333pt;}
.y45{bottom:508.293333pt;}
.ye4{bottom:509.413333pt;}
.y109{bottom:513.413333pt;}
.yab{bottom:523.013333pt;}
.y74{bottom:523.653333pt;}
.y44{bottom:523.973333pt;}
.y13{bottom:528.373333pt;}
.y108{bottom:529.093333pt;}
.y73{bottom:539.253333pt;}
.yaa{bottom:539.413333pt;}
.y12{bottom:543.973333pt;}
.ye3{bottom:552.293333pt;}
.y107{bottom:553.013333pt;}
.ya9{bottom:555.013333pt;}
.y43{bottom:555.573333pt;}
.y72{bottom:555.653333pt;}
.y11{bottom:559.653333pt;}
.ye2{bottom:567.893333pt;}
.ya8{bottom:570.613333pt;}
.y42{bottom:571.253333pt;}
.y10{bottom:575.253333pt;}
.y71{bottom:580.053333pt;}
.ye1{bottom:583.573333pt;}
.y41{bottom:586.853333pt;}
.ya7{bottom:587.013333pt;}
.yf{bottom:590.853333pt;}
.y106{bottom:595.893333pt;}
.ye0{bottom:599.173333pt;}
.y40{bottom:602.453333pt;}
.ya6{bottom:603.333333pt;}
.ye{bottom:606.533333pt;}
.y70{bottom:609.013333pt;}
.y3f{bottom:618.133333pt;}
.ya5{bottom:619.733333pt;}
.y105{bottom:619.813333pt;}
.yd{bottom:622.133333pt;}
.ydf{bottom:630.853333pt;}
.y3e{bottom:633.733333pt;}
.ya4{bottom:636.053333pt;}
.yc{bottom:637.813333pt;}
.y6f{bottom:640.613333pt;}
.yde{bottom:644.133333pt;}
.y3d{bottom:649.413333pt;}
.ya3{bottom:652.453333pt;}
.y104{bottom:653.013333pt;}
.y6e{bottom:656.293333pt;}
.yb{bottom:661.733333pt;}
.y3c{bottom:665.013333pt;}
.ydd{bottom:668.453333pt;}
.ya2{bottom:668.853333pt;}
.y6d{bottom:671.893333pt;}
.y3b{bottom:680.613333pt;}
.ya1{bottom:684.453333pt;}
.y6c{bottom:687.573333pt;}
.ydc{bottom:692.693333pt;}
.y103{bottom:695.893333pt;}
.ya0{bottom:700.053333pt;}
.ya{bottom:704.613333pt;}
.y6b{bottom:711.173333pt;}
.y102{bottom:711.573333pt;}
.y3a{bottom:712.293333pt;}
.y9f{bottom:716.453333pt;}
.ydb{bottom:717.013333pt;}
.yca{bottom:725.413333pt;}
.y101{bottom:727.173333pt;}
.y39{bottom:727.893333pt;}
.y9{bottom:736.453333pt;}
.y9e{bottom:740.853333pt;}
.y6a{bottom:742.773333pt;}
.y38{bottom:743.573333pt;}
.yc9{bottom:756.373333pt;}
.y69{bottom:758.453333pt;}
.y37{bottom:759.173333pt;}
.yda{bottom:760.293333pt;}
.yc8{bottom:767.253333pt;}
.y8{bottom:768.453333pt;}
.y9d{bottom:772.453333pt;}
.y68{bottom:774.053333pt;}
.y100{bottom:774.453333pt;}
.y36{bottom:774.773333pt;}
.yd9{bottom:783.973333pt;}
.y9c{bottom:788.053333pt;}
.y67{bottom:789.733333pt;}
.yff{bottom:790.053333pt;}
.y35{bottom:790.453333pt;}
.yc7{bottom:791.493333pt;}
.y7{bottom:803.813333pt;}
.y9b{bottom:804.453333pt;}
.yfe{bottom:805.733333pt;}
.y66{bottom:813.333333pt;}
.yd8{bottom:815.573333pt;}
.yc6{bottom:815.813333pt;}
.y6{bottom:819.813333pt;}
.y9a{bottom:820.053333pt;}
.y34{bottom:822.053333pt;}
.y99{bottom:836.453333pt;}
.yfd{bottom:837.333333pt;}
.y33{bottom:837.733333pt;}
.yc5{bottom:840.133333pt;}
.yd7{bottom:844.213333pt;}
.y65{bottom:845.253333pt;}
.y5{bottom:848.533333pt;}
.y98{bottom:852.053333pt;}
.yfc{bottom:852.933333pt;}
.y32{bottom:853.333333pt;}
.yc4{bottom:864.453333pt;}
.y4{bottom:865.733333pt;}
.y97{bottom:868.453333pt;}
.yfb{bottom:868.613333pt;}
.y31{bottom:868.933333pt;}
.y96{bottom:884.053333pt;}
.yfa{bottom:884.213333pt;}
.y30{bottom:884.613333pt;}
.y64{bottom:888.133333pt;}
.y3{bottom:899.760000pt;}
.yf9{bottom:899.840000pt;}
.y2f{bottom:900.240000pt;}
.y95{bottom:900.480000pt;}
.y63{bottom:903.840000pt;}
.yc3{bottom:907.760000pt;}
.yf8{bottom:915.520000pt;}
.y2e{bottom:915.840000pt;}
.y94{bottom:916.800000pt;}
.y62{bottom:919.440000pt;}
.yc2{bottom:929.040000pt;}
.y2d{bottom:931.520000pt;}
.y93{bottom:933.200000pt;}
.y61{bottom:935.040000pt;}
.y2c{bottom:947.120000pt;}
.y92{bottom:948.800000pt;}
.y60{bottom:950.720000pt;}
.yc1{bottom:953.360000pt;}
.y2b{bottom:962.800000pt;}
.y91{bottom:965.200000pt;}
.y5f{bottom:966.320000pt;}
.yc0{bottom:977.680000pt;}
.y2a{bottom:978.400000pt;}
.y90{bottom:980.800000pt;}
.y8f{bottom:997.200000pt;}
.y5e{bottom:998.000000pt;}
.ybf{bottom:1001.920000pt;}
.y29{bottom:1002.320000pt;}
.y8e{bottom:1012.800000pt;}
.y5d{bottom:1013.600000pt;}
.y27{bottom:1061.600000pt;}
.hf{height:23.600000pt;}
.hd{height:23.680000pt;}
.h2{height:29.261250pt;}
.h6{height:31.806563pt;}
.h3{height:34.804688pt;}
.h10{height:37.032187pt;}
.he{height:45.246562pt;}
.h7{height:46.499062pt;}
.h8{height:49.581562pt;}
.h5{height:50.954062pt;}
.hb{height:53.309531pt;}
.h13{height:53.857500pt;}
.hc{height:54.927899pt;}
.ha{height:55.631875pt;}
.h9{height:60.961875pt;}
.h4{height:64.875937pt;}
.h12{height:82.339062pt;}
.h11{height:85.357812pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.w8{width:86.560000pt;}
.w6{width:86.666667pt;}
.w4{width:97.866667pt;}
.w5{width:121.520000pt;}
.w3{width:173.200000pt;}
.w7{width:214.666667pt;}
.w2{width:793.919988pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x7{left:6.880000pt;}
.x1{left:60.480000pt;}
.x4{left:84.479988pt;}
.x16{left:98.879988pt;}
.x5{left:108.479988pt;}
.x2{left:171.306655pt;}
.xb{left:245.866655pt;}
.x6{left:261.146667pt;}
.x10{left:267.626655pt;}
.x14{left:278.426655pt;}
.xe{left:281.866655pt;}
.x9{left:292.586667pt;}
.xd{left:298.106655pt;}
.x12{left:393.786655pt;}
.x11{left:410.826655pt;}
.xa{left:414.746667pt;}
.xf{left:428.746655pt;}
.x8{left:434.986667pt;}
.x15{left:461.413333pt;}
.x13{left:604.053322pt;}
.xc{left:639.013322pt;}
.x3{left:711.413322pt;}
}




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